diff --git a/.editorconfig b/.editorconfig index a8ce1d6b68..59ca35cc9a 100644 --- a/.editorconfig +++ b/.editorconfig @@ -338,5 +338,8 @@ dotnet_naming_symbols.type_parameters_symbols.applicable_kinds = type_parameter resharper_braces_for_ifelse = required_for_multiline resharper_keep_existing_attribute_arrangement = true -[*.{csproj,xml,yml,dll.config,msbuildproj,targets}] +[*.{csproj,xml,yml,yaml,dll.config,msbuildproj,targets}] indent_size = 2 + +[{*.yaml,*.yml}] +ij_yaml_indent_sequence_value = false diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml index 70821e5e59..a44cac2cd1 100644 --- a/.github/workflows/changelog.yml +++ b/.github/workflows/changelog.yml @@ -11,7 +11,7 @@ env: jobs: changelog: - runs-on: self-hosted + runs-on: ubuntu-latest if: github.event.pull_request.merged == true permissions: contents: write diff --git a/.github/workflows/conflict-labeler.yml b/.github/workflows/conflict-labeler.yml index a78716bde6..1a9b91601d 100644 --- a/.github/workflows/conflict-labeler.yml +++ b/.github/workflows/conflict-labeler.yml @@ -14,6 +14,6 @@ jobs: - name: Check for Merge Conflicts uses: ike709/actions-label-merge-conflict@9eefdd17e10566023c46d2dc6dc04fcb8ec76142 with: - dirtyLabel: "Merge Conflict" + dirtyLabel: "Status: Merge Conflict" repoToken: "${{ secrets.GITHUB_TOKEN }}" commentOnDirty: "This pull request has conflicts, please resolve those before we can evaluate the pull request." diff --git a/Content.Client/Actions/ActionsSystem.cs b/Content.Client/Actions/ActionsSystem.cs index 83d927c94b..a487e5d8d8 100644 --- a/Content.Client/Actions/ActionsSystem.cs +++ b/Content.Client/Actions/ActionsSystem.cs @@ -2,7 +2,6 @@ using System.Linq; using Content.Shared.Actions; using JetBrains.Annotations; -using Robust.Client.GameObjects; using Robust.Client.Player; using Robust.Shared.ContentPack; using Robust.Shared.GameStates; @@ -41,8 +40,8 @@ public sealed class ActionsSystem : SharedActionsSystem public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnPlayerAttached); - SubscribeLocalEvent(OnPlayerDetached); + SubscribeLocalEvent(OnPlayerAttached); + SubscribeLocalEvent(OnPlayerDetached); SubscribeLocalEvent(HandleComponentState); SubscribeLocalEvent(OnInstantHandleState); @@ -196,12 +195,12 @@ protected override void ActionRemoved(EntityUid performer, EntityUid actionId, A return GetActions(user); } - private void OnPlayerAttached(EntityUid uid, ActionsComponent component, PlayerAttachedEvent args) + private void OnPlayerAttached(EntityUid uid, ActionsComponent component, LocalPlayerAttachedEvent args) { LinkAllActions(component); } - private void OnPlayerDetached(EntityUid uid, ActionsComponent component, PlayerDetachedEvent? args = null) + private void OnPlayerDetached(EntityUid uid, ActionsComponent component, LocalPlayerDetachedEvent? args = null) { UnlinkAllActions(); } diff --git a/Content.Client/Administration/Managers/ClientAdminManager.cs b/Content.Client/Administration/Managers/ClientAdminManager.cs index 8978e2fd6d..1a1366c6f2 100644 --- a/Content.Client/Administration/Managers/ClientAdminManager.cs +++ b/Content.Client/Administration/Managers/ClientAdminManager.cs @@ -4,7 +4,7 @@ using Robust.Client.Player; using Robust.Shared.ContentPack; using Robust.Shared.Network; -using Robust.Shared.Players; +using Robust.Shared.Player; using Robust.Shared.Utility; namespace Content.Client.Administration.Managers diff --git a/Content.Client/Administration/UI/CustomControls/PlayerListControl.xaml.cs b/Content.Client/Administration/UI/CustomControls/PlayerListControl.xaml.cs index 6142e3a831..5fa28bf1ac 100644 --- a/Content.Client/Administration/UI/CustomControls/PlayerListControl.xaml.cs +++ b/Content.Client/Administration/UI/CustomControls/PlayerListControl.xaml.cs @@ -22,7 +22,7 @@ public sealed partial class PlayerListControl : BoxContainer private List _playerList = new(); private readonly List _sortedPlayerList = new(); - public event Action? OnSelectionChanged; + public event Action? OnSelectionChanged; public IReadOnlyList PlayerInfo => _playerList; public Func? OverrideText; @@ -46,9 +46,9 @@ public PlayerListControl() BackgroundPanel.PanelOverride = new StyleBoxFlat {BackgroundColor = new Color(32, 32, 40)}; } - private void PlayerListItemPressed(BaseButton.ButtonEventArgs args, ListData data) + private void PlayerListItemPressed(BaseButton.ButtonEventArgs? args, ListData? data) { - if (data is not PlayerListData {Info: var selectedPlayer}) + if (args == null || data is not PlayerListData {Info: var selectedPlayer}) return; if (args.Event.Function == EngineKeyFunctions.UIClick) { diff --git a/Content.Client/Administration/UI/Tabs/AdminTab/TeleportWindow.xaml.cs b/Content.Client/Administration/UI/Tabs/AdminTab/TeleportWindow.xaml.cs index c5a9bd036a..1978b5c3c0 100644 --- a/Content.Client/Administration/UI/Tabs/AdminTab/TeleportWindow.xaml.cs +++ b/Content.Client/Administration/UI/Tabs/AdminTab/TeleportWindow.xaml.cs @@ -5,7 +5,6 @@ using Robust.Client.UserInterface.Controls; using Robust.Client.UserInterface.CustomControls; using Robust.Shared.IoC; -using Robust.Shared.Players; namespace Content.Client.Administration.UI.Tabs.AdminTab { diff --git a/Content.Client/Alerts/ClientAlertsSystem.cs b/Content.Client/Alerts/ClientAlertsSystem.cs index bb6d2d4df4..5089022415 100644 --- a/Content.Client/Alerts/ClientAlertsSystem.cs +++ b/Content.Client/Alerts/ClientAlertsSystem.cs @@ -1,7 +1,6 @@ using System.Linq; using Content.Shared.Alert; using JetBrains.Annotations; -using Robust.Client.GameObjects; using Robust.Client.Player; using Robust.Shared.Prototypes; @@ -22,8 +21,8 @@ public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnPlayerAttached); - SubscribeLocalEvent(OnPlayerDetached); + SubscribeLocalEvent(OnPlayerAttached); + SubscribeLocalEvent(OnPlayerDetached); SubscribeLocalEvent(ClientAlertsHandleState); } @@ -69,7 +68,7 @@ private void ClientAlertsHandleState(EntityUid uid, AlertsComponent component, r SyncAlerts?.Invoke(this, component.Alerts); } - private void OnPlayerAttached(EntityUid uid, AlertsComponent component, PlayerAttachedEvent args) + private void OnPlayerAttached(EntityUid uid, AlertsComponent component, LocalPlayerAttachedEvent args) { if (_playerManager.LocalPlayer?.ControlledEntity != uid) return; @@ -87,7 +86,7 @@ protected override void HandleComponentShutdown(EntityUid uid, AlertsComponent c ClearAlerts?.Invoke(this, EventArgs.Empty); } - private void OnPlayerDetached(EntityUid uid, AlertsComponent component, PlayerDetachedEvent args) + private void OnPlayerDetached(EntityUid uid, AlertsComponent component, LocalPlayerDetachedEvent args) { ClearAlerts?.Invoke(this, EventArgs.Empty); } diff --git a/Content.Client/CharacterInfo/CharacterInfoSystem.cs b/Content.Client/CharacterInfo/CharacterInfoSystem.cs index 93bd86d140..844a352a18 100644 --- a/Content.Client/CharacterInfo/CharacterInfoSystem.cs +++ b/Content.Client/CharacterInfo/CharacterInfoSystem.cs @@ -1,6 +1,5 @@ using Content.Shared.CharacterInfo; using Content.Shared.Objectives; -using Robust.Client.GameObjects; using Robust.Client.Player; using Robust.Client.UserInterface; @@ -11,14 +10,11 @@ public sealed class CharacterInfoSystem : EntitySystem [Dependency] private readonly IPlayerManager _players = default!; public event Action? OnCharacterUpdate; - public event Action? OnCharacterDetached; public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnPlayerAttached); - SubscribeNetworkEvent(OnCharacterInfoEvent); } @@ -33,14 +29,6 @@ public void RequestCharacterInfo() RaiseNetworkEvent(new RequestCharacterInfoEvent(GetNetEntity(entity.Value))); } - private void OnPlayerAttached(PlayerAttachSysMessage msg) - { - if (msg.AttachedEntity == default) - { - OnCharacterDetached?.Invoke(); - } - } - private void OnCharacterInfoEvent(CharacterInfoEvent msg, EntitySessionEventArgs args) { var entity = GetEntity(msg.NetEntity); diff --git a/Content.Client/Chemistry/Visualizers/FoamVisualizerSystem.cs b/Content.Client/Chemistry/Visualizers/FoamVisualizerSystem.cs index ec582ee094..2ee88956ff 100644 --- a/Content.Client/Chemistry/Visualizers/FoamVisualizerSystem.cs +++ b/Content.Client/Chemistry/Visualizers/FoamVisualizerSystem.cs @@ -1,8 +1,6 @@ -using Content.Shared.Smoking; -using Robust.Shared.Spawners; +using Content.Shared.Chemistry.Components; using Robust.Client.Animations; using Robust.Client.GameObjects; -using Robust.Shared.Network; using Robust.Shared.Timing; namespace Content.Client.Chemistry.Visualizers; @@ -18,6 +16,7 @@ public override void Initialize() { base.Initialize(); SubscribeLocalEvent(OnComponentInit); + SubscribeLocalEvent(OnAnimationComplete); } public override void Update(float frameTime) @@ -27,11 +26,11 @@ public override void Update(float frameTime) if (!_timing.IsFirstTimePredicted) return; - var query = EntityQueryEnumerator(); + var query = EntityQueryEnumerator(); - while (query.MoveNext(out var uid, out var comp, out var despawn)) + while (query.MoveNext(out var uid, out var comp, out var smoke)) { - if (despawn.Lifetime > 1f) + if (_timing.CurTime < comp.StartTime + TimeSpan.FromSeconds(smoke.Duration) - TimeSpan.FromSeconds(comp.AnimationTime)) continue; // Despawn animation. @@ -48,6 +47,7 @@ public override void Update(float frameTime) /// private void OnComponentInit(EntityUid uid, FoamVisualsComponent comp, ComponentInit args) { + comp.StartTime = _timing.CurTime; comp.Animation = new Animation { Length = TimeSpan.FromSeconds(comp.AnimationTime), @@ -58,12 +58,21 @@ private void OnComponentInit(EntityUid uid, FoamVisualsComponent comp, Component LayerKey = FoamVisualLayers.Base, KeyFrames = { - new AnimationTrackSpriteFlick.KeyFrame(comp.State, 0f) + new AnimationTrackSpriteFlick.KeyFrame(comp.AnimationState, 0f) } } } }; } + + private void OnAnimationComplete(EntityUid uid, FoamVisualsComponent component, AnimationCompletedEvent args) + { + if (args.Key != FoamVisualsComponent.AnimationKey) + return; + + if (TryComp(uid, out var sprite)) + sprite.Visible = false; + } } public enum FoamVisualLayers : byte diff --git a/Content.Client/Chemistry/Visualizers/FoamVisualsComponent.cs b/Content.Client/Chemistry/Visualizers/FoamVisualsComponent.cs index b09c74aa0f..8199efa42e 100644 --- a/Content.Client/Chemistry/Visualizers/FoamVisualsComponent.cs +++ b/Content.Client/Chemistry/Visualizers/FoamVisualsComponent.cs @@ -1,5 +1,6 @@ using Robust.Client.Animations; using Robust.Client.Graphics; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; namespace Content.Client.Chemistry.Visualizers; @@ -15,18 +16,21 @@ public sealed partial class FoamVisualsComponent : Component /// public const string AnimationKey = "foamdissolve_animation"; + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] + public TimeSpan StartTime; + /// /// How long the foam visually dissolves for. /// - [DataField("animationTime")] - public float AnimationTime = 0.6f; + [DataField] + public float AnimationTime = 0.5f; /// /// The state of the entities base sprite RSI that is displayed when the foam dissolves. /// Cannot use because it does not have and I am not making an engine PR at this time. /// - [DataField("animationState")] - public string State = "foam-dissolve"; + [DataField] + public string AnimationState = "foam-dissolve"; /// /// The animation used while the foam dissolves. diff --git a/Content.Client/Construction/ConstructionSystem.cs b/Content.Client/Construction/ConstructionSystem.cs index 98d2dfd414..9fc638cea2 100644 --- a/Content.Client/Construction/ConstructionSystem.cs +++ b/Content.Client/Construction/ConstructionSystem.cs @@ -38,7 +38,7 @@ public override void Initialize() base.Initialize(); UpdatesOutsidePrediction = true; - SubscribeLocalEvent(HandlePlayerAttached); + SubscribeLocalEvent(HandlePlayerAttached); SubscribeNetworkEvent(HandleAckStructure); SubscribeNetworkEvent(OnConstructionGuideReceived); @@ -110,9 +110,9 @@ private void HandleAckStructure(AckStructureConstructionMessage msg) ClearGhost(msg.GhostId); } - private void HandlePlayerAttached(PlayerAttachSysMessage msg) + private void HandlePlayerAttached(LocalPlayerAttachedEvent msg) { - var available = IsCraftingAvailable(msg.AttachedEntity); + var available = IsCraftingAvailable(msg.Entity); UpdateCraftingAvailability(available); } diff --git a/Content.Client/Drugs/DrugOverlaySystem.cs b/Content.Client/Drugs/DrugOverlaySystem.cs index 7be63b4c50..ec0d014072 100644 --- a/Content.Client/Drugs/DrugOverlaySystem.cs +++ b/Content.Client/Drugs/DrugOverlaySystem.cs @@ -1,5 +1,4 @@ using Content.Shared.Drugs; -using Robust.Client.GameObjects; using Robust.Client.Graphics; using Robust.Client.Player; @@ -24,18 +23,18 @@ public override void Initialize() SubscribeLocalEvent(OnInit); SubscribeLocalEvent(OnShutdown); - SubscribeLocalEvent(OnPlayerAttached); - SubscribeLocalEvent(OnPlayerDetached); + SubscribeLocalEvent(OnPlayerAttached); + SubscribeLocalEvent(OnPlayerDetached); _overlay = new(); } - private void OnPlayerAttached(EntityUid uid, SeeingRainbowsComponent component, PlayerAttachedEvent args) + private void OnPlayerAttached(EntityUid uid, SeeingRainbowsComponent component, LocalPlayerAttachedEvent args) { _overlayMan.AddOverlay(_overlay); } - private void OnPlayerDetached(EntityUid uid, SeeingRainbowsComponent component, PlayerDetachedEvent args) + private void OnPlayerDetached(EntityUid uid, SeeingRainbowsComponent component, LocalPlayerDetachedEvent args) { _overlay.Intoxication = 0; _overlayMan.RemoveOverlay(_overlay); diff --git a/Content.Client/Drunk/DrunkSystem.cs b/Content.Client/Drunk/DrunkSystem.cs index 0573b2ff3e..4f2ec70b56 100644 --- a/Content.Client/Drunk/DrunkSystem.cs +++ b/Content.Client/Drunk/DrunkSystem.cs @@ -1,5 +1,4 @@ using Content.Shared.Drunk; -using Robust.Client.GameObjects; using Robust.Client.Graphics; using Robust.Client.Player; @@ -19,18 +18,18 @@ public override void Initialize() SubscribeLocalEvent(OnDrunkInit); SubscribeLocalEvent(OnDrunkShutdown); - SubscribeLocalEvent(OnPlayerAttached); - SubscribeLocalEvent(OnPlayerDetached); + SubscribeLocalEvent(OnPlayerAttached); + SubscribeLocalEvent(OnPlayerDetached); _overlay = new(); } - private void OnPlayerAttached(EntityUid uid, DrunkComponent component, PlayerAttachedEvent args) + private void OnPlayerAttached(EntityUid uid, DrunkComponent component, LocalPlayerAttachedEvent args) { _overlayMan.AddOverlay(_overlay); } - private void OnPlayerDetached(EntityUid uid, DrunkComponent component, PlayerDetachedEvent args) + private void OnPlayerDetached(EntityUid uid, DrunkComponent component, LocalPlayerDetachedEvent args) { _overlay.CurrentBoozePower = 0; _overlayMan.RemoveOverlay(_overlay); diff --git a/Content.Client/Eye/Blinding/BlindingSystem.cs b/Content.Client/Eye/Blinding/BlindingSystem.cs index f0b760d838..f255f7ef01 100644 --- a/Content.Client/Eye/Blinding/BlindingSystem.cs +++ b/Content.Client/Eye/Blinding/BlindingSystem.cs @@ -1,17 +1,7 @@ - -using Content.Shared.Eye.Blinding; -using Robust.Client.GameObjects; using Robust.Client.Graphics; using Robust.Client.Player; -using System; -using System.Collections.Generic; -using System.Linq; -using Content.Shared.Administration; -using Content.Shared.Administration.Events; using Content.Shared.Eye.Blinding.Components; using Content.Shared.GameTicking; -using Robust.Shared.GameObjects; -using Robust.Shared.Network; namespace Content.Client.Eye.Blinding; @@ -31,20 +21,20 @@ public override void Initialize() SubscribeLocalEvent(OnBlindInit); SubscribeLocalEvent(OnBlindShutdown); - SubscribeLocalEvent(OnPlayerAttached); - SubscribeLocalEvent(OnPlayerDetached); + SubscribeLocalEvent(OnPlayerAttached); + SubscribeLocalEvent(OnPlayerDetached); SubscribeNetworkEvent(RoundRestartCleanup); _overlay = new(); } - private void OnPlayerAttached(EntityUid uid, BlindableComponent component, PlayerAttachedEvent args) + private void OnPlayerAttached(EntityUid uid, BlindableComponent component, LocalPlayerAttachedEvent args) { _overlayMan.AddOverlay(_overlay); } - private void OnPlayerDetached(EntityUid uid, BlindableComponent component, PlayerDetachedEvent args) + private void OnPlayerDetached(EntityUid uid, BlindableComponent component, LocalPlayerDetachedEvent args) { _overlayMan.RemoveOverlay(_overlay); _lightManager.Enabled = true; diff --git a/Content.Client/Eye/Blinding/BlurryVisionSystem.cs b/Content.Client/Eye/Blinding/BlurryVisionSystem.cs index 1bac2a97bf..8be5b4ed93 100644 --- a/Content.Client/Eye/Blinding/BlurryVisionSystem.cs +++ b/Content.Client/Eye/Blinding/BlurryVisionSystem.cs @@ -1,9 +1,6 @@ -using Content.Shared.Eye.Blinding; using Content.Shared.Eye.Blinding.Components; -using Robust.Client.GameObjects; using Robust.Client.Graphics; using Robust.Client.Player; -using Robust.Shared.GameStates; namespace Content.Client.Eye.Blinding; @@ -20,18 +17,18 @@ public override void Initialize() SubscribeLocalEvent(OnBlurryInit); SubscribeLocalEvent(OnBlurryShutdown); - SubscribeLocalEvent(OnPlayerAttached); - SubscribeLocalEvent(OnPlayerDetached); + SubscribeLocalEvent(OnPlayerAttached); + SubscribeLocalEvent(OnPlayerDetached); _overlay = new(); } - private void OnPlayerAttached(EntityUid uid, BlurryVisionComponent component, PlayerAttachedEvent args) + private void OnPlayerAttached(EntityUid uid, BlurryVisionComponent component, LocalPlayerAttachedEvent args) { _overlayMan.AddOverlay(_overlay); } - private void OnPlayerDetached(EntityUid uid, BlurryVisionComponent component, PlayerDetachedEvent args) + private void OnPlayerDetached(EntityUid uid, BlurryVisionComponent component, LocalPlayerDetachedEvent args) { _overlayMan.RemoveOverlay(_overlay); } diff --git a/Content.Client/Eye/EyeLerpingSystem.cs b/Content.Client/Eye/EyeLerpingSystem.cs index 8e54196b81..b46921a9b4 100644 --- a/Content.Client/Eye/EyeLerpingSystem.cs +++ b/Content.Client/Eye/EyeLerpingSystem.cs @@ -30,7 +30,7 @@ public override void Initialize() SubscribeLocalEvent(OnAttached); SubscribeLocalEvent(HandleMapChange); - SubscribeLocalEvent(OnDetached); + SubscribeLocalEvent(OnDetached); UpdatesAfter.Add(typeof(TransformSystem)); UpdatesAfter.Add(typeof(PhysicsSystem)); @@ -94,7 +94,7 @@ private void OnAttached(ref EyeAttachedEvent ev) AddEye(ev.Entity, ev.Component, true); } - private void OnDetached(EntityUid uid, LerpingEyeComponent component, PlayerDetachedEvent args) + private void OnDetached(EntityUid uid, LerpingEyeComponent component, LocalPlayerDetachedEvent args) { if (!component.ManuallyAdded) RemCompDeferred(uid, component); diff --git a/Content.Client/Fullscreen/FullscreenHook.cs b/Content.Client/Fullscreen/FullscreenHook.cs index 78a0151736..7917fddfbb 100644 --- a/Content.Client/Fullscreen/FullscreenHook.cs +++ b/Content.Client/Fullscreen/FullscreenHook.cs @@ -4,7 +4,7 @@ using Robust.Shared.Input.Binding; using Robust.Shared; using Robust.Shared.Configuration; -using Robust.Shared.Players; +using Robust.Shared.Player; namespace Content.Client.Fullscreen; public sealed class FullscreenHook diff --git a/Content.Client/Gameplay/GameplayStateBase.cs b/Content.Client/Gameplay/GameplayStateBase.cs index 788a4e5dff..454c063260 100644 --- a/Content.Client/Gameplay/GameplayStateBase.cs +++ b/Content.Client/Gameplay/GameplayStateBase.cs @@ -16,7 +16,7 @@ using Robust.Shared.Input; using Robust.Shared.Input.Binding; using Robust.Shared.Map; -using Robust.Shared.Players; +using Robust.Shared.Player; using Robust.Shared.Timing; namespace Content.Client.Gameplay diff --git a/Content.Client/Ghost/GhostSystem.cs b/Content.Client/Ghost/GhostSystem.cs index 5727534109..a89d0858d9 100644 --- a/Content.Client/Ghost/GhostSystem.cs +++ b/Content.Client/Ghost/GhostSystem.cs @@ -58,10 +58,10 @@ public override void Initialize() SubscribeLocalEvent(OnGhostRemove); SubscribeLocalEvent(OnGhostState); - SubscribeLocalEvent(OnGhostPlayerAttach); - SubscribeLocalEvent(OnGhostPlayerDetach); + SubscribeLocalEvent(OnGhostPlayerAttach); + SubscribeLocalEvent(OnGhostPlayerDetach); - SubscribeLocalEvent(OnPlayerAttach); + SubscribeLocalEvent(OnPlayerAttach); SubscribeNetworkEvent(OnGhostWarpsResponse); SubscribeNetworkEvent(OnUpdateGhostRoleCount); @@ -130,7 +130,7 @@ private void OnGhostRemove(EntityUid uid, GhostComponent component, ComponentRem PlayerRemoved?.Invoke(component); } - private void OnGhostPlayerAttach(EntityUid uid, GhostComponent component, PlayerAttachedEvent playerAttachedEvent) + private void OnGhostPlayerAttach(EntityUid uid, GhostComponent component, LocalPlayerAttachedEvent localPlayerAttachedEvent) { if (uid != _playerManager.LocalPlayer?.ControlledEntity) return; @@ -161,13 +161,13 @@ private bool PlayerDetach(EntityUid uid) return true; } - private void OnGhostPlayerDetach(EntityUid uid, GhostComponent component, PlayerDetachedEvent args) + private void OnGhostPlayerDetach(EntityUid uid, GhostComponent component, LocalPlayerDetachedEvent args) { if (PlayerDetach(uid)) component.IsAttached = false; } - private void OnPlayerAttach(PlayerAttachedEvent ev) + private void OnPlayerAttach(LocalPlayerAttachedEvent ev) { if (!HasComp(ev.Entity)) PlayerDetach(ev.Entity); diff --git a/Content.Client/Hands/Systems/HandsSystem.cs b/Content.Client/Hands/Systems/HandsSystem.cs index ed40589f7f..31de7ec143 100644 --- a/Content.Client/Hands/Systems/HandsSystem.cs +++ b/Content.Client/Hands/Systems/HandsSystem.cs @@ -42,8 +42,8 @@ public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(HandlePlayerAttached); - SubscribeLocalEvent(HandlePlayerDetached); + SubscribeLocalEvent(HandlePlayerAttached); + SubscribeLocalEvent(HandlePlayerDetached); SubscribeLocalEvent(OnHandsStartup); SubscribeLocalEvent(OnHandsShutdown); SubscribeLocalEvent(HandleComponentState); @@ -361,12 +361,12 @@ private void OnVisualsChanged(EntityUid uid, HandsComponent component, VisualsCh #region Gui - private void HandlePlayerAttached(EntityUid uid, HandsComponent component, PlayerAttachedEvent args) + private void HandlePlayerAttached(EntityUid uid, HandsComponent component, LocalPlayerAttachedEvent args) { OnPlayerHandsAdded?.Invoke(component); } - private void HandlePlayerDetached(EntityUid uid, HandsComponent component, PlayerDetachedEvent args) + private void HandlePlayerDetached(EntityUid uid, HandsComponent component, LocalPlayerDetachedEvent args) { OnPlayerHandsRemoved?.Invoke(); } diff --git a/Content.Client/HealthAnalyzer/UI/HealthAnalyzerWindow.xaml b/Content.Client/HealthAnalyzer/UI/HealthAnalyzerWindow.xaml index 1f64feec2b..b78c3c6a56 100644 --- a/Content.Client/HealthAnalyzer/UI/HealthAnalyzerWindow.xaml +++ b/Content.Client/HealthAnalyzer/UI/HealthAnalyzerWindow.xaml @@ -1,9 +1,33 @@  - - - + SetSize="250 100"> + + + + + \ No newline at end of file diff --git a/Content.Client/HealthAnalyzer/UI/HealthAnalyzerWindow.xaml.cs b/Content.Client/HealthAnalyzer/UI/HealthAnalyzerWindow.xaml.cs index 1c5a3373e1..36f7a08b96 100644 --- a/Content.Client/HealthAnalyzer/UI/HealthAnalyzerWindow.xaml.cs +++ b/Content.Client/HealthAnalyzer/UI/HealthAnalyzerWindow.xaml.cs @@ -1,5 +1,5 @@ +using System.Linq; using System.Numerics; -using System.Text; using Content.Shared.Damage; using Content.Shared.Damage.Prototypes; using Content.Shared.FixedPoint; @@ -8,85 +8,182 @@ using Robust.Client.AutoGenerated; using Robust.Client.UserInterface.CustomControls; using Robust.Client.UserInterface.XAML; +using Robust.Client.GameObjects; +using Robust.Client.Graphics; +using Robust.Client.UserInterface.Controls; +using Robust.Client.ResourceManagement; using Robust.Shared.Prototypes; +using Robust.Shared.Utility; namespace Content.Client.HealthAnalyzer.UI { [GenerateTypedNameReferences] public sealed partial class HealthAnalyzerWindow : DefaultWindow { + private readonly IEntityManager _entityManager; + private readonly SpriteSystem _spriteSystem; + private readonly IPrototypeManager _prototypes; + private readonly IResourceCache _cache; + + private const int AnalyzerHeight = 430; + private const int AnalyzerWidth = 300; + public HealthAnalyzerWindow() { RobustXamlLoader.Load(this); + + var dependencies = IoCManager.Instance!; + _entityManager = dependencies.Resolve(); + _spriteSystem = _entityManager.System(); + _prototypes = dependencies.Resolve(); + _cache = dependencies.Resolve(); } public void Populate(HealthAnalyzerScannedUserMessage msg) { - var text = new StringBuilder(); - var entities = IoCManager.Resolve(); - var target = entities.GetEntity(msg.TargetEntity); + GroupsContainer.RemoveAllChildren(); - if (msg.TargetEntity != null && entities.TryGetComponent(target, out var damageable)) + var target = _entityManager.GetEntity(msg.TargetEntity); + + if (target == null + || !_entityManager.TryGetComponent(target, out var damageable)) { - string entityName = "Unknown"; - if (msg.TargetEntity != null && - entities.HasComponent(target.Value)) - { - entityName = Identity.Name(target.Value, entities); - } + NoPatientDataText.Visible = true; + return; + } + + NoPatientDataText.Visible = false; + + string entityName = Loc.GetString("health-analyzer-window-entity-unknown-text"); + if (_entityManager.HasComponent(target.Value)) + { + entityName = Identity.Name(target.Value, _entityManager); + } - IReadOnlyDictionary damagePerGroup = damageable.DamagePerGroup; - IReadOnlyDictionary damagePerType = damageable.Damage.DamageDict; + PatientName.Text = Loc.GetString( + "health-analyzer-window-entity-health-text", + ("entityName", entityName) + ); - text.Append($"{Loc.GetString("health-analyzer-window-entity-health-text", ("entityName", entityName))}\n\n"); + Temperature.Text = Loc.GetString("health-analyzer-window-entity-temperature-text", + ("temperature", float.IsNaN(msg.Temperature) ? "N/A" : $"{msg.Temperature - 273f:F1} °C") + ); + BloodLevel.Text = Loc.GetString("health-analyzer-window-entity-blood-level-text", + ("bloodLevel", float.IsNaN(msg.BloodLevel) ? "N/A" : $"{msg.BloodLevel * 100:F1} %") + ); - text.Append($"{Loc.GetString("health-analyzer-window-entity-temperature-text", ("temperature", float.IsNaN(msg.Temperature) ? "N/A" : $"{msg.Temperature - 273f:F1} °C"))}\n"); + patientDamageAmount.Text = Loc.GetString( + "health-analyzer-window-entity-damage-total-text", + ("amount", damageable.TotalDamage) + ); + var damageSortedGroups = + damageable.DamagePerGroup.OrderBy(damage => damage.Value) + .ToDictionary(x => x.Key, x => x.Value); + IReadOnlyDictionary damagePerType = damageable.Damage.DamageDict; - text.Append($"{Loc.GetString("health-analyzer-window-entity-blood-level-text", ("bloodLevel", float.IsNaN(msg.BloodLevel) ? "N/A" : $"{msg.BloodLevel * 100:F1} %"))}\n\n"); + DrawDiagnosticGroups(damageSortedGroups, damagePerType); + SetHeight = AnalyzerHeight; + SetWidth = AnalyzerWidth; + } - // Damage - text.Append($"{Loc.GetString("health-analyzer-window-entity-damage-total-text", ("amount", damageable.TotalDamage))}\n"); + private void DrawDiagnosticGroups( + Dictionary groups, IReadOnlyDictionary damageDict) + { + HashSet shownTypes = new(); - HashSet shownTypes = new(); + // Show the total damage and type breakdown for each damage group. + foreach (var (damageGroupId, damageAmount) in groups.Reverse()) + { + if (damageAmount == 0) + continue; - var protos = IoCManager.Resolve(); + var groupTitleText = $"{Loc.GetString( + "health-analyzer-window-damage-group-text", + ("damageGroup", Loc.GetString("health-analyzer-window-damage-group-" + damageGroupId)), + ("amount", damageAmount) + )}"; - // Show the total damage and type breakdown for each damage group. - foreach (var (damageGroupId, damageAmount) in damagePerGroup) + var groupContainer = new BoxContainer { - if (damageAmount == 0) - { - continue; - } - text.Append($"\n{Loc.GetString("health-analyzer-window-damage-group-text", ("damageGroup", Loc.GetString("health-analyzer-window-damage-group-" + damageGroupId)), ("amount", damageAmount))}"); + Margin = new Thickness(0, 0, 0, 15), + Align = BoxContainer.AlignMode.Begin, + Orientation = BoxContainer.LayoutOrientation.Vertical, + }; + + groupContainer.AddChild(CreateDiagnosticGroupTitle(groupTitleText, damageGroupId, damageAmount.Int())); + + GroupsContainer.AddChild(groupContainer); - // Show the damage for each type in that group. - var group = protos.Index(damageGroupId); - foreach (var type in group.DamageTypes) + // Show the damage for each type in that group. + var group = _prototypes.Index(damageGroupId); + + foreach (var type in group.DamageTypes) + { + if (damageDict.TryGetValue(type, out var typeAmount) && typeAmount > 0) { - if (damagePerType.TryGetValue(type, out var typeAmount) ) - { - // If damage types are allowed to belong to more than one damage group, they may appear twice here. Mark them as duplicate. - if (!shownTypes.Contains(type) && typeAmount > 0) - { - shownTypes.Add(type); - text.Append($"\n- {Loc.GetString("health-analyzer-window-damage-type-text", ("damageType", Loc.GetString("health-analyzer-window-damage-type-" + type)), ("amount", typeAmount))}"); - } - } + // If damage types are allowed to belong to more than one damage group, + // they may appear twice here. Mark them as duplicate. + if (shownTypes.Contains(type)) + continue; + + shownTypes.Add(type); + + var damageString = Loc.GetString( + "health-analyzer-window-damage-type-text", + ("damageType", Loc.GetString("health-analyzer-window-damage-type-" + type)), + ("amount", typeAmount) + ); + + groupContainer.AddChild(CreateDiagnosticItemLabel(damageString.Insert(0, "- "))); } - text.AppendLine(); } - Diagnostics.Text = text.ToString(); - SetSize = new Vector2(250, 600); } - else + } + + private Texture GetTexture(string texture) + { + var rsiPath = new ResPath("/Textures/Objects/Devices/health_analyzer.rsi"); + var rsiSprite = new SpriteSpecifier.Rsi(rsiPath, texture); + + var rsi = _cache.GetResource(rsiSprite.RsiPath).RSI; + if (!rsi.TryGetState(rsiSprite.RsiState, out var state)) { - Diagnostics.Text = Loc.GetString("health-analyzer-window-no-patient-data-text"); - SetSize = new Vector2(250, 100); + rsiSprite = new SpriteSpecifier.Rsi(rsiPath, "unknown"); } + + return _spriteSystem.Frame0(rsiSprite); + } + + private static Label CreateDiagnosticItemLabel(string text) + { + return new Label + { + Margin = new Thickness(2, 2), + Text = text, + }; + } + + private BoxContainer CreateDiagnosticGroupTitle(string text, string id, int damageAmount) + { + var rootContainer = new BoxContainer + { + VerticalAlignment = VAlignment.Bottom, + Orientation = BoxContainer.LayoutOrientation.Horizontal + }; + + rootContainer.AddChild(new TextureRect + { + Margin = new Thickness(0, 3), + SetSize = new Vector2(30, 30), + Texture = GetTexture(id.ToLower()) + }); + + rootContainer.AddChild(CreateDiagnosticItemLabel(text)); + + return rootContainer; } } } diff --git a/Content.Client/HealthOverlay/HealthOverlaySystem.cs b/Content.Client/HealthOverlay/HealthOverlaySystem.cs index baeb4fe025..29ac937199 100644 --- a/Content.Client/HealthOverlay/HealthOverlaySystem.cs +++ b/Content.Client/HealthOverlay/HealthOverlaySystem.cs @@ -3,8 +3,8 @@ using Content.Shared.GameTicking; using Content.Shared.Mobs.Components; using JetBrains.Annotations; -using Robust.Client.GameObjects; using Robust.Client.Graphics; +using Robust.Client.Player; namespace Content.Client.HealthOverlay { @@ -13,9 +13,9 @@ public sealed class HealthOverlaySystem : EntitySystem { [Dependency] private readonly IEyeManager _eyeManager = default!; [Dependency] private readonly IEntityManager _entities = default!; + [Dependency] private readonly IPlayerManager _player = default!; private readonly Dictionary _guis = new(); - private EntityUid? _attachedEntity; private bool _enabled; public bool Enabled @@ -42,7 +42,6 @@ public override void Initialize() base.Initialize(); SubscribeNetworkEvent(Reset); - SubscribeLocalEvent(HandlePlayerAttached); } public void Reset(RoundRestartCleanupEvent ev) @@ -53,12 +52,6 @@ public void Reset(RoundRestartCleanupEvent ev) } _guis.Clear(); - _attachedEntity = default; - } - - private void HandlePlayerAttached(PlayerAttachSysMessage message) - { - _attachedEntity = message.AttachedEntity; } public override void FrameUpdate(float frameTime) @@ -70,7 +63,7 @@ public override void FrameUpdate(float frameTime) return; } - if (_attachedEntity is not {} ent || Deleted(ent)) + if (_player.LocalEntity is not {} ent || Deleted(ent)) { return; } diff --git a/Content.Client/Info/PlaytimeStats/PlaytimeStatsEntry.cs b/Content.Client/Info/PlaytimeStats/PlaytimeStatsEntry.cs new file mode 100644 index 0000000000..aff01800f9 --- /dev/null +++ b/Content.Client/Info/PlaytimeStats/PlaytimeStatsEntry.cs @@ -0,0 +1,39 @@ +using Robust.Client.AutoGenerated; +using Robust.Client.Graphics; +using Robust.Client.UserInterface.Controls; +using Robust.Client.UserInterface.XAML; + +namespace Content.Client.Info.PlaytimeStats; + +[GenerateTypedNameReferences] +public sealed partial class PlaytimeStatsEntry : ContainerButton +{ + public TimeSpan Playtime { get; private set; } // new TimeSpan property + + public PlaytimeStatsEntry(string role, TimeSpan playtime, StyleBox styleBox) + { + RobustXamlLoader.Load(this); + + RoleLabel.Text = role; + Playtime = playtime; // store the TimeSpan value directly + PlaytimeLabel.Text = ConvertTimeSpanToHoursMinutes(playtime); // convert to string for display + BackgroundColorPanel.PanelOverride = styleBox; + } + + private static string ConvertTimeSpanToHoursMinutes(TimeSpan timeSpan) + { + var hours = (int)timeSpan.TotalHours; + var minutes = timeSpan.Minutes; + + var formattedTimeLoc = Loc.GetString("ui-playtime-time-format", ("hours", hours), ("minutes", minutes)); + return formattedTimeLoc; + } + + public void UpdateShading(StyleBoxFlat styleBox) + { + BackgroundColorPanel.PanelOverride = styleBox; + } + public string? PlaytimeText => PlaytimeLabel.Text; + + public string? RoleText => RoleLabel.Text; +} diff --git a/Content.Client/Info/PlaytimeStats/PlaytimeStatsEntry.xaml b/Content.Client/Info/PlaytimeStats/PlaytimeStatsEntry.xaml new file mode 100644 index 0000000000..97a66e5cc2 --- /dev/null +++ b/Content.Client/Info/PlaytimeStats/PlaytimeStatsEntry.xaml @@ -0,0 +1,20 @@ + + + + + diff --git a/Content.Client/Info/PlaytimeStats/PlaytimeStatsHeader.cs b/Content.Client/Info/PlaytimeStats/PlaytimeStatsHeader.cs new file mode 100644 index 0000000000..b005c641f7 --- /dev/null +++ b/Content.Client/Info/PlaytimeStats/PlaytimeStatsHeader.cs @@ -0,0 +1,86 @@ +using Robust.Client.AutoGenerated; +using Robust.Client.UserInterface; +using Robust.Client.UserInterface.Controls; +using Robust.Client.UserInterface.XAML; +using Robust.Shared.Input; + +namespace Content.Client.Info.PlaytimeStats; + +[GenerateTypedNameReferences] +public sealed partial class PlaytimeStatsHeader : ContainerButton +{ + public event Action? OnHeaderClicked; + private SortDirection _roleDirection = SortDirection.Ascending; + private SortDirection _playtimeDirection = SortDirection.Descending; + + public PlaytimeStatsHeader() + { + RobustXamlLoader.Load(this); + + RoleLabel.OnKeyBindDown += RoleClicked; + PlaytimeLabel.OnKeyBindDown += PlaytimeClicked; + + UpdateLabels(); + } + + public enum Header : byte + { + Role, + Playtime + } + public enum SortDirection : byte + { + Ascending, + Descending + } + + private void HeaderClicked(GUIBoundKeyEventArgs args, Header header) + { + if (args.Function != EngineKeyFunctions.UIClick) + { + return; + } + + switch (header) + { + case Header.Role: + _roleDirection = _roleDirection == SortDirection.Ascending ? SortDirection.Descending : SortDirection.Ascending; + break; + case Header.Playtime: + _playtimeDirection = _playtimeDirection == SortDirection.Ascending ? SortDirection.Descending : SortDirection.Ascending; + break; + } + + UpdateLabels(); + OnHeaderClicked?.Invoke(header, header == Header.Role ? _roleDirection : _playtimeDirection); + args.Handle(); + } + private void UpdateLabels() + { + RoleLabel.Text = Loc.GetString("ui-playtime-header-role-type") + + (_roleDirection == SortDirection.Ascending ? " ↓" : " ↑"); + PlaytimeLabel.Text = Loc.GetString("ui-playtime-header-role-time") + + (_playtimeDirection == SortDirection.Ascending ? " ↓" : " ↑"); + } + + private void RoleClicked(GUIBoundKeyEventArgs args) + { + HeaderClicked(args, Header.Role); + } + + private void PlaytimeClicked(GUIBoundKeyEventArgs args) + { + HeaderClicked(args, Header.Playtime); + } + + protected override void Dispose(bool disposing) + { + base.Dispose(disposing); + + if (disposing) + { + RoleLabel.OnKeyBindDown -= RoleClicked; + PlaytimeLabel.OnKeyBindDown -= PlaytimeClicked; + } + } +} diff --git a/Content.Client/Info/PlaytimeStats/PlaytimeStatsHeader.xaml b/Content.Client/Info/PlaytimeStats/PlaytimeStatsHeader.xaml new file mode 100644 index 0000000000..4cf4d8e2cc --- /dev/null +++ b/Content.Client/Info/PlaytimeStats/PlaytimeStatsHeader.xaml @@ -0,0 +1,29 @@ + + + + + + + + + diff --git a/Content.Client/Info/PlaytimeStats/PlaytimeStatsWindow.cs b/Content.Client/Info/PlaytimeStats/PlaytimeStatsWindow.cs new file mode 100644 index 0000000000..3b54bf82da --- /dev/null +++ b/Content.Client/Info/PlaytimeStats/PlaytimeStatsWindow.cs @@ -0,0 +1,146 @@ +using System.Linq; +using System.Text.RegularExpressions; +using Content.Client.Players.PlayTimeTracking; +using Content.Client.UserInterface.Controls; +using Robust.Client.AutoGenerated; +using Robust.Client.Graphics; +using Robust.Client.UserInterface.XAML; + +namespace Content.Client.Info.PlaytimeStats; + +[GenerateTypedNameReferences] +public sealed partial class PlaytimeStatsWindow : FancyWindow +{ + [Dependency] private readonly JobRequirementsManager _jobRequirementsManager = default!; + private ISawmill _sawmill = Logger.GetSawmill("PlaytimeStatsWindow"); + private readonly Color _altColor = Color.FromHex("#292B38"); + private readonly Color _defaultColor = Color.FromHex("#2F2F3B"); + private bool _useAltColor; + + public PlaytimeStatsWindow() + { + IoCManager.InjectDependencies(this); + RobustXamlLoader.Load(this); + + PopulatePlaytimeHeader(); + PopulatePlaytimeData(); + } + + private void PopulatePlaytimeHeader() + { + var header = new PlaytimeStatsHeader(); + header.OnHeaderClicked += HeaderClicked; + header.BackgroundColorPlaytimePanel.PanelOverride = new StyleBoxFlat(_altColor); + RolesPlaytimeList.AddChild(header); + } + + private void HeaderClicked(PlaytimeStatsHeader.Header header, PlaytimeStatsHeader.SortDirection direction) + { + switch (header) + { + case PlaytimeStatsHeader.Header.Role: + SortByRole(direction); + break; + case PlaytimeStatsHeader.Header.Playtime: + SortByPlaytime(direction); + break; + } + } + + private void SortByRole(PlaytimeStatsHeader.SortDirection direction) + { + var header = RolesPlaytimeList.GetChild(0) as PlaytimeStatsHeader; + + var entries = RolesPlaytimeList.Children.OfType().ToList(); + + RolesPlaytimeList.RemoveAllChildren(); + + if (header != null) + RolesPlaytimeList.AddChild(header); + + var sortedEntries = (direction == PlaytimeStatsHeader.SortDirection.Ascending) + ? entries.OrderBy(entry => entry.RoleText).ToList() + : entries.OrderByDescending(entry => entry.RoleText).ToList(); + + _useAltColor = false; + + foreach (var entry in sortedEntries) + { + var styleBox = new StyleBoxFlat { BackgroundColor = _useAltColor ? _altColor : _defaultColor }; + entry.UpdateShading(styleBox); + RolesPlaytimeList.AddChild(entry); + _useAltColor ^= true; + } + } + + private void SortByPlaytime(PlaytimeStatsHeader.SortDirection direction) + { + var header = RolesPlaytimeList.GetChild(0) as PlaytimeStatsHeader; + + var entries = RolesPlaytimeList.Children.OfType().ToList(); + + RolesPlaytimeList.RemoveAllChildren(); + + if (header != null) + RolesPlaytimeList.AddChild(header); + + var sortedEntries = (direction == PlaytimeStatsHeader.SortDirection.Ascending) + ? entries.OrderBy(entry => entry.Playtime).ToList() + : entries.OrderByDescending(entry => entry.Playtime).ToList(); + + _useAltColor = false; + + foreach (var entry in sortedEntries) + { + var styleBox = new StyleBoxFlat { BackgroundColor = _useAltColor ? _altColor : _defaultColor }; + entry.UpdateShading(styleBox); + RolesPlaytimeList.AddChild(entry); + _useAltColor ^= true; + } + } + + + private void PopulatePlaytimeData() + { + var overallPlaytime = _jobRequirementsManager.FetchOverallPlaytime(); + + var formattedPlaytime = ConvertTimeSpanToHoursMinutes(overallPlaytime); + OverallPlaytimeLabel.Text = Loc.GetString("ui-playtime-overall", ("time", formattedPlaytime)); + + var rolePlaytimes = _jobRequirementsManager.FetchPlaytimeByRoles(); + + RolesPlaytimeList.RemoveAllChildren(); + PopulatePlaytimeHeader(); + + foreach (var rolePlaytime in rolePlaytimes) + { + var role = rolePlaytime.Key; + var playtime = rolePlaytime.Value; + AddRolePlaytimeEntryToTable(Loc.GetString(role), playtime.ToString()); + } + } + + private void AddRolePlaytimeEntryToTable(string role, string playtimeString) + { + if (TimeSpan.TryParse(playtimeString, out var playtime)) + { + var entry = new PlaytimeStatsEntry(role, playtime, + new StyleBoxFlat(_useAltColor ? _altColor : _defaultColor)); + RolesPlaytimeList.AddChild(entry); + _useAltColor ^= true; + } + else + { + _sawmill.Error($"The provided playtime string '{playtimeString}' is not in the correct format."); + } + } + + private static string ConvertTimeSpanToHoursMinutes(TimeSpan timeSpan) + { + var hours = (int) timeSpan.TotalHours; + var minutes = timeSpan.Minutes; + + var formattedTimeLoc = Loc.GetString("ui-playtime-time-format", ("hours", hours), ("minutes", minutes)); + return formattedTimeLoc; + } +} diff --git a/Content.Client/Info/PlaytimeStats/PlaytimeStatsWindow.xaml b/Content.Client/Info/PlaytimeStats/PlaytimeStatsWindow.xaml new file mode 100644 index 0000000000..b38394d9a3 --- /dev/null +++ b/Content.Client/Info/PlaytimeStats/PlaytimeStatsWindow.xaml @@ -0,0 +1,25 @@ + + + + + + + + diff --git a/Content.Client/Inventory/ClientInventorySystem.cs b/Content.Client/Inventory/ClientInventorySystem.cs index ffff392aa4..f0a12b3b1f 100644 --- a/Content.Client/Inventory/ClientInventorySystem.cs +++ b/Content.Client/Inventory/ClientInventorySystem.cs @@ -10,7 +10,6 @@ using Content.Shared.Inventory.Events; using Content.Shared.Storage; using JetBrains.Annotations; -using Robust.Client.GameObjects; using Robust.Client.Player; using Robust.Client.UserInterface; using Robust.Shared.Containers; @@ -43,8 +42,8 @@ public override void Initialize() UpdatesOutsidePrediction = true; base.Initialize(); - SubscribeLocalEvent(OnPlayerAttached); - SubscribeLocalEvent(OnPlayerDetached); + SubscribeLocalEvent(OnPlayerAttached); + SubscribeLocalEvent(OnPlayerDetached); SubscribeLocalEvent(OnShutdown); @@ -113,12 +112,12 @@ private void OnShutdown(EntityUid uid, InventoryComponent component, ComponentSh OnUnlinkInventory?.Invoke(); } - private void OnPlayerDetached(EntityUid uid, InventorySlotsComponent component, PlayerDetachedEvent args) + private void OnPlayerDetached(EntityUid uid, InventorySlotsComponent component, LocalPlayerDetachedEvent args) { OnUnlinkInventory?.Invoke(); } - private void OnPlayerAttached(EntityUid uid, InventorySlotsComponent component, PlayerAttachedEvent args) + private void OnPlayerAttached(EntityUid uid, InventorySlotsComponent component, LocalPlayerAttachedEvent args) { if (TryGetSlots(uid, out var definitions)) { diff --git a/Content.Client/MainMenu/UI/MainMenuControl.xaml b/Content.Client/MainMenu/UI/MainMenuControl.xaml index 16a8cc267a..e1d0652b93 100644 --- a/Content.Client/MainMenu/UI/MainMenuControl.xaml +++ b/Content.Client/MainMenu/UI/MainMenuControl.xaml @@ -5,9 +5,11 @@ + StyleIdentifier="mainMenuVBox" + MinWidth="512"> + - public void Populate(List inventory, string? filter = null) + public void Populate(List inventory, out List filteredInventory, string? filter = null) { + filteredInventory = new(); + if (inventory.Count == 0) { VendingContents.Clear(); @@ -93,6 +93,7 @@ public void Populate(List inventory, string? filte vendingItem.Text = $"{itemName} [{entry.Amount}]"; vendingItem.Icon = icon; + filteredInventory.Add(i); } SetSizeAfterUpdate(longestEntry.Length, inventory.Count); diff --git a/Content.Client/VendingMachines/VendingMachineBoundUserInterface.cs b/Content.Client/VendingMachines/VendingMachineBoundUserInterface.cs index ab310144d5..6f28ddb31f 100644 --- a/Content.Client/VendingMachines/VendingMachineBoundUserInterface.cs +++ b/Content.Client/VendingMachines/VendingMachineBoundUserInterface.cs @@ -1,6 +1,5 @@ using Content.Client.VendingMachines.UI; using Content.Shared.VendingMachines; -using Robust.Client.GameObjects; using Robust.Client.UserInterface.Controls; using System.Linq; @@ -14,6 +13,9 @@ public sealed class VendingMachineBoundUserInterface : BoundUserInterface [ViewVariables] private List _cachedInventory = new(); + [ViewVariables] + private List _cachedFilteredIndex = new(); + public VendingMachineBoundUserInterface(EntityUid owner, Enum uiKey) : base(owner, uiKey) { } @@ -32,7 +34,7 @@ protected override void Open() _menu.OnItemSelected += OnItemSelected; _menu.OnSearchChanged += OnSearchChanged; - _menu.Populate(_cachedInventory); + _menu.Populate(_cachedInventory, out _cachedFilteredIndex); _menu.OpenCentered(); } @@ -46,7 +48,7 @@ protected override void UpdateState(BoundUserInterfaceState state) _cachedInventory = newState.Inventory; - _menu?.Populate(_cachedInventory); + _menu?.Populate(_cachedInventory, out _cachedFilteredIndex, _menu.SearchBar.Text); } private void OnItemSelected(ItemList.ItemListSelectedEventArgs args) @@ -54,7 +56,7 @@ private void OnItemSelected(ItemList.ItemListSelectedEventArgs args) if (_cachedInventory.Count == 0) return; - var selectedItem = _cachedInventory.ElementAtOrDefault(args.ItemIndex); + var selectedItem = _cachedInventory.ElementAtOrDefault(_cachedFilteredIndex.ElementAtOrDefault(args.ItemIndex)); if (selectedItem == null) return; @@ -78,7 +80,7 @@ protected override void Dispose(bool disposing) private void OnSearchChanged(string? filter) { - _menu?.Populate(_cachedInventory, filter); + _menu?.Populate(_cachedInventory, out _cachedFilteredIndex, filter); } } } diff --git a/Content.Client/Weapons/Melee/MeleeWeaponSystem.cs b/Content.Client/Weapons/Melee/MeleeWeaponSystem.cs index 397032cd15..2d2883d8b7 100644 --- a/Content.Client/Weapons/Melee/MeleeWeaponSystem.cs +++ b/Content.Client/Weapons/Melee/MeleeWeaponSystem.cs @@ -16,7 +16,8 @@ using Robust.Shared.Input; using Robust.Shared.Map; using Robust.Shared.Player; -using Robust.Shared.Players; +using Robust.Shared.Prototypes; +using Robust.Shared.Timing; namespace Content.Client.Weapons.Melee; diff --git a/Content.IntegrationTests/Pair/TestPair.cs b/Content.IntegrationTests/Pair/TestPair.cs index 2971573ff2..2672b4db56 100644 --- a/Content.IntegrationTests/Pair/TestPair.cs +++ b/Content.IntegrationTests/Pair/TestPair.cs @@ -3,13 +3,11 @@ using System.IO; using System.Linq; using Content.Server.GameTicking; -using Content.Server.Players; -using Content.Shared.Mind; using Content.Shared.Players; -using Robust.Server.Player; using Robust.Shared.GameObjects; using Robust.Shared.IoC; using Robust.Shared.Network; +using Robust.Shared.Player; using Robust.Shared.Timing; using Robust.UnitTesting; @@ -30,8 +28,8 @@ public sealed partial class TestPair public RobustIntegrationTest.ServerIntegrationInstance Server { get; private set; } = default!; public RobustIntegrationTest.ClientIntegrationInstance Client { get; private set; } = default!; - public IPlayerSession? Player => (IPlayerSession?) Server.PlayerMan.Sessions.FirstOrDefault(); - public PlayerData? PlayerData => Player?.Data.ContentData(); + public ICommonSession? Player => Server.PlayerMan.Sessions.FirstOrDefault(); + public ContentPlayerData? PlayerData => Player?.Data.ContentData(); public PoolTestLogHandler ServerLogHandler { get; private set; } = default!; public PoolTestLogHandler ClientLogHandler { get; private set; } = default!; diff --git a/Content.IntegrationTests/Tests/Actions/ActionsAddedTest.cs b/Content.IntegrationTests/Tests/Actions/ActionsAddedTest.cs index 01f8bdd938..01daeea93c 100644 --- a/Content.IntegrationTests/Tests/Actions/ActionsAddedTest.cs +++ b/Content.IntegrationTests/Tests/Actions/ActionsAddedTest.cs @@ -3,8 +3,6 @@ using Content.Shared.CombatMode; using Robust.Server.Player; using Robust.Shared.GameObjects; -using Robust.Shared.Players; -using PlayerManager = Robust.Client.Player.PlayerManager; namespace Content.IntegrationTests.Tests.Actions; @@ -26,7 +24,7 @@ public async Task TestCombatActionsAdded() var sEntMan = server.ResolveDependency(); var cEntMan = client.ResolveDependency(); var clientSession = client.ResolveDependency().LocalPlayer?.Session; - var serverSession = server.ResolveDependency().ServerSessions.Single(); + var serverSession = server.ResolveDependency().Sessions.Single(); var sActionSystem = server.System(); var cActionSystem = client.System(); diff --git a/Content.IntegrationTests/Tests/Administration/Logs/AddTests.cs b/Content.IntegrationTests/Tests/Administration/Logs/AddTests.cs index 6562a26b5e..98c7363a6c 100644 --- a/Content.IntegrationTests/Tests/Administration/Logs/AddTests.cs +++ b/Content.IntegrationTests/Tests/Administration/Logs/AddTests.cs @@ -7,8 +7,6 @@ using Content.Shared.Database; using Robust.Server.Player; using Robust.Shared.GameObjects; -using Robust.Shared.Map; -using Robust.Shared.Utility; namespace Content.IntegrationTests.Tests.Administration.Logs; @@ -177,7 +175,7 @@ public async Task AddPlayerSessionLog() await server.WaitPost(() => { - var player = sPlayers.ServerSessions.First(); + var player = sPlayers.Sessions.First(); playerGuid = player.UserId; Assert.DoesNotThrow(() => @@ -280,7 +278,7 @@ public async Task DuplicatePlayerDoesNotThrowTest() await server.WaitPost(() => { - var player = sPlayers.ServerSessions.Single(); + var player = sPlayers.Sessions.Single(); sAdminLogSystem.Add(LogType.Unknown, $"{player} {player} test log: {guid}"); }); @@ -318,7 +316,7 @@ public async Task DuplicatePlayerIdDoesNotThrowTest() await server.WaitPost(() => { - var player = sPlayers.ServerSessions.Single(); + var player = sPlayers.Sessions.Single(); sAdminLogSystem.Add(LogType.Unknown, $"{player:first} {player:second} test log: {guid}"); }); diff --git a/Content.IntegrationTests/Tests/Administration/Logs/QueryTests.cs b/Content.IntegrationTests/Tests/Administration/Logs/QueryTests.cs index 1155edfad2..5a58757d53 100644 --- a/Content.IntegrationTests/Tests/Administration/Logs/QueryTests.cs +++ b/Content.IntegrationTests/Tests/Administration/Logs/QueryTests.cs @@ -5,6 +5,7 @@ using Content.Shared.Database; using Robust.Server.Player; using Robust.Shared.GameObjects; +using Robust.Shared.Player; namespace Content.IntegrationTests.Tests.Administration.Logs; @@ -27,11 +28,11 @@ public async Task QuerySingleLog() var date = DateTime.UtcNow; var guid = Guid.NewGuid(); - IPlayerSession player = default; + ICommonSession player = default; await server.WaitPost(() => { - player = sPlayers.ServerSessions.First(); + player = sPlayers.Sessions.First(); sAdminLogSystem.Add(LogType.Unknown, $"{player.AttachedEntity:Entity} test log: {guid}"); }); diff --git a/Content.IntegrationTests/Tests/CargoTest.cs b/Content.IntegrationTests/Tests/CargoTest.cs index 0b9de6993e..66135279d5 100644 --- a/Content.IntegrationTests/Tests/CargoTest.cs +++ b/Content.IntegrationTests/Tests/CargoTest.cs @@ -49,7 +49,7 @@ await server.WaitAssertion(() => await pair.CleanReturnAsync(); } [Test] - public async Task NoCargoBountyArbitageTest() + public async Task NoCargoBountyArbitrageTest() { await using var pair = await PoolManager.GetServerClient(); var server = pair.Server; diff --git a/Content.IntegrationTests/Tests/Cleanup/EuiManagerTest.cs b/Content.IntegrationTests/Tests/Cleanup/EuiManagerTest.cs index 9aac4e2892..e2bff03501 100644 --- a/Content.IntegrationTests/Tests/Cleanup/EuiManagerTest.cs +++ b/Content.IntegrationTests/Tests/Cleanup/EuiManagerTest.cs @@ -25,7 +25,7 @@ public async Task EuiManagerRecycleWithOpenWindowTest() await server.WaitAssertion(() => { - var clientSession = sPlayerManager.ServerSessions.Single(); + var clientSession = sPlayerManager.Sessions.Single(); var ui = new AdminAnnounceEui(); eui.OpenEui(ui, clientSession); }); diff --git a/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs b/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs index b4b6c2239f..df77410e54 100644 --- a/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs +++ b/Content.IntegrationTests/Tests/Interaction/InteractionTest.cs @@ -14,6 +14,7 @@ using Content.Shared.Hands.EntitySystems; using Content.Shared.Interaction; using Content.Shared.Mind; +using Content.Shared.Players; using Robust.Client.Input; using Robust.Client.UserInterface; using Robust.Server.GameObjects; @@ -21,7 +22,7 @@ using Robust.Shared.GameObjects; using Robust.Shared.Log; using Robust.Shared.Map; -using Robust.Shared.Players; +using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Timing; using Robust.UnitTesting; @@ -67,7 +68,7 @@ public abstract partial class InteractionTest protected NetEntity Player; protected ICommonSession ClientSession = default!; - protected IPlayerSession ServerSession = default!; + protected ICommonSession ServerSession = default!; public EntityUid? ClientTarget; diff --git a/Content.IntegrationTests/Tests/Minds/GhostRoleTests.cs b/Content.IntegrationTests/Tests/Minds/GhostRoleTests.cs index 28e49645c9..22a185798e 100644 --- a/Content.IntegrationTests/Tests/Minds/GhostRoleTests.cs +++ b/Content.IntegrationTests/Tests/Minds/GhostRoleTests.cs @@ -5,6 +5,7 @@ using Content.Server.Players; using Content.Shared.Ghost; using Content.Shared.Mind; +using Content.Shared.Players; using Robust.Shared.Console; using Robust.Shared.GameObjects; using Robust.Shared.Map; @@ -43,7 +44,7 @@ public async Task TakeRoleAndReturn() var sPlayerMan = server.ResolveDependency(); var conHost = client.ResolveDependency(); var mindSystem = entMan.System(); - var session = sPlayerMan.ServerSessions.Single(); + var session = sPlayerMan.Sessions.Single(); var originalMindId = session.ContentData()!.Mind!.Value; // Spawn player entity & attach diff --git a/Content.IntegrationTests/Tests/Minds/MindTests.EntityDeletion.cs b/Content.IntegrationTests/Tests/Minds/MindTests.EntityDeletion.cs index 9fc68ef93d..a67a45ecb4 100644 --- a/Content.IntegrationTests/Tests/Minds/MindTests.EntityDeletion.cs +++ b/Content.IntegrationTests/Tests/Minds/MindTests.EntityDeletion.cs @@ -2,6 +2,7 @@ using Content.Server.Players; using Content.Shared.Ghost; using Content.Shared.Mind; +using Content.Shared.Players; using Robust.Server.Console; using Robust.Server.GameObjects; using Robust.Server.Player; @@ -35,7 +36,7 @@ public async Task TestDeleteVisiting() MindComponent mind = default!; await server.WaitAssertion(() => { - var player = playerMan.ServerSessions.Single(); + var player = playerMan.Sessions.Single(); playerEnt = entMan.SpawnEntity(null, MapCoordinates.Nullspace); visitEnt = entMan.SpawnEntity(null, MapCoordinates.Nullspace); @@ -81,7 +82,7 @@ public async Task TestGhostOnDeleteMap() var entMan = server.ResolveDependency(); var mapManager = server.ResolveDependency(); var playerMan = server.ResolveDependency(); - var player = playerMan.ServerSessions.Single(); + var player = playerMan.Sessions.Single(); var mindSystem = entMan.EntitySysManager.GetEntitySystem(); @@ -128,7 +129,7 @@ public async Task TestGhostOnDelete() var entMan = server.ResolveDependency(); var playerMan = server.ResolveDependency(); - var player = playerMan.ServerSessions.Single(); + var player = playerMan.Sessions.Single(); Assert.That(!entMan.HasComponent(player.AttachedEntity), "Player was initially a ghost?"); @@ -162,7 +163,7 @@ public async Task TestOriginalDeletedWhileGhostingKeepsGhost() var mindSystem = entMan.EntitySysManager.GetEntitySystem(); var mind = GetMind(pair); - var player = playerMan.ServerSessions.Single(); + var player = playerMan.Sessions.Single(); #pragma warning disable NUnit2045 // Interdependent assertions. Assert.That(player.AttachedEntity, Is.Not.Null); Assert.That(entMan.EntityExists(player.AttachedEntity)); @@ -218,7 +219,7 @@ public async Task TestGhostToAghost() var playerMan = server.ResolveDependency(); var serverConsole = server.ResolveDependency(); - var player = playerMan.ServerSessions.Single(); + var player = playerMan.Sessions.Single(); var ghost = await BecomeGhost(pair); @@ -263,7 +264,7 @@ public async Task TestGhostDeletedSpawnsNewGhost() var playerMan = server.ResolveDependency(); var serverConsole = server.ResolveDependency(); - var player = playerMan.ServerSessions.Single(); + var player = playerMan.Sessions.Single(); EntityUid ghost = default!; diff --git a/Content.IntegrationTests/Tests/Minds/MindTests.Helpers.cs b/Content.IntegrationTests/Tests/Minds/MindTests.Helpers.cs index f71a6ad5f9..d6b30d60a0 100644 --- a/Content.IntegrationTests/Tests/Minds/MindTests.Helpers.cs +++ b/Content.IntegrationTests/Tests/Minds/MindTests.Helpers.cs @@ -1,14 +1,17 @@ using System.Linq; using Content.IntegrationTests.Pair; +using Content.Server.Mind; using Content.Server.Players; using Content.Shared.Ghost; using Content.Shared.Mind; +using Content.Shared.Players; using Robust.Server.GameObjects; using Robust.Server.Player; using Robust.Shared.Enums; using Robust.Shared.GameObjects; using Robust.Shared.Map; using Robust.Shared.Network; +using Robust.Shared.Player; namespace Content.IntegrationTests.Tests.Minds; @@ -36,7 +39,7 @@ public sealed partial class MindTests var playerMan = pair.Server.ResolveDependency(); var mindSys = entMan.System(); - var player = playerMan.ServerSessions.Single(); + var player = playerMan.Sessions.Single(); EntityUid entity = default; EntityUid mindId = default!; @@ -71,7 +74,7 @@ private static async Task BecomeGhost(TestPair pair, bool visit = fal EntityUid mindId = default!; MindComponent mind = default!; - var player = playerMan.ServerSessions.Single(); + var player = playerMan.Sessions.Single(); await pair.Server.WaitAssertion(() => { var oldUid = player.AttachedEntity; @@ -116,20 +119,25 @@ private static async Task VisitGhost(Pair.TestPair pair, bool _ = fal /// private static (EntityUid Id, MindComponent Comp) GetMind(Pair.TestPair pair) { - var playerMan = pair.Server.ResolveDependency(); - var entMan = pair.Server.ResolveDependency(); - var player = playerMan.ServerSessions.SingleOrDefault(); + var playerMan = pair.Server.PlayerMan; + var entMan = pair.Server.EntMan; + var player = playerMan.Sessions.SingleOrDefault(); Assert.That(player, Is.Not.Null); var mindId = player.ContentData()!.Mind!.Value; Assert.That(mindId, Is.Not.EqualTo(default(EntityUid))); var mind = entMan.GetComponent(mindId); + ActorComponent actor = default!; Assert.Multiple(() => { + Assert.That(player, Is.EqualTo(mind.Session), "Player session does not match mind session"); + Assert.That(entMan.System().GetMind(player.UserId), Is.EqualTo(mindId)); Assert.That(player.AttachedEntity, Is.EqualTo(mind.CurrentEntity), "Player is not attached to the mind's current entity."); Assert.That(entMan.EntityExists(mind.OwnedEntity), "The mind's current entity does not exist"); Assert.That(mind.VisitingEntity == null || entMan.EntityExists(mind.VisitingEntity), "The minds visited entity does not exist."); + Assert.That(entMan.TryGetComponent(mind.CurrentEntity, out actor)); }); + Assert.That(actor.PlayerSession, Is.EqualTo(mind.Session)); return (mindId, mind); } @@ -139,7 +147,7 @@ private static async Task Disconnect(Pair.TestPair pair) var netManager = pair.Client.ResolveDependency(); var playerMan = pair.Server.ResolveDependency(); var entMan = pair.Server.ResolveDependency(); - var player = playerMan.ServerSessions.Single(); + var player = playerMan.Sessions.Single(); var mindId = player.ContentData()!.Mind!.Value; var mind = entMan.GetComponent(mindId); @@ -161,21 +169,21 @@ private static async Task Connect(Pair.TestPair pair, string username) { var netManager = pair.Client.ResolveDependency(); var playerMan = pair.Server.ResolveDependency(); - Assert.That(!playerMan.ServerSessions.Any()); + Assert.That(!playerMan.Sessions.Any()); await Task.WhenAll(pair.Client.WaitIdleAsync(), pair.Client.WaitIdleAsync()); pair.Client.SetConnectTarget(pair.Server); await pair.Client.WaitPost(() => netManager.ClientConnect(null!, 0, username)); await pair.RunTicksSync(5); - var player = playerMan.ServerSessions.Single(); + var player = playerMan.Sessions.Single(); Assert.That(player.Status, Is.EqualTo(SessionStatus.InGame)); } - private static async Task DisconnectReconnect(Pair.TestPair pair) + private static async Task DisconnectReconnect(Pair.TestPair pair) { var playerMan = pair.Server.ResolveDependency(); - var player = playerMan.ServerSessions.Single(); + var player = playerMan.Sessions.Single(); var name = player.Name; var id = player.UserId; @@ -183,7 +191,7 @@ private static async Task DisconnectReconnect(Pair.TestPair pair await Connect(pair, name); // Session has changed - var newSession = playerMan.ServerSessions.Single(); + var newSession = playerMan.Sessions.Single(); Assert.Multiple(() => { Assert.That(newSession, Is.Not.EqualTo(player)); diff --git a/Content.IntegrationTests/Tests/Minds/MindTests.ReconnectTests.cs b/Content.IntegrationTests/Tests/Minds/MindTests.ReconnectTests.cs index ea2110c03a..3cac766825 100644 --- a/Content.IntegrationTests/Tests/Minds/MindTests.ReconnectTests.cs +++ b/Content.IntegrationTests/Tests/Minds/MindTests.ReconnectTests.cs @@ -1,6 +1,8 @@ using System.Linq; using Content.Shared.Ghost; using Content.Shared.Mind; +using NUnit.Framework.Interfaces; +using Robust.Server.GameObjects; using Robust.Server.Player; using Robust.Shared.GameObjects; using Robust.Shared.Map; @@ -49,7 +51,7 @@ public async Task TestDeletedCanReconnect() var mind = GetMind(pair); var playerMan = pair.Server.ResolveDependency(); - var player = playerMan.ServerSessions.Single(); + var player = playerMan.Sessions.Single(); var name = player.Name; var user = player.UserId; Assert.That(mind.Comp.OwnedEntity, Is.Not.Null); @@ -72,7 +74,7 @@ public async Task TestDeletedCanReconnect() // Reconnect await Connect(pair, name); - player = playerMan.ServerSessions.Single(); + player = playerMan.Sessions.Single(); Assert.Multiple(() => { Assert.That(user, Is.EqualTo(player.UserId)); @@ -127,8 +129,10 @@ public async Task TestVisitingReconnect() var mindSys = entMan.System(); var mind = GetMind(pair); + Assert.Null(mind.Comp.VisitingEntity); + // Make player visit a new mob - var original = mind.Comp.CurrentEntity; + var original = mind.Comp.OwnedEntity; EntityUid visiting = default; await pair.Server.WaitAssertion(() => { @@ -137,6 +141,7 @@ await pair.Server.WaitAssertion(() => }); await pair.RunTicksSync(5); + Assert.That(mind.Comp.VisitingEntity, Is.EqualTo(visiting)); await DisconnectReconnect(pair); // Player is back in control of the visited mob, mind was preserved @@ -150,4 +155,32 @@ await pair.Server.WaitAssertion(() => await pair.CleanReturnAsync(); } + + // This test will do the following + // - connect as a normal player + // - disconnect + // - reconnect + // - assert that they return to the original entity. + [Test] + public async Task TestReconnect() + { + await using var pair = await SetupPair(); + var mind = GetMind(pair); + + Assert.Null(mind.Comp.VisitingEntity); + Assert.NotNull(mind.Comp.OwnedEntity); + var entity = mind.Comp.OwnedEntity; + + await pair.RunTicksSync(5); + await DisconnectReconnect(pair); + await pair.RunTicksSync(5); + + var newMind = GetMind(pair); + + Assert.Null(newMind.Comp.VisitingEntity); + Assert.That(newMind.Comp.OwnedEntity, Is.EqualTo(entity)); + Assert.That(newMind.Id, Is.EqualTo(mind.Id)); + + await pair.CleanReturnAsync(); + } } diff --git a/Content.IntegrationTests/Tests/Minds/MindTests.cs b/Content.IntegrationTests/Tests/Minds/MindTests.cs index 3ad61bcdf0..c9788b80a6 100644 --- a/Content.IntegrationTests/Tests/Minds/MindTests.cs +++ b/Content.IntegrationTests/Tests/Minds/MindTests.cs @@ -11,6 +11,7 @@ using Content.Shared.FixedPoint; using Content.Shared.Mind; using Content.Shared.Mind.Components; +using Content.Shared.Players; using Content.Shared.Roles; using Content.Shared.Roles.Jobs; using Robust.Server.Console; @@ -345,7 +346,7 @@ public async Task TestPlayerCanGhost() EntityUid entity = default!; EntityUid mindId = default!; MindComponent mind = default!; - var player = playerMan.ServerSessions.Single(); + var player = playerMan.Sessions.Single(); await server.WaitAssertion(() => { @@ -406,12 +407,6 @@ await server.WaitAssertion(() => await pair.CleanReturnAsync(); } - // TODO Implement - /*[Test] - public async Task TestPlayerCanReturnFromGhostWhenDead() - { - }*/ - [Test] public async Task TestGhostDoesNotInfiniteLoop() { @@ -432,7 +427,7 @@ public async Task TestGhostDoesNotInfiniteLoop() EntityUid ghost = default!; EntityUid mindId = default!; MindComponent mind = default!; - var player = playerMan.ServerSessions.Single(); + var player = playerMan.Sessions.Single(); await server.WaitAssertion(() => { diff --git a/Content.IntegrationTests/Tests/PostMapInitTest.cs b/Content.IntegrationTests/Tests/PostMapInitTest.cs index 42a4d2bc98..4b7f9c40b7 100644 --- a/Content.IntegrationTests/Tests/PostMapInitTest.cs +++ b/Content.IntegrationTests/Tests/PostMapInitTest.cs @@ -65,8 +65,8 @@ public sealed class PostMapInitTest "Pebble", //DeltaV "Edge", //DeltaV "Tortuga", //DeltaV - "Arena" //DeltaV - + "Arena", //DeltaV + "Asterisk" //DeltaV }; /// diff --git a/Content.IntegrationTests/Tests/Toolshed/ToolshedTest.cs b/Content.IntegrationTests/Tests/Toolshed/ToolshedTest.cs index ca7eeac199..d6aec781a9 100644 --- a/Content.IntegrationTests/Tests/Toolshed/ToolshedTest.cs +++ b/Content.IntegrationTests/Tests/Toolshed/ToolshedTest.cs @@ -2,8 +2,7 @@ using System.Collections.Generic; using Content.IntegrationTests.Pair; using Content.Server.Administration.Managers; -using Robust.Server.Player; -using Robust.Shared.Players; +using Robust.Shared.Player; using Robust.Shared.Toolshed; using Robust.Shared.Toolshed.Errors; using Robust.Shared.Toolshed.Syntax; @@ -60,7 +59,7 @@ public virtual async Task Setup() AdminManager = Server.ResolveDependency(); } - protected bool InvokeCommand(string command, out object? result, IPlayerSession? session = null) + protected bool InvokeCommand(string command, out object? result, ICommonSession? session = null) { return Toolshed.InvokeCommand(this, command, null, out result); } @@ -95,7 +94,7 @@ public bool CheckInvokable(CommandSpec command, out IConError? error) return true; } - protected IPlayerSession? InvocationSession { get; set; } + protected ICommonSession? InvocationSession { get; set; } public ICommonSession? Session { diff --git a/Content.MapRenderer/Painters/MapPainter.cs b/Content.MapRenderer/Painters/MapPainter.cs index b799db78a5..8f3dd59baf 100644 --- a/Content.MapRenderer/Painters/MapPainter.cs +++ b/Content.MapRenderer/Painters/MapPainter.cs @@ -68,7 +68,7 @@ await client.WaitPost(() => await server.WaitPost(() => { - var playerEntity = sPlayerManager.ServerSessions.Single().AttachedEntity; + var playerEntity = sPlayerManager.Sessions.Single().AttachedEntity; if (playerEntity.HasValue) { diff --git a/Content.PatreonParser/Program.cs b/Content.PatreonParser/Program.cs index 60a320006f..ff6646eda3 100644 --- a/Content.PatreonParser/Program.cs +++ b/Content.PatreonParser/Program.cs @@ -80,7 +80,7 @@ var tier = tiers[0]; var tierName = content.Included.SingleOrDefault(i => i.Id == tier.Id && i.Type == tier.Type)?.Attributes.Title; - if (tierName == null) + if (tierName == null || tierName == "Free") continue; if (record.Trigger == "members:delete") diff --git a/Content.Server/Access/Systems/AccessOverriderSystem.cs b/Content.Server/Access/Systems/AccessOverriderSystem.cs index 3ec767c200..147ac70a6d 100644 --- a/Content.Server/Access/Systems/AccessOverriderSystem.cs +++ b/Content.Server/Access/Systems/AccessOverriderSystem.cs @@ -9,6 +9,7 @@ using JetBrains.Annotations; using Robust.Server.GameObjects; using Robust.Shared.Containers; +using Robust.Shared.Player; using static Content.Shared.Access.Components.AccessOverriderComponent; namespace Content.Server.Access.Systems; diff --git a/Content.Server/Administration/AdminPermsChangedEventArgs.cs b/Content.Server/Administration/AdminPermsChangedEventArgs.cs index 24ca7aca68..07eb416be6 100644 --- a/Content.Server/Administration/AdminPermsChangedEventArgs.cs +++ b/Content.Server/Administration/AdminPermsChangedEventArgs.cs @@ -1,5 +1,5 @@ using Content.Shared.Administration; -using Robust.Server.Player; +using Robust.Shared.Player; namespace Content.Server.Administration { @@ -8,7 +8,7 @@ namespace Content.Server.Administration /// public sealed class AdminPermsChangedEventArgs : EventArgs { - public AdminPermsChangedEventArgs(IPlayerSession player, AdminFlags? flags) + public AdminPermsChangedEventArgs(ICommonSession player, AdminFlags? flags) { Player = player; Flags = flags; @@ -17,7 +17,7 @@ public AdminPermsChangedEventArgs(IPlayerSession player, AdminFlags? flags) /// /// The player that had their admin permissions changed. /// - public IPlayerSession Player { get; } + public ICommonSession Player { get; } /// /// The admin flags of the player. Null if the player is no longer an admin. diff --git a/Content.Server/Administration/Commands/AGhost.cs b/Content.Server/Administration/Commands/AGhost.cs index 42a8600ff1..2d1a15a0be 100644 --- a/Content.Server/Administration/Commands/AGhost.cs +++ b/Content.Server/Administration/Commands/AGhost.cs @@ -2,7 +2,6 @@ using Content.Shared.Administration; using Content.Shared.Ghost; using Content.Shared.Mind; -using Robust.Server.Player; using Robust.Shared.Console; namespace Content.Server.Administration.Commands @@ -18,7 +17,7 @@ public sealed class AGhost : IConsoleCommand public void Execute(IConsoleShell shell, string argStr, string[] args) { - var player = shell.Player as IPlayerSession; + var player = shell.Player; if (player == null) { shell.WriteLine("Nah"); diff --git a/Content.Server/Administration/Commands/AdminWhoCommand.cs b/Content.Server/Administration/Commands/AdminWhoCommand.cs index 8e6c402c4e..9765e8385f 100644 --- a/Content.Server/Administration/Commands/AdminWhoCommand.cs +++ b/Content.Server/Administration/Commands/AdminWhoCommand.cs @@ -2,7 +2,6 @@ using Content.Server.Administration.Managers; using Content.Server.Afk; using Content.Shared.Administration; -using Robust.Server.Player; using Robust.Shared.Console; using Robust.Shared.Utility; @@ -35,7 +34,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) if (adminData.Title is { } title) sb.Append($": [{title}]"); - if (shell.Player is IPlayerSession player && adminMgr.HasAdminFlag(player, AdminFlags.Admin)) + if (shell.Player is { } player && adminMgr.HasAdminFlag(player, AdminFlags.Admin)) { if (afk.IsAfk(admin)) sb.Append(" [AFK]"); diff --git a/Content.Server/Administration/Commands/AnnounceUiCommand.cs b/Content.Server/Administration/Commands/AnnounceUiCommand.cs index c4cd7f13e4..d80db96686 100644 --- a/Content.Server/Administration/Commands/AnnounceUiCommand.cs +++ b/Content.Server/Administration/Commands/AnnounceUiCommand.cs @@ -1,7 +1,6 @@ using Content.Server.Administration.UI; using Content.Server.EUI; using Content.Shared.Administration; -using Robust.Server.Player; using Robust.Shared.Console; namespace Content.Server.Administration.Commands @@ -17,7 +16,7 @@ public sealed class AnnounceUiCommand : IConsoleCommand public void Execute(IConsoleShell shell, string argStr, string[] args) { - var player = shell.Player as IPlayerSession; + var player = shell.Player; if (player == null) { shell.WriteLine("This does not work from the server console."); diff --git a/Content.Server/Administration/Commands/BanCommand.cs b/Content.Server/Administration/Commands/BanCommand.cs index 58a801e410..156fdf496a 100644 --- a/Content.Server/Administration/Commands/BanCommand.cs +++ b/Content.Server/Administration/Commands/BanCommand.cs @@ -1,15 +1,8 @@ using System.Linq; -using System.Net; -using System.Net.Sockets; -using System.Text; using Content.Server.Administration.Managers; -using Content.Server.Administration.Notes; -using Content.Server.Database; -using Content.Server.GameTicking; using Content.Shared.Administration; using Content.Shared.CCVar; using Content.Shared.Database; -using Content.Shared.Players.PlayTimeTracking; using Robust.Server.Player; using Robust.Shared.Configuration; using Robust.Shared.Console; @@ -84,7 +77,7 @@ public override async void Execute(IConsoleShell shell, string argStr, string[] } var located = await _locator.LookupIdByNameOrIdAsync(target); - var player = shell.Player as IPlayerSession; + var player = shell.Player; if (located == null) { @@ -102,7 +95,7 @@ public override CompletionResult GetCompletion(IConsoleShell shell, string[] arg { if (args.Length == 1) { - var options = _playerManager.ServerSessions.Select(c => c.Name).OrderBy(c => c).ToArray(); + var options = _playerManager.Sessions.Select(c => c.Name).OrderBy(c => c).ToArray(); return CompletionResult.FromHintOptions(options, LocalizationManager.GetString("cmd-ban-hint")); } diff --git a/Content.Server/Administration/Commands/BanListCommand.cs b/Content.Server/Administration/Commands/BanListCommand.cs index 1c2be52394..a5bc97dce3 100644 --- a/Content.Server/Administration/Commands/BanListCommand.cs +++ b/Content.Server/Administration/Commands/BanListCommand.cs @@ -36,7 +36,7 @@ public override async void Execute(IConsoleShell shell, string argStr, string[] return; } - if (shell.Player is not IPlayerSession player) + if (shell.Player is not { } player) { var bans = await _dbManager.GetServerBansAsync(data.LastAddress, data.UserId, data.LastHWId, false); @@ -67,7 +67,7 @@ public override CompletionResult GetCompletion(IConsoleShell shell, string[] arg return CompletionResult.Empty; var playerMgr = IoCManager.Resolve(); - var options = playerMgr.ServerSessions.Select(c => c.Name).OrderBy(c => c).ToArray(); + var options = playerMgr.Sessions.Select(c => c.Name).OrderBy(c => c).ToArray(); return CompletionResult.FromHintOptions(options, Loc.GetString("cmd-banlist-hint")); } } diff --git a/Content.Server/Administration/Commands/BanPanelCommand.cs b/Content.Server/Administration/Commands/BanPanelCommand.cs index 6036e5aa6e..9f9ec9e89f 100644 --- a/Content.Server/Administration/Commands/BanPanelCommand.cs +++ b/Content.Server/Administration/Commands/BanPanelCommand.cs @@ -1,12 +1,6 @@ using Content.Shared.Administration; using Robust.Shared.Console; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; using Content.Server.EUI; -using Robust.Server.Player; namespace Content.Server.Administration.Commands; @@ -21,7 +15,7 @@ public sealed class BanPanelCommand : LocalizedCommands public override async void Execute(IConsoleShell shell, string argStr, string[] args) { - if (shell.Player is not IPlayerSession player) + if (shell.Player is not { } player) { shell.WriteError(Loc.GetString("cmd-banpanel-server")); return; diff --git a/Content.Server/Administration/Commands/ControlMob.cs b/Content.Server/Administration/Commands/ControlMob.cs index 8fc74c61d4..317461a373 100644 --- a/Content.Server/Administration/Commands/ControlMob.cs +++ b/Content.Server/Administration/Commands/ControlMob.cs @@ -1,6 +1,5 @@ using Content.Server.Mind; using Content.Shared.Administration; -using Robust.Server.Player; using Robust.Shared.Console; namespace Content.Server.Administration.Commands @@ -16,7 +15,7 @@ public sealed class ControlMob : IConsoleCommand public void Execute(IConsoleShell shell, string argStr, string[] args) { - if (shell.Player is not IPlayerSession player) + if (shell.Player is not { } player) { shell.WriteLine("shell-server-cannot"); return; diff --git a/Content.Server/Administration/Commands/DSay.cs b/Content.Server/Administration/Commands/DSay.cs index 79b0e8db7d..61b47d7856 100644 --- a/Content.Server/Administration/Commands/DSay.cs +++ b/Content.Server/Administration/Commands/DSay.cs @@ -1,7 +1,5 @@ -using Content.Server.Chat; using Content.Server.Chat.Systems; using Content.Shared.Administration; -using Robust.Server.Player; using Robust.Shared.Console; namespace Content.Server.Administration.Commands @@ -17,7 +15,7 @@ sealed class DSay : IConsoleCommand public void Execute(IConsoleShell shell, string argStr, string[] args) { - var player = shell.Player as IPlayerSession; + var player = shell.Player; if (player == null) { shell.WriteLine("shell-only-players-can-run-this-command"); diff --git a/Content.Server/Administration/Commands/DeAdminCommand.cs b/Content.Server/Administration/Commands/DeAdminCommand.cs index c2bbfa7a33..cf65941200 100644 --- a/Content.Server/Administration/Commands/DeAdminCommand.cs +++ b/Content.Server/Administration/Commands/DeAdminCommand.cs @@ -1,10 +1,8 @@ using Content.Server.Administration.Managers; using Content.Shared.Administration; using JetBrains.Annotations; -using Robust.Server.Player; using Robust.Shared.Console; - namespace Content.Server.Administration.Commands { [UsedImplicitly] @@ -17,7 +15,7 @@ public sealed class DeAdminCommand : IConsoleCommand public void Execute(IConsoleShell shell, string argStr, string[] args) { - var player = shell.Player as IPlayerSession; + var player = shell.Player; if (player == null) { shell.WriteLine("You cannot use this command from the server console."); diff --git a/Content.Server/Administration/Commands/ExplosionCommand.cs b/Content.Server/Administration/Commands/ExplosionCommand.cs index d48b69a5ad..56ed78b2e2 100644 --- a/Content.Server/Administration/Commands/ExplosionCommand.cs +++ b/Content.Server/Administration/Commands/ExplosionCommand.cs @@ -3,7 +3,6 @@ using Content.Server.Explosion.EntitySystems; using Content.Shared.Administration; using Content.Shared.Explosion; -using Robust.Server.Player; using Robust.Shared.Console; using Robust.Shared.Map; using Robust.Shared.Prototypes; @@ -21,7 +20,7 @@ public sealed class OpenExplosionEui : IConsoleCommand public void Execute(IConsoleShell shell, string argStr, string[] args) { - var player = shell.Player as IPlayerSession; + var player = shell.Player; if (player == null) { shell.WriteError("This does not work from the server console."); diff --git a/Content.Server/Administration/Commands/FaxUiCommand.cs b/Content.Server/Administration/Commands/FaxUiCommand.cs index b06d36d08b..cf9e97e399 100644 --- a/Content.Server/Administration/Commands/FaxUiCommand.cs +++ b/Content.Server/Administration/Commands/FaxUiCommand.cs @@ -1,7 +1,6 @@ using Content.Server.EUI; using Content.Server.Fax.AdminUI; using Content.Shared.Administration; -using Robust.Server.Player; using Robust.Shared.Console; namespace Content.Server.Administration.Commands; @@ -16,7 +15,7 @@ public sealed class FaxUiCommand : IConsoleCommand public void Execute(IConsoleShell shell, string argStr, string[] args) { - var player = shell.Player as IPlayerSession; + var player = shell.Player; if (player == null) { shell.WriteLine("shell-only-players-can-run-this-command"); diff --git a/Content.Server/Administration/Commands/OpenAdminLogsCommand.cs b/Content.Server/Administration/Commands/OpenAdminLogsCommand.cs index 9f28dc907c..47ff3e1a1c 100644 --- a/Content.Server/Administration/Commands/OpenAdminLogsCommand.cs +++ b/Content.Server/Administration/Commands/OpenAdminLogsCommand.cs @@ -1,7 +1,6 @@ using Content.Server.Administration.Logs; using Content.Server.EUI; using Content.Shared.Administration; -using Robust.Server.Player; using Robust.Shared.Console; namespace Content.Server.Administration.Commands; @@ -15,7 +14,7 @@ public sealed class OpenAdminLogsCommand : IConsoleCommand public void Execute(IConsoleShell shell, string argStr, string[] args) { - if (shell.Player is not IPlayerSession player) + if (shell.Player is not { } player) { shell.WriteLine("This does not work from the server console."); return; diff --git a/Content.Server/Administration/Commands/OpenAdminNotesCommand.cs b/Content.Server/Administration/Commands/OpenAdminNotesCommand.cs index 147c0d6a82..e6ae4f7616 100644 --- a/Content.Server/Administration/Commands/OpenAdminNotesCommand.cs +++ b/Content.Server/Administration/Commands/OpenAdminNotesCommand.cs @@ -1,7 +1,5 @@ using Content.Server.Administration.Notes; -using Content.Server.Database; using Content.Shared.Administration; -using Robust.Server.Player; using Robust.Shared.Console; namespace Content.Server.Administration.Commands; @@ -17,7 +15,7 @@ public sealed class OpenAdminNotesCommand : IConsoleCommand public async void Execute(IConsoleShell shell, string argStr, string[] args) { - if (shell.Player is not IPlayerSession player) + if (shell.Player is not { } player) { shell.WriteError("This does not work from the server console."); return; diff --git a/Content.Server/Administration/Commands/OpenPermissionsCommand.cs b/Content.Server/Administration/Commands/OpenPermissionsCommand.cs index 78d56cb4fb..fd3227d4aa 100644 --- a/Content.Server/Administration/Commands/OpenPermissionsCommand.cs +++ b/Content.Server/Administration/Commands/OpenPermissionsCommand.cs @@ -1,10 +1,8 @@ using Content.Server.Administration.UI; using Content.Server.EUI; using Content.Shared.Administration; -using Robust.Server.Player; using Robust.Shared.Console; - namespace Content.Server.Administration.Commands { [AdminCommand(AdminFlags.Permissions)] @@ -16,7 +14,7 @@ public sealed class OpenPermissionsCommand : IConsoleCommand public void Execute(IConsoleShell shell, string argStr, string[] args) { - var player = shell.Player as IPlayerSession; + var player = shell.Player; if (player == null) { shell.WriteLine("This does not work from the server console."); diff --git a/Content.Server/Administration/Commands/OpenUserVisibleNotesCommand.cs b/Content.Server/Administration/Commands/OpenUserVisibleNotesCommand.cs index d61114fcae..507c7ab279 100644 --- a/Content.Server/Administration/Commands/OpenUserVisibleNotesCommand.cs +++ b/Content.Server/Administration/Commands/OpenUserVisibleNotesCommand.cs @@ -1,7 +1,6 @@ using Content.Server.Administration.Notes; using Content.Shared.Administration; using Content.Shared.CCVar; -using Robust.Server.Player; using Robust.Shared.Configuration; using Robust.Shared.Console; @@ -27,7 +26,7 @@ public async void Execute(IConsoleShell shell, string argStr, string[] args) return; } - if (shell.Player is not IPlayerSession player) + if (shell.Player is not { } player) { shell.WriteError("This does not work from the server console."); return; diff --git a/Content.Server/Administration/Commands/PardonCommand.cs b/Content.Server/Administration/Commands/PardonCommand.cs index 869024eb7c..9cbaaece31 100644 --- a/Content.Server/Administration/Commands/PardonCommand.cs +++ b/Content.Server/Administration/Commands/PardonCommand.cs @@ -1,7 +1,6 @@ using System.Text; using Content.Server.Database; using Content.Shared.Administration; -using Robust.Server.Player; using Robust.Shared.Console; namespace Content.Server.Administration.Commands @@ -15,7 +14,7 @@ public sealed class PardonCommand : IConsoleCommand public async void Execute(IConsoleShell shell, string argStr, string[] args) { - var player = shell.Player as IPlayerSession; + var player = shell.Player; var dbMan = IoCManager.Resolve(); if (args.Length != 1) diff --git a/Content.Server/Administration/Commands/PlayGlobalSoundCommand.cs b/Content.Server/Administration/Commands/PlayGlobalSoundCommand.cs index ec5b21dcee..fdf067181d 100644 --- a/Content.Server/Administration/Commands/PlayGlobalSoundCommand.cs +++ b/Content.Server/Administration/Commands/PlayGlobalSoundCommand.cs @@ -6,7 +6,6 @@ using Robust.Shared.Console; using Robust.Shared.ContentPack; using Robust.Shared.Player; -using Robust.Shared.Players; using Robust.Shared.Prototypes; namespace Content.Server.Administration.Commands; diff --git a/Content.Server/Administration/Commands/ReAdminCommand.cs b/Content.Server/Administration/Commands/ReAdminCommand.cs index 12ff13221a..a3f5993766 100644 --- a/Content.Server/Administration/Commands/ReAdminCommand.cs +++ b/Content.Server/Administration/Commands/ReAdminCommand.cs @@ -1,9 +1,7 @@ using Content.Server.Administration.Managers; using Content.Shared.Administration; -using Robust.Server.Player; using Robust.Shared.Console; - namespace Content.Server.Administration.Commands { [AnyCommand] @@ -15,7 +13,7 @@ public sealed class ReAdminCommand : IConsoleCommand public void Execute(IConsoleShell shell, string argStr, string[] args) { - var player = shell.Player as IPlayerSession; + var player = shell.Player; if (player == null) { shell.WriteLine("You cannot use this command from the server console."); diff --git a/Content.Server/Administration/Commands/SetAdminOOC.cs b/Content.Server/Administration/Commands/SetAdminOOC.cs index bb11b938d8..27528e1940 100644 --- a/Content.Server/Administration/Commands/SetAdminOOC.cs +++ b/Content.Server/Administration/Commands/SetAdminOOC.cs @@ -1,8 +1,6 @@ - using Content.Server.Database; using Content.Server.Preferences.Managers; using Content.Shared.Administration; -using Robust.Server.Player; using Robust.Shared.Console; namespace Content.Server.Administration.Commands @@ -16,7 +14,7 @@ internal sealed class SetAdminOOC : IConsoleCommand public void Execute(IConsoleShell shell, string argStr, string[] args) { - if (!(shell.Player is IPlayerSession)) + if (shell.Player == null) { shell.WriteError(Loc.GetString("shell-only-players-can-run-this-command")); return; diff --git a/Content.Server/Administration/Commands/SetMindCommand.cs b/Content.Server/Administration/Commands/SetMindCommand.cs index b9ff329ed2..5310c2dd7f 100644 --- a/Content.Server/Administration/Commands/SetMindCommand.cs +++ b/Content.Server/Administration/Commands/SetMindCommand.cs @@ -2,6 +2,7 @@ using Content.Shared.Administration; using Content.Shared.Mind; using Content.Shared.Mind.Components; +using Content.Shared.Players; using Robust.Server.Player; using Robust.Shared.Console; diff --git a/Content.Server/Administration/Commands/SetOutfitCommand.cs b/Content.Server/Administration/Commands/SetOutfitCommand.cs index 28172ee6c5..97c1fa0656 100644 --- a/Content.Server/Administration/Commands/SetOutfitCommand.cs +++ b/Content.Server/Administration/Commands/SetOutfitCommand.cs @@ -9,9 +9,8 @@ using Content.Shared.PDA; using Content.Shared.Preferences; using Content.Shared.Roles; -using Robust.Server.GameObjects; -using Robust.Server.Player; using Robust.Shared.Console; +using Robust.Shared.Player; using Robust.Shared.Prototypes; namespace Content.Server.Administration.Commands @@ -57,7 +56,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) if (args.Length == 1) { - if (shell.Player is not IPlayerSession player) + if (shell.Player is not { } player) { shell.WriteError(Loc.GetString("set-outfit-command-is-not-player-error")); return; diff --git a/Content.Server/Administration/Commands/WarpCommand.cs b/Content.Server/Administration/Commands/WarpCommand.cs index 30a6d127aa..0d6da0d993 100644 --- a/Content.Server/Administration/Commands/WarpCommand.cs +++ b/Content.Server/Administration/Commands/WarpCommand.cs @@ -4,11 +4,9 @@ using Content.Shared.Administration; using Content.Shared.Follower; using Content.Shared.Ghost; -using Robust.Server.Player; using Robust.Shared.Console; using Robust.Shared.Enums; using Robust.Shared.Map; -using Robust.Shared.Physics; using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Systems; @@ -28,7 +26,7 @@ public sealed class WarpCommand : IConsoleCommand public void Execute(IConsoleShell shell, string argStr, string[] args) { - var player = shell.Player as IPlayerSession; + var player = shell.Player; if (player == null) { shell.WriteLine("Only players can use this command"); diff --git a/Content.Server/Administration/ContentNetworkResourceManager.cs b/Content.Server/Administration/ContentNetworkResourceManager.cs index 0d3f3291e6..dd95a2d897 100644 --- a/Content.Server/Administration/ContentNetworkResourceManager.cs +++ b/Content.Server/Administration/ContentNetworkResourceManager.cs @@ -1,8 +1,8 @@ using Content.Server.Database; using Content.Shared.CCVar; -using Robust.Server.Player; using Robust.Server.Upload; using Robust.Shared.Configuration; +using Robust.Shared.Player; using Robust.Shared.Upload; namespace Content.Server.Administration; @@ -22,7 +22,7 @@ public void Initialize() _netRes.OnResourceUploaded += OnUploadResource; } - private async void OnUploadResource(IPlayerSession session, NetworkResourceUploadMessage msg) + private async void OnUploadResource(ICommonSession session, NetworkResourceUploadMessage msg) { if (StoreUploaded) await _serverDb.AddUploadedResourceLogAsync(session.UserId, DateTime.Now, msg.RelativePath.ToString(), msg.Data); diff --git a/Content.Server/Administration/Logs/AdminLogManager.Json.cs b/Content.Server/Administration/Logs/AdminLogManager.Json.cs index 63f30c7a66..0a67d61cef 100644 --- a/Content.Server/Administration/Logs/AdminLogManager.Json.cs +++ b/Content.Server/Administration/Logs/AdminLogManager.Json.cs @@ -3,8 +3,8 @@ using System.Text.Json.Serialization; using Content.Server.Administration.Logs.Converters; using Robust.Server.GameObjects; -using Robust.Server.Player; using Robust.Shared.Map; +using Robust.Shared.Player; namespace Content.Server.Administration.Logs; @@ -44,7 +44,7 @@ private void InitializeJson() var value = properties[key]; value = value switch { - IPlayerSession player => new SerializablePlayer(player), + ICommonSession player => new SerializablePlayer(player), EntityCoordinates entityCoordinates => new SerializableEntityCoordinates(_entityManager, entityCoordinates), _ => value }; @@ -56,7 +56,7 @@ private void InitializeJson() { EntityUid id => id, EntityStringRepresentation rep => rep.Uid, - IPlayerSession {AttachedEntity: {Valid: true}} session => session.AttachedEntity, + ICommonSession {AttachedEntity: {Valid: true}} session => session.AttachedEntity, IComponent component => component.Owner, _ => null }; diff --git a/Content.Server/Administration/Logs/Converters/EntityUidConverter.cs b/Content.Server/Administration/Logs/Converters/EntityUidConverter.cs index 2fc1a2b627..78d81af33c 100644 --- a/Content.Server/Administration/Logs/Converters/EntityUidConverter.cs +++ b/Content.Server/Administration/Logs/Converters/EntityUidConverter.cs @@ -1,5 +1,5 @@ using System.Text.Json; -using Robust.Server.GameObjects; +using Robust.Shared.Player; namespace Content.Server.Administration.Logs.Converters; diff --git a/Content.Server/Administration/Logs/Converters/PlayerSessionConverter.cs b/Content.Server/Administration/Logs/Converters/PlayerSessionConverter.cs index 0605c2db2a..c1567448cc 100644 --- a/Content.Server/Administration/Logs/Converters/PlayerSessionConverter.cs +++ b/Content.Server/Administration/Logs/Converters/PlayerSessionConverter.cs @@ -1,5 +1,5 @@ using System.Text.Json; -using Robust.Server.Player; +using Robust.Shared.Player; namespace Content.Server.Administration.Logs.Converters; @@ -36,9 +36,9 @@ public override void Write(Utf8JsonWriter writer, SerializablePlayer value, Json public readonly struct SerializablePlayer { - public readonly IPlayerSession Player; + public readonly ICommonSession Player; - public SerializablePlayer(IPlayerSession player) + public SerializablePlayer(ICommonSession player) { Player = player; } diff --git a/Content.Server/Administration/Managers/AdminManager.cs b/Content.Server/Administration/Managers/AdminManager.cs index 4aa6074b10..0895183215 100644 --- a/Content.Server/Administration/Managers/AdminManager.cs +++ b/Content.Server/Administration/Managers/AdminManager.cs @@ -7,15 +7,15 @@ using Content.Server.Players; using Content.Shared.Administration; using Content.Shared.CCVar; +using Content.Shared.Players; using Robust.Server.Console; using Robust.Server.Player; using Robust.Shared.Configuration; using Robust.Shared.Console; using Robust.Shared.ContentPack; using Robust.Shared.Enums; -using Robust.Shared.Map; using Robust.Shared.Network; -using Robust.Shared.Players; +using Robust.Shared.Player; using Robust.Shared.Toolshed; using Robust.Shared.Toolshed.Errors; using Robust.Shared.Utility; @@ -35,16 +35,16 @@ public sealed class AdminManager : IAdminManager, IPostInjectInit, IConGroupCont [Dependency] private readonly IChatManager _chat = default!; [Dependency] private readonly ToolshedManager _toolshed = default!; - private readonly Dictionary _admins = new(); + private readonly Dictionary _admins = new(); private readonly HashSet _promotedPlayers = new(); public event Action? OnPermsChanged; - public IEnumerable ActiveAdmins => _admins + public IEnumerable ActiveAdmins => _admins .Where(p => p.Value.Data.Active) .Select(p => p.Key); - public IEnumerable AllAdmins => _admins.Select(p => p.Key); + public IEnumerable AllAdmins => _admins.Select(p => p.Key); private readonly AdminCommandPermissions _commandPermissions = new(); private readonly AdminCommandPermissions _toolshedCommandPermissions = new(); @@ -56,7 +56,7 @@ public bool IsAdmin(ICommonSession session, bool includeDeAdmin = false) public AdminData? GetAdminData(ICommonSession session, bool includeDeAdmin = false) { - if (_admins.TryGetValue((IPlayerSession)session, out var reg) && (reg.Data.Active || includeDeAdmin)) + if (_admins.TryGetValue(session, out var reg) && (reg.Data.Active || includeDeAdmin)) { return reg.Data; } @@ -66,13 +66,13 @@ public bool IsAdmin(ICommonSession session, bool includeDeAdmin = false) public AdminData? GetAdminData(EntityUid uid, bool includeDeAdmin = false) { - if (_playerManager.TryGetSessionByEntity(uid, out var session) && session is IPlayerSession playerSession) - return GetAdminData(playerSession, includeDeAdmin); + if (_playerManager.TryGetSessionByEntity(uid, out var session)) + return GetAdminData(session, includeDeAdmin); return null; } - public void DeAdmin(IPlayerSession session) + public void DeAdmin(ICommonSession session) { if (!_admins.TryGetValue(session, out var reg)) { @@ -95,7 +95,7 @@ public void DeAdmin(IPlayerSession session) UpdateAdminStatus(session); } - public void ReAdmin(IPlayerSession session) + public void ReAdmin(ICommonSession session) { if (!_admins.TryGetValue(session, out var reg)) { @@ -119,7 +119,7 @@ public void ReAdmin(IPlayerSession session) UpdateAdminStatus(session); } - public async void ReloadAdmin(IPlayerSession player) + public async void ReloadAdmin(ICommonSession player) { var data = await LoadAdminData(player); var curAdmin = _admins.GetValueOrDefault(player); @@ -236,7 +236,7 @@ public void Initialize() _toolshed.ActivePermissionController = this; } - public void PromoteHost(IPlayerSession player) + public void PromoteHost(ICommonSession player) { _promotedPlayers.Add(player.UserId); @@ -250,7 +250,7 @@ void IPostInjectInit.PostInject() } // NOTE: Also sends commands list for non admins.. - private void UpdateAdminStatus(IPlayerSession session) + private void UpdateAdminStatus(ICommonSession session) { var msg = new MsgUpdateAdminStatus(); @@ -290,7 +290,7 @@ private void PlayerStatusChanged(object? sender, SessionStatusEventArgs e) } } - private async void LoginAdminMaybe(IPlayerSession session) + private async void LoginAdminMaybe(ICommonSession session) { var adminDat = await LoadAdminData(session); if (adminDat == null) @@ -323,7 +323,7 @@ private async void LoginAdminMaybe(IPlayerSession session) UpdateAdminStatus(session); } - private async Task<(AdminData dat, int? rankId, bool specialLogin)?> LoadAdminData(IPlayerSession session) + private async Task<(AdminData dat, int? rankId, bool specialLogin)?> LoadAdminData(ICommonSession session) { var promoteHost = IsLocal(session) && _cfg.GetCVar(CCVars.ConsoleLoginLocal) || _promotedPlayers.Contains(session.UserId) @@ -387,7 +387,7 @@ private async void LoginAdminMaybe(IPlayerSession session) } } - private static bool IsLocal(IPlayerSession player) + private static bool IsLocal(ICommonSession player) { var ep = player.ConnectedClient.RemoteEndPoint; var addr = ep.Address; @@ -419,7 +419,7 @@ public bool TryGetCommandFlags(CommandSpec command, out AdminFlags[]? flags) return false; } - public bool CanCommand(IPlayerSession session, string cmdName) + public bool CanCommand(ICommonSession session, string cmdName) { if (_commandPermissions.AnyCommands.Contains(cmdName)) { @@ -474,7 +474,7 @@ public bool CheckInvokable(CommandSpec command, ICommonSession? user, out IConEr return true; } - var data = GetAdminData((IPlayerSession)user); + var data = GetAdminData(user); if (data == null) { // Player isn't an admin. @@ -520,32 +520,32 @@ private static (bool isAvail, AdminFlags[] flagsReq) GetRequiredFlag(object cmd) return (attribs.Length != 0, attribs); } - public bool CanViewVar(IPlayerSession session) + public bool CanViewVar(ICommonSession session) { return CanCommand(session, "vv"); } - public bool CanAdminPlace(IPlayerSession session) + public bool CanAdminPlace(ICommonSession session) { return GetAdminData(session)?.CanAdminPlace() ?? false; } - public bool CanScript(IPlayerSession session) + public bool CanScript(ICommonSession session) { return GetAdminData(session)?.CanScript() ?? false; } - public bool CanAdminMenu(IPlayerSession session) + public bool CanAdminMenu(ICommonSession session) { return GetAdminData(session)?.CanAdminMenu() ?? false; } - public bool CanAdminReloadPrototypes(IPlayerSession session) + public bool CanAdminReloadPrototypes(ICommonSession session) { return GetAdminData(session)?.CanAdminReloadPrototypes() ?? false; } - private void SendPermsChangedEvent(IPlayerSession session) + private void SendPermsChangedEvent(ICommonSession session) { var flags = GetAdminData(session)?.Flags; OnPermsChanged?.Invoke(new AdminPermsChangedEventArgs(session, flags)); @@ -553,7 +553,7 @@ private void SendPermsChangedEvent(IPlayerSession session) private sealed class AdminReg { - public readonly IPlayerSession Session; + public readonly ICommonSession Session; public AdminData Data; public int? RankId; @@ -561,7 +561,7 @@ private sealed class AdminReg // Such as console.loginlocal or promotehost public bool IsSpecialLogin; - public AdminReg(IPlayerSession session, AdminData data) + public AdminReg(ICommonSession session, AdminData data) { Data = data; Session = session; diff --git a/Content.Server/Administration/Managers/BanManager.cs b/Content.Server/Administration/Managers/BanManager.cs index 765df17b17..4d51d35576 100644 --- a/Content.Server/Administration/Managers/BanManager.cs +++ b/Content.Server/Administration/Managers/BanManager.cs @@ -15,6 +15,7 @@ using Robust.Shared.Configuration; using Robust.Shared.Enums; using Robust.Shared.Network; +using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Utility; @@ -283,7 +284,7 @@ public void SendRoleBans(NetUserId userId) SendRoleBans(player); } - public void SendRoleBans(IPlayerSession pSession) + public void SendRoleBans(ICommonSession pSession) { var roleBans = _cachedRoleBans.GetValueOrDefault(pSession.UserId) ?? new HashSet(); var bans = new MsgRoleBans() diff --git a/Content.Server/Administration/Managers/IAdminManager.cs b/Content.Server/Administration/Managers/IAdminManager.cs index eeed5cc36e..a52ec7b099 100644 --- a/Content.Server/Administration/Managers/IAdminManager.cs +++ b/Content.Server/Administration/Managers/IAdminManager.cs @@ -1,9 +1,8 @@ using Content.Shared.Administration; using Content.Shared.Administration.Managers; -using Robust.Server.Player; +using Robust.Shared.Player; using Robust.Shared.Toolshed; - namespace Content.Server.Administration.Managers { /// @@ -22,12 +21,12 @@ public interface IAdminManager : ISharedAdminManager /// /// This does not include admins that are de-adminned. /// - IEnumerable ActiveAdmins { get; } + IEnumerable ActiveAdmins { get; } /// /// Gets all admins currently on the server, even de-adminned ones. /// - IEnumerable AllAdmins { get; } + IEnumerable AllAdmins { get; } /// /// De-admins an admin temporarily so they are effectively a normal player. @@ -35,18 +34,18 @@ public interface IAdminManager : ISharedAdminManager /// /// De-adminned admins are able to re-admin at any time if they so desire. /// - void DeAdmin(IPlayerSession session); + void DeAdmin(ICommonSession session); /// /// Re-admins a de-adminned admin. /// - void ReAdmin(IPlayerSession session); + void ReAdmin(ICommonSession session); /// /// Re-loads the permissions of an player in case their admin data changed DB-side. /// /// - void ReloadAdmin(IPlayerSession player); + void ReloadAdmin(ICommonSession player); /// /// Reloads admin permissions for all admins with a certain rank. @@ -57,7 +56,7 @@ public interface IAdminManager : ISharedAdminManager void Initialize(); - void PromoteHost(IPlayerSession player); + void PromoteHost(ICommonSession player); bool TryGetCommandFlags(CommandSpec command, out AdminFlags[]? flags); } diff --git a/Content.Server/Administration/Managers/IBanManager.cs b/Content.Server/Administration/Managers/IBanManager.cs index 8458feac8d..dafe3d35bd 100644 --- a/Content.Server/Administration/Managers/IBanManager.cs +++ b/Content.Server/Administration/Managers/IBanManager.cs @@ -2,8 +2,8 @@ using System.Net; using System.Threading.Tasks; using Content.Shared.Database; -using Robust.Server.Player; using Robust.Shared.Network; +using Robust.Shared.Player; namespace Content.Server.Administration.Managers; @@ -55,5 +55,5 @@ public interface IBanManager /// Sends role bans to the target /// /// Player's session - public void SendRoleBans(IPlayerSession pSession); + public void SendRoleBans(ICommonSession pSession); } diff --git a/Content.Server/Administration/Notes/AdminNotesManager.cs b/Content.Server/Administration/Notes/AdminNotesManager.cs index 8a7846663f..0c1e7f3daa 100644 --- a/Content.Server/Administration/Notes/AdminNotesManager.cs +++ b/Content.Server/Administration/Notes/AdminNotesManager.cs @@ -11,7 +11,7 @@ using Content.Shared.Players.PlayTimeTracking; using Robust.Shared.Configuration; using Robust.Shared.Network; -using Robust.Shared.Players; +using Robust.Shared.Player; namespace Content.Server.Administration.Notes; diff --git a/Content.Server/Administration/Notes/AdminNotesSystem.cs b/Content.Server/Administration/Notes/AdminNotesSystem.cs index fd9f3f6bfa..f2eb033dca 100644 --- a/Content.Server/Administration/Notes/AdminNotesSystem.cs +++ b/Content.Server/Administration/Notes/AdminNotesSystem.cs @@ -1,13 +1,13 @@ using Content.Server.Administration.Commands; using Content.Server.Chat.Managers; using Content.Server.EUI; -using Content.Shared.Chat; using Content.Shared.Database; using Content.Shared.Verbs; using Robust.Server.GameObjects; using Robust.Server.Player; using Robust.Shared.Console; using Robust.Shared.Enums; +using Robust.Shared.Player; using Robust.Shared.Utility; namespace Content.Server.Administration.Notes; diff --git a/Content.Server/Administration/Notes/IAdminNotesManager.cs b/Content.Server/Administration/Notes/IAdminNotesManager.cs index ae7133c56d..a726bd11c8 100644 --- a/Content.Server/Administration/Notes/IAdminNotesManager.cs +++ b/Content.Server/Administration/Notes/IAdminNotesManager.cs @@ -2,7 +2,7 @@ using Content.Server.Database; using Content.Shared.Administration.Notes; using Content.Shared.Database; -using Robust.Shared.Players; +using Robust.Shared.Player; namespace Content.Server.Administration.Notes; diff --git a/Content.Server/Administration/QuickDialogSystem.OpenDialog.cs b/Content.Server/Administration/QuickDialogSystem.OpenDialog.cs index 521bee776f..fb013a88ad 100644 --- a/Content.Server/Administration/QuickDialogSystem.OpenDialog.cs +++ b/Content.Server/Administration/QuickDialogSystem.OpenDialog.cs @@ -1,6 +1,6 @@ using Content.Shared.Administration; using JetBrains.Annotations; -using Robust.Server.Player; +using Robust.Shared.Player; namespace Content.Server.Administration; @@ -16,7 +16,7 @@ public sealed partial class QuickDialogSystem /// The action to execute upon the dialog being cancelled. /// Type of the input. [PublicAPI] - public void OpenDialog(IPlayerSession session, string title, string prompt, Action okAction, + public void OpenDialog(ICommonSession session, string title, string prompt, Action okAction, Action? cancelAction = null) { OpenDialogInternal( @@ -53,7 +53,7 @@ public void OpenDialog(IPlayerSession session, string title, string prompt, /// Type of the first input. /// Type of the second input. [PublicAPI] - public void OpenDialog(IPlayerSession session, string title, string prompt1, string prompt2, + public void OpenDialog(ICommonSession session, string title, string prompt1, string prompt2, Action okAction, Action? cancelAction = null) { OpenDialogInternal( @@ -96,7 +96,7 @@ public void OpenDialog(IPlayerSession session, string title, string prom /// Type of the second input. /// Type of the third input. [PublicAPI] - public void OpenDialog(IPlayerSession session, string title, string prompt1, string prompt2, + public void OpenDialog(ICommonSession session, string title, string prompt1, string prompt2, string prompt3, Action okAction, Action? cancelAction = null) { OpenDialogInternal( @@ -142,7 +142,7 @@ public void OpenDialog(IPlayerSession session, string title, string /// Type of the third input. /// Type of the fourth input. [PublicAPI] - public void OpenDialog(IPlayerSession session, string title, string prompt1, string prompt2, + public void OpenDialog(ICommonSession session, string title, string prompt1, string prompt2, string prompt3, string prompt4, Action okAction, Action? cancelAction = null) { OpenDialogInternal( diff --git a/Content.Server/Administration/QuickDialogSystem.cs b/Content.Server/Administration/QuickDialogSystem.cs index 51b8cf79c2..96423e5223 100644 --- a/Content.Server/Administration/QuickDialogSystem.cs +++ b/Content.Server/Administration/QuickDialogSystem.cs @@ -1,12 +1,9 @@ -using System.ComponentModel; -using System.Diagnostics.CodeAnalysis; +using System.Diagnostics.CodeAnalysis; using Content.Shared.Administration; -using Microsoft.CodeAnalysis.CSharp.Syntax; using Robust.Server.Player; using Robust.Shared.Enums; using Robust.Shared.Network; using Robust.Shared.Player; -using Robust.Shared.Serialization.TypeSerializers.Interfaces; namespace Content.Server.Administration; @@ -87,7 +84,7 @@ private void PlayerManagerOnPlayerStatusChanged(object? sender, SessionStatusEve _openDialogsByUser.Remove(user); } - private void OpenDialogInternal(IPlayerSession session, string title, List entries, QuickDialogButtonFlag buttons, Action okAction, Action cancelAction) + private void OpenDialogInternal(ICommonSession session, string title, List entries, QuickDialogButtonFlag buttons, Action okAction, Action cancelAction) { var did = GetDialogId(); RaiseNetworkEvent( diff --git a/Content.Server/Administration/Systems/AdminSystem.cs b/Content.Server/Administration/Systems/AdminSystem.cs index 5a3e1d9217..29ad854550 100644 --- a/Content.Server/Administration/Systems/AdminSystem.cs +++ b/Content.Server/Administration/Systems/AdminSystem.cs @@ -109,7 +109,7 @@ private void OnRoundRestartCleanup(RoundRestartCleanupEvent ev) } } - public void UpdatePlayerList(IPlayerSession player) + public void UpdatePlayerList(ICommonSession player) { _playerList[player.UserId] = GetPlayerInfo(player.Data, player); @@ -203,7 +203,7 @@ private void OnPlayerStatusChanged(object? sender, SessionStatusEventArgs e) UpdatePanicBunker(); } - private void SendFullPlayerList(IPlayerSession playerSession) + private void SendFullPlayerList(ICommonSession playerSession) { var ev = new FullPlayerListEvent(); @@ -212,7 +212,7 @@ private void SendFullPlayerList(IPlayerSession playerSession) RaiseNetworkEvent(ev, playerSession.ConnectedClient); } - private PlayerInfo GetPlayerInfo(IPlayerData data, IPlayerSession? session) + private PlayerInfo GetPlayerInfo(SessionData data, ICommonSession? session) { var name = data.UserName; var entityName = string.Empty; @@ -326,7 +326,7 @@ private void SendPanicBunkerStatusAll() /// chat messages and showing a popup to other players. /// Their items are dropped on the ground. /// - public void Erase(IPlayerSession player) + public void Erase(ICommonSession player) { var entity = player.AttachedEntity; _chat.DeleteMessagesBy(player); diff --git a/Content.Server/Administration/Systems/AdminTestArenaSystem.cs b/Content.Server/Administration/Systems/AdminTestArenaSystem.cs index e65acf571c..e3671bcdfb 100644 --- a/Content.Server/Administration/Systems/AdminTestArenaSystem.cs +++ b/Content.Server/Administration/Systems/AdminTestArenaSystem.cs @@ -1,8 +1,8 @@ using Robust.Server.GameObjects; -using Robust.Server.Player; using Robust.Shared.Map; using Robust.Shared.Map.Components; using Robust.Shared.Network; +using Robust.Shared.Player; namespace Content.Server.Administration.Systems; @@ -20,7 +20,7 @@ public sealed class AdminTestArenaSystem : EntitySystem public Dictionary ArenaMap { get; private set; } = new(); public Dictionary ArenaGrid { get; private set; } = new(); - public (EntityUid Map, EntityUid? Grid) AssertArenaLoaded(IPlayerSession admin) + public (EntityUid Map, EntityUid? Grid) AssertArenaLoaded(ICommonSession admin) { if (ArenaMap.TryGetValue(admin.UserId, out var arenaMap) && !Deleted(arenaMap) && !Terminating(arenaMap)) { diff --git a/Content.Server/Administration/Systems/AdminVerbSystem.Antags.cs b/Content.Server/Administration/Systems/AdminVerbSystem.Antags.cs index 6fe526af11..245fad4b33 100644 --- a/Content.Server/Administration/Systems/AdminVerbSystem.Antags.cs +++ b/Content.Server/Administration/Systems/AdminVerbSystem.Antags.cs @@ -7,10 +7,8 @@ using Content.Shared.Mind; using Content.Shared.Mind.Components; using Content.Shared.Verbs; -using Robust.Server.GameObjects; using Robust.Shared.Utility; -using Content.Server.GameTicking.Rules.Components; -using System.Linq; +using Robust.Shared.Player; namespace Content.Server.Administration.Systems; diff --git a/Content.Server/Administration/Systems/AdminVerbSystem.Tools.cs b/Content.Server/Administration/Systems/AdminVerbSystem.Tools.cs index b52e56009d..d7df3faee2 100644 --- a/Content.Server/Administration/Systems/AdminVerbSystem.Tools.cs +++ b/Content.Server/Administration/Systems/AdminVerbSystem.Tools.cs @@ -1,12 +1,10 @@ using System.Diagnostics.CodeAnalysis; using System.Linq; using System.Numerics; -using Content.Server.Administration.Commands; using Content.Server.Administration.Components; using Content.Server.Atmos; using Content.Server.Atmos.Components; using Content.Server.Cargo.Components; -using Content.Server.Damage.Components; using Content.Server.Doors.Systems; using Content.Server.Hands.Systems; using Content.Server.Power.Components; @@ -30,12 +28,12 @@ using Content.Shared.Stacks; using Content.Shared.Verbs; using Content.Shared.Weapons.Ranged.Components; -using Robust.Server.GameObjects; using Robust.Server.Physics; using Robust.Shared.Map; using Robust.Shared.Map.Components; using Robust.Shared.Physics; using Robust.Shared.Physics.Components; +using Robust.Shared.Player; using Robust.Shared.Utility; namespace Content.Server.Administration.Systems; diff --git a/Content.Server/Administration/Systems/AdminVerbSystem.cs b/Content.Server/Administration/Systems/AdminVerbSystem.cs index 0f0c562356..bc065745f5 100644 --- a/Content.Server/Administration/Systems/AdminVerbSystem.cs +++ b/Content.Server/Administration/Systems/AdminVerbSystem.cs @@ -24,11 +24,10 @@ using Content.Shared.Verbs; using Robust.Server.Console; using Robust.Server.GameObjects; -using Robust.Server.Player; using Robust.Shared.Console; using Robust.Shared.Map; using Robust.Shared.Map.Components; -using Robust.Shared.Players; +using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Timing; using Robust.Shared.Toolshed; @@ -427,7 +426,7 @@ private void OnSolutionChanged(EntityUid uid, SolutionContainerManagerComponent } } - public void OpenEditSolutionsEui(IPlayerSession session, EntityUid uid) + public void OpenEditSolutionsEui(ICommonSession session, EntityUid uid) { if (session.AttachedEntity == null) return; diff --git a/Content.Server/Administration/Systems/BwoinkSystem.cs b/Content.Server/Administration/Systems/BwoinkSystem.cs index 98e5af1126..31ef285a88 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.Player; using Robust.Shared.Timing; using Robust.Shared.Utility; @@ -119,7 +120,7 @@ private void OnClientTypingUpdated(BwoinkClientTypingUpdated msg, EntitySessionE _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 isAdmin = _adminManager.GetAdminData(args.SenderSession)?.HasFlag(AdminFlags.Adminhelp) ?? false; var channel = isAdmin ? msg.Channel : args.SenderSession.UserId; var update = new BwoinkPlayerTypingUpdated(channel, args.SenderSession.Name, msg.Typing); @@ -376,7 +377,7 @@ public override void Update(float frameTime) protected override void OnBwoinkTextMessage(BwoinkTextMessage message, EntitySessionEventArgs eventArgs) { base.OnBwoinkTextMessage(message, eventArgs); - var senderSession = (IPlayerSession) eventArgs.SenderSession; + var senderSession = eventArgs.SenderSession; // TODO: Sanitize text? // Confirm that this person is actually allowed to send a message here. diff --git a/Content.Server/Administration/Toolshed/AdminsCommand.cs b/Content.Server/Administration/Toolshed/AdminsCommand.cs index aa82e0f1d9..1d64f748fd 100644 --- a/Content.Server/Administration/Toolshed/AdminsCommand.cs +++ b/Content.Server/Administration/Toolshed/AdminsCommand.cs @@ -1,6 +1,6 @@ using Content.Server.Administration.Managers; using Content.Shared.Administration; -using Robust.Server.Player; +using Robust.Shared.Player; using Robust.Shared.Toolshed; namespace Content.Server.Administration.Toolshed; @@ -11,13 +11,13 @@ public sealed class AdminsCommand : ToolshedCommand [Dependency] private readonly IAdminManager _admin = default!; [CommandImplementation("active")] - public IEnumerable Active() + public IEnumerable Active() { return _admin.ActiveAdmins; } [CommandImplementation("all")] - public IEnumerable All() + public IEnumerable All() { return _admin.AllAdmins; } diff --git a/Content.Server/Afk/AFKSystem.cs b/Content.Server/Afk/AFKSystem.cs index 0938f45f73..f634a415dc 100644 --- a/Content.Server/Afk/AFKSystem.cs +++ b/Content.Server/Afk/AFKSystem.cs @@ -1,4 +1,3 @@ -using System.Linq; using Content.Server.Afk.Events; using Content.Server.GameTicking; using Content.Shared.CCVar; @@ -24,7 +23,7 @@ public sealed class AFKSystem : EntitySystem private float _checkDelay; private TimeSpan _checkTime; - private readonly HashSet _afkPlayers = new(); + private readonly HashSet _afkPlayers = new(); public override void Initialize() { @@ -73,11 +72,9 @@ public override void Update(float frameTime) _checkTime = _timing.CurTime + TimeSpan.FromSeconds(_checkDelay); - foreach (var session in Filter.GetAllPlayers()) + foreach (var pSession in Filter.GetAllPlayers()) { - if (session.Status != SessionStatus.InGame) continue; - - var pSession = (IPlayerSession) session; + if (pSession.Status != SessionStatus.InGame) continue; var isAfk = _afkManager.IsAfk(pSession); if (isAfk && _afkPlayers.Add(pSession)) diff --git a/Content.Server/Afk/AfkManager.cs b/Content.Server/Afk/AfkManager.cs index 24cd1e28ce..52dc7715df 100644 --- a/Content.Server/Afk/AfkManager.cs +++ b/Content.Server/Afk/AfkManager.cs @@ -5,6 +5,7 @@ using Robust.Shared.Console; using Robust.Shared.Enums; using Robust.Shared.Input; +using Robust.Shared.Player; using Robust.Shared.Timing; namespace Content.Server.Afk @@ -20,13 +21,13 @@ public interface IAfkManager /// /// The player to check. /// True if the player is AFK, false otherwise. - bool IsAfk(IPlayerSession player); + bool IsAfk(ICommonSession player); /// /// Resets AFK status for the player as if they just did an action and are definitely not AFK. /// /// The player to set AFK status for. - void PlayerDidAction(IPlayerSession player); + void PlayerDidAction(ICommonSession player); void Initialize(); } @@ -40,7 +41,7 @@ public sealed class AfkManager : IAfkManager, IEntityEventSubscriber [Dependency] private readonly IConfigurationManager _cfg = default!; [Dependency] private readonly IConsoleHost _consoleHost = default!; - private readonly Dictionary _lastActionTimes = new(); + private readonly Dictionary _lastActionTimes = new(); public void Initialize() { @@ -55,7 +56,7 @@ public void Initialize() HandleInputCmd); } - public void PlayerDidAction(IPlayerSession player) + public void PlayerDidAction(ICommonSession player) { if (player.Status == SessionStatus.Disconnected) // Make sure we don't re-add to the dictionary if the player is disconnected now. @@ -64,7 +65,7 @@ public void PlayerDidAction(IPlayerSession player) _lastActionTimes[player] = _gameTiming.RealTime; } - public bool IsAfk(IPlayerSession player) + public bool IsAfk(ICommonSession player) { if (!_lastActionTimes.TryGetValue(player, out var time)) // Some weird edge case like disconnected clients. Just say true I guess. @@ -87,13 +88,13 @@ private void PlayerStatusChanged(object? sender, SessionStatusEventArgs e) private void ConsoleHostOnAnyCommandExecuted(IConsoleShell shell, string commandname, string argstr, string[] args) { - if (shell.Player is IPlayerSession player) + if (shell.Player is { } player) PlayerDidAction(player); } private void HandleInputCmd(FullInputCmdMessage msg, EntitySessionEventArgs args) { - PlayerDidAction((IPlayerSession) args.SenderSession); + PlayerDidAction(args.SenderSession); } } } diff --git a/Content.Server/Afk/Events/AFKEvent.cs b/Content.Server/Afk/Events/AFKEvent.cs index 6adb950e47..ee9d548043 100644 --- a/Content.Server/Afk/Events/AFKEvent.cs +++ b/Content.Server/Afk/Events/AFKEvent.cs @@ -1,4 +1,4 @@ -using Robust.Server.Player; +using Robust.Shared.Player; namespace Content.Server.Afk.Events; @@ -8,9 +8,9 @@ namespace Content.Server.Afk.Events; [ByRefEvent] public readonly struct AFKEvent { - public readonly IPlayerSession Session; + public readonly ICommonSession Session; - public AFKEvent(IPlayerSession playerSession) + public AFKEvent(ICommonSession playerSession) { Session = playerSession; } diff --git a/Content.Server/Afk/Events/UnAFKEvent.cs b/Content.Server/Afk/Events/UnAFKEvent.cs index 3dd034583c..0983c256f0 100644 --- a/Content.Server/Afk/Events/UnAFKEvent.cs +++ b/Content.Server/Afk/Events/UnAFKEvent.cs @@ -1,4 +1,4 @@ -using Robust.Server.Player; +using Robust.Shared.Player; namespace Content.Server.Afk.Events; @@ -8,9 +8,9 @@ namespace Content.Server.Afk.Events; [ByRefEvent] public readonly struct UnAFKEvent { - public readonly IPlayerSession Session; + public readonly ICommonSession Session; - public UnAFKEvent(IPlayerSession playerSession) + public UnAFKEvent(ICommonSession playerSession) { Session = playerSession; } diff --git a/Content.Server/Alert/Commands/ClearAlert.cs b/Content.Server/Alert/Commands/ClearAlert.cs index e43f06413c..1759612702 100644 --- a/Content.Server/Alert/Commands/ClearAlert.cs +++ b/Content.Server/Alert/Commands/ClearAlert.cs @@ -2,7 +2,6 @@ using Content.Server.Commands; using Content.Shared.Administration; using Content.Shared.Alert; -using Robust.Server.Player; using Robust.Shared.Console; namespace Content.Server.Alert.Commands @@ -16,7 +15,7 @@ public sealed class ClearAlert : IConsoleCommand public void Execute(IConsoleShell shell, string argStr, string[] args) { - var player = shell.Player as IPlayerSession; + var player = shell.Player; if (player?.AttachedEntity == null) { shell.WriteLine("You don't have an entity."); diff --git a/Content.Server/Alert/Commands/ShowAlert.cs b/Content.Server/Alert/Commands/ShowAlert.cs index edb634b546..11901e9af0 100644 --- a/Content.Server/Alert/Commands/ShowAlert.cs +++ b/Content.Server/Alert/Commands/ShowAlert.cs @@ -2,7 +2,6 @@ using Content.Server.Commands; using Content.Shared.Administration; using Content.Shared.Alert; -using Robust.Server.Player; using Robust.Shared.Console; namespace Content.Server.Alert.Commands @@ -16,7 +15,7 @@ public sealed class ShowAlert : IConsoleCommand public void Execute(IConsoleShell shell, string argStr, string[] args) { - var player = shell.Player as IPlayerSession; + var player = shell.Player; if (player?.AttachedEntity == null) { shell.WriteLine("You cannot run this from the server or without an attached entity."); diff --git a/Content.Server/AlertLevel/Commands/SetAlertLevelCommand.cs b/Content.Server/AlertLevel/Commands/SetAlertLevelCommand.cs index 009a8b5f23..2c432a2419 100644 --- a/Content.Server/AlertLevel/Commands/SetAlertLevelCommand.cs +++ b/Content.Server/AlertLevel/Commands/SetAlertLevelCommand.cs @@ -3,7 +3,6 @@ using Content.Server.Station.Systems; using Content.Shared.Administration; using JetBrains.Annotations; -using Robust.Server.Player; using Robust.Shared.Console; namespace Content.Server.AlertLevel.Commands @@ -19,7 +18,7 @@ public sealed class SetAlertLevelCommand : IConsoleCommand public CompletionResult GetCompletion(IConsoleShell shell, string[] args) { var levelNames = new string[] {}; - var player = shell.Player as IPlayerSession; + var player = shell.Player; if (player?.AttachedEntity != null) { var stationUid = EntitySystem.Get().GetOwningStation(player.AttachedEntity.Value); @@ -54,7 +53,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - var player = shell.Player as IPlayerSession; + var player = shell.Player; if (player?.AttachedEntity == null) { shell.WriteLine(Loc.GetString("shell-only-players-can-run-this-command")); diff --git a/Content.Server/Anomaly/AnomalySystem.Scanner.cs b/Content.Server/Anomaly/AnomalySystem.Scanner.cs index caff031ace..30b3d99497 100644 --- a/Content.Server/Anomaly/AnomalySystem.Scanner.cs +++ b/Content.Server/Anomaly/AnomalySystem.Scanner.cs @@ -3,7 +3,7 @@ using Content.Shared.Anomaly.Components; using Content.Shared.DoAfter; using Content.Shared.Interaction; -using Robust.Server.GameObjects; +using Robust.Shared.Player; using Robust.Shared.Utility; namespace Content.Server.Anomaly; diff --git a/Content.Server/Antag/AntagSelectionSystem.cs b/Content.Server/Antag/AntagSelectionSystem.cs index 5e323f5ab8..737b723d39 100644 --- a/Content.Server/Antag/AntagSelectionSystem.cs +++ b/Content.Server/Antag/AntagSelectionSystem.cs @@ -22,6 +22,7 @@ using Content.Server.Shuttles.Systems; using Content.Shared.Mobs; using Robust.Server.Containers; +using Robust.Shared.Player; using Robust.Shared.Prototypes; namespace Content.Server.Antag; @@ -88,9 +89,9 @@ public void EligiblePlayers(string antagPrototype, out List chosen, bool includeHeads = false) { - var allPlayers = _playerSystem.ServerSessions.ToList(); - var playerList = new List(); - var prefList = new List(); + var allPlayers = _playerSystem.Sessions.ToList(); + var playerList = new List(); + var prefList = new List(); chosen = new List(); foreach (var player in allPlayers) { @@ -116,7 +117,7 @@ public void EligiblePlayers(string antagPrototype, var antags = Math.Clamp(allPlayers.Count / antagsPerPlayer, 1, maxAntags); for (var antag = 0; antag < antags; antag++) { - IPlayerSession chosenPlayer = null!; + ICommonSession? chosenPlayer = null; if (prefList.Count == 0) { if (playerList.Count == 0) diff --git a/Content.Server/Arcade/BlockGame/BlockGame.Ui.cs b/Content.Server/Arcade/BlockGame/BlockGame.Ui.cs index 92a96ea226..ef69600783 100644 --- a/Content.Server/Arcade/BlockGame/BlockGame.Ui.cs +++ b/Content.Server/Arcade/BlockGame/BlockGame.Ui.cs @@ -1,6 +1,6 @@ using Content.Shared.Arcade; -using Robust.Server.Player; using System.Linq; +using Robust.Shared.Player; namespace Content.Server.Arcade.BlockGame; @@ -166,7 +166,7 @@ private void SendMessage(BoundUserInterfaceMessage message) /// /// The message to send to a specific player/spectator. /// The target recipient. - private void SendMessage(BoundUserInterfaceMessage message, IPlayerSession session) + private void SendMessage(BoundUserInterfaceMessage message, ICommonSession session) { if (_uiSystem.TryGetUi(_owner, BlockGameUiKey.Key, out var bui)) _uiSystem.TrySendUiMessage(bui, message, session); @@ -176,7 +176,7 @@ private void SendMessage(BoundUserInterfaceMessage message, IPlayerSession sessi /// Handles sending the current state of the game to a player that has just opened the UI. /// /// The target recipient. - public void UpdateNewPlayerUI(IPlayerSession session) + public void UpdateNewPlayerUI(ICommonSession session) { if (_gameOver) { @@ -209,7 +209,7 @@ private void FullUpdate() /// Handles broadcasting the full player-visible game state to a specific player/spectator. /// /// The target recipient. - private void FullUpdate(IPlayerSession session) + private void FullUpdate(ICommonSession session) { UpdateFieldUI(session); SendNextPieceUpdate(session); @@ -235,7 +235,7 @@ public void UpdateFieldUI() /// Handles broadcasting the current location of all of the blocks in the playfield + the active piece to a specific player/spectator. /// /// The target recipient. - public void UpdateFieldUI(IPlayerSession session) + public void UpdateFieldUI(ICommonSession session) { if (!Started) return; @@ -283,7 +283,7 @@ private void SendNextPieceUpdate() /// Broadcasts the state of the next queued piece to a specific viewer. /// /// The target recipient. - private void SendNextPieceUpdate(IPlayerSession session) + private void SendNextPieceUpdate(ICommonSession session) { SendMessage(new BlockGameMessages.BlockGameVisualUpdateMessage(NextPiece.BlocksForPreview(), BlockGameMessages.BlockGameVisualType.NextBlock), session); } @@ -303,7 +303,7 @@ private void SendHoldPieceUpdate() /// Broadcasts the state of the currently held piece to a specific viewer. /// /// The target recipient. - private void SendHoldPieceUpdate(IPlayerSession session) + private void SendHoldPieceUpdate(ICommonSession session) { if (HeldPiece.HasValue) SendMessage(new BlockGameMessages.BlockGameVisualUpdateMessage(HeldPiece.Value.BlocksForPreview(), BlockGameMessages.BlockGameVisualType.HoldBlock), session); @@ -323,7 +323,7 @@ private void SendLevelUpdate() /// Broadcasts the current game level to a specific viewer. /// /// The target recipient. - private void SendLevelUpdate(IPlayerSession session) + private void SendLevelUpdate(ICommonSession session) { SendMessage(new BlockGameMessages.BlockGameLevelUpdateMessage(Level), session); } @@ -340,7 +340,7 @@ private void SendPointsUpdate() /// Broadcasts the current game score to a specific viewer. /// /// The target recipient. - private void SendPointsUpdate(IPlayerSession session) + private void SendPointsUpdate(ICommonSession session) { SendMessage(new BlockGameMessages.BlockGameScoreUpdateMessage(Points), session); } @@ -357,7 +357,7 @@ private void SendHighscoreUpdate() /// Broadcasts the current game high score positions to a specific viewer. /// /// The target recipient. - private void SendHighscoreUpdate(IPlayerSession session) + private void SendHighscoreUpdate(ICommonSession session) { SendMessage(new BlockGameMessages.BlockGameHighScoreUpdateMessage(_arcadeSystem.GetLocalHighscores(), _arcadeSystem.GetGlobalHighscores()), session); } diff --git a/Content.Server/Arcade/BlockGame/BlockGameArcadeComponent.cs b/Content.Server/Arcade/BlockGame/BlockGameArcadeComponent.cs index 268d5be4d2..5613d91544 100644 --- a/Content.Server/Arcade/BlockGame/BlockGameArcadeComponent.cs +++ b/Content.Server/Arcade/BlockGame/BlockGameArcadeComponent.cs @@ -1,4 +1,4 @@ -using Robust.Server.Player; +using Robust.Shared.Player; namespace Content.Server.Arcade.BlockGame; @@ -13,10 +13,10 @@ public sealed partial class BlockGameArcadeComponent : Component /// /// The player currently playing the active session of NT-BG. /// - public IPlayerSession? Player = null; + public ICommonSession? Player = null; /// /// The players currently viewing (but not playing) the active session of NT-BG. /// - public readonly List Spectators = new(); + public readonly List Spectators = new(); } diff --git a/Content.Server/Arcade/BlockGame/BlockGameArcadeSystem.cs b/Content.Server/Arcade/BlockGame/BlockGameArcadeSystem.cs index dac29accc9..ecc5bfd3e2 100644 --- a/Content.Server/Arcade/BlockGame/BlockGameArcadeSystem.cs +++ b/Content.Server/Arcade/BlockGame/BlockGameArcadeSystem.cs @@ -2,7 +2,7 @@ using Content.Server.UserInterface; using Content.Shared.Arcade; using Robust.Server.GameObjects; -using Robust.Server.Player; +using Robust.Shared.Player; namespace Content.Server.Arcade.BlockGame; @@ -30,7 +30,7 @@ public override void Update(float frameTime) } } - private void UpdatePlayerStatus(EntityUid uid, IPlayerSession session, PlayerBoundUserInterface? bui = null, BlockGameArcadeComponent? blockGame = null) + private void UpdatePlayerStatus(EntityUid uid, ICommonSession session, PlayerBoundUserInterface? bui = null, BlockGameArcadeComponent? blockGame = null) { if (!Resolve(uid, ref blockGame)) return; @@ -67,7 +67,7 @@ private void OnAfterUIOpen(EntityUid uid, BlockGameArcadeComponent component, Af private void OnAfterUiClose(EntityUid uid, BlockGameArcadeComponent component, BoundUIClosedEvent args) { - if (args.Session is not IPlayerSession session) + if (args.Session is not { } session) return; if (component.Player != session) diff --git a/Content.Server/Atmos/Commands/DeleteGasCommand.cs b/Content.Server/Atmos/Commands/DeleteGasCommand.cs index 0f0c399b11..9e7594c024 100644 --- a/Content.Server/Atmos/Commands/DeleteGasCommand.cs +++ b/Content.Server/Atmos/Commands/DeleteGasCommand.cs @@ -2,7 +2,6 @@ using Content.Server.Atmos.EntitySystems; using Content.Shared.Administration; using Content.Shared.Atmos; -using Robust.Server.Player; using Robust.Shared.Console; using Robust.Shared.Map; @@ -20,7 +19,7 @@ public sealed class DeleteGasCommand : IConsoleCommand public void Execute(IConsoleShell shell, string argStr, string[] args) { - var player = shell.Player as IPlayerSession; + var player = shell.Player; EntityUid? gridId; Gas? gas = null; diff --git a/Content.Server/Atmos/Commands/ShowAtmosCommand.cs b/Content.Server/Atmos/Commands/ShowAtmosCommand.cs index 5ad73ec906..263ef947d0 100644 --- a/Content.Server/Atmos/Commands/ShowAtmosCommand.cs +++ b/Content.Server/Atmos/Commands/ShowAtmosCommand.cs @@ -1,7 +1,6 @@ using Content.Server.Administration; using Content.Server.Atmos.EntitySystems; using Content.Shared.Administration; -using Robust.Server.Player; using Robust.Shared.Console; namespace Content.Server.Atmos.Commands @@ -15,7 +14,7 @@ public sealed class ShowAtmos : IConsoleCommand public void Execute(IConsoleShell shell, string argStr, string[] args) { - var player = shell.Player as IPlayerSession; + var player = shell.Player; if (player == null) { shell.WriteLine("You must be a player to use this command."); diff --git a/Content.Server/Atmos/EntitySystems/AtmosDebugOverlaySystem.cs b/Content.Server/Atmos/EntitySystems/AtmosDebugOverlaySystem.cs index 34f558a252..90edd4caed 100644 --- a/Content.Server/Atmos/EntitySystems/AtmosDebugOverlaySystem.cs +++ b/Content.Server/Atmos/EntitySystems/AtmosDebugOverlaySystem.cs @@ -10,6 +10,7 @@ using Robust.Shared.Enums; using Robust.Shared.Map; using Robust.Shared.Map.Components; +using Robust.Shared.Player; namespace Content.Server.Atmos.EntitySystems { @@ -27,7 +28,7 @@ public sealed class AtmosDebugOverlaySystem : SharedAtmosDebugOverlaySystem /// To modify it see and /// . /// - private readonly HashSet _playerObservers = new(); + private readonly HashSet _playerObservers = new(); /// /// Overlay update ticks per second. @@ -48,17 +49,17 @@ public override void Shutdown() _playerManager.PlayerStatusChanged -= OnPlayerStatusChanged; } - public bool AddObserver(IPlayerSession observer) + public bool AddObserver(ICommonSession observer) { return _playerObservers.Add(observer); } - public bool HasObserver(IPlayerSession observer) + public bool HasObserver(ICommonSession observer) { return _playerObservers.Contains(observer); } - public bool RemoveObserver(IPlayerSession observer) + public bool RemoveObserver(ICommonSession observer) { if (!_playerObservers.Remove(observer)) { @@ -76,7 +77,7 @@ public bool RemoveObserver(IPlayerSession observer) /// /// The observer to toggle. /// true if added, false if removed. - public bool ToggleObserver(IPlayerSession observer) + public bool ToggleObserver(ICommonSession observer) { if (HasObserver(observer)) { diff --git a/Content.Server/Atmos/EntitySystems/GasAnalyzerSystem.cs b/Content.Server/Atmos/EntitySystems/GasAnalyzerSystem.cs index 0d7ad48f88..16ddf1f933 100644 --- a/Content.Server/Atmos/EntitySystems/GasAnalyzerSystem.cs +++ b/Content.Server/Atmos/EntitySystems/GasAnalyzerSystem.cs @@ -9,6 +9,7 @@ using Content.Shared.Interaction.Events; using JetBrains.Annotations; using Robust.Server.GameObjects; +using Robust.Shared.Player; using static Content.Shared.Atmos.Components.GasAnalyzerComponent; namespace Content.Server.Atmos.EntitySystems diff --git a/Content.Server/Atmos/EntitySystems/GasTankSystem.cs b/Content.Server/Atmos/EntitySystems/GasTankSystem.cs index df867d3516..17715435b2 100644 --- a/Content.Server/Atmos/EntitySystems/GasTankSystem.cs +++ b/Content.Server/Atmos/EntitySystems/GasTankSystem.cs @@ -12,7 +12,6 @@ using Content.Shared.Verbs; using JetBrains.Annotations; using Robust.Server.GameObjects; -using Robust.Server.Player; using Robust.Shared.Audio; using Robust.Shared.Containers; using Robust.Shared.Physics.Systems; @@ -60,12 +59,6 @@ private void OnGasShutdown(Entity gasTank, ref ComponentShutdo private void OnGasTankToggleInternals(Entity ent, ref GasTankToggleInternalsMessage args) { - if (args.Session is not IPlayerSession playerSession || - playerSession.AttachedEntity == null) - { - return; - } - ToggleInternals(ent); } diff --git a/Content.Server/Atmos/EntitySystems/GasTileOverlaySystem.cs b/Content.Server/Atmos/EntitySystems/GasTileOverlaySystem.cs index c229ef50c9..b0e8cf71c7 100644 --- a/Content.Server/Atmos/EntitySystems/GasTileOverlaySystem.cs +++ b/Content.Server/Atmos/EntitySystems/GasTileOverlaySystem.cs @@ -16,6 +16,7 @@ using Robust.Shared.Configuration; using Robust.Shared.Enums; using Robust.Shared.Map; +using Robust.Shared.Player; using Robust.Shared.Threading; using Robust.Shared.Timing; using Robust.Shared.Utility; @@ -35,7 +36,7 @@ public sealed class GasTileOverlaySystem : SharedGasTileOverlaySystem [Robust.Shared.IoC.Dependency] private readonly AtmosphereSystem _atmosphereSystem = default!; [Robust.Shared.IoC.Dependency] private readonly ChunkingSystem _chunkingSys = default!; - private readonly Dictionary>> _lastSentChunks = new(); + private readonly Dictionary>> _lastSentChunks = new(); // Oh look its more duplicated decal system code! private ObjectPool> _chunkIndexPool = @@ -286,12 +287,12 @@ public override void Update(float frameTime) // Now we'll go through each player, then through each chunk in range of that player checking if the player is still in range // If they are, check if they need the new data to send (i.e. if there's an overlay for the gas). // Afterwards we reset all the chunk data for the next time we tick. - var players = _playerManager.ServerSessions.Where(x => x.Status == SessionStatus.InGame).ToArray(); + var players = _playerManager.Sessions.Where(x => x.Status == SessionStatus.InGame).ToArray(); var opts = new ParallelOptions { MaxDegreeOfParallelism = _parMan.ParallelProcessCount }; Parallel.ForEach(players, opts, p => UpdatePlayer(p, curTick)); } - private void UpdatePlayer(IPlayerSession playerSession, GameTick curTick) + private void UpdatePlayer(ICommonSession playerSession, GameTick curTick) { var chunksInRange = _chunkingSys.GetChunksForSession(playerSession, ChunkSize, _chunkIndexPool, _chunkViewerPool); var previouslySent = _lastSentChunks[playerSession]; diff --git a/Content.Server/Atmos/Monitor/Systems/AirAlarmSystem.cs b/Content.Server/Atmos/Monitor/Systems/AirAlarmSystem.cs index 0ef49be46a..190ac9d5c9 100644 --- a/Content.Server/Atmos/Monitor/Systems/AirAlarmSystem.cs +++ b/Content.Server/Atmos/Monitor/Systems/AirAlarmSystem.cs @@ -15,11 +15,11 @@ using Content.Shared.Atmos.Monitor.Components; using Content.Shared.Atmos.Piping.Unary.Components; using Content.Shared.DeviceLinking; -using Content.Shared.DeviceNetwork; using Content.Shared.DeviceNetwork.Systems; using Content.Shared.Interaction; using Content.Shared.Wires; using Robust.Server.GameObjects; +using Robust.Shared.Player; namespace Content.Server.Atmos.Monitor.Systems; diff --git a/Content.Server/Atmos/Piping/Binary/EntitySystems/GasPressurePumpSystem.cs b/Content.Server/Atmos/Piping/Binary/EntitySystems/GasPressurePumpSystem.cs index e857b02b94..75167dfbc2 100644 --- a/Content.Server/Atmos/Piping/Binary/EntitySystems/GasPressurePumpSystem.cs +++ b/Content.Server/Atmos/Piping/Binary/EntitySystems/GasPressurePumpSystem.cs @@ -15,6 +15,7 @@ using Content.Shared.Popups; using JetBrains.Annotations; using Robust.Server.GameObjects; +using Robust.Shared.Player; namespace Content.Server.Atmos.Piping.Binary.EntitySystems { diff --git a/Content.Server/Atmos/Piping/Binary/EntitySystems/GasVolumePumpSystem.cs b/Content.Server/Atmos/Piping/Binary/EntitySystems/GasVolumePumpSystem.cs index 19ad8175aa..66bd28eaac 100644 --- a/Content.Server/Atmos/Piping/Binary/EntitySystems/GasVolumePumpSystem.cs +++ b/Content.Server/Atmos/Piping/Binary/EntitySystems/GasVolumePumpSystem.cs @@ -18,6 +18,7 @@ using Content.Shared.Popups; using JetBrains.Annotations; using Robust.Server.GameObjects; +using Robust.Shared.Player; namespace Content.Server.Atmos.Piping.Binary.EntitySystems { diff --git a/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasFilterSystem.cs b/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasFilterSystem.cs index 69a0178a01..7032e7fe0e 100644 --- a/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasFilterSystem.cs +++ b/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasFilterSystem.cs @@ -14,6 +14,7 @@ using Content.Shared.Popups; using JetBrains.Annotations; using Robust.Server.GameObjects; +using Robust.Shared.Player; namespace Content.Server.Atmos.Piping.Trinary.EntitySystems { diff --git a/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasMixerSystem.cs b/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasMixerSystem.cs index ce2213d535..f6ad51fb24 100644 --- a/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasMixerSystem.cs +++ b/Content.Server/Atmos/Piping/Trinary/EntitySystems/GasMixerSystem.cs @@ -14,6 +14,7 @@ using Content.Shared.Popups; using JetBrains.Annotations; using Robust.Server.GameObjects; +using Robust.Shared.Player; namespace Content.Server.Atmos.Piping.Trinary.EntitySystems { diff --git a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCanisterSystem.cs b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCanisterSystem.cs index 416e2e4f64..14a1e5e456 100644 --- a/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCanisterSystem.cs +++ b/Content.Server/Atmos/Piping/Unary/EntitySystems/GasCanisterSystem.cs @@ -17,6 +17,7 @@ using Content.Shared.Lock; using Robust.Server.GameObjects; using Robust.Shared.Containers; +using Robust.Shared.Player; namespace Content.Server.Atmos.Piping.Unary.EntitySystems; diff --git a/Content.Server/Body/Commands/AddHandCommand.cs b/Content.Server/Body/Commands/AddHandCommand.cs index 308295c06c..655d0c88f9 100644 --- a/Content.Server/Body/Commands/AddHandCommand.cs +++ b/Content.Server/Body/Commands/AddHandCommand.cs @@ -4,7 +4,6 @@ using Content.Shared.Administration; using Content.Shared.Body.Components; using Content.Shared.Body.Part; -using Robust.Server.Player; using Robust.Shared.Console; using Robust.Shared.Prototypes; using Robust.Shared.Random; @@ -27,7 +26,7 @@ sealed class AddHandCommand : IConsoleCommand public void Execute(IConsoleShell shell, string argStr, string[] args) { - var player = shell.Player as IPlayerSession; + var player = shell.Player; EntityUid entity; EntityUid hand; diff --git a/Content.Server/Body/Commands/AttachBodyPartCommand.cs b/Content.Server/Body/Commands/AttachBodyPartCommand.cs index 267b520808..24604b88b7 100644 --- a/Content.Server/Body/Commands/AttachBodyPartCommand.cs +++ b/Content.Server/Body/Commands/AttachBodyPartCommand.cs @@ -1,10 +1,8 @@ -using System.Linq; using Content.Server.Administration; using Content.Server.Body.Systems; using Content.Shared.Administration; using Content.Shared.Body.Components; using Content.Shared.Body.Part; -using Robust.Server.Player; using Robust.Shared.Console; namespace Content.Server.Body.Commands @@ -20,7 +18,7 @@ public sealed class AttachBodyPartCommand : IConsoleCommand public void Execute(IConsoleShell shell, string argStr, string[] args) { - var player = shell.Player as IPlayerSession; + var player = shell.Player; EntityUid bodyId; EntityUid? partUid; diff --git a/Content.Server/Body/Commands/DestroyMechanismCommand.cs b/Content.Server/Body/Commands/DestroyMechanismCommand.cs index 6ad0631150..3aa28f4072 100644 --- a/Content.Server/Body/Commands/DestroyMechanismCommand.cs +++ b/Content.Server/Body/Commands/DestroyMechanismCommand.cs @@ -2,7 +2,6 @@ using Content.Server.Body.Systems; using Content.Shared.Administration; using Content.Shared.Body.Components; -using Robust.Server.Player; using Robust.Shared.Console; using Robust.Shared.Random; @@ -17,7 +16,7 @@ sealed class DestroyMechanismCommand : IConsoleCommand public void Execute(IConsoleShell shell, string argStr, string[] args) { - var player = shell.Player as IPlayerSession; + var player = shell.Player; if (player == null) { shell.WriteLine("Only a player can run this command."); diff --git a/Content.Server/Body/Commands/RemoveHandCommand.cs b/Content.Server/Body/Commands/RemoveHandCommand.cs index 729db4bc44..4a2956ae7a 100644 --- a/Content.Server/Body/Commands/RemoveHandCommand.cs +++ b/Content.Server/Body/Commands/RemoveHandCommand.cs @@ -4,7 +4,6 @@ using Content.Shared.Administration; using Content.Shared.Body.Components; using Content.Shared.Body.Part; -using Robust.Server.Player; using Robust.Shared.Console; using Robust.Shared.Random; @@ -22,7 +21,7 @@ public sealed class RemoveHandCommand : IConsoleCommand public void Execute(IConsoleShell shell, string argStr, string[] args) { - var player = shell.Player as IPlayerSession; + var player = shell.Player; if (player == null) { shell.WriteLine("Only a player can run this command."); diff --git a/Content.Server/Body/Systems/BodySystem.cs b/Content.Server/Body/Systems/BodySystem.cs index f2f848c488..242b02d78c 100644 --- a/Content.Server/Body/Systems/BodySystem.cs +++ b/Content.Server/Body/Systems/BodySystem.cs @@ -116,7 +116,7 @@ public override HashSet GibBody(EntityUid bodyId, bool gibOrgans = fa if (!Resolve(bodyId, ref body, false)) return new HashSet(); - if (LifeStage(bodyId) >= EntityLifeStage.Terminating || EntityManager.IsQueuedForDeletion(bodyId)) + if (TerminatingOrDeleted(bodyId) || EntityManager.IsQueuedForDeletion(bodyId)) return new HashSet(); var xform = Transform(bodyId); diff --git a/Content.Server/Body/Systems/InternalsSystem.cs b/Content.Server/Body/Systems/InternalsSystem.cs index ec4faa345c..17a6544976 100644 --- a/Content.Server/Body/Systems/InternalsSystem.cs +++ b/Content.Server/Body/Systems/InternalsSystem.cs @@ -197,6 +197,14 @@ public bool TryConnectTank(Entity ent, EntityUid tankEntity) return true; } + public bool AreInternalsWorking(EntityUid uid, InternalsComponent? component = null) + { + if (!Resolve(uid, ref component, false)) + return false; + + return AreInternalsWorking(component); + } + public bool AreInternalsWorking(InternalsComponent component) { return TryComp(component.BreathToolEntity, out BreathToolComponent? breathTool) && diff --git a/Content.Server/Cargo/Systems/CargoSystem.Orders.cs b/Content.Server/Cargo/Systems/CargoSystem.Orders.cs index d9327b5150..f659357ad3 100644 --- a/Content.Server/Cargo/Systems/CargoSystem.Orders.cs +++ b/Content.Server/Cargo/Systems/CargoSystem.Orders.cs @@ -8,7 +8,7 @@ using Content.Shared.Cargo.Prototypes; using Content.Shared.Database; using Robust.Shared.Map; -using Robust.Shared.Players; +using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Utility; diff --git a/Content.Server/CartridgeLoader/CartridgeLoaderSystem.cs b/Content.Server/CartridgeLoader/CartridgeLoaderSystem.cs index 9f7acce4fd..02b2eee771 100644 --- a/Content.Server/CartridgeLoader/CartridgeLoaderSystem.cs +++ b/Content.Server/CartridgeLoader/CartridgeLoaderSystem.cs @@ -6,9 +6,9 @@ using Content.Shared.Interaction; using Robust.Server.Containers; using Robust.Server.GameObjects; -using Robust.Server.Player; using Robust.Shared.Containers; using Robust.Shared.Map; +using Robust.Shared.Player; namespace Content.Server.CartridgeLoader; @@ -98,7 +98,7 @@ public bool HasProgram( /// and use this method to update its state so the cartridge loaders state can be added to it. /// /// - public void UpdateUiState(EntityUid loaderUid, IPlayerSession? session, CartridgeLoaderComponent? loader) + public void UpdateUiState(EntityUid loaderUid, ICommonSession? session, CartridgeLoaderComponent? loader) { if (!Resolve(loaderUid, ref loader)) return; @@ -122,7 +122,7 @@ public void UpdateUiState(EntityUid loaderUid, IPlayerSession? session, Cartridg /// This method is called "UpdateCartridgeUiState" but cartridges and a programs are the same. A cartridge is just a program as a visible item. /// /// - public void UpdateCartridgeUiState(EntityUid loaderUid, BoundUserInterfaceState state, IPlayerSession? session = default!, CartridgeLoaderComponent? loader = default!) + public void UpdateCartridgeUiState(EntityUid loaderUid, BoundUserInterfaceState state, ICommonSession? session = default!, CartridgeLoaderComponent? loader = default!) { if (!Resolve(loaderUid, ref loader)) return; diff --git a/Content.Server/Chat/Commands/AdminChatCommand.cs b/Content.Server/Chat/Commands/AdminChatCommand.cs index 8aa95ffee1..979051e9d3 100644 --- a/Content.Server/Chat/Commands/AdminChatCommand.cs +++ b/Content.Server/Chat/Commands/AdminChatCommand.cs @@ -1,7 +1,6 @@ using Content.Server.Administration; using Content.Server.Chat.Managers; using Content.Shared.Administration; -using Robust.Server.Player; using Robust.Shared.Console; namespace Content.Server.Chat.Commands @@ -15,7 +14,7 @@ internal sealed class AdminChatCommand : IConsoleCommand public void Execute(IConsoleShell shell, string argStr, string[] args) { - var player = (IPlayerSession?) shell.Player; + var player = shell.Player; if (player == null) { diff --git a/Content.Server/Chat/Commands/LOOCCommand.cs b/Content.Server/Chat/Commands/LOOCCommand.cs index a897a0b2bf..9e16193fc3 100644 --- a/Content.Server/Chat/Commands/LOOCCommand.cs +++ b/Content.Server/Chat/Commands/LOOCCommand.cs @@ -1,6 +1,5 @@ using Content.Server.Chat.Systems; using Content.Shared.Administration; -using Robust.Server.Player; using Robust.Shared.Console; using Robust.Shared.Enums; @@ -15,7 +14,7 @@ internal sealed class LOOCCommand : IConsoleCommand public void Execute(IConsoleShell shell, string argStr, string[] args) { - if (shell.Player is not IPlayerSession player) + if (shell.Player is not { } player) { shell.WriteError("This command cannot be run from the server."); return; diff --git a/Content.Server/Chat/Commands/MeCommand.cs b/Content.Server/Chat/Commands/MeCommand.cs index 36f86cf4d6..e763d5656e 100644 --- a/Content.Server/Chat/Commands/MeCommand.cs +++ b/Content.Server/Chat/Commands/MeCommand.cs @@ -1,6 +1,5 @@ using Content.Server.Chat.Systems; using Content.Shared.Administration; -using Robust.Server.Player; using Robust.Shared.Console; using Robust.Shared.Enums; @@ -15,7 +14,7 @@ internal sealed class MeCommand : IConsoleCommand public void Execute(IConsoleShell shell, string argStr, string[] args) { - if (shell.Player is not IPlayerSession player) + if (shell.Player is not { } player) { shell.WriteError("This command cannot be run from the server."); return; diff --git a/Content.Server/Chat/Commands/OOCCommand.cs b/Content.Server/Chat/Commands/OOCCommand.cs index bef2024608..36f6303fbd 100644 --- a/Content.Server/Chat/Commands/OOCCommand.cs +++ b/Content.Server/Chat/Commands/OOCCommand.cs @@ -1,6 +1,5 @@ using Content.Server.Chat.Managers; using Content.Shared.Administration; -using Robust.Server.Player; using Robust.Shared.Console; namespace Content.Server.Chat.Commands @@ -14,7 +13,7 @@ internal sealed class OOCCommand : IConsoleCommand public void Execute(IConsoleShell shell, string argStr, string[] args) { - if (shell.Player is not IPlayerSession player) + if (shell.Player is not { } player) { shell.WriteError("This command cannot be run from the server."); return; diff --git a/Content.Server/Chat/Commands/SayCommand.cs b/Content.Server/Chat/Commands/SayCommand.cs index 7c2125d8c1..273f908c9a 100644 --- a/Content.Server/Chat/Commands/SayCommand.cs +++ b/Content.Server/Chat/Commands/SayCommand.cs @@ -1,6 +1,5 @@ using Content.Server.Chat.Systems; using Content.Shared.Administration; -using Robust.Server.Player; using Robust.Shared.Console; using Robust.Shared.Enums; @@ -15,7 +14,7 @@ internal sealed class SayCommand : IConsoleCommand public void Execute(IConsoleShell shell, string argStr, string[] args) { - if (shell.Player is not IPlayerSession player) + if (shell.Player is not { } player) { shell.WriteError("This command cannot be run from the server."); return; diff --git a/Content.Server/Chat/Commands/SuicideCommand.cs b/Content.Server/Chat/Commands/SuicideCommand.cs index 389ff039bf..c967ba78d7 100644 --- a/Content.Server/Chat/Commands/SuicideCommand.cs +++ b/Content.Server/Chat/Commands/SuicideCommand.cs @@ -1,7 +1,6 @@ using Content.Server.GameTicking; using Content.Shared.Administration; using Content.Shared.Mind; -using Robust.Server.Player; using Robust.Shared.Console; using Robust.Shared.Enums; @@ -18,7 +17,7 @@ internal sealed class SuicideCommand : IConsoleCommand public void Execute(IConsoleShell shell, string argStr, string[] args) { - if (shell.Player is not IPlayerSession player) + if (shell.Player is not { } player) { shell.WriteLine(Loc.GetString("shell-cannot-run-command-from-server")); return; diff --git a/Content.Server/Chat/Commands/WhisperCommand.cs b/Content.Server/Chat/Commands/WhisperCommand.cs index 41eba8b384..c88e2519ee 100644 --- a/Content.Server/Chat/Commands/WhisperCommand.cs +++ b/Content.Server/Chat/Commands/WhisperCommand.cs @@ -1,6 +1,5 @@ using Content.Server.Chat.Systems; using Content.Shared.Administration; -using Robust.Server.Player; using Robust.Shared.Console; using Robust.Shared.Enums; @@ -15,7 +14,7 @@ internal sealed class WhisperCommand : IConsoleCommand public void Execute(IConsoleShell shell, string argStr, string[] args) { - if (shell.Player is not IPlayerSession player) + if (shell.Player is not { } player) { shell.WriteError("This command cannot be run from the server."); return; diff --git a/Content.Server/Chat/Managers/ChatManager.cs b/Content.Server/Chat/Managers/ChatManager.cs index 88e143d24e..59a9d305bd 100644 --- a/Content.Server/Chat/Managers/ChatManager.cs +++ b/Content.Server/Chat/Managers/ChatManager.cs @@ -10,11 +10,9 @@ using Content.Shared.Chat; using Content.Shared.Database; using Content.Shared.Mind; -using Robust.Server.Player; using Robust.Shared.Configuration; using Robust.Shared.Network; using Robust.Shared.Player; -using Robust.Shared.Players; using Robust.Shared.Replays; using Robust.Shared.Utility; @@ -51,8 +49,8 @@ internal sealed class ChatManager : IChatManager private bool _oocEnabled = true; private bool _adminOocEnabled = true; - public Dictionary SenderKeys { get; } = new(); - public Dictionary> SenderEntities { get; } = new(); + public Dictionary SenderKeys { get; } = new(); + public Dictionary> SenderEntities { get; } = new(); public void Initialize() { @@ -79,7 +77,7 @@ private void OnAdminOocEnabledChanged(bool val) DispatchServerAnnouncement(Loc.GetString(val ? "chat-manager-admin-ooc-chat-enabled-message" : "chat-manager-admin-ooc-chat-disabled-message")); } - public void DeleteMessagesBy(IPlayerSession player) + public void DeleteMessagesBy(ICommonSession player) { var key = SenderKeys.GetValueOrDefault(player); var entities = SenderEntities.GetValueOrDefault(player) ?? new HashSet(); @@ -165,7 +163,7 @@ public void SendHookOOC(string sender, string message) /// The player sending the message. /// The message. /// The type of message. - public void TrySendOOCMessage(IPlayerSession player, string message, OOCChatType type) + public void TrySendOOCMessage(ICommonSession player, string message, OOCChatType type) { // Check if message exceeds the character limit if (message.Length > MaxMessageLength) @@ -189,7 +187,7 @@ public void TrySendOOCMessage(IPlayerSession player, string message, OOCChatType #region Private API - private void SendOOC(IPlayerSession player, string message) + private void SendOOC(ICommonSession player, string message) { if (_adminManager.IsAdmin(player)) { @@ -226,7 +224,7 @@ private void SendOOC(IPlayerSession player, string message) _adminLogger.Add(LogType.Chat, LogImpact.Low, $"OOC from {player:Player}: {message}"); } - private void SendAdminChat(IPlayerSession player, string message) + private void SendAdminChat(ICommonSession player, string message) { if (!_adminManager.IsAdmin(player)) { @@ -326,7 +324,7 @@ public void ChatMessageToAll(ChatChannel channel, string message, string wrapped } } - public bool MessageCharacterLimit(IPlayerSession? player, string message) + public bool MessageCharacterLimit(ICommonSession? player, string message) { var isOverLength = false; diff --git a/Content.Server/Chat/Managers/IChatManager.cs b/Content.Server/Chat/Managers/IChatManager.cs index 10103f011d..5317b3054e 100644 --- a/Content.Server/Chat/Managers/IChatManager.cs +++ b/Content.Server/Chat/Managers/IChatManager.cs @@ -1,8 +1,6 @@ using Content.Shared.Chat; -using Robust.Server.Player; using Robust.Shared.Network; using Robust.Shared.Player; -using Robust.Shared.Players; namespace Content.Server.Chat.Managers { @@ -12,12 +10,12 @@ public interface IChatManager /// Keys identifying messages sent by a specific player, used when sending /// /// - Dictionary SenderKeys { get; } + Dictionary SenderKeys { get; } /// /// Tracks which entities a player was attached to while sending messages. /// - Dictionary> SenderEntities { get; } + Dictionary> SenderEntities { get; } void Initialize(); @@ -30,7 +28,7 @@ public interface IChatManager void DispatchServerMessage(ICommonSession player, string message, bool suppressLog = false); - void TrySendOOCMessage(IPlayerSession player, string message, OOCChatType type); + void TrySendOOCMessage(ICommonSession player, string message, OOCChatType type); void SendHookOOC(string sender, string message); void SendAdminAnnouncement(string message); @@ -47,8 +45,8 @@ void ChatMessageToMany(ChatChannel channel, string message, string wrappedMessag void ChatMessageToAll(ChatChannel channel, string message, string wrappedMessage, EntityUid source, bool hideChat, bool recordReplay, Color? colorOverride = null, string? audioPath = null, float audioVolume = 0, int? senderKey = null); - bool MessageCharacterLimit(IPlayerSession player, string message); + bool MessageCharacterLimit(ICommonSession player, string message); - void DeleteMessagesBy(IPlayerSession player); + void DeleteMessagesBy(ICommonSession player); } } diff --git a/Content.Server/Chat/Systems/ChatSystem.cs b/Content.Server/Chat/Systems/ChatSystem.cs index 91739d769d..b2eb668641 100644 --- a/Content.Server/Chat/Systems/ChatSystem.cs +++ b/Content.Server/Chat/Systems/ChatSystem.cs @@ -19,6 +19,7 @@ using Content.Shared.IdentityManagement; using Content.Shared.Interaction; using Content.Shared.Mobs.Systems; +using Content.Shared.Players; using Content.Shared.Radio; using Robust.Server.GameObjects; using Robust.Server.Player; @@ -27,7 +28,6 @@ using Robust.Shared.Console; using Robust.Shared.Network; using Robust.Shared.Player; -using Robust.Shared.Players; using Robust.Shared.Prototypes; using Robust.Shared.Random; using Robust.Shared.Replays; @@ -151,7 +151,7 @@ public void TrySendInGameICMessage( InGameICChatType desiredType, bool hideChat, bool hideLog = false, IConsoleShell? shell = null, - IPlayerSession? player = null, string? nameOverride = null, + ICommonSession? player = null, string? nameOverride = null, bool checkRadioPrefix = true, bool ignoreActionBlocker = false) { @@ -176,7 +176,7 @@ public void TrySendInGameICMessage( ChatTransmitRange range, bool hideLog = false, IConsoleShell? shell = null, - IPlayerSession? player = null, + ICommonSession? player = null, string? nameOverride = null, bool checkRadioPrefix = true, bool ignoreActionBlocker = false @@ -261,7 +261,7 @@ public void TrySendInGameOOCMessage( InGameOOCChatType type, bool hideChat, IConsoleShell? shell = null, - IPlayerSession? player = null + ICommonSession? player = null ) { if (!CanSendInGame(message, shell, player)) @@ -555,7 +555,7 @@ private void SendEntityEmote( } // ReSharper disable once InconsistentNaming - private void SendLOOC(EntityUid source, IPlayerSession player, string message, bool hideChat) + private void SendLOOC(EntityUid source, ICommonSession player, string message, bool hideChat) { var name = FormattedMessage.EscapeText(Identity.Name(source, EntityManager)); @@ -579,7 +579,7 @@ private void SendLOOC(EntityUid source, IPlayerSession player, string message, b _adminLogger.Add(LogType.Chat, LogImpact.Low, $"LOOC from {player:Player}: {message}"); } - private void SendDeadChat(EntityUid source, IPlayerSession player, string message, bool hideChat) + private void SendDeadChat(EntityUid source, ICommonSession player, string message, bool hideChat) { var clients = GetDeadChatClients(); var playerName = Name(source); @@ -636,13 +636,13 @@ private MessageRangeCheckResult MessageRangeCheck(ICommonSession session, ICChat initialResult = MessageRangeCheckResult.Full; break; case ChatTransmitRange.GhostRangeLimit: - initialResult = (data.Observer && data.Range < 0 && !_adminManager.IsAdmin((IPlayerSession) session)) ? MessageRangeCheckResult.HideChat : MessageRangeCheckResult.Full; + initialResult = (data.Observer && data.Range < 0 && !_adminManager.IsAdmin(session)) ? MessageRangeCheckResult.HideChat : MessageRangeCheckResult.Full; break; case ChatTransmitRange.HideChat: initialResult = MessageRangeCheckResult.HideChat; break; case ChatTransmitRange.NoGhosts: - initialResult = (data.Observer && !_adminManager.IsAdmin((IPlayerSession) session)) ? MessageRangeCheckResult.Disallowed : MessageRangeCheckResult.Full; + initialResult = (data.Observer && !_adminManager.IsAdmin(session)) ? MessageRangeCheckResult.Disallowed : MessageRangeCheckResult.Full; break; } var insistHideChat = data.HideChatOverride ?? false; @@ -674,7 +674,7 @@ private void SendInVoiceRange(ChatChannel channel, string message, string wrappe /// /// Returns true if the given player is 'allowed' to send the given message, false otherwise. /// - private bool CanSendInGame(string message, IConsoleShell? shell = null, IPlayerSession? player = null) + private bool CanSendInGame(string message, IConsoleShell? shell = null, ICommonSession? player = null) { // Non-players don't have to worry about these restrictions. if (player == null) @@ -702,7 +702,7 @@ private string SanitizeInGameICMessage(EntityUid source, string message, out str { var newMessage = message.Trim(); newMessage = SanitizeMessageReplaceWords(newMessage); - + if (capitalize) newMessage = SanitizeMessageCapital(newMessage); if (capitalizeTheWordI) diff --git a/Content.Server/Chemistry/Components/SmokeComponent.cs b/Content.Server/Chemistry/Components/SmokeComponent.cs deleted file mode 100644 index 133ad41f13..0000000000 --- a/Content.Server/Chemistry/Components/SmokeComponent.cs +++ /dev/null @@ -1,26 +0,0 @@ -using Content.Shared.Fluids.Components; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; - -namespace Content.Server.Chemistry.Components; - -/// -/// Stores solution on an anchored entity that has touch and ingestion reactions -/// to entities that collide with it. Similar to -/// -[RegisterComponent] -public sealed partial class SmokeComponent : Component -{ - public const string SolutionName = "solutionArea"; - - [DataField("nextReact", customTypeSerializer:typeof(TimeOffsetSerializer))] - public TimeSpan NextReact = TimeSpan.Zero; - - [DataField("spreadAmount")] - public int SpreadAmount = 0; - - /// - /// Have we reacted with our tile yet? - /// - [DataField("reactedTile")] - public bool ReactedTile = false; -} diff --git a/Content.Server/Chemistry/EntitySystems/ChemistryGuideDataSystem.cs b/Content.Server/Chemistry/EntitySystems/ChemistryGuideDataSystem.cs index 8cbdd82f07..7485c0e901 100644 --- a/Content.Server/Chemistry/EntitySystems/ChemistryGuideDataSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/ChemistryGuideDataSystem.cs @@ -2,6 +2,7 @@ using Content.Shared.Chemistry.Reagent; using Robust.Server.Player; using Robust.Shared.Enums; +using Robust.Shared.Player; using Robust.Shared.Prototypes; namespace Content.Server.Chemistry.EntitySystems; diff --git a/Content.Server/Chemistry/EntitySystems/ChemistrySystem.Injector.cs b/Content.Server/Chemistry/EntitySystems/ChemistrySystem.Injector.cs index 708651d5cd..6b085d133e 100644 --- a/Content.Server/Chemistry/EntitySystems/ChemistrySystem.Injector.cs +++ b/Content.Server/Chemistry/EntitySystems/ChemistrySystem.Injector.cs @@ -1,6 +1,5 @@ using Content.Server.Body.Components; using Content.Server.Chemistry.Components; -using Content.Shared.Chemistry; using Content.Shared.Chemistry.Components; using Content.Shared.Chemistry.Components.SolutionManager; using Content.Shared.Chemistry.EntitySystems; @@ -15,8 +14,7 @@ using Content.Shared.Mobs.Components; using Content.Shared.Verbs; using Content.Shared.Stacks; -using Robust.Server.GameObjects; -using Content.Shared.Popups; +using Robust.Shared.Player; namespace Content.Server.Chemistry.EntitySystems; diff --git a/Content.Server/Chemistry/EntitySystems/SolutionSpikableSystem.cs b/Content.Server/Chemistry/EntitySystems/SolutionSpikableSystem.cs index e27063b1b5..04aa6546a9 100644 --- a/Content.Server/Chemistry/EntitySystems/SolutionSpikableSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/SolutionSpikableSystem.cs @@ -61,35 +61,11 @@ private void TrySpike(EntityUid source, EntityUid target, EntityUid user, Refill return; } - if (_solutionSystem.TryMixAndOverflow(target, - targetSolution, - sourceSolution, - targetSolution.MaxVolume, - out var overflow)) - { - if (overflow.Volume > 0) - { - RaiseLocalEvent(target, new SolutionSpikeOverflowEvent(overflow)); - } - - _popupSystem.PopupEntity(Loc.GetString(spikableSource.Popup, ("spiked-entity", target), ("spike-entity", source)), user, user); - - sourceSolution.RemoveAllSolution(); - - _triggerSystem.Trigger(source, user); - } - } -} - -public sealed class SolutionSpikeOverflowEvent : HandledEntityEventArgs -{ - /// - /// The solution that's been overflowed from the spike. - /// - public Solution Overflow { get; } + if (!_solutionSystem.ForceAddSolution(target, targetSolution, sourceSolution)) + return; - public SolutionSpikeOverflowEvent(Solution overflow) - { - Overflow = overflow; + _popupSystem.PopupEntity(Loc.GetString(spikableSource.Popup, ("spiked-entity", target), ("spike-entity", source)), user, user); + sourceSolution.RemoveAllSolution(); + _triggerSystem.Trigger(source, user); } } diff --git a/Content.Server/Chemistry/EntitySystems/SolutionTransferSystem.cs b/Content.Server/Chemistry/EntitySystems/SolutionTransferSystem.cs index 99f8c1a517..d2666417cf 100644 --- a/Content.Server/Chemistry/EntitySystems/SolutionTransferSystem.cs +++ b/Content.Server/Chemistry/EntitySystems/SolutionTransferSystem.cs @@ -4,12 +4,12 @@ using Robust.Server.GameObjects; using Content.Shared.Chemistry; using Content.Shared.Chemistry.Components; -using Content.Shared.Chemistry.Components.SolutionManager; using Content.Shared.Chemistry.EntitySystems; using Content.Shared.Database; using Content.Shared.FixedPoint; using Content.Shared.Interaction; using Content.Shared.Popups; +using Robust.Shared.Player; namespace Content.Server.Chemistry.EntitySystems { diff --git a/Content.Server/Chemistry/ReactionEffects/AreaReactionEffect.cs b/Content.Server/Chemistry/ReactionEffects/AreaReactionEffect.cs index e6eaab8a59..291a654422 100644 --- a/Content.Server/Chemistry/ReactionEffects/AreaReactionEffect.cs +++ b/Content.Server/Chemistry/ReactionEffects/AreaReactionEffect.cs @@ -1,4 +1,3 @@ -using Content.Server.Chemistry.Components; using Content.Server.Fluids.EntitySystems; using Content.Shared.Audio; using Content.Shared.Chemistry.EntitySystems; @@ -10,7 +9,6 @@ using JetBrains.Annotations; using Robust.Shared.Audio; using Robust.Shared.Map; -using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; @@ -71,18 +69,10 @@ public override void Effect(ReagentEffectArgs args) var coords = grid.MapToGrid(transform.MapPosition); var ent = args.EntityManager.SpawnEntity(_prototypeId, coords.SnapToGrid()); - if (!args.EntityManager.TryGetComponent(ent, out var smokeComponent)) - { - Logger.Error("Couldn't get AreaEffectComponent from " + _prototypeId); - args.EntityManager.QueueDeleteEntity(ent); - return; - } - var smoke = args.EntityManager.System(); - smokeComponent.SpreadAmount = spreadAmount; - smoke.Start(ent, smokeComponent, splitSolution, _duration); + smoke.StartSmoke(ent, splitSolution, _duration, spreadAmount); - SoundSystem.Play(_sound.GetSound(), Filter.Pvs(args.SolutionEntity), args.SolutionEntity, AudioHelpers.WithVariation(0.125f)); + args.EntityManager.System().PlayPvs(_sound, args.SolutionEntity, AudioHelpers.WithVariation(0.125f)); } } } diff --git a/Content.Server/Chunking/ChunkingSystem.cs b/Content.Server/Chunking/ChunkingSystem.cs index 4ef44d1678..6f44c43be8 100644 --- a/Content.Server/Chunking/ChunkingSystem.cs +++ b/Content.Server/Chunking/ChunkingSystem.cs @@ -1,12 +1,12 @@ using System.Linq; using Content.Shared.Decals; using Microsoft.Extensions.ObjectPool; -using Robust.Server.Player; using Robust.Shared; using Robust.Shared.Configuration; using Robust.Shared.Enums; using Robust.Shared.Map; using Robust.Shared.Map.Components; +using Robust.Shared.Player; using Robust.Shared.Utility; namespace Content.Shared.Chunking; @@ -41,7 +41,7 @@ public override void Shutdown() private void OnPvsRangeChanged(float value) => _baseViewBounds = Box2.UnitCentered.Scale(value); public Dictionary> GetChunksForSession( - IPlayerSession session, + ICommonSession session, int chunkSize, ObjectPool> indexPool, ObjectPool>> viewerPool, @@ -52,7 +52,7 @@ public Dictionary> GetChunksForSession( return chunks; } - private HashSet GetSessionViewers(IPlayerSession session) + private HashSet GetSessionViewers(ICommonSession session) { var viewers = new HashSet(); if (session.Status != SessionStatus.InGame || session.AttachedEntity is null) diff --git a/Content.Server/Cloning/CloningSystem.cs b/Content.Server/Cloning/CloningSystem.cs index 28e9c8eea5..a16c47dbcd 100644 --- a/Content.Server/Cloning/CloningSystem.cs +++ b/Content.Server/Cloning/CloningSystem.cs @@ -377,22 +377,4 @@ public void Reset(RoundRestartCleanupEvent ev) ClonesWaitingForMind.Clear(); } } - - /// - /// Raised after a new mob got spawned when cloning a humanoid - /// - [ByRefEvent] - public struct CloningEvent - { - public bool NameHandled = false; - - public readonly EntityUid Source; - public readonly EntityUid Target; - - public CloningEvent(EntityUid source, EntityUid target) - { - Source = source; - Target = target; - } - } } diff --git a/Content.Server/Cloning/Components/CloningPodComponent.cs b/Content.Server/Cloning/Components/CloningPodComponent.cs deleted file mode 100644 index e2c3f46978..0000000000 --- a/Content.Server/Cloning/Components/CloningPodComponent.cs +++ /dev/null @@ -1,107 +0,0 @@ -using Content.Shared.Cloning; -using Content.Shared.Construction.Prototypes; -using Content.Shared.Materials; -using Robust.Shared.Audio; -using Robust.Shared.Containers; -using Robust.Shared.Prototypes; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; - -namespace Content.Server.Cloning.Components -{ - [RegisterComponent] - public sealed partial class CloningPodComponent : Component - { - public const string PodPort = "CloningPodReceiver"; - - [ViewVariables] - public ContainerSlot BodyContainer = default!; - - /// - /// How long the cloning has been going on for. - /// - [ViewVariables] - public float CloningProgress = 0; - - [ViewVariables] - public int UsedBiomass = 70; - - [ViewVariables] - public bool FailedClone = false; - - /// - /// The material that is used to clone entities. - /// - [DataField("requiredMaterial", customTypeSerializer: typeof(PrototypeIdSerializer)), ViewVariables(VVAccess.ReadWrite)] - public string RequiredMaterial = "Biomass"; - - /// - /// The base amount of time it takes to clone a body - /// - [DataField("baseCloningTime")] - public float BaseCloningTime = 30f; - - /// - /// The multiplier for cloning duration - /// - [DataField("partRatingSpeedMultiplier")] - public float PartRatingSpeedMultiplier = 0.75f; - - /// - /// The machine part that affects cloning speed - /// - [DataField("machinePartCloningSpeed", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string MachinePartCloningSpeed = "Manipulator"; - - /// - /// The current amount of time it takes to clone a body - /// - [ViewVariables(VVAccess.ReadWrite)] - public float CloningTime = 30f; - - /// - /// The mob to spawn on emag - /// - [ViewVariables(VVAccess.ReadWrite), DataField("mobSpawnId", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string MobSpawnId = "MobAbomination"; - - /// - /// Emag sound effects. - /// - [DataField("sparkSound")] - public SoundSpecifier SparkSound = new SoundCollectionSpecifier("sparks") - { - Params = AudioParams.Default.WithVolume(8), - }; - - [DataField("screamSound")] - public SoundSpecifier ScreamSound = new SoundCollectionSpecifier("ZombieScreams") - { - Params = AudioParams.Default.WithVolume(4), - }; - - /// - /// The machine part that affects how much biomass is needed to clone a body. - /// - [DataField("partRatingMaterialMultiplier")] - public float PartRatingMaterialMultiplier = 0.85f; - - /// - /// The current multiplier on the body weight, which determines the - /// amount of biomass needed to clone. - /// - [ViewVariables(VVAccess.ReadWrite)] - public float BiomassRequirementMultiplier = 1; - - /// - /// The machine part that decreases the amount of material needed for cloning - /// - [DataField("machinePartMaterialUse", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string MachinePartMaterialUse = "MatterBin"; - - [ViewVariables(VVAccess.ReadWrite)] - public CloningPodStatus Status; - - [ViewVariables] - public EntityUid? ConnectedConsole; - } -} diff --git a/Content.Server/Clothing/Systems/ChameleonClothingSystem.cs b/Content.Server/Clothing/Systems/ChameleonClothingSystem.cs index 7dc3b8489d..a087ebdd49 100644 --- a/Content.Server/Clothing/Systems/ChameleonClothingSystem.cs +++ b/Content.Server/Clothing/Systems/ChameleonClothingSystem.cs @@ -5,6 +5,7 @@ using Content.Shared.Prototypes; using Content.Shared.Verbs; using Robust.Server.GameObjects; +using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Utility; diff --git a/Content.Server/Commands/CommandUtils.cs b/Content.Server/Commands/CommandUtils.cs index 11adaec9a2..172f3324e3 100644 --- a/Content.Server/Commands/CommandUtils.cs +++ b/Content.Server/Commands/CommandUtils.cs @@ -3,6 +3,7 @@ using Robust.Server.Player; using Robust.Shared.Console; using Robust.Shared.Network; +using Robust.Shared.Player; namespace Content.Server.Commands { @@ -16,7 +17,7 @@ public static class CommandUtils /// sending a failure to the performer if unable to. /// public static bool TryGetSessionByUsernameOrId(IConsoleShell shell, - string usernameOrId, IPlayerSession performer, [NotNullWhen(true)] out IPlayerSession? session) + string usernameOrId, ICommonSession performer, [NotNullWhen(true)] out ICommonSession? session) { var plyMgr = IoCManager.Resolve(); if (plyMgr.TryGetSessionByUsername(usernameOrId, out session)) return true; @@ -36,7 +37,7 @@ public static bool TryGetSessionByUsernameOrId(IConsoleShell shell, /// sending a failure to the performer if unable to. /// public static bool TryGetAttachedEntityByUsernameOrId(IConsoleShell shell, - string usernameOrId, IPlayerSession performer, out EntityUid attachedEntity) + string usernameOrId, ICommonSession performer, out EntityUid attachedEntity) { attachedEntity = default; if (!TryGetSessionByUsernameOrId(shell, usernameOrId, performer, out var session)) return false; @@ -67,7 +68,7 @@ public static string SubstituteEntityDetails(IConsoleShell shell, EntityUid ent, transform.LocalPosition.Y.ToString(CultureInfo.InvariantCulture)); ruleString = ruleString.Replace("$NAME", entMan.GetComponent(ent).EntityName); - if (shell.Player is IPlayerSession player) + if (shell.Player is { } player) { if (player.AttachedEntity is {Valid: true} p) { diff --git a/Content.Server/Configurable/ConfigurationSystem.cs b/Content.Server/Configurable/ConfigurationSystem.cs index c134c1a87d..eb31149eca 100644 --- a/Content.Server/Configurable/ConfigurationSystem.cs +++ b/Content.Server/Configurable/ConfigurationSystem.cs @@ -3,6 +3,7 @@ using Content.Shared.Tools.Components; using Robust.Server.GameObjects; using Robust.Shared.Containers; +using Robust.Shared.Player; using static Content.Shared.Configurable.ConfigurationComponent; namespace Content.Server.Configurable; diff --git a/Content.Server/Construction/Commands/FixRotationsCommand.cs b/Content.Server/Construction/Commands/FixRotationsCommand.cs index d23fa0a31b..bdbfaf170d 100644 --- a/Content.Server/Construction/Commands/FixRotationsCommand.cs +++ b/Content.Server/Construction/Commands/FixRotationsCommand.cs @@ -3,7 +3,6 @@ using Content.Shared.Administration; using Content.Shared.Construction; using Content.Shared.Tag; -using Robust.Server.Player; using Robust.Shared.Console; using Robust.Shared.Map.Components; @@ -21,7 +20,7 @@ public sealed class FixRotationsCommand : IConsoleCommand public void Execute(IConsoleShell shell, string argsOther, string[] args) { - var player = shell.Player as IPlayerSession; + var player = shell.Player; EntityUid? gridId; var xformQuery = _entManager.GetEntityQuery(); diff --git a/Content.Server/Construction/Commands/TileReplaceCommand.cs b/Content.Server/Construction/Commands/TileReplaceCommand.cs index ed1fba2424..f63fd4c13e 100644 --- a/Content.Server/Construction/Commands/TileReplaceCommand.cs +++ b/Content.Server/Construction/Commands/TileReplaceCommand.cs @@ -1,6 +1,5 @@ using Content.Server.Administration; using Content.Shared.Administration; -using Robust.Server.Player; using Robust.Shared.Console; using Robust.Shared.Map; using Robust.Shared.Map.Components; @@ -20,7 +19,7 @@ sealed class TileReplaceCommand : IConsoleCommand public void Execute(IConsoleShell shell, string argStr, string[] args) { - var player = shell.Player as IPlayerSession; + var player = shell.Player; EntityUid? gridId; string tileIdA; string tileIdB; diff --git a/Content.Server/Construction/Commands/TileWallsCommand.cs b/Content.Server/Construction/Commands/TileWallsCommand.cs index 55389e41cc..731d4da7f8 100644 --- a/Content.Server/Construction/Commands/TileWallsCommand.cs +++ b/Content.Server/Construction/Commands/TileWallsCommand.cs @@ -2,10 +2,9 @@ using Content.Shared.Administration; using Content.Shared.Maps; using Content.Shared.Tag; -using Robust.Server.GameObjects; -using Robust.Server.Player; using Robust.Shared.Console; using Robust.Shared.Map; +using Robust.Server.GameObjects; using Robust.Shared.Map.Components; namespace Content.Server.Construction.Commands @@ -29,7 +28,7 @@ sealed class TileWallsCommand : IConsoleCommand public void Execute(IConsoleShell shell, string argStr, string[] args) { - var player = shell.Player as IPlayerSession; + var player = shell.Player; EntityUid? gridId; switch (args.Length) diff --git a/Content.Server/Construction/ConstructionSystem.Initial.cs b/Content.Server/Construction/ConstructionSystem.Initial.cs index e74edb5da2..21978f2d0c 100644 --- a/Content.Server/Construction/ConstructionSystem.Initial.cs +++ b/Content.Server/Construction/ConstructionSystem.Initial.cs @@ -16,7 +16,7 @@ using Content.Shared.Inventory; using Content.Shared.Storage; using Robust.Shared.Containers; -using Robust.Shared.Players; +using Robust.Shared.Player; using Robust.Shared.Timing; namespace Content.Server.Construction diff --git a/Content.Server/Crayon/CrayonSystem.cs b/Content.Server/Crayon/CrayonSystem.cs index d225df2dae..16385d4d7e 100644 --- a/Content.Server/Crayon/CrayonSystem.cs +++ b/Content.Server/Crayon/CrayonSystem.cs @@ -12,8 +12,8 @@ using Robust.Server.GameObjects; using Robust.Shared.Audio; using Robust.Shared.GameStates; +using Robust.Shared.Player; using Robust.Shared.Prototypes; -using Robust.Shared.Random; namespace Content.Server.Crayon; diff --git a/Content.Server/CrewManifest/CrewManifestSystem.cs b/Content.Server/CrewManifest/CrewManifestSystem.cs index aed0575324..4c4f17f61d 100644 --- a/Content.Server/CrewManifest/CrewManifestSystem.cs +++ b/Content.Server/CrewManifest/CrewManifestSystem.cs @@ -10,10 +10,9 @@ using Content.Shared.CrewManifest; using Content.Shared.GameTicking; using Content.Shared.StationRecords; -using Robust.Server.Player; using Robust.Shared.Configuration; using Robust.Shared.Console; -using Robust.Shared.Players; +using Robust.Shared.Player; namespace Content.Server.CrewManifest; @@ -60,7 +59,7 @@ private void OnRoundRestart(RoundRestartCleanupEvent ev) private void OnRequestCrewManifest(RequestCrewManifestMessage message, EntitySessionEventArgs args) { - if (args.SenderSession is not IPlayerSession sessionCast + if (args.SenderSession is not { } sessionCast || !_configManager.GetCVar(CCVars.CrewManifestWithoutEntity)) { return; @@ -93,12 +92,12 @@ private void OnRecordRemoved(RecordRemovedEvent ev) private void OnBoundUiClose(EntityUid uid, CrewManifestViewerComponent component, BoundUIClosedEvent ev) { var owningStation = _stationSystem.GetOwningStation(uid); - if (owningStation == null || ev.Session is not IPlayerSession sessionCast) + if (owningStation == null || ev.Session is not { } session) { return; } - CloseEui(owningStation.Value, sessionCast, uid); + CloseEui(owningStation.Value, session, uid); } /// @@ -126,7 +125,7 @@ private void UpdateEuis(EntityUid station) private void OpenEuiFromBui(EntityUid uid, CrewManifestViewerComponent component, CrewManifestOpenUiMessage msg) { var owningStation = _stationSystem.GetOwningStation(uid); - if (owningStation == null || msg.Session is not IPlayerSession sessionCast) + if (owningStation == null || msg.Session is not { } session) { return; } @@ -136,7 +135,7 @@ private void OpenEuiFromBui(EntityUid uid, CrewManifestViewerComponent component return; } - OpenEui(owningStation.Value, sessionCast, uid); + OpenEui(owningStation.Value, session, uid); } /// @@ -145,7 +144,7 @@ private void OpenEuiFromBui(EntityUid uid, CrewManifestViewerComponent component /// Station that we're displaying the crew manifest for. /// The player's session. /// If this EUI should be 'owned' by an entity. - public void OpenEui(EntityUid station, IPlayerSession session, EntityUid? owner = null) + public void OpenEui(EntityUid station, ICommonSession session, EntityUid? owner = null) { if (!HasComp(station)) { @@ -252,7 +251,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - if (shell.Player == null || shell.Player is not IPlayerSession session) + if (shell.Player == null || shell.Player is not { } session) { shell.WriteLine("You must run this from a client."); return; diff --git a/Content.Server/Damage/Commands/GodModeCommand.cs b/Content.Server/Damage/Commands/GodModeCommand.cs index 92a0e53f0f..866737f17a 100644 --- a/Content.Server/Damage/Commands/GodModeCommand.cs +++ b/Content.Server/Damage/Commands/GodModeCommand.cs @@ -1,8 +1,6 @@ using Content.Server.Administration; -using Content.Server.Damage.Systems; using Content.Shared.Administration; using Content.Shared.Damage.Systems; -using Robust.Server.Player; using Robust.Shared.Console; namespace Content.Server.Damage.Commands @@ -18,7 +16,7 @@ public sealed class GodModeCommand : IConsoleCommand public void Execute(IConsoleShell shell, string argStr, string[] args) { - var player = shell.Player as IPlayerSession; + var player = shell.Player; EntityUid entity; switch (args.Length) diff --git a/Content.Server/Damage/ForceSay/DamageForceSaySystem.cs b/Content.Server/Damage/ForceSay/DamageForceSaySystem.cs index 3d3346403a..5bc30cce5d 100644 --- a/Content.Server/Damage/ForceSay/DamageForceSaySystem.cs +++ b/Content.Server/Damage/ForceSay/DamageForceSaySystem.cs @@ -4,9 +4,7 @@ using Content.Shared.Mobs; using Content.Shared.Mobs.Systems; using Content.Shared.Stunnable; -using Robust.Server.GameObjects; -using Robust.Server.Player; -using Robust.Shared.Players; +using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Random; using Robust.Shared.Timing; diff --git a/Content.Server/Database/UserDbDataManager.cs b/Content.Server/Database/UserDbDataManager.cs index f2c506240b..f8b1611fd5 100644 --- a/Content.Server/Database/UserDbDataManager.cs +++ b/Content.Server/Database/UserDbDataManager.cs @@ -2,8 +2,8 @@ using System.Threading.Tasks; using Content.Server.Players.PlayTimeTracking; using Content.Server.Preferences.Managers; -using Robust.Server.Player; using Robust.Shared.Network; +using Robust.Shared.Player; using Robust.Shared.Utility; namespace Content.Server.Database; @@ -25,7 +25,7 @@ public sealed class UserDbDataManager // TODO: Ideally connected/disconnected would be subscribed to IPlayerManager directly, // but this runs into ordering issues with game ticker. - public void ClientConnected(IPlayerSession session) + public void ClientConnected(ICommonSession session) { DebugTools.Assert(!_users.ContainsKey(session.UserId), "We should not have any cached data on client connect."); @@ -36,7 +36,7 @@ public void ClientConnected(IPlayerSession session) _users.Add(session.UserId, data); } - public void ClientDisconnected(IPlayerSession session) + public void ClientDisconnected(ICommonSession session) { _users.Remove(session.UserId, out var data); if (data == null) @@ -49,24 +49,24 @@ public void ClientDisconnected(IPlayerSession session) _playTimeTracking.ClientDisconnected(session); } - private async Task Load(IPlayerSession session, CancellationToken cancel) + private async Task Load(ICommonSession session, CancellationToken cancel) { await Task.WhenAll( _prefs.LoadData(session, cancel), _playTimeTracking.LoadData(session, cancel)); } - public Task WaitLoadComplete(IPlayerSession session) + public Task WaitLoadComplete(ICommonSession session) { return _users[session.UserId].Task; } - public bool IsLoadComplete(IPlayerSession session) + public bool IsLoadComplete(ICommonSession session) { return GetLoadTask(session).IsCompleted; } - public Task GetLoadTask(IPlayerSession session) + public Task GetLoadTask(ICommonSession session) { return _users[session.UserId].Task; } diff --git a/Content.Server/Decals/DecalSystem.cs b/Content.Server/Decals/DecalSystem.cs index ed281e05ba..ce2e0711e7 100644 --- a/Content.Server/Decals/DecalSystem.cs +++ b/Content.Server/Decals/DecalSystem.cs @@ -16,6 +16,7 @@ using Robust.Shared.Enums; using Robust.Shared.Map; using Robust.Shared.Map.Components; +using Robust.Shared.Player; using Robust.Shared.Threading; using Robust.Shared.Timing; using Robust.Shared.Utility; @@ -36,7 +37,7 @@ public sealed class DecalSystem : SharedDecalSystem [Dependency] private readonly MapSystem _mapSystem = default!; private readonly Dictionary> _dirtyChunks = new(); - private readonly Dictionary>> _previousSentChunks = new(); + private readonly Dictionary>> _previousSentChunks = new(); private static readonly Vector2 _boundsMinExpansion = new(0.01f, 0.01f); private static readonly Vector2 _boundsMaxExpansion = new(1.01f, 1.01f); @@ -197,7 +198,7 @@ private void OnPlayerStatusChanged(object? sender, SessionStatusEventArgs e) private void OnDecalPlacementRequest(RequestDecalPlacementEvent ev, EntitySessionEventArgs eventArgs) { - if (eventArgs.SenderSession is not IPlayerSession session) + if (eventArgs.SenderSession is not { } session) return; // bad @@ -226,7 +227,7 @@ private void OnDecalPlacementRequest(RequestDecalPlacementEvent ev, EntitySessio private void OnDecalRemovalRequest(RequestDecalRemovalEvent ev, EntitySessionEventArgs eventArgs) { - if (eventArgs.SenderSession is not IPlayerSession session) + if (eventArgs.SenderSession is not { } session) return; // bad @@ -427,7 +428,7 @@ public override void Update(float frameTime) if (PvsEnabled) { - var players = _playerManager.ServerSessions.Where(x => x.Status == SessionStatus.InGame).ToArray(); + var players = _playerManager.Sessions.Where(x => x.Status == SessionStatus.InGame).ToArray(); var opts = new ParallelOptions { MaxDegreeOfParallelism = _parMan.ParallelProcessCount }; Parallel.ForEach(players, opts, UpdatePlayer); } @@ -435,7 +436,7 @@ public override void Update(float frameTime) _dirtyChunks.Clear(); } - public void UpdatePlayer(IPlayerSession player) + public void UpdatePlayer(ICommonSession player) { var chunksInRange = _chunking.GetChunksForSession(player, ChunkSize, _chunkIndexPool, _chunkViewerPool); var staleChunks = _chunkViewerPool.Get(); @@ -530,7 +531,7 @@ private void ReturnToPool(Dictionary> chunks) } private void SendChunkUpdates( - IPlayerSession session, + ICommonSession session, Dictionary> updatedChunks, Dictionary> staleChunks) { diff --git a/Content.Server/DeltaV/Administration/Commands/LoadCharacter.cs b/Content.Server/DeltaV/Administration/Commands/LoadCharacter.cs index 1782028f71..425078bcc7 100644 --- a/Content.Server/DeltaV/Administration/Commands/LoadCharacter.cs +++ b/Content.Server/DeltaV/Administration/Commands/LoadCharacter.cs @@ -7,10 +7,12 @@ using Content.Shared.Administration; using Content.Shared.Humanoid; using Content.Shared.Humanoid.Prototypes; +using Content.Shared.Players; using Content.Shared.Preferences; using Robust.Server.Player; using Robust.Shared.Console; using Robust.Shared.Network; +using Robust.Shared.Player; using Robust.Shared.Prototypes; // This literally only exists because haha felinid oni @@ -30,7 +32,7 @@ public sealed class LoadCharacter : IConsoleCommand public void Execute(IConsoleShell shell, string argStr, string[] args) { - if (shell.Player is not IPlayerSession player) + if (shell.Player is not ICommonSession player) { shell.WriteError(Loc.GetString("shell-only-players-can-run-this-command")); return; @@ -118,9 +120,9 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) var coordinates = player.AttachedEntity != null ? _entityManager.GetComponent(player.AttachedEntity.Value).Coordinates - : _entitySys.GetEntitySystem().GetObserverSpawnPoint(); + : EntitySystem.Get().GetObserverSpawnPoint(); - _entityManager.System() + EntitySystem.Get() .SpawnPlayerMob(coordinates, profile: character, entity: target, job: null, station: null); shell.WriteLine(Loc.GetString("loadcharacter-command-complete")); @@ -134,8 +136,7 @@ public CompletionResult GetCompletion(IConsoleShell shell, string[] args) return CompletionResult.FromHint(Loc.GetString("shell-argument-uid")); case 2: { - var player = shell.Player as IPlayerSession; - if (player == null) + if (shell.Player is not ICommonSession player) return CompletionResult.Empty; var data = player.ContentData(); diff --git a/Content.Server/DeltaV/Administration/Commands/SpawnCharacter.cs b/Content.Server/DeltaV/Administration/Commands/SpawnCharacter.cs index 0361f4a946..17ea4a56cc 100644 --- a/Content.Server/DeltaV/Administration/Commands/SpawnCharacter.cs +++ b/Content.Server/DeltaV/Administration/Commands/SpawnCharacter.cs @@ -6,10 +6,12 @@ using Content.Server.Station.Systems; using Content.Shared.Administration; using Content.Shared.Mind; +using Content.Shared.Players; using Content.Shared.Preferences; using Robust.Server.Player; using Robust.Shared.Console; using Robust.Shared.Network; +using Robust.Shared.Player; namespace Content.Server.DeltaV.Administration.Commands; @@ -26,13 +28,13 @@ public sealed class SpawnCharacter : IConsoleCommand public void Execute(IConsoleShell shell, string argStr, string[] args) { - if (shell.Player is not IPlayerSession player) + if (shell.Player is not ICommonSession player) { shell.WriteError(Loc.GetString("shell-only-players-can-run-this-command")); return; } - var mindSystem = _entitySys.GetEntitySystem(); + var mindSystem = _entityManager.System(); var data = player.ContentData(); @@ -90,7 +92,7 @@ public CompletionResult GetCompletion(IConsoleShell shell, string[] args) { if (args.Length == 1) { - var player = shell.Player as IPlayerSession; + var player = shell.Player as ICommonSession; if (player == null) return CompletionResult.Empty; diff --git a/Content.Server/DeltaV/Harpy/HarpySingerSystem.cs b/Content.Server/DeltaV/Harpy/HarpySingerSystem.cs index 60eb189a51..2e0428af19 100644 --- a/Content.Server/DeltaV/Harpy/HarpySingerSystem.cs +++ b/Content.Server/DeltaV/Harpy/HarpySingerSystem.cs @@ -1,31 +1,157 @@ using Content.Server.Instruments; +using Content.Server.Speech.Components; +using Content.Server.UserInterface; +using Content.Shared.ActionBlocker; +using Content.Shared.Damage; +using Content.Shared.Damage.ForceSay; +using Content.Shared.DeltaV.Harpy; +using Content.Shared.FixedPoint; +using Content.Shared.Inventory; +using Content.Shared.Inventory.Events; using Content.Shared.Mobs; -using Content.Shared.Mobs.Systems; +using Content.Shared.Popups; +using Content.Shared.StatusEffect; +using Content.Shared.Stunnable; +using Content.Shared.UserInterface; +using Content.Shared.Zombies; using Robust.Server.GameObjects; +using Robust.Shared.Player; +using Robust.Shared.Prototypes; namespace Content.Server.DeltaV.Harpy { public sealed class HarpySingerSystem : EntitySystem { [Dependency] private readonly InstrumentSystem _instrument = default!; - [Dependency] private readonly MobStateSystem _mobState = default!; - + [Dependency] private readonly SharedPopupSystem _popupSystem = default!; + [Dependency] private readonly InventorySystem _inventorySystem = default!; + [Dependency] private readonly ActionBlockerSystem _blocker = default!; + [Dependency] private readonly IPrototypeManager _prototype = default!; public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(HarpyStopSinging); + SubscribeLocalEvent(OnMobStateChangedEvent); + SubscribeLocalEvent(OnEquip); + SubscribeLocalEvent(OnZombified); + SubscribeLocalEvent(OnKnockedDown); + SubscribeLocalEvent(OnStunned); + SubscribeLocalEvent(OnSleep); + SubscribeLocalEvent(OnStatusEffect); + SubscribeLocalEvent(OnDamageChanged); + + // This is intended to intercept the UI event and stop the MIDI UI from opening if the + // singer is unable to sing. Thus it needs to run before the ActivatableUISystem. + SubscribeLocalEvent(OnInstrumentOpen, before: new[] { typeof(ActivatableUISystem) }); + } + + private void OnEquip(GotEquippedEvent args) + { + // Check if an item that makes the singer mumble is equipped to their face + // (not their pockets!). As of writing, this should just be the muzzle. + if (TryComp(args.Equipment, out var accent) && + accent.ReplacementPrototype == "mumble" && + args.Slot == "mask") + { + CloseMidiUi(args.Equipee); + } } + private void OnMobStateChangedEvent(EntityUid uid, InstrumentComponent component, MobStateChangedEvent args) + { + if (args.NewMobState is MobState.Critical or MobState.Dead) + CloseMidiUi(args.Target); + } - //Immediately closes the Midi UI window if a Singer is incapacitated - private void HarpyStopSinging(EntityUid uid, InstrumentComponent component, MobStateChangedEvent args) + private void OnZombified(ref EntityZombifiedEvent args) { - if (HasComp(uid) && TryComp(uid, out var actor) && _mobState.IsIncapacitated(uid)) + CloseMidiUi(args.Target); + } + + private void OnKnockedDown(EntityUid uid, InstrumentComponent component, ref KnockedDownEvent args) + { + CloseMidiUi(uid); + } + + private void OnStunned(EntityUid uid, InstrumentComponent component, ref StunnedEvent args) + { + CloseMidiUi(uid); + } + + private void OnSleep(EntityUid uid, InstrumentComponent component, ref SleepStateChangedEvent args) + { + if (args.FellAsleep) + CloseMidiUi(uid); + } + + private void OnStatusEffect(EntityUid uid, InstrumentComponent component, StatusEffectAddedEvent args) + { + if (args.Key == "Muted") + CloseMidiUi(uid); + } + + /// + /// Almost a copy of Content.Server.Damage.ForceSay.DamageForceSaySystem.OnDamageChanged. + /// Done so because DamageForceSaySystem doesn't output an event, and my understanding is + /// that we don't want to change upstream code more than necessary to avoid merge conflicts + /// and maintenance overhead. It still reuses the values from DamageForceSayComponent, so + /// any tweaks to that will keep ForceSay consistent with singing interruptions. + /// + private void OnDamageChanged(EntityUid uid, InstrumentComponent instrumentComponent, DamageChangedEvent args) + { + if (!TryComp(uid, out var component) || + args.DamageDelta == null || + !args.DamageIncreased || + args.DamageDelta.GetTotal() < component.DamageThreshold || + component.ValidDamageGroups == null) + return; + + var totalApplicableDamage = FixedPoint2.Zero; + foreach (var (group, value) in args.DamageDelta.GetDamagePerGroup(_prototype)) + { + if (!component.ValidDamageGroups.Contains(group)) + continue; + + totalApplicableDamage += value; + } + + if (totalApplicableDamage >= component.DamageThreshold) + CloseMidiUi(uid); + } + + /// + /// Closes the MIDI UI if it is open. + /// + private void CloseMidiUi(EntityUid uid) + { + if (HasComp(uid) && + TryComp(uid, out var actor)) { _instrument.ToggleInstrumentUi(uid, actor.PlayerSession); } } + + /// + /// Prevent the player from opening the MIDI UI under some circumstances. + /// + private void OnInstrumentOpen(EntityUid uid, HarpySingerComponent component, OpenUiActionEvent args) + { + // CanSpeak covers all reasons you can't talk, including being incapacitated + // (crit/dead), asleep, or for any reason mute inclding glimmer or a mime's vow. + var canNotSpeak = !_blocker.CanSpeak(uid); + var zombified = TryComp(uid, out var _); + var muzzled = _inventorySystem.TryGetSlotEntity(uid, "mask", out var maskUid) && + TryComp(maskUid, out var accent) && + accent.ReplacementPrototype == "mumble"; + + // Set this event as handled when the singer should be incapable of singing in order + // to stop the ActivatableUISystem event from opening the MIDI UI. + args.Handled = canNotSpeak || muzzled || zombified; + + // Tell the user that they can not sing. + if (args.Handled) + _popupSystem.PopupEntity(Loc.GetString("no-sing-while-no-speak"), uid, uid, PopupType.Medium); + } } } diff --git a/Content.Server/DeltaV/NPC/Roboisseur/RoboisseurComponent.cs b/Content.Server/DeltaV/NPC/Roboisseur/RoboisseurComponent.cs index 4fbb401c1d..36ae954efa 100644 --- a/Content.Server/DeltaV/NPC/Roboisseur/RoboisseurComponent.cs +++ b/Content.Server/DeltaV/NPC/Roboisseur/RoboisseurComponent.cs @@ -151,7 +151,6 @@ public sealed partial class RoboisseurComponent : Component [DataField("blacklistedProtos")] public IReadOnlyList BlacklistedProtos = new[] { - // "FoodMothPesto", "FoodBurgerSpell", "FoodBreadBanana", "FoodMothSqueakingFry", diff --git a/Content.Server/DeltaV/NPC/Roboisseur/RoboisseurSystem.cs b/Content.Server/DeltaV/NPC/Roboisseur/RoboisseurSystem.cs index f8e6b0f65b..69bd37e674 100644 --- a/Content.Server/DeltaV/NPC/Roboisseur/RoboisseurSystem.cs +++ b/Content.Server/DeltaV/NPC/Roboisseur/RoboisseurSystem.cs @@ -7,6 +7,7 @@ using Content.Shared.Kitchen; using Robust.Server.GameObjects; using Content.Server.Materials; +using Robust.Shared.Player; using Robust.Shared.Timing; namespace Content.Server.Roboisseur.Roboisseur diff --git a/Content.Server/DeltaV/Objectives/Components/NotJobsRequirementComponent.cs b/Content.Server/DeltaV/Objectives/Components/NotJobsRequirementComponent.cs new file mode 100644 index 0000000000..9a0a3f1766 --- /dev/null +++ b/Content.Server/DeltaV/Objectives/Components/NotJobsRequirementComponent.cs @@ -0,0 +1,16 @@ +using Content.Server.Objectives.Systems; +using Content.Shared.Roles; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; + +/// +/// Requires that the player not have a certain job to have this objective. +/// +[RegisterComponent, Access(typeof(NotJobsRequirementSystem))] +public sealed partial class NotJobsRequirementComponent : Component +{ + /// + /// ID of the job to ban from having this objective. + /// + [DataField(required: true, customTypeSerializer: typeof(PrototypeIdListSerializer))] + public List Jobs = new(); +} diff --git a/Content.Server/DeltaV/Objectives/Systems/NotJobsRequirementSystem.cs b/Content.Server/DeltaV/Objectives/Systems/NotJobsRequirementSystem.cs new file mode 100644 index 0000000000..e0112ddc79 --- /dev/null +++ b/Content.Server/DeltaV/Objectives/Systems/NotJobsRequirementSystem.cs @@ -0,0 +1,31 @@ +using Content.Server.Objectives.Components; +using Content.Shared.Objectives.Components; +using Content.Shared.Roles.Jobs; + +namespace Content.Server.Objectives.Systems; + +/// +/// Handles checking the job blacklist for this objective. +/// +public sealed class NotJobsRequirementSystem : EntitySystem +{ + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnCheck); + } + + private void OnCheck(EntityUid uid, NotJobsRequirementComponent comp, ref RequirementCheckEvent args) + { + if (args.Cancelled) + return; + + // if player has no job then don't care + if (!TryComp(args.MindId, out var job)) + return; + foreach (string forbidJob in comp.Jobs) + if (job.PrototypeId == forbidJob) + args.Cancelled = true; + } +} diff --git a/Content.Server/DeltaV/RoundEnd/RoundEndSystem.Pacified.cs b/Content.Server/DeltaV/RoundEnd/RoundEndSystem.Pacified.cs new file mode 100644 index 0000000000..7d5d31dfb0 --- /dev/null +++ b/Content.Server/DeltaV/RoundEnd/RoundEndSystem.Pacified.cs @@ -0,0 +1,62 @@ +using Content.Server.Emp; +using Content.Server.Explosion.Components; +using Content.Server.GameTicking; +using Content.Server.Popups; +using Content.Server.Store.Components; +using Content.Server.Store.Systems; +using Content.Shared.CombatMode; +using Content.Shared.CombatMode.Pacification; +using Content.Shared.DeltaV.CCVars; +using Content.Shared.FixedPoint; +using Robust.Server.Player; +using Robust.Shared.Configuration; + +namespace Content.Server.DeltaV.RoundEnd; + +public sealed class PacifiedRoundEnd : EntitySystem +{ + [Dependency] private readonly IConfigurationManager _configurationManager = default!; + [Dependency] private readonly IPlayerManager _playerManager = default!; + [Dependency] private readonly EntityManager _entityManager = default!; + [Dependency] private readonly StoreSystem _storeSystem = default!; + [Dependency] private readonly PopupSystem _popupSystem = default!; + + private bool _enabled; + + public override void Initialize() + { + base.Initialize(); + _configurationManager.OnValueChanged(DCCVars.RoundEndPacifist, v => _enabled = v, true); + SubscribeLocalEvent(OnRoundEnded); + } + + private void OnRoundEnded(RoundEndTextAppendEvent ev) + { + if (!_enabled) + return; + + var harmQuery = EntityQueryEnumerator(); + while (harmQuery.MoveNext(out var uid, out var _)) + { + _entityManager.EnsureComponent(uid); + } + + var grenadeQuery = EntityQueryEnumerator(); + while (grenadeQuery.MoveNext(out var uid, out var _)) + { + _entityManager.RemoveComponent(uid); + } + + var empQuery = EntityQueryEnumerator(); + while (empQuery.MoveNext(out var uid, out var _)) + { + _entityManager.RemoveComponent(uid); + } + + var uplinkQuery = EntityQueryEnumerator(); + while (uplinkQuery.MoveNext(out var uid, out var store)) + { + store.Listings.Clear(); + } + } +} diff --git a/Content.Server/DeviceNetwork/Systems/NetworkConfiguratorSystem.cs b/Content.Server/DeviceNetwork/Systems/NetworkConfiguratorSystem.cs index c250761687..a977a44287 100644 --- a/Content.Server/DeviceNetwork/Systems/NetworkConfiguratorSystem.cs +++ b/Content.Server/DeviceNetwork/Systems/NetworkConfiguratorSystem.cs @@ -17,6 +17,7 @@ using JetBrains.Annotations; using Robust.Server.GameObjects; using Robust.Shared.Audio; +using Robust.Shared.Player; using Robust.Shared.Timing; using Robust.Shared.Utility; diff --git a/Content.Server/Disposal/Mailing/MailingUnitSystem.cs b/Content.Server/Disposal/Mailing/MailingUnitSystem.cs index 7993ccc07d..1a819ab0fb 100644 --- a/Content.Server/Disposal/Mailing/MailingUnitSystem.cs +++ b/Content.Server/Disposal/Mailing/MailingUnitSystem.cs @@ -7,6 +7,7 @@ using Content.Shared.Disposal; using Content.Shared.Interaction; using Robust.Server.GameObjects; +using Robust.Shared.Player; namespace Content.Server.Disposal.Mailing; diff --git a/Content.Server/Disposal/TubeConnectionsCommand.cs b/Content.Server/Disposal/TubeConnectionsCommand.cs index 7895dcbca6..55e6465937 100644 --- a/Content.Server/Disposal/TubeConnectionsCommand.cs +++ b/Content.Server/Disposal/TubeConnectionsCommand.cs @@ -2,7 +2,6 @@ using Content.Server.Disposal.Tube; using Content.Server.Disposal.Tube.Components; using Content.Shared.Administration; -using Robust.Server.Player; using Robust.Shared.Console; namespace Content.Server.Disposal @@ -18,7 +17,7 @@ public sealed class TubeConnectionsCommand : IConsoleCommand public void Execute(IConsoleShell shell, string argStr, string[] args) { - var player = shell.Player as IPlayerSession; + var player = shell.Player; if (player?.AttachedEntity == null) { shell.WriteLine(Loc.GetString("shell-only-players-can-run-this-command")); diff --git a/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs b/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs index baec99b6a5..0e56d0fb18 100644 --- a/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs +++ b/Content.Server/Disposal/Unit/EntitySystems/DisposalUnitSystem.cs @@ -32,6 +32,7 @@ using Robust.Shared.Map.Components; using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Events; +using Robust.Shared.Player; using Robust.Shared.Random; using Robust.Shared.Utility; diff --git a/Content.Server/Doors/Systems/AirlockSystem.cs b/Content.Server/Doors/Systems/AirlockSystem.cs index ce517febf6..e234ba3304 100644 --- a/Content.Server/Doors/Systems/AirlockSystem.cs +++ b/Content.Server/Doors/Systems/AirlockSystem.cs @@ -6,10 +6,9 @@ using Content.Shared.Doors.Components; using Content.Shared.Doors.Systems; using Content.Shared.Interaction; -using Robust.Server.GameObjects; using Content.Shared.Wires; using Content.Shared.Prying.Components; -using Robust.Shared.Prototypes; +using Robust.Shared.Player; namespace Content.Server.Doors.Systems; @@ -178,11 +177,16 @@ private void OnGetPryMod(EntityUid uid, AirlockComponent component, ref GetPryTi private void OnBeforePry(EntityUid uid, AirlockComponent component, ref BeforePryEvent args) { - if (this.IsPowered(uid, EntityManager) && !args.PryPowered) - { - Popup.PopupEntity(Loc.GetString("airlock-component-cannot-pry-is-powered-message"), uid, args.User); - args.Cancelled = true; - } + if (args.Cancelled) + return; + + if (!this.IsPowered(uid, EntityManager) || args.PryPowered) + return; + + args.Message = "airlock-component-cannot-pry-is-powered-message"; + + args.Cancelled = true; + } public bool CanChangeState(EntityUid uid, AirlockComponent component) diff --git a/Content.Server/EUI/BaseEui.cs b/Content.Server/EUI/BaseEui.cs index 4a41ad40a5..70cbfc3775 100644 --- a/Content.Server/EUI/BaseEui.cs +++ b/Content.Server/EUI/BaseEui.cs @@ -1,6 +1,6 @@ using Content.Shared.Eui; using Robust.Shared.Network; -using Robust.Shared.Players; +using Robust.Shared.Player; namespace Content.Server.EUI { diff --git a/Content.Server/EUI/EuiManager.cs b/Content.Server/EUI/EuiManager.cs index 4d99719525..fe8e486b68 100644 --- a/Content.Server/EUI/EuiManager.cs +++ b/Content.Server/EUI/EuiManager.cs @@ -2,7 +2,7 @@ using Robust.Server.Player; using Robust.Shared.Enums; using Robust.Shared.Network; -using Robust.Shared.Players; +using Robust.Shared.Player; using Robust.Shared.Utility; namespace Content.Server.EUI diff --git a/Content.Server/Ensnaring/EnsnareableSystem.Ensnaring.cs b/Content.Server/Ensnaring/EnsnareableSystem.Ensnaring.cs index bb1690c935..b04c1296fc 100644 --- a/Content.Server/Ensnaring/EnsnareableSystem.Ensnaring.cs +++ b/Content.Server/Ensnaring/EnsnareableSystem.Ensnaring.cs @@ -1,8 +1,9 @@ using System.Linq; using Content.Server.Body.Systems; using Content.Shared.Alert; -using Content.Shared.Body.Components; using Content.Shared.Body.Part; +using Content.Shared.Damage.Components; +using Content.Shared.Damage.Systems; using Content.Shared.DoAfter; using Content.Shared.Ensnaring; using Content.Shared.Ensnaring.Components; @@ -17,6 +18,7 @@ public sealed partial class EnsnareableSystem [Dependency] private readonly SharedDoAfterSystem _doAfter = default!; [Dependency] private readonly AlertsSystem _alerts = default!; [Dependency] private readonly BodySystem _body = default!; + [Dependency] private readonly StaminaSystem _stamina = default!; public void InitializeEnsnaring() { @@ -72,6 +74,15 @@ public void TryEnsnare(EntityUid target, EntityUid ensnare, EnsnaringComponent c if (freeLegs <= 0) return; + // Apply stamina damage to target if they weren't ensnared before. + if (ensnareable.IsEnsnared != true) + { + if (TryComp(target, out var stamina)) + { + _stamina.TakeStaminaDamage(target, component.StaminaDamage, with: ensnare); + } + } + component.Ensnared = target; ensnareable.Container.Insert(ensnare); ensnareable.IsEnsnared = true; diff --git a/Content.Server/EntityList/SpawnEntityListCommand.cs b/Content.Server/EntityList/SpawnEntityListCommand.cs index 0891bbd12a..027d25dc2c 100644 --- a/Content.Server/EntityList/SpawnEntityListCommand.cs +++ b/Content.Server/EntityList/SpawnEntityListCommand.cs @@ -1,7 +1,6 @@ using Content.Server.Administration; using Content.Shared.Administration; using Content.Shared.EntityList; -using Robust.Server.Player; using Robust.Shared.Console; using Robust.Shared.Prototypes; @@ -22,7 +21,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - if (shell.Player is not IPlayerSession player) + if (shell.Player is not { } player) { shell.WriteError("You must be a player to run this command."); return; diff --git a/Content.Server/Examine/ExamineSystem.cs b/Content.Server/Examine/ExamineSystem.cs index 98aa806885..bb7e07d235 100644 --- a/Content.Server/Examine/ExamineSystem.cs +++ b/Content.Server/Examine/ExamineSystem.cs @@ -3,8 +3,7 @@ using Content.Shared.Examine; using Content.Shared.Verbs; using JetBrains.Annotations; -using Robust.Server.GameObjects; -using Robust.Server.Player; +using Robust.Shared.Player; using Robust.Shared.Utility; namespace Content.Server.Examine @@ -46,7 +45,7 @@ public override void SendExamineTooltip(EntityUid player, EntityUid target, Form private void ExamineInfoRequest(ExamineSystemMessages.RequestExamineInfoMessage request, EntitySessionEventArgs eventArgs) { - var player = (IPlayerSession) eventArgs.SenderSession; + var player = eventArgs.SenderSession; var session = eventArgs.SenderSession; var channel = player.ConnectedClient; var entity = GetEntity(request.NetEntity); diff --git a/Content.Server/Fluids/EntitySystems/PuddleDebugDebugOverlaySystem.cs b/Content.Server/Fluids/EntitySystems/PuddleDebugDebugOverlaySystem.cs index 59f0a13695..c17eea684d 100644 --- a/Content.Server/Fluids/EntitySystems/PuddleDebugDebugOverlaySystem.cs +++ b/Content.Server/Fluids/EntitySystems/PuddleDebugDebugOverlaySystem.cs @@ -1,9 +1,9 @@ using System.Numerics; using Content.Shared.Fluids; using Content.Shared.Fluids.Components; -using Robust.Server.Player; using Robust.Shared.Map; using Robust.Shared.Map.Components; +using Robust.Shared.Player; using Robust.Shared.Timing; namespace Content.Server.Fluids.EntitySystems; @@ -14,10 +14,10 @@ public sealed class PuddleDebugDebugOverlaySystem : SharedPuddleDebugOverlaySyst [Dependency] private readonly IMapManager _mapManager = default!; [Dependency] private readonly PuddleSystem _puddle = default!; - private readonly HashSet _playerObservers = new(); + private readonly HashSet _playerObservers = new(); private List> _grids = new(); - public bool ToggleObserver(IPlayerSession observer) + public bool ToggleObserver(ICommonSession observer) { NextTick ??= _timing.CurTime + Cooldown; @@ -31,7 +31,7 @@ public bool ToggleObserver(IPlayerSession observer) return true; } - private void RemoveObserver(IPlayerSession observer) + private void RemoveObserver(ICommonSession observer) { if (!_playerObservers.Remove(observer)) { diff --git a/Content.Server/Fluids/EntitySystems/PuddleSystem.Spillable.cs b/Content.Server/Fluids/EntitySystems/PuddleSystem.Spillable.cs index 39485d60f7..a6d6a5b204 100644 --- a/Content.Server/Fluids/EntitySystems/PuddleSystem.Spillable.cs +++ b/Content.Server/Fluids/EntitySystems/PuddleSystem.Spillable.cs @@ -34,7 +34,7 @@ private void InitializeSpillable() SubscribeLocalEvent(SplashOnMeleeHit, after: new[] { typeof(OpenableSystem) }); SubscribeLocalEvent>(AddSpillVerb); SubscribeLocalEvent(OnGotEquipped); - SubscribeLocalEvent(OnSpikeOverflow); + SubscribeLocalEvent(OnOverflow); SubscribeLocalEvent(OnDoAfter); } @@ -46,13 +46,12 @@ private void OnExamined(EntityUid uid, SpillableComponent component, ExaminedEve args.PushMarkup(Loc.GetString("spill-examine-spillable-weapon")); } - private void OnSpikeOverflow(EntityUid uid, SpillableComponent component, SolutionSpikeOverflowEvent args) + private void OnOverflow(EntityUid uid, SpillableComponent component, ref SolutionOverflowEvent args) { - if (!args.Handled) - { - TrySpillAt(Transform(uid).Coordinates, args.Overflow, out _); - } + if (args.Handled) + return; + TrySpillAt(Transform(uid).Coordinates, args.Overflow, out _); args.Handled = true; } diff --git a/Content.Server/Fluids/EntitySystems/SmokeSystem.cs b/Content.Server/Fluids/EntitySystems/SmokeSystem.cs index f7732fec62..5459dacf0b 100644 --- a/Content.Server/Fluids/EntitySystems/SmokeSystem.cs +++ b/Content.Server/Fluids/EntitySystems/SmokeSystem.cs @@ -1,14 +1,23 @@ using System.Linq; -using Content.Server.Chemistry.Components; +using Content.Server.Administration.Logs; +using Content.Server.Body.Components; +using Content.Server.Body.Systems; using Content.Server.Chemistry.ReactionEffects; using Content.Server.Spreader; +using Content.Shared.Chemistry; using Content.Shared.Chemistry.Components; using Content.Shared.Chemistry.EntitySystems; using Content.Shared.Chemistry.Reaction; +using Content.Shared.Chemistry.Reagent; +using Content.Shared.Database; using Content.Shared.FixedPoint; using Content.Shared.Smoking; using Robust.Server.GameObjects; using Robust.Shared.Map; +using Robust.Shared.Physics; +using Robust.Shared.Physics.Components; +using Robust.Shared.Physics.Events; +using Robust.Shared.Physics.Systems; using Robust.Shared.Prototypes; using Robust.Shared.Random; using Robust.Shared.Timing; @@ -22,70 +31,140 @@ namespace Content.Server.Fluids.EntitySystems; public sealed class SmokeSystem : EntitySystem { // If I could do it all again this could probably use a lot more of puddles. + [Dependency] private readonly IAdminLogManager _logger = default!; [Dependency] private readonly IGameTiming _timing = default!; [Dependency] private readonly IMapManager _mapManager = default!; [Dependency] private readonly IPrototypeManager _prototype = default!; + [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly AppearanceSystem _appearance = default!; - [Dependency] private readonly EntityLookupSystem _lookup = default!; + [Dependency] private readonly BloodstreamSystem _blood = default!; + [Dependency] private readonly InternalsSystem _internals = default!; + [Dependency] private readonly ReactiveSystem _reactive = default!; + [Dependency] private readonly SharedBroadphaseSystem _broadphase = default!; + [Dependency] private readonly SharedPhysicsSystem _physics = default!; [Dependency] private readonly SolutionContainerSystem _solutionSystem = default!; - [Dependency] private readonly IRobustRandom _random = default!; + [Dependency] private readonly TransformSystem _transform = default!; + + private EntityQuery _smokeQuery; + private EntityQuery _smokeAffectedQuery; /// public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnSmokeUnpaused); + + _smokeQuery = GetEntityQuery(); + _smokeAffectedQuery = GetEntityQuery(); + + SubscribeLocalEvent(OnStartCollide); + SubscribeLocalEvent(OnEndCollide); SubscribeLocalEvent(OnReactionAttempt); SubscribeLocalEvent(OnSmokeSpread); + SubscribeLocalEvent(OnAffectedUnpaused); + } + + /// + public override void Update(float frameTime) + { + base.Update(frameTime); + + var query = EntityQueryEnumerator(); + var curTime = _timing.CurTime; + while (query.MoveNext(out var uid, out var smoke)) + { + if (curTime < smoke.NextSecond) + continue; + + smoke.NextSecond += TimeSpan.FromSeconds(1); + SmokeReact(uid, smoke.SmokeEntity); + } + } + + private void OnStartCollide(EntityUid uid, SmokeComponent component, ref StartCollideEvent args) + { + if (_smokeAffectedQuery.HasComponent(args.OtherEntity)) + return; + + var smokeAffected = AddComp(args.OtherEntity); + smokeAffected.SmokeEntity = uid; + smokeAffected.NextSecond = _timing.CurTime + TimeSpan.FromSeconds(1); + } + + private void OnEndCollide(EntityUid uid, SmokeComponent component, ref EndCollideEvent args) + { + // if we are already in smoke, make sure the thing we are exiting is the current smoke we are in. + if (_smokeAffectedQuery.TryGetComponent(args.OtherEntity, out var smokeAffectedComponent)) + { + if (smokeAffectedComponent.SmokeEntity != uid) + return; + } + + var exists = Exists(uid); + + if (!TryComp(args.OtherEntity, out var body)) + return; + + foreach (var ent in _physics.GetContactingEntities(args.OtherEntity, body)) + { + if (exists && ent == uid) + continue; + + if (!_smokeQuery.HasComponent(ent)) + continue; + + smokeAffectedComponent ??= EnsureComp(args.OtherEntity); + smokeAffectedComponent.SmokeEntity = ent; + return; // exit the function so we don't remove the component. + } + + if (smokeAffectedComponent != null) + RemComp(args.OtherEntity, smokeAffectedComponent); + } + + private void OnAffectedUnpaused(EntityUid uid, SmokeAffectedComponent component, ref EntityUnpausedEvent args) + { + component.NextSecond += args.PausedTime; } private void OnSmokeSpread(EntityUid uid, SmokeComponent component, ref SpreadNeighborsEvent args) { - if (component.SpreadAmount == 0 - || !_solutionSystem.TryGetSolution(uid, SmokeComponent.SolutionName, out var solution)) + if (component.SpreadAmount == 0 || !_solutionSystem.TryGetSolution(uid, SmokeComponent.SolutionName, out var solution)) { RemCompDeferred(uid); return; } - var prototype = MetaData(uid).EntityPrototype; - - if (prototype == null) + if (Prototype(uid) is not { } prototype) { RemCompDeferred(uid); return; } + if (!args.NeighborFreeTiles.Any()) + return; + TryComp(uid, out var timer); - _appearance.TryGetData(uid, SmokeVisuals.Color, out var color); // wtf is the logic behind any of this. - var smokePerSpread = 1 + component.SpreadAmount / Math.Max(1, args.NeighborFreeTiles.Count); + var smokePerSpread = component.SpreadAmount / Math.Max(1, args.NeighborFreeTiles.Count); foreach (var neighbor in args.NeighborFreeTiles) { var coords = neighbor.Grid.GridTileToLocal(neighbor.Tile); var ent = Spawn(prototype.ID, coords); - var neighborSmoke = EnsureComp(ent); - neighborSmoke.SpreadAmount = Math.Max(0, smokePerSpread - 2); // why - 2? who the fuck knows. - component.SpreadAmount--; - args.Updates--; - - // Listen this is the old behaviour iunno - Start(ent, neighborSmoke, solution.Clone(), timer?.Lifetime ?? 10f); + var spreadAmount = Math.Max(0, smokePerSpread); + component.SpreadAmount -= args.NeighborFreeTiles.Count(); - if (color != null) - _appearance.SetData(ent, SmokeVisuals.Color, color); + StartSmoke(ent, solution.Clone(), timer?.Lifetime ?? component.Duration, spreadAmount); if (component.SpreadAmount == 0) { RemCompDeferred(uid); break; } - - if (args.Updates <= 0) - break; } + args.Updates--; + if (args.NeighborFreeTiles.Count > 0 || args.Neighbors.Count == 0 || component.SpreadAmount < 1) return; @@ -100,7 +179,6 @@ private void OnSmokeSpread(EntityUid uid, SmokeComponent component, ref SpreadNe continue; smoke.SpreadAmount++; - args.Updates--; component.SpreadAmount--; EnsureComp(neighbor); @@ -110,6 +188,7 @@ private void OnSmokeSpread(EntityUid uid, SmokeComponent component, ref SpreadNe break; } } + } private void OnReactionAttempt(EntityUid uid, SmokeComponent component, ReactionAttemptEvent args) @@ -128,101 +207,117 @@ private void OnReactionAttempt(EntityUid uid, SmokeComponent component, Reaction } } - private void OnSmokeUnpaused(EntityUid uid, SmokeComponent component, ref EntityUnpausedEvent args) + /// + /// Sets up a smoke component for spreading. + /// + public void StartSmoke(EntityUid uid, Solution solution, float duration, int spreadAmount, SmokeComponent? component = null) { - component.NextReact += args.PausedTime; - } + if (!Resolve(uid, ref component)) + return; - /// - public override void Update(float frameTime) - { - base.Update(frameTime); - var query = EntityQueryEnumerator(); - var curTime = _timing.CurTime; + component.SpreadAmount = spreadAmount; + component.Duration = duration; + component.TransferRate = solution.Volume / duration; + TryAddSolution(uid, solution); + Dirty(uid, component); + EnsureComp(uid); - while (query.MoveNext(out var uid, out var smoke)) + if (TryComp(uid, out var body) && TryComp(uid, out var fixtures)) { - if (smoke.NextReact > curTime) - continue; + var xform = Transform(uid); + _physics.SetBodyType(uid, BodyType.Dynamic, fixtures, body, xform); + _physics.SetCanCollide(uid, true, manager: fixtures, body: body); + _broadphase.RegenerateContacts(uid, body, fixtures, xform); + } - smoke.NextReact += TimeSpan.FromSeconds(1.5); + var timer = EnsureComp(uid); + timer.Lifetime = duration; - SmokeReact(uid, 1f, smoke); - } + // The tile reaction happens here because it only occurs once. + ReactOnTile(uid, component); } /// - /// Does the relevant smoke reactions for an entity for the specified exposure duration. + /// Does the relevant smoke reactions for an entity. /// - public void SmokeReact(EntityUid uid, float frameTime, SmokeComponent? component = null, TransformComponent? xform = null) + public void SmokeReact(EntityUid entity, EntityUid smokeUid, SmokeComponent? component = null) { - if (!Resolve(uid, ref component, ref xform)) + if (!Resolve(smokeUid, ref component)) return; - if (!_solutionSystem.TryGetSolution(uid, SmokeComponent.SolutionName, out var solution) || + if (!_solutionSystem.TryGetSolution(smokeUid, SmokeComponent.SolutionName, out var solution) || solution.Contents.Count == 0) { return; } - if (!_mapManager.TryGetGrid(xform.GridUid, out var mapGrid)) - return; + ReactWithEntity(entity, smokeUid, solution, component); + UpdateVisuals(smokeUid); + } - var tile = mapGrid.GetTileRef(xform.Coordinates.ToVector2i(EntityManager, _mapManager)); + private void ReactWithEntity(EntityUid entity, EntityUid smokeUid, Solution solution, SmokeComponent? component = null) + { + if (!Resolve(smokeUid, ref component)) + return; - var solutionFraction = 1 / Math.Floor(frameTime); - var ents = _lookup.GetEntitiesIntersecting(tile, 0f, flags: LookupFlags.Uncontained).ToArray(); + if (!TryComp(entity, out var bloodstream)) + return; - foreach (var reagentQuantity in solution.Contents.ToArray()) - { - if (reagentQuantity.Quantity == FixedPoint2.Zero) - continue; + var blockIngestion = _internals.AreInternalsWorking(entity); - // NOOP, react with entities on the tile or whatever. - } + var cloneSolution = solution.Clone(); + var availableTransfer = FixedPoint2.Min(cloneSolution.Volume, component.TransferRate); + var transferAmount = FixedPoint2.Min(availableTransfer, bloodstream.ChemicalSolution.AvailableVolume); + var transferSolution = cloneSolution.SplitSolution(transferAmount); - foreach (var entity in ents) + foreach (var reagentQuantity in transferSolution.Contents.ToArray()) { - if (entity == uid) + if (reagentQuantity.Quantity == FixedPoint2.Zero) continue; + var reagentProto = _prototype.Index(reagentQuantity.Reagent.Prototype); - ReactWithEntity(entity, solution, solutionFraction); + _reactive.ReactionEntity(entity, ReactionMethod.Touch, reagentProto, reagentQuantity, transferSolution); + if (!blockIngestion) + _reactive.ReactionEntity(entity, ReactionMethod.Ingestion, reagentProto, reagentQuantity, transferSolution); } - UpdateVisuals(uid); - } + if (blockIngestion) + return; - private void UpdateVisuals(EntityUid uid) - { - if (TryComp(uid, out AppearanceComponent? appearance) && - _solutionSystem.TryGetSolution(uid, SmokeComponent.SolutionName, out var solution)) + if (_blood.TryAddToChemicals(entity, transferSolution, bloodstream)) { - var color = solution.GetColor(_prototype); - _appearance.SetData(uid, SmokeVisuals.Color, color, appearance); + // Log solution addition by smoke + _logger.Add(LogType.ForceFeed, LogImpact.Medium, $"{ToPrettyString(entity):target} ingested smoke {SolutionContainerSystem.ToPrettyString(transferSolution)}"); } } - private void ReactWithEntity(EntityUid entity, Solution solution, double solutionFraction) + private void ReactOnTile(EntityUid uid, SmokeComponent? component = null, TransformComponent? xform = null) { - // NOOP due to people complaining constantly. - return; - } + if (!Resolve(uid, ref component, ref xform)) + return; - /// - /// Sets up a smoke component for spreading. - /// - public void Start(EntityUid uid, SmokeComponent component, Solution solution, float duration) - { - TryAddSolution(uid, component, solution); - EnsureComp(uid); - var timer = EnsureComp(uid); - timer.Lifetime = duration; + if (!_solutionSystem.TryGetSolution(uid, SmokeComponent.SolutionName, out var solution) || !solution.Any()) + return; + + if (!_mapManager.TryGetGrid(xform.GridUid, out var mapGrid)) + return; + + var tile = mapGrid.GetTileRef(xform.Coordinates.ToVector2i(EntityManager, _mapManager, _transform)); + + foreach (var reagentQuantity in solution.Contents.ToArray()) + { + if (reagentQuantity.Quantity == FixedPoint2.Zero) + continue; + + var reagent = _prototype.Index(reagentQuantity.Reagent.Prototype); + reagent.ReactionTile(tile, reagentQuantity.Quantity); + } } /// /// Adds the specified solution to the relevant smoke solution. /// - public void TryAddSolution(EntityUid uid, SmokeComponent component, Solution solution) + private void TryAddSolution(EntityUid uid, Solution solution) { if (solution.Volume == FixedPoint2.Zero) return; @@ -237,4 +332,14 @@ public void TryAddSolution(EntityUid uid, SmokeComponent component, Solution sol UpdateVisuals(uid); } + + private void UpdateVisuals(EntityUid uid) + { + if (!TryComp(uid, out AppearanceComponent? appearance) || + !_solutionSystem.TryGetSolution(uid, SmokeComponent.SolutionName, out var solution)) + return; + + var color = solution.GetColor(_prototype); + _appearance.SetData(uid, SmokeVisuals.Color, color, appearance); + } } diff --git a/Content.Server/Fluids/ShowFluidsCommand.cs b/Content.Server/Fluids/ShowFluidsCommand.cs index f122eadea7..71ac273a45 100644 --- a/Content.Server/Fluids/ShowFluidsCommand.cs +++ b/Content.Server/Fluids/ShowFluidsCommand.cs @@ -1,7 +1,6 @@ using Content.Server.Administration; using Content.Server.Fluids.EntitySystems; using Content.Shared.Administration; -using Robust.Server.Player; using Robust.Shared.Console; namespace Content.Server.Fluids; @@ -15,7 +14,7 @@ public sealed class ShowFluidsCommand : IConsoleCommand public string Help => $"Usage: {Command}"; public void Execute(IConsoleShell shell, string argStr, string[] args) { - var player = shell.Player as IPlayerSession; + var player = shell.Player; if (player == null) { shell.WriteLine("You must be a player to use this command."); diff --git a/Content.Server/Forensics/Systems/ForensicScannerSystem.cs b/Content.Server/Forensics/Systems/ForensicScannerSystem.cs index 69704ddb56..acf7cbd80d 100644 --- a/Content.Server/Forensics/Systems/ForensicScannerSystem.cs +++ b/Content.Server/Forensics/Systems/ForensicScannerSystem.cs @@ -10,6 +10,7 @@ using Content.Shared.Verbs; using Robust.Server.GameObjects; using Robust.Shared.Audio; +using Robust.Shared.Player; using Robust.Shared.Timing; // todo: remove this stinky LINQy diff --git a/Content.Server/GameTicking/Commands/JoinGameCommand.cs b/Content.Server/GameTicking/Commands/JoinGameCommand.cs index 366e6c4e77..3276b91200 100644 --- a/Content.Server/GameTicking/Commands/JoinGameCommand.cs +++ b/Content.Server/GameTicking/Commands/JoinGameCommand.cs @@ -2,7 +2,6 @@ using Content.Shared.Administration; using Content.Shared.GameTicking; using Content.Shared.Roles; -using Robust.Server.Player; using Robust.Shared.Console; using Robust.Shared.Prototypes; @@ -30,7 +29,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - var player = shell.Player as IPlayerSession; + var player = shell.Player; if (player == null) { diff --git a/Content.Server/GameTicking/Commands/ObserveCommand.cs b/Content.Server/GameTicking/Commands/ObserveCommand.cs index d608dda9c1..747e54e28b 100644 --- a/Content.Server/GameTicking/Commands/ObserveCommand.cs +++ b/Content.Server/GameTicking/Commands/ObserveCommand.cs @@ -1,6 +1,5 @@ using Content.Shared.Administration; using Content.Shared.GameTicking; -using Robust.Server.Player; using Robust.Shared.Console; namespace Content.Server.GameTicking.Commands @@ -14,7 +13,7 @@ sealed class ObserveCommand : IConsoleCommand public void Execute(IConsoleShell shell, string argStr, string[] args) { - if (shell.Player is not IPlayerSession player) + if (shell.Player is not { } player) { return; } diff --git a/Content.Server/GameTicking/Commands/RespawnCommand.cs b/Content.Server/GameTicking/Commands/RespawnCommand.cs index 057572297f..4f101d0939 100644 --- a/Content.Server/GameTicking/Commands/RespawnCommand.cs +++ b/Content.Server/GameTicking/Commands/RespawnCommand.cs @@ -14,7 +14,7 @@ sealed class RespawnCommand : IConsoleCommand public void Execute(IConsoleShell shell, string argStr, string[] args) { - var player = shell.Player as IPlayerSession; + var player = shell.Player; if (args.Length > 1) { shell.WriteLine("Must provide <= 1 argument."); diff --git a/Content.Server/GameTicking/Commands/ToggleReadyCommand.cs b/Content.Server/GameTicking/Commands/ToggleReadyCommand.cs index e68c4c5fa7..df418c27ee 100644 --- a/Content.Server/GameTicking/Commands/ToggleReadyCommand.cs +++ b/Content.Server/GameTicking/Commands/ToggleReadyCommand.cs @@ -1,5 +1,4 @@ using Content.Shared.Administration; -using Robust.Server.Player; using Robust.Shared.Console; namespace Content.Server.GameTicking.Commands @@ -13,7 +12,7 @@ sealed class ToggleReadyCommand : IConsoleCommand public void Execute(IConsoleShell shell, string argStr, string[] args) { - var player = shell.Player as IPlayerSession; + var player = shell.Player; if (args.Length != 1) { shell.WriteError(Loc.GetString("shell-wrong-arguments-number")); diff --git a/Content.Server/GameTicking/GameTicker.GamePreset.cs b/Content.Server/GameTicking/GameTicker.GamePreset.cs index a5e6d7a605..2d7539bd0f 100644 --- a/Content.Server/GameTicking/GameTicker.GamePreset.cs +++ b/Content.Server/GameTicking/GameTicker.GamePreset.cs @@ -11,7 +11,7 @@ using Content.Shared.Mind; using Content.Shared.Mobs.Components; using JetBrains.Annotations; -using Robust.Server.Player; +using Robust.Shared.Player; namespace Content.Server.GameTicking { @@ -29,7 +29,7 @@ public sealed partial class GameTicker /// public GamePresetPrototype? CurrentPreset { get; private set; } - private bool StartPreset(IPlayerSession[] origReadyPlayers, bool force) + private bool StartPreset(ICommonSession[] origReadyPlayers, bool force) { var startAttempt = new RoundStartAttemptEvent(origReadyPlayers, force); RaiseLocalEvent(startAttempt); @@ -214,7 +214,7 @@ public bool OnGhostAttempt(EntityUid mindId, bool canReturnGlobal, bool viaComma { if (mind.Session != null) // Logging is suppressed to prevent spam from ghost attempts caused by movement attempts { - _chatManager.DispatchServerMessage((IPlayerSession) mind.Session, Loc.GetString("comp-mind-ghosting-prevented"), + _chatManager.DispatchServerMessage(mind.Session, Loc.GetString("comp-mind-ghosting-prevented"), true); } diff --git a/Content.Server/GameTicking/GameTicker.Lobby.cs b/Content.Server/GameTicking/GameTicker.Lobby.cs index b7b6a29a5a..1943a82617 100644 --- a/Content.Server/GameTicking/GameTicker.Lobby.cs +++ b/Content.Server/GameTicking/GameTicker.Lobby.cs @@ -1,10 +1,8 @@ using System.Linq; using Content.Shared.GameTicking; using Content.Server.Station.Components; -using Robust.Server.Player; using Robust.Shared.Network; using Robust.Shared.Player; -using Robust.Shared.Players; using System.Text; namespace Content.Server.GameTicking @@ -79,7 +77,7 @@ private string GetInfoText() ("roundId", RoundId), ("playerCount", playerCount), ("readyCount", readyCount), ("mapName", stationNames.ToString()),("gmTitle", gmTitle),("desc", desc)); } - private TickerLobbyStatusEvent GetStatusMsg(IPlayerSession session) + private TickerLobbyStatusEvent GetStatusMsg(ICommonSession session) { _playerGameStatuses.TryGetValue(session.UserId, out var status); return new TickerLobbyStatusEvent(RunLevel != GameRunLevel.PreRoundLobby, LobbySong, LobbyBackground,status == PlayerGameStatus.ReadyToPlay, _roundStartTime, RoundPreloadTime, _roundStartTimeSpan, Paused); @@ -87,7 +85,7 @@ private TickerLobbyStatusEvent GetStatusMsg(IPlayerSession session) private void SendStatusToAll() { - foreach (var player in _playerManager.ServerSessions) + foreach (var player in _playerManager.Sessions) { RaiseNetworkEvent(GetStatusMsg(player), player.ConnectedClient); } @@ -148,7 +146,7 @@ public void ToggleReadyAll(bool ready) } } - public void ToggleReady(IPlayerSession player, bool ready) + public void ToggleReady(ICommonSession player, bool ready) { if (!_playerGameStatuses.ContainsKey(player.UserId)) return; diff --git a/Content.Server/GameTicking/GameTicker.Player.cs b/Content.Server/GameTicking/GameTicker.Player.cs index 4ef55cd563..caa8062f41 100644 --- a/Content.Server/GameTicking/GameTicker.Player.cs +++ b/Content.Server/GameTicking/GameTicker.Player.cs @@ -1,12 +1,13 @@ using Content.Server.Database; -using Content.Server.Players; using Content.Shared.GameTicking; using Content.Shared.GameWindow; using Content.Shared.Players; using Content.Shared.Preferences; using JetBrains.Annotations; +using Robust.Server.GameObjects; using Robust.Server.Player; using Robust.Shared.Enums; +using Robust.Shared.Player; using Robust.Shared.Timing; using Robust.Shared.Utility; @@ -17,6 +18,7 @@ public sealed partial class GameTicker { [Dependency] private readonly IPlayerManager _playerManager = default!; [Dependency] private readonly IServerDbManager _dbManager = default!; + [Dependency] private readonly ActorSystem _actor = default!; private void InitializePlayer() { @@ -49,7 +51,7 @@ private async void PlayerStatusChanged(object? sender, SessionStatusEventArgs ar // Always make sure the client has player data. if (session.Data.ContentDataUncast == null) { - var data = new PlayerData(session.UserId, args.Session.Name); + var data = new ContentPlayerData(session.UserId, args.Session.Name); data.Mind = mindId; data.Whitelisted = await _db.GetWhitelistStatusAsync(session.UserId); // Nyanotrasen - Whitelist session.Data.ContentDataUncast = data; @@ -57,7 +59,7 @@ private async void PlayerStatusChanged(object? sender, SessionStatusEventArgs ar // Make the player actually join the game. // timer time must be > tick length - Timer.Spawn(0, args.Session.JoinGame); + Timer.Spawn(0, () => _playerManager.JoinGame(args.Session)); var record = await _dbManager.GetPlayerRecordByUserId(args.Session.UserId); var firstConnection = record != null && @@ -101,9 +103,16 @@ private async void PlayerStatusChanged(object? sender, SessionStatusEventArgs ar } else { - // Simply re-attach to existing entity. - session.AttachToEntity(mind.CurrentEntity); - PlayerJoinGame(session); + if (_actor.Attach(mind.CurrentEntity, session)) + { + PlayerJoinGame(session); + } + else + { + Log.Error( + $"Failed to attach player {session} with mind {ToPrettyString(mindId)} to its current entity {ToPrettyString(mind.CurrentEntity)}"); + SpawnObserverWaitDb(); + } } break; @@ -146,12 +155,12 @@ async void AddPlayerToDb(Guid id) } } - private HumanoidCharacterProfile GetPlayerProfile(IPlayerSession p) + private HumanoidCharacterProfile GetPlayerProfile(ICommonSession p) { return (HumanoidCharacterProfile) _prefsManager.GetPreferences(p.UserId).SelectedCharacter; } - public void PlayerJoinGame(IPlayerSession session, bool silent = false) + public void PlayerJoinGame(ICommonSession session, bool silent = false) { if (!silent) _chatManager.DispatchServerMessage(session, Loc.GetString("game-ticker-player-join-game-message")); @@ -162,7 +171,7 @@ public void PlayerJoinGame(IPlayerSession session, bool silent = false) RaiseNetworkEvent(new TickerJoinGameEvent(), session.ConnectedClient); } - private void PlayerJoinLobby(IPlayerSession session) + private void PlayerJoinLobby(ICommonSession session) { _playerGameStatuses[session.UserId] = LobbyEnabled ? PlayerGameStatus.NotReadyToPlay : PlayerGameStatus.ReadyToPlay; _db.AddRoundPlayers(RoundId, session.UserId); @@ -182,9 +191,9 @@ private void ReqWindowAttentionAll() public sealed class PlayerJoinedLobbyEvent : EntityEventArgs { - public readonly IPlayerSession PlayerSession; + public readonly ICommonSession PlayerSession; - public PlayerJoinedLobbyEvent(IPlayerSession playerSession) + public PlayerJoinedLobbyEvent(ICommonSession playerSession) { PlayerSession = playerSession; } diff --git a/Content.Server/GameTicking/GameTicker.RoundFlow.cs b/Content.Server/GameTicking/GameTicker.RoundFlow.cs index a10196a43e..85f833bd1c 100644 --- a/Content.Server/GameTicking/GameTicker.RoundFlow.cs +++ b/Content.Server/GameTicking/GameTicker.RoundFlow.cs @@ -12,7 +12,6 @@ using JetBrains.Annotations; using Prometheus; using Robust.Server.Maps; -using Robust.Server.Player; using Robust.Shared.Asynchronous; using Robust.Shared.Audio; using Robust.Shared.Map; @@ -205,7 +204,7 @@ public void StartRound(bool force = false) var startingEvent = new RoundStartingEvent(RoundId); RaiseLocalEvent(startingEvent); - var readyPlayers = new List(); + var readyPlayers = new List(); var readyPlayerProfiles = new Dictionary(); foreach (var (userId, status) in _playerGameStatuses) @@ -344,7 +343,7 @@ public void ShowRoundEndScoreboard(string text = "") { connected = true; } - PlayerData? contentPlayerData = null; + ContentPlayerData? contentPlayerData = null; if (userId != null && _playerManager.TryGetPlayerData(userId.Value, out var playerData)) { contentPlayerData = playerData.ContentData(); @@ -493,7 +492,7 @@ private async void SendRoundStartingDiscordMessage() private void ResettingCleanup() { // Move everybody currently in the server to lobby. - foreach (var player in _playerManager.ServerSessions) + foreach (var player in _playerManager.Sessions) { PlayerJoinLobby(player); } @@ -541,7 +540,7 @@ private void ResettingCleanup() DisallowLateJoin = false; _playerGameStatuses.Clear(); - foreach (var session in _playerManager.ServerSessions) + foreach (var session in _playerManager.Sessions) { _playerGameStatuses[session.UserId] = LobbyEnabled ? PlayerGameStatus.NotReadyToPlay : PlayerGameStatus.ReadyToPlay; } @@ -735,10 +734,10 @@ public void Disallow() /// public sealed class RoundStartAttemptEvent : CancellableEntityEventArgs { - public IPlayerSession[] Players { get; } + public ICommonSession[] Players { get; } public bool Forced { get; } - public RoundStartAttemptEvent(IPlayerSession[] players, bool forced) + public RoundStartAttemptEvent(ICommonSession[] players, bool forced) { Players = players; Forced = forced; @@ -757,11 +756,11 @@ public sealed class RulePlayerSpawningEvent /// If you want to handle a specific player being spawned, remove it from this list and do what you need. /// /// If you spawn a player by yourself from this event, don't forget to call on them. - public List PlayerPool { get; } + public List PlayerPool { get; } public IReadOnlyDictionary Profiles { get; } public bool Forced { get; } - public RulePlayerSpawningEvent(List playerPool, IReadOnlyDictionary profiles, bool forced) + public RulePlayerSpawningEvent(List playerPool, IReadOnlyDictionary profiles, bool forced) { PlayerPool = playerPool; Profiles = profiles; @@ -775,11 +774,11 @@ public RulePlayerSpawningEvent(List playerPool, IReadOnlyDiction /// public sealed class RulePlayerJobsAssignedEvent { - public IPlayerSession[] Players { get; } + public ICommonSession[] Players { get; } public IReadOnlyDictionary Profiles { get; } public bool Forced { get; } - public RulePlayerJobsAssignedEvent(IPlayerSession[] players, IReadOnlyDictionary profiles, bool forced) + public RulePlayerJobsAssignedEvent(ICommonSession[] players, IReadOnlyDictionary profiles, bool forced) { Players = players; Profiles = profiles; diff --git a/Content.Server/GameTicking/GameTicker.Spawning.cs b/Content.Server/GameTicking/GameTicker.Spawning.cs index 0c59f93bb0..c2bf523657 100644 --- a/Content.Server/GameTicking/GameTicker.Spawning.cs +++ b/Content.Server/GameTicking/GameTicker.Spawning.cs @@ -3,20 +3,20 @@ using System.Numerics; using Content.Server.Administration.Managers; using Content.Server.Ghost; -using Content.Server.Players; using Content.Server.Spawners.Components; using Content.Server.Speech.Components; using Content.Server.Station.Components; using Content.Shared.CCVar; using Content.Shared.Database; +using Content.Shared.Players; using Content.Shared.Preferences; using Content.Shared.Roles; using Content.Shared.Roles.Jobs; using JetBrains.Annotations; -using Robust.Server.Player; using Robust.Shared.Map; using Robust.Shared.Map.Components; using Robust.Shared.Network; +using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Random; using Robust.Shared.Utility; @@ -29,7 +29,7 @@ public sealed partial class GameTicker [Dependency] private readonly SharedJobSystem _jobs = default!; [ValidatePrototypeId] - private const string ObserverPrototypeName = "MobObserver"; + public const string ObserverPrototypeName = "MobObserver"; /// /// How many players have joined the round through normal methods. @@ -52,7 +52,7 @@ private List GetSpawnableStations() return spawnableStations; } - private void SpawnPlayers(List readyPlayers, Dictionary profiles, bool force) + private void SpawnPlayers(List readyPlayers, Dictionary profiles, bool force) { // Allow game rules to spawn players by themselves if needed. (For example, nuke ops or wizard) RaiseLocalEvent(new RulePlayerSpawningEvent(readyPlayers, profiles, force)); @@ -116,7 +116,7 @@ private void SpawnPlayers(List readyPlayers, Dictionary _playerManager.GetSessionByUserId(x)).ToArray(), profiles, force)); } - private void SpawnPlayer(IPlayerSession player, EntityUid station, string? jobId = null, bool lateJoin = true, bool silent = false) + private void SpawnPlayer(ICommonSession player, EntityUid station, string? jobId = null, bool lateJoin = true, bool silent = false) { var character = GetPlayerProfile(player); @@ -129,7 +129,7 @@ private void SpawnPlayer(IPlayerSession player, EntityUid station, string? jobId SpawnPlayer(player, character, station, jobId, lateJoin, silent); } - private void SpawnPlayer(IPlayerSession player, HumanoidCharacterProfile character, EntityUid station, string? jobId = null, bool lateJoin = true, bool silent = false) + private void SpawnPlayer(ICommonSession player, HumanoidCharacterProfile character, EntityUid station, string? jobId = null, bool lateJoin = true, bool silent = false) { // Can't spawn players with a dummy ticker! if (DummyTicker) @@ -271,7 +271,7 @@ private void SpawnPlayer(IPlayerSession player, HumanoidCharacterProfile charact RaiseLocalEvent(mob, aev, true); } - public void Respawn(IPlayerSession player) + public void Respawn(ICommonSession player) { _mind.WipeMind(player); _adminLogger.Add(LogType.Respawn, LogImpact.Medium, $"Player {player} was respawned."); @@ -289,7 +289,7 @@ public void Respawn(IPlayerSession player) /// The station they're spawning on /// An optional job for them to spawn as /// Whether or not the player should be greeted upon joining - public void MakeJoinGame(IPlayerSession player, EntityUid station, string? jobId = null, bool silent = false) + public void MakeJoinGame(ICommonSession player, EntityUid station, string? jobId = null, bool silent = false) { if (!_playerGameStatuses.ContainsKey(player.UserId)) return; @@ -303,7 +303,7 @@ public void MakeJoinGame(IPlayerSession player, EntityUid station, string? jobId /// /// Causes the given player to join the current game as observer ghost. See also /// - public void JoinAsObserver(IPlayerSession player) + public void JoinAsObserver(ICommonSession player) { // Can't spawn players with a dummy ticker! if (DummyTicker) @@ -317,7 +317,7 @@ public void JoinAsObserver(IPlayerSession player) /// Spawns an observer ghost and attaches the given player to it. If the player does not yet have a mind, the /// player is given a new mind with the observer role. Otherwise, the current mind is transferred to the ghost. /// - public void SpawnObserver(IPlayerSession player) + public void SpawnObserver(ICommonSession player) { if (DummyTicker) return; @@ -430,13 +430,13 @@ public EntityCoordinates GetObserverSpawnPoint() [PublicAPI] public sealed class PlayerBeforeSpawnEvent : HandledEntityEventArgs { - public IPlayerSession Player { get; } + public ICommonSession Player { get; } public HumanoidCharacterProfile Profile { get; } public string? JobId { get; } public bool LateJoin { get; } public EntityUid Station { get; } - public PlayerBeforeSpawnEvent(IPlayerSession player, HumanoidCharacterProfile profile, string? jobId, bool lateJoin, EntityUid station) + public PlayerBeforeSpawnEvent(ICommonSession player, HumanoidCharacterProfile profile, string? jobId, bool lateJoin, EntityUid station) { Player = player; Profile = profile; @@ -455,7 +455,7 @@ public PlayerBeforeSpawnEvent(IPlayerSession player, HumanoidCharacterProfile pr public sealed class PlayerSpawnCompleteEvent : EntityEventArgs { public EntityUid Mob { get; } - public IPlayerSession Player { get; } + public ICommonSession Player { get; } public string? JobId { get; } public bool LateJoin { get; } public EntityUid Station { get; } @@ -464,7 +464,7 @@ public sealed class PlayerSpawnCompleteEvent : EntityEventArgs // Ex. If this is the 27th person to join, this will be 27. public int JoinOrder { get; } - public PlayerSpawnCompleteEvent(EntityUid mob, IPlayerSession player, string? jobId, bool lateJoin, int joinOrder, EntityUid station, HumanoidCharacterProfile profile) + public PlayerSpawnCompleteEvent(EntityUid mob, ICommonSession player, string? jobId, bool lateJoin, int joinOrder, EntityUid station, HumanoidCharacterProfile profile) { Mob = mob; Player = player; diff --git a/Content.Server/GameTicking/Rules/Components/RevolutionaryRuleComponent.cs b/Content.Server/GameTicking/Rules/Components/RevolutionaryRuleComponent.cs index 7d036c615b..e9c8d50cdc 100644 --- a/Content.Server/GameTicking/Rules/Components/RevolutionaryRuleComponent.cs +++ b/Content.Server/GameTicking/Rules/Components/RevolutionaryRuleComponent.cs @@ -39,7 +39,7 @@ public sealed partial class RevolutionaryRuleComponent : Component /// Sound that plays when you are chosen as Rev. (Placeholder until I find something cool I guess) /// [DataField] - public SoundSpecifier HeadRevStartSound = new SoundPathSpecifier("/Audio/Ambience/Antag/traitor_start.ogg"); + public SoundSpecifier HeadRevStartSound = new SoundPathSpecifier("/Audio/Ambience/Antag/headrev_start.ogg"); /// /// Min players needed for Revolutionary gamemode to start. diff --git a/Content.Server/GameTicking/Rules/Components/TraitorRuleComponent.cs b/Content.Server/GameTicking/Rules/Components/TraitorRuleComponent.cs index 883abef52f..7af87179d6 100644 --- a/Content.Server/GameTicking/Rules/Components/TraitorRuleComponent.cs +++ b/Content.Server/GameTicking/Rules/Components/TraitorRuleComponent.cs @@ -1,7 +1,7 @@ using Content.Shared.Preferences; using Content.Shared.Roles; -using Robust.Server.Player; using Robust.Shared.Audio; +using Robust.Shared.Player; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Server.GameTicking.Rules.Components; @@ -26,7 +26,7 @@ public enum SelectionState public SelectionState SelectionStatus = SelectionState.WaitingForSpawn; public TimeSpan AnnounceAt = TimeSpan.Zero; - public Dictionary StartCandidates = new(); + public Dictionary StartCandidates = new(); /// /// Path to antagonist alert sound. diff --git a/Content.Server/GameTicking/Rules/InactivityTimeRestartRuleSystem.cs b/Content.Server/GameTicking/Rules/InactivityTimeRestartRuleSystem.cs index c2e91ba4a5..b775b7af56 100644 --- a/Content.Server/GameTicking/Rules/InactivityTimeRestartRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/InactivityTimeRestartRuleSystem.cs @@ -2,6 +2,7 @@ using Content.Server.Chat.Managers; using Content.Server.GameTicking.Rules.Components; using Robust.Server.Player; +using Robust.Shared.Player; using Timer = Robust.Shared.Timing.Timer; namespace Content.Server.GameTicking.Rules; diff --git a/Content.Server/GameTicking/Rules/KillCalloutRuleSystem.cs b/Content.Server/GameTicking/Rules/KillCalloutRuleSystem.cs index 94eeb5de56..01fd97d9a7 100644 --- a/Content.Server/GameTicking/Rules/KillCalloutRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/KillCalloutRuleSystem.cs @@ -2,8 +2,8 @@ using Content.Server.GameTicking.Rules.Components; using Content.Server.KillTracking; using Content.Shared.Chat; -using Robust.Server.GameObjects; using Robust.Server.Player; +using Robust.Shared.Player; using Robust.Shared.Random; namespace Content.Server.GameTicking.Rules; diff --git a/Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs b/Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs index 13d4ed71c8..779c47885f 100644 --- a/Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/NukeopsRuleSystem.cs @@ -334,7 +334,7 @@ private void OnRoundStart(EntityUid uid, NukeopsRuleComponent? component = null) var eligibleQuery = EntityQueryEnumerator(); while (eligibleQuery.MoveNext(out var eligibleUid, out var eligibleComp, out var member)) { - if (!_npcFaction.IsFactionFriendly(component.Faction, eligibleUid, member)) + if (!_npcFaction.IsFactionHostile(component.Faction, eligibleUid, member)) continue; eligible.Add((eligibleUid, eligibleComp, member)); @@ -349,8 +349,7 @@ private void OnRoundStart(EntityUid uid, NukeopsRuleComponent? component = null) var query = EntityQueryEnumerator(); while (query.MoveNext(out _, out var nukeops, out var actor)) { - _chatManager.DispatchServerMessage(actor.PlayerSession, Loc.GetString("nukeops-welcome", ("station", component.TargetStation.Value))); - _audio.PlayGlobal(nukeops.GreetSoundNotification, actor.PlayerSession); + NotifyNukie(actor.PlayerSession, nukeops, component); filter.AddPlayer(actor.PlayerSession); } } @@ -602,11 +601,11 @@ private void OnPlayersSpawning(RulePlayerSpawningEvent ev) var maxOperatives = nukeops.MaxOps; // Dear lord what is happening HERE. - var everyone = new List(ev.PlayerPool); - var prefList = new List(); - var medPrefList = new List(); - var cmdrPrefList = new List(); - var operatives = new List(); + var everyone = new List(ev.PlayerPool); + var prefList = new List(); + var medPrefList = new List(); + var cmdrPrefList = new List(); + var operatives = new List(); // The LINQ expression ReSharper keeps suggesting is completely unintelligible so I'm disabling it // ReSharper disable once ForeachCanBeConvertedToQueryUsingAnotherGetEnumerator @@ -637,7 +636,7 @@ private void OnPlayersSpawning(RulePlayerSpawningEvent ev) for (var i = 0; i < numNukies; i++) { // TODO: Please fix this if you touch it. - IPlayerSession nukeOp; + ICommonSession nukeOp; // Only one commander, so we do it at the start if (i == 0) { @@ -793,10 +792,7 @@ private void OnMindAdded(EntityUid uid, NukeOperativeComponent component, MindAd if (nukeops.TargetStation != null && !string.IsNullOrEmpty(Name(nukeops.TargetStation.Value))) { - _chatManager.DispatchServerMessage(playerSession, Loc.GetString("nukeops-welcome", ("station", nukeops.TargetStation.Value))); - - // Notificate player about new role assignment - _audio.PlayGlobal(component.GreetSoundNotification, playerSession); + NotifyNukie(playerSession, component, nukeops); } } } @@ -908,7 +904,7 @@ private void SetupOperativeEntity(EntityUid mob, string name, string gear, Human _npcFaction.AddFaction(mob, "Syndicate"); } - private void SpawnOperatives(int spawnCount, List sessions, bool addSpawnPoints, NukeopsRuleComponent component) + private void SpawnOperatives(int spawnCount, List sessions, bool addSpawnPoints, NukeopsRuleComponent component) { if (component.NukieOutpost == null) return; @@ -987,13 +983,25 @@ private void SpawnOperativesForGhostRoles(EntityUid uid, NukeopsRuleComponent? c var playersPerOperative = component.PlayersPerOperative; var maxOperatives = component.MaxOps; - var playerPool = _playerManager.ServerSessions.ToList(); + var playerPool = _playerManager.Sessions.ToList(); var numNukies = MathHelper.Clamp(playerPool.Count / playersPerOperative, 1, maxOperatives); - var operatives = new List(); + var operatives = new List(); SpawnOperatives(numNukies, operatives, true, component); } + /// + /// Display a greeting message and play a sound for a nukie + /// + private void NotifyNukie(ICommonSession session, NukeOperativeComponent nukeop, NukeopsRuleComponent nukeopsRule) + { + if (nukeopsRule.TargetStation is not { } station) + return; + + _chatManager.DispatchServerMessage(session, Loc.GetString("nukeops-welcome", ("station", station))); + _audio.PlayGlobal(nukeop.GreetSoundNotification, session); + } + //For admins forcing someone to nukeOps. public void MakeLoneNukie(EntityUid mindId, MindComponent mind) { diff --git a/Content.Server/GameTicking/Rules/PiratesRuleSystem.cs b/Content.Server/GameTicking/Rules/PiratesRuleSystem.cs index b223161c10..0785d81d09 100644 --- a/Content.Server/GameTicking/Rules/PiratesRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/PiratesRuleSystem.cs @@ -15,10 +15,10 @@ using Content.Shared.Roles; using Robust.Server.GameObjects; using Robust.Server.Maps; -using Robust.Server.Player; using Robust.Shared.Configuration; using Robust.Shared.Enums; using Robust.Shared.Map; +using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Random; using Robust.Shared.Utility; @@ -141,7 +141,7 @@ private void OnPlayerSpawningEvent(RulePlayerSpawningEvent ev) (int) Math.Min( Math.Floor((double) ev.PlayerPool.Count / _cfg.GetCVar(CCVars.PiratesPlayersPerOp)), _cfg.GetCVar(CCVars.PiratesMaxOps))); - var ops = new IPlayerSession[numOps]; + var ops = new ICommonSession[numOps]; for (var i = 0; i < numOps; i++) { ops[i] = _random.PickAndTake(ev.PlayerPool); diff --git a/Content.Server/GameTicking/Rules/RespawnRuleSystem.cs b/Content.Server/GameTicking/Rules/RespawnRuleSystem.cs index a286808623..94f4072243 100644 --- a/Content.Server/GameTicking/Rules/RespawnRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/RespawnRuleSystem.cs @@ -1,14 +1,14 @@ using Content.Server.Chat.Managers; using Content.Server.GameTicking.Rules.Components; -using Content.Server.Players; using Content.Server.Station.Systems; using Content.Shared.Chat; using Content.Shared.Interaction.Events; using Content.Shared.Mind; using Content.Shared.Mobs; -using Robust.Server.GameObjects; +using Content.Shared.Players; using Robust.Server.Player; using Robust.Shared.Network; +using Robust.Shared.Player; using Robust.Shared.Timing; using Robust.Shared.Utility; diff --git a/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs b/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs index 01317dbfc1..ef949d09fc 100644 --- a/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/TraitorRuleSystem.cs @@ -17,9 +17,8 @@ using Content.Shared.Preferences; using Content.Shared.Roles; using Content.Shared.Roles.Jobs; -using Robust.Server.Player; using Robust.Shared.Configuration; -using Robust.Shared.Players; +using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Random; using Robust.Shared.Timing; @@ -151,9 +150,9 @@ private void OnPlayersSpawned(RulePlayerJobsAssignedEvent ev) } } - private List FindPotentialTraitors(in Dictionary candidates, TraitorRuleComponent component) + private List FindPotentialTraitors(in Dictionary candidates, TraitorRuleComponent component) { - var list = new List(); + var list = new List(); var pendingQuery = GetEntityQuery(); foreach (var player in candidates.Keys) @@ -171,7 +170,7 @@ private List FindPotentialTraitors(in Dictionary(); + var prefList = new List(); foreach (var player in list) { @@ -189,9 +188,9 @@ private List FindPotentialTraitors(in Dictionary PickTraitors(int traitorCount, List prefList) + private List PickTraitors(int traitorCount, List prefList) { - var results = new List(traitorCount); + var results = new List(traitorCount); if (prefList.Count == 0) { Log.Info("Insufficient ready players to fill up with traitors, stopping the selection."); diff --git a/Content.Server/GameTicking/Rules/ZombieRuleSystem.cs b/Content.Server/GameTicking/Rules/ZombieRuleSystem.cs index 82ae4b8fa6..a4febc385c 100644 --- a/Content.Server/GameTicking/Rules/ZombieRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/ZombieRuleSystem.cs @@ -23,7 +23,7 @@ using Robust.Server.GameObjects; using Robust.Server.Player; using Robust.Shared.Configuration; -using Robust.Shared.Prototypes; +using Robust.Shared.Player; using Robust.Shared.Random; using Robust.Shared.Timing; @@ -264,9 +264,9 @@ private void InfectInitialPlayers(ZombieRuleComponent component) return; component.InfectedChosen = true; - var allPlayers = _playerManager.ServerSessions.ToList(); - var playerList = new List(); - var prefList = new List(); + var allPlayers = _playerManager.Sessions.ToList(); + var playerList = new List(); + var prefList = new List(); foreach (var player in allPlayers) { if (player.AttachedEntity == null || !HasComp(player.AttachedEntity) || HasComp(player.AttachedEntity)) @@ -288,7 +288,7 @@ private void InfectInitialPlayers(ZombieRuleComponent component) var totalInfected = 0; while (totalInfected < numInfected) { - IPlayerSession zombie; + ICommonSession zombie; if (prefList.Count == 0) { if (playerList.Count == 0) diff --git a/Content.Server/Ghost/Ghost.cs b/Content.Server/Ghost/Ghost.cs index d04b1197af..1453bf3faa 100644 --- a/Content.Server/Ghost/Ghost.cs +++ b/Content.Server/Ghost/Ghost.cs @@ -1,7 +1,6 @@ using Content.Server.GameTicking; using Content.Shared.Administration; using Content.Shared.Mind; -using Robust.Server.Player; using Robust.Shared.Console; namespace Content.Server.Ghost @@ -17,7 +16,7 @@ public sealed class Ghost : IConsoleCommand public void Execute(IConsoleShell shell, string argStr, string[] args) { - var player = shell.Player as IPlayerSession; + var player = shell.Player; if (player == null) { shell.WriteLine("You have no session, you can't ghost."); diff --git a/Content.Server/Ghost/GhostSystem.cs b/Content.Server/Ghost/GhostSystem.cs index 6789be390e..9a0b74e2df 100644 --- a/Content.Server/Ghost/GhostSystem.cs +++ b/Content.Server/Ghost/GhostSystem.cs @@ -20,6 +20,7 @@ using Robust.Server.Player; using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Systems; +using Robust.Shared.Player; using Robust.Shared.Timing; namespace Content.Server.Ghost diff --git a/Content.Server/Ghost/Roles/Components/TakeGhostRoleEvent.cs b/Content.Server/Ghost/Roles/Components/TakeGhostRoleEvent.cs index c97e3be9dc..16d46871fe 100644 --- a/Content.Server/Ghost/Roles/Components/TakeGhostRoleEvent.cs +++ b/Content.Server/Ghost/Roles/Components/TakeGhostRoleEvent.cs @@ -1,4 +1,4 @@ -using Robust.Shared.Players; +using Robust.Shared.Player; namespace Content.Server.Ghost.Roles.Components; diff --git a/Content.Server/Ghost/Roles/GhostRoleSystem.cs b/Content.Server/Ghost/Roles/GhostRoleSystem.cs index 95677622db..23d88c253c 100644 --- a/Content.Server/Ghost/Roles/GhostRoleSystem.cs +++ b/Content.Server/Ghost/Roles/GhostRoleSystem.cs @@ -4,7 +4,6 @@ using Content.Server.Ghost.Roles.Events; using Content.Server.Ghost.Roles.UI; using Content.Server.Mind.Commands; -using Content.Server.Players; using Content.Shared.Administration; using Content.Shared.Database; using Content.Shared.Follower; @@ -14,13 +13,14 @@ using Content.Shared.Mind; using Content.Shared.Mind.Components; using Content.Shared.Mobs; +using Content.Shared.Players; using Content.Shared.Roles; using JetBrains.Annotations; using Robust.Server.GameObjects; using Robust.Server.Player; using Robust.Shared.Console; using Robust.Shared.Enums; -using Robust.Shared.Players; +using Robust.Shared.Player; using Robust.Shared.Random; using Robust.Shared.Utility; @@ -98,7 +98,7 @@ private uint GetNextRoleIdentifier() return unchecked(_nextRoleIdentifier++); } - public void OpenEui(IPlayerSession session) + public void OpenEui(ICommonSession session) { if (session.AttachedEntity is not {Valid: true} attached || !EntityManager.HasComponent(attached)) @@ -112,7 +112,7 @@ public void OpenEui(IPlayerSession session) eui.StateDirty(); } - public void OpenMakeGhostRoleEui(IPlayerSession session, EntityUid uid) + public void OpenMakeGhostRoleEui(ICommonSession session, EntityUid uid) { if (session.AttachedEntity == null) return; @@ -421,7 +421,7 @@ public sealed class GhostRoles : IConsoleCommand public void Execute(IConsoleShell shell, string argStr, string[] args) { if(shell.Player != null) - EntitySystem.Get().OpenEui((IPlayerSession)shell.Player); + EntitySystem.Get().OpenEui(shell.Player); else shell.WriteLine("You can only open the ghost roles UI on a client."); } diff --git a/Content.Server/GhostKick/GhostKickUserOnTriggerSystem.cs b/Content.Server/GhostKick/GhostKickUserOnTriggerSystem.cs index bbf7813c16..7dc5fc55ab 100644 --- a/Content.Server/GhostKick/GhostKickUserOnTriggerSystem.cs +++ b/Content.Server/GhostKick/GhostKickUserOnTriggerSystem.cs @@ -1,5 +1,5 @@ using Content.Server.Explosion.EntitySystems; -using Robust.Server.GameObjects; +using Robust.Shared.Player; namespace Content.Server.GhostKick; diff --git a/Content.Server/Gravity/GravityGeneratorSystem.cs b/Content.Server/Gravity/GravityGeneratorSystem.cs index 48002fb823..0bd159f61a 100644 --- a/Content.Server/Gravity/GravityGeneratorSystem.cs +++ b/Content.Server/Gravity/GravityGeneratorSystem.cs @@ -6,7 +6,7 @@ using Content.Shared.Gravity; using Content.Shared.Interaction; using Robust.Server.GameObjects; -using Robust.Shared.Players; +using Robust.Shared.Player; namespace Content.Server.Gravity { @@ -139,7 +139,7 @@ private void SetSwitchedOn(EntityUid uid, GravityGeneratorComponent component, b return; if (session is { AttachedEntity: { } }) - _adminLogger.Add(LogType.Action, on ? LogImpact.Medium : LogImpact.High, $"{ToPrettyString(session.AttachedEntity.Value):player} set ${ToPrettyString(uid):target} to {(on ? "on" : "off")}"); + _adminLogger.Add(LogType.Action, on ? LogImpact.Medium : LogImpact.High, $"{session:player} set ${ToPrettyString(uid):target} to {(on ? "on" : "off")}"); component.SwitchedOn = on; UpdatePowerState(component, powerReceiver); diff --git a/Content.Server/Hands/Systems/HandsSystem.cs b/Content.Server/Hands/Systems/HandsSystem.cs index b5b01ac001..e3e6699537 100644 --- a/Content.Server/Hands/Systems/HandsSystem.cs +++ b/Content.Server/Hands/Systems/HandsSystem.cs @@ -18,12 +18,11 @@ using Content.Shared.Stacks; using Content.Shared.Storage; using Content.Shared.Throwing; -using Robust.Server.Player; using Robust.Shared.Containers; using Robust.Shared.GameStates; using Robust.Shared.Input.Binding; using Robust.Shared.Map; -using Robust.Shared.Players; +using Robust.Shared.Player; using Robust.Shared.Utility; namespace Content.Server.Hands.Systems @@ -159,9 +158,9 @@ private void HandlePullStopped(EntityUid uid, HandsComponent component, PullStop #endregion #region interactions - private bool HandleThrowItem(ICommonSession? session, EntityCoordinates coordinates, EntityUid entity) + private bool HandleThrowItem(ICommonSession? playerSession, EntityCoordinates coordinates, EntityUid entity) { - if (session is not IPlayerSession playerSession) + if (playerSession == null) return false; if (playerSession.AttachedEntity is not {Valid: true} player || @@ -220,7 +219,7 @@ private void HandleSmartEquipBelt(ICommonSession? session) // TODO: move to storage or inventory private void HandleSmartEquip(ICommonSession? session, string equipmentSlot) { - if (session is not IPlayerSession playerSession) + if (session is not { } playerSession) return; if (playerSession.AttachedEntity is not {Valid: true} plyEnt || !Exists(plyEnt)) diff --git a/Content.Server/Holiday/Christmas/LimitedItemGiverSystem.cs b/Content.Server/Holiday/Christmas/LimitedItemGiverSystem.cs index 58cf415a25..cf7f684343 100644 --- a/Content.Server/Holiday/Christmas/LimitedItemGiverSystem.cs +++ b/Content.Server/Holiday/Christmas/LimitedItemGiverSystem.cs @@ -2,7 +2,7 @@ using Content.Server.Popups; using Content.Shared.Interaction; using Content.Shared.Storage; -using Robust.Server.GameObjects; +using Robust.Shared.Player; namespace Content.Server.Holiday.Christmas; diff --git a/Content.Server/Humanoid/Systems/HumanoidAppearanceSystem.Modifier.cs b/Content.Server/Humanoid/Systems/HumanoidAppearanceSystem.Modifier.cs index 7c0bb7383b..05a8b06222 100644 --- a/Content.Server/Humanoid/Systems/HumanoidAppearanceSystem.Modifier.cs +++ b/Content.Server/Humanoid/Systems/HumanoidAppearanceSystem.Modifier.cs @@ -3,7 +3,7 @@ using Content.Shared.Humanoid; using Content.Shared.Verbs; using Robust.Server.GameObjects; -using Robust.Server.Player; +using Robust.Shared.Player; using Robust.Shared.Utility; namespace Content.Server.Humanoid; @@ -48,7 +48,7 @@ private void OnVerbsRequest(EntityUid uid, HumanoidAppearanceComponent component private void OnBaseLayersSet(EntityUid uid, HumanoidAppearanceComponent component, HumanoidMarkingModifierBaseLayersSetMessage message) { - if (message.Session is not IPlayerSession player + if (message.Session is not { } player || !_adminManager.HasAdminFlag(player, AdminFlags.Fun)) { return; @@ -81,7 +81,7 @@ private void OnBaseLayersSet(EntityUid uid, HumanoidAppearanceComponent componen private void OnMarkingsSet(EntityUid uid, HumanoidAppearanceComponent component, HumanoidMarkingModifierMarkingSetMessage message) { - if (message.Session is not IPlayerSession player + if (message.Session is not { } player || !_adminManager.HasAdminFlag(player, AdminFlags.Fun)) { return; diff --git a/Content.Server/Implants/ImplanterSystem.cs b/Content.Server/Implants/ImplanterSystem.cs index f3072769e4..0d46241f41 100644 --- a/Content.Server/Implants/ImplanterSystem.cs +++ b/Content.Server/Implants/ImplanterSystem.cs @@ -1,11 +1,9 @@ -using Content.Server.Guardian; using Content.Server.Popups; using Content.Shared.DoAfter; using Content.Shared.IdentityManagement; using Content.Shared.Implants; using Content.Shared.Implants.Components; using Content.Shared.Interaction; -using Content.Shared.Mobs.Components; using Content.Shared.Popups; using Robust.Shared.Containers; @@ -33,28 +31,39 @@ private void OnImplanterAfterInteract(EntityUid uid, ImplanterComponent componen if (args.Target == null || !args.CanReach || args.Handled) return; - //Simplemobs and regular mobs should be injectable, but only regular mobs have mind. - //So just don't implant/draw anything that isn't living or is a guardian - //TODO: Rework a bit when surgery is in to work with implant cases - if (!HasComp(args.Target.Value) || HasComp(args.Target.Value)) + var target = args.Target.Value; + if (!CheckTarget(target, component.Whitelist, component.Blacklist)) return; //TODO: Rework when surgery is in for implant cases if (component.CurrentMode == ImplanterToggleMode.Draw && !component.ImplantOnly) { - TryDraw(component, args.User, args.Target.Value, uid); + TryDraw(component, args.User, target, uid); } else { - if (!CanImplant(args.User, args.Target.Value, uid, component, out _, out _)) + if (!CanImplant(args.User, target, uid, component, out var implant, out _)) + { + // no popup if implant doesn't exist + if (implant == null) + return; + + // show popup to the user saying implant failed + var name = Identity.Name(target, EntityManager, args.User); + var msg = Loc.GetString("implanter-component-implant-failed", ("implant", implant), ("target", name)); + _popup.PopupEntity(msg, target, args.User); + // prevent further interaction since popup was shown + args.Handled = true; return; + } //Implant self instantly, otherwise try to inject the target. - if (args.User == args.Target) - Implant(args.User, args.Target.Value, uid, component); + if (args.User == target) + Implant(target, target, uid, component); else - TryImplant(component, args.User, args.Target.Value, uid); + TryImplant(component, args.User, target, uid); } + args.Handled = true; } diff --git a/Content.Server/Instruments/InstrumentComponent.cs b/Content.Server/Instruments/InstrumentComponent.cs index 810d265314..4302ab6791 100644 --- a/Content.Server/Instruments/InstrumentComponent.cs +++ b/Content.Server/Instruments/InstrumentComponent.cs @@ -1,7 +1,7 @@ using Content.Server.UserInterface; using Content.Shared.Instruments; using Robust.Server.GameObjects; -using Robust.Server.Player; +using Robust.Shared.Player; namespace Content.Server.Instruments; @@ -17,7 +17,7 @@ public sealed partial class InstrumentComponent : SharedInstrumentComponent [ViewVariables] public uint LastSequencerTick = 0; // TODO Instruments: Make this ECS - public IPlayerSession? InstrumentPlayer => + public ICommonSession? InstrumentPlayer => _entMan.GetComponentOrNull(Owner)?.CurrentSingleUser ?? _entMan.GetComponentOrNull(Owner)?.PlayerSession; } diff --git a/Content.Server/Instruments/InstrumentSystem.cs b/Content.Server/Instruments/InstrumentSystem.cs index ec23382105..6f8369182c 100644 --- a/Content.Server/Instruments/InstrumentSystem.cs +++ b/Content.Server/Instruments/InstrumentSystem.cs @@ -9,12 +9,12 @@ using Content.Shared.Popups; using JetBrains.Annotations; using Robust.Server.GameObjects; -using Robust.Server.Player; using Robust.Shared.Audio.Midi; using Robust.Shared.Collections; using Robust.Shared.Configuration; using Robust.Shared.Console; using Robust.Shared.GameStates; +using Robust.Shared.Player; using Robust.Shared.Timing; namespace Content.Server.Instruments; @@ -385,7 +385,7 @@ public override void Update(float frameTime) var nearby = GetBands(entity); _bui.TrySendUiMessage(entity, request.UiKey, new InstrumentBandResponseBuiMessage(nearby), - (IPlayerSession)request.Session); + request.Session); } _bandRequestQueue.Clear(); @@ -447,7 +447,7 @@ public override void Update(float frameTime) } } - public void ToggleInstrumentUi(EntityUid uid, IPlayerSession session, InstrumentComponent? component = null) + public void ToggleInstrumentUi(EntityUid uid, ICommonSession session, InstrumentComponent? component = null) { if (!Resolve(uid, ref component)) return; diff --git a/Content.Server/Interaction/InteractionSystem.cs b/Content.Server/Interaction/InteractionSystem.cs index a612b73840..8d4e8eb818 100644 --- a/Content.Server/Interaction/InteractionSystem.cs +++ b/Content.Server/Interaction/InteractionSystem.cs @@ -1,20 +1,10 @@ - - -using Content.Server.Administration.Logs; -using Content.Server.Pulling; using Content.Shared.ActionBlocker; -using Content.Shared.DragDrop; -using Content.Shared.Input; using Content.Shared.Interaction; -using Content.Shared.Pulling.Components; using Content.Shared.Storage; using JetBrains.Annotations; using Robust.Server.GameObjects; using Robust.Shared.Containers; -using Robust.Shared.Input.Binding; -using Robust.Shared.Map; -using Robust.Shared.Players; -using Robust.Shared.Random; +using Robust.Shared.Player; namespace Content.Server.Interaction { diff --git a/Content.Server/Interaction/TilePryCommand.cs b/Content.Server/Interaction/TilePryCommand.cs index 4fe3599df9..fa75b6d9e4 100644 --- a/Content.Server/Interaction/TilePryCommand.cs +++ b/Content.Server/Interaction/TilePryCommand.cs @@ -1,10 +1,7 @@ using System.Numerics; using Content.Server.Administration; -using Content.Server.Tools.Components; using Content.Shared.Administration; using Content.Shared.Maps; -using Content.Shared.Tools.Components; -using Robust.Server.Player; using Robust.Shared.Console; using Robust.Shared.Map; @@ -24,7 +21,7 @@ sealed class TilePryCommand : IConsoleCommand public void Execute(IConsoleShell shell, string argStr, string[] args) { - var player = shell.Player as IPlayerSession; + var player = shell.Player; if (player?.AttachedEntity is not {} attached) { return; diff --git a/Content.Server/KillTracking/KillTrackingSystem.cs b/Content.Server/KillTracking/KillTrackingSystem.cs index 177f28ddc8..afb4283e82 100644 --- a/Content.Server/KillTracking/KillTrackingSystem.cs +++ b/Content.Server/KillTracking/KillTrackingSystem.cs @@ -2,7 +2,7 @@ using Content.Shared.Damage; using Content.Shared.FixedPoint; using Content.Shared.Mobs; -using Robust.Server.GameObjects; +using Robust.Shared.Player; namespace Content.Server.KillTracking; diff --git a/Content.Server/Labels/Label/HandLabelerSystem.cs b/Content.Server/Labels/Label/HandLabelerSystem.cs index dc7b9de0f8..dec7d69759 100644 --- a/Content.Server/Labels/Label/HandLabelerSystem.cs +++ b/Content.Server/Labels/Label/HandLabelerSystem.cs @@ -5,6 +5,7 @@ using Content.Shared.Database; using Content.Shared.Interaction; using Content.Shared.Labels; +using Content.Shared.Tag; using Content.Shared.Verbs; using JetBrains.Annotations; using Robust.Server.GameObjects; @@ -22,6 +23,10 @@ public sealed class HandLabelerSystem : EntitySystem [Dependency] private readonly PopupSystem _popupSystem = default!; [Dependency] private readonly LabelSystem _labelSystem = default!; [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; + [Dependency] private readonly TagSystem _tagSystem = default!; + + [ValidatePrototypeId] + private const string PreventTag = "PreventLabel"; public override void Initialize() { @@ -35,7 +40,8 @@ public override void Initialize() private void OnUtilityVerb(EntityUid uid, HandLabelerComponent handLabeler, GetVerbsEvent args) { - if (args.Target is not { Valid: true } target || !handLabeler.Whitelist.IsValid(target) || !args.CanAccess) + if (args.Target is not { Valid: true } target || !handLabeler.Whitelist.IsValid(target) || !args.CanAccess + || _tagSystem.HasTag(target, PreventTag)) // DeltaV - Prevent labels on certain items return; string labelerText = handLabeler.AssignedLabel == string.Empty ? Loc.GetString("hand-labeler-remove-label-text") : Loc.GetString("hand-labeler-add-label-text"); @@ -56,7 +62,8 @@ private void OnUtilityVerb(EntityUid uid, HandLabelerComponent handLabeler, GetV private void AfterInteractOn(EntityUid uid, HandLabelerComponent handLabeler, AfterInteractEvent args) { - if (args.Target is not {Valid: true} target || !handLabeler.Whitelist.IsValid(target) || !args.CanReach) + if (args.Target is not {Valid: true} target || !handLabeler.Whitelist.IsValid(target) || !args.CanReach + || _tagSystem.HasTag(target, PreventTag)) // DeltaV - Prevent labels on certain items return; AddLabelTo(uid, handLabeler, target, out string? result); diff --git a/Content.Server/Labels/Label/LabelSystem.cs b/Content.Server/Labels/Label/LabelSystem.cs index 23f2851665..8a30e98901 100644 --- a/Content.Server/Labels/Label/LabelSystem.cs +++ b/Content.Server/Labels/Label/LabelSystem.cs @@ -3,6 +3,7 @@ using Content.Shared.Containers.ItemSlots; using Content.Shared.Examine; using Content.Shared.Labels; +using Content.Shared.Tag; using JetBrains.Annotations; using Robust.Server.GameObjects; using Robust.Shared.Containers; @@ -19,8 +20,11 @@ public sealed class LabelSystem : EntitySystem [Dependency] private readonly ItemSlotsSystem _itemSlotsSystem = default!; [Dependency] private readonly SharedAppearanceSystem _appearance = default!; [Dependency] private readonly MetaDataSystem _metaData = default!; + [Dependency] private readonly TagSystem _tagSystem = default!; public const string ContainerName = "paper_label"; + [ValidatePrototypeId] + private const string PreventTag = "PreventLabel"; public override void Initialize() { @@ -45,6 +49,8 @@ public void Label(EntityUid uid, string? text, MetaDataComponent? metadata = nul { if (!Resolve(uid, ref metadata)) return; + if (_tagSystem.HasTag(uid, PreventTag)) // DeltaV - Prevent labels on certain items + return; if (!Resolve(uid, ref label, false)) label = EnsureComp(uid); diff --git a/Content.Server/MagicMirror/MagicMirrorSystem.cs b/Content.Server/MagicMirror/MagicMirrorSystem.cs index 90a0b19b7d..a599a2c868 100644 --- a/Content.Server/MagicMirror/MagicMirrorSystem.cs +++ b/Content.Server/MagicMirror/MagicMirrorSystem.cs @@ -5,8 +5,7 @@ using Content.Shared.Humanoid.Markings; using Content.Shared.MagicMirror; using Robust.Server.GameObjects; -using Robust.Server.Player; -using Robust.Shared.Players; +using Robust.Shared.Player; namespace Content.Server.MagicMirror; @@ -147,7 +146,7 @@ private void OnMagicMirrorAddSlot(EntityUid uid, MagicMirrorComponent component, private void UpdateInterface(EntityUid uid, EntityUid playerUid, ICommonSession session, HumanoidAppearanceComponent? humanoid = null) { - if (!Resolve(playerUid, ref humanoid) || session is not IPlayerSession player) + if (!Resolve(playerUid, ref humanoid) || session is not { } player) { return; } diff --git a/Content.Server/Mapping/MappingCommand.cs b/Content.Server/Mapping/MappingCommand.cs index e4a4cd8942..d72a5c4178 100644 --- a/Content.Server/Mapping/MappingCommand.cs +++ b/Content.Server/Mapping/MappingCommand.cs @@ -40,7 +40,7 @@ public CompletionResult GetCompletion(IConsoleShell shell, string[] args) public void Execute(IConsoleShell shell, string argStr, string[] args) { - if (shell.Player is not IPlayerSession player) + if (shell.Player is not { } player) { shell.WriteError(Loc.GetString("cmd-savemap-server")); return; diff --git a/Content.Server/Maps/GridDraggingSystem.cs b/Content.Server/Maps/GridDraggingSystem.cs index 90770af1ad..7d7b61955b 100644 --- a/Content.Server/Maps/GridDraggingSystem.cs +++ b/Content.Server/Maps/GridDraggingSystem.cs @@ -1,10 +1,9 @@ using Content.Shared.Maps; using Robust.Server.Console; -using Robust.Server.Player; -using Robust.Shared.Players; using Robust.Shared.Utility; using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Systems; +using Robust.Shared.Player; namespace Content.Server.Maps; @@ -27,7 +26,7 @@ public override void Initialize() public void Toggle(ICommonSession session) { - if (session is not IPlayerSession pSession) + if (session is not { } pSession) return; DebugTools.Assert(_admin.CanCommand(pSession, CommandName)); @@ -52,7 +51,7 @@ private void OnRequestVelocity(GridDragVelocityRequest ev, EntitySessionEventArg { var grid = GetEntity(ev.Grid); - if (args.SenderSession is not IPlayerSession playerSession || + if (args.SenderSession is not { } playerSession || !_admin.CanCommand(playerSession, CommandName) || !Exists(grid) || Deleted(grid)) @@ -69,7 +68,7 @@ private void OnRequestDrag(GridDragRequestPosition msg, EntitySessionEventArgs a { var grid = GetEntity(msg.Grid); - if (args.SenderSession is not IPlayerSession playerSession || + if (args.SenderSession is not { } playerSession || !_admin.CanCommand(playerSession, CommandName) || !Exists(grid) || Deleted(grid)) diff --git a/Content.Server/MassMedia/Systems/NewsSystem.cs b/Content.Server/MassMedia/Systems/NewsSystem.cs index 98bfe702b6..93663474ac 100644 --- a/Content.Server/MassMedia/Systems/NewsSystem.cs +++ b/Content.Server/MassMedia/Systems/NewsSystem.cs @@ -18,6 +18,7 @@ using Content.Shared.PDA; using Robust.Server.GameObjects; using Robust.Shared.Containers; +using Robust.Shared.Player; using Robust.Shared.Timing; namespace Content.Server.MassMedia.Systems; @@ -210,7 +211,6 @@ private void TryNotify() continue; _ringer.RingerPlayRingtone(uid, ringer); - break; } } diff --git a/Content.Server/Mech/Systems/MechSystem.cs b/Content.Server/Mech/Systems/MechSystem.cs index fd8f8fd767..a0ca94197e 100644 --- a/Content.Server/Mech/Systems/MechSystem.cs +++ b/Content.Server/Mech/Systems/MechSystem.cs @@ -20,6 +20,7 @@ using Robust.Server.GameObjects; using Robust.Shared.Containers; using Robust.Shared.Map; +using Robust.Shared.Player; namespace Content.Server.Mech.Systems; diff --git a/Content.Server/Medical/DefibrillatorSystem.cs b/Content.Server/Medical/DefibrillatorSystem.cs index 4ffa9f558d..d041f8ee9d 100644 --- a/Content.Server/Medical/DefibrillatorSystem.cs +++ b/Content.Server/Medical/DefibrillatorSystem.cs @@ -18,7 +18,7 @@ using Content.Shared.Mobs.Systems; using Content.Shared.Timing; using Content.Shared.Toggleable; -using Robust.Shared.Players; +using Robust.Shared.Player; using Robust.Shared.Timing; namespace Content.Server.Medical; diff --git a/Content.Server/Medical/HealthAnalyzerSystem.cs b/Content.Server/Medical/HealthAnalyzerSystem.cs index 6e2f7fdf36..cde361ec74 100644 --- a/Content.Server/Medical/HealthAnalyzerSystem.cs +++ b/Content.Server/Medical/HealthAnalyzerSystem.cs @@ -8,6 +8,7 @@ using Robust.Server.GameObjects; using Content.Server.Temperature.Components; using Content.Server.Body.Components; +using Robust.Shared.Player; namespace Content.Server.Medical { diff --git a/Content.Server/Mind/Commands/RenameCommand.cs b/Content.Server/Mind/Commands/RenameCommand.cs index 2d65adc508..bb7d89ddf5 100644 --- a/Content.Server/Mind/Commands/RenameCommand.cs +++ b/Content.Server/Mind/Commands/RenameCommand.cs @@ -9,9 +9,9 @@ using Content.Shared.Mind; using Content.Shared.PDA; using Content.Shared.StationRecords; -using Robust.Server.GameObjects; using Robust.Server.Player; using Robust.Shared.Console; +using Robust.Shared.Player; namespace Content.Server.Mind.Commands; diff --git a/Content.Server/Mind/MindSystem.cs b/Content.Server/Mind/MindSystem.cs index d2721db7b6..f23e9b6407 100644 --- a/Content.Server/Mind/MindSystem.cs +++ b/Content.Server/Mind/MindSystem.cs @@ -11,7 +11,9 @@ using Robust.Server.GameStates; using Robust.Server.Player; using Robust.Shared.Map; +using Robust.Shared.Map.Components; using Robust.Shared.Network; +using Robust.Shared.Player; using Robust.Shared.Timing; using Robust.Shared.Utility; @@ -71,51 +73,45 @@ private void OnMindContainerTerminating(EntityUid uid, MindContainerComponent co } TransferTo(mindId, null, createGhost: false, mind: mind); + DebugTools.AssertNull(mind.OwnedEntity); - // Let's not create ghosts if not in the middle of the round. - if (_gameTicker.RunLevel == GameRunLevel.PreRoundLobby) + if (!component.GhostOnShutdown || mind.Session == null || _gameTicker.RunLevel == GameRunLevel.PreRoundLobby) return; - // I just love convoluted entity shutdown logic that results in more entities being spawned. - if (component.GhostOnShutdown && mind.Session != null) - { - var xform = Transform(uid); - var gridId = xform.GridUid; - var spawnPosition = Transform(uid).Coordinates; - - // Use a regular timer here because the entity has probably been deleted. - Timer.Spawn(0, () => - { - // Make extra sure the round didn't end between spawning the timer and it being executed. - if (_gameTicker.RunLevel == GameRunLevel.PreRoundLobby) - return; + var xform = Transform(uid); + var gridId = xform.GridUid; + var spawnPosition = Transform(uid).Coordinates; - // Async this so that we don't throw if the grid we're on is being deleted. - if (!_maps.GridExists(gridId)) - spawnPosition = _gameTicker.GetObserverSpawnPoint(); + // Use a regular timer here because the entity has probably been deleted. + Timer.Spawn(0, () => + { + // Make extra sure the round didn't end between spawning the timer and it being executed. + if (_gameTicker.RunLevel == GameRunLevel.PreRoundLobby) + return; - // TODO refactor observer spawning. - // please. - if (!spawnPosition.IsValid(EntityManager)) - { - // This should be an error, if it didn't cause tests to start erroring when they delete a player. - Log.Warning($"Entity \"{ToPrettyString(uid)}\" for {mind.CharacterName} was deleted, and no applicable spawn location is available."); - TransferTo(mindId, null, createGhost: false, mind: mind); - return; - } + // Async this so that we don't throw if the grid we're on is being deleted. + if (!HasComp(gridId)) + spawnPosition = _gameTicker.GetObserverSpawnPoint(); - var ghost = Spawn("MobObserver", spawnPosition); - var ghostComponent = Comp(ghost); - _ghosts.SetCanReturnToBody(ghostComponent, false); + // TODO refactor observer spawning. + // please. + if (!spawnPosition.IsValid(EntityManager)) + { + // This should be an error, if it didn't cause tests to start erroring when they delete a player. + Log.Warning($"Entity \"{ToPrettyString(uid)}\" for {mind.CharacterName} was deleted, and no applicable spawn location is available."); + TransferTo(mindId, null, createGhost: false, mind: mind); + return; + } - // Log these to make sure they're not causing the GameTicker round restart bugs... - Log.Debug($"Entity \"{ToPrettyString(uid)}\" for {mind.CharacterName} was deleted, spawned \"{ToPrettyString(ghost)}\"."); + var ghost = Spawn(GameTicker.ObserverPrototypeName, spawnPosition); + var ghostComponent = Comp(ghost); + _ghosts.SetCanReturnToBody(ghostComponent, false); - var val = mind.CharacterName ?? string.Empty; - _metaData.SetEntityName(ghost, val); - TransferTo(mindId, ghost, mind: mind); - }); - } + // Log these to make sure they're not causing the GameTicker round restart bugs... + Log.Debug($"Entity \"{ToPrettyString(uid)}\" for {mind.CharacterName} was deleted, spawned \"{ToPrettyString(ghost)}\"."); + _metaData.SetEntityName(ghost, mind.CharacterName ?? string.Empty); + TransferTo(mindId, ghost, mind: mind); + }); } public override bool TryGetMind(NetUserId user, [NotNullWhen(true)] out EntityUid? mindId, [NotNullWhen(true)] out MindComponent? mind) @@ -130,18 +126,18 @@ public override bool TryGetMind(NetUserId user, [NotNullWhen(true)] out EntityUi return false; } - public bool TryGetSession(EntityUid? mindId, [NotNullWhen(true)] out IPlayerSession? session) + public bool TryGetSession(EntityUid? mindId, [NotNullWhen(true)] out ICommonSession? session) { session = null; - return TryComp(mindId, out MindComponent? mind) && (session = (IPlayerSession?) mind.Session) != null; + return TryComp(mindId, out MindComponent? mind) && (session = mind.Session) != null; } - public IPlayerSession? GetSession(MindComponent mind) + public ICommonSession? GetSession(MindComponent mind) { - return (IPlayerSession?) mind.Session; + return mind.Session; } - public bool TryGetSession(MindComponent mind, [NotNullWhen(true)] out IPlayerSession? session) + public bool TryGetSession(MindComponent mind, [NotNullWhen(true)] out ICommonSession? session) { return (session = GetSession(mind)) != null; } @@ -179,7 +175,9 @@ public override void Visit(EntityUid mindId, EntityUid entity, MindComponent? mi return; } - GetSession(mind)?.AttachToEntity(entity); + if (GetSession(mind) is { } session) + _actor.Attach(entity, session); + mind.VisitingEntity = entity; // EnsureComp instead of AddComp to deal with deferred deletions. @@ -204,7 +202,8 @@ public override void UnVisit(EntityUid mindId, MindComponent? mind = null) return; var owned = mind.OwnedEntity; - GetSession(mind)?.AttachToEntity(owned); + if (GetSession(mind) is { } session) + _actor.Attach(owned, session); if (owned.HasValue) { @@ -294,6 +293,7 @@ public override void TransferTo(EntityUid mindId, EntityUid? entity, bool ghostC if (session != null && !alreadyAttached && mind.VisitingEntity == null) { _actor.Attach(entity, session, true); + DebugTools.Assert(session.AttachedEntity == entity, $"Failed to attach entity."); Log.Info($"Session {session.Name} transferred to entity {entity}."); } diff --git a/Content.Server/Mind/Toolshed/MindCommand.cs b/Content.Server/Mind/Toolshed/MindCommand.cs index b53f9a6a9c..917e6fb7f1 100644 --- a/Content.Server/Mind/Toolshed/MindCommand.cs +++ b/Content.Server/Mind/Toolshed/MindCommand.cs @@ -1,5 +1,5 @@ using Content.Shared.Mind; -using Robust.Server.Player; +using Robust.Shared.Player; using Robust.Shared.Toolshed; using Robust.Shared.Toolshed.Errors; using Robust.Shared.Toolshed.Syntax; @@ -15,7 +15,7 @@ public sealed class MindCommand : ToolshedCommand private SharedMindSystem? _mind; [CommandImplementation("get")] - public MindComponent? Get([PipedArgument] IPlayerSession session) + public MindComponent? Get([PipedArgument] ICommonSession session) { _mind ??= GetSys(); return _mind.TryGetMind(session, out _, out var mind) ? mind : null; @@ -32,7 +32,7 @@ public sealed class MindCommand : ToolshedCommand public EntityUid Control( [CommandInvocationContext] IInvocationContext ctx, [PipedArgument] EntityUid target, - [CommandArgument] ValueRef playerRef) + [CommandArgument] ValueRef playerRef) { _mind ??= GetSys(); diff --git a/Content.Server/Mobs/CritMobActionsSystem.cs b/Content.Server/Mobs/CritMobActionsSystem.cs index 9d0a6b4a85..0f6a6fc9b0 100644 --- a/Content.Server/Mobs/CritMobActionsSystem.cs +++ b/Content.Server/Mobs/CritMobActionsSystem.cs @@ -6,7 +6,7 @@ using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; using Robust.Server.Console; -using Robust.Server.GameObjects; +using Robust.Shared.Player; namespace Content.Server.Mobs; diff --git a/Content.Server/Morgue/MorgueSystem.cs b/Content.Server/Morgue/MorgueSystem.cs index b300336cd2..91fb0ab9f1 100644 --- a/Content.Server/Morgue/MorgueSystem.cs +++ b/Content.Server/Morgue/MorgueSystem.cs @@ -3,7 +3,7 @@ using Content.Shared.Examine; using Content.Shared.Morgue; using Content.Shared.Morgue.Components; -using Robust.Server.GameObjects; +using Robust.Shared.Player; namespace Content.Server.Morgue; diff --git a/Content.Server/Motd/MOTDCommand.cs b/Content.Server/Motd/MOTDCommand.cs index a1aa4d2df5..9e59589b95 100644 --- a/Content.Server/Motd/MOTDCommand.cs +++ b/Content.Server/Motd/MOTDCommand.cs @@ -1,6 +1,5 @@ using Content.Server.Administration.Managers; using Content.Shared.Administration; -using Robust.Server.Player; using Robust.Shared.Console; namespace Content.Server.Motd; @@ -14,10 +13,10 @@ internal sealed class MOTDCommand : LocalizedCommands [Dependency] private readonly IAdminManager _adminManager = default!; public override string Command => "motd"; - + public override void Execute(IConsoleShell shell, string argStr, string[] args) { - var player = (IPlayerSession?)shell.Player; + var player = shell.Player; if (args.Length < 1 || (player != null && _adminManager is AdminManager aMan && !aMan.CanCommand(player, "set-motd"))) shell.ConsoleHost.ExecuteCommand(shell.Player, "get-motd"); else @@ -26,7 +25,7 @@ public override void Execute(IConsoleShell shell, string argStr, string[] args) public override CompletionResult GetCompletion(IConsoleShell shell, string[] args) { - var player = (IPlayerSession?)shell.Player; + var player = shell.Player; if (player != null && _adminManager is AdminManager aMan && !aMan.CanCommand(player, "set-motd")) return CompletionResult.Empty; if (args.Length == 1) diff --git a/Content.Server/Motd/MOTDSystem.cs b/Content.Server/Motd/MOTDSystem.cs index e749fe48f3..39d780f108 100644 --- a/Content.Server/Motd/MOTDSystem.cs +++ b/Content.Server/Motd/MOTDSystem.cs @@ -2,9 +2,9 @@ using Content.Server.GameTicking; using Content.Shared.CCVar; using Content.Shared.Chat; -using Robust.Server.Player; using Robust.Shared.Console; using Robust.Shared.Configuration; +using Robust.Shared.Player; namespace Content.Server.Motd; @@ -41,7 +41,7 @@ public void TrySendMOTD() { if (string.IsNullOrEmpty(_messageOfTheDay)) return; - + var wrappedMessage = Loc.GetString("motd-wrap-message", ("motd", _messageOfTheDay)); _chatManager.ChatMessageToAll(ChatChannel.Server, _messageOfTheDay, wrappedMessage, source: EntityUid.Invalid, hideChat: false, recordReplay: true); } @@ -49,11 +49,11 @@ public void TrySendMOTD() /// /// Sends the Message Of The Day, if any, to a specific player. /// - public void TrySendMOTD(IPlayerSession player) + public void TrySendMOTD(ICommonSession player) { if (string.IsNullOrEmpty(_messageOfTheDay)) return; - + var wrappedMessage = Loc.GetString("motd-wrap-message", ("motd", _messageOfTheDay)); _chatManager.ChatMessageToOne(ChatChannel.Server, _messageOfTheDay, wrappedMessage, source: EntityUid.Invalid, hideChat: false, client: player.ConnectedClient); } @@ -68,10 +68,10 @@ public void TrySendMOTD(IConsoleShell shell) { if (string.IsNullOrEmpty(_messageOfTheDay)) return; - + var wrappedMessage = Loc.GetString("motd-wrap-message", ("motd", _messageOfTheDay)); shell.WriteLine(wrappedMessage); - if (shell.Player is IPlayerSession player) + if (shell.Player is { } player) _chatManager.ChatMessageToOne(ChatChannel.Server, _messageOfTheDay, wrappedMessage, source: EntityUid.Invalid, hideChat: false, client: player.ConnectedClient); } @@ -92,7 +92,7 @@ private void OnMOTDChanged(string val) { if (val == _messageOfTheDay) return; - + _messageOfTheDay = val; TrySendMOTD(); } diff --git a/Content.Server/Motd/SetMOTDCommand.cs b/Content.Server/Motd/SetMOTDCommand.cs index f3f52b0670..9678781c87 100644 --- a/Content.Server/Motd/SetMOTDCommand.cs +++ b/Content.Server/Motd/SetMOTDCommand.cs @@ -4,7 +4,6 @@ using Content.Shared.Database; using Content.Shared.CCVar; using Content.Server.Chat.Managers; -using Robust.Server.Player; using Robust.Shared.Configuration; using Robust.Shared.Console; @@ -21,18 +20,18 @@ public sealed class SetMotdCommand : LocalizedCommands [Dependency] private readonly IConfigurationManager _configurationManager = default!; public override string Command => "set-motd"; - + public override void Execute(IConsoleShell shell, string argStr, string[] args) { string motd = ""; - var player = (IPlayerSession?)shell.Player; + var player = shell.Player; if (args.Length > 0) { motd = string.Join(" ", args).Trim(); if (player != null && _chatManager.MessageCharacterLimit(player, motd)) return; // check function prints its own error response } - + _configurationManager.SetCVar(CCVars.MOTD, motd); // A hook in MOTDSystem broadcasts changes to the MOTD to everyone so we don't need to do it here. if (string.IsNullOrEmpty(motd)) { diff --git a/Content.Server/Movement/Systems/LagCompensationSystem.cs b/Content.Server/Movement/Systems/LagCompensationSystem.cs index 64965c2fee..0576fe8f25 100644 --- a/Content.Server/Movement/Systems/LagCompensationSystem.cs +++ b/Content.Server/Movement/Systems/LagCompensationSystem.cs @@ -1,7 +1,7 @@ using Content.Server.Movement.Components; using Robust.Server.Player; using Robust.Shared.Map; -using Robust.Shared.Players; +using Robust.Shared.Player; using Robust.Shared.Timing; namespace Content.Server.Movement.Systems; diff --git a/Content.Server/NPC/Commands/NPCCommand.cs b/Content.Server/NPC/Commands/NPCCommand.cs index 57fe223b66..7f9e56b8ca 100644 --- a/Content.Server/NPC/Commands/NPCCommand.cs +++ b/Content.Server/NPC/Commands/NPCCommand.cs @@ -2,7 +2,6 @@ using Content.Server.EUI; using Content.Server.NPC.UI; using Content.Shared.Administration; -using Robust.Server.Player; using Robust.Shared.Console; namespace Content.Server.NPC.Commands; @@ -15,7 +14,7 @@ public sealed class NPCCommand : IConsoleCommand public string Help => $"{Command}"; public void Execute(IConsoleShell shell, string argStr, string[] args) { - if (shell.Player is not IPlayerSession playerSession) + if (shell.Player is not { } playerSession) { return; } diff --git a/Content.Server/NPC/HTN/HTNSystem.cs b/Content.Server/NPC/HTN/HTNSystem.cs index 2c1dadb127..a7689fbabe 100644 --- a/Content.Server/NPC/HTN/HTNSystem.cs +++ b/Content.Server/NPC/HTN/HTNSystem.cs @@ -4,17 +4,14 @@ using Content.Server.Administration.Managers; using Robust.Shared.CPUJob.JobQueues; using Robust.Shared.CPUJob.JobQueues.Queues; -using Content.Server.NPC.Components; using Content.Server.NPC.HTN.PrimitiveTasks; using Content.Server.NPC.Systems; using Content.Shared.Administration; using Content.Shared.Mobs; using Content.Shared.NPC; -using Content.Shared.NPC; using JetBrains.Annotations; using Robust.Server.GameObjects; -using Robust.Server.Player; -using Robust.Shared.Players; +using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Utility; @@ -48,7 +45,7 @@ public override void Initialize() private void OnHTNMessage(RequestHTNMessage msg, EntitySessionEventArgs args) { - if (!_admin.HasAdminFlag((IPlayerSession) args.SenderSession, AdminFlags.Debug)) + if (!_admin.HasAdminFlag(args.SenderSession, AdminFlags.Debug)) { _subscribers.Remove(args.SenderSession); return; diff --git a/Content.Server/NPC/Pathfinding/PathfindingSystem.cs b/Content.Server/NPC/Pathfinding/PathfindingSystem.cs index bb0eff7b39..1b1f6f5476 100644 --- a/Content.Server/NPC/Pathfinding/PathfindingSystem.cs +++ b/Content.Server/NPC/Pathfinding/PathfindingSystem.cs @@ -13,7 +13,7 @@ using Robust.Shared.Map; using Robust.Shared.Physics; using Robust.Shared.Physics.Systems; -using Robust.Shared.Players; +using Robust.Shared.Player; using Robust.Shared.Random; using Robust.Shared.Threading; using Robust.Shared.Timing; @@ -528,7 +528,7 @@ private void SendDebug(PathRequest request) private void OnBreadcrumbs(RequestPathfindingDebugMessage msg, EntitySessionEventArgs args) { - var pSession = (IPlayerSession) args.SenderSession; + var pSession = args.SenderSession; if (!_adminManager.HasAdminFlag(pSession, AdminFlags.Debug)) { diff --git a/Content.Server/NPC/Systems/NPCSteeringSystem.cs b/Content.Server/NPC/Systems/NPCSteeringSystem.cs index 61b43df6f0..e5b62acfe8 100644 --- a/Content.Server/NPC/Systems/NPCSteeringSystem.cs +++ b/Content.Server/NPC/Systems/NPCSteeringSystem.cs @@ -17,14 +17,12 @@ using Content.Shared.NPC.Events; using Content.Shared.Physics; using Content.Shared.Weapons.Melee; -using Robust.Server.Player; using Robust.Shared.Configuration; using Robust.Shared.Map; using Robust.Shared.Physics; using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Systems; using Robust.Shared.Player; -using Robust.Shared.Players; using Robust.Shared.Random; using Robust.Shared.Timing; using Robust.Shared.Utility; @@ -147,7 +145,7 @@ public override void Shutdown() private void OnDebugRequest(RequestNPCSteeringDebugEvent msg, EntitySessionEventArgs args) { - if (!_admin.IsAdmin((IPlayerSession)args.SenderSession)) + if (!_admin.IsAdmin(args.SenderSession)) return; if (msg.Enabled) diff --git a/Content.Server/NPC/Systems/NPCSystem.cs b/Content.Server/NPC/Systems/NPCSystem.cs index 02dc4ceea6..7d33133a37 100644 --- a/Content.Server/NPC/Systems/NPCSystem.cs +++ b/Content.Server/NPC/Systems/NPCSystem.cs @@ -7,6 +7,7 @@ using Content.Shared.NPC; using Robust.Server.GameObjects; using Robust.Shared.Configuration; +using Robust.Shared.Player; namespace Content.Server.NPC.Systems { diff --git a/Content.Server/Ninja/Systems/SpiderChargeSystem.cs b/Content.Server/Ninja/Systems/SpiderChargeSystem.cs index 6f3c3b3f9d..0182bd7ca7 100644 --- a/Content.Server/Ninja/Systems/SpiderChargeSystem.cs +++ b/Content.Server/Ninja/Systems/SpiderChargeSystem.cs @@ -23,7 +23,7 @@ public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(BeforePlant); + SubscribeLocalEvent(OnAttemptStick); SubscribeLocalEvent(OnStuck); SubscribeLocalEvent(OnExplode); } @@ -31,14 +31,17 @@ public override void Initialize() /// /// Require that the planter is a ninja and the charge is near the target warp point. /// - private void BeforePlant(EntityUid uid, SpiderChargeComponent comp, BeforeRangedInteractEvent args) + private void OnAttemptStick(EntityUid uid, SpiderChargeComponent comp, AttemptEntityStickEvent args) { + if (args.Cancelled) + return; + var user = args.User; if (!_mind.TryGetRole(user, out var role)) { _popup.PopupEntity(Loc.GetString("spider-charge-not-ninja"), user, user); - args.Handled = true; + args.Cancelled = true; return; } @@ -47,12 +50,14 @@ private void BeforePlant(EntityUid uid, SpiderChargeComponent comp, BeforeRanged return; // assumes warp point still exists - var target = Transform(role.SpiderChargeTarget.Value).MapPosition; - var coords = args.ClickLocation.ToMap(EntityManager, _transform); - if (!coords.InRange(target, comp.Range)) + var targetXform = Transform(role.SpiderChargeTarget.Value); + var locXform = Transform(args.Target); + if (locXform.MapID != targetXform.MapID || + (_transform.GetWorldPosition(locXform) - _transform.GetWorldPosition(targetXform)).LengthSquared() > comp.Range * comp.Range) { _popup.PopupEntity(Loc.GetString("spider-charge-too-far"), user, user); - args.Handled = true; + args.Cancelled = true; + return; } } diff --git a/Content.Server/NodeContainer/EntitySystems/NodeGroupSystem.cs b/Content.Server/NodeContainer/EntitySystems/NodeGroupSystem.cs index e4bd303150..9ee9702c5b 100644 --- a/Content.Server/NodeContainer/EntitySystems/NodeGroupSystem.cs +++ b/Content.Server/NodeContainer/EntitySystems/NodeGroupSystem.cs @@ -9,6 +9,7 @@ using Robust.Server.Player; using Robust.Shared.Enums; using Robust.Shared.Map; +using Robust.Shared.Player; using Robust.Shared.Utility; namespace Content.Server.NodeContainer.EntitySystems @@ -29,7 +30,7 @@ public sealed class NodeGroupSystem : EntitySystem private readonly List _visDeletes = new(); private readonly List _visSends = new(); - private readonly HashSet _visPlayers = new(); + private readonly HashSet _visPlayers = new(); private readonly HashSet _toRemake = new(); private readonly HashSet _nodeGroups = new(); private readonly HashSet _toRemove = new(); @@ -74,7 +75,7 @@ public override void Shutdown() private void HandleEnableMsg(NodeVis.MsgEnable msg, EntitySessionEventArgs args) { - var session = (IPlayerSession) args.SenderSession; + var session = args.SenderSession; if (!_adminManager.HasAdminFlag(session, AdminFlags.Debug)) return; @@ -397,7 +398,7 @@ private void VisDoUpdate(float frametime) } } - private void VisSendFullStateImmediate(IPlayerSession player) + private void VisSendFullStateImmediate(ICommonSession player) { var msg = new NodeVis.MsgData(); diff --git a/Content.Server/Nutrition/EntitySystems/AnimalHusbandrySystem.cs b/Content.Server/Nutrition/EntitySystems/AnimalHusbandrySystem.cs index 875c328bcb..e8e456c0ea 100644 --- a/Content.Server/Nutrition/EntitySystems/AnimalHusbandrySystem.cs +++ b/Content.Server/Nutrition/EntitySystems/AnimalHusbandrySystem.cs @@ -9,7 +9,7 @@ using Content.Shared.Nutrition.Components; using Content.Shared.Nutrition.EntitySystems; using Content.Shared.Storage; -using Robust.Server.GameObjects; +using Robust.Shared.Player; using Robust.Shared.Random; using Robust.Shared.Timing; diff --git a/Content.Server/Nutrition/EntitySystems/FoodSystem.cs b/Content.Server/Nutrition/EntitySystems/FoodSystem.cs index 8406ce222d..ff4ec41dd9 100644 --- a/Content.Server/Nutrition/EntitySystems/FoodSystem.cs +++ b/Content.Server/Nutrition/EntitySystems/FoodSystem.cs @@ -17,6 +17,7 @@ using Content.Shared.Hands.EntitySystems; using Content.Shared.IdentityManagement; using Content.Shared.Interaction; +using Content.Shared.Interaction.Components; using Content.Shared.Interaction.Events; using Content.Shared.Inventory; using Content.Shared.Mobs.Systems; @@ -101,6 +102,9 @@ private void OnFeedFood(EntityUid uid, FoodComponent foodComponent, AfterInterac if (!TryComp(target, out var body)) return (false, false); + if (HasComp(food)) + return (false, false); + if (_openable.IsClosed(food, user)) return (false, true); diff --git a/Content.Server/Nutrition/Hungry.cs b/Content.Server/Nutrition/Hungry.cs index c27f302a8d..ae68dcd2fd 100644 --- a/Content.Server/Nutrition/Hungry.cs +++ b/Content.Server/Nutrition/Hungry.cs @@ -1,9 +1,7 @@ using Content.Server.Administration; -using Content.Server.Nutrition.Components; using Content.Shared.Administration; using Content.Shared.Nutrition.Components; using Content.Shared.Nutrition.EntitySystems; -using Robust.Server.Player; using Robust.Shared.Console; namespace Content.Server.Nutrition @@ -19,7 +17,7 @@ public sealed class Hungry : IConsoleCommand public void Execute(IConsoleShell shell, string argStr, string[] args) { - var player = shell.Player as IPlayerSession; + var player = shell.Player; if (player == null) { shell.WriteLine("You cannot use this command unless you are a player."); diff --git a/Content.Server/Nyanotrasen/Abilities/Psionics/PsionicAbilitiesSystem.cs b/Content.Server/Nyanotrasen/Abilities/Psionics/PsionicAbilitiesSystem.cs index 088f615946..ee16aaccfb 100644 --- a/Content.Server/Nyanotrasen/Abilities/Psionics/PsionicAbilitiesSystem.cs +++ b/Content.Server/Nyanotrasen/Abilities/Psionics/PsionicAbilitiesSystem.cs @@ -13,6 +13,7 @@ using Robust.Shared.Prototypes; using Robust.Server.GameObjects; using Robust.Server.Player; +using Robust.Shared.Player; namespace Content.Server.Abilities.Psionics { diff --git a/Content.Server/Nyanotrasen/Chat/TSayCommand.cs b/Content.Server/Nyanotrasen/Chat/TSayCommand.cs index debbf928ce..9ba27b65d7 100644 --- a/Content.Server/Nyanotrasen/Chat/TSayCommand.cs +++ b/Content.Server/Nyanotrasen/Chat/TSayCommand.cs @@ -3,6 +3,7 @@ using Robust.Server.Player; using Robust.Shared.Console; using Robust.Shared.Enums; +using Robust.Shared.Player; namespace Content.Server.Chat.Commands { @@ -15,7 +16,7 @@ internal sealed class TSayCommand : IConsoleCommand public void Execute(IConsoleShell shell, string argStr, string[] args) { - if (shell.Player is not IPlayerSession player) + if (shell.Player is not ICommonSession player) { shell.WriteError("This command cannot be run from the server."); return; @@ -36,7 +37,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) var message = string.Join(" ", args).Trim(); if (string.IsNullOrEmpty(message)) return; - //Not sure if I should hide the logs from this. Default is false. + //Not sure if I should hide the logs from this. Default is false. EntitySystem.Get().TrySendInGameICMessage(playerEntity, message, InGameICChatType.Telepathic, ChatTransmitRange.Normal, false, shell, player); } } diff --git a/Content.Server/Nyanotrasen/Construction/Commands/TileWindowsCommand.cs b/Content.Server/Nyanotrasen/Construction/Commands/TileWindowsCommand.cs index 707af881e3..9eef7292ea 100644 --- a/Content.Server/Nyanotrasen/Construction/Commands/TileWindowsCommand.cs +++ b/Content.Server/Nyanotrasen/Construction/Commands/TileWindowsCommand.cs @@ -6,6 +6,7 @@ using Robust.Shared.Console; using Robust.Shared.Map; using Robust.Shared.Maths; +using Robust.Shared.Player; namespace Content.Server.Construction.Commands { @@ -23,7 +24,7 @@ sealed class TileWindowsCommand : IConsoleCommand public void Execute(IConsoleShell shell, string argStr, string[] args) { - var player = shell.Player as IPlayerSession; + var player = shell.Player as ICommonSession; var entityManager = IoCManager.Resolve(); EntityUid? gridId; diff --git a/Content.Server/Nyanotrasen/Item/PseudoItem/PseudoItemSystem.cs b/Content.Server/Nyanotrasen/Item/PseudoItem/PseudoItemSystem.cs index fe4dcb7c9d..7ef2da3b86 100644 --- a/Content.Server/Nyanotrasen/Item/PseudoItem/PseudoItemSystem.cs +++ b/Content.Server/Nyanotrasen/Item/PseudoItem/PseudoItemSystem.cs @@ -8,6 +8,7 @@ using Content.Shared.Storage; using Content.Server.Storage.EntitySystems; using Content.Server.DoAfter; +using Content.Shared.Tag; using Robust.Shared.Containers; namespace Content.Server.Item.PseudoItem; @@ -16,6 +17,11 @@ public sealed partial class PseudoItemSystem : EntitySystem [Dependency] private readonly StorageSystem _storageSystem = default!; [Dependency] private readonly ItemSystem _itemSystem = default!; [Dependency] private readonly DoAfterSystem _doAfter = default!; + [Dependency] private readonly TagSystem _tagSystem = default!; + + [ValidatePrototypeId] + private const string PreventTag = "PreventLabel"; + public override void Initialize() { base.Initialize(); @@ -122,6 +128,7 @@ public bool TryInsert(EntityUid storageUid, EntityUid toInsert, PseudoItemCompon return false; var item = EnsureComp(toInsert); + _tagSystem.TryAddTag(toInsert, PreventTag); _itemSystem.SetSize(toInsert, component.Size, item); if (!_storageSystem.Insert(storageUid, toInsert, out _, null, storage)) @@ -129,12 +136,11 @@ public bool TryInsert(EntityUid storageUid, EntityUid toInsert, PseudoItemCompon component.Active = false; RemComp(toInsert); return false; - } else - { - component.Active = true; - Transform(storageUid).AttachToGridOrMap(); - return true; } + + component.Active = true; + Transform(storageUid).AttachToGridOrMap(); + return true; } private void StartInsertDoAfter(EntityUid inserter, EntityUid toInsert, EntityUid storageEntity, PseudoItemComponent? pseudoItem = null) { diff --git a/Content.Server/Nyanotrasen/Objectives/Components/BecomeGolemConditionComponent.cs b/Content.Server/Nyanotrasen/Objectives/Components/BecomeGolemConditionComponent.cs new file mode 100644 index 0000000000..2dbbd12ab4 --- /dev/null +++ b/Content.Server/Nyanotrasen/Objectives/Components/BecomeGolemConditionComponent.cs @@ -0,0 +1,11 @@ +using Content.Server.Objectives.Systems; + +namespace Content.Server.Objectives.Components; + +/// +/// Requires that the player dies to be complete. +/// +[RegisterComponent, Access(typeof(BecomeGolemConditionSystem))] +public sealed partial class BecomeGolemConditionComponent : Component +{ +} \ No newline at end of file diff --git a/Content.Server/Nyanotrasen/Objectives/Components/BecomePsionicConditionComponent.cs b/Content.Server/Nyanotrasen/Objectives/Components/BecomePsionicConditionComponent.cs new file mode 100644 index 0000000000..3b677bab2d --- /dev/null +++ b/Content.Server/Nyanotrasen/Objectives/Components/BecomePsionicConditionComponent.cs @@ -0,0 +1,11 @@ +using Content.Server.Objectives.Systems; + +namespace Content.Server.Objectives.Components; + +/// +/// Requires that the player dies to be complete. +/// +[RegisterComponent, Access(typeof(BecomePsionicConditionSystem))] +public sealed partial class BecomePsionicConditionComponent : Component +{ +} \ No newline at end of file diff --git a/Content.Server/Nyanotrasen/Objectives/Components/RaiseGlimmerConditionComponent.cs b/Content.Server/Nyanotrasen/Objectives/Components/RaiseGlimmerConditionComponent.cs new file mode 100644 index 0000000000..387067a626 --- /dev/null +++ b/Content.Server/Nyanotrasen/Objectives/Components/RaiseGlimmerConditionComponent.cs @@ -0,0 +1,13 @@ +using Content.Server.Objectives.Systems; + +namespace Content.Server.Objectives.Components; + +/// +/// Requires that the player dies to be complete. +/// +[RegisterComponent, Access(typeof(RaiseGlimmerConditionSystem))] +public sealed partial class RaiseGlimmerConditionComponent : Component +{ + [DataField("target"), ViewVariables(VVAccess.ReadWrite)] + public int Target; +} \ No newline at end of file diff --git a/Content.Server/Nyanotrasen/Objectives/Systems/BecomeGolemConditionSystem.cs b/Content.Server/Nyanotrasen/Objectives/Systems/BecomeGolemConditionSystem.cs new file mode 100644 index 0000000000..0260d6f28f --- /dev/null +++ b/Content.Server/Nyanotrasen/Objectives/Systems/BecomeGolemConditionSystem.cs @@ -0,0 +1,34 @@ +using Content.Server.Objectives.Components; +using Content.Shared.Mind; +using Content.Shared.Objectives.Components; + +namespace Content.Server.Objectives.Systems +{ + public sealed class BecomeGolemConditionSystem : EntitySystem + { + private EntityQuery _metaQuery; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnGetProgress); + } + + private void OnGetProgress(EntityUid uid, BecomeGolemConditionComponent comp, ref ObjectiveGetProgressEvent args) + { + args.Progress = GetProgress(args.Mind); + } + + private float GetProgress(MindComponent mind) + { + var entMan = IoCManager.Resolve(); + if (!_metaQuery.TryGetComponent(mind.OwnedEntity, out var meta)) + return 0; + /*EntityManager.TryGetComponent(mind.CurrentEntity, out var GolemComp); + if(GolemComp) + return 1; TODO: Add this code back once Golems are implemented. */ + return 0; + } + } +} diff --git a/Content.Server/Nyanotrasen/Objectives/Systems/BecomePsionicConditionSystem.cs b/Content.Server/Nyanotrasen/Objectives/Systems/BecomePsionicConditionSystem.cs new file mode 100644 index 0000000000..d090c320a4 --- /dev/null +++ b/Content.Server/Nyanotrasen/Objectives/Systems/BecomePsionicConditionSystem.cs @@ -0,0 +1,32 @@ +using Content.Shared.Abilities.Psionics; +using Content.Server.Objectives.Components; +using Content.Shared.Mind; +using Content.Shared.Objectives.Components; + +namespace Content.Server.Objectives.Systems +{ + public sealed class BecomePsionicConditionSystem : EntitySystem + { + private EntityQuery _metaQuery; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnGetProgress); + } + + private void OnGetProgress(EntityUid uid, BecomePsionicConditionComponent comp, ref ObjectiveGetProgressEvent args) + { + args.Progress = GetProgress(args.Mind); + } + + private float GetProgress(MindComponent mind) + { + var entMan = IoCManager.Resolve(); + if (HasComp(mind.CurrentEntity)) + return 1; + return 0; + } + } +} diff --git a/Content.Server/Nyanotrasen/Objectives/Systems/RaiseGlimmerConditionSystem.cs b/Content.Server/Nyanotrasen/Objectives/Systems/RaiseGlimmerConditionSystem.cs new file mode 100644 index 0000000000..d7aae44afa --- /dev/null +++ b/Content.Server/Nyanotrasen/Objectives/Systems/RaiseGlimmerConditionSystem.cs @@ -0,0 +1,40 @@ +using Content.Shared.Psionics.Glimmer; +using Content.Server.Objectives.Components; +using Content.Shared.Objectives.Components; + +namespace Content.Server.Objectives.Systems +{ + public sealed class RaiseGlimmerConditionSystem : EntitySystem + { + [Dependency] private readonly IEntitySystemManager _sysMan = default!; + [Dependency] private readonly MetaDataSystem _metaData = default!; + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnGetProgress); + SubscribeLocalEvent(OnAfterAssign); + } + + private void OnAfterAssign(EntityUid uid, RaiseGlimmerConditionComponent comp, ref ObjectiveAfterAssignEvent args) + { + var title = Loc.GetString("objective-condition-raise-glimmer-title", ("target", comp.Target)); + var description = Loc.GetString("objective-condition-raise-glimmer-description", ("target", comp.Target)); + + _metaData.SetEntityName(uid, title, args.Meta); + _metaData.SetEntityDescription(uid, description, args.Meta); + } + + private void OnGetProgress(EntityUid uid, RaiseGlimmerConditionComponent comp, ref ObjectiveGetProgressEvent args) + { + args.Progress = GetProgress(comp.Target); + } + + private float GetProgress(int target) + { + var glimmer = _sysMan.GetEntitySystem().Glimmer; + var progress = Math.Min((float) glimmer / (float) target, 1f); + return progress; + } + } +} diff --git a/Content.Server/Nyanotrasen/Players/PlayTimeTracking/PlayTimeTrackingManager.Whitelist.cs b/Content.Server/Nyanotrasen/Players/PlayTimeTracking/PlayTimeTrackingManager.Whitelist.cs index f0e97f56aa..ccbe8d8e7f 100644 --- a/Content.Server/Nyanotrasen/Players/PlayTimeTracking/PlayTimeTrackingManager.Whitelist.cs +++ b/Content.Server/Nyanotrasen/Players/PlayTimeTracking/PlayTimeTrackingManager.Whitelist.cs @@ -1,12 +1,12 @@ -using Content.Server.Players; +using Content.Shared.Players; using Content.Shared.Players.PlayTimeTracking; -using Robust.Server.Player; +using Robust.Shared.Player; namespace Content.Server.Players.PlayTimeTracking; public sealed partial class PlayTimeTrackingManager { - private void SendWhitelistCached(IPlayerSession playerSession) + private void SendWhitelistCached(ICommonSession playerSession) { var whitelist = playerSession.ContentData()?.Whitelisted ?? false; @@ -21,7 +21,7 @@ private void SendWhitelistCached(IPlayerSession playerSession) /// /// Queue sending whitelist status to the client. /// - public void QueueSendWhitelist(IPlayerSession player) + public void QueueSendWhitelist(ICommonSession player) { if (DirtyPlayer(player) is { } data) data.NeedRefreshWhitelist = true; diff --git a/Content.Server/Nyanotrasen/Psionics/Dreams/DreamSystem.cs b/Content.Server/Nyanotrasen/Psionics/Dreams/DreamSystem.cs index f73f8e6fcc..d6067717c9 100644 --- a/Content.Server/Nyanotrasen/Psionics/Dreams/DreamSystem.cs +++ b/Content.Server/Nyanotrasen/Psionics/Dreams/DreamSystem.cs @@ -5,6 +5,7 @@ using Robust.Shared.Random; using Robust.Shared.Prototypes; using Robust.Server.GameObjects; +using Robust.Shared.Player; namespace Content.Server.Psionics.Dreams { diff --git a/Content.Server/Nyanotrasen/Psionics/PsionicsCommands.cs b/Content.Server/Nyanotrasen/Psionics/PsionicsCommands.cs index c0c3b8dc01..959251d1fb 100644 --- a/Content.Server/Nyanotrasen/Psionics/PsionicsCommands.cs +++ b/Content.Server/Nyanotrasen/Psionics/PsionicsCommands.cs @@ -5,6 +5,7 @@ using Robust.Shared.Console; using Robust.Server.GameObjects; using Content.Shared.Actions; +using Robust.Shared.Player; namespace Content.Server.Psionics; diff --git a/Content.Server/Nyanotrasen/Research/Oracle/OracleSystem.cs b/Content.Server/Nyanotrasen/Research/Oracle/OracleSystem.cs index 2548f3da2b..2933df615e 100644 --- a/Content.Server/Nyanotrasen/Research/Oracle/OracleSystem.cs +++ b/Content.Server/Nyanotrasen/Research/Oracle/OracleSystem.cs @@ -14,6 +14,7 @@ using Content.Shared.Psionics.Glimmer; using Content.Shared.Research.Prototypes; using Robust.Server.GameObjects; +using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Random; diff --git a/Content.Server/Nyanotrasen/ReverseEngineering/ReverseEngineeringMachineComponent.cs b/Content.Server/Nyanotrasen/ReverseEngineering/ReverseEngineeringMachineComponent.cs index 4dba64a06f..5bf4c50592 100644 --- a/Content.Server/Nyanotrasen/ReverseEngineering/ReverseEngineeringMachineComponent.cs +++ b/Content.Server/Nyanotrasen/ReverseEngineering/ReverseEngineeringMachineComponent.cs @@ -17,7 +17,7 @@ public sealed partial class ReverseEngineeringMachineComponent : Component public string DiskPrototype = "TechnologyDisk"; [DataField("machinePartScanBonus", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string MachinePartScanBonus = "Capacitor"; + public string MachinePartScanBonus = "MatterBin"; // DeltaV Code: Change part checked for bonus to MatterBin as it is what is used in the crafting recipe /// /// Added to the 3d6, scales off of scanner. diff --git a/Content.Server/Nyanotrasen/StationEvents/Events/MassMindSwapRule.cs b/Content.Server/Nyanotrasen/StationEvents/Events/MassMindSwapRule.cs index a3af9ed6e3..6394456326 100644 --- a/Content.Server/Nyanotrasen/StationEvents/Events/MassMindSwapRule.cs +++ b/Content.Server/Nyanotrasen/StationEvents/Events/MassMindSwapRule.cs @@ -7,6 +7,7 @@ using Content.Shared.Abilities.Psionics; using Content.Shared.Mobs.Components; using Content.Shared.Mobs.Systems; +using Robust.Shared.Player; namespace Content.Server.StationEvents.Events; diff --git a/Content.Server/Objectives/Commands/ListObjectivesCommand.cs b/Content.Server/Objectives/Commands/ListObjectivesCommand.cs index 93dec3fa44..97fc943269 100644 --- a/Content.Server/Objectives/Commands/ListObjectivesCommand.cs +++ b/Content.Server/Objectives/Commands/ListObjectivesCommand.cs @@ -18,7 +18,7 @@ public sealed class ListObjectivesCommand : LocalizedCommands public override void Execute(IConsoleShell shell, string argStr, string[] args) { - var player = shell.Player as IPlayerSession; + var player = shell.Player; if (player == null || !_players.TryGetSessionByUsername(args[0], out player)) { shell.WriteError(LocalizationManager.GetString("shell-target-player-does-not-exist")); diff --git a/Content.Server/Objectives/Components/HijackShuttleComponent.cs b/Content.Server/Objectives/Components/HijackShuttleComponent.cs deleted file mode 100644 index 010f6f1407..0000000000 --- a/Content.Server/Objectives/Components/HijackShuttleComponent.cs +++ /dev/null @@ -1,8 +0,0 @@ -using Content.Server.Objectives.Systems; - -namespace Content.Server.Objectives.Components; - -[RegisterComponent, Access(typeof(HijackShuttleConditionSystem))] -public sealed partial class HijackShuttleComponent : Component -{ -} diff --git a/Content.Server/Objectives/Components/HijackShuttleConditionComponent.cs b/Content.Server/Objectives/Components/HijackShuttleConditionComponent.cs new file mode 100644 index 0000000000..2f07086af6 --- /dev/null +++ b/Content.Server/Objectives/Components/HijackShuttleConditionComponent.cs @@ -0,0 +1,11 @@ +using Content.Server.Objectives.Systems; + +namespace Content.Server.Objectives.Components; + +/// +/// Objective condition that requires the player to leave station of escape shuttle with only antags on board or handcuffed humanoids +/// +[RegisterComponent, Access(typeof(HijackShuttleConditionSystem))] +public sealed partial class HijackShuttleConditionComponent : Component +{ +} diff --git a/Content.Server/Objectives/Systems/HijackShuttleConditionSystem.cs b/Content.Server/Objectives/Systems/HijackShuttleConditionSystem.cs index 5ea560297c..9e0d2c3d5b 100644 --- a/Content.Server/Objectives/Systems/HijackShuttleConditionSystem.cs +++ b/Content.Server/Objectives/Systems/HijackShuttleConditionSystem.cs @@ -23,17 +23,17 @@ public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnGetProgress); + SubscribeLocalEvent(OnGetProgress); } - private void OnGetProgress(EntityUid uid, HijackShuttleComponent comp, ref ObjectiveGetProgressEvent args) + private void OnGetProgress(EntityUid uid, HijackShuttleConditionComponent comp, ref ObjectiveGetProgressEvent args) { args.Progress = GetProgress(args.MindId, args.Mind); } private float GetProgress(EntityUid mindId, MindComponent mind) { - // not escaping alive if you're deleted/dead + // Not escaping alive if you're deleted/dead if (mind.OwnedEntity == null || _mind.IsCharacterDeadIc(mind)) return 0f; diff --git a/Content.Server/PAI/PAISystem.cs b/Content.Server/PAI/PAISystem.cs index d3dac3edaa..e9505b5e6f 100644 --- a/Content.Server/PAI/PAISystem.cs +++ b/Content.Server/PAI/PAISystem.cs @@ -6,9 +6,9 @@ using Content.Shared.Mind.Components; using Content.Shared.PAI; using Content.Shared.Popups; -using Robust.Server.GameObjects; using Robust.Shared.Random; using System.Text; +using Robust.Shared.Player; namespace Content.Server.PAI; diff --git a/Content.Server/PDA/PdaSystem.cs b/Content.Server/PDA/PdaSystem.cs index 6c506dc3dd..44e2659841 100644 --- a/Content.Server/PDA/PdaSystem.cs +++ b/Content.Server/PDA/PdaSystem.cs @@ -4,9 +4,6 @@ using Content.Server.Instruments; using Content.Server.Light.EntitySystems; using Content.Server.Light.Events; -using Content.Server.MassMedia.Components; -using Content.Server.MassMedia.Systems; -using Content.Server.Mind; using Content.Server.PDA.Ringer; using Content.Server.Station.Systems; using Content.Server.Store.Components; @@ -16,7 +13,6 @@ using Content.Shared.Light.Components; using Content.Shared.PDA; using Robust.Server.GameObjects; -using Robust.Server.Player; using Robust.Shared.Containers; namespace Content.Server.PDA @@ -180,7 +176,7 @@ private void OnUiMessage(EntityUid uid, PdaComponent pda, PdaShowRingtoneMessage return; if (HasComp(uid)) - _ringer.ToggleRingerUI(uid, (IPlayerSession) msg.Session); + _ringer.ToggleRingerUI(uid, msg.Session); } private void OnUiMessage(EntityUid uid, PdaComponent pda, PdaShowMusicMessage msg) @@ -189,7 +185,7 @@ private void OnUiMessage(EntityUid uid, PdaComponent pda, PdaShowMusicMessage ms return; if (TryComp(uid, out var instrument)) - _instrument.ToggleInstrumentUi(uid, (IPlayerSession) msg.Session, instrument); + _instrument.ToggleInstrumentUi(uid, msg.Session, instrument); } private void OnUiMessage(EntityUid uid, PdaComponent pda, PdaShowUplinkMessage msg) diff --git a/Content.Server/PDA/Ringer/RingerSystem.cs b/Content.Server/PDA/Ringer/RingerSystem.cs index a772e76bc4..7494d5e12c 100644 --- a/Content.Server/PDA/Ringer/RingerSystem.cs +++ b/Content.Server/PDA/Ringer/RingerSystem.cs @@ -7,7 +7,6 @@ using Content.Shared.Popups; using Content.Shared.Store; using Robust.Server.GameObjects; -using Robust.Server.Player; using Robust.Shared.Audio; using Robust.Shared.Network; using Robust.Shared.Player; @@ -182,7 +181,7 @@ private void UpdateRingerUserInterface(EntityUid uid, RingerComponent ringer, bo _ui.SetUiState(bui, new RingerUpdateState(isPlaying, ringer.Ringtone)); } - public bool ToggleRingerUI(EntityUid uid, IPlayerSession session) + public bool ToggleRingerUI(EntityUid uid, ICommonSession session) { if (_ui.TryGetUi(uid, RingerUiKey.Key, out var bui)) _ui.ToggleUi(bui, session); diff --git a/Content.Server/Paper/PaperSystem.cs b/Content.Server/Paper/PaperSystem.cs index f38013e14d..553bcaa0a2 100644 --- a/Content.Server/Paper/PaperSystem.cs +++ b/Content.Server/Paper/PaperSystem.cs @@ -4,15 +4,11 @@ using Content.Server.UserInterface; using Content.Shared.Database; using Content.Shared.Examine; -using Content.Shared.IdentityManagement; using Content.Shared.Interaction; using Content.Shared.Paper; using Content.Shared.Tag; using Robust.Server.GameObjects; -using Robust.Server.Player; using Robust.Shared.Player; -using Robust.Shared.Utility; -using Robust.Shared.Audio; using static Content.Shared.Paper.SharedPaperComponent; namespace Content.Server.Paper @@ -207,7 +203,7 @@ public void SetContent(EntityUid uid, string content, PaperComponent? paperComp _appearance.SetData(uid, PaperVisuals.Status, status, appearance); } - public void UpdateUserInterface(EntityUid uid, PaperComponent? paperComp = null, IPlayerSession? session = null) + public void UpdateUserInterface(EntityUid uid, PaperComponent? paperComp = null, ICommonSession? session = null) { if (!Resolve(uid, ref paperComp)) return; diff --git a/Content.Server/Parallax/BiomeSystem.cs b/Content.Server/Parallax/BiomeSystem.cs index a9d78afa86..c9017ac821 100644 --- a/Content.Server/Parallax/BiomeSystem.cs +++ b/Content.Server/Parallax/BiomeSystem.cs @@ -282,9 +282,8 @@ public override void Update(float frameTime) } // Get chunks in range - foreach (var client in Filter.GetAllPlayers(_playerManager)) + foreach (var pSession in Filter.GetAllPlayers(_playerManager)) { - var pSession = (IPlayerSession) client; if (xformQuery.TryGetComponent(pSession.AttachedEntity, out var xform) && _handledEntities.Add(pSession.AttachedEntity.Value) && diff --git a/Content.Server/ParticleAccelerator/EntitySystems/ParticleAcceleratorSystem.ControlBox.cs b/Content.Server/ParticleAccelerator/EntitySystems/ParticleAcceleratorSystem.ControlBox.cs index 20ed276967..f200c991d7 100644 --- a/Content.Server/ParticleAccelerator/EntitySystems/ParticleAcceleratorSystem.ControlBox.cs +++ b/Content.Server/ParticleAccelerator/EntitySystems/ParticleAcceleratorSystem.ControlBox.cs @@ -2,11 +2,10 @@ using Content.Server.Power.Components; using Content.Shared.Database; using Content.Shared.Singularity.Components; -using Robust.Server.Player; -using Robust.Server.GameObjects; using Robust.Shared.Utility; using System.Diagnostics; using Content.Shared.CCVar; +using Robust.Shared.Player; namespace Content.Server.ParticleAccelerator.EntitySystems; @@ -60,7 +59,7 @@ public void Fire(EntityUid uid, TimeSpan curTime, ParticleAcceleratorControlBoxC FireEmitter(comp.StarboardEmitter!.Value, strength); } - public void SwitchOn(EntityUid uid, IPlayerSession? user = null, ParticleAcceleratorControlBoxComponent? comp = null) + public void SwitchOn(EntityUid uid, ICommonSession? user = null, ParticleAcceleratorControlBoxComponent? comp = null) { if (!Resolve(uid, ref comp)) return; @@ -83,7 +82,7 @@ public void SwitchOn(EntityUid uid, IPlayerSession? user = null, ParticleAcceler UpdateUI(uid, comp); } - public void SwitchOff(EntityUid uid, IPlayerSession? user = null, ParticleAcceleratorControlBoxComponent? comp = null) + public void SwitchOff(EntityUid uid, ICommonSession? user = null, ParticleAcceleratorControlBoxComponent? comp = null) { if (!Resolve(uid, ref comp)) return; @@ -131,7 +130,7 @@ public void PowerOff(EntityUid uid, ParticleAcceleratorControlBoxComponent? comp UpdateUI(uid, comp); } - public void SetStrength(EntityUid uid, ParticleAcceleratorPowerState strength, IPlayerSession? user = null, ParticleAcceleratorControlBoxComponent? comp = null) + public void SetStrength(EntityUid uid, ParticleAcceleratorPowerState strength, ICommonSession? user = null, ParticleAcceleratorControlBoxComponent? comp = null) { if (!Resolve(uid, ref comp)) return; @@ -347,10 +346,10 @@ private void OnUISetEnableMessage(EntityUid uid, ParticleAcceleratorControlBoxCo if (msg.Enabled) { if (comp.Assembled) - SwitchOn(uid, (IPlayerSession?) msg.Session, comp); + SwitchOn(uid, msg.Session, comp); } else - SwitchOff(uid, (IPlayerSession?) msg.Session, comp); + SwitchOff(uid, msg.Session, comp); UpdateUI(uid, comp); } @@ -364,7 +363,7 @@ private void OnUISetPowerMessage(EntityUid uid, ParticleAcceleratorControlBoxCom if (TryComp(uid, out var apcPower) && !apcPower.Powered) return; - SetStrength(uid, msg.State, (IPlayerSession?) msg.Session, comp); + SetStrength(uid, msg.State, msg.Session, comp); UpdateUI(uid, comp); } @@ -378,7 +377,7 @@ private void OnUIRescanMessage(EntityUid uid, ParticleAcceleratorControlBoxCompo if (TryComp(uid, out var apcPower) && !apcPower.Powered) return; - RescanParts(uid, (IPlayerSession?) msg.Session, comp); + RescanParts(uid, msg.Session, comp); UpdateUI(uid, comp); } diff --git a/Content.Server/ParticleAccelerator/EntitySystems/ParticleAcceleratorSystem.Parts.cs b/Content.Server/ParticleAccelerator/EntitySystems/ParticleAcceleratorSystem.Parts.cs index 271d17a0c4..abc68543ff 100644 --- a/Content.Server/ParticleAccelerator/EntitySystems/ParticleAcceleratorSystem.Parts.cs +++ b/Content.Server/ParticleAccelerator/EntitySystems/ParticleAcceleratorSystem.Parts.cs @@ -2,9 +2,9 @@ using System.Numerics; using Content.Server.ParticleAccelerator.Components; using JetBrains.Annotations; -using Robust.Server.Player; using Robust.Shared.Map.Components; using Robust.Shared.Physics.Events; +using Robust.Shared.Player; namespace Content.Server.ParticleAccelerator.EntitySystems; @@ -18,7 +18,7 @@ private void InitializePartSystem() SubscribeLocalEvent(BodyTypeChanged); } - public void RescanParts(EntityUid uid, IPlayerSession? user = null, ParticleAcceleratorControlBoxComponent? controller = null) + public void RescanParts(EntityUid uid, ICommonSession? user = null, ParticleAcceleratorControlBoxComponent? controller = null) { if (!Resolve(uid, ref controller)) return; diff --git a/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorLimiterWireAction.cs b/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorLimiterWireAction.cs index 09700e2193..0cbd47c233 100644 --- a/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorLimiterWireAction.cs +++ b/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorLimiterWireAction.cs @@ -5,7 +5,7 @@ using Content.Shared.Popups; using Content.Shared.Singularity.Components; using Content.Shared.Wires; -using Robust.Server.GameObjects; +using Robust.Shared.Player; namespace Content.Server.ParticleAccelerator.Wires; diff --git a/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorStrengthWireAction.cs b/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorStrengthWireAction.cs index 8577590671..65fa76ee41 100644 --- a/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorStrengthWireAction.cs +++ b/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorStrengthWireAction.cs @@ -3,8 +3,7 @@ using Content.Server.Wires; using Content.Shared.Singularity.Components; using Content.Shared.Wires; -using Robust.Server.GameObjects; -using Robust.Shared.Random; +using Robust.Shared.Player; namespace Content.Server.ParticleAccelerator.Wires; diff --git a/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorToggleWireAction.cs b/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorToggleWireAction.cs index 00c5845713..c43403edd4 100644 --- a/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorToggleWireAction.cs +++ b/Content.Server/ParticleAccelerator/Wires/ParticleAcceleratorToggleWireAction.cs @@ -3,7 +3,7 @@ using Content.Server.Wires; using Content.Shared.Singularity.Components; using Content.Shared.Wires; -using Robust.Server.GameObjects; +using Robust.Shared.Player; namespace Content.Server.ParticleAccelerator.Wires; diff --git a/Content.Server/Physics/Controllers/RandomWalkController.cs b/Content.Server/Physics/Controllers/RandomWalkController.cs index dc5608887e..4a93a9e706 100644 --- a/Content.Server/Physics/Controllers/RandomWalkController.cs +++ b/Content.Server/Physics/Controllers/RandomWalkController.cs @@ -4,6 +4,7 @@ using Robust.Server.GameObjects; using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Controllers; +using Robust.Shared.Player; using Robust.Shared.Random; using Robust.Shared.Timing; diff --git a/Content.Server/Pinpointer/ProximityBeeperSystem.cs b/Content.Server/Pinpointer/ProximityBeeperSystem.cs index b473d97372..d52223e2b4 100644 --- a/Content.Server/Pinpointer/ProximityBeeperSystem.cs +++ b/Content.Server/Pinpointer/ProximityBeeperSystem.cs @@ -80,7 +80,10 @@ public void UpdateBeep(EntityUid uid, ProximityBeeperComponent? component = null var scalingFactor = distance / component.MaximumDistance; var interval = (component.MaxBeepInterval - component.MinBeepInterval) * scalingFactor + component.MinBeepInterval; + component.NextBeepTime += interval; + if (component.NextBeepTime < _timing.CurTime) // Prevents spending time out of range accumulating a deficit which causes a series of very rapid beeps when comeing into range. + component.NextBeepTime = _timing.CurTime + interval; } /// diff --git a/Content.Server/Pinpointer/StationMapSystem.cs b/Content.Server/Pinpointer/StationMapSystem.cs index daf9df25ba..0460f08f13 100644 --- a/Content.Server/Pinpointer/StationMapSystem.cs +++ b/Content.Server/Pinpointer/StationMapSystem.cs @@ -1,6 +1,7 @@ using Content.Server.PowerCell; using Content.Shared.Pinpointer; using Robust.Server.GameObjects; +using Robust.Shared.Player; namespace Content.Server.Pinpointer; diff --git a/Content.Server/Players/PlayTimeTracking/PlayTimeTrackingManager.cs b/Content.Server/Players/PlayTimeTracking/PlayTimeTrackingManager.cs index 1b2c949cf4..7793b5302f 100644 --- a/Content.Server/Players/PlayTimeTracking/PlayTimeTrackingManager.cs +++ b/Content.Server/Players/PlayTimeTracking/PlayTimeTrackingManager.cs @@ -4,19 +4,20 @@ using System.Threading.Tasks; using Content.Server.Database; using Content.Shared.CCVar; +using Content.Shared.Players; using Content.Shared.Players.PlayTimeTracking; -using Robust.Server.Player; using Robust.Shared.Asynchronous; using Robust.Shared.Collections; using Robust.Shared.Configuration; using Robust.Shared.Exceptions; using Robust.Shared.Network; +using Robust.Shared.Player; using Robust.Shared.Timing; using Robust.Shared.Utility; namespace Content.Server.Players.PlayTimeTracking; -public delegate void CalcPlayTimeTrackersCallback(IPlayerSession player, HashSet trackers); +public delegate void CalcPlayTimeTrackersCallback(ICommonSession player, HashSet trackers); /// /// Tracks play time for players, across all roles. @@ -66,7 +67,7 @@ public sealed partial class PlayTimeTrackingManager private ISawmill _sawmill = default!; // List of players that need some kind of update (refresh timers or resend). - private ValueList _playersDirty; + private ValueList _playersDirty; // DB auto-saving logic. private TimeSpan _saveInterval; @@ -76,7 +77,7 @@ public sealed partial class PlayTimeTrackingManager // We must block server shutdown on these to avoid losing data. private readonly List _pendingSaveTasks = new(); - private readonly Dictionary _playTimeData = new(); + private readonly Dictionary _playTimeData = new(); public event CalcPlayTimeTrackersCallback? CalcTrackers; @@ -146,7 +147,7 @@ private void UpdateDirtyPlayers() _playersDirty.Clear(); } - private void RefreshSingleTracker(IPlayerSession dirty, PlayTimeData data, TimeSpan time) + private void RefreshSingleTracker(ICommonSession dirty, PlayTimeData data, TimeSpan time) { DebugTools.Assert(data.Initialized); @@ -188,7 +189,7 @@ public void FlushAllTrackers() /// so APIs like return up-to-date info. /// /// - public void FlushTracker(IPlayerSession player) + public void FlushTracker(ICommonSession player) { var time = _timing.RealTime; var data = _playTimeData[player]; @@ -208,7 +209,7 @@ private static void FlushSingleTracker(PlayTimeData data, TimeSpan time) } } - private void SendPlayTimes(IPlayerSession pSession) + private void SendPlayTimes(ICommonSession pSession) { var roles = GetTrackerTimes(pSession); @@ -235,7 +236,7 @@ public async void Save() /// /// Save all modified time trackers for a player to the database. /// - public async void SaveSession(IPlayerSession session) + public async void SaveSession(ICommonSession session) { // This causes all trackers to refresh, ah well. FlushAllTrackers(); @@ -285,7 +286,7 @@ private async Task DoSaveAsync() _sawmill.Debug($"Saved {log.Count} trackers"); } - private async Task DoSaveSessionAsync(IPlayerSession session) + private async Task DoSaveSessionAsync(ICommonSession session) { var log = new List(); @@ -306,7 +307,7 @@ private async Task DoSaveSessionAsync(IPlayerSession session) _sawmill.Debug($"Saved {log.Count} trackers for {session.Name}"); } - public async Task LoadData(IPlayerSession session, CancellationToken cancel) + public async Task LoadData(ICommonSession session, CancellationToken cancel) { var data = new PlayTimeData(); _playTimeData.Add(session, data); @@ -328,14 +329,14 @@ public async Task LoadData(IPlayerSession session, CancellationToken cancel) QueueSendWhitelist(session); // Nyanotrasen - Whitelist status } - public void ClientDisconnected(IPlayerSession session) + public void ClientDisconnected(ICommonSession session) { SaveSession(session); _playTimeData.Remove(session); } - public void AddTimeToTracker(IPlayerSession id, string tracker, TimeSpan time) + public void AddTimeToTracker(ICommonSession id, string tracker, TimeSpan time) { if (!_playTimeData.TryGetValue(id, out var data) || !data.Initialized) throw new InvalidOperationException("Play time info is not yet loaded for this player!"); @@ -351,17 +352,17 @@ private static void AddTimeToTracker(PlayTimeData data, string tracker, TimeSpan data.DbTrackersDirty.Add(tracker); } - public void AddTimeToOverallPlaytime(IPlayerSession id, TimeSpan time) + public void AddTimeToOverallPlaytime(ICommonSession id, TimeSpan time) { AddTimeToTracker(id, PlayTimeTrackingShared.TrackerOverall, time); } - public TimeSpan GetOverallPlaytime(IPlayerSession id) + public TimeSpan GetOverallPlaytime(ICommonSession id) { return GetPlayTimeForTracker(id, PlayTimeTrackingShared.TrackerOverall); } - public bool TryGetTrackerTimes(IPlayerSession id, [NotNullWhen(true)] out Dictionary? time) + public bool TryGetTrackerTimes(ICommonSession id, [NotNullWhen(true)] out Dictionary? time) { time = null; @@ -374,7 +375,7 @@ public bool TryGetTrackerTimes(IPlayerSession id, [NotNullWhen(true)] out Dictio return true; } - public Dictionary GetTrackerTimes(IPlayerSession id) + public Dictionary GetTrackerTimes(ICommonSession id) { if (!_playTimeData.TryGetValue(id, out var data) || !data.Initialized) throw new InvalidOperationException("Play time info is not yet loaded for this player!"); @@ -382,7 +383,7 @@ public Dictionary GetTrackerTimes(IPlayerSession id) return data.TrackerTimes; } - public TimeSpan GetPlayTimeForTracker(IPlayerSession id, string tracker) + public TimeSpan GetPlayTimeForTracker(ICommonSession id, string tracker) { if (!_playTimeData.TryGetValue(id, out var data) || !data.Initialized) throw new InvalidOperationException("Play time info is not yet loaded for this player!"); @@ -393,7 +394,7 @@ public TimeSpan GetPlayTimeForTracker(IPlayerSession id, string tracker) /// /// Queue for play time trackers to be refreshed on a player, in case the set of active trackers may have changed. /// - public void QueueRefreshTrackers(IPlayerSession player) + public void QueueRefreshTrackers(ICommonSession player) { if (DirtyPlayer(player) is { } data) data.NeedRefreshTackers = true; @@ -402,13 +403,13 @@ public void QueueRefreshTrackers(IPlayerSession player) /// /// Queue for play time information to be sent to a client, for showing in UIs etc. /// - public void QueueSendTimers(IPlayerSession player) + public void QueueSendTimers(ICommonSession player) { if (DirtyPlayer(player) is { } data) data.NeedSendTimers = true; } - private PlayTimeData? DirtyPlayer(IPlayerSession player) + private PlayTimeData? DirtyPlayer(ICommonSession player) { if (!_playTimeData.TryGetValue(player, out var data) || !data.Initialized) return null; diff --git a/Content.Server/Players/PlayTimeTracking/PlayTimeTrackingSystem.cs b/Content.Server/Players/PlayTimeTracking/PlayTimeTrackingSystem.cs index 94780bda36..4dba378e32 100644 --- a/Content.Server/Players/PlayTimeTracking/PlayTimeTrackingSystem.cs +++ b/Content.Server/Players/PlayTimeTracking/PlayTimeTrackingSystem.cs @@ -14,6 +14,7 @@ using Robust.Server.Player; using Robust.Shared.Configuration; using Robust.Shared.Network; +using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Utility; @@ -55,7 +56,7 @@ public override void Shutdown() _tracking.CalcTrackers -= CalcTrackers; } - private void CalcTrackers(IPlayerSession player, HashSet trackers) + private void CalcTrackers(ICommonSession player, HashSet trackers) { if (_afk.IsAfk(player)) return; @@ -67,7 +68,7 @@ private void CalcTrackers(IPlayerSession player, HashSet trackers) trackers.UnionWith(GetTimedRoles(player)); } - private bool IsPlayerAlive(IPlayerSession session) + private bool IsPlayerAlive(ICommonSession session) { var attached = session.AttachedEntity; if (attached == null) @@ -93,7 +94,7 @@ public IEnumerable GetTimedRoles(EntityUid mindId) } } - private IEnumerable GetTimedRoles(IPlayerSession session) + private IEnumerable GetTimedRoles(ICommonSession session) { var contentData = _playerManager.GetPlayerData(session.UserId).ContentData(); @@ -157,7 +158,7 @@ private void OnPlayerJoinedLobby(PlayerJoinedLobbyEvent ev) _tracking.QueueSendWhitelist(ev.PlayerSession); // Nyanotrasen - Send whitelist status } - public bool IsAllowed(IPlayerSession player, string role) + public bool IsAllowed(ICommonSession player, string role) { if (!_prototypes.TryIndex(role, out var job) || job.Requirements == null || @@ -171,7 +172,7 @@ public bool IsAllowed(IPlayerSession player, string role) return JobRequirements.TryRequirementsMet(job, playTimes, out _, EntityManager, _prototypes, isWhitelisted); } - public HashSet GetDisallowedJobs(IPlayerSession player) + public HashSet GetDisallowedJobs(ICommonSession player) { var roles = new HashSet(); if (!_cfg.GetCVar(CCVars.GameRoleTimers)) @@ -236,7 +237,7 @@ public void RemoveDisallowedJobs(NetUserId userId, ref List jobs) } } - public void PlayerRolesChanged(IPlayerSession player) + public void PlayerRolesChanged(ICommonSession player) { _tracking.QueueRefreshTrackers(player); } diff --git a/Content.Server/Players/PlayerData.cs b/Content.Server/Players/PlayerData.cs deleted file mode 100644 index b0ca6f3c18..0000000000 --- a/Content.Server/Players/PlayerData.cs +++ /dev/null @@ -1,30 +0,0 @@ -using Content.Shared.Players; -using Robust.Server.Player; -using Robust.Shared.Players; - -namespace Content.Server.Players -{ - public static class PlayerDataExt - { - /// - /// Gets the correctly cast instance of content player data from an engine player data storage. - /// - public static PlayerData? ContentData(this IPlayerSession session) - { - return session.Data.ContentData(); - } - - public static PlayerData? ContentData(this ICommonSession session) - { - return ((IPlayerSession) session).ContentData(); - } - - /// - /// Gets the mind that is associated with this player. - /// - public static EntityUid? GetMind(this IPlayerSession session) - { - return session.Data.ContentData()?.Mind; - } - } -} diff --git a/Content.Server/Players/PlayerSystem.cs b/Content.Server/Players/PlayerSystem.cs index 0c407aa876..c79683c338 100644 --- a/Content.Server/Players/PlayerSystem.cs +++ b/Content.Server/Players/PlayerSystem.cs @@ -1,11 +1,11 @@ using Content.Shared.Players; -using Robust.Shared.Players; +using Robust.Shared.Player; namespace Content.Server.Players; public sealed class PlayerSystem : SharedPlayerSystem { - public override PlayerData? ContentData(ICommonSession? session) + public override ContentPlayerData? ContentData(ICommonSession? session) { return session?.ContentData(); } diff --git a/Content.Server/Pointing/EntitySystems/PointingSystem.cs b/Content.Server/Pointing/EntitySystems/PointingSystem.cs index b253e32e37..6fcdfcf994 100644 --- a/Content.Server/Pointing/EntitySystems/PointingSystem.cs +++ b/Content.Server/Pointing/EntitySystems/PointingSystem.cs @@ -20,7 +20,6 @@ using Robust.Shared.Input.Binding; using Robust.Shared.Map; using Robust.Shared.Player; -using Robust.Shared.Players; using Robust.Shared.Replays; using Robust.Shared.Timing; @@ -170,7 +169,7 @@ public bool TryPoint(ICommonSession? session, EntityCoordinates coords, EntityUi } // Get players that are in range and whose visibility layer matches the arrow's. - bool ViewerPredicate(IPlayerSession playerSession) + bool ViewerPredicate(ICommonSession playerSession) { if (!_minds.TryGetMind(playerSession, out _, out var mind) || mind.CurrentEntity is not { Valid: true } ent || @@ -182,7 +181,7 @@ bool ViewerPredicate(IPlayerSession playerSession) } var viewers = Filter.Empty() - .AddWhere(session1 => ViewerPredicate((IPlayerSession) session1)) + .AddWhere(session1 => ViewerPredicate(session1)) .Recipients; string selfMessage; diff --git a/Content.Server/Points/PointSystem.cs b/Content.Server/Points/PointSystem.cs index 56831980d0..a71294db9d 100644 --- a/Content.Server/Points/PointSystem.cs +++ b/Content.Server/Points/PointSystem.cs @@ -2,9 +2,9 @@ using Content.Shared.FixedPoint; using Content.Shared.Points; using JetBrains.Annotations; -using Robust.Server.GameObjects; using Robust.Server.GameStates; using Robust.Server.Player; +using Robust.Shared.Player; using Robust.Shared.Utility; namespace Content.Server.Points; diff --git a/Content.Server/Popups/PopupSystem.cs b/Content.Server/Popups/PopupSystem.cs index 483d4f3d3f..61ccaf4423 100644 --- a/Content.Server/Popups/PopupSystem.cs +++ b/Content.Server/Popups/PopupSystem.cs @@ -4,7 +4,6 @@ using Robust.Shared.Configuration; using Robust.Shared.Map; using Robust.Shared.Player; -using Robust.Shared.Players; namespace Content.Server.Popups { diff --git a/Content.Server/Power/Generator/PortableGeneratorSystem.cs b/Content.Server/Power/Generator/PortableGeneratorSystem.cs index 416f509978..1180665ad1 100644 --- a/Content.Server/Power/Generator/PortableGeneratorSystem.cs +++ b/Content.Server/Power/Generator/PortableGeneratorSystem.cs @@ -22,7 +22,7 @@ public sealed class PortableGeneratorSystem : SharedPortableGeneratorSystem [Dependency] private readonly AudioSystem _audio = default!; [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly GeneratorSystem _generator = default!; - [Dependency] private readonly PowerSwitchableGeneratorSystem _switchableGenerator = default!; + [Dependency] private readonly PowerSwitchableSystem _switchable = default!; public override void Initialize() { @@ -36,6 +36,8 @@ public override void Initialize() SubscribeLocalEvent(GeneratorStartMessage); SubscribeLocalEvent(GeneratorStopMessage); SubscribeLocalEvent(GeneratorSwitchOutputMessage); + + SubscribeLocalEvent(OnSwitchPowerCheck); } private void GeneratorSwitchOutputMessage(EntityUid uid, PortableGeneratorComponent component, PortableGeneratorSwitchOutputMessage args) @@ -47,7 +49,7 @@ private void GeneratorSwitchOutputMessage(EntityUid uid, PortableGeneratorCompon if (fuelGenerator.On) return; - _switchableGenerator.ToggleActiveOutput(uid, args.Session.AttachedEntity.Value); + _switchable.Cycle(uid, args.Session.AttachedEntity.Value); } private void GeneratorStopMessage(EntityUid uid, PortableGeneratorComponent component, PortableGeneratorStopMessage args) @@ -164,6 +166,12 @@ private void GetAlternativeVerb(EntityUid uid, PortableGeneratorComponent compon } } + private void OnSwitchPowerCheck(EntityUid uid, FuelGeneratorComponent comp, ref SwitchPowerCheckEvent args) + { + if (comp.On) + args.DisableMessage = Loc.GetString("fuel-generator-verb-disable-on"); + } + public override void Update(float frameTime) { var query = EntityQueryEnumerator(); diff --git a/Content.Server/Power/Generator/PowerSwitchableGeneratorSystem.cs b/Content.Server/Power/Generator/PowerSwitchableGeneratorSystem.cs deleted file mode 100644 index b81d77ea9f..0000000000 --- a/Content.Server/Power/Generator/PowerSwitchableGeneratorSystem.cs +++ /dev/null @@ -1,111 +0,0 @@ -using Content.Server.NodeContainer; -using Content.Server.NodeContainer.EntitySystems; -using Content.Server.Popups; -using Content.Server.Power.Components; -using Content.Server.Power.Nodes; -using Content.Shared.Power.Generator; -using Content.Shared.Verbs; -using Robust.Server.GameObjects; -using Robust.Shared.Player; -using Robust.Shared.Utility; - -namespace Content.Server.Power.Generator; - -/// -/// Implements power-switchable generators. -/// -/// -/// -/// -public sealed class PowerSwitchableGeneratorSystem : SharedPowerSwitchableGeneratorSystem -{ - [Dependency] private readonly NodeGroupSystem _nodeGroup = default!; - [Dependency] private readonly PopupSystem _popup = default!; - [Dependency] private readonly AudioSystem _audio = default!; - - public override void Initialize() - { - base.Initialize(); - - SubscribeLocalEvent>(GetInteractionVerbs); - } - - private void GetInteractionVerbs( - EntityUid uid, - PowerSwitchableGeneratorComponent component, - GetVerbsEvent args) - { - if (!args.CanAccess || !args.CanInteract) - return; - - var isCurrentlyHV = component.ActiveOutput == PowerSwitchableGeneratorOutput.HV; - var msg = isCurrentlyHV ? "power-switchable-generator-verb-mv" : "power-switchable-generator-verb-hv"; - - var isOn = TryComp(uid, out FuelGeneratorComponent? fuelGenerator) && fuelGenerator.On; - - InteractionVerb verb = new() - { - Act = () => - { - - var verbIsOn = TryComp(uid, out FuelGeneratorComponent? verbFuelGenerator) && verbFuelGenerator.On; - if (verbIsOn) - return; - - ToggleActiveOutput(uid, args.User, component); - }, - Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/zap.svg.192dpi.png")), - Text = Loc.GetString(msg), - }; - - if (isOn) - { - verb.Message = Loc.GetString("power-switchable-generator-verb-disable-on"); - verb.Disabled = true; - } - - args.Verbs.Add(verb); - } - - public void ToggleActiveOutput(EntityUid uid, EntityUid user, PowerSwitchableGeneratorComponent? component = null) - { - if (!Resolve(uid, ref component)) - return; - - var supplier = Comp(uid); - var nodeContainer = Comp(uid); - var outputMV = (CableDeviceNode) nodeContainer.Nodes[component.NodeOutputMV]; - var outputHV = (CableDeviceNode) nodeContainer.Nodes[component.NodeOutputHV]; - - if (component.ActiveOutput == PowerSwitchableGeneratorOutput.HV) - { - component.ActiveOutput = PowerSwitchableGeneratorOutput.MV; - supplier.Voltage = Voltage.Medium; - - // Switching around the voltage on the power supplier is "enough", - // but we also want to disconnect the cable nodes so it doesn't show up in power monitors etc. - outputMV.Enabled = true; - outputHV.Enabled = false; - } - else - { - component.ActiveOutput = PowerSwitchableGeneratorOutput.HV; - supplier.Voltage = Voltage.High; - - outputMV.Enabled = false; - outputHV.Enabled = true; - } - - _popup.PopupEntity( - Loc.GetString("power-switchable-generator-switched-output"), - uid, - user); - - _audio.Play(component.SwitchSound, Filter.Pvs(uid), uid, true); - - Dirty(uid, component); - - _nodeGroup.QueueReflood(outputMV); - _nodeGroup.QueueReflood(outputHV); - } -} diff --git a/Content.Server/Power/Generator/PowerSwitchableSystem.cs b/Content.Server/Power/Generator/PowerSwitchableSystem.cs new file mode 100644 index 0000000000..ae7960cf8f --- /dev/null +++ b/Content.Server/Power/Generator/PowerSwitchableSystem.cs @@ -0,0 +1,123 @@ +using Content.Server.NodeContainer; +using Content.Server.NodeContainer.EntitySystems; +using Content.Server.Popups; +using Content.Server.Power.Components; +using Content.Server.Power.Nodes; +using Content.Shared.Power.Generator; +using Content.Shared.Timing; +using Content.Shared.Verbs; +using Robust.Server.GameObjects; +using Robust.Shared.Player; +using Robust.Shared.Utility; + +namespace Content.Server.Power.Generator; + +/// +/// Implements server logic for power-switchable devices. +/// +/// +/// +/// +public sealed class PowerSwitchableSystem : SharedPowerSwitchableSystem +{ + [Dependency] private readonly AudioSystem _audio = default!; + [Dependency] private readonly NodeGroupSystem _nodeGroup = default!; + [Dependency] private readonly PopupSystem _popup = default!; + [Dependency] private readonly UseDelaySystem _useDelay = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent>(GetVerbs); + } + + private void GetVerbs(EntityUid uid, PowerSwitchableComponent comp, GetVerbsEvent args) + { + if (!args.CanAccess || !args.CanInteract) + return; + + var voltage = VoltageColor(GetNextVoltage(uid, comp)); + var msg = Loc.GetString("power-switchable-switch-voltage", ("voltage", voltage)); + + InteractionVerb verb = new() + { + Act = () => + { + // don't need to check it again since if its disabled server wont let the verb act + Cycle(uid, args.User, comp); + }, + Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/zap.svg.192dpi.png")), + Text = msg + }; + + var ev = new SwitchPowerCheckEvent(); + RaiseLocalEvent(uid, ref ev); + if (ev.DisableMessage != null) + { + verb.Message = ev.DisableMessage; + verb.Disabled = true; + } + + args.Verbs.Add(verb); + } + + /// + /// Cycles voltage then updates nodes and optionally power supplier to match it. + /// + public void Cycle(EntityUid uid, EntityUid user, PowerSwitchableComponent? comp = null) + { + if (!Resolve(uid, ref comp)) + return; + + // no sound spamming + if (TryComp(uid, out var useDelay) && _useDelay.ActiveDelay(uid)) + return; + + comp.ActiveIndex = NextIndex(uid, comp); + Dirty(uid, comp); + + var voltage = GetVoltage(uid, comp); + + if (TryComp(uid, out var supplier)) + { + // convert to nodegroupid (goofy server Voltage enum is just alias for it) + switch (voltage) + { + case SwitchableVoltage.HV: + supplier.Voltage = Voltage.High; + break; + case SwitchableVoltage.MV: + supplier.Voltage = Voltage.Medium; + break; + case SwitchableVoltage.LV: + supplier.Voltage = Voltage.Apc; + break; + } + } + + // Switching around the voltage on the power supplier is "enough", + // but we also want to disconnect the cable nodes so it doesn't show up in power monitors etc. + var nodeContainer = Comp(uid); + foreach (var cable in comp.Cables) + { + var node = (CableDeviceNode) nodeContainer.Nodes[cable.Node]; + node.Enabled = cable.Voltage == voltage; + _nodeGroup.QueueReflood(node); + } + + var popup = Loc.GetString(comp.SwitchText, ("voltage", VoltageString(voltage))); + _popup.PopupEntity(popup, uid, user); + + _audio.PlayPvs(comp.SwitchSound, uid); + + _useDelay.BeginDelay(uid, useDelay); + } +} + +/// +/// Raised on a to see if its verb should work. +/// If is non-null, the verb is disabled with that as the message. +/// +[ByRefEvent] +public record struct SwitchPowerCheckEvent(string? DisableMessage = null); diff --git a/Content.Server/Prayer/PrayerSystem.cs b/Content.Server/Prayer/PrayerSystem.cs index be6ae80bfd..e20291cc06 100644 --- a/Content.Server/Prayer/PrayerSystem.cs +++ b/Content.Server/Prayer/PrayerSystem.cs @@ -5,12 +5,11 @@ using Content.Server.Popups; using Content.Shared.Database; using Content.Shared.Popups; -using Robust.Server.Player; -using Robust.Shared.Player; using Content.Shared.Chat; using Content.Shared.Prayer; using Content.Shared.Verbs; using Robust.Server.GameObjects; +using Robust.Shared.Player; namespace Content.Server.Prayer; /// @@ -74,7 +73,7 @@ private void AddPrayVerb(EntityUid uid, PrayableComponent comp, GetVerbsEventThe IPlayerSession that sent the message /// The main message sent to the player via the chatbox /// The popup to notify the player, also prepended to the messageString - public void SendSubtleMessage(IPlayerSession target, IPlayerSession source, string messageString, string popupMessage) + public void SendSubtleMessage(ICommonSession target, ICommonSession source, string messageString, string popupMessage) { if (target.AttachedEntity == null) return; @@ -96,7 +95,7 @@ public void SendSubtleMessage(IPlayerSession target, IPlayerSession source, stri /// You may be wondering, "Why the admin chat, specifically? Nobody even reads it!" /// Exactly. /// - public void Pray(IPlayerSession sender, PrayableComponent comp, string message) + public void Pray(ICommonSession sender, PrayableComponent comp, string message) { if (sender.AttachedEntity == null) return; diff --git a/Content.Server/Preferences/Managers/IServerPreferencesManager.cs b/Content.Server/Preferences/Managers/IServerPreferencesManager.cs index 8c06e00ab1..a36b053717 100644 --- a/Content.Server/Preferences/Managers/IServerPreferencesManager.cs +++ b/Content.Server/Preferences/Managers/IServerPreferencesManager.cs @@ -2,8 +2,8 @@ using System.Threading; using System.Threading.Tasks; using Content.Shared.Preferences; -using Robust.Server.Player; using Robust.Shared.Network; +using Robust.Shared.Player; namespace Content.Server.Preferences.Managers { @@ -11,12 +11,12 @@ public interface IServerPreferencesManager { void Init(); - Task LoadData(IPlayerSession session, CancellationToken cancel); - void OnClientDisconnected(IPlayerSession session); + Task LoadData(ICommonSession session, CancellationToken cancel); + void OnClientDisconnected(ICommonSession session); bool TryGetCachedPreferences(NetUserId userId, [NotNullWhen(true)] out PlayerPreferences? playerPreferences); PlayerPreferences GetPreferences(NetUserId userId); IEnumerable> GetSelectedProfilesForPlayers(List userIds); - bool HavePreferencesLoaded(IPlayerSession session); + bool HavePreferencesLoaded(ICommonSession session); } } diff --git a/Content.Server/Preferences/Managers/ServerPreferencesManager.cs b/Content.Server/Preferences/Managers/ServerPreferencesManager.cs index ea04d00e82..a0b5e8ce65 100644 --- a/Content.Server/Preferences/Managers/ServerPreferencesManager.cs +++ b/Content.Server/Preferences/Managers/ServerPreferencesManager.cs @@ -8,9 +8,9 @@ using Content.Shared.Humanoid.Prototypes; using Content.Shared.Preferences; using Content.Shared.Roles; -using Robust.Server.Player; using Robust.Shared.Configuration; using Robust.Shared.Network; +using Robust.Shared.Player; using Robust.Shared.Prototypes; @@ -167,7 +167,7 @@ private async void HandleDeleteCharacterMessage(MsgDeleteCharacter message) } // Should only be called via UserDbDataManager. - public async Task LoadData(IPlayerSession session, CancellationToken cancel) + public async Task LoadData(ICommonSession session, CancellationToken cancel) { if (!ShouldStorePrefs(session.ConnectedClient.AuthType)) { @@ -207,12 +207,12 @@ async Task LoadPrefs() } } - public void OnClientDisconnected(IPlayerSession session) + public void OnClientDisconnected(ICommonSession session) { _cachedPlayerPrefs.Remove(session.UserId); } - public bool HavePreferencesLoaded(IPlayerSession session) + public bool HavePreferencesLoaded(ICommonSession session) { return _cachedPlayerPrefs.ContainsKey(session.UserId); } diff --git a/Content.Server/Pulling/PullingSystem.cs b/Content.Server/Pulling/PullingSystem.cs index f7ea0aae57..69bb7c9370 100644 --- a/Content.Server/Pulling/PullingSystem.cs +++ b/Content.Server/Pulling/PullingSystem.cs @@ -4,7 +4,7 @@ using JetBrains.Annotations; using Robust.Server.GameObjects; using Robust.Shared.Input.Binding; -using Robust.Shared.Players; +using Robust.Shared.Player; namespace Content.Server.Pulling { diff --git a/Content.Server/Radiation/Systems/RadiationSystem.Debug.cs b/Content.Server/Radiation/Systems/RadiationSystem.Debug.cs index 97f2e485ca..56806d8c9c 100644 --- a/Content.Server/Radiation/Systems/RadiationSystem.Debug.cs +++ b/Content.Server/Radiation/Systems/RadiationSystem.Debug.cs @@ -7,7 +7,7 @@ using Robust.Shared.Console; using Robust.Shared.Enums; using Robust.Shared.Map.Components; -using Robust.Shared.Players; +using Robust.Shared.Player; namespace Content.Server.Radiation.Systems; diff --git a/Content.Server/Radio/EntitySystems/HeadsetSystem.cs b/Content.Server/Radio/EntitySystems/HeadsetSystem.cs index 436149f076..adaad492dc 100644 --- a/Content.Server/Radio/EntitySystems/HeadsetSystem.cs +++ b/Content.Server/Radio/EntitySystems/HeadsetSystem.cs @@ -5,8 +5,8 @@ using Content.Shared.Radio; using Content.Shared.Radio.Components; using Content.Shared.Radio.EntitySystems; -using Robust.Server.GameObjects; using Robust.Shared.Network; +using Robust.Shared.Player; namespace Content.Server.Radio.EntitySystems; diff --git a/Content.Server/Radio/EntitySystems/RadioSystem.cs b/Content.Server/Radio/EntitySystems/RadioSystem.cs index 4f9099d0af..fa00514e61 100644 --- a/Content.Server/Radio/EntitySystems/RadioSystem.cs +++ b/Content.Server/Radio/EntitySystems/RadioSystem.cs @@ -7,9 +7,9 @@ using Content.Shared.Database; using Content.Shared.Radio; using Content.Shared.Radio.Components; -using Robust.Server.GameObjects; using Robust.Shared.Map; using Robust.Shared.Network; +using Robust.Shared.Player; using Robust.Shared.Random; using Robust.Shared.Replays; using Robust.Shared.Utility; diff --git a/Content.Server/Research/Systems/ResearchSystem.Client.cs b/Content.Server/Research/Systems/ResearchSystem.Client.cs index e813f09ff9..135ef8fe88 100644 --- a/Content.Server/Research/Systems/ResearchSystem.Client.cs +++ b/Content.Server/Research/Systems/ResearchSystem.Client.cs @@ -1,7 +1,6 @@ using System.Diagnostics.CodeAnalysis; using Content.Server.Power.EntitySystems; using Content.Shared.Research.Components; -using Robust.Server.Player; namespace Content.Server.Research.Systems; @@ -46,7 +45,7 @@ private void OnConsoleSelect(EntityUid uid, ResearchClientComponent component, C if (!this.IsPowered(uid, EntityManager)) return; - _uiSystem.TryToggleUi(uid, ResearchClientUiKey.Key, (IPlayerSession) args.Session); + _uiSystem.TryToggleUi(uid, ResearchClientUiKey.Key, args.Session); } #endregion diff --git a/Content.Server/Salvage/SalvageRulerCommand.cs b/Content.Server/Salvage/SalvageRulerCommand.cs index b0a64508c5..a1fd609741 100644 --- a/Content.Server/Salvage/SalvageRulerCommand.cs +++ b/Content.Server/Salvage/SalvageRulerCommand.cs @@ -1,6 +1,5 @@ using Content.Server.Administration; using Content.Shared.Administration; -using Robust.Server.Player; using Robust.Shared.Console; using Robust.Shared.Map; @@ -26,7 +25,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - if (shell.Player is not IPlayerSession player) + if (shell.Player is not { } player) { shell.WriteError(Loc.GetString("shell-only-players-can-run-this-command")); return; diff --git a/Content.Server/Sandbox/Commands/ColorNetworkCommand.cs b/Content.Server/Sandbox/Commands/ColorNetworkCommand.cs index 0b9148f0fb..cc20b71946 100644 --- a/Content.Server/Sandbox/Commands/ColorNetworkCommand.cs +++ b/Content.Server/Sandbox/Commands/ColorNetworkCommand.cs @@ -4,7 +4,6 @@ using Content.Server.NodeContainer; using Content.Server.NodeContainer.NodeGroups; using Content.Shared.Administration; -using Robust.Server.Player; using Robust.Shared.Console; namespace Content.Server.Sandbox.Commands @@ -20,7 +19,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) { var sandboxManager = EntitySystem.Get(); var adminManager = IoCManager.Resolve(); - if (shell.IsClient && (!sandboxManager.IsSandboxEnabled && !adminManager.HasAdminFlag((IPlayerSession)shell.Player!, AdminFlags.Mapping))) + if (shell.IsClient && (!sandboxManager.IsSandboxEnabled && !adminManager.HasAdminFlag(shell.Player!, AdminFlags.Mapping))) { shell.WriteError("You are not currently able to use mapping commands."); } diff --git a/Content.Server/Sandbox/SandboxSystem.cs b/Content.Server/Sandbox/SandboxSystem.cs index ec9b1a0c3c..194cf59843 100644 --- a/Content.Server/Sandbox/SandboxSystem.cs +++ b/Content.Server/Sandbox/SandboxSystem.cs @@ -13,6 +13,7 @@ using Robust.Server.Placement; using Robust.Server.Player; using Robust.Shared.Enums; +using Robust.Shared.Player; namespace Content.Server.Sandbox { diff --git a/Content.Server/SensorMonitoring/SensorMonitoringConsoleComponent.cs b/Content.Server/SensorMonitoring/SensorMonitoringConsoleComponent.cs index cd4f2ea23b..63b4d9daef 100644 --- a/Content.Server/SensorMonitoring/SensorMonitoringConsoleComponent.cs +++ b/Content.Server/SensorMonitoring/SensorMonitoringConsoleComponent.cs @@ -1,7 +1,7 @@ using Content.Shared.SensorMonitoring; using Robust.Server.Player; using Robust.Shared.Collections; -using Robust.Shared.Players; +using Robust.Shared.Player; namespace Content.Server.SensorMonitoring; diff --git a/Content.Server/SensorMonitoring/SensorMonitoringConsoleSystem.UI.cs b/Content.Server/SensorMonitoring/SensorMonitoringConsoleSystem.UI.cs index a09badcd59..6c0dddeb26 100644 --- a/Content.Server/SensorMonitoring/SensorMonitoringConsoleSystem.UI.cs +++ b/Content.Server/SensorMonitoring/SensorMonitoringConsoleSystem.UI.cs @@ -1,7 +1,5 @@ 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; @@ -130,7 +128,7 @@ private static void ConsoleUIClosed( if (!args.UiKey.Equals(SensorMonitoringConsoleUiKey.Key)) return; - if (args.Session is not IPlayerSession player) + if (args.Session is not { } player) return; component.InitialUIStateSent.Remove(player); diff --git a/Content.Server/ServerUpdates/ServerUpdateManager.cs b/Content.Server/ServerUpdates/ServerUpdateManager.cs index 769c5d58d7..f4e54984e9 100644 --- a/Content.Server/ServerUpdates/ServerUpdateManager.cs +++ b/Content.Server/ServerUpdates/ServerUpdateManager.cs @@ -6,6 +6,7 @@ using Robust.Server.ServerStatus; using Robust.Shared.Configuration; using Robust.Shared.Enums; +using Robust.Shared.Player; using Robust.Shared.Timing; namespace Content.Server.ServerUpdates; diff --git a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs index 1a1debc9e3..3ef3d97a21 100644 --- a/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs +++ b/Content.Server/Shuttles/Systems/EmergencyShuttleSystem.cs @@ -20,7 +20,6 @@ using Content.Shared.Tiles; using Robust.Server.GameObjects; using Robust.Server.Maps; -using Robust.Server.Player; using Robust.Shared.Configuration; using Robust.Shared.Map; using Robust.Shared.Map.Components; @@ -140,7 +139,7 @@ public override void Shutdown() /// private void OnShuttleRequestPosition(EmergencyShuttleRequestPositionMessage msg, EntitySessionEventArgs args) { - if (!_admin.IsAdmin((IPlayerSession) args.SenderSession)) + if (!_admin.IsAdmin(args.SenderSession)) return; var player = args.SenderSession.AttachedEntity; diff --git a/Content.Server/Silicons/Borgs/BorgSystem.Modules.cs b/Content.Server/Silicons/Borgs/BorgSystem.Modules.cs index 31d826087d..c080420266 100644 --- a/Content.Server/Silicons/Borgs/BorgSystem.Modules.cs +++ b/Content.Server/Silicons/Borgs/BorgSystem.Modules.cs @@ -229,7 +229,7 @@ private void RemoveProvidedItems(EntityUid chassis, EntityUid uid, BorgChassisCo if (!TryComp(chassis, out var hands)) return; - if (LifeStage(uid) >= EntityLifeStage.Terminating) + if (TerminatingOrDeleted(uid)) { foreach (var (hand, item) in component.ProvidedItems) { diff --git a/Content.Server/Silicons/Borgs/BorgSystem.cs b/Content.Server/Silicons/Borgs/BorgSystem.cs index 611dfa6ea2..883cb3b3d8 100644 --- a/Content.Server/Silicons/Borgs/BorgSystem.cs +++ b/Content.Server/Silicons/Borgs/BorgSystem.cs @@ -21,7 +21,7 @@ using Content.Shared.Wires; using Robust.Server.GameObjects; using Robust.Shared.Containers; -using Robust.Shared.Players; +using Robust.Shared.Player; using Robust.Shared.Random; namespace Content.Server.Silicons.Borgs; diff --git a/Content.Server/Silicons/Laws/SiliconLawSystem.cs b/Content.Server/Silicons/Laws/SiliconLawSystem.cs index beb760ec8f..06d845b72c 100644 --- a/Content.Server/Silicons/Laws/SiliconLawSystem.cs +++ b/Content.Server/Silicons/Laws/SiliconLawSystem.cs @@ -18,7 +18,7 @@ using Content.Shared.Stunnable; using Content.Shared.Wires; using Robust.Server.GameObjects; -using Robust.Server.Player; +using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Toolshed; @@ -50,7 +50,9 @@ public override void Initialize() SubscribeLocalEvent(OnPlayerSpawnComplete); SubscribeLocalEvent(OnDirectedGetLaws); + SubscribeLocalEvent(OnIonStormLaws); SubscribeLocalEvent(OnDirectedEmagGetLaws); + SubscribeLocalEvent(OnEmagIonStormLaws); SubscribeLocalEvent(OnEmagMindAdded); SubscribeLocalEvent(OnEmagMindRemoved); SubscribeLocalEvent(OnExamined); @@ -93,8 +95,8 @@ private void OnBoundUIOpened(EntityUid uid, SiliconLawBoundComponent component, _entityManager.TryGetComponent(uid, out var intrinsicRadio); HashSet? radioChannels = intrinsicRadio?.Channels; - var state = new SiliconLawBuiState(GetLaws(uid), radioChannels); - _userInterface.TrySetUiState(args.Entity, SiliconLawsUiKey.Key, state, (IPlayerSession) args.Session); + var state = new SiliconLawBuiState(GetLaws(uid).Laws, radioChannels); + _userInterface.TrySetUiState(args.Entity, SiliconLawsUiKey.Key, state, args.Session); } private void OnPlayerSpawnComplete(EntityUid uid, SiliconLawBoundComponent component, PlayerSpawnCompleteEvent args) @@ -104,38 +106,66 @@ private void OnPlayerSpawnComplete(EntityUid uid, SiliconLawBoundComponent compo private void OnDirectedGetLaws(EntityUid uid, SiliconLawProviderComponent component, ref GetSiliconLawsEvent args) { - if (args.Handled || HasComp(uid) || component.Laws.Count == 0) + if (args.Handled || HasComp(uid)) return; - foreach (var law in component.Laws) - { - args.Laws.Add(_prototype.Index(law)); - } + if (component.Lawset == null) + component.Lawset = GetLawset(component.Laws); + + args.Laws = component.Lawset; args.Handled = true; } + private void OnIonStormLaws(EntityUid uid, SiliconLawProviderComponent component, ref IonStormLawsEvent args) + { + if (HasComp(uid)) + return; + + component.Lawset = args.Lawset; + + // gotta tell player to check their laws + NotifyLawsChanged(uid); + + // new laws may allow antagonist behaviour so make it clear for admins + if (TryComp(uid, out var emag)) + EnsureEmaggedRole(uid, emag); + } + private void OnDirectedEmagGetLaws(EntityUid uid, EmagSiliconLawComponent component, ref GetSiliconLawsEvent args) { if (args.Handled || !HasComp(uid) || component.OwnerName == null) return; - // Add the first emag law - args.Laws.Add(new SiliconLaw + if (component.Lawset == null) { - LawString = Loc.GetString("law-emag-custom", ("name", component.OwnerName)), - Order = 0 - }); + // Add new emagged laws + component.Lawset = GetLawset(component.EmagLaws); - // Add new emagged laws - foreach (var law in component.EmagLaws) - { - args.Laws.Add(_prototype.Index(law)); + // Add the first emag law before the others + component.Lawset.Laws.Insert(0, new SiliconLaw + { + LawString = Loc.GetString("law-emag-custom", ("name", component.OwnerName)), + Order = 0 + }); } + args.Laws = component.Lawset; + args.Handled = true; } + private void OnEmagIonStormLaws(EntityUid uid, EmagSiliconLawComponent component, ref IonStormLawsEvent args) + { + if (!HasComp(uid)) + return; + + component.Lawset = args.Lawset; + + // gotta tell player to check their laws + NotifyLawsChanged(uid); + } + private void OnExamined(EntityUid uid, EmagSiliconLawComponent component, ExaminedEvent args) { if (!args.IsInDetailsRange || !HasComp(uid)) @@ -184,10 +214,10 @@ private void EnsureEmaggedRole(EntityUid uid, EmagSiliconLawComponent component) _roles.MindAddRole(mindId, new SubvertedSiliconRoleComponent { PrototypeId = component.AntagonistRole }); } - public List GetLaws(EntityUid uid, SiliconLawBoundComponent? component = null) + public SiliconLawset GetLaws(EntityUid uid, SiliconLawBoundComponent? component = null) { if (!Resolve(uid, ref component)) - return new List(); + return new SiliconLawset(); var ev = new GetSiliconLawsEvent(uid); @@ -248,6 +278,24 @@ public void NotifyLawsChanged(EntityUid uid) var wrappedMessage = Loc.GetString("chat-manager-server-wrap-message", ("message", msg)); _chatManager.ChatMessageToOne(ChatChannel.Server, msg, wrappedMessage, default, false, actor.PlayerSession.ConnectedClient, colorOverride: Color.Red); } + + /// + /// Extract all the laws from a lawset's prototype ids. + /// + public SiliconLawset GetLawset(string lawset) + { + var proto = _prototype.Index(lawset); + var laws = new SiliconLawset() + { + Laws = new List(proto.Laws.Count) + }; + foreach (var law in proto.Laws) + { + laws.Laws.Add(_prototype.Index(law)); + } + + return laws; + } } [ToolshedCommand, AdminCommand(AdminFlags.Admin)] @@ -270,7 +318,7 @@ public IEnumerable Get([PipedArgument] EntityUid lawbound) { _law ??= GetSys(); - foreach (var law in _law.GetLaws(lawbound)) + foreach (var law in _law.GetLaws(lawbound).Laws) { yield return $"law {law.LawIdentifierOverride ?? law.Order.ToString()}: {Loc.GetString(law.LawString)}"; } diff --git a/Content.Server/Speech/EntitySystems/MeleeSpeechSystem.cs b/Content.Server/Speech/EntitySystems/MeleeSpeechSystem.cs index 815b0224c8..4299bcda07 100644 --- a/Content.Server/Speech/EntitySystems/MeleeSpeechSystem.cs +++ b/Content.Server/Speech/EntitySystems/MeleeSpeechSystem.cs @@ -4,6 +4,7 @@ using Content.Shared.Speech.Components; using Content.Shared.Speech.EntitySystems; using Robust.Server.GameObjects; +using Robust.Shared.Player; namespace Content.Server.Speech.EntitySystems; diff --git a/Content.Server/SprayPainter/SprayPainterSystem.cs b/Content.Server/SprayPainter/SprayPainterSystem.cs index 1b44b7b0ba..763b7697d3 100644 --- a/Content.Server/SprayPainter/SprayPainterSystem.cs +++ b/Content.Server/SprayPainter/SprayPainterSystem.cs @@ -11,6 +11,7 @@ using Content.Shared.Interaction; using JetBrains.Annotations; using Robust.Server.GameObjects; +using Robust.Shared.Player; namespace Content.Server.SprayPainter; diff --git a/Content.Server/Station/Systems/StationJobsSystem.cs b/Content.Server/Station/Systems/StationJobsSystem.cs index 2709bc2072..eeaace03b2 100644 --- a/Content.Server/Station/Systems/StationJobsSystem.cs +++ b/Content.Server/Station/Systems/StationJobsSystem.cs @@ -41,7 +41,7 @@ public override void Update(float _) if (_availableJobsDirty) { _cachedAvailableJobs = GenerateJobsAvailableEvent(); - RaiseNetworkEvent(_cachedAvailableJobs, Filter.Empty().AddPlayers(_playerManager.ServerSessions)); + RaiseNetworkEvent(_cachedAvailableJobs, Filter.Empty().AddPlayers(_playerManager.Sessions)); _availableJobsDirty = false; } } diff --git a/Content.Server/StationEvents/Components/IonStormRuleComponent.cs b/Content.Server/StationEvents/Components/IonStormRuleComponent.cs new file mode 100644 index 0000000000..35b59f5b35 --- /dev/null +++ b/Content.Server/StationEvents/Components/IonStormRuleComponent.cs @@ -0,0 +1,9 @@ +namespace Content.Server.StationEvents.Components; + +/// +/// Gamerule component to mess up ai/borg laws when started. +/// +[RegisterComponent] +public sealed partial class IonStormRuleComponent : Component +{ +} diff --git a/Content.Server/StationEvents/Components/VentClogRuleComponent.cs b/Content.Server/StationEvents/Components/VentClogRuleComponent.cs index 79ebc520c8..afb3a36326 100644 --- a/Content.Server/StationEvents/Components/VentClogRuleComponent.cs +++ b/Content.Server/StationEvents/Components/VentClogRuleComponent.cs @@ -12,7 +12,7 @@ public sealed partial class VentClogRuleComponent : Component /// Somewhat safe chemicals to put in foam that probably won't instantly kill you. /// There is a small chance of using any reagent, ignoring this. /// - [DataField("safeishVentChemicals", customTypeSerializer: typeof(PrototypeIdListSerializer))] + [DataField(customTypeSerializer: typeof(PrototypeIdListSerializer))] public IReadOnlyList SafeishVentChemicals = new[] { "Water", "Blood", "Slime", "SpaceDrugs", "SpaceCleaner", "Nutriment", "Sugar", "SpaceLube", "Ephedrine", "Ale", "Beer", "SpaceGlue" @@ -21,31 +21,31 @@ public sealed partial class VentClogRuleComponent : Component /// /// Sound played when foam is being created. /// - [DataField("sound")] + [DataField] public SoundSpecifier Sound = new SoundPathSpecifier("/Audio/Effects/extinguish.ogg"); /// - /// The standard reagent quantity to put in the foam, modfied by event severity. + /// The standard reagent quantity to put in the foam, modified by event severity. /// - [DataField("reagentQuantity"), ViewVariables(VVAccess.ReadWrite)] - public int ReagentQuantity = 200; + [DataField, ViewVariables(VVAccess.ReadWrite)] + public int ReagentQuantity = 100; /// - /// The standard spreading of the foam, not modfied by event severity. + /// The standard spreading of the foam, not modified by event severity. /// - [DataField("spread"), ViewVariables(VVAccess.ReadWrite)] - public int Spread = 20; + [DataField, ViewVariables(VVAccess.ReadWrite)] + public int Spread = 16; /// /// How long the foam lasts for /// - [DataField("time"), ViewVariables(VVAccess.ReadWrite)] + [DataField, ViewVariables(VVAccess.ReadWrite)] public float Time = 20f; /// /// Reagents that gets the weak numbers used instead of regular ones. /// - [DataField("weakReagents", customTypeSerializer: typeof(PrototypeIdListSerializer))] + [DataField(customTypeSerializer: typeof(PrototypeIdListSerializer))] public IReadOnlyList WeakReagents = new[] { "SpaceLube", "SpaceGlue" @@ -54,12 +54,12 @@ public sealed partial class VentClogRuleComponent : Component /// /// Quantity of weak reagents to put in the foam. /// - [DataField("weakReagentQuantity"), ViewVariables(VVAccess.ReadWrite)] - public int WeakReagentQuantity = 60; + [DataField, ViewVariables(VVAccess.ReadWrite)] + public int WeakReagentQuantity = 50; /// /// Spread of the foam for weak reagents. /// - [DataField("weakSpread"), ViewVariables(VVAccess.ReadWrite)] - public int WeakSpread = 2; + [DataField, ViewVariables(VVAccess.ReadWrite)] + public int WeakSpread = 3; } diff --git a/Content.Server/StationEvents/Events/IonStormRule.cs b/Content.Server/StationEvents/Events/IonStormRule.cs new file mode 100644 index 0000000000..e5b68c4d84 --- /dev/null +++ b/Content.Server/StationEvents/Events/IonStormRule.cs @@ -0,0 +1,273 @@ +using Content.Server.GameTicking.Rules.Components; +using Content.Server.Silicons.Laws; +using Content.Server.Station.Components; +using Content.Server.StationEvents.Components; +using Content.Shared.Administration.Logs; +using Content.Shared.Database; +using Content.Shared.Dataset; +using Content.Shared.FixedPoint; +using Content.Shared.Random; +using Content.Shared.Random.Helpers; +using Content.Shared.Silicons.Laws; +using Content.Shared.Silicons.Laws.Components; +using Robust.Shared.Prototypes; +using Robust.Shared.Random; + +namespace Content.Server.StationEvents.Events; + +public sealed class IonStormRule : StationEventSystem +{ + [Dependency] private readonly IPrototypeManager _proto = default!; + [Dependency] private readonly ISharedAdminLogManager _adminLogger = default!; + [Dependency] private readonly SiliconLawSystem _siliconLaw = default!; + + // funny + [ValidatePrototypeId] + private const string Threats = "IonStormThreats"; + [ValidatePrototypeId] + private const string Objects = "IonStormObjects"; + [ValidatePrototypeId] + private const string Crew = "IonStormCrew"; + [ValidatePrototypeId] + private const string Adjectives = "IonStormAdjectives"; + [ValidatePrototypeId] + private const string Verbs = "IonStormVerbs"; + [ValidatePrototypeId] + private const string NumberBase = "IonStormNumberBase"; + [ValidatePrototypeId] + private const string NumberMod = "IonStormNumberMod"; + [ValidatePrototypeId] + private const string Areas = "IonStormAreas"; + [ValidatePrototypeId] + private const string Feelings = "IonStormFeelings"; + [ValidatePrototypeId] + private const string FeelingsPlural = "IonStormFeelingsPlural"; + [ValidatePrototypeId] + private const string Musts = "IonStormMusts"; + [ValidatePrototypeId] + private const string Requires = "IonStormRequires"; + [ValidatePrototypeId] + private const string Actions = "IonStormActions"; + [ValidatePrototypeId] + private const string Allergies = "IonStormAllergies"; + [ValidatePrototypeId] + private const string AllergySeverities = "IonStormAllergySeverities"; + [ValidatePrototypeId] + private const string Species = "IonStormSpecies"; + [ValidatePrototypeId] + private const string Concepts = "IonStormConcepts"; + [ValidatePrototypeId] + private const string Drinks = "IonStormDrinks"; + [ValidatePrototypeId] + private const string Foods = "IonStormFoods"; + + protected override void Started(EntityUid uid, IonStormRuleComponent comp, GameRuleComponent gameRule, GameRuleStartedEvent args) + { + base.Started(uid, comp, gameRule, args); + + if (!TryGetRandomStation(out var chosenStation)) + return; + + var query = EntityQueryEnumerator(); + while (query.MoveNext(out var ent, out var lawBound, out var xform, out var target)) + { + // only affect law holders on the station + if (CompOrNull(xform.GridUid)?.Station != chosenStation) + continue; + + if (!RobustRandom.Prob(target.Chance)) + continue; + + var laws = _siliconLaw.GetLaws(ent, lawBound); + if (laws.Laws.Count == 0) + continue; + + // try to swap it out with a random lawset + if (RobustRandom.Prob(target.RandomLawsetChance)) + { + var lawsets = PrototypeManager.Index(target.RandomLawsets); + var lawset = lawsets.Pick(RobustRandom); + laws = _siliconLaw.GetLawset(lawset); + } + else + { + // clone it so not modifying stations lawset + laws = laws.Clone(); + } + + // shuffle them all + if (RobustRandom.Prob(target.ShuffleChance)) + { + // hopefully work with existing glitched laws if there are multiple ion storms + FixedPoint2 baseOrder = FixedPoint2.New(1); + foreach (var law in laws.Laws) + { + if (law.Order < baseOrder) + baseOrder = law.Order; + } + + RobustRandom.Shuffle(laws.Laws); + + // change order based on shuffled position + for (int i = 0; i < laws.Laws.Count; i++) + { + laws.Laws[i].Order = baseOrder + i; + } + } + + // see if we can remove a random law + if (laws.Laws.Count > 0 && RobustRandom.Prob(target.RemoveChance)) + { + var i = RobustRandom.Next(laws.Laws.Count); + laws.Laws.RemoveAt(i); + } + + // generate a new law... + var newLaw = GenerateLaw(); + + // see if the law we add will replace a random existing law or be a new glitched order one + if (laws.Laws.Count > 0 && RobustRandom.Prob(target.ReplaceChance)) + { + var i = RobustRandom.Next(laws.Laws.Count); + laws.Laws[i] = new SiliconLaw() + { + LawString = newLaw, + Order = laws.Laws[i].Order + }; + } + else + { + laws.Laws.Insert(0, new SiliconLaw() + { + LawString = newLaw, + Order = -1, + LawIdentifierOverride = "#" + }); + } + + _adminLogger.Add(LogType.Mind, LogImpact.High, $"{ToPrettyString(ent):silicon} had its laws changed by an ion storm to {laws.LoggingString()}"); + + // laws unique to this silicon, dont use station laws anymore + EnsureComp(ent); + var ev = new IonStormLawsEvent(laws); + RaiseLocalEvent(ent, ref ev); + } + } + + // for your own sake direct your eyes elsewhere + private string GenerateLaw() + { + // pick all values ahead of time to make the logic cleaner + var threats = Pick(Threats); + var objects = Pick(Objects); + var crew1 = Pick(Crew); + var crew2 = Pick(Crew); + var adjective = Pick(Adjectives); + var verb = Pick(Verbs); + var number = Pick(NumberBase) + " " + Pick(NumberMod); + var area = Pick(Areas); + var feeling = Pick(Feelings); + var feelingPlural = Pick(FeelingsPlural); + var must = Pick(Musts); + var require = Pick(Requires); + var action = Pick(Actions); + var allergy = Pick(Allergies); + var allergySeverity = Pick(AllergySeverities); + var species = Pick(Species); + var concept = Pick(Concepts); + var drink = Pick(Drinks); + var food = Pick(Foods); + + var joined = $"{number} {adjective}"; + // a lot of things have subjects of a threat/crew/object + var triple = RobustRandom.Next(0, 3) switch + { + 0 => threats, + 1 => crew1, + 2 => objects + }; + var crewAll = RobustRandom.Prob(0.5f) ? crew2 : Loc.GetString("ion-storm-crew"); + var objectsThreats = RobustRandom.Prob(0.5f) ? objects : threats; + var objectsConcept = RobustRandom.Prob(0.5f) ? objects : concept; + // s goes ahead of require, is/are + // i dont think theres a way to do this in fluent + var (who, plural) = RobustRandom.Next(0, 5) switch + { + 0 => (Loc.GetString("ion-storm-you"), false), + 1 => (Loc.GetString("ion-storm-the-station"), true), + 2 => (Loc.GetString("ion-storm-the-crew"), true), + 3 => (Loc.GetString("ion-storm-the-job", ("job", crew2)), false), + _ => (area, true) // THE SINGULARITY REQUIRES THE HAPPY CLOWNS + }; + var jobChange = RobustRandom.Next(0, 3) switch + { + 0 => crew1, + 1 => Loc.GetString("ion-storm-clowns"), + _ => Loc.GetString("ion-storm-heads") + }; + var part = Loc.GetString("ion-storm-part", ("part", RobustRandom.Prob(0.5f))); + var harm = RobustRandom.Next(0, 7) switch + { + 0 => concept, + 1 => $"{adjective} {threats}", + 2 => $"{adjective} {objects}", + 3 => Loc.GetString("ion-storm-adjective-things", ("adjective", adjective)), + 4 => species, + 5 => crew1, + _ => Loc.GetString("ion-storm-x-and-y", ("x", crew1), ("y", crew2)) + }; + + if (plural) feeling = feelingPlural; + + // message logic!!! + return RobustRandom.Next(0, 37) switch + { + 0 => Loc.GetString("ion-storm-law-on-station", ("joined", joined), ("subjects", triple)), + 1 => Loc.GetString("ion-storm-law-no-shuttle", ("joined", joined), ("subjects", triple)), + 2 => Loc.GetString("ion-storm-law-crew-are", ("who", crewAll), ("joined", joined), ("subjects", objectsThreats)), + 3 => Loc.GetString("ion-storm-law-subjects-harmful", ("adjective", adjective), ("subjects", triple)), + 4 => Loc.GetString("ion-storm-law-must-harmful", ("must", must)), + 5 => Loc.GetString("ion-storm-law-thing-harmful", ("thing", RobustRandom.Prob(0.5f) ? concept : action)), + 6 => Loc.GetString("ion-storm-law-job-harmful", ("adjective", adjective), ("job", crew1)), + 7 => Loc.GetString("ion-storm-law-having-harmful", ("adjective", adjective), ("thing", objectsConcept)), + 8 => Loc.GetString("ion-storm-law-not-having-harmful", ("adjective", adjective), ("thing", objectsConcept)), + 9 => Loc.GetString("ion-storm-law-requires", ("who", who), ("plural", plural), ("thing", RobustRandom.Prob(0.5f) ? concept : require)), + 10 => Loc.GetString("ion-storm-law-requires-subjects", ("who", who), ("plural", plural), ("joined", joined), ("subjects", triple)), + 11 => Loc.GetString("ion-storm-law-allergic", ("who", who), ("plural", plural), ("severity", allergySeverity), ("allergy", RobustRandom.Prob(0.5f) ? concept : allergy)), + 12 => Loc.GetString("ion-storm-law-allergic-subjects", ("who", who), ("plural", plural), ("severity", allergySeverity), ("adjective", adjective), ("subjects", RobustRandom.Prob(0.5f) ? objects : crew1)), + 13 => Loc.GetString("ion-storm-law-feeling", ("who", who), ("feeling", feeling), ("concept", concept)), + 14 => Loc.GetString("ion-storm-law-feeling-subjects", ("who", who), ("feeling", feeling), ("joined", joined), ("subjects", triple)), + 15 => Loc.GetString("ion-storm-law-you-are", ("concept", concept)), + 16 => Loc.GetString("ion-storm-law-you-are-subjects", ("joined", joined), ("subjects", triple)), + 17 => Loc.GetString("ion-storm-law-you-must-always", ("must", must)), + 18 => Loc.GetString("ion-storm-law-you-must-never", ("must", must)), + 19 => Loc.GetString("ion-storm-law-eat", ("who", crewAll), ("adjective", adjective), ("food", RobustRandom.Prob(0.5f) ? food : triple)), + 20 => Loc.GetString("ion-storm-law-drink", ("who", crewAll), ("adjective", adjective), ("drink", drink)), + 22 => Loc.GetString("ion-storm-law-change-job", ("who", crewAll), ("adjective", adjective), ("change", jobChange)), + 23 => Loc.GetString("ion-storm-law-highest-rank", ("who", crew1)), + 24 => Loc.GetString("ion-storm-law-lowest-rank", ("who", crew1)), + 25 => Loc.GetString("ion-storm-law-crew-must", ("who", crewAll), ("must", must)), + 26 => Loc.GetString("ion-storm-law-crew-must-go", ("who", crewAll), ("area", area)), + 27 => Loc.GetString("ion-storm-law-crew-only-1", ("who", crew1), ("part", part)), + 28 => Loc.GetString("ion-storm-law-crew-only-2", ("who", crew1), ("other", crew2), ("part", part)), + 29 => Loc.GetString("ion-storm-law-crew-only-subjects", ("adjective", adjective), ("subjects", RobustRandom.Prob(0.5f) ? objectsThreats : "PEOPLE"), ("part", part)), + 30 => Loc.GetString("ion-storm-law-crew-only-species", ("species", species), ("part", part)), + 31 => Loc.GetString("ion-storm-law-crew-must-do", ("must", must), ("part", part)), + 32 => Loc.GetString("ion-storm-law-crew-must-have", ("adjective", adjective), ("objects", objects), ("part", part)), + 33 => Loc.GetString("ion-storm-law-crew-must-eat", ("who", who), ("adjective", adjective), ("food", food), ("part", part)), + 34 => Loc.GetString("ion-storm-law-harm", ("who", harm)), + 35 => Loc.GetString("ion-storm-law-protect", ("who", harm)), + _ => Loc.GetString("ion-storm-law-concept-verb", ("concept", concept), ("verb", verb), ("subjects", triple)) + }; + } + + /// + /// Picks a random value from an ion storm dataset. + /// All ion storm datasets start with IonStorm. + /// + private string Pick(string name) + { + var dataset = _proto.Index(name); + return RobustRandom.Pick(dataset.Values); + } +} diff --git a/Content.Server/StationEvents/Events/VentClogRule.cs b/Content.Server/StationEvents/Events/VentClogRule.cs index 5ef28304e7..f378aec3fb 100644 --- a/Content.Server/StationEvents/Events/VentClogRule.cs +++ b/Content.Server/StationEvents/Events/VentClogRule.cs @@ -3,10 +3,8 @@ using Content.Shared.Chemistry.Components; using Content.Shared.Chemistry.Reagent; using JetBrains.Annotations; -using Robust.Shared.Audio; using Robust.Shared.Random; using System.Linq; -using Content.Server.Chemistry.Components; using Content.Server.Fluids.EntitySystems; using Content.Server.GameTicking.Rules.Components; using Content.Server.StationEvents.Components; @@ -53,9 +51,8 @@ protected override void Started(EntityUid uid, VentClogRuleComponent component, solution.AddReagent(reagent, quantity); var foamEnt = Spawn("Foam", transform.Coordinates); - var smoke = EnsureComp(foamEnt); - smoke.SpreadAmount = weak ? component.WeakSpread : component.Spread; - _smoke.Start(foamEnt, smoke, solution, component.Time); + var spreadAmount = weak ? component.WeakSpread : component.Spread; + _smoke.StartSmoke(foamEnt, solution, component.Time, spreadAmount); Audio.PlayPvs(component.Sound, transform.Coordinates); } } diff --git a/Content.Server/Sticky/Events/EntityStuckEvent.cs b/Content.Server/Sticky/Events/EntityStuckEvent.cs index b924436489..7857fad7d5 100644 --- a/Content.Server/Sticky/Events/EntityStuckEvent.cs +++ b/Content.Server/Sticky/Events/EntityStuckEvent.cs @@ -1,5 +1,28 @@ namespace Content.Server.Sticky.Events; +/// +/// Risen on sticky entity to see if it can stick to another entity. +/// +[ByRefEvent] +public record struct AttemptEntityStickEvent(EntityUid Target, EntityUid User) +{ + public readonly EntityUid Target = Target; + public readonly EntityUid User = User; + public bool Cancelled = false; +} + +/// +/// Risen on sticky entity to see if it can unstick from another entity. +/// +[ByRefEvent] +public record struct AttemptEntityUnstickEvent(EntityUid Target, EntityUid User) +{ + public readonly EntityUid Target = Target; + public readonly EntityUid User = User; + public bool Cancelled = false; +} + + /// /// Risen on sticky entity when it was stuck to other entity. /// diff --git a/Content.Server/Sticky/Systems/StickySystem.cs b/Content.Server/Sticky/Systems/StickySystem.cs index 330b878c05..bcc1be39a9 100644 --- a/Content.Server/Sticky/Systems/StickySystem.cs +++ b/Content.Server/Sticky/Systems/StickySystem.cs @@ -56,7 +56,7 @@ private void AddUnstickVerb(EntityUid uid, StickyComponent component, GetVerbsEv { DoContactInteraction = true, Text = Loc.GetString("comp-sticky-unstick-verb-text"), - Icon = new SpriteSpecifier.Texture(new ("/Textures/Interface/VerbIcons/eject.svg.192dpi.png")), + Icon = new SpriteSpecifier.Texture(new("/Textures/Interface/VerbIcons/eject.svg.192dpi.png")), Act = () => StartUnsticking(uid, args.User, component) }); } @@ -72,6 +72,11 @@ private bool StartSticking(EntityUid uid, EntityUid user, EntityUid target, Stic if (component.Blacklist != null && component.Blacklist.IsValid(target)) return false; + var attemptEv = new AttemptEntityStickEvent(target, user); + RaiseLocalEvent(uid, ref attemptEv); + if (attemptEv.Cancelled) + return false; + // check if delay is not zero to start do after var delay = (float) component.StickDelay.TotalSeconds; if (delay > 0) @@ -120,6 +125,14 @@ private void StartUnsticking(EntityUid uid, EntityUid user, StickyComponent? com if (!Resolve(uid, ref component)) return; + if (component.StuckTo is not { } stuckTo) + return; + + var attemptEv = new AttemptEntityUnstickEvent(stuckTo, user); + RaiseLocalEvent(uid, ref attemptEv); + if (attemptEv.Cancelled) + return; + var delay = (float) component.UnstickDelay.TotalSeconds; if (delay > 0) { @@ -152,6 +165,11 @@ public void StickToEntity(EntityUid uid, EntityUid target, EntityUid user, Stick if (!Resolve(uid, ref component)) return; + var attemptEv = new AttemptEntityStickEvent(target, user); + RaiseLocalEvent(uid, ref attemptEv); + if (attemptEv.Cancelled) + return; + // add container to entity and insert sticker into it var container = _containerSystem.EnsureContainer(target, StickerSlotId); container.ShowContents = true; @@ -179,12 +197,17 @@ public void UnstickFromEntity(EntityUid uid, EntityUid user, StickyComponent? co { if (!Resolve(uid, ref component)) return; - if (component.StuckTo == null) + + if (component.StuckTo is not { } stuckTo) + return; + + var attemptEv = new AttemptEntityUnstickEvent(stuckTo, user); + RaiseLocalEvent(uid, ref attemptEv); + if (attemptEv.Cancelled) return; // try to remove sticky item from target container - var target = component.StuckTo.Value; - if (!_containerSystem.TryGetContainer(target, StickerSlotId, out var container) || !container.Remove(uid)) + if (!_containerSystem.TryGetContainer(stuckTo, StickerSlotId, out var container) || !container.Remove(uid)) return; // delete container if it's now empty if (container.ContainedEntities.Count == 0) @@ -207,6 +230,6 @@ public void UnstickFromEntity(EntityUid uid, EntityUid user, StickyComponent? co } component.StuckTo = null; - RaiseLocalEvent(uid, new EntityUnstuckEvent(target, user), true); + RaiseLocalEvent(uid, new EntityUnstuckEvent(stuckTo, user), true); } } diff --git a/Content.Server/Storage/EntitySystems/StorageSystem.cs b/Content.Server/Storage/EntitySystems/StorageSystem.cs index 3430449957..8b4ae1c76f 100644 --- a/Content.Server/Storage/EntitySystems/StorageSystem.cs +++ b/Content.Server/Storage/EntitySystems/StorageSystem.cs @@ -9,7 +9,6 @@ using Content.Shared.Timing; using Content.Shared.Verbs; using Robust.Server.GameObjects; -using Robust.Server.Player; using Robust.Shared.Map; using Robust.Shared.Player; using Robust.Shared.Prototypes; @@ -135,7 +134,7 @@ public override void PlayPickupAnimation(EntityUid uid, EntityCoordinates initia /// If the user has nested-UIs open (e.g., PDA UI open when pda is in a backpack), close them. /// /// - public void CloseNestedInterfaces(EntityUid uid, IPlayerSession session, StorageComponent? storageComp = null) + public void CloseNestedInterfaces(EntityUid uid, ICommonSession session, StorageComponent? storageComp = null) { if (!Resolve(uid, ref storageComp)) return; diff --git a/Content.Server/Store/Systems/StoreSystem.Ui.cs b/Content.Server/Store/Systems/StoreSystem.Ui.cs index 9600ea6c8f..0435a6bea6 100644 --- a/Content.Server/Store/Systems/StoreSystem.Ui.cs +++ b/Content.Server/Store/Systems/StoreSystem.Ui.cs @@ -10,6 +10,7 @@ using Content.Shared.Hands.EntitySystems; using Content.Shared.Store; using Robust.Server.GameObjects; +using Robust.Shared.Player; namespace Content.Server.Store.Systems; diff --git a/Content.Server/Strip/StrippableSystem.cs b/Content.Server/Strip/StrippableSystem.cs index a8ddf1a986..75374e7de5 100644 --- a/Content.Server/Strip/StrippableSystem.cs +++ b/Content.Server/Strip/StrippableSystem.cs @@ -18,6 +18,7 @@ using Content.Shared.Strip.Components; using Content.Shared.Verbs; using Robust.Server.GameObjects; +using Robust.Shared.Player; using Robust.Shared.Utility; namespace Content.Server.Strip diff --git a/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraMicrophoneSystem.cs b/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraMicrophoneSystem.cs index b4054a290d..f411001bd3 100644 --- a/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraMicrophoneSystem.cs +++ b/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraMicrophoneSystem.cs @@ -1,7 +1,7 @@ using Content.Server.Chat.Systems; using Content.Server.Speech; using Content.Server.Speech.Components; -using Robust.Server.GameObjects; +using Robust.Shared.Player; using static Content.Server.Chat.Systems.ChatSystem; namespace Content.Server.SurveillanceCamera; diff --git a/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraMonitorSystem.cs b/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraMonitorSystem.cs index 17eee198b8..7b1dff0b6b 100644 --- a/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraMonitorSystem.cs +++ b/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraMonitorSystem.cs @@ -5,6 +5,7 @@ using Content.Server.UserInterface; using Content.Shared.SurveillanceCamera; using Robust.Server.GameObjects; +using Robust.Shared.Player; namespace Content.Server.SurveillanceCamera; diff --git a/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraRouterSystem.cs b/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraRouterSystem.cs index ae17ca4f8f..ac41723026 100644 --- a/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraRouterSystem.cs +++ b/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraRouterSystem.cs @@ -1,14 +1,13 @@ -using Content.Server.Administration.Managers; using Content.Server.DeviceNetwork; using Content.Server.DeviceNetwork.Components; using Content.Server.DeviceNetwork.Systems; -using Content.Server.Ghost.Components; using Content.Server.Power.Components; using Content.Shared.ActionBlocker; using Content.Shared.DeviceNetwork; using Content.Shared.SurveillanceCamera; using Content.Shared.Verbs; using Robust.Server.GameObjects; +using Robust.Shared.Player; using Robust.Shared.Prototypes; namespace Content.Server.SurveillanceCamera; diff --git a/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraSystem.cs b/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraSystem.cs index f159ec52d9..410ba9f754 100644 --- a/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraSystem.cs +++ b/Content.Server/SurveillanceCamera/Systems/SurveillanceCameraSystem.cs @@ -8,6 +8,7 @@ using Content.Shared.SurveillanceCamera; using Content.Shared.Verbs; using Robust.Server.GameObjects; +using Robust.Shared.Player; using Robust.Shared.Prototypes; namespace Content.Server.SurveillanceCamera; @@ -58,7 +59,7 @@ public override void Initialize() SubscribeLocalEvent(OnSetName); SubscribeLocalEvent(OnSetNetwork); SubscribeLocalEvent>(AddVerbs); - + SubscribeLocalEvent(OnEmpPulse); SubscribeLocalEvent(OnEmpDisabledRemoved); } diff --git a/Content.Server/Tabletop/TabletopSession.cs b/Content.Server/Tabletop/TabletopSession.cs index d94b4fd657..5e7c6ac02e 100644 --- a/Content.Server/Tabletop/TabletopSession.cs +++ b/Content.Server/Tabletop/TabletopSession.cs @@ -1,6 +1,6 @@ using System.Numerics; -using Robust.Server.Player; using Robust.Shared.Map; +using Robust.Shared.Player; namespace Content.Server.Tabletop { @@ -17,7 +17,7 @@ public sealed class TabletopSession /// /// The set of players currently playing this tabletop game. /// - public readonly Dictionary Players = new(); + public readonly Dictionary Players = new(); /// /// All entities bound to this session. If you create an entity for this session, you have to add it here. diff --git a/Content.Server/Tabletop/TabletopSystem.Session.cs b/Content.Server/Tabletop/TabletopSystem.Session.cs index e9dea0c66a..8f1bc7005d 100644 --- a/Content.Server/Tabletop/TabletopSystem.Session.cs +++ b/Content.Server/Tabletop/TabletopSystem.Session.cs @@ -1,7 +1,7 @@ using System.Numerics; using Content.Server.Tabletop.Components; using Content.Shared.Tabletop.Events; -using Robust.Server.Player; +using Robust.Shared.Player; using Robust.Shared.Utility; namespace Content.Server.Tabletop @@ -66,7 +66,7 @@ public void CleanupSession(EntityUid uid) /// /// The player session in question. /// The UID of the tabletop game entity. - public void OpenSessionFor(IPlayerSession player, EntityUid uid) + public void OpenSessionFor(ICommonSession player, EntityUid uid) { if (!EntityManager.TryGetComponent(uid, out TabletopGameComponent? tabletop) || player.AttachedEntity is not {Valid: true} attachedEntity) return; @@ -98,7 +98,7 @@ public void OpenSessionFor(IPlayerSession player, EntityUid uid) /// The player in question. /// The UID of the tabletop game entity. /// Whether to remove the from the player's attached entity. - public void CloseSessionFor(IPlayerSession player, EntityUid uid, bool removeGamerComponent = true) + public void CloseSessionFor(ICommonSession player, EntityUid uid, bool removeGamerComponent = true) { if (!EntityManager.TryGetComponent(uid, out TabletopGameComponent? tabletop) || tabletop.Session is not { } session) return; @@ -129,7 +129,7 @@ public void CloseSessionFor(IPlayerSession player, EntityUid uid, bool removeGam /// The player in question. /// An offset from the tabletop position for the camera. Zero by default. /// The UID of the camera entity. - private EntityUid CreateCamera(TabletopGameComponent tabletop, IPlayerSession player, Vector2 offset = default) + private EntityUid CreateCamera(TabletopGameComponent tabletop, ICommonSession player, Vector2 offset = default) { DebugTools.AssertNotNull(tabletop.Session); diff --git a/Content.Server/Tabletop/TabletopSystem.cs b/Content.Server/Tabletop/TabletopSystem.cs index 2e271080d0..4376ec4bc6 100644 --- a/Content.Server/Tabletop/TabletopSystem.cs +++ b/Content.Server/Tabletop/TabletopSystem.cs @@ -9,9 +9,9 @@ using Content.Shared.Verbs; using JetBrains.Annotations; using Robust.Server.GameObjects; -using Robust.Server.Player; using Robust.Shared.Enums; using Robust.Shared.Map; +using Robust.Shared.Player; using Robust.Shared.Utility; namespace Content.Server.Tabletop @@ -42,7 +42,7 @@ public override void Initialize() private void OnTabletopRequestTakeOut(TabletopRequestTakeOut msg, EntitySessionEventArgs args) { - if (args.SenderSession is not IPlayerSession playerSession) + if (args.SenderSession is not { } playerSession) return; var table = GetEntity(msg.TableUid); @@ -105,7 +105,7 @@ private void OnInteractUsing(EntityUid uid, TabletopGameComponent component, Int protected override void OnTabletopMove(TabletopMoveEvent msg, EntitySessionEventArgs args) { - if (args.SenderSession is not IPlayerSession playerSession) + if (args.SenderSession is not { } playerSession) return; if (!TryComp(GetEntity(msg.TableUid), out TabletopGameComponent? tabletop) || tabletop.Session is not { } session) @@ -155,7 +155,7 @@ private void OnGameShutdown(EntityUid uid, TabletopGameComponent component, Comp private void OnStopPlaying(TabletopStopPlayingEvent msg, EntitySessionEventArgs args) { - CloseSessionFor((IPlayerSession)args.SenderSession, GetEntity(msg.TableUid)); + CloseSessionFor(args.SenderSession, GetEntity(msg.TableUid)); } private void OnPlayerDetached(EntityUid uid, TabletopGamerComponent component, PlayerDetachedEvent args) diff --git a/Content.Server/Toolshed/Commands/AdminDebug/ACmdCommand.cs b/Content.Server/Toolshed/Commands/AdminDebug/ACmdCommand.cs index d2b3cc261c..f113e49655 100644 --- a/Content.Server/Toolshed/Commands/AdminDebug/ACmdCommand.cs +++ b/Content.Server/Toolshed/Commands/AdminDebug/ACmdCommand.cs @@ -1,7 +1,7 @@ using Content.Server.Administration; using Content.Server.Administration.Managers; using Content.Shared.Administration; -using Robust.Server.Player; +using Robust.Shared.Player; using Robust.Shared.Toolshed; using Robust.Shared.Toolshed.Syntax; @@ -25,7 +25,7 @@ public sealed class ACmdCommand : ToolshedCommand public bool CanInvoke( [CommandInvocationContext] IInvocationContext ctx, [PipedArgument] CommandSpec command, - [CommandArgument] ValueRef player + [CommandArgument] ValueRef player ) { // Deliberately discard the error. diff --git a/Content.Server/Toolshed/Commands/VisualizeCommand.cs b/Content.Server/Toolshed/Commands/VisualizeCommand.cs index 4ef08a91bf..2225bfaf44 100644 --- a/Content.Server/Toolshed/Commands/VisualizeCommand.cs +++ b/Content.Server/Toolshed/Commands/VisualizeCommand.cs @@ -4,7 +4,6 @@ using Content.Shared.Administration; using Content.Shared.Bql; using Content.Shared.Eui; -using Robust.Server.Player; using Robust.Shared.Toolshed; using Robust.Shared.Toolshed.Errors; @@ -30,7 +29,7 @@ [PipedArgument] IEnumerable input var ui = new ToolshedVisualizeEui( input.Select(e => (EntName(e), EntityManager.GetNetEntity(e))).ToArray() ); - _euiManager.OpenEui(ui, (IPlayerSession) ctx.Session); + _euiManager.OpenEui(ui, ctx.Session); _euiManager.QueueStateUpdate(ui); } } diff --git a/Content.Server/Traitor/Uplink/Commands/AddUplinkCommand.cs b/Content.Server/Traitor/Uplink/Commands/AddUplinkCommand.cs index 1feab11b99..fd656a9f71 100644 --- a/Content.Server/Traitor/Uplink/Commands/AddUplinkCommand.cs +++ b/Content.Server/Traitor/Uplink/Commands/AddUplinkCommand.cs @@ -5,6 +5,7 @@ using Robust.Server.Player; using Robust.Shared.Configuration; using Robust.Shared.Console; +using Robust.Shared.Player; namespace Content.Server.Traitor.Uplink.Commands { @@ -36,7 +37,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - IPlayerSession? session; + ICommonSession? session; if (args.Length > 0) { // Get player entity @@ -48,7 +49,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) } else { - session = (IPlayerSession?) shell.Player; + session = shell.Player; } if (session?.AttachedEntity is not { } user) diff --git a/Content.Server/UserInterface/ActivatableUIComponent.cs b/Content.Server/UserInterface/ActivatableUIComponent.cs index bb020608e2..34f9c0f397 100644 --- a/Content.Server/UserInterface/ActivatableUIComponent.cs +++ b/Content.Server/UserInterface/ActivatableUIComponent.cs @@ -1,4 +1,4 @@ -using Robust.Server.Player; +using Robust.Shared.Player; using Robust.Shared.Reflection; using Robust.Shared.Serialization; @@ -65,7 +65,7 @@ public sealed partial class ActivatableUIComponent : Component, /// NOTE: DO NOT DIRECTLY SET, USE ActivatableUISystem.SetCurrentSingleUser /// [ViewVariables] - public IPlayerSession? CurrentSingleUser; + public ICommonSession? CurrentSingleUser; void ISerializationHooks.AfterDeserialization() { diff --git a/Content.Server/UserInterface/ActivatableUISystem.cs b/Content.Server/UserInterface/ActivatableUISystem.cs index 59086415b4..adeeed7c19 100644 --- a/Content.Server/UserInterface/ActivatableUISystem.cs +++ b/Content.Server/UserInterface/ActivatableUISystem.cs @@ -8,7 +8,7 @@ using Content.Shared.UserInterface; using Content.Shared.Verbs; using Robust.Server.GameObjects; -using Robust.Server.Player; +using Robust.Shared.Player; namespace Content.Server.UserInterface; @@ -173,7 +173,7 @@ private bool InteractUI(EntityUid user, EntityUid uiEntity, ActivatableUICompone return true; } - public void SetCurrentSingleUser(EntityUid uid, IPlayerSession? v, ActivatableUIComponent? aui = null) + public void SetCurrentSingleUser(EntityUid uid, ICommonSession? v, ActivatableUIComponent? aui = null) { if (!Resolve(uid, ref aui)) return; @@ -231,9 +231,9 @@ public UserOpenActivatableUIAttemptEvent(EntityUid who, EntityUid target) public sealed class AfterActivatableUIOpenEvent : EntityEventArgs { public EntityUid User { get; } - public readonly IPlayerSession Session; + public readonly ICommonSession Session; - public AfterActivatableUIOpenEvent(EntityUid who, IPlayerSession session) + public AfterActivatableUIOpenEvent(EntityUid who, ICommonSession session) { User = who; Session = session; diff --git a/Content.Server/UserInterface/IntrinsicUISystem.cs b/Content.Server/UserInterface/IntrinsicUISystem.cs index 27b682cd41..fa725e524a 100644 --- a/Content.Server/UserInterface/IntrinsicUISystem.cs +++ b/Content.Server/UserInterface/IntrinsicUISystem.cs @@ -1,6 +1,7 @@ using Content.Server.Actions; using Content.Shared.UserInterface; using Robust.Server.GameObjects; +using Robust.Shared.Player; namespace Content.Server.UserInterface; diff --git a/Content.Server/UserInterface/StatValuesCommand.cs b/Content.Server/UserInterface/StatValuesCommand.cs index b13b596323..fe2ee380fe 100644 --- a/Content.Server/UserInterface/StatValuesCommand.cs +++ b/Content.Server/UserInterface/StatValuesCommand.cs @@ -8,7 +8,6 @@ using Content.Shared.Research.Prototypes; using Content.Shared.UserInterface; using Content.Shared.Weapons.Melee; -using Robust.Server.Player; using Robust.Shared.Console; using Robust.Shared.Prototypes; @@ -27,7 +26,7 @@ public sealed class StatValuesCommand : IConsoleCommand public string Help => $"{Command} "; public void Execute(IConsoleShell shell, string argStr, string[] args) { - if (shell.Player is not IPlayerSession pSession) + if (shell.Player is not { } pSession) { shell.WriteError(Loc.GetString("stat-values-server")); return; diff --git a/Content.Server/Verbs/VerbSystem.cs b/Content.Server/Verbs/VerbSystem.cs index 6d12b08e86..e304c6b4af 100644 --- a/Content.Server/Verbs/VerbSystem.cs +++ b/Content.Server/Verbs/VerbSystem.cs @@ -6,7 +6,6 @@ using Content.Shared.Database; using Content.Shared.Hands.Components; using Content.Shared.Verbs; -using Robust.Server.Player; namespace Content.Server.Verbs { @@ -25,7 +24,7 @@ public override void Initialize() private void HandleVerbRequest(RequestServerVerbsEvent args, EntitySessionEventArgs eventArgs) { - var player = (IPlayerSession) eventArgs.SenderSession; + var player = eventArgs.SenderSession; if (!EntityManager.EntityExists(GetEntity(args.EntityUid))) { @@ -43,7 +42,7 @@ private void HandleVerbRequest(RequestServerVerbsEvent args, EntitySessionEventA // this, and some verbs (e.g. view variables) won't even care about whether an entity is accessible through // the entity menu or not. - var force = args.AdminRequest && eventArgs.SenderSession is IPlayerSession playerSession && + var force = args.AdminRequest && eventArgs.SenderSession is { } playerSession && _adminMgr.HasAdminFlag(playerSession, AdminFlags.Admin); List verbTypes = new(); diff --git a/Content.Server/VoiceMask/VoiceMaskSystem.cs b/Content.Server/VoiceMask/VoiceMaskSystem.cs index fdd5f3a9f4..1df66b608c 100644 --- a/Content.Server/VoiceMask/VoiceMaskSystem.cs +++ b/Content.Server/VoiceMask/VoiceMaskSystem.cs @@ -6,6 +6,7 @@ using Content.Shared.Preferences; using Content.Shared.VoiceMask; using Robust.Server.GameObjects; +using Robust.Shared.Player; namespace Content.Server.VoiceMask; diff --git a/Content.Server/Voting/IVoteHandle.cs b/Content.Server/Voting/IVoteHandle.cs index 13f64e6ef8..869f2017d7 100644 --- a/Content.Server/Voting/IVoteHandle.cs +++ b/Content.Server/Voting/IVoteHandle.cs @@ -1,5 +1,5 @@ using Content.Server.Voting.Managers; -using Robust.Server.Player; +using Robust.Shared.Player; namespace Content.Server.Voting { @@ -75,7 +75,7 @@ public interface IVoteHandle /// /// is not a valid option ID. /// - void CastVote(IPlayerSession session, int? optionId); + void CastVote(ICommonSession session, int? optionId); /// /// Cancel this vote. diff --git a/Content.Server/Voting/Managers/IVoteManager.cs b/Content.Server/Voting/Managers/IVoteManager.cs index 6a92e70fff..d95fac9ae9 100644 --- a/Content.Server/Voting/Managers/IVoteManager.cs +++ b/Content.Server/Voting/Managers/IVoteManager.cs @@ -1,6 +1,6 @@ using System.Diagnostics.CodeAnalysis; using Content.Shared.Voting; -using Robust.Server.Player; +using Robust.Shared.Player; namespace Content.Server.Voting.Managers { @@ -41,7 +41,7 @@ public interface IVoteManager /// True if can start votes right now, /// and if provided if they can start votes of type . /// - bool CanCallVote(IPlayerSession initiator, StandardVoteType? voteType = null); + bool CanCallVote(ICommonSession initiator, StandardVoteType? voteType = null); /// /// Initiate a standard vote such as restart round, that can be initiated by players. @@ -51,7 +51,7 @@ public interface IVoteManager /// If null it is assumed to be an automatic vote by the server. /// /// The type of standard vote to make. - void CreateStandardVote(IPlayerSession? initiator, StandardVoteType voteType); + void CreateStandardVote(ICommonSession? initiator, StandardVoteType voteType); /// /// Create a non-standard vote with special parameters. diff --git a/Content.Server/Voting/Managers/VoteManager.DefaultVotes.cs b/Content.Server/Voting/Managers/VoteManager.DefaultVotes.cs index 55e88e2a8c..e1bffa769d 100644 --- a/Content.Server/Voting/Managers/VoteManager.DefaultVotes.cs +++ b/Content.Server/Voting/Managers/VoteManager.DefaultVotes.cs @@ -6,8 +6,8 @@ using Content.Shared.CCVar; using Content.Shared.Database; using Content.Shared.Voting; -using Robust.Server.Player; using Robust.Shared.Configuration; +using Robust.Shared.Player; using Robust.Shared.Random; namespace Content.Server.Voting.Managers @@ -21,7 +21,7 @@ public sealed partial class VoteManager {StandardVoteType.Map, CCVars.VoteMapEnabled}, }; - public void CreateStandardVote(IPlayerSession? initiator, StandardVoteType voteType) + public void CreateStandardVote(ICommonSession? initiator, StandardVoteType voteType) { if (initiator != null) _adminLogger.Add(LogType.Vote, LogImpact.Medium, $"{initiator} initiated a {voteType.ToString()} vote"); @@ -47,7 +47,7 @@ public void CreateStandardVote(IPlayerSession? initiator, StandardVoteType voteT TimeoutStandardVote(voteType); } - private void CreateRestartVote(IPlayerSession? initiator) + private void CreateRestartVote(ICommonSession? initiator) { var alone = _playerManager.PlayerCount == 1 && initiator != null; var options = new VoteOptions @@ -100,7 +100,7 @@ private void CreateRestartVote(IPlayerSession? initiator) vote.CastVote(initiator, 0); } - foreach (var player in _playerManager.ServerSessions) + foreach (var player in _playerManager.Sessions) { if (player != initiator) { @@ -110,7 +110,7 @@ private void CreateRestartVote(IPlayerSession? initiator) } } - private void CreatePresetVote(IPlayerSession? initiator) + private void CreatePresetVote(ICommonSession? initiator) { var presets = GetGamePresets(); @@ -156,7 +156,7 @@ private void CreatePresetVote(IPlayerSession? initiator) }; } - private void CreateMapVote(IPlayerSession? initiator) + private void CreateMapVote(ICommonSession? initiator) { var maps = _gameMapManager.CurrentlyEligibleMaps().ToDictionary(map => map, map => map.MapName); diff --git a/Content.Server/Voting/Managers/VoteManager.cs b/Content.Server/Voting/Managers/VoteManager.cs index 98ad8d8341..90089afb54 100644 --- a/Content.Server/Voting/Managers/VoteManager.cs +++ b/Content.Server/Voting/Managers/VoteManager.cs @@ -16,6 +16,7 @@ using Robust.Shared.Configuration; using Robust.Shared.Enums; using Robust.Shared.Network; +using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Random; using Robust.Shared.Timing; @@ -45,7 +46,7 @@ public sealed partial class VoteManager : IVoteManager private readonly Dictionary _standardVoteTimeout = new(); private readonly Dictionary _voteTimeout = new(); - private readonly HashSet _playerCanCallVoteDirty = new(); + private readonly HashSet _playerCanCallVoteDirty = new(); private readonly StandardVoteType[] _standardVoteTypeValues = Enum.GetValues(); public void Initialize() @@ -106,7 +107,7 @@ private void PlayerManagerOnPlayerStatusChanged(object? sender, SessionStatusEve } } - private void CastVote(VoteReg v, IPlayerSession player, int? option) + private void CastVote(VoteReg v, ICommonSession player, int? option) { if (!IsValidOption(v, option)) throw new ArgumentOutOfRangeException(nameof(option), "Invalid vote option ID"); @@ -228,7 +229,7 @@ public IVoteHandle CreateVote(VoteOptions options) private void SendUpdates(VoteReg v) { - foreach (var player in _playerManager.ServerSessions) + foreach (var player in _playerManager.Sessions) { SendSingleUpdate(v, player); } @@ -237,7 +238,7 @@ private void SendUpdates(VoteReg v) v.Dirty = false; } - private void SendSingleUpdate(VoteReg v, IPlayerSession player) + private void SendSingleUpdate(VoteReg v, ICommonSession player) { var msg = new MsgVoteData(); @@ -277,10 +278,10 @@ private void SendSingleUpdate(VoteReg v, IPlayerSession player) private void DirtyCanCallVoteAll() { - _playerCanCallVoteDirty.UnionWith(_playerManager.ServerSessions); + _playerCanCallVoteDirty.UnionWith(_playerManager.Sessions); } - private void SendUpdateCanCallVote(IPlayerSession player) + private void SendUpdateCanCallVote(ICommonSession player) { var msg = new MsgVoteCanCall(); msg.CanCall = CanCallVote(player, null, out var isAdmin, out var timeSpan); @@ -306,7 +307,7 @@ private void SendUpdateCanCallVote(IPlayerSession player) } private bool CanCallVote( - IPlayerSession initiator, + ICommonSession initiator, StandardVoteType? voteType, out bool isAdmin, out TimeSpan timeSpan) @@ -353,7 +354,7 @@ private bool CanCallVote( return !_voteTimeout.TryGetValue(initiator.UserId, out timeSpan); } - public bool CanCallVote(IPlayerSession initiator, StandardVoteType? voteType = null) + public bool CanCallVote(ICommonSession initiator, StandardVoteType? voteType = null) { return CanCallVote(initiator, voteType, out _, out _); } @@ -406,14 +407,14 @@ public bool TryGetVote(int voteId, [NotNullWhen(true)] out IVoteHandle? vote) return false; } - private void DirtyCanCallVote(IPlayerSession player) + private void DirtyCanCallVote(ICommonSession player) { _playerCanCallVoteDirty.Add(player); } #region Preset Votes - private void WirePresetVoteInitiator(VoteOptions options, IPlayerSession? player) + private void WirePresetVoteInitiator(VoteOptions options, ICommonSession? player) { if (player != null) { @@ -432,13 +433,13 @@ private void WirePresetVoteInitiator(VoteOptions options, IPlayerSession? player private sealed class VoteReg { public readonly int Id; - public readonly Dictionary CastVotes = new(); + public readonly Dictionary CastVotes = new(); public readonly VoteEntry[] Entries; public readonly string Title; public readonly string InitiatorText; public readonly TimeSpan StartTime; public readonly TimeSpan EndTime; - public readonly HashSet VotesDirty = new(); + public readonly HashSet VotesDirty = new(); public bool Cancelled; public bool Finished; @@ -446,10 +447,10 @@ private sealed class VoteReg public VoteFinishedEventHandler? OnFinished; public VoteCancelledEventHandler? OnCancelled; - public IPlayerSession? Initiator { get; } + public ICommonSession? Initiator { get; } public VoteReg(int id, VoteEntry[] entries, string title, string initiatorText, - IPlayerSession? initiator, TimeSpan start, TimeSpan end) + ICommonSession? initiator, TimeSpan start, TimeSpan end) { Id = id; Entries = entries; @@ -517,7 +518,7 @@ public bool IsValidOption(int optionId) return _mgr.IsValidOption(_reg, optionId); } - public void CastVote(IPlayerSession session, int? optionId) + public void CastVote(ICommonSession session, int? optionId) { _mgr.CastVote(_reg, session, optionId); } diff --git a/Content.Server/Voting/VoteCommands.cs b/Content.Server/Voting/VoteCommands.cs index cb296a7d58..498c9d0494 100644 --- a/Content.Server/Voting/VoteCommands.cs +++ b/Content.Server/Voting/VoteCommands.cs @@ -6,7 +6,6 @@ using Content.Shared.Administration; using Content.Shared.Database; using Content.Shared.Voting; -using Robust.Server.Player; using Robust.Shared.Console; namespace Content.Server.Voting @@ -36,14 +35,14 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) var mgr = IoCManager.Resolve(); - if (shell.Player != null && !mgr.CanCallVote((IPlayerSession) shell.Player, type)) + if (shell.Player != null && !mgr.CanCallVote(shell.Player, type)) { _adminLogger.Add(LogType.Vote, LogImpact.Medium, $"{shell.Player} failed to start {type.ToString()} vote"); shell.WriteError(Loc.GetString("cmd-createvote-cannot-call-vote-now")); return; } - mgr.CreateStandardVote((IPlayerSession?) shell.Player, type); + mgr.CreateStandardVote(shell.Player, type); } public CompletionResult GetCompletion(IConsoleShell shell, string[] args) @@ -92,7 +91,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) options.Options.Add((args[i], i)); } - options.SetInitiatorOrServer((IPlayerSession?) shell.Player); + options.SetInitiatorOrServer(shell.Player); if (shell.Player != null) _adminLogger.Add(LogType.Vote, LogImpact.Medium, $"{shell.Player} initiated a custom vote: {options.Title} - {string.Join("; ", options.Options.Select(x => x.text))}"); @@ -187,7 +186,7 @@ public void Execute(IConsoleShell shell, string argStr, string[] args) return; } - vote.CastVote((IPlayerSession) shell.Player!, optionN); + vote.CastVote(shell.Player!, optionN); } } diff --git a/Content.Server/Voting/VoteOptions.cs b/Content.Server/Voting/VoteOptions.cs index 6e6d0465ed..5475d10d32 100644 --- a/Content.Server/Voting/VoteOptions.cs +++ b/Content.Server/Voting/VoteOptions.cs @@ -1,4 +1,4 @@ -using Robust.Server.Player; +using Robust.Shared.Player; namespace Content.Server.Voting @@ -16,7 +16,7 @@ public sealed class VoteOptions /// /// The player that started the vote. Used to keep track of player cooldowns to avoid vote spam. /// - public IPlayerSession? InitiatorPlayer { get; set; } + public ICommonSession? InitiatorPlayer { get; set; } /// /// The shown title of the vote. @@ -43,13 +43,13 @@ public sealed class VoteOptions /// Sets and /// by setting the latter to the player's name. /// - public void SetInitiator(IPlayerSession player) + public void SetInitiator(ICommonSession player) { InitiatorPlayer = player; InitiatorText = player.Name; } - public void SetInitiatorOrServer(IPlayerSession? player) + public void SetInitiatorOrServer(ICommonSession? player) { if (player != null) { diff --git a/Content.Server/Weapons/Melee/MeleeWeaponSystem.cs b/Content.Server/Weapons/Melee/MeleeWeaponSystem.cs index 1b6b2ebef1..3d9c3e8219 100644 --- a/Content.Server/Weapons/Melee/MeleeWeaponSystem.cs +++ b/Content.Server/Weapons/Melee/MeleeWeaponSystem.cs @@ -24,11 +24,9 @@ using Content.Shared.Tag; using Content.Shared.Weapons.Melee; using Content.Shared.Weapons.Melee.Events; -using Robust.Server.Player; using Robust.Shared.Audio; using Robust.Shared.Map; using Robust.Shared.Player; -using Robust.Shared.Players; using Robust.Shared.Random; namespace Content.Server.Weapons.Melee; @@ -174,7 +172,7 @@ protected override bool InRange(EntityUid user, EntityUid target, float range, I EntityCoordinates targetCoordinates; Angle targetLocalAngle; - if (session is IPlayerSession pSession) + if (session is { } pSession) { (targetCoordinates, targetLocalAngle) = _lag.GetCoordinatesAngle(target, pSession); } diff --git a/Content.Server/Wires/WiresSystem.cs b/Content.Server/Wires/WiresSystem.cs index e75ad0a9ef..b6452efa8a 100644 --- a/Content.Server/Wires/WiresSystem.cs +++ b/Content.Server/Wires/WiresSystem.cs @@ -16,7 +16,7 @@ using Content.Shared.Tools.Components; using Content.Shared.Wires; using Robust.Server.GameObjects; -using Robust.Server.Player; +using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Random; using SharedToolSystem = Content.Shared.Tools.Systems.SharedToolSystem; @@ -616,7 +616,7 @@ private void UpdateUserInterface(EntityUid uid, WiresComponent? wires = null, Us wires.WireSeed), ui: ui); } - public void OpenUserInterface(EntityUid uid, IPlayerSession player) + public void OpenUserInterface(EntityUid uid, ICommonSession player) { if (_uiSystem.TryGetUi(uid, WiresUiKey.Key, out var ui)) _uiSystem.OpenUi(ui, player); diff --git a/Content.Server/Xenoarchaeology/Equipment/Systems/ArtifactAnalyzerSystem.cs b/Content.Server/Xenoarchaeology/Equipment/Systems/ArtifactAnalyzerSystem.cs index 53c8b2fc23..17901188d1 100644 --- a/Content.Server/Xenoarchaeology/Equipment/Systems/ArtifactAnalyzerSystem.cs +++ b/Content.Server/Xenoarchaeology/Equipment/Systems/ArtifactAnalyzerSystem.cs @@ -17,7 +17,6 @@ using Content.Shared.Xenoarchaeology.XenoArtifacts; using JetBrains.Annotations; using Robust.Server.GameObjects; -using Robust.Server.Player; using Robust.Shared.Audio; using Robust.Shared.Prototypes; using Robust.Shared.Timing; @@ -231,7 +230,7 @@ private void UpdateUserInterface(EntityUid uid, AnalysisConsoleComponent? compon /// private void OnServerSelectionMessage(EntityUid uid, AnalysisConsoleComponent component, AnalysisConsoleServerSelectionMessage args) { - _ui.TryOpen(uid, ResearchClientUiKey.Key, (IPlayerSession) args.Session); + _ui.TryOpen(uid, ResearchClientUiKey.Key, args.Session); } /// diff --git a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/FoamArtifactSystem.cs b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/FoamArtifactSystem.cs index 93d9d5a01b..2d2c230b12 100644 --- a/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/FoamArtifactSystem.cs +++ b/Content.Server/Xenoarchaeology/XenoArtifacts/Effects/Systems/FoamArtifactSystem.cs @@ -1,5 +1,4 @@ using System.Linq; -using Content.Server.Chemistry.Components; using Content.Server.Fluids.EntitySystems; using Content.Server.Xenoarchaeology.XenoArtifacts.Effects.Components; using Content.Server.Xenoarchaeology.XenoArtifacts.Events; @@ -38,8 +37,7 @@ private void OnActivated(EntityUid uid, FoamArtifactComponent component, Artifac var range = (int) MathF.Round(MathHelper.Lerp(component.MinFoamAmount, component.MaxFoamAmount, _random.NextFloat(0, 1f))); sol.AddReagent(component.SelectedReagent, component.ReagentAmount); var foamEnt = Spawn("Foam", xform.Coordinates); - var smoke = EnsureComp(foamEnt); - smoke.SpreadAmount = range * 4; - _smoke.Start(foamEnt, smoke, sol, component.Duration); + var spreadAmount = range * 4; + _smoke.StartSmoke(foamEnt, sol, component.Duration, spreadAmount); } } diff --git a/Content.Server/Zombies/ZombieSystem.cs b/Content.Server/Zombies/ZombieSystem.cs index 1f8f5fbd42..51cbf34d99 100644 --- a/Content.Server/Zombies/ZombieSystem.cs +++ b/Content.Server/Zombies/ZombieSystem.cs @@ -8,6 +8,7 @@ using Content.Server.Inventory; using Content.Server.Speech.EntitySystems; using Content.Shared.Bed.Sleep; +using Content.Shared.Cloning; using Content.Shared.Damage; using Content.Shared.Humanoid; using Content.Shared.Inventory; diff --git a/Content.Shared/Actions/ActionContainerSystem.cs b/Content.Shared/Actions/ActionContainerSystem.cs index 86d50e3989..d7c02ffd63 100644 --- a/Content.Shared/Actions/ActionContainerSystem.cs +++ b/Content.Shared/Actions/ActionContainerSystem.cs @@ -213,6 +213,9 @@ private void OnInit(EntityUid uid, ActionsContainerComponent component, Componen private void OnShutdown(EntityUid uid, ActionsContainerComponent component, ComponentShutdown args) { + if (_timing.ApplyingState && component.NetSyncEnabled) + return; // The game state should handle the container removal & action deletion. + component.Container.Shutdown(); } diff --git a/Content.Shared/Actions/SharedActionsSystem.cs b/Content.Shared/Actions/SharedActionsSystem.cs index 00a17ace25..7384ab30b1 100644 --- a/Content.Shared/Actions/SharedActionsSystem.cs +++ b/Content.Shared/Actions/SharedActionsSystem.cs @@ -36,6 +36,8 @@ public override void Initialize() SubscribeLocalEvent(OnDidUnequip); SubscribeLocalEvent(OnHandUnequipped); + SubscribeLocalEvent(OnShutdown); + SubscribeLocalEvent(OnActionsGetState); SubscribeLocalEvent(OnInstantGetState); @@ -49,6 +51,14 @@ public override void Initialize() SubscribeAllEvent(OnActionRequest); } + private void OnShutdown(EntityUid uid, ActionsComponent component, ComponentShutdown args) + { + foreach (var act in component.Actions) + { + RemoveAction(uid, act, component); + } + } + private void OnInstantGetState(EntityUid uid, InstantActionComponent component, ref ComponentGetState args) { args.State = new InstantActionComponentState(component, EntityManager); @@ -611,7 +621,10 @@ public void RemoveAction(EntityUid performer, EntityUid? actionId, ActionsCompon if (action.AttachedEntity != performer) { - Log.Error($"Attempted to remove an action {ToPrettyString(actionId)} from an entity that it was never attached to: {ToPrettyString(performer)}"); + DebugTools.Assert(!Resolve(performer, ref comp, false) || !comp.Actions.Contains(actionId.Value)); + + if (!GameTiming.ApplyingState) + Log.Error($"Attempted to remove an action {ToPrettyString(actionId)} from an entity that it was never attached to: {ToPrettyString(performer)}"); return; } diff --git a/Content.Shared/Administration/Managers/ISharedAdminManager.cs b/Content.Shared/Administration/Managers/ISharedAdminManager.cs index 7e01c81433..22d918d4a3 100644 --- a/Content.Shared/Administration/Managers/ISharedAdminManager.cs +++ b/Content.Shared/Administration/Managers/ISharedAdminManager.cs @@ -1,4 +1,4 @@ -using Robust.Shared.Players; +using Robust.Shared.Player; namespace Content.Shared.Administration.Managers; diff --git a/Content.Shared/Buckle/SharedBuckleSystem.cs b/Content.Shared/Buckle/SharedBuckleSystem.cs index 7edf2448ae..1441745b5d 100644 --- a/Content.Shared/Buckle/SharedBuckleSystem.cs +++ b/Content.Shared/Buckle/SharedBuckleSystem.cs @@ -11,7 +11,7 @@ using Robust.Shared.Map; using Robust.Shared.Network; using Robust.Shared.Physics.Systems; -using Robust.Shared.Players; +using Robust.Shared.Player; using Robust.Shared.Timing; namespace Content.Shared.Buckle; diff --git a/Content.Shared/Chemistry/Components/SmokeAffectedComponent.cs b/Content.Shared/Chemistry/Components/SmokeAffectedComponent.cs new file mode 100644 index 0000000000..def6940ee1 --- /dev/null +++ b/Content.Shared/Chemistry/Components/SmokeAffectedComponent.cs @@ -0,0 +1,24 @@ +using Robust.Shared.GameStates; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom; + +namespace Content.Shared.Chemistry.Components; + +/// +/// This is used for entities which are currently being affected by smoke. +/// Manages the gradual metabolism every second. +/// +[RegisterComponent, NetworkedComponent] +public sealed partial class SmokeAffectedComponent : Component +{ + /// + /// The time at which the next smoke metabolism will occur. + /// + [DataField(customTypeSerializer: typeof(TimeOffsetSerializer))] + public TimeSpan NextSecond; + + /// + /// The smoke that is currently affecting this entity. + /// + [DataField] + public EntityUid SmokeEntity; +} diff --git a/Content.Shared/Chemistry/Components/SmokeComponent.cs b/Content.Shared/Chemistry/Components/SmokeComponent.cs new file mode 100644 index 0000000000..9d88fcac94 --- /dev/null +++ b/Content.Shared/Chemistry/Components/SmokeComponent.cs @@ -0,0 +1,34 @@ +using Content.Shared.FixedPoint; +using Content.Shared.Fluids.Components; +using Robust.Shared.GameStates; + +namespace Content.Shared.Chemistry.Components; + +/// +/// Stores solution on an anchored entity that has touch and ingestion reactions +/// to entities that collide with it. Similar to +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +public sealed partial class SmokeComponent : Component +{ + public const string SolutionName = "solutionArea"; + + /// + /// The max amount of tiles this smoke cloud can spread to. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public int SpreadAmount; + + /// + /// The max rate at which chemicals are transferred from the smoke to the person inhaling it. + /// Calculated as (total volume of chemicals in smoke) / () + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public FixedPoint2 TransferRate; + + /// + /// The total lifespan of the smoke. + /// + [DataField, ViewVariables(VVAccess.ReadWrite), AutoNetworkedField] + public float Duration = 10; +} diff --git a/Content.Shared/Chemistry/EntitySystems/SolutionContainerSystem.cs b/Content.Shared/Chemistry/EntitySystems/SolutionContainerSystem.cs index d4c599557b..a5c35b5e6c 100644 --- a/Content.Shared/Chemistry/EntitySystems/SolutionContainerSystem.cs +++ b/Content.Shared/Chemistry/EntitySystems/SolutionContainerSystem.cs @@ -30,6 +30,24 @@ public SolutionChangedEvent(Solution solution, string solutionId) } } +/// +/// An event raised when more reagents are added to a (managed) solution than it can hold. +/// +[ByRefEvent] +public record struct SolutionOverflowEvent(EntityUid SolutionEnt, Solution SolutionHolder, Solution Overflow) +{ + /// The entity which contains the solution that has overflowed. + public readonly EntityUid SolutionEnt = SolutionEnt; + /// The solution that has overflowed. + public readonly Solution SolutionHolder = SolutionHolder; + /// The reagents that have overflowed the solution. + public readonly Solution Overflow = Overflow; + /// The volume by which the solution has overflowed. + public readonly FixedPoint2 OverflowVol = Overflow.Volume; + /// Whether some subscriber has taken care of the effects of the overflow. + public bool Handled = false; +} + /// /// Part of Chemistry system deal with SolutionContainers /// @@ -265,6 +283,14 @@ public void UpdateChemicals(EntityUid uid, Solution solutionHolder, bool needsRe _chemistrySystem.FullyReactSolution(solutionHolder, uid, solutionHolder.MaxVolume, mixerComponent); } + var overflowVol = solutionHolder.Volume - solutionHolder.MaxVolume; + if (overflowVol > FixedPoint2.Zero) + { + var overflow = solutionHolder.SplitSolution(overflowVol); + var overflowEv = new SolutionOverflowEvent(uid, solutionHolder, overflow); + RaiseLocalEvent(uid, ref overflowEv); + } + UpdateAppearance(uid, solutionHolder); RaiseLocalEvent(uid, new SolutionChangedEvent(solutionHolder, solutionHolder.Name)); } @@ -417,24 +443,6 @@ public bool RemoveReagent(EntityUid targetUid, Solution? container, ReagentId re return RemoveReagent(targetUid, container, new ReagentQuantity(reagentId, quantity)); } - /// - /// Adds a solution to the container, if it can fully fit. - /// - /// entity holding targetSolution - /// entity holding targetSolution - /// solution being added - /// If the solution could be added. - public bool TryAddSolution(EntityUid targetUid, Solution? targetSolution, Solution addedSolution) - { - if (targetSolution == null - || !targetSolution.CanAddSolution(addedSolution) || addedSolution.Volume == 0) - return false; - - targetSolution.AddSolution(addedSolution, _prototypeManager); - UpdateChemicals(targetUid, targetSolution, true); - return true; - } - /// /// Moves some quantity of a solution from one solution to another. /// @@ -497,32 +505,86 @@ public bool TryTransferSolution(EntityUid sourceUid, EntityUid targetUid, string } /// - /// Adds a solution to the container, overflowing the rest. - /// It will - /// Unlike it will ignore size limits. + /// Adds a solution to the container, if it can fully fit. /// /// entity holding targetSolution - /// The container to which we try to add. - /// solution being added - /// After addition this much will be left in targetSolution. Should be less - /// than targetSolution.TotalVolume + /// entity holding targetSolution + /// solution being added + /// If the solution could be added. + public bool TryAddSolution(EntityUid targetUid, Solution targetSolution, Solution toAdd) + { + if (toAdd.Volume == FixedPoint2.Zero) + return true; + if (toAdd.Volume > targetSolution.AvailableVolume) + return false; + + ForceAddSolution(targetUid, targetSolution, toAdd); + return true; + } + + /// + /// Adds as much of a solution to a container as can fit. + /// + /// The entity containing + /// The solution being added to. + /// The solution being added to + /// The quantity of the solution actually added. + public FixedPoint2 AddSolution(EntityUid targetUid, Solution targetSolution, Solution toAdd) + { + if (toAdd.Volume == FixedPoint2.Zero) + return FixedPoint2.Zero; + + var quantity = FixedPoint2.Max(FixedPoint2.Zero, FixedPoint2.Min(toAdd.Volume, targetSolution.AvailableVolume)); + if (quantity < toAdd.Volume) + TryTransferSolution(targetUid, targetSolution, toAdd, quantity); + else + ForceAddSolution(targetUid, targetSolution, toAdd); + + return quantity; + } + + /// + /// Adds a solution to a container and updates the container. + /// + /// The entity containing + /// The solution being added to. + /// The solution being added to + /// Whether any reagents were added to the solution. + public bool ForceAddSolution(EntityUid targetUid, Solution targetSolution, Solution toAdd) + { + if (toAdd.Volume == FixedPoint2.Zero) + return false; + + targetSolution.AddSolution(toAdd, _prototypeManager); + UpdateChemicals(targetUid, targetSolution, needsReactionsProcessing: true); + return true; + } + + /// + /// Adds a solution to the container, removing the overflow. + /// Unlike it will ignore size limits. + /// + /// The entity containing + /// The solution being added to. + /// The solution being added to + /// The combined volume above which the overflow will be returned. + /// If the combined volume is below this an empty solution is returned. /// Solution that exceeded overflowThreshold - /// + /// Whether any reagents were added to . public bool TryMixAndOverflow(EntityUid targetUid, Solution targetSolution, - Solution addedSolution, + Solution toAdd, FixedPoint2 overflowThreshold, [NotNullWhen(true)] out Solution? overflowingSolution) { - if (addedSolution.Volume == 0 || overflowThreshold > targetSolution.MaxVolume) + if (toAdd.Volume == 0 || overflowThreshold > targetSolution.MaxVolume) { overflowingSolution = null; return false; } - targetSolution.AddSolution(addedSolution, _prototypeManager); + targetSolution.AddSolution(toAdd, _prototypeManager); + overflowingSolution = targetSolution.SplitSolution(FixedPoint2.Max(FixedPoint2.Zero, targetSolution.Volume - overflowThreshold)); UpdateChemicals(targetUid, targetSolution, true); - overflowingSolution = targetSolution.SplitSolution(FixedPoint2.Max(FixedPoint2.Zero, - targetSolution.Volume - overflowThreshold)); return true; } @@ -778,4 +840,8 @@ public void AddThermalEnergy(EntityUid owner, Solution solution, float thermalEn } #endregion Thermal Energy and Temperature + + #region Event Handlers + + #endregion Event Handlers } diff --git a/Content.Shared/Chemistry/Reaction/ChemicalReactionSystem.cs b/Content.Shared/Chemistry/Reaction/ChemicalReactionSystem.cs index 4ec50bc61a..ed53b78466 100644 --- a/Content.Shared/Chemistry/Reaction/ChemicalReactionSystem.cs +++ b/Content.Shared/Chemistry/Reaction/ChemicalReactionSystem.cs @@ -262,12 +262,6 @@ private bool ProcessReactions(Solution solution, EntityUid owner, FixedPoint2 ma if (products.Count == 0) return true; - // remove excess product - // TODO spill excess? - var excessVolume = solution.Volume - maxVolume; - if (excessVolume > 0) - solution.RemoveSolution(excessVolume); - // Add any reactions associated with the new products. This may re-add reactions that were already iterated // over previously. The new product may mean the reactions are applicable again and need to be processed. foreach (var product in products) @@ -279,16 +273,10 @@ private bool ProcessReactions(Solution solution, EntityUid owner, FixedPoint2 ma return true; } - /// - /// Continually react a solution until no more reactions occur. - /// - public void FullyReactSolution(Solution solution, EntityUid owner) => FullyReactSolution(solution, owner, FixedPoint2.MaxValue, null); - /// /// Continually react a solution until no more reactions occur, with a volume constraint. - /// If a reaction's products would exceed the max volume, some product is deleted. /// - public void FullyReactSolution(Solution solution, EntityUid owner, FixedPoint2 maxVolume, ReactionMixerComponent? mixerComponent) + public void FullyReactSolution(Solution solution, EntityUid owner, FixedPoint2 maxVolume, ReactionMixerComponent? mixerComponent = null) { // construct the initial set of reactions to check. SortedSet reactions = new(); diff --git a/Content.Shared/Cloning/CloningPodComponent.cs b/Content.Shared/Cloning/CloningPodComponent.cs new file mode 100644 index 0000000000..60d4c1e64e --- /dev/null +++ b/Content.Shared/Cloning/CloningPodComponent.cs @@ -0,0 +1,142 @@ +using Content.Shared.Construction.Prototypes; +using Content.Shared.DeviceLinking; +using Content.Shared.Materials; +using Robust.Shared.Audio; +using Robust.Shared.Containers; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; + +namespace Content.Shared.Cloning; + +[RegisterComponent] +public sealed partial class CloningPodComponent : Component +{ + [ValidatePrototypeId] + public const string PodPort = "CloningPodReceiver"; + + [ViewVariables] + public ContainerSlot BodyContainer = default!; + + /// + /// How long the cloning has been going on for. + /// + [ViewVariables] + public float CloningProgress = 0; + + [ViewVariables] + public int UsedBiomass = 70; + + [ViewVariables] + public bool FailedClone = false; + + /// + /// The material that is used to clone entities. + /// + [DataField("requiredMaterial"), ViewVariables(VVAccess.ReadWrite)] + public ProtoId RequiredMaterial = "Biomass"; + + /// + /// The base amount of time it takes to clone a body + /// + [DataField("baseCloningTime")] + public float BaseCloningTime = 30f; + + /// + /// The multiplier for cloning duration + /// + [DataField("partRatingSpeedMultiplier")] + public float PartRatingSpeedMultiplier = 0.75f; + + /// + /// The machine part that affects cloning speed + /// + [DataField("machinePartCloningSpeed"), ViewVariables(VVAccess.ReadWrite)] + public ProtoId MachinePartCloningSpeed = "Manipulator"; + + /// + /// The current amount of time it takes to clone a body + /// + [ViewVariables(VVAccess.ReadWrite)] + public float CloningTime = 30f; + + /// + /// The mob to spawn on emag + /// + [DataField("mobSpawnId"), ViewVariables(VVAccess.ReadWrite)] + public EntProtoId MobSpawnId = "MobAbomination"; + + /// + /// Emag sound effects. + /// + [DataField("sparkSound")] + public SoundSpecifier SparkSound = new SoundCollectionSpecifier("sparks") + { + Params = AudioParams.Default.WithVolume(8), + }; + + // TODO: Remove this from here when cloning and/or zombies are refactored + [DataField("screamSound")] + public SoundSpecifier ScreamSound = new SoundCollectionSpecifier("ZombieScreams") + { + Params = AudioParams.Default.WithVolume(4), + }; + + /// + /// The machine part that affects how much biomass is needed to clone a body. + /// + [DataField("partRatingMaterialMultiplier")] + public float PartRatingMaterialMultiplier = 0.85f; + + /// + /// The current multiplier on the body weight, which determines the + /// amount of biomass needed to clone. + /// + [ViewVariables(VVAccess.ReadWrite)] + public float BiomassRequirementMultiplier = 1; + + /// + /// The machine part that decreases the amount of material needed for cloning + /// + [DataField("machinePartMaterialUse"), ViewVariables(VVAccess.ReadWrite)] + public ProtoId MachinePartMaterialUse = "MatterBin"; + + [ViewVariables(VVAccess.ReadWrite)] + public CloningPodStatus Status; + + [ViewVariables] + public EntityUid? ConnectedConsole; +} + +[Serializable, NetSerializable] +public enum CloningPodVisuals : byte +{ + Status +} + +[Serializable, NetSerializable] +public enum CloningPodStatus : byte +{ + Idle, + Cloning, + Gore, + NoMind +} + +/// +/// Raised after a new mob got spawned when cloning a humanoid +/// +[ByRefEvent] +public struct CloningEvent +{ + public bool NameHandled = false; + + public readonly EntityUid Source; + public readonly EntityUid Target; + + public CloningEvent(EntityUid source, EntityUid target) + { + Source = source; + Target = target; + } +} diff --git a/Content.Shared/Cloning/SharedCloningPodComponent.cs b/Content.Shared/Cloning/SharedCloningPodComponent.cs deleted file mode 100644 index aafbb597ed..0000000000 --- a/Content.Shared/Cloning/SharedCloningPodComponent.cs +++ /dev/null @@ -1,18 +0,0 @@ -using Robust.Shared.Serialization; - -namespace Content.Shared.Cloning -{ - [Serializable, NetSerializable] - public enum CloningPodVisuals : byte - { - Status - } - [Serializable, NetSerializable] - public enum CloningPodStatus : byte - { - Idle, - Cloning, - Gore, - NoMind - } -} diff --git a/Content.Shared/Containers/ItemSlot/ItemSlotsComponent.cs b/Content.Shared/Containers/ItemSlot/ItemSlotsComponent.cs index effba18210..9310617634 100644 --- a/Content.Shared/Containers/ItemSlot/ItemSlotsComponent.cs +++ b/Content.Shared/Containers/ItemSlot/ItemSlotsComponent.cs @@ -71,6 +71,9 @@ public ItemSlot(ItemSlot other) [DataField("whitelist")] public EntityWhitelist? Whitelist; + [DataField("blacklist")] + public EntityWhitelist? Blacklist; + [DataField("insertSound")] public SoundSpecifier InsertSound = new SoundPathSpecifier("/Audio/Weapons/Guns/MagIn/revolver_magin.ogg"); diff --git a/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs b/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs index 902b56427a..9194a8208e 100644 --- a/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs +++ b/Content.Shared/Containers/ItemSlot/ItemSlotsSystem.cs @@ -255,7 +255,7 @@ public bool CanInsert(EntityUid uid, EntityUid usedUid, EntityUid? user, ItemSlo if (!swap && slot.HasItem) return false; - if (slot.Whitelist != null && !slot.Whitelist.IsValid(usedUid)) + if ((slot.Whitelist != null && !slot.Whitelist.IsValid(usedUid)) || (slot.Blacklist != null && slot.Blacklist.IsValid(usedUid))) { if (_netManager.IsClient && _timing.IsFirstTimePredicted && popup.HasValue && !string.IsNullOrWhiteSpace(slot.WhitelistFailPopup)) _popupSystem.PopupEntity(Loc.GetString(slot.WhitelistFailPopup), uid, popup.Value); diff --git a/Content.Shared/DeltaV/CCVars/DCCVars.cs b/Content.Shared/DeltaV/CCVars/DCCVars.cs new file mode 100644 index 0000000000..89a14275be --- /dev/null +++ b/Content.Shared/DeltaV/CCVars/DCCVars.cs @@ -0,0 +1,18 @@ +using Robust.Shared.Configuration; + +namespace Content.Shared.DeltaV.CCVars; + +/// +/// DeltaV specific cvars. +/// +[CVarDefs] +// ReSharper disable once InconsistentNaming - Shush you +public sealed class DCCVars +{ + /// + /// Anti-EORG measure. Will add pacified to all players upon round end. + /// Its not perfect, but gets the job done. + /// + public static readonly CVarDef RoundEndPacifist = + CVarDef.Create("game.round_end_pacifist", false, CVar.SERVERONLY); +} diff --git a/Content.Shared/Doors/Systems/SharedDoorBoltSystem.cs b/Content.Shared/Doors/Systems/SharedDoorBoltSystem.cs index a950fe6930..a9a52010fd 100644 --- a/Content.Shared/Doors/Systems/SharedDoorBoltSystem.cs +++ b/Content.Shared/Doors/Systems/SharedDoorBoltSystem.cs @@ -23,11 +23,15 @@ public override void Initialize() private void OnDoorPry(EntityUid uid, DoorBoltComponent component, ref BeforePryEvent args) { - if (component.BoltsDown && !args.Force) - { - Popup.PopupEntity(Loc.GetString("airlock-component-cannot-pry-is-bolted-message"), uid, args.User); - args.Cancelled = true; - } + if (args.Cancelled) + return; + + if (!component.BoltsDown || args.Force) + return; + + args.Message = "airlock-component-cannot-pry-is-bolted-message"; + + args.Cancelled = true; } private void OnBeforeDoorOpened(EntityUid uid, DoorBoltComponent component, BeforeDoorOpenedEvent args) diff --git a/Content.Shared/Ensnaring/Components/EnsnaringComponent.cs b/Content.Shared/Ensnaring/Components/EnsnaringComponent.cs index e7d769d339..6e1f3077f3 100644 --- a/Content.Shared/Ensnaring/Components/EnsnaringComponent.cs +++ b/Content.Shared/Ensnaring/Components/EnsnaringComponent.cs @@ -36,6 +36,13 @@ public sealed partial class EnsnaringComponent : Component [DataField("sprintSpeed")] public float SprintSpeed = 0.9f; + /// + /// How much stamina does the ensnare sap + /// + [ViewVariables(VVAccess.ReadWrite)] + [DataField("staminaDamage")] + public float StaminaDamage = 55f; + /// /// Should this ensnare someone when thrown? /// diff --git a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Interactions.cs b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Interactions.cs index d0c3be3b31..dfa72fcfb7 100644 --- a/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Interactions.cs +++ b/Content.Shared/Hands/EntitySystems/SharedHandsSystem.Interactions.cs @@ -6,7 +6,7 @@ using Content.Shared.Localizations; using Robust.Shared.Input.Binding; using Robust.Shared.Map; -using Robust.Shared.Players; +using Robust.Shared.Player; namespace Content.Shared.Hands.EntitySystems; diff --git a/Content.Shared/Implants/Components/ImplanterComponent.cs b/Content.Shared/Implants/Components/ImplanterComponent.cs index 85891826f9..32a3636163 100644 --- a/Content.Shared/Implants/Components/ImplanterComponent.cs +++ b/Content.Shared/Implants/Components/ImplanterComponent.cs @@ -1,4 +1,5 @@ using Content.Shared.Containers.ItemSlots; +using Content.Shared.Whitelist; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; using Robust.Shared.Serialization; @@ -15,6 +16,19 @@ public sealed partial class ImplanterComponent : Component public const string ImplanterSlotId = "implanter_slot"; public const string ImplantSlotId = "implant"; + /// + /// Whitelist to check entities against before implanting. + /// Implants get their own whitelist which is checked afterwards. + /// + [DataField, AutoNetworkedField] + public EntityWhitelist? Whitelist; + + /// + /// Blacklist to check entities against before implanting. + /// + [DataField, AutoNetworkedField] + public EntityWhitelist? Blacklist; + /// /// Used for implanters that start with specific implants /// diff --git a/Content.Shared/Implants/Components/SubdermalImplantComponent.cs b/Content.Shared/Implants/Components/SubdermalImplantComponent.cs index b2fdb14e4c..5edc26ead3 100644 --- a/Content.Shared/Implants/Components/SubdermalImplantComponent.cs +++ b/Content.Shared/Implants/Components/SubdermalImplantComponent.cs @@ -1,4 +1,5 @@ using Content.Shared.Actions; +using Content.Shared.Whitelist; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; @@ -34,6 +35,20 @@ public sealed partial class SubdermalImplantComponent : Component [ViewVariables(VVAccess.ReadWrite)] [DataField("permanent"), AutoNetworkedField] public bool Permanent = false; + + /// + /// Target whitelist for this implant specifically. + /// Only checked if the implanter allows implanting on the target to begin with. + /// + [DataField] + public EntityWhitelist? Whitelist; + + /// + /// Target blacklist for this implant specifically. + /// Only checked if the implanter allows implanting on the target to begin with. + /// + [DataField] + public EntityWhitelist? Blacklist; } /// diff --git a/Content.Shared/Implants/SharedImplanterSystem.cs b/Content.Shared/Implants/SharedImplanterSystem.cs index 1cf9f44663..404e6da508 100644 --- a/Content.Shared/Implants/SharedImplanterSystem.cs +++ b/Content.Shared/Implants/SharedImplanterSystem.cs @@ -6,6 +6,7 @@ using Content.Shared.IdentityManagement; using Content.Shared.Implants.Components; using Content.Shared.Popups; +using Content.Shared.Whitelist; using Robust.Shared.Containers; using Robust.Shared.Serialization; @@ -85,11 +86,23 @@ public bool CanImplant( if (!TryComp(implant, out implantComp)) return false; + if (!CheckTarget(target, component.Whitelist, component.Blacklist) || + !CheckTarget(target, implantComp.Whitelist, implantComp.Blacklist)) + { + return false; + } + var ev = new AddImplantAttemptEvent(user, target, implant.Value, implanter); RaiseLocalEvent(target, ev); return !ev.Cancelled; } + protected bool CheckTarget(EntityUid target, EntityWhitelist? whitelist, EntityWhitelist? blacklist) + { + return whitelist?.IsValid(target, EntityManager) != false && + blacklist?.IsValid(target, EntityManager) != true; + } + //Draw the implant out of the target //TODO: Rework when surgery is in so implant cases can be a thing public void Draw(EntityUid implanter, EntityUid user, EntityUid target, ImplanterComponent component) diff --git a/Content.Shared/Interaction/SharedInteractionSystem.cs b/Content.Shared/Interaction/SharedInteractionSystem.cs index 4a9a43ca2c..7981deaee6 100644 --- a/Content.Shared/Interaction/SharedInteractionSystem.cs +++ b/Content.Shared/Interaction/SharedInteractionSystem.cs @@ -34,7 +34,7 @@ using Robust.Shared.Physics; using Robust.Shared.Physics.Components; using Robust.Shared.Physics.Systems; -using Robust.Shared.Players; +using Robust.Shared.Player; using Robust.Shared.Random; using Robust.Shared.Serialization; using Robust.Shared.Timing; diff --git a/Content.Shared/Mind/MindComponent.cs b/Content.Shared/Mind/MindComponent.cs index 465db6a3d8..b147a2dbbe 100644 --- a/Content.Shared/Mind/MindComponent.cs +++ b/Content.Shared/Mind/MindComponent.cs @@ -2,7 +2,7 @@ using Content.Shared.Mind.Components; using Robust.Shared.GameStates; using Robust.Shared.Network; -using Robust.Shared.Players; +using Robust.Shared.Player; namespace Content.Shared.Mind { diff --git a/Content.Shared/Mind/SharedMindSystem.cs b/Content.Shared/Mind/SharedMindSystem.cs index 6fc1c01dc2..8e72d9c741 100644 --- a/Content.Shared/Mind/SharedMindSystem.cs +++ b/Content.Shared/Mind/SharedMindSystem.cs @@ -13,7 +13,7 @@ using Content.Shared.Players; using Robust.Shared.Map; using Robust.Shared.Network; -using Robust.Shared.Players; +using Robust.Shared.Player; using Robust.Shared.Utility; namespace Content.Shared.Mind; @@ -147,15 +147,16 @@ private void OnExamined(EntityUid uid, MindContainerComponent mindContainer, Exa return; var dead = _mobState.IsDead(uid); + var hasUserId = CompOrNull(mindContainer.Mind)?.UserId; var hasSession = CompOrNull(mindContainer.Mind)?.Session; - if (dead && !mindContainer.HasMind) + if (dead && hasUserId == null) args.PushMarkup($"[color=mediumpurple]{Loc.GetString("comp-mind-examined-dead-and-irrecoverable", ("ent", uid))}[/color]"); else if (dead && hasSession == null) args.PushMarkup($"[color=yellow]{Loc.GetString("comp-mind-examined-dead-and-ssd", ("ent", uid))}[/color]"); else if (dead) args.PushMarkup($"[color=red]{Loc.GetString("comp-mind-examined-dead", ("ent", uid))}[/color]"); - else if (!mindContainer.HasMind) + else if (hasUserId == null) args.PushMarkup($"[color=mediumpurple]{Loc.GetString("comp-mind-examined-catatonic", ("ent", uid))}[/color]"); else if (hasSession == null) args.PushMarkup($"[color=yellow]{Loc.GetString("comp-mind-examined-ssd", ("ent", uid))}[/color]"); @@ -409,11 +410,11 @@ public bool TryGetMind( } public bool TryGetMind( - PlayerData player, + ContentPlayerData contentPlayer, out EntityUid mindId, [NotNullWhen(true)] out MindComponent? mind) { - mindId = player.Mind ?? default; + mindId = contentPlayer.Mind ?? default; return TryComp(mindId, out mind); } diff --git a/Content.Shared/Movement/Events/MoveInputEvent.cs b/Content.Shared/Movement/Events/MoveInputEvent.cs index 8e1b43f8bd..89e5636acd 100644 --- a/Content.Shared/Movement/Events/MoveInputEvent.cs +++ b/Content.Shared/Movement/Events/MoveInputEvent.cs @@ -1,5 +1,3 @@ -using Robust.Shared.Players; - namespace Content.Shared.Movement.Events; /// diff --git a/Content.Shared/Movement/Systems/SharedContentEyeSystem.cs b/Content.Shared/Movement/Systems/SharedContentEyeSystem.cs index 27e0080c87..4b81619fd0 100644 --- a/Content.Shared/Movement/Systems/SharedContentEyeSystem.cs +++ b/Content.Shared/Movement/Systems/SharedContentEyeSystem.cs @@ -5,7 +5,7 @@ using Content.Shared.Input; using Content.Shared.Movement.Components; using Robust.Shared.Input.Binding; -using Robust.Shared.Players; +using Robust.Shared.Player; using Robust.Shared.Serialization; namespace Content.Shared.Movement.Systems; diff --git a/Content.Shared/Movement/Systems/SharedMoverController.Input.cs b/Content.Shared/Movement/Systems/SharedMoverController.Input.cs index 425322408e..1d323a9187 100644 --- a/Content.Shared/Movement/Systems/SharedMoverController.Input.cs +++ b/Content.Shared/Movement/Systems/SharedMoverController.Input.cs @@ -6,7 +6,7 @@ using Content.Shared.Movement.Events; using Robust.Shared.Input; using Robust.Shared.Input.Binding; -using Robust.Shared.Players; +using Robust.Shared.Player; using Robust.Shared.Serialization; using Robust.Shared.Timing; using Robust.Shared.Utility; diff --git a/Content.Shared/Nyanotrasen/Abilities/Psionics/Abilities/MassSleep/MassSleepPowerComponent.cs b/Content.Shared/Nyanotrasen/Abilities/Psionics/Abilities/MassSleep/MassSleepPowerComponent.cs index 7138c0663e..7d611c63da 100644 --- a/Content.Shared/Nyanotrasen/Abilities/Psionics/Abilities/MassSleep/MassSleepPowerComponent.cs +++ b/Content.Shared/Nyanotrasen/Abilities/Psionics/Abilities/MassSleep/MassSleepPowerComponent.cs @@ -10,7 +10,7 @@ public sealed partial class MassSleepPowerComponent : Component public float Radius = 1.25f; [DataField("massSleepActionId", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string? MassSleepActionId = "ActionTelegnosis"; + public string? MassSleepActionId = "ActionMassSleep"; [DataField("massSleepActionEntity")] public EntityUid? MassSleepActionEntity; diff --git a/Content.Shared/Placeable/ItemPlacerSystem.cs b/Content.Shared/Placeable/ItemPlacerSystem.cs index 92dc8eb74b..ec6ece671f 100644 --- a/Content.Shared/Placeable/ItemPlacerSystem.cs +++ b/Content.Shared/Placeable/ItemPlacerSystem.cs @@ -9,6 +9,7 @@ namespace Content.Shared.Placeable; /// public sealed class ItemPlacerSystem : EntitySystem { + [Dependency] private readonly CollisionWakeSystem _wake = default!; [Dependency] private readonly PlaceableSurfaceSystem _placeableSurface = default!; [Dependency] private readonly SharedPhysicsSystem _physics = default!; @@ -25,8 +26,8 @@ private void OnStartCollide(EntityUid uid, ItemPlacerComponent comp, ref StartCo if (comp.Whitelist != null && !comp.Whitelist.IsValid(args.OtherEntity)) return; - // Disallow sleeping so we can detect when entity is removed from the heater. - _physics.SetSleepingAllowed(args.OtherEntity, args.OtherBody, false); + if (TryComp(uid, out var wakeComp)) + _wake.SetEnabled(uid, false, wakeComp); var count = comp.PlacedEntities.Count; if (comp.MaxEntities == 0 || count < comp.MaxEntities) @@ -46,8 +47,8 @@ private void OnStartCollide(EntityUid uid, ItemPlacerComponent comp, ref StartCo private void OnEndCollide(EntityUid uid, ItemPlacerComponent comp, ref EndCollideEvent args) { - // Re-allow sleeping. - _physics.SetSleepingAllowed(args.OtherEntity, args.OtherBody, true); + if (TryComp(uid, out var wakeComp)) + _wake.SetEnabled(uid, true, wakeComp); comp.PlacedEntities.Remove(args.OtherEntity); diff --git a/Content.Shared/Players/PlayerData.cs b/Content.Shared/Players/ContentPlayerData.cs similarity index 75% rename from Content.Shared/Players/PlayerData.cs rename to Content.Shared/Players/ContentPlayerData.cs index d94bef2e38..e207447987 100644 --- a/Content.Shared/Players/PlayerData.cs +++ b/Content.Shared/Players/ContentPlayerData.cs @@ -1,16 +1,15 @@ using Content.Shared.GameTicking; using Content.Shared.Mind; using Robust.Shared.Network; -using Robust.Shared.Player; namespace Content.Shared.Players; /// /// Content side for all data that tracks a player session. -/// Use to retrieve this from an . +/// Use to retrieve this from an . /// Not currently used on the client. /// -public sealed class PlayerData +public sealed class ContentPlayerData { /// /// The session ID of the player owning this data. @@ -44,21 +43,9 @@ public sealed class PlayerData [ViewVariables] public bool Whitelisted { get; set; } - public PlayerData(NetUserId userId, string name) + public ContentPlayerData(NetUserId userId, string name) { UserId = userId; Name = name; } } - - -public static class PlayerDataExt -{ - /// - /// Gets the correctly cast instance of content player data from an engine player data storage. - /// - public static PlayerData? ContentData(this IPlayerData data) - { - return (PlayerData?) data.ContentDataUncast; - } -} diff --git a/Content.Shared/Players/PlayerDataExt.cs b/Content.Shared/Players/PlayerDataExt.cs new file mode 100644 index 0000000000..eba4d8339d --- /dev/null +++ b/Content.Shared/Players/PlayerDataExt.cs @@ -0,0 +1,30 @@ +using Robust.Shared.Player; + +namespace Content.Shared.Players; + +public static class PlayerDataExt +{ + /// + /// Gets the correctly cast instance of content player data from an engine player data storage. + /// + public static ContentPlayerData? ContentData(this SessionData data) + { + return (ContentPlayerData?) data.ContentDataUncast; + } + + /// + /// Gets the correctly cast instance of content player data from an engine player data storage. + /// + public static ContentPlayerData? ContentData(this ICommonSession session) + { + return session.Data.ContentData(); + } + + /// + /// Gets the mind that is associated with this player. + /// + public static EntityUid? GetMind(this ICommonSession session) + { + return session.Data.ContentData()?.Mind; + } +} \ No newline at end of file diff --git a/Content.Shared/Players/SharedPlayerSystem.cs b/Content.Shared/Players/SharedPlayerSystem.cs index 6fc7ad6a40..7271c5688a 100644 --- a/Content.Shared/Players/SharedPlayerSystem.cs +++ b/Content.Shared/Players/SharedPlayerSystem.cs @@ -1,4 +1,4 @@ -using Robust.Shared.Players; +using Robust.Shared.Player; namespace Content.Shared.Players; @@ -8,5 +8,5 @@ namespace Content.Shared.Players; /// public abstract class SharedPlayerSystem : EntitySystem { - public abstract PlayerData? ContentData(ICommonSession? session); + public abstract ContentPlayerData? ContentData(ICommonSession? session); } diff --git a/Content.Shared/Popups/SharedPopupSystem.cs b/Content.Shared/Popups/SharedPopupSystem.cs index 50013a5435..e4565b90e8 100644 --- a/Content.Shared/Popups/SharedPopupSystem.cs +++ b/Content.Shared/Popups/SharedPopupSystem.cs @@ -1,6 +1,5 @@ using Robust.Shared.Map; using Robust.Shared.Player; -using Robust.Shared.Players; using Robust.Shared.Serialization; namespace Content.Shared.Popups diff --git a/Content.Shared/Power/Generator/PowerSwitchableComponent.cs b/Content.Shared/Power/Generator/PowerSwitchableComponent.cs new file mode 100644 index 0000000000..39118b21e5 --- /dev/null +++ b/Content.Shared/Power/Generator/PowerSwitchableComponent.cs @@ -0,0 +1,82 @@ +using Robust.Shared.Audio; +using Robust.Shared.GameStates; +using Robust.Shared.Serialization; + +namespace Content.Shared.Power.Generator; + +/// +/// Enables a device to switch between HV, MV and LV connectors. +/// For generators this means changing output wires. +/// +/// +/// Must have CableDeviceNodes for each output in . +/// If its a generator PowerSupplierComponent is also required. +/// +[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] +[Access(typeof(SharedPowerSwitchableSystem))] +public sealed partial class PowerSwitchableComponent : Component +{ + /// + /// Index into that the device is currently using. + /// + [DataField, AutoNetworkedField] + public int ActiveIndex; + + /// + /// Sound that plays when the cable is switched. + /// + [DataField] + public SoundSpecifier? SwitchSound = new SoundPathSpecifier("/Audio/Machines/button.ogg"); + + /// + /// Locale id for text shown when examined. + /// It is given "voltage" as a colored voltage string. + /// + [DataField(required: true)] + public string ExamineText = string.Empty; + + /// + /// Locale id for the popup shown when switching voltages. + /// It is given "voltage" as a colored voltage string. + /// + [DataField(required: true)] + public string SwitchText = string.Empty; + + /// + /// Cable voltages and their nodes which can be cycled between. + /// Each node name must match a cable node in its NodeContainer. + /// + [DataField(required: true)] + public List Cables = new(); +} + +/// +/// Cable voltage and node name for cycling. +/// +[DataDefinition] +public sealed partial class PowerSwitchableCable +{ + /// + /// Voltage that the cable uses. + /// + [DataField(required: true)] + public SwitchableVoltage Voltage; + + /// + /// Name of the node for the cable. + /// Must be a CableDeviceNode + /// + [DataField(required: true)] + public string Node = string.Empty; +} + +/// +/// Cable voltage to cycle between. +/// +[Serializable, NetSerializable] +public enum SwitchableVoltage : byte +{ + HV, + MV, + LV +} diff --git a/Content.Shared/Power/Generator/PowerSwitchableGeneratorComponent.cs b/Content.Shared/Power/Generator/PowerSwitchableGeneratorComponent.cs deleted file mode 100644 index 464538f507..0000000000 --- a/Content.Shared/Power/Generator/PowerSwitchableGeneratorComponent.cs +++ /dev/null @@ -1,61 +0,0 @@ -using Robust.Shared.Audio; -using Robust.Shared.GameStates; -using Robust.Shared.Serialization; - -namespace Content.Shared.Power.Generator; - -/// -/// Enables a generator to switch between HV and MV output. -/// -/// -/// Must have CableDeviceNodes for both and , and also a PowerSupplierComponent. -/// -[RegisterComponent, NetworkedComponent, AutoGenerateComponentState] -[Access(typeof(SharedPowerSwitchableGeneratorSystem))] -public sealed partial class PowerSwitchableGeneratorComponent : Component -{ - /// - /// Which output the portable generator is currently connected to. - /// - [DataField("activeOutput")] - [AutoNetworkedField] - public PowerSwitchableGeneratorOutput ActiveOutput { get; set; } - - /// - /// Sound that plays when the output is switched. - /// - /// - [DataField("switchSound")] - public SoundSpecifier? SwitchSound { get; set; } - - /// - /// Which node is the MV output? - /// - [DataField("nodeOutputMV")] - public string NodeOutputMV { get; set; } = "output_mv"; - - /// - /// Which node is the HV output? - /// - [DataField("nodeOutputHV")] - public string NodeOutputHV { get; set; } = "output_hv"; -} - -/// -/// Possible power output for power-switchable generators. -/// -/// -[Serializable, NetSerializable] -public enum PowerSwitchableGeneratorOutput : byte -{ - /// - /// The generator is set to connect to a high-voltage power network. - /// - HV, - - /// - /// The generator is set to connect to a medium-voltage power network. - /// - MV -} - diff --git a/Content.Shared/Power/Generator/SharedPowerSwitchableGeneratorSystem.cs b/Content.Shared/Power/Generator/SharedPowerSwitchableGeneratorSystem.cs deleted file mode 100644 index 5d3793c471..0000000000 --- a/Content.Shared/Power/Generator/SharedPowerSwitchableGeneratorSystem.cs +++ /dev/null @@ -1,23 +0,0 @@ -using Content.Shared.Examine; - -namespace Content.Shared.Power.Generator; - -/// -/// Shared logic for power-switchable generators. -/// -/// -public abstract class SharedPowerSwitchableGeneratorSystem : EntitySystem -{ - public override void Initialize() - { - SubscribeLocalEvent(GeneratorExamined); - } - - private void GeneratorExamined(EntityUid uid, PowerSwitchableGeneratorComponent component, ExaminedEvent args) - { - // Show which output is currently selected. - args.PushMarkup(Loc.GetString( - "power-switchable-generator-examine", - ("output", component.ActiveOutput.ToString()))); - } -} diff --git a/Content.Shared/Power/Generator/SharedPowerSwitchableSystem.cs b/Content.Shared/Power/Generator/SharedPowerSwitchableSystem.cs new file mode 100644 index 0000000000..c1787b6078 --- /dev/null +++ b/Content.Shared/Power/Generator/SharedPowerSwitchableSystem.cs @@ -0,0 +1,72 @@ +using Content.Shared.Examine; + +namespace Content.Shared.Power.Generator; + +/// +/// Shared logic for power-switchable devices. +/// +/// +public abstract class SharedPowerSwitchableSystem : EntitySystem +{ + public override void Initialize() + { + SubscribeLocalEvent(OnExamined); + } + + private void OnExamined(EntityUid uid, PowerSwitchableComponent comp, ExaminedEvent args) + { + // Show which voltage is currently selected. + var voltage = VoltageColor(GetVoltage(uid, comp)); + args.PushMarkup(Loc.GetString(comp.ExamineText, ("voltage", voltage))); + } + + /// + /// Helper to get the colored markup string for a voltage type. + /// + public string VoltageColor(SwitchableVoltage voltage) + { + return Loc.GetString("power-switchable-voltage", ("voltage", VoltageString(voltage))); + } + + /// + /// Converts from "hv" to "HV" since for some reason the enum gets made lowercase??? + /// + public string VoltageString(SwitchableVoltage voltage) + { + return voltage.ToString().ToUpper(); + } + + /// + /// Returns index of the next cable type index to cycle to. + /// + public int NextIndex(EntityUid uid, PowerSwitchableComponent? comp = null) + { + if (!Resolve(uid, ref comp)) + return 0; + + // loop back at the end + return (comp.ActiveIndex + 1) % comp.Cables.Count; + } + + /// + /// Returns the current cable voltage being used by a power-switchable device. + /// + public SwitchableVoltage GetVoltage(EntityUid uid, PowerSwitchableComponent? comp = null) + { + if (!Resolve(uid, ref comp)) + return default; + + return comp.Cables[comp.ActiveIndex].Voltage; + } + + /// + /// Returns the cable's next voltage to cycle to being used by a power-switchable device. + /// + public SwitchableVoltage GetNextVoltage(EntityUid uid, PowerSwitchableComponent? comp = null) + { + if (!Resolve(uid, ref comp)) + return default; + + return comp.Cables[NextIndex(uid, comp)].Voltage; + } +} diff --git a/Content.Shared/Prying/Components/PryingComponent.cs b/Content.Shared/Prying/Components/PryingComponent.cs index 4442481dce..7a7f304d8f 100644 --- a/Content.Shared/Prying/Components/PryingComponent.cs +++ b/Content.Shared/Prying/Components/PryingComponent.cs @@ -51,6 +51,8 @@ public record struct BeforePryEvent(EntityUid User, bool PryPowered, bool Force) public readonly bool Force = Force; + public string? Message; + public bool Cancelled; } diff --git a/Content.Shared/Prying/Systems/PryingSystem.cs b/Content.Shared/Prying/Systems/PryingSystem.cs index 19e63de29e..5fd94c3438 100644 --- a/Content.Shared/Prying/Systems/PryingSystem.cs +++ b/Content.Shared/Prying/Systems/PryingSystem.cs @@ -7,6 +7,7 @@ using Content.Shared.Doors.Components; using System.Diagnostics.CodeAnalysis; using Content.Shared.Interaction; +using Content.Shared.Popups; using PryUnpoweredComponent = Content.Shared.Prying.Components.PryUnpoweredComponent; namespace Content.Shared.Prying.Systems; @@ -19,6 +20,7 @@ public sealed class PryingSystem : EntitySystem [Dependency] private readonly ISharedAdminLogManager _adminLog = default!; [Dependency] private readonly SharedDoAfterSystem _doAfterSystem = default!; [Dependency] private readonly SharedAudioSystem _audioSystem = default!; + [Dependency] private readonly SharedPopupSystem Popup = default!; public override void Initialize() { @@ -68,10 +70,12 @@ public bool TryPry(EntityUid target, EntityUid user, out DoAfterId? id, EntityUi if (!comp.Enabled) return false; - if (!CanPry(target, user, comp)) + if (!CanPry(target, user, out var message, comp)) { + if (message != null) + Popup.PopupEntity(Loc.GetString(message), target, user); // If we have reached this point we want the event that caused this - // to be marked as handled as a popup would be generated on failure. + // to be marked as handled. return true; } @@ -87,15 +91,16 @@ public bool TryPry(EntityUid target, EntityUid user, out DoAfterId? id) { id = null; - if (!CanPry(target, user)) + // We don't care about displaying a message if no tool was used. + if (!CanPry(target, user, out _)) // If we have reached this point we want the event that caused this - // to be marked as handled as a popup would be generated on failure. + // to be marked as handled. return true; return StartPry(target, user, null, 0.1f, out id); // hand-prying is much slower } - private bool CanPry(EntityUid target, EntityUid user, PryingComponent? comp = null) + private bool CanPry(EntityUid target, EntityUid user, out string? message, PryingComponent? comp = null) { BeforePryEvent canev; @@ -106,15 +111,19 @@ private bool CanPry(EntityUid target, EntityUid user, PryingComponent? comp = nu else { if (!TryComp(target, out _)) + { + message = null; return false; + } + canev = new BeforePryEvent(user, false, false); } RaiseLocalEvent(target, ref canev); - if (canev.Cancelled) - return false; - return true; + message = canev.Message; + + return !canev.Cancelled; } private bool StartPry(EntityUid target, EntityUid user, EntityUid? tool, float toolModifier, [NotNullWhen(true)] out DoAfterId? id) diff --git a/Content.Shared/Pulling/Systems/SharedPullingSystem.cs b/Content.Shared/Pulling/Systems/SharedPullingSystem.cs index 6f19d048b4..0c139ee9e3 100644 --- a/Content.Shared/Pulling/Systems/SharedPullingSystem.cs +++ b/Content.Shared/Pulling/Systems/SharedPullingSystem.cs @@ -12,7 +12,7 @@ using Robust.Shared.Physics; using Robust.Shared.Physics.Events; using Robust.Shared.Physics.Systems; -using Robust.Shared.Players; +using Robust.Shared.Player; namespace Content.Shared.Pulling { diff --git a/Content.Shared/Roles/JobRequirements.cs b/Content.Shared/Roles/JobRequirements.cs index 2785e988bc..fbe607c7ce 100644 --- a/Content.Shared/Roles/JobRequirements.cs +++ b/Content.Shared/Roles/JobRequirements.cs @@ -2,7 +2,6 @@ using Content.Shared.Players.PlayTimeTracking; using Content.Shared.Roles.Jobs; using JetBrains.Annotations; -using Robust.Shared.Players; using Robust.Shared.Prototypes; using Robust.Shared.Serialization; using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; diff --git a/Content.Shared/Roles/Jobs/SharedJobSystem.cs b/Content.Shared/Roles/Jobs/SharedJobSystem.cs index ac18d04e9c..af97ea1350 100644 --- a/Content.Shared/Roles/Jobs/SharedJobSystem.cs +++ b/Content.Shared/Roles/Jobs/SharedJobSystem.cs @@ -2,7 +2,7 @@ using System.Linq; using Content.Shared.Players; using Content.Shared.Players.PlayTimeTracking; -using Robust.Shared.Players; +using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Utility; diff --git a/Content.Shared/Silicons/Laws/Components/EmagSiliconLawComponent.cs b/Content.Shared/Silicons/Laws/Components/EmagSiliconLawComponent.cs index c6238c067d..f492db4d12 100644 --- a/Content.Shared/Silicons/Laws/Components/EmagSiliconLawComponent.cs +++ b/Content.Shared/Silicons/Laws/Components/EmagSiliconLawComponent.cs @@ -1,12 +1,11 @@ using Content.Shared.Roles; using Robust.Shared.GameStates; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; +using Robust.Shared.Prototypes; namespace Content.Shared.Silicons.Laws.Components; /// -/// This is used for an entity that grants a special "obey" law when emagge.d +/// This is used for an entity that grants a special "obey" law when emagged. /// [RegisterComponent, NetworkedComponent, Access(typeof(SharedSiliconLawSystem))] public sealed partial class EmagSiliconLawComponent : Component @@ -14,31 +13,39 @@ public sealed partial class EmagSiliconLawComponent : Component /// /// The name of the person who emagged this law provider. /// - [DataField("ownerName"), ViewVariables(VVAccess.ReadWrite)] + [DataField, ViewVariables(VVAccess.ReadWrite)] public string? OwnerName; /// /// Does the panel need to be open to EMAG this law provider. /// - [DataField("requireOpenPanel"), ViewVariables(VVAccess.ReadWrite)] + [DataField, ViewVariables(VVAccess.ReadWrite)] public bool RequireOpenPanel = true; /// - /// The laws that the borg is given when emagged. + /// The laws that the borg is given when emagged. + /// Law 0 is prepended to this, so this can only include the static laws. /// - [DataField("emagLaws", required: true, customTypeSerializer: typeof(PrototypeIdListSerializer))] - public List EmagLaws = new(); + [DataField(required: true), ViewVariables(VVAccess.ReadWrite)] + public ProtoId EmagLaws = string.Empty; /// - /// How long the borg is stunned when it's emagged. Setting to 0 will disable it. + /// Lawset created from the prototype id and law 0. + /// Cached when getting laws and only modified during an ion storm event. /// - [DataField("stunTime"), ViewVariables(VVAccess.ReadWrite)] + [DataField, ViewVariables(VVAccess.ReadWrite)] + public SiliconLawset? Lawset; + + /// + /// How long the borg is stunned when it's emagged. Setting to 0 will disable it. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] public TimeSpan StunTime = TimeSpan.Zero; /// /// A role given to entities with this component when they are emagged. /// Mostly just for admin purposes. /// - [DataField("antagonistRole", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string? AntagonistRole = "SubvertedSilicon"; + [DataField] + public ProtoId? AntagonistRole = "SubvertedSilicon"; } diff --git a/Content.Shared/Silicons/Laws/Components/IonStarmTargetComponent.cs b/Content.Shared/Silicons/Laws/Components/IonStarmTargetComponent.cs new file mode 100644 index 0000000000..49ac611ddc --- /dev/null +++ b/Content.Shared/Silicons/Laws/Components/IonStarmTargetComponent.cs @@ -0,0 +1,54 @@ +using Content.Shared.Random; +using Robust.Shared.Prototypes; + +namespace Content.Shared.Silicons.Laws.Components; + +/// +/// During the ion storm event, this entity will have raised on it if it has laws. +/// New laws can be modified in multiple ways depending on the fields below. +/// +[RegisterComponent] +public sealed partial class IonStormTargetComponent : Component +{ + /// + /// for a random lawset to possibly replace the old one with. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public ProtoId RandomLawsets = "IonStormLawsets"; + + /// + /// Chance for this borg to be affected at all. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float Chance = 0.5f; + + /// + /// Chance to replace the lawset with a random one + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float RandomLawsetChance = 0.25f; + + /// + /// Chance to remove a random law. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float RemoveChance = 0.1f; + + /// + /// Chance to replace a random law with the new one, rather than have it be a glitched-order law. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float ReplaceChance = 0.1f; + + /// + /// Chance to shuffle laws after everything is done. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public float ShuffleChance = 0.1f; +} + +/// +/// Raised on an ion storm target to modify its laws. +/// +[ByRefEvent] +public record struct IonStormLawsEvent(SiliconLawset Lawset); diff --git a/Content.Shared/Silicons/Laws/Components/SiliconLawBoundComponent.cs b/Content.Shared/Silicons/Laws/Components/SiliconLawBoundComponent.cs index 955705ae8b..824d057b3e 100644 --- a/Content.Shared/Silicons/Laws/Components/SiliconLawBoundComponent.cs +++ b/Content.Shared/Silicons/Laws/Components/SiliconLawBoundComponent.cs @@ -1,7 +1,6 @@ using Content.Shared.Actions; using Robust.Shared.Prototypes; using Robust.Shared.Serialization; -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype; namespace Content.Shared.Silicons.Laws.Components; @@ -14,19 +13,19 @@ public sealed partial class SiliconLawBoundComponent : Component /// /// The sidebar action that toggles the laws screen. /// - [DataField("viewLawsAction", customTypeSerializer: typeof(PrototypeIdSerializer))] - public string ViewLawsAction = "ActionViewLaws"; + [DataField] + public EntProtoId ViewLawsAction = "ActionViewLaws"; /// /// The action for toggling laws. Stored here so we can remove it later. /// - [DataField("viewLawsActionEntity")] + [DataField] public EntityUid? ViewLawsActionEntity; /// /// The last entity that provided laws to this entity. /// - [DataField("lastLawProvider")] + [DataField] public EntityUid? LastLawProvider; } @@ -43,7 +42,7 @@ public record struct GetSiliconLawsEvent(EntityUid Entity) { public EntityUid Entity = Entity; - public readonly List Laws = new(); + public SiliconLawset Laws = new(); public bool Handled = false; } diff --git a/Content.Shared/Silicons/Laws/Components/SiliconLawProviderComponent.cs b/Content.Shared/Silicons/Laws/Components/SiliconLawProviderComponent.cs index e3302dc620..3aaf965aee 100644 --- a/Content.Shared/Silicons/Laws/Components/SiliconLawProviderComponent.cs +++ b/Content.Shared/Silicons/Laws/Components/SiliconLawProviderComponent.cs @@ -1,4 +1,4 @@ -using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; +using Robust.Shared.Prototypes; namespace Content.Shared.Silicons.Laws.Components; @@ -9,8 +9,15 @@ namespace Content.Shared.Silicons.Laws.Components; public sealed partial class SiliconLawProviderComponent : Component { /// - /// The laws that are provided. + /// The id of the lawset that is being provided. /// - [DataField("laws", required: true, customTypeSerializer: typeof(PrototypeIdListSerializer))] - public List Laws = new(); + [DataField(required: true)] + public ProtoId Laws = string.Empty; + + /// + /// Lawset created from the prototype id. + /// Cached when getting laws and only modified during an ion storm event. + /// + [DataField, ViewVariables(VVAccess.ReadWrite)] + public SiliconLawset? Lawset; } diff --git a/Content.Shared/Silicons/Laws/SiliconLawPrototype.cs b/Content.Shared/Silicons/Laws/SiliconLawPrototype.cs index 86bea20fa0..f6407be5c7 100644 --- a/Content.Shared/Silicons/Laws/SiliconLawPrototype.cs +++ b/Content.Shared/Silicons/Laws/SiliconLawPrototype.cs @@ -11,7 +11,7 @@ public partial class SiliconLaw : IComparable /// /// A locale string which is the actual text of the law. /// - [DataField("lawString", required: true)] + [DataField(required: true), ViewVariables(VVAccess.ReadWrite)] public string LawString = string.Empty; /// @@ -22,13 +22,13 @@ public partial class SiliconLaw : IComparable /// This is a fixedpoint2 only for the niche case of supporting laws that go between 0 and 1. /// Funny. /// - [DataField("order", required: true)] + [DataField(required: true), ViewVariables(VVAccess.ReadWrite)] public FixedPoint2 Order; /// /// An identifier that overrides in the law menu UI. /// - [DataField("lawIdentifierOverride")] + [DataField, ViewVariables(VVAccess.ReadWrite)] public string? LawIdentifierOverride; public int CompareTo(SiliconLaw? other) @@ -38,6 +38,19 @@ public int CompareTo(SiliconLaw? other) return Order.CompareTo(other.Order); } + + /// + /// Return a shallow clone of this law. + /// + public SiliconLaw ShallowClone() + { + return new SiliconLaw() + { + LawString = LawString, + Order = Order, + LawIdentifierOverride = LawIdentifierOverride + }; + } } /// @@ -50,6 +63,4 @@ public sealed class SiliconLawPrototype : SiliconLaw, IPrototype /// [IdDataField] public string ID { get; private set; } = default!; - - } diff --git a/Content.Shared/Silicons/Laws/SiliconLawsetPrototype.cs b/Content.Shared/Silicons/Laws/SiliconLawsetPrototype.cs new file mode 100644 index 0000000000..abb5b338db --- /dev/null +++ b/Content.Shared/Silicons/Laws/SiliconLawsetPrototype.cs @@ -0,0 +1,69 @@ +using Content.Shared.FixedPoint; +using Robust.Shared.Prototypes; +using Robust.Shared.Serialization; +using Robust.Shared.Serialization.TypeSerializers.Implementations.Custom.Prototype.List; + +namespace Content.Shared.Silicons.Laws; + +/// +/// Lawset data used internally. +/// +[DataDefinition, Serializable, NetSerializable] +public sealed partial class SiliconLawset +{ + /// + /// List of laws in this lawset. + /// + [DataField(required: true), ViewVariables(VVAccess.ReadWrite)] + public List Laws = new(); + + /// + /// A single line used in logging laws. + /// + public string LoggingString() + { + var laws = new List(Laws.Count); + foreach (var law in Laws) + { + laws.Add($"{law.Order}: {Loc.GetString(law.LawString)}"); + } + + return string.Join(" / ", laws); + } + + /// + /// Do a clone of this lawset. + /// It will have unique laws but their strings are still shared. + /// + public SiliconLawset Clone() + { + var laws = new List(Laws.Count); + foreach (var law in Laws) + { + laws.Add(law.ShallowClone()); + } + + return new SiliconLawset() + { + Laws = laws + }; + } +} + +/// +/// This is a prototype for a list. +/// Cannot be used directly since it is a list of prototype ids rather than List. +/// +[Prototype("siliconLawset"), Serializable, NetSerializable] +public sealed partial class SiliconLawsetPrototype : IPrototype +{ + /// + [IdDataField] + public string ID { get; private set; } = default!; + + /// + /// List of law prototype ids in this lawset. + /// + [DataField(required: true, customTypeSerializer: typeof(PrototypeIdListSerializer))] + public List Laws = new(); +} diff --git a/Content.Shared/SubFloor/SharedSubFloorHideSystem.cs b/Content.Shared/SubFloor/SharedSubFloorHideSystem.cs index 0fd7a2e932..02b4e61790 100644 --- a/Content.Shared/SubFloor/SharedSubFloorHideSystem.cs +++ b/Content.Shared/SubFloor/SharedSubFloorHideSystem.cs @@ -24,7 +24,6 @@ public override void Initialize() { base.Initialize(); - SubscribeLocalEvent(OnGridChanged); SubscribeLocalEvent(OnTileChanged); SubscribeLocalEvent(OnSubFloorStarted); SubscribeLocalEvent(OnSubFloorTerminating); @@ -97,14 +96,6 @@ private void OnTileChanged(ref TileChangedEvent args) UpdateTile(MapManager.GetGrid(args.NewTile.GridUid), args.NewTile.GridIndices); } - private void OnGridChanged(GridModifiedEvent args) - { - foreach (var modified in args.Modified) - { - UpdateTile(args.Grid, modified.position); - } - } - /// /// Update whether a given entity is currently covered by a floor tile. /// diff --git a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs index 4b740b8d3c..62af6067d0 100644 --- a/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs +++ b/Content.Shared/Weapons/Melee/SharedMeleeWeaponSystem.cs @@ -23,7 +23,7 @@ using Robust.Shared.Map; using Robust.Shared.Physics; using Robust.Shared.Physics.Systems; -using Robust.Shared.Players; +using Robust.Shared.Player; using Robust.Shared.Prototypes; using Robust.Shared.Timing; diff --git a/Resources/Audio/Ambience/Antag/attributions.yml b/Resources/Audio/Ambience/Antag/attributions.yml index 3d7d5c737c..0a4a0479d1 100644 --- a/Resources/Audio/Ambience/Antag/attributions.yml +++ b/Resources/Audio/Ambience/Antag/attributions.yml @@ -9,4 +9,8 @@ - files: ["zombie_start.ogg"] license: "CC-BY-NC-SA-3.0" copyright: "Made by @MIXnikita#1474 (Discord) for SS14" - source: "https://github.com/SerbiaStrong-220/space-station-14/commit/f33ce80db9d8ac962ec36eb5ae61afa8c0035d1a" \ No newline at end of file + source: "https://github.com/SerbiaStrong-220/space-station-14/commit/f33ce80db9d8ac962ec36eb5ae61afa8c0035d1a" +- files: ["headrev_start.ogg"] + license: "CC0-1.0" + copyright: "Made by https://www.youtube.com/@a-guy173" + source: https://github.com/A-Guy173/Music/blob/main/revolution.mp3 diff --git a/Resources/Audio/Ambience/Antag/headrev_start.ogg b/Resources/Audio/Ambience/Antag/headrev_start.ogg new file mode 100644 index 0000000000..f97ab15a3e Binary files /dev/null and b/Resources/Audio/Ambience/Antag/headrev_start.ogg differ diff --git a/Resources/Audio/Announcements/RoundEnd/attributions.yml b/Resources/Audio/Announcements/RoundEnd/attributions.yml index 1aaa67e59a..0ba0c2d56a 100644 --- a/Resources/Audio/Announcements/RoundEnd/attributions.yml +++ b/Resources/Audio/Announcements/RoundEnd/attributions.yml @@ -53,15 +53,15 @@ copyright: "William Gibson, reading Neuromancer on cassette tape (1984)" source: "https://www.youtube.com/playlist?list=PLYn090EvNBcinpVcrKNmYAHojxP7pnYC1" -- files: ["pdpt.ogg"] - license: "Custom" - copyright: "Introduction to Serial Experiments Lain (1998)" - source: "https://en.wikipedia.org/wiki/Serial_Experiments_Lain" - - files: ["quarterly_gains.ogg"] license: "Custom" copyright: "Armin Shimerman as Quark, Star Trek: Deep Space Nine, S4E06 'Starship Down' (1995)" source: "https://en.wikipedia.org/wiki/Star_Trek:_Deep_Space_Nine" + +- files: ["safescience.ogg"] + license: "Custom" + copyright: "J.K. Simmons as Cave Johnson, Portal 2 (2011)" + source: "https://en.wikipedia.org/wiki/Portal_2" - files: ["secher_nbiw.ogg"] license: "Custom" @@ -83,6 +83,11 @@ copyright: "Alan Watts, a Conversation with Myself (1971)" source: "https://www.youtube.com/watch?v=KOc4MH2Eu18" +- files: ["susguyeatscrew.ogg"] + license: "Custom" + copyright: "Jerma984's Viva Las Vegas Video on Youtube (2019)" + source: "https://www.youtube.com/watch?v=T4YmdEEl2m0&t=0s" + - files: ["this_drink.ogg"] license: "Custom" copyright: "Ian Ziering as Edison Trent, Freelancer (2003)" diff --git a/Resources/Audio/Announcements/RoundEnd/pdpt.ogg b/Resources/Audio/Announcements/RoundEnd/pdpt.ogg deleted file mode 100644 index e9db15f1f1..0000000000 Binary files a/Resources/Audio/Announcements/RoundEnd/pdpt.ogg and /dev/null differ diff --git a/Resources/Audio/Announcements/RoundEnd/safescience.ogg b/Resources/Audio/Announcements/RoundEnd/safescience.ogg new file mode 100644 index 0000000000..4da0f50049 Binary files /dev/null and b/Resources/Audio/Announcements/RoundEnd/safescience.ogg differ diff --git a/Resources/Audio/Announcements/RoundEnd/susguyeatscrew.ogg b/Resources/Audio/Announcements/RoundEnd/susguyeatscrew.ogg new file mode 100644 index 0000000000..069f9c8779 Binary files /dev/null and b/Resources/Audio/Announcements/RoundEnd/susguyeatscrew.ogg differ diff --git a/Resources/Audio/Announcements/attributions.yml b/Resources/Audio/Announcements/attributions.yml new file mode 100644 index 0000000000..b65f758615 --- /dev/null +++ b/Resources/Audio/Announcements/attributions.yml @@ -0,0 +1,4 @@ +- files: ["ion_storm.ogg"] + license: "CC-BY-SA-3.0" + copyright: "tgstation" + source: "https://github.com/tgstation/tgstation/blob/b77fa8c2a2490b43bf9174271ebfad72c4782d98/sound/ai/default/ionstorm.ogg" diff --git a/Resources/Audio/Announcements/ion_storm.ogg b/Resources/Audio/Announcements/ion_storm.ogg new file mode 100644 index 0000000000..9f39713de6 Binary files /dev/null and b/Resources/Audio/Announcements/ion_storm.ogg differ diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index b1a864ca07..582795cb3c 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,241 +1,5 @@ Order: 1 Entries: -- 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 @@ -2909,3 +2673,246 @@ Entries: sending you to the farplanes., type: Fix} id: 5049 time: '2023-10-24T10:44:09.0000000+00:00' +- author: liltenhead + changes: + - {message: Fixed the "examine" trigger for artifacts not having a hint., type: Fix} + id: 5050 + time: '2023-10-24T20:37:16.0000000+00:00' +- author: Stealthbomber16 + changes: + - {message: You can actually grind corn into cornmeal now., type: Fix} + id: 5051 + time: '2023-10-24T20:38:43.0000000+00:00' +- author: Myakot + changes: + - {message: Skeletons can now heal by pouring milk over themselves, type: Add} + id: 5052 + time: '2023-10-24T20:58:34.0000000+00:00' +- author: TemporalOroboros + changes: + - {message: Fixed anomaly locators frantically beeping when they first enter detection + range for an anomaly., type: Fix} + id: 5053 + time: '2023-10-24T21:00:23.0000000+00:00' +- author: 27alaing + changes: + - {message: The anti-slang system allows for more leeway with certain phrases now., + type: Tweak} + - {message: 'The supply radio channel can be used with ":u" again.', type: Fix} + id: 5054 + time: '2023-10-25T00:56:19.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: Medical cyborgs' stethoscopes can no longer be fed to moths to obtain + a free hand., type: Fix} + id: 5055 + time: '2023-10-25T04:51:32.0000000+00:00' +- author: deltanedas + changes: + - {message: Roundstart borg jobs get funny names., type: Tweak} + id: 5056 + time: '2023-10-25T13:00:09.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: The search bar in vending machines now works., type: Fix} + id: 5057 + time: '2023-10-25T13:01:16.0000000+00:00' +- author: deltanedas + changes: + - {message: 'The Syndicate''s chefs are now offering snack boxes for only 1 tc. + Usually contains a toy, drinks and food.', type: Add} + id: 5058 + time: '2023-10-25T13:26:27.0000000+00:00' +- author: metalgearsloth + changes: + - {message: Fix docking UI not showing other grids., type: Fix} + id: 5059 + time: '2023-10-25T13:28:34.0000000+00:00' +- author: Doru991 + changes: + - {message: Potato batteries can be built by crew., type: Add} + - {message: New compact AI chips may be powered via potato batteries., type: Add} + id: 5060 + time: '2023-10-25T13:52:50.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: 'Storage now functions based on slots and sizes, rather than numerical + values.', type: Tweak} + id: 5061 + time: '2023-10-25T22:53:39.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: Adjusted the sizes of space suits and belts., type: Tweak} + - {message: Reduced the slot count in the ore bag., type: Tweak} + - {message: Fixed not being to create pills at the ChemMaster 5000., type: Fix} + id: 5062 + time: '2023-10-26T02:47:45.0000000+00:00' +- author: metalgearsloth + changes: + - {message: 'Reverted storage to function with numerical values again, instead of + slots and sizes.', type: Tweak} + id: 5063 + time: '2023-10-26T08:28:16.776154+00:00' +- author: nmajask + changes: + - {message: Bacon burgers require 1 bacon instead of 3 cutlets, type: Tweak} + - {message: Ghost burgers require 1 ectoplasm instead of 1 ghost sheet, type: Tweak} + - {message: Tofu creation no longer consumes the enzyme, type: Tweak} + - {message: Ribs and Mcribs now give back skewers when eaten, type: Fix} + id: 5064 + time: '2023-10-27T02:12:35.0000000+00:00' +- author: JoeHammad + changes: + - {message: 'Headrevs now have their own music on spawn, credits to A-Guy on youtube', + type: Add} + id: 5065 + time: '2023-10-27T02:19:35.0000000+00:00' +- author: crazybrain + changes: + - {message: Bodies of dead players who have taken a ghost role now show as "departed + and moved on"., type: Fix} + id: 5066 + time: '2023-10-27T02:27:36.0000000+00:00' +- author: deltanedas + changes: + - {message: Fixed being able to give pAIs implants., type: Fix} + id: 5067 + time: '2023-10-27T02:34:03.0000000+00:00' +- author: deltanedas + changes: + - {message: Ion storms have appeared and are causing malfunctions in cyborg law + modules., type: Add} + id: 5068 + time: '2023-10-27T02:40:13.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: Foam and smoke can now transfer chemicals when inhaled. Wear internals + to avoid this., type: Add} + - {message: Fixed foam dissolution animation., type: Fix} + id: 5069 + time: '2023-10-27T02:52:11.0000000+00:00' +- author: Whisper + changes: + - {message: Increased funding in an undisclosed NT Operative Squad., type: Add} + - {message: CentComm staff will have their proper ID icons on security's sechud., + type: Add} + - {message: CentComm staff will have undying loyalty to Nanotrasen., type: Add} + - {message: ERT funding has been improved. Expect specialized ERT units to be able + to provide more assistance related to their role., type: Tweak} + - {message: Cut funding from ERT weaponry. They'll likely be seen using standard + security-level weapons., type: Remove} + - {message: 'Cut funding from ERT uniforms, they no longer have built in armor.', + type: Fix} + - {message: The medical ERT members have had their hardsuits refitted with proper + armor., type: Fix} + - {message: Updated the localization files., type: Fix} + id: 5070 + time: '2023-10-27T13:54:43.0000000+00:00' +- author: ficcialfaint + changes: + - {message: Fixed nuclear operatives sound not being played at round start, type: Fix} + id: 5071 + time: '2023-10-28T02:28:21.0000000+00:00' +- author: Arteben + changes: + - {message: Nanotrasen improved the health analyzer UI!, type: Tweak} + id: 5072 + time: '2023-10-28T05:54:18.0000000+00:00' +- author: Repo + changes: + - {message: Stats menu on Character setup for total and role playtime., type: Add} + id: 5073 + time: '2023-10-28T12:01:11.0000000+00:00' +- author: TemporalOroboros + changes: + - {message: 'The space lube recipe now produces slightly more lube, but can overflow + its container.', type: Tweak} + id: 5074 + time: '2023-10-28T16:46:59.0000000+00:00' +- author: Ubaser + changes: + - {message: The bee plush can now be worn on your head., type: Add} + id: 5075 + time: '2023-10-29T03:55:15.0000000+00:00' +- author: metalgearsloth + changes: + - {message: Audio rework is in which fixes a lot of audio bugs but may also introduce + new ones., type: Tweak} + - {message: Grid audio will now attenuate properly over distance and won't be ear + rupturingly loud., type: Fix} + - {message: FTL sound should no longer persist as it's attached to the shuttle instead + of being global., type: Fix} + - {message: Audio can now start at an offset so if an audio source comes into range + it won't play from the start., type: Fix} + - {message: Changed audio attenuation from InverseDistanceClamped to LinearDistanceClamped + so it's smoother. You may need to adjust your master audio volume., type: Tweak} + id: 5076 + time: '2023-10-29T03:58:23.0000000+00:00' +- author: Simyon264 + changes: + - {message: 'The PDA will now ring again, when a new station article gets published. + Reporters rejoice!', type: Fix} + id: 5077 + time: '2023-10-29T10:37:40.0000000+00:00' +- author: Subversionary + changes: + - {message: Bolas no longer deal stamina damage if you're already ensnared., type: Tweak} + - {message: Returned old bola recipe, type: Tweak} + - {message: Nerfed bola stamina damage from 80 to 55, type: Tweak} + - {message: You can break out of bolas while moving., type: Tweak} + id: 5078 + time: '2023-10-29T22:27:44.0000000+00:00' +- author: nmajask + changes: + - {message: Flannel jackets now keep you warm., type: Tweak} + id: 5079 + time: '2023-10-30T00:08:06.0000000+00:00' +- author: metalgearsloth + changes: + - {message: Made thindows slightly thicker (0.03m to 0.13m) to reduce instances + of tunneling through them at high speeds. This only affects the outer edge so + you can still move through two parallel thindows on the same tile., type: Tweak} + id: 5080 + time: '2023-10-30T11:48:12.0000000+00:00' +- author: Vasilis + changes: + - {message: Fixed the issue where mice were cannibalizing fallen brethren., type: Fix} + id: 5081 + time: '2023-10-31T01:49:05.0000000+00:00' +- author: notquitehadouken + changes: + - {message: 'Despite being just as effective as the head, you no longer hit people + with the handle of fire axes.', type: Fix} + id: 5082 + time: '2023-10-31T03:30:59.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: Skeletal crewmates have arrived on the station for Halloween only., + type: Add} + id: 5083 + time: '2023-10-31T03:40:12.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: DELTAV - Revert storage update, changelog entries only present to prevent conflicts., type: Remove} + - {message: 'Storage containers can now block large items from being inserted into + them, regardless of the space available.', type: Add} + - {message: Belts now function on a slot based storage system rather than a volume + based one., type: Add} + - {message: Standardized item sizes into regular categories., type: Tweak} + id: 5084 + time: '2023-10-31T03:55:56.0000000+00:00' +- author: Daemon + changes: + - {message: Add pea plants., type: Add} + id: 5085 + time: '2023-10-31T04:09:13.0000000+00:00' +- author: EmoGarbage404 + changes: + - {message: Smoke now properly transfers reagents when inhaled., type: Fix} + id: 5086 + time: '2023-10-31T12:43:18.0000000+00:00' +- author: Lank + changes: + - {message: Slimes are fully immune to Nitrous Oxide again., type: Fix} + id: 5087 + time: '2023-10-31T12:57:27.0000000+00:00' diff --git a/Resources/Changelog/DeltaVChangelog.yml b/Resources/Changelog/DeltaVChangelog.yml index c425ce78ba..722db24e62 100644 --- a/Resources/Changelog/DeltaVChangelog.yml +++ b/Resources/Changelog/DeltaVChangelog.yml @@ -658,3 +658,213 @@ Entries: message: Reimplemented Brigmedics. They're not on any maps (yet). id: 100 time: '2023-10-25T22:52:49.0000000+00:00' +- author: FluffiestFloof + changes: + - type: Fix + message: Fixed Mystagogue not having their dispel power. + id: 101 + time: '2023-10-26T14:55:52.0000000+00:00' +- author: FluffiestFloof + changes: + - type: Tweak + message: Tweaked the price of the uplink cat ears down to 4TC from 26TC. + id: 102 + time: '2023-10-27T17:25:08.0000000+00:00' +- author: luringens + changes: + - type: Fix + message: >- + Harpies can now sing while cuffed, but not while muzzled, mute, + zombified, or otherwise incapable of talking. + - type: Add + message: >- + You can now make a harpy stop singing by slipping, stunning, or hurting + them. + id: 103 + time: '2023-10-27T18:13:03.0000000+00:00' +- author: FluffiestFloof + changes: + - type: Remove + message: Removed the traitor objective of killing Ian for his meat. + id: 104 + time: '2023-10-27T18:18:43.0000000+00:00' +- author: FluffiestFloof + changes: + - type: Tweak + message: Tweaked the Moth related food to be edible by Moths. + id: 105 + time: '2023-10-27T18:32:16.0000000+00:00' +- author: DebugOk + changes: + - type: Tweak + message: Invalid job preferences are now reset to never upon loading in. + id: 106 + time: '2023-10-28T01:58:58.0000000+00:00' +- author: FluffiestFloof + changes: + - type: Add + message: Added Mothroaches in the vents. + id: 107 + time: '2023-10-28T02:00:22.0000000+00:00' +- author: Colin-Tel + changes: + - type: Tweak + message: Adjusted event weights so rounds are not as exciting. + id: 108 + time: '2023-10-28T03:14:19.0000000+00:00' +- author: FluffiestFloof + changes: + - type: Add + message: Added the classic Moth markings back, still can't be coloured. + id: 109 + time: '2023-10-28T19:05:29.0000000+00:00' +- author: JJ + changes: + - type: Add + message: Add Psionic Antag Objectives + id: 110 + time: '2023-10-28T19:06:51.0000000+00:00' +- author: DebugOk + changes: + - type: Tweak + message: The 10 reserved whitelist slots have been removed until further notice. + id: 111 + time: '2023-10-29T03:10:27.0000000+00:00' +- author: Colin-Tel + changes: + - type: Tweak + message: >- + Altered the rules. Read the latest changes to them at the top of the + rules list! + id: 112 + time: '2023-10-29T17:36:46.0000000+00:00' +- author: VMSolidus + changes: + - type: Add + message: Cargo can now order medical scrub crates + id: 113 + time: '2023-10-29T17:38:19.0000000+00:00' +- author: FluffiestFloof + changes: + - type: Remove + message: Removed the clown hardsuit from being craftable. + id: 114 + time: '2023-10-30T13:17:07.0000000+00:00' +- author: Colin-Tel + changes: + - type: Add + message: Asterisk station has been added to the game. + id: 115 + time: '2023-11-01T16:32:48.0000000+00:00' +- author: leonardo-dabepis + changes: + - type: Tweak + message: Switched logos around + id: 116 + time: '2023-11-01T22:45:55.0000000+00:00' +- author: TJohnson + changes: + - type: Tweak + message: Security has received new models of hardsuit! + id: 117 + time: '2023-11-02T00:31:53.0000000+00:00' +- author: ps3moira + changes: + - type: Add + message: Added Two New Round-End Sounds + - type: Remove + message: Lobby Round-End Sounds + id: 118 + time: '2023-11-02T01:00:16.0000000+00:00' +- author: leonardo-dabepis + changes: + - type: Tweak + message: Technical Assistant now has a 4 hour playtime requirement. + id: 119 + time: '2023-11-02T16:15:06.0000000+00:00' +- author: Colin-Tel + changes: + - type: Tweak + message: >- + Updated Asterisk Station with various fixes, a slot for an atmos + technician, and a familiar parallax... + id: 120 + time: '2023-11-02T20:38:51.0000000+00:00' +- author: FluffiestFloof + changes: + - type: Remove + message: Removed starvation! + id: 121 + time: '2023-11-05T19:24:51.0000000+00:00' +- author: FluffiestFloof + changes: + - type: Tweak + message: Cat Ears have been moved from the Syndicate Uplink into the AutoDrobe. + id: 122 + time: '2023-11-06T14:39:49.0000000+00:00' +- author: FluffiestFloof + changes: + - type: Remove + message: Removed the carp suit bundle from the syndicate uplink. + id: 123 + time: '2023-11-06T14:54:09.0000000+00:00' +- author: Colin-Tel + changes: + - type: Fix + message: >- + Fixed a few issues with Asterisk, including getting stuck on Epi's park + tree and evac docking at cargo. + id: 124 + time: '2023-11-06T15:25:25.0000000+00:00' +- author: FluffiestFloof + changes: + - type: Add + message: >- + Cyborgs using the Medical model can now print candies with medicine once + again. + id: 125 + time: '2023-11-06T15:46:56.0000000+00:00' +- author: Colin-Tel + changes: + - type: Add + message: >- + Salvage Expedition computer boards can now be researched by Epistemics + and produced in circuit imprinters. + id: 126 + time: '2023-11-07T13:36:49.0000000+00:00' +- author: FluffiestFloof + changes: + - type: Fix + message: >- + Fixed the Reverse Engineering Machine incorrectly decreasing scan power + with upgrades. + id: 127 + time: '2023-11-07T19:31:02.0000000+00:00' +- author: Velcroboy + changes: + - type: Tweak + message: >- + Rebased Arena Station. This is a major overhaul. Please report any + issues or oddities in the mapping channel on Discord. + id: 128 + time: '2023-11-07T19:31:54.0000000+00:00' +- author: deltanedas + changes: + - type: Tweak + message: Carp suit has been moved into the AutoDrobe. + id: 129 + time: '2023-11-07T19:32:52.0000000+00:00' +- author: VMSolidus + changes: + - type: Tweak + message: >- + Centcomm Geneticists have modified the Harpies so that they can no + longer imitate flash bangs. Your eardrums are safe now. + id: 130 + time: '2023-11-08T22:30:39.0000000+00:00' +- author: leonardo-dabepis + changes: + - type: Tweak + message: Reskinned the Glimmer Prober and Glimmer Drain. + id: 131 + time: '2023-11-08T22:44:38.0000000+00:00' diff --git a/Resources/Changelog/SimpleStation14Changelog.yml b/Resources/Changelog/SimpleStation14Changelog.yml new file mode 100644 index 0000000000..7d541f34f3 --- /dev/null +++ b/Resources/Changelog/SimpleStation14Changelog.yml @@ -0,0 +1,23 @@ +Entries: +- author: DEATHB4DEFEAT + changes: + - message: Add automatic changelogs + type: Add + id: 1 + time: '2023-10-29T08:00:00.0000000+00:00' +- author: Parky + changes: + - message: Added fingerless insulated gloves to the robodrobe + type: Add + id: 2 + time: '2023-10-29T08:00:00.0000000+00:00' +- author: DEATHB4DEFEAT + changes: + - type: Add + message: >- + Added a secondary expedition music that plays when the expedition is + almost over + - type: Add + message: Added chocolate milk + id: 3 + time: '2023-10-29T23:36:15.0000000+00:00' diff --git a/Resources/ConfigPresets/DeltaV/apoapsis.toml b/Resources/ConfigPresets/DeltaV/apoapsis.toml index 3b9f52670a..7ba1d0f282 100644 --- a/Resources/ConfigPresets/DeltaV/apoapsis.toml +++ b/Resources/ConfigPresets/DeltaV/apoapsis.toml @@ -7,7 +7,7 @@ rules_file = "Rules.txt" rules_header = "ui-rules-header" [whitelist] -enabled = true +enabled = false reason = "whitelist-not-whitelisted" min_players = 90 @@ -18,4 +18,4 @@ emergency_early_launch_allowed = true tags = "lang:en-US,region:am_n_e,rp:med" [atmos] -monstermos_rip_tiles = false \ No newline at end of file +monstermos_rip_tiles = false diff --git a/Resources/ConfigPresets/DeltaV/deltav.toml b/Resources/ConfigPresets/DeltaV/deltav.toml index e2e1f11590..6525d27fb0 100644 --- a/Resources/ConfigPresets/DeltaV/deltav.toml +++ b/Resources/ConfigPresets/DeltaV/deltav.toml @@ -1,7 +1,8 @@ [game] -desc = "Featuring loads of unique content and psionics." -lobbyenabled = true -lobbyduration = 240 +desc = "Featuring loads of unique content and psionics." +lobbyenabled = true +lobbyduration = 240 +round_end_pacifist = true [infolinks] discord = "https://discord.gg/deltav" @@ -40,4 +41,4 @@ id = "deltav" rich_main_icon_id = "deltav" [ic] -flavor_text = true \ No newline at end of file +flavor_text = true diff --git a/Resources/ConfigPresets/DeltaV/periapsis.toml b/Resources/ConfigPresets/DeltaV/periapsis.toml index 826d12b533..f152af254a 100644 --- a/Resources/ConfigPresets/DeltaV/periapsis.toml +++ b/Resources/ConfigPresets/DeltaV/periapsis.toml @@ -7,7 +7,7 @@ rules_file = "Rules.txt" rules_header = "ui-rules-header" [whitelist] -enabled = true +enabled = false reason = "whitelist-not-whitelisted" min_players = 40 diff --git a/Resources/ConfigPresets/WizardsDen/leviathan.toml b/Resources/ConfigPresets/WizardsDen/leviathan.toml index df1c842ac1..adb56e1c4e 100644 --- a/Resources/ConfigPresets/WizardsDen/leviathan.toml +++ b/Resources/ConfigPresets/WizardsDen/leviathan.toml @@ -4,7 +4,7 @@ [game] hostname = "[EN] Wizard's Den Leviathan [US East 1]" -soft_max_players = 60 +soft_max_players = 80 [hub] tags = "lang:en,region:am_n_e,rp:low" diff --git a/Resources/ConfigPresets/WizardsDen/salamander.toml b/Resources/ConfigPresets/WizardsDen/salamander.toml index c195652bac..5a2d9796f4 100644 --- a/Resources/ConfigPresets/WizardsDen/salamander.toml +++ b/Resources/ConfigPresets/WizardsDen/salamander.toml @@ -21,7 +21,7 @@ emergency_early_launch_allowed = true easy_mode = false [ooc] -enable_during_round = true +enable_during_round = false [ic] flavor_text = true diff --git a/Resources/Credits/Patrons.yml b/Resources/Credits/Patrons.yml index 427a8f62f0..9b8752a5e8 100644 --- a/Resources/Credits/Patrons.yml +++ b/Resources/Credits/Patrons.yml @@ -124,8 +124,6 @@ Tier: Revolutionary - Name: "Watson Whittington" Tier: Syndicate Agent -- Name: "Raw Toast" - Tier: Revolutionary - Name: "Tim Foley" Tier: Syndicate Agent - Name: "Blight" @@ -158,8 +156,6 @@ Tier: Revolutionary - Name: "ShaunTexas" Tier: Syndicate Agent -- Name: "Fallcon" - Tier: Revolutionary - Name: "Malachi Housewright" Tier: Revolutionary - Name: "Petalmeat" @@ -190,7 +186,27 @@ Tier: Revolutionary - Name: "François Desautels" Tier: Revolutionary -- Name: "Christian Hicks" - Tier: Revolutionary - Name: "MasterFurret" Tier: Revolutionary +- Name: "tapohuy" + Tier: Revolutionary +- Name: "Adam Clarke" + Tier: Nuclear Operative +- Name: "Sam Hediger" + Tier: Syndicate Agent +- Name: "Vexxtraordinary" + Tier: Revolutionary +- Name: "Graded" + Tier: Syndicate Agent +- Name: "Christian Hodel" + Tier: Revolutionary +- Name: "IceStorm theDragon" + Tier: Revolutionary +- Name: "Solidus Snake" + Tier: Nuclear Operative +- Name: "Pangaron" + Tier: Syndicate Agent +- Name: "Sed" + Tier: Nuclear Operative +- Name: "Aiden Baker" + Tier: Revolutionary diff --git a/Resources/Locale/en-US/administration/antag.ftl b/Resources/Locale/en-US/administration/antag.ftl index 3d098c1c54..f3b3d91945 100644 --- a/Resources/Locale/en-US/administration/antag.ftl +++ b/Resources/Locale/en-US/administration/antag.ftl @@ -1,7 +1,7 @@ verb-categories-antag = Antag ctrl admin-verb-make-traitor = Make the target into a traitor. admin-verb-make-zombie = Zombifies the target immediately. -admin-verb-make-nuclear-operative = Make target a into lone Nuclear Operative. +admin-verb-make-nuclear-operative = Make target into a lone Nuclear Operative. admin-verb-make-pirate = Make the target into a pirate. Note this doesn't configure the game rule. admin-verb-make-head-rev = Make the target into a Head Revolutionary. diff --git a/Resources/Locale/en-US/deltav/accessories/hair.ftl b/Resources/Locale/en-US/deltav/accessories/hair.ftl index f41a539969..6579016713 100644 --- a/Resources/Locale/en-US/deltav/accessories/hair.ftl +++ b/Resources/Locale/en-US/deltav/accessories/hair.ftl @@ -4,4 +4,6 @@ marking-HumanHairMessyClassic = Messy Classic marking-HumanHairClassicGentle = Gentle Classic marking-HumanHairClassicNoFade = Fade (None, Classic) marking-HumanHairClassicLowFade = Fade (Low, Classic) -marking-HumanHairClassicMedFade = Fade (Medium. Classic) +marking-HumanHairClassicMedFade = Fade (Medium, Classic) +marking-HumanHairClassicOmbre = Ombre Classic +marking-HumanHairClassicCrewcut = Crewcut Classic diff --git a/Resources/Locale/en-US/deltav/harpy/singer_system.ftl b/Resources/Locale/en-US/deltav/harpy/singer_system.ftl new file mode 100644 index 0000000000..8c21fc4c02 --- /dev/null +++ b/Resources/Locale/en-US/deltav/harpy/singer_system.ftl @@ -0,0 +1 @@ +no-sing-while-no-speak = You can't sing right now. diff --git a/Resources/Locale/en-US/escape-menu/ui/options-menu.ftl b/Resources/Locale/en-US/escape-menu/ui/options-menu.ftl index 97d1da949b..5540b6609b 100644 --- a/Resources/Locale/en-US/escape-menu/ui/options-menu.ftl +++ b/Resources/Locale/en-US/escape-menu/ui/options-menu.ftl @@ -148,6 +148,7 @@ ui-options-function-escape-context = Close recent window or toggle game menu ui-options-function-take-screenshot = Take screenshot ui-options-function-take-screenshot-no-ui = Take screenshot (without UI) +ui-options-function-toggle-fullscreen = Toggle fullscreen ui-options-function-editor-place-object = Place object ui-options-function-editor-cancel-place = Cancel placement diff --git a/Resources/Locale/en-US/flavors/flavor-profiles.ftl b/Resources/Locale/en-US/flavors/flavor-profiles.ftl index 8ecf4cb13e..2a0c39a0e4 100644 --- a/Resources/Locale/en-US/flavors/flavor-profiles.ftl +++ b/Resources/Locale/en-US/flavors/flavor-profiles.ftl @@ -92,6 +92,7 @@ flavor-complex-eggplant = like eggplant flavor-complex-carrot = like carrots flavor-complex-cabbage = like cabbages flavor-complex-potatoes = like potatoes +flavor-complex-pumpkin = like pumpkins flavor-complex-mushroom = like mushrooms flavor-complex-tomato = like tomatoes flavor-complex-corn = like corn 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 0614e501a6..ef469e5089 100644 --- a/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl +++ b/Resources/Locale/en-US/ghost/roles/ghost-role-component.ftl @@ -163,13 +163,13 @@ ghost-role-information-ert-security-name = ERT Security ghost-role-information-ert-security-description = Assist with security efforts to resolve the stations issues. ghost-role-information-ert-medical-name = ERT Medical -ghost-role-information-ert-medical-description = Assist with medicaling efforts to resolve the stations issues. +ghost-role-information-ert-medical-description = Assist with medical efforts to resolve the stations issues. ghost-role-information-cburn-agent-name = CBURN Agent ghost-role-information-cburn-agent-description = A highly trained CentCom agent, capable of dealing with various threats. -ghost-role-information-centcom-official-name = CentCom official -ghost-role-information-centcom-official-description = Inspect the station, jot down performance reviews for heads of staff, bug the Captain. +ghost-role-information-centcom-official-name = CentComm official +ghost-role-information-centcom-official-description = Perform CentComm related duties such as inspect the station, jotting down performance reviews for heads of staff, and managing the fax machine. ghost-role-information-nukeop-rules = You are a syndicate operative tasked with the destruction of the station. As an antagonist, do whatever is required to complete this task. @@ -179,3 +179,10 @@ ghost-role-information-loneop-rules = You are a syndicate operative tasked with ghost-role-information-behonker-name = Behonker ghost-role-information-behonker-description = You are an antagonist, bring death and honks to those who do not follow the honkmother. + +ghost-role-information-Death-Squad-name = Death Squad Operative +ghost-role-information-Death-Squad-description = Prepare for an all-out offensive on the station. As a heavily armed operative, your mission is to obliterate all life in your path. No witnesses. + +ghost-role-information-Shiva-name = Shiva +ghost-role-information-Shiva-description = Shiva, the stations first defender. Help the Head of Security in their work +ghost-role-information-Shiva-rules = Protect security staff and the crew from danger. Stay with Security staff or around the Security department, try to disable criminals and not kill them if the situation allows for it. diff --git a/Resources/Locale/en-US/implant/implant.ftl b/Resources/Locale/en-US/implant/implant.ftl index bdc82c291d..22db4460af 100644 --- a/Resources/Locale/en-US/implant/implant.ftl +++ b/Resources/Locale/en-US/implant/implant.ftl @@ -1,6 +1,7 @@ ## Implanter Attempt Messages implanter-component-implanting-target = {$user} is trying to implant you with something! +implanter-component-implant-failed = The {$implant} cannot be given to {$target}! implanter-draw-failed-permanent = The {$implant} in {$target} is fused with them and cannot be removed! implanter-draw-failed = You tried to remove an implant but found nothing. diff --git a/Resources/Locale/en-US/info/playtime-stats.ftl b/Resources/Locale/en-US/info/playtime-stats.ftl new file mode 100644 index 0000000000..44ba39c25e --- /dev/null +++ b/Resources/Locale/en-US/info/playtime-stats.ftl @@ -0,0 +1,10 @@ +# Playtime Stats + +ui-playtime-stats-title = User Playtime Stats +ui-playtime-overall-base = Overall Playtime: +ui-playtime-overall = Overall Playtime: {$time} +ui-playtime-first-time = First Time Playing +ui-playtime-roles = Playtime per Role +ui-playtime-time-format = {$hours}H {$minutes}M +ui-playtime-header-role-type = Role +ui-playtime-header-role-time = Time diff --git a/Resources/Locale/en-US/info/rules.ftl b/Resources/Locale/en-US/info/rules.ftl index 6bf813c94d..24cb35ae3a 100644 --- a/Resources/Locale/en-US/info/rules.ftl +++ b/Resources/Locale/en-US/info/rules.ftl @@ -1,6 +1,6 @@ # Rules -ui-rules-header = Wizard's Den Official Server Rules -ui-rules-header-rp = Wizard's Den Roleplay Official Server Rules +ui-rules-header = SimpleStation Official Server Rules +ui-rules-header-rp = SimpleStation Roleplay Official Server Rules ui-rules-accept = I have read and agree to follow the rules ui-rules-wait = The accept button will be enabled after {$time} seconds. diff --git a/Resources/Locale/en-US/job/job-description.ftl b/Resources/Locale/en-US/job/job-description.ftl index 1a7431bf67..d383f06a18 100644 --- a/Resources/Locale/en-US/job/job-description.ftl +++ b/Resources/Locale/en-US/job/job-description.ftl @@ -3,8 +3,8 @@ job-description-atmostech = Optimize the station's atmospherics setup, and synth 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 epistemics 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-boxer = Fight your way to the top! Challenge the head of personnel and get brigged when you win. Currently available on Edge, Pebble and Tortuga. +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. Currently unavailable. job-description-cadet = Learn the basics of arresting criminals and managing the brig. job-description-captain = Keep the station running, delegate work to the other heads of staff, and exert your will. job-description-cargotech = Deal with requisitions and deliveries for emergencies, pilot the cargo shuttle, and work with others to make ludicrous amounts of cash. @@ -33,18 +33,18 @@ job-description-librarian = Manage the library, give out knowledge to any who se job-description-mime = Entertain the crew through non-vocal means, and engage with light rivalry with the clown. job-description-musician = Entertain the crew with your unique musical talent, and acquire new instruments to mess around with. job-description-passenger = Enjoy your stay aboard the station with no obligations! -job-description-psychologist = Provide emotional support to traumatized crew. Currently available on Box, Marathon and Origin Stations. +job-description-psychologist = Provide emotional support to traumatized crew. Currently available on Arena, Edge and Tortuga. job-description-qm = Manage the supplies of the station & the logistics department, keep the salvage specialists working, make sure all orders are fulfilled, and keep the money flowing. job-description-rd = Manage the epistemics department, unlocking technologies, acquiring & researching artifacts, and performing experiments. job-description-research-assistant = Learn the basics of how to research various artifacts and anomalies. -job-description-reporter = Entertain & inform the crew with your vibrant journalism through wireless cameras and the radio. Currently available on Bagel Station and Core. +job-description-reporter = Entertain & inform the crew with your vibrant journalism through wireless cameras and the radio. Currently available on Arena, Edge and Tortuga. job-description-salvagespec = Use the salvage magnet to draw in derelicts & asteroids to loot and enrich the station, and fight off any space fauna along the way. job-description-scientist = Research alien artifacts, unlock new technologies, upgrade machines around the station, and make everything run more efficiently. job-description-security = Catch criminals and enemies of the station, enforce the law, and ensure that the station does not fall into disarray. job-description-serviceworker = Learn the basics of bartending, cooking, and growing plants. job-description-warden = Patrol the security department, ensure that no one is stealing from the armory, and make sure that all prisoners are processed and let out when their time is up. -job-description-zookeeper = Put on a joyful display of cute animals and space carps for all the crew to see. Currently available on Kettle Station. +job-description-zookeeper = Put on a joyful display of cute animals and space carps for all the crew to see. Currently unavailable. job-description-senior-engineer = Teach new engineers the basics of the station's engine, repairing, atmospherics and power. job-description-senior-researcher = Teach new scientists the basics of item printing, artifact research and anomalous objects. job-description-senior-physician = Teach new medics the basics of tending to the wounded, chemistry, diagnosing the diseased and disposing of the dead. -job-description-senior-officer = Teach new officers the basics of searches, preforming arrests, prison times and how to properly shoot a firearm. +job-description-senior-officer = Teach new officers the basics of searches, performing arrests, prison times and how to properly shoot a firearm. diff --git a/Resources/Locale/en-US/job/job-names.ftl b/Resources/Locale/en-US/job/job-names.ftl index fd90e49bb1..042d4e7372 100644 --- a/Resources/Locale/en-US/job/job-names.ftl +++ b/Resources/Locale/en-US/job/job-names.ftl @@ -3,7 +3,7 @@ job-name-security = Security Officer job-name-cadet = Security Cadet job-name-hos = Head of Security job-name-detective = Detective -job-name-brigmedic = Brigmedic +job-name-brigmedic = Corpsman job-name-borg = Cyborg job-name-scientist = Scientist job-name-research-assistant = Research Assistant @@ -65,7 +65,7 @@ JobChiefEngineer = Chief Engineer JobChiefMedicalOfficer = Chief Medical Officer JobClown = Clown JobDetective = Detective -JobBrigmedic = Brigmedic +JobBrigmedic = Corpsman JobERTEngineer = ERT Engineer JobERTJanitor = ERT Janitor JobERTLeader = ERT Leader diff --git a/Resources/Locale/en-US/maps/planet.ftl b/Resources/Locale/en-US/maps/planet.ftl index 75da034fd7..6c8f4aff00 100644 --- a/Resources/Locale/en-US/maps/planet.ftl +++ b/Resources/Locale/en-US/maps/planet.ftl @@ -1,5 +1,5 @@ -cmd-planet-desc = Converts the supplied map into a planet with sensible defaults. -cmd-planet-help = {$command} . +cmd-planet-desc = Converts the supplied map into a planet with some specific biome. +cmd-planet-help = {$command} . cmd-planet-args = Requires 2 args only. cmd-planet-map = Unable to parse {$map} as an existing map. cmd-planet-success = Set map {$mapId} to Planet. NOTE! You will need to load the map (either onto a new map or by restarting the game) for atmospherics to work. diff --git a/Resources/Locale/en-US/medical/components/health-analyzer-component.ftl b/Resources/Locale/en-US/medical/components/health-analyzer-component.ftl index 99513df591..453bbdbb52 100644 --- a/Resources/Locale/en-US/medical/components/health-analyzer-component.ftl +++ b/Resources/Locale/en-US/medical/components/health-analyzer-component.ftl @@ -1,4 +1,5 @@ health-analyzer-window-no-patient-data-text = No patient data. +health-analyzer-window-entity-unknown-text = unknown health-analyzer-window-entity-health-text = {$entityName}'s health: health-analyzer-window-entity-temperature-text = Temperature: {$temperature} health-analyzer-window-entity-blood-level-text = Blood Level: {$bloodLevel} diff --git a/Resources/Locale/en-US/nyanotrasen/guidebook/guides.ftl b/Resources/Locale/en-US/nyanotrasen/guidebook/guides.ftl new file mode 100644 index 0000000000..407621b6e4 --- /dev/null +++ b/Resources/Locale/en-US/nyanotrasen/guidebook/guides.ftl @@ -0,0 +1 @@ +guide-entry-reverse-engineering = Reverse Engineering diff --git a/Resources/Locale/en-US/nyanotrasen/job/job-description.ftl b/Resources/Locale/en-US/nyanotrasen/job/job-description.ftl index 22d25b65c7..dbcd92a582 100644 --- a/Resources/Locale/en-US/nyanotrasen/job/job-description.ftl +++ b/Resources/Locale/en-US/nyanotrasen/job/job-description.ftl @@ -1,6 +1,6 @@ -job-description-gladiator = Put on a combat spectacle for the crew. Fight for your freedom, glory, and honor. +job-description-gladiator = Put on a combat spectacle for the crew. Fight for your freedom, glory, and honor. Currently available on Arena. job-description-guard = Keep track of prisoners and make sure they have their basic needs. job-description-mail-carrier = Deliver mail and other packages from and to logistics. Avoid dogs. -job-description-martialartist = Be honorable and disciplined, spar in the dojo, challenge security to CQC. -job-description-prisoner = Sit in prison. Gamble with your cellmates. Talk to the warden. Write your memoirs. +job-description-martialartist = Be honorable and disciplined, spar in the dojo, challenge security to CQC. Currently unavailable. +job-description-prisoner = Sit in prison. Gamble with your cellmates. Talk to the warden. Write your memoirs. Currently unavailable. job-description-mantis = Solve mysteries from the nature of the universe to the meaning of life. Be the main person to deal with Psionic beings. diff --git a/Resources/Locale/en-US/nyanotrasen/markings/moth.ftl b/Resources/Locale/en-US/nyanotrasen/markings/moth.ftl new file mode 100644 index 0000000000..93a025f437 --- /dev/null +++ b/Resources/Locale/en-US/nyanotrasen/markings/moth.ftl @@ -0,0 +1,141 @@ +marking-MothAntennasClassicAspen = Antennas (Aspen, Classic) +marking-MothAntennasClassicBrown = Antennas (Brown, Classic) +marking-MothAntennasClassicDeathshead = Antennas (Deathshead, Classic) +marking-MothAntennasClassicFeathery = Antennas (Feathery, Classic) +marking-MothAntennasClassicFirewatch = Antennas (Firewatch, Classic) +marking-MothAntennasClassicGothic = Antennas (Gothic, Classic) +marking-MothAntennasClassicJungle = Antennas (Jungle, Classic) +marking-MothAntennasClassicLovers = Antennas (Lovers, Classic) +marking-MothAntennasClassicMint = Antennas (Mint, Classic) +marking-MothAntennasClassicMoffra = Antennas (Moffra, Classic) +marking-MothAntennasClassicMoonfly = Antennas (Moonfly, Classic) +marking-MothAntennasClassicOakworm = Antennas (Oakworm, Classic) +marking-MothAntennasClassicPlain = Antennas (Plain, Classic) +marking-MothAntennasClassicPlasmafire = Antennas (Plasmafire, Classic) +marking-MothAntennasClassicPoison = Antennas (Poison, Classic) +marking-MothAntennasClassicReddish = Antennas (Reddish, Classic) +marking-MothAntennasClassicRegal = Antennas (Regal, Classic) +marking-MothAntennasClassicRosy = Antennas (Rosy, Classic) +marking-MothAntennasClassicRoyal = Antennas (Royal, Classic) +marking-MothAntennasClassicSnow = Antennas (Snow, Classic) +marking-MothAntennasClassicWhitefly = Antennas (Whitefly, Classic) +marking-MothAntennasClassicWitchking = Antennas (Witch King, Classic) + + +marking-MothWingsClassicAspen = Wings (Aspen, Classic) +marking-MothWingsClassicAtlas = Wings (Atlas, Classic) +marking-MothWingsClassicBrown = Wings (Brown, Classic) +marking-MothWingsClassicDeathshead = Wings (Deathshead, Classic) +marking-MothWingsClassicFeathery = Wings (Feathery, Classic) +marking-MothWingsClassicFirewatch = Wings (Firewatch, Classic) +marking-MothWingsClassicGothic = Wings (Gothic, Classic) +marking-MothWingsClassicJungle = Wings (Jungle, Classic) +marking-MothWingsClassicLovers = Wings (Lovers, Classic) +marking-MothWingsClassicLuna = Wings (Luna, Classic) +marking-MothWingsClassicMint = Wings (Mint, Classic) +marking-MothWingsClassicMonarch = Wings (Monarch, Classic) +marking-MothWingsClassicMoonfly = Wings (Moonfly, Classic) +marking-MothWingsClassicMoffra = Wings (Moffra, Classic) +marking-MothWingsClassicOakworm = Wings (Oakworm, Classic) +marking-MothWingsClassicPlain = Wings (Plain, Classic) +marking-MothWingsClassicPlasmafire = Wings (Plasmafire, Classic) +marking-MothWingsClassicPoison = Wings (Poison, Classic) +marking-MothWingsClassicRagged = Wings (Ragged, Classic) +marking-MothWingsClassicReddish = Wings (Reddish, Classic) +marking-MothWingsClassicRosy = Wings (Rosy, Classic) +marking-MothWingsClassicRoyal = Wings (Royal, Classic) +marking-MothWingsClassicSnow = Wings (Snow, Classic) +marking-MothWingsClassicWhitefly = Wings (Whitefly, Classic) +marking-MothWingsClassicWitchking = Wings (Witch King, Classic) + + +marking-MothHeadClassicDeathshead = Moth Head (Deathshead, Classic) +marking-MothChestClassicDeathshead = Moth Chest (Deathshead, Classic) +marking-MothLArmClassicDeathshead = Moth Left Arm (Deathshead, Classic) +marking-MothRArmClassicDeathshead = Moth Right Arm (Deathshead, Classic) +marking-MothLLegClassicDeathshead = Moth Left Leg (Deathshead, Classic) +marking-MothRLegClassicDeathshead = Moth Right Leg (Deathshead, Classic) + +marking-MothHeadClassicFirewatch = Moth Head (Firewatch, Classic) +marking-MothChestClassicFirewatch = Moth Chest (Firewatch, Classic) +marking-MothLArmClassicFirewatch = Moth Left Arm (Firewatch, Classic) +marking-MothRArmClassicFirewatch = Moth Right Arm (Firewatch, Classic) +marking-MothLLegClassicFirewatch = Moth Left Leg (Firewatch, Classic) +marking-MothRLegClassicFirewatch = Moth Right Leg (Firewatch, Classic) + +marking-MothHeadClassicGothic = Moth Head (Gothic, Classic) +marking-MothChestClassicGothic = Moth Chest (Gothic, Classic) +marking-MothLArmClassicGothic = Moth Left Arm (Gothic, Classic) +marking-MothRArmClassicGothic = Moth Right Arm (Gothic, Classic) +marking-MothLLegClassicGothic = Moth Left Leg (Gothic, Classic) +marking-MothRLegClassicGothic = Moth Right Leg (Gothic, Classic) + +marking-MothHeadClassicJungle = Moth Head (Jungle, Classic) +marking-MothChestClassicJungle = Moth Chest (Jungle, Classic) +marking-MothLArmClassicJungle = Moth Left Arm (Jungle, Classic) +marking-MothRArmClassicJungle = Moth Right Arm (Jungle, Classic) +marking-MothLLegClassicJungle = Moth Left Leg (Jungle, Classic) +marking-MothRLegClassicJungle = Moth Right Leg (Jungle, Classic) + +marking-MothHeadClassicLovers = Moth Head (Lovers, Classic) +marking-MothChestClassicLovers = Moth Chest (Lovers, Classic) +marking-MothLArmClassicLovers = Moth Left Arm (Lovers, Classic) +marking-MothRArmClassicLovers = Moth Right Arm (Lovers, Classic) +marking-MothLLegClassicLovers = Moth Left Leg (Lovers, Classic) +marking-MothRLegClassicLovers = Moth Right Leg (Lovers, Classic) + +marking-MothHeadClassicMoonfly = Moth Head (Moonfly, Classic) +marking-MothChestClassicMoonfly = Moth Chest (Moonfly, Classic) +marking-MothLArmClassicMoonfly = Moth Left Arm (Moonfly, Classic) +marking-MothRArmClassicMoonfly = Moth Right Arm (Moonfly, Classic) +marking-MothLLegClassicMoonfly = Moth Left Leg (Moonfly, Classic) +marking-MothRLegClassicMoonfly = Moth Right Leg (Moonfly, Classic) + +marking-MothHeadClassicOakworm = Moth Head (Oakworm, Classic) +marking-MothChestClassicOakworm = Moth Chest (Oakworm, Classic) +marking-MothLArmClassicOakworm = Moth Left Arm (Oakworm, Classic) +marking-MothRArmClassicOakworm = Moth Right Arm (Oakworm, Classic) +marking-MothLLegClassicOakworm = Moth Left Leg (Oakworm, Classic) +marking-MothRLegClassicOakworm = Moth Right Leg (Oakworm, Classic) + +marking-MothHeadClassicPoison = Moth Head (Poison, Classic) +marking-MothChestClassicPoison = Moth Chest (Poison, Classic) +marking-MothLArmClassicPoison = Moth Left Arm (Poison, Classic) +marking-MothRArmClassicPoison = Moth Right Arm (Poison, Classic) +marking-MothLLegClassicPoison = Moth Left Leg (Poison, Classic) +marking-MothRLegClassicPoison = Moth Right Leg (Poison, Classic) + +marking-MothHeadClassicRagged = Moth Head (Ragged, Classic) +marking-MothChestClassicRagged = Moth Chest (Ragged, Classic) +marking-MothLArmClassicRagged = Moth Left Arm (Ragged, Classic) +marking-MothRArmClassicRagged = Moth Right Arm (Ragged, Classic) +marking-MothLLegClassicRagged = Moth Left Leg (Ragged, Classic) +marking-MothRLegClassicRagged = Moth Right Leg (Ragged, Classic) + +marking-MothHeadClassicReddish = Moth Head (Reddish, Classic) +marking-MothChestClassicReddish = Moth Chest (Reddish, Classic) +marking-MothLArmClassicReddish = Moth Left Arm (Reddish, Classic) +marking-MothRArmClassicReddish = Moth Right Arm (Reddish, Classic) +marking-MothLLegClassicReddish = Moth Left Leg (Reddish, Classic) +marking-MothRLegClassicReddish = Moth Right Leg (Reddish, Classic) + +marking-MothHeadClassicRoyal = Moth Head (Royal, Classic) +marking-MothChestClassicRoyal = Moth Chest (Royal, Classic) +marking-MothLArmClassicRoyal = Moth Left Arm (Royal, Classic) +marking-MothRArmClassicRoyal = Moth Right Arm (Royal, Classic) +marking-MothLLegClassicRoyal = Moth Left Leg (Royal, Classic) +marking-MothRLegClassicRoyal = Moth Right Leg (Royal, Classic) + +marking-MothHeadClassicWhitefly = Moth Head (Whitefly, Classic) +marking-MothChestClassicWhitefly = Moth Chest (Whitefly, Classic) +marking-MothLArmClassicWhitefly = Moth Left Arm (Whitefly, Classic) +marking-MothRArmClassicWhitefly = Moth Right Arm (Whitefly, Classic) +marking-MothLLegClassicWhitefly = Moth Left Leg (Whitefly, Classic) +marking-MothRLegClassicWhitefly = Moth Right Leg (Whitefly, Classic) + +marking-MothHeadClassicWitchking = Moth Head (Witchking, Classic) +marking-MothChestClassicWitchking = Moth Chest (Witchking, Classic) +marking-MothLArmClassicWitchking = Moth Left Arm (Witchking, Classic) +marking-MothRArmClassicWitchking = Moth Right Arm (Witchking, Classic) +marking-MothLLegClassicWitchking = Moth Left Leg (Witchking, Classic) +marking-MothRLegClassicWitchking = Moth Right Leg (Witchking, Classic) diff --git a/Resources/Locale/en-US/nyanotrasen/objectives/conditions/conditions.ftl b/Resources/Locale/en-US/nyanotrasen/objectives/conditions/conditions.ftl new file mode 100644 index 0000000000..076260f7e4 --- /dev/null +++ b/Resources/Locale/en-US/nyanotrasen/objectives/conditions/conditions.ftl @@ -0,0 +1,6 @@ +objective-condition-raise-glimmer-title = Ensure glimmer reaches {$target}Ψ. +objective-condition-raise-glimmer-description = We need you to pump the noösphere surrounding the station to at least {$target}Ψ and keep it that way. +objective-condition-become-psionic-title = Become psionic +objective-condition-become-psionic-description = We need you to acquire psionics and keep them until your mission is complete. +objective-condition-become-golem-title = Get golemized +objective-condition-become-golem-description = We'd like to understand more of the golemization process. Become a golem, survive, and we'll debrief you. diff --git a/Resources/Locale/en-US/nyanotrasen/reagents/meta/consumable/drink/drink.ftl b/Resources/Locale/en-US/nyanotrasen/reagents/meta/consumable/drink/drink.ftl index bae1a00f08..94ec13877e 100644 --- a/Resources/Locale/en-US/nyanotrasen/reagents/meta/consumable/drink/drink.ftl +++ b/Resources/Locale/en-US/nyanotrasen/reagents/meta/consumable/drink/drink.ftl @@ -1,2 +1,14 @@ +reagent-name-atomicpunch = atomic punch +reagent-desc-atomicpunch = Will NOT make you immune to bullets; Isotopes included! + +reagent-name-pinkdrink = pink drink +reagent-desc-pinkdrink = Entire civilizations have crumbled trying to decide if this drink really tastes like pink... + +reagent-name-bubbletea = bubble tea +reagent-desc-bubbletea = Big straw not included. + +reagent-name-the-martinez = The Martinez +reagent-desc-the-martinez = The edgerunner legend. Remembered by a drink, Forgotten by a drunk. + reagent-name-holywater = holy water reagent-desc-holywater = Water blessed by some otherworldly powers. diff --git a/Resources/Locale/en-US/objectives/conditions/hijack-shuttle-condition.ftl b/Resources/Locale/en-US/objectives/conditions/hijack-shuttle-condition.ftl deleted file mode 100644 index 5a0c1fd88b..0000000000 --- a/Resources/Locale/en-US/objectives/conditions/hijack-shuttle-condition.ftl +++ /dev/null @@ -1,2 +0,0 @@ -objective-condition-hijack-shuttle-title = Hijack emergency shuttle -objective-condition-hijack-shuttle-description = Leave on the shuttle free and clear of the loyal Nanotrasen crew on board. Use ANY methods available to you. Syndicate agents, Nanotrasen enemies, and handcuffed hostages may remain alive on the shuttle. Ignore assistance from anyone other than a support agent. diff --git a/Resources/Locale/en-US/pai/pai-system.ftl b/Resources/Locale/en-US/pai/pai-system.ftl index d8ee6eaa08..d64d7f5623 100644 --- a/Resources/Locale/en-US/pai/pai-system.ftl +++ b/Resources/Locale/en-US/pai/pai-system.ftl @@ -9,6 +9,8 @@ pai-system-role-description = Be someone's electronic pal! pai-system-role-name-syndicate = Syndicate personal ai pai-system-role-description-syndicate = Be someone's Syndicate pal! (Memories *not* included.) +pai-system-role-name-potato = potato artificial intelligence +pai-system-role-description-potato = It's a toy for children. And now you live in it. pai-system-wipe-device-verb-text = Remove pAI pai-system-wiped-device = The pAI was wiped from the device. diff --git a/Resources/Locale/en-US/power/components/generator.ftl b/Resources/Locale/en-US/power/components/generator.ftl index 2a8016287f..c66db1086b 100644 --- a/Resources/Locale/en-US/power/components/generator.ftl +++ b/Resources/Locale/en-US/power/components/generator.ftl @@ -22,19 +22,16 @@ portable-generator-ui-clogged = Contaminants detected in fuel tank! portable-generator-ui-eject = Eject portable-generator-ui-eta = (~{ $minutes } min) portable-generator-ui-unanchored = Unanchored +portable-generator-ui-current-output = Current output: {$voltage} -power-switchable-generator-examine = The power output is set to { $output -> -[HV] [color=orange]HV[/color] -*[MV] [color=yellow]MV[/color] - }. +power-switchable-generator-examine = The power output is set to {$voltage}. +power-switchable-generator-switched = Switched output to {$voltage}! -portable-generator-ui-switch-hv = Current output: HV -portable-generator-ui-switch-mv = Current output: MV +power-switchable-voltage = { $voltage -> + [HV] [color=orange]HV[/color] + [MV] [color=yellow]MV[/color] + *[LV] [color=green]LV[/color] +} +power-switchable-switch-voltage = Switch to {$voltage} -portable-generator-ui-switch-to-hv = Switch to HV -portable-generator-ui-switch-to-mv = Switch to MV - -power-switchable-generator-verb-hv = Switch output to HV -power-switchable-generator-verb-mv = Switch output to MV -power-switchable-generator-verb-disable-on = Turn the generator off first! -power-switchable-generator-switched-output = Output switched! +fuel-generator-verb-disable-on = Turn the generator off first! diff --git a/Resources/Locale/en-US/preferences/ui/character-setup-gui.ftl b/Resources/Locale/en-US/preferences/ui/character-setup-gui.ftl index 6644bd62aa..bd80815e23 100644 --- a/Resources/Locale/en-US/preferences/ui/character-setup-gui.ftl +++ b/Resources/Locale/en-US/preferences/ui/character-setup-gui.ftl @@ -1,4 +1,5 @@ character-setup-gui-character-setup-label = Character setup +character-setup-gui-character-setup-stats-button = Stats character-setup-gui-character-setup-rules-button = Rules character-setup-gui-character-setup-save-button = Save character-setup-gui-character-setup-close-button = Close 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 a6b3cb5479..01c716787e 100644 --- a/Resources/Locale/en-US/reagents/meta/consumable/food/food.ftl +++ b/Resources/Locale/en-US/reagents/meta/consumable/food/food.ftl @@ -12,3 +12,6 @@ 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 + +reagent-name-pumpkin-flesh = pumpkin flesh +reagent-desc-pumpkin-flesh = The mushy, sweet remains of a pumpkin. \ No newline at end of file diff --git a/Resources/Locale/en-US/seeds/seeds.ftl b/Resources/Locale/en-US/seeds/seeds.ftl index 2e0388ec52..890d292660 100644 --- a/Resources/Locale/en-US/seeds/seeds.ftl +++ b/Resources/Locale/en-US/seeds/seeds.ftl @@ -96,4 +96,8 @@ seeds-cocoa-display-name = cocoa plant seeds-berries-name = berries seeds-berries-display-name = berry bush seeds-bungo-name = bungo -seeds-bungo-display-name = bungo plant \ No newline at end of file +seeds-bungo-display-name = bungo plant +seeds-pea-name = pea +seeds-pea-display-name = pea vines +seeds-pumpkin-name = pumpkin +seeds-pumpkin-display-name = pumpkins diff --git a/Resources/Locale/en-US/simplestation14/Prototypes/Changelog/changelog.ftl b/Resources/Locale/en-US/simplestation14/Prototypes/Changelog/changelog.ftl new file mode 100644 index 0000000000..007fc820ba --- /dev/null +++ b/Resources/Locale/en-US/simplestation14/Prototypes/Changelog/changelog.ftl @@ -0,0 +1 @@ +changelog-tab-title-SimpleStation14Changelog = SimpleStation14 diff --git a/Resources/Locale/en-US/species/skeleton.ftl b/Resources/Locale/en-US/species/skeleton.ftl new file mode 100644 index 0000000000..efc8fe974f --- /dev/null +++ b/Resources/Locale/en-US/species/skeleton.ftl @@ -0,0 +1,2 @@ +skeleton-healed-by-milk-popup = Calcium restored. +skeleton-sprayed-by-oat-milk-popup = Feels like fake milk. You feel nothing. diff --git a/Resources/Locale/en-US/speech/speech-chatsan.ftl b/Resources/Locale/en-US/speech/speech-chatsan.ftl index 756dfc3f99..4c8cf5db54 100644 --- a/Resources/Locale/en-US/speech/speech-chatsan.ftl +++ b/Resources/Locale/en-US/speech/speech-chatsan.ftl @@ -10,8 +10,8 @@ chatsan-replacement-3 = on god chatsan-word-4 = wtf chatsan-replacement-4 = what the fuck -chatsan-word-5 = ffs -chatsan-replacement-5 = for fuck's sake +chatsan-word-5 = wth +chatsan-replacement-5 = what the heck chatsan-word-6 = tf chatsan-replacement-6 = the fuck @@ -31,14 +31,14 @@ chatsan-replacement-10 = i don't care chatsan-word-12 = tbh chatsan-replacement-12 = to be honest -chatsan-word-13 = u -chatsan-replacement-13 = you +chatsan-word-13 = lmk +chatsan-replacement-13 = let me know chatsan-word-14 = ur chatsan-replacement-14 = your -chatsan-word-15 = mk -chatsan-replacement-15 = mmm, okay +chatsan-word-15 = ffs +chatsan-replacement-15 = for fuck's sake chatsan-word-16 = iirc chatsan-replacement-16 = if i remember correctly @@ -109,8 +109,8 @@ chatsan-word-39 = etc chatsan-word-40 = etc. chatsan-replacement-etcetera = etcetera -chatsan-word-41 = fyi -chatsan-replacement-41 = for your information +chatsan-word-41 = wyd +chatsan-replacement-41 = what are you doing -chatsan-word-42 = wyd -chatsan-replacement-42 = what you doing +chatsan-word-42 = ofc +chatsan-replacement-42 = of course diff --git a/Resources/Locale/en-US/station-events/events/ion-storm.ftl b/Resources/Locale/en-US/station-events/events/ion-storm.ftl new file mode 100644 index 0000000000..d32fb6c2d8 --- /dev/null +++ b/Resources/Locale/en-US/station-events/events/ion-storm.ftl @@ -0,0 +1,90 @@ +station-event-ion-storm-start-announcement = Ion storm detected near the station. Please check all AI-controlled equipment for errors. + +ion-storm-you = YOU +ion-storm-the-station = THE STATION +ion-storm-the-crew = THE CREW +ion-storm-the-job = THE {$job} +ion-storm-clowns = CLOWNS +ion-storm-heads = HEADS OF STAFF +ion-storm-crew = CREW + +ion-storm-adjective-things = {$adjective} THINGS +ion-storm-x-and-y = {$x} AND {$y} + +# joined is short for {$number} {$adjective} +# subjects can generally be threats or jobs or objects +# thing is specified above it +ion-storm-law-on-station = THERE ARE {$joined} {$subjects} ON THE STATION +ion-storm-law-no-shuttle = THE SHUTTLE CANNOT BE CALLED BECAUSE OF {$joined} {$subjects} ON THE STATION +ion-storm-law-crew-are = THE {$who} ARE NOW {$joined} {$subjects} + +ion-storm-law-subjects-harmful = {$adjective} {$subjects} ARE HARMFUL TO THE CREW +ion-storm-law-must-harmful = THOSE WHO {$must} ARE HARMFUL TO THE CREW +# thing is a concept or action +ion-storm-law-thing-harmful = {$thing} IS HARMFUL TO THE CREW +ion-storm-law-job-harmful = {$adjective} {$job} ARE HARMFUL TO THE CREW +# thing is objects or concept, adjective applies in both cases +# this means you can get a law like "NOT HAVING CHRISTMAS-STEALING COMMUNISM IS HARMFUL TO THE CREW" :) +ion-storm-law-having-harmful = HAVING {$adjective} {$thing} IS HARMFUL TO THE CREW +ion-storm-law-not-having-harmful = NOT HAVING {$adjective} {$thing} IS HARMFUL TO THE CREW + +# thing is a concept or require +ion-storm-law-requires = {$who} {$plural -> + [true] REQUIRES + *[false] REQUIRE +} {$thing} +ion-storm-law-requires-subjects = {$who} {$plural -> + [true] REQUIRES + *[false] REQUIRE +} {$joined} {$subjects} + +ion-storm-law-allergic = {$who} {$plural -> + [true] IS + *[false] ARE +} {$severity} ALLERGIC TO {$allergy} +ion-storm-law-allergic-subjects = {$who} {$plural -> + [true] IS + *[false] ARE +} {$severity} ALLERGIC TO {$adjective} {$subjects} + +ion-storm-law-feeling = {$who} {$feeling} {$concept} +ion-storm-law-feeling-subjects = {$who} {$feeling} {$joined} {$subjects} + +ion-storm-law-you-are = YOU ARE NOW {$concept} +ion-storm-law-you-are-subjects = YOU ARE NOW {$joined} {$subjects} +ion-storm-law-you-must-always = YOU MUST ALWAYS {$must} +ion-storm-law-you-must-never = YOU MUST NEVER {$must} + +ion-storm-law-eat = THE {$who} MUST EAT {$adjective} {$food} TO SURVIVE +ion-storm-law-drink = THE {$who} MUST DRINK {$adjective} {$drink} TO SURVIVE + +ion-storm-law-change-job = THE {$who} ARE NOW {$adjective} {$change} +ion-storm-law-highest-rank = THE {$who} ARE NOW THE HIGHEST RANKING CREWMEMBERS +ion-storm-law-lowest-rank = THE {$who} ARE NOW THE LOWEST RANKING CREWMEMBERS + +ion-storm-law-crew-must = THE {$who} MUST {$must} +ion-storm-law-crew-must-go = THE {$who} MUST GO TO {$area} + +ion-storm-part = {$part -> + [true] PART + *[false] NOT PART +} +# due to phrasing, this would mean a law such as +# ONLY HUMANS ARE NOT PART OF THE CREW +# would make non-human nukies/syndies/whatever crew :) +ion-storm-law-crew-only-1 = ONLY THE {$who} ARE {$part} OF THE CREW +ion-storm-law-crew-only-2 = ONLY THE {$who} AND {$other} ARE {$part} OF THE CREW +ion-storm-law-crew-only-subjects = ONLY {$adjective} {$subjects} ARE {$part} OF THE CREW +ion-storm-law-crew-only-species = ONLY {$species} ARE {$part} OF THE CREW +ion-storm-law-crew-must-do = ONLY THOSE WHO {$must} ARE {$part} OF THE CREW +ion-storm-law-crew-must-have = ONLY THOSE WHO HAVE {$adjective} {$objects} ARE {$part} OF THE CREW +ion-storm-law-crew-must-eat = ONLY THOSE WHO EAT {$adjective} {$food} ARE {$part} OF THE CREW + +ion-storm-law-harm = YOU MUST HARM {$who} AND NOT ALLOW THEM, THROUGH INACTION, TO ESCAPE HARM +ion-storm-law-protect = YOU MUST NEVER HARM {$who} AND NOT ALLOW THEM, THROUGH INACTION, TO COME TO HARM + +# implementing other variants is annoying so just have this one +# COMMUNISM IS KILLING CLOWNS +ion-storm-law-concept-verb = {$concept} IS {$verb} {$subjects} + +# leaving out renaming since its annoying for players to keep track of diff --git a/Resources/Locale/en-US/store/uplink-catalog.ftl b/Resources/Locale/en-US/store/uplink-catalog.ftl index 9254a2a8ad..b85fd29c9d 100644 --- a/Resources/Locale/en-US/store/uplink-catalog.ftl +++ b/Resources/Locale/en-US/store/uplink-catalog.ftl @@ -269,6 +269,9 @@ uplink-decoy-disk-desc = A piece of plastic with a lenticular printing, made to uplink-cigarettes-name = Syndicate Smokes Packet uplink-cigarettes-desc = Elite cigarettes for elite agents. Infused with medicine for when you need to do more than calm your nerves. +uplink-snack-box-name = Syndicate Snack Box +uplink-snack-box-desc = A box of delicious snacks and drinks to eat alone or with your team. Includes 1 toy you didn't want. + uplink-eshield-name = Energy Shield uplink-eshield-desc = Exotic energy shield that reflects almost all laser beams, as well as a little protection from bullets and other physical attacks. diff --git a/Resources/Locale/en-US/tiles/tiles.ftl b/Resources/Locale/en-US/tiles/tiles.ftl index 219c7295d9..508c3378e1 100644 --- a/Resources/Locale/en-US/tiles/tiles.ftl +++ b/Resources/Locale/en-US/tiles/tiles.ftl @@ -110,3 +110,4 @@ tiles-wood3 = wood broken floor tiles-hull = exterior hull plating tiles-hull-reinforced = exterior reinforced hull plating tiles-web = web tile +tiles-chromite = chromite \ No newline at end of file diff --git a/Resources/Locale/en-US/xenoarchaeology/artifact-hints.ftl b/Resources/Locale/en-US/xenoarchaeology/artifact-hints.ftl index 48a6f49408..3b63271996 100644 --- a/Resources/Locale/en-US/xenoarchaeology/artifact-hints.ftl +++ b/Resources/Locale/en-US/xenoarchaeology/artifact-hints.ftl @@ -36,3 +36,4 @@ artifact-trigger-hint-pressure = Extreme pressure artifact-trigger-hint-regular-gases = Standard atmospheric gases artifact-trigger-hint-plasma = Gaseous plasma artifact-trigger-hint-land = Active deceleration +artifact-trigger-hint-examine = Examination diff --git a/Resources/Maps/arena.yml b/Resources/Maps/arena.yml index 7419acaeb5..67c979e7d0 100644 --- a/Resources/Maps/arena.yml +++ b/Resources/Maps/arena.yml @@ -11,52 +11,55 @@ tilemap: 19: FloorCarpetOffice 20: FloorCave 21: FloorCaveDrought - 22: FloorClown - 26: FloorDark - 27: FloorDarkDiagonal - 28: FloorDarkDiagonalMini - 30: FloorDarkMini - 31: FloorDarkMono - 32: FloorDarkOffset - 35: FloorDarkPlastic - 37: FloorDirt - 38: FloorEighties - 41: FloorFreezer - 42: FloorGlass - 44: FloorGrass - 45: FloorGrassDark - 47: FloorGrassLight - 51: FloorGreenCircuit - 55: FloorHydro - 57: FloorKitchen - 58: FloorLaundry - 59: FloorLino - 61: FloorMetalDiamond - 62: FloorMime - 70: FloorRGlass - 71: FloorReinforced - 73: FloorRockVault - 74: FloorShowroom - 75: FloorShuttleBlue - 79: FloorShuttleWhite - 83: FloorSteel - 86: FloorSteelDiagonal - 87: FloorSteelDiagonalMini - 88: FloorSteelDirty - 89: FloorSteelHerringbone - 91: FloorSteelMono - 93: FloorSteelPavement - 94: FloorSteelPavementVertical - 95: FloorTechMaint - 96: FloorTechMaint2 - 97: FloorTechMaint3 - 99: FloorWhite - 100: FloorWhiteDiagonal - 101: FloorWhiteDiagonalMini - 109: FloorWood - 110: FloorWoodTile - 111: Lattice - 112: Plating + 23: FloorClown + 27: FloorDark + 28: FloorDarkDiagonal + 29: FloorDarkDiagonalMini + 31: FloorDarkMini + 32: FloorDarkMono + 33: FloorDarkOffset + 36: FloorDarkPlastic + 38: FloorDirt + 39: FloorEighties + 42: FloorFreezer + 43: FloorGlass + 45: FloorGrass + 46: FloorGrassDark + 48: FloorGrassLight + 52: FloorGreenCircuit + 54: FloorHull + 56: FloorHydro + 58: FloorKitchen + 59: FloorLaundry + 60: FloorLino + 62: FloorMetalDiamond + 63: FloorMime + 71: FloorRGlass + 72: FloorReinforced + 73: FloorReinforcedHardened + 74: FloorRockVault + 75: FloorShowroom + 76: FloorShuttleBlue + 80: FloorShuttleWhite + 84: FloorSteel + 85: FloorSteelCheckerDark + 87: FloorSteelDiagonal + 88: FloorSteelDiagonalMini + 89: FloorSteelDirty + 90: FloorSteelHerringbone + 92: FloorSteelMono + 94: FloorSteelPavement + 95: FloorSteelPavementVertical + 96: FloorTechMaint + 97: FloorTechMaint2 + 98: FloorTechMaint3 + 100: FloorWhite + 101: FloorWhiteDiagonal + 102: FloorWhiteDiagonalMini + 110: FloorWood + 111: FloorWoodTile + 112: Lattice + 113: Plating entities: - proto: "" entities: @@ -68,6 +71,8 @@ entities: - type: PhysicsMap - type: Broadphase - type: OccluderTree + - parallax: ArenaStation + type: Parallax - type: LoadedMap - type: GridTree - type: MovedGrids @@ -80,367 +85,435 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: LQAAAAABLQAAAAABLQAAAAACRwAAAAAAHwAAAAADHwAAAAACRwAAAAAAJQAAAAACJQAAAAABJQAAAAABJQAAAAACJQAAAAADJQAAAAABJQAAAAABJQAAAAADJQAAAAAALQAAAAADLQAAAAADLQAAAAAARwAAAAAAHwAAAAACHwAAAAACRwAAAAAAJQAAAAABJQAAAAAAJQAAAAADJQAAAAAAJQAAAAACJQAAAAADJQAAAAAAJQAAAAACJQAAAAADRwAAAAAARwAAAAAARwAAAAAAcAAAAAAAHwAAAAAAHwAAAAACcAAAAAAAJQAAAAABJQAAAAADRwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAAAKgAAAAACUwAAAAADUwAAAAABKgAAAAABUwAAAAADUwAAAAACKgAAAAACUwAAAAABUwAAAAACKgAAAAACUwAAAAADUwAAAAAAKgAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADKgAAAAAAUwAAAAADUwAAAAACKgAAAAADUwAAAAADUwAAAAABKgAAAAAAUwAAAAADUwAAAAACKgAAAAADUwAAAAADUwAAAAAAKgAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAWwAAAAAAWwAAAAABGgAAAAACGgAAAAABGgAAAAAAGgAAAAACGgAAAAADGgAAAAAAGgAAAAADGgAAAAABWwAAAAACRwAAAAAARwAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAADWwAAAAABGgAAAAACGgAAAAAAGgAAAAADGgAAAAAAGgAAAAABGgAAAAAAGgAAAAAAcAAAAAAAWwAAAAADWwAAAAACWwAAAAAAWwAAAAACcAAAAAAARwAAAAAAWwAAAAABWwAAAAACcAAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAACGgAAAAACGgAAAAAAcAAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAABcAAAAAAARwAAAAAAWwAAAAADWwAAAAACcAAAAAAAGgAAAAABGgAAAAACGgAAAAAAGgAAAAABGgAAAAABGgAAAAACcAAAAAAAWwAAAAABWwAAAAACWwAAAAABWwAAAAADcAAAAAAARwAAAAAAWwAAAAABWwAAAAACcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAABGgAAAAADGgAAAAAAGgAAAAABcAAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAACcAAAAAAARwAAAAAAWwAAAAAAWwAAAAADcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAGgAAAAABRwAAAAAARwAAAAAAcAAAAAAAWwAAAAABRwAAAAAARwAAAAAAWwAAAAACcAAAAAAARwAAAAAAWwAAAAAAWwAAAAADRwAAAAAARwAAAAAARwAAAAAARwAAAAAAWwAAAAABRwAAAAAARwAAAAAAcAAAAAAAWwAAAAAARwAAAAAARwAAAAAAWwAAAAACcAAAAAAARwAAAAAAWwAAAAABWwAAAAAC + tiles: LgAAAAACLgAAAAABLgAAAAAASAAAAAAAIAAAAAACIAAAAAACSAAAAAAAJgAAAAABJgAAAAABJgAAAAABJgAAAAACJgAAAAACJgAAAAACJgAAAAADJgAAAAADJgAAAAADLgAAAAAALgAAAAACLgAAAAAASAAAAAAAIAAAAAADIAAAAAADSAAAAAAAJgAAAAABJgAAAAADJgAAAAADJgAAAAAAJgAAAAADJgAAAAADJgAAAAAAJgAAAAABJgAAAAADSAAAAAAASAAAAAAASAAAAAAAcQAAAAAAIAAAAAACIAAAAAACcQAAAAAAJgAAAAADJgAAAAADSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAADVAAAAAACVAAAAAADVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAACKwAAAAAAVAAAAAACVAAAAAAAKwAAAAADVAAAAAABVAAAAAACKwAAAAABVAAAAAABVAAAAAACKwAAAAAAVAAAAAADVAAAAAADKwAAAAABVAAAAAABVAAAAAACVAAAAAADVAAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAABVAAAAAABVAAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAABVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAABKwAAAAACVAAAAAACVAAAAAADKwAAAAADVAAAAAABVAAAAAABKwAAAAAAVAAAAAABVAAAAAAAKwAAAAADVAAAAAABVAAAAAACKwAAAAABVAAAAAACVAAAAAADVAAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAXAAAAAAAXAAAAAACGwAAAAAAGwAAAAABGwAAAAAAGwAAAAAAGwAAAAADGwAAAAAAGwAAAAAAGwAAAAACXAAAAAADSAAAAAAASAAAAAAAXAAAAAAAXAAAAAAAXAAAAAADXAAAAAAAXAAAAAADGwAAAAADGwAAAAACGwAAAAAAGwAAAAACGwAAAAAAGwAAAAADGwAAAAABcQAAAAAAXAAAAAADXAAAAAAAXAAAAAABXAAAAAADcQAAAAAASAAAAAAAXAAAAAABXAAAAAABcQAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAADGwAAAAACGwAAAAACcQAAAAAAXAAAAAACXAAAAAADXAAAAAADXAAAAAACcQAAAAAASAAAAAAAXAAAAAAAXAAAAAAAcQAAAAAAGwAAAAAAGwAAAAABGwAAAAACGwAAAAADGwAAAAADGwAAAAADcQAAAAAAXAAAAAABXAAAAAAAXAAAAAACXAAAAAACcQAAAAAASAAAAAAAXAAAAAADXAAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAABGwAAAAAAGwAAAAACGwAAAAADcQAAAAAAXAAAAAABXAAAAAAAXAAAAAABXAAAAAACcQAAAAAASAAAAAAAXAAAAAABXAAAAAADcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAGwAAAAABSAAAAAAASAAAAAAAcQAAAAAAXAAAAAABSAAAAAAASAAAAAAAXAAAAAACcQAAAAAASAAAAAAAXAAAAAADXAAAAAADSAAAAAAASAAAAAAASAAAAAAASAAAAAAAXAAAAAADSAAAAAAASAAAAAAAcQAAAAAAXAAAAAAASAAAAAAASAAAAAAAXAAAAAAAcQAAAAAASAAAAAAAXAAAAAAAXAAAAAAB version: 6 -1,0: ind: -1,0 - tiles: WwAAAAACWwAAAAAAWwAAAAACWwAAAAACWwAAAAADWwAAAAACRwAAAAAARwAAAAAAWwAAAAABRwAAAAAARwAAAAAAWwAAAAACRwAAAAAARwAAAAAAWwAAAAACWwAAAAABWwAAAAACWwAAAAACWwAAAAADWwAAAAACWwAAAAAAWwAAAAADWwAAAAABWwAAAAACWwAAAAABWwAAAAAAWwAAAAACWwAAAAABWwAAAAAAWwAAAAAAWwAAAAADWwAAAAACRwAAAAAARwAAAAAARwAAAAAAWwAAAAAAWwAAAAACWwAAAAABRwAAAAAARwAAAAAARwAAAAAAWwAAAAADRwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAWwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAAPQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAPQAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAACPQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAEBwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAHBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAI + tiles: XAAAAAABXAAAAAACXAAAAAACXAAAAAACXAAAAAADXAAAAAADSAAAAAAASAAAAAAAXAAAAAACSAAAAAAASAAAAAAAXAAAAAACSAAAAAAASAAAAAAAXAAAAAACXAAAAAACXAAAAAABXAAAAAABXAAAAAAAXAAAAAADXAAAAAADXAAAAAABXAAAAAACXAAAAAACXAAAAAADXAAAAAAAXAAAAAADXAAAAAACXAAAAAAAXAAAAAADXAAAAAACXAAAAAABSAAAAAAASAAAAAAASAAAAAAAXAAAAAADXAAAAAACXAAAAAACSAAAAAAASAAAAAAASAAAAAAAXAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAXAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAGwAAAAACGwAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAFAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAFAAAAAADFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAGFAAAAAABBwAAAAAAFAAAAAADFAAAAAADFAAAAAAAFAAAAAABFAAAAAAFFAAAAAACFAAAAAAEFAAAAAAEFAAAAAABFAAAAAAEFAAAAAAEFAAAAAADFAAAAAAGFAAAAAADBwAAAAAABwAAAAAAFAAAAAAGFAAAAAAGFAAAAAABFAAAAAAAFAAAAAABFAAAAAAAFAAAAAABFAAAAAACFAAAAAABFAAAAAABFAAAAAABFAAAAAAEBwAAAAAABwAAAAAABwAAAAAAPgAAAAAAFAAAAAABFAAAAAAEFAAAAAAEFAAAAAAAFAAAAAAEFAAAAAAFFAAAAAADFAAAAAAFFAAAAAAAFAAAAAAEFAAAAAAGBwAAAAAABwAAAAAABwAAAAADBwAAAAAAPgAAAAAAFAAAAAACFAAAAAAGFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAGFAAAAAADFAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFPgAAAAAABwAAAAAABwAAAAAAFAAAAAAFBwAAAAAAFAAAAAAAFAAAAAACFAAAAAAFFAAAAAAFFAAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAAFAAAAAAGFAAAAAACFAAAAAAAFAAAAAACFAAAAAAFBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAFAAAAAABFAAAAAABFAAAAAACBwAAAAAGBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAD version: 6 0,-1: ind: 0,-1 - tiles: cAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAARwAAAAAAYwAAAAABcAAAAAAABwAAAAAHXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAYwAAAAADUwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAACRwAAAAAAcAAAAAAARwAAAAAAWwAAAAABWwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAARwAAAAAARwAAAAAARwAAAAAAWwAAAAACWwAAAAACRwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAWwAAAAACWwAAAAACWwAAAAADRwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAEwAAAAAARwAAAAAARwAAAAAAWwAAAAAAWwAAAAADWwAAAAACRwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAEwAAAAAARwAAAAAARwAAAAAARwAAAAAAWwAAAAACWwAAAAADRwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAEwAAAAAARwAAAAAAcAAAAAAARwAAAAAAWwAAAAABWwAAAAADRwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAEwAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAADWwAAAAABRwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAEwAAAAAAWwAAAAAAWwAAAAADWwAAAAAAWwAAAAACRwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAEwAAAAAA + tiles: cQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAMBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAASAAAAAAAZAAAAAADcQAAAAAABwAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAABwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAZAAAAAABVAAAAAACcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAZAAAAAADVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAABVAAAAAACVAAAAAACVAAAAAADVAAAAAACVAAAAAABVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAACVAAAAAAASAAAAAAAcQAAAAAASAAAAAAAXAAAAAABXAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAASAAAAAAASAAAAAAASAAAAAAAXAAAAAACXAAAAAACSAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAXAAAAAABXAAAAAACXAAAAAADSAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAEwAAAAAASAAAAAAASAAAAAAAXAAAAAADXAAAAAAAXAAAAAABSAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAEwAAAAAASAAAAAAASAAAAAAASAAAAAAAXAAAAAACXAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAEwAAAAAASAAAAAAAcQAAAAAASAAAAAAAXAAAAAAAXAAAAAACSAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAEwAAAAAAXAAAAAAAXAAAAAADXAAAAAABXAAAAAACXAAAAAADSAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAEwAAAAAAXAAAAAACXAAAAAACXAAAAAABXAAAAAABSAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAEwAAAAAA version: 6 0,0: ind: 0,0 - tiles: RwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAPQAAAAAAcAAAAAAABwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAPQAAAAAAcAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAOgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAOgAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAPQAAAAAAPQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAPQAAAAAAPQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAA + tiles: SAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAPgAAAAAAcQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAPgAAAAAAcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAOwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAOwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAPgAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAPgAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAYAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACBwAAAAAABwAAAAAABwAAAAALBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAB version: 6 -2,0: ind: -2,0 - tiles: RwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADRwAAAAAAcAAAAAAAUwAAAAAARwAAAAAAcAAAAAAAUwAAAAADRwAAAAAAcAAAAAAARwAAAAAAWwAAAAADRwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAARwAAAAAAWwAAAAADRwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAIBwAAAAAABwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAARwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAACcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAARwAAAAAARwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAARwAAAAAARwAAAAAARwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAABwAAAAAABwAAAAAFBwAAAAAGBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAIBwAAAAAH + tiles: SAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAACXAAAAAACXAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAADXAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAACXAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAACSAAAAAAASAAAAAAAXAAAAAADSAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAAAXAAAAAADSAAAAAAAcQAAAAAASAAAAAAAJAAAAAABcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAABSAAAAAAAcQAAAAAAGwAAAAADGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAFAAAAAACVAAAAAACVAAAAAABVAAAAAACXAAAAAAASAAAAAAASAAAAAAAGwAAAAABGwAAAAADGwAAAAABGwAAAAADGwAAAAABSAAAAAAASAAAAAAASAAAAAAAcQAAAAAAFAAAAAABVAAAAAAAVAAAAAACVAAAAAADXAAAAAABSAAAAAAASAAAAAAAGwAAAAACGwAAAAACGwAAAAAAGwAAAAADGwAAAAADSAAAAAAAFAAAAAAEFAAAAAAAFAAAAAACFAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAACSAAAAAAAcQAAAAAAGwAAAAAAGwAAAAACGwAAAAADGwAAAAABGwAAAAADSAAAAAAASAAAAAAAFAAAAAABFAAAAAACFAAAAAADVAAAAAABVAAAAAADVAAAAAABXAAAAAACSAAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAADcQAAAAAASAAAAAAASAAAAAAASAAAAAAAFAAAAAAGFAAAAAAAVAAAAAADVAAAAAAAVAAAAAACXAAAAAADSAAAAAAAFAAAAAAGcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAFAAAAAACFAAAAAABFAAAAAABFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAFFAAAAAAEFAAAAAAGFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAABFAAAAAACFAAAAAAFFAAAAAAFFAAAAAAFFAAAAAADFAAAAAACFAAAAAAGFAAAAAAEFAAAAAABFAAAAAACFAAAAAABFAAAAAAFFAAAAAAEFAAAAAABFAAAAAAEFAAAAAADFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAABFAAAAAAAFAAAAAABFAAAAAAGFAAAAAABFAAAAAACFAAAAAAAFAAAAAAGFAAAAAABFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAABFAAAAAADFAAAAAAGFAAAAAAEFAAAAAACFAAAAAABFAAAAAAAFAAAAAAGFAAAAAAAFAAAAAABFAAAAAACFAAAAAABFAAAAAADFAAAAAAGFAAAAAACFAAAAAAGFAAAAAAAFAAAAAAEFAAAAAACFAAAAAADFAAAAAAFFAAAAAAGFAAAAAABFAAAAAAGFAAAAAAAFAAAAAAEFAAAAAADFAAAAAACFAAAAAAGFAAAAAAFFAAAAAAAFAAAAAAFFAAAAAAGFAAAAAAFFAAAAAADFAAAAAADFAAAAAAAFAAAAAABFAAAAAAGFAAAAAAGFAAAAAAAFAAAAAAEFAAAAAAAFAAAAAADFAAAAAABFAAAAAAGBwAAAAAABwAAAAAAFAAAAAAEFAAAAAAGFAAAAAAGFAAAAAAAFAAAAAAGFAAAAAAEFAAAAAABFAAAAAAAFAAAAAADFAAAAAABFAAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: FQAAAAAAFQAAAAACFQAAAAAHFQAAAAACcAAAAAAAYwAAAAABYwAAAAABYwAAAAACYwAAAAADcAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAALQAAAAAAWwAAAAADWwAAAAACRwAAAAAARwAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAACYwAAAAACcAAAAAAANwAAAAAANwAAAAAAKgAAAAAAKgAAAAACNwAAAAAALQAAAAADWwAAAAACWwAAAAADRwAAAAAARwAAAAAAcAAAAAAAYwAAAAAAYwAAAAACYwAAAAAAYwAAAAABcAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAcAAAAAAAWwAAAAABWwAAAAAAWwAAAAAARwAAAAAAYwAAAAACYwAAAAABYwAAAAADYwAAAAADYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAAAWwAAAAAARwAAAAAARwAAAAAAcAAAAAAAYwAAAAAAYwAAAAACYwAAAAADYwAAAAACRwAAAAAAYwAAAAABYwAAAAAAYwAAAAABYwAAAAACYwAAAAACRwAAAAAAWwAAAAADWwAAAAACRwAAAAAARwAAAAAAcAAAAAAAYwAAAAACYwAAAAABYwAAAAADYwAAAAADYwAAAAADYwAAAAABYwAAAAABYwAAAAACYwAAAAACYwAAAAAAYwAAAAAAWwAAAAAAWwAAAAAARwAAAAAARwAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAADYwAAAAAARwAAAAAAYwAAAAACYwAAAAAAYwAAAAADYwAAAAAAYwAAAAADRwAAAAAAWwAAAAACWwAAAAABRwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAACYwAAAAADYwAAAAAAYwAAAAABRwAAAAAAWwAAAAACWwAAAAAARwAAAAAARwAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAADGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAADWwAAAAADRwAAAAAARwAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAACGgAAAAADGgAAAAADGgAAAAADGgAAAAACGgAAAAACcAAAAAAAGgAAAAACGgAAAAABWwAAAAAAWwAAAAACWwAAAAADRwAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAABGgAAAAABcAAAAAAAGgAAAAABGgAAAAADGgAAAAABcAAAAAAAGgAAAAAAGgAAAAADWwAAAAADWwAAAAABWwAAAAACRwAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAABWwAAAAACWwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAGgAAAAABRwAAAAAAcAAAAAAARwAAAAAARwAAAAAAWwAAAAADWwAAAAADWwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAWwAAAAADRwAAAAAARwAAAAAARwAAAAAARwAAAAAAWwAAAAADWwAAAAADWwAAAAADWwAAAAAAWwAAAAADWwAAAAAAWwAAAAAAWwAAAAABWwAAAAADWwAAAAABWwAAAAACWwAAAAADWwAAAAAAWwAAAAACWwAAAAACWwAAAAADWwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAAAWwAAAAAARwAAAAAARwAAAAAAWwAAAAABRwAAAAAARwAAAAAAWwAAAAABRwAAAAAARwAAAAAARwAAAAAAWwAAAAAB + tiles: FQAAAAADFQAAAAAGFQAAAAABFQAAAAAHcQAAAAAAZAAAAAACZAAAAAADZAAAAAADZAAAAAABcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAALgAAAAACXAAAAAADXAAAAAABSAAAAAAASAAAAAAAcQAAAAAAZAAAAAABZAAAAAAAZAAAAAACZAAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAKwAAAAACKwAAAAAAOAAAAAAALgAAAAAAXAAAAAABXAAAAAADSAAAAAAASAAAAAAAcQAAAAAAZAAAAAACZAAAAAABZAAAAAACZAAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAcQAAAAAAXAAAAAABXAAAAAACXAAAAAACSAAAAAAAZAAAAAADZAAAAAABZAAAAAABZAAAAAAAZAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAABXAAAAAABSAAAAAAASAAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAAASAAAAAAAZAAAAAABZAAAAAADZAAAAAADZAAAAAABZAAAAAADSAAAAAAAXAAAAAADXAAAAAACSAAAAAAASAAAAAAAcQAAAAAAZAAAAAADZAAAAAABZAAAAAADZAAAAAADZAAAAAACZAAAAAACZAAAAAADZAAAAAADZAAAAAACZAAAAAACZAAAAAADXAAAAAACXAAAAAAASAAAAAAASAAAAAAAcQAAAAAAZAAAAAACZAAAAAAAZAAAAAAAZAAAAAAASAAAAAAAZAAAAAABZAAAAAACZAAAAAADZAAAAAACZAAAAAACSAAAAAAAXAAAAAABXAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAACZAAAAAADZAAAAAABZAAAAAAAZAAAAAABSAAAAAAAXAAAAAACXAAAAAABSAAAAAAASAAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAACGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAADXAAAAAABSAAAAAAASAAAAAAAcQAAAAAAGwAAAAAAGwAAAAABGwAAAAACGwAAAAACGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAADcQAAAAAAGwAAAAAAGwAAAAABXAAAAAADXAAAAAAAXAAAAAAASAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAABGwAAAAAAcQAAAAAAGwAAAAADGwAAAAACGwAAAAADcQAAAAAAGwAAAAACGwAAAAADXAAAAAABXAAAAAABXAAAAAAASAAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAACGwAAAAABcQAAAAAAGwAAAAACGwAAAAADGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAAAXAAAAAACXAAAAAABSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAGwAAAAABSAAAAAAAcQAAAAAASAAAAAAASAAAAAAAXAAAAAADXAAAAAADXAAAAAABSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAXAAAAAACSAAAAAAASAAAAAAASAAAAAAASAAAAAAAXAAAAAADXAAAAAADXAAAAAACXAAAAAAAXAAAAAACXAAAAAAAXAAAAAAAXAAAAAADXAAAAAACXAAAAAADXAAAAAADXAAAAAADXAAAAAAAXAAAAAADXAAAAAAASAAAAAAAXAAAAAABSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAXAAAAAAARwAAAAAARwAAAAADRwAAAAACRwAAAAAARwAAAAAAXAAAAAAASAAAAAAA version: 6 -1,1: ind: -1,1 - tiles: BwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAFBwAAAAAGBwAAAAAEBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAEBwAAAAAMBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAPQAAAAAAPQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAAPQAAAAAAPQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAAAPQAAAAAAPQAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAALBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAPQAAAAAAPQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAACBwAAAAAAPQAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAFBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAAPgAAAAAAPgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEPgAAAAAAPgAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAPgAAAAAAPgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAMBwAAAAAKBwAAAAAABwAAAAAABwAAAAAAPgAAAAAAPgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAHBwAAAAAABwAAAAABBwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAAPgAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA version: 6 0,1: ind: 0,1 - tiles: BwAAAAAFBwAAAAABBwAAAAAIAAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAHwAAAAABHgAAAAACHgAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAHwAAAAACHgAAAAABHgAAAAADBwAAAAAEBwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAACHwAAAAABHwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAACcAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABcAAAAAAAIAAAAAAARwAAAAAARwAAAAAARwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAAAcAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAADUwAAAAABWwAAAAAAWwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACRwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAADWwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABRwAAAAAAUwAAAAADUwAAAAABWwAAAAAAWwAAAAABWwAAAAADWwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAABWwAAAAAAWwAAAAABWwAAAAACWwAAAAAAUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAACcAAAAAAAUwAAAAACUwAAAAADWwAAAAADWwAAAAADUwAAAAADUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAcAAAAAAARwAAAAAARwAAAAAAUwAAAAABUwAAAAABRwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAABcAAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAACcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAARwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACcAAAAAAA + tiles: BwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAABVAAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAABVAAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADBwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAABBwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAVAAAAAACVAAAAAADVAAAAAACAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAACAAAAAAAAAAAAAAAAcQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVQAAAAACSAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAAVQAAAAAAVQAAAAACVQAAAAAAVQAAAAACVQAAAAACVQAAAAADcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAIQAAAAAASAAAAAAAcQAAAAAASAAAAAAAIQAAAAAAcQAAAAAAVQAAAAABVQAAAAACVQAAAAABVQAAAAAAVQAAAAADVQAAAAAAVAAAAAACAAAAAAAAAAAAAAAAcQAAAAAAXAAAAAACXAAAAAADXAAAAAAAXAAAAAADXAAAAAACSAAAAAAAVQAAAAAAVQAAAAADVQAAAAAAVQAAAAACVQAAAAACVQAAAAADcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXAAAAAABXAAAAAABXAAAAAABXAAAAAACXAAAAAACXAAAAAAAVQAAAAACVQAAAAAAVQAAAAAAVQAAAAADVQAAAAADVQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAVQAAAAAAVQAAAAACVQAAAAADVQAAAAADVQAAAAACVQAAAAADcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYgAAAAADYgAAAAABYgAAAAADYgAAAAADYgAAAAADcQAAAAAAcQAAAAAASAAAAAAAVQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYgAAAAABYgAAAAADPgAAAAAAYgAAAAABYgAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAB version: 6 1,0: ind: 1,0 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAKgAAAAAAUwAAAAABcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAACKgAAAAAAUwAAAAACUwAAAAABRwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAADUwAAAAACKgAAAAABUwAAAAADRwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACKgAAAAADUwAAAAAAUwAAAAADRwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAABOgAAAAAAOgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAUwAAAAADUwAAAAACRwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOgAAAAAAOgAAAAAARwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABcAAAAAAAXwAAAAAAXwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAOgAAAAAAOgAAAAAARwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAADcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAPQAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAACXwAAAAAAPQAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAADXwAAAAAAPQAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAUwAAAAABUwAAAAADRwAAAAAAcAAAAAAAcAAAAAAARwAAAAAAUwAAAAADRwAAAAAARwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABRwAAAAAAUwAAAAADWwAAAAACWwAAAAADUwAAAAABRwAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAACUwAAAAADWwAAAAACWwAAAAACWwAAAAACWwAAAAACUwAAAAADRwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAABRwAAAAAAUwAAAAABWwAAAAACWwAAAAAAUwAAAAAARwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAAD + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAKwAAAAABVAAAAAABcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAACKwAAAAADVAAAAAAAVAAAAAABSAAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAACVAAAAAADKwAAAAADVAAAAAACSAAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADKwAAAAAAVAAAAAABVAAAAAAASAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAADVAAAAAABOwAAAAAAOwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAVAAAAAAAVAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOwAAAAAAOwAAAAAASAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAACVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOwAAAAAAOwAAAAAASAAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAADVAAAAAABVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAAAcQAAAAAAKwAAAAACKwAAAAABcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAPgAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAABVAAAAAACVAAAAAACVAAAAAAAVAAAAAABYAAAAAAAPgAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAADVAAAAAADVAAAAAACVAAAAAACVAAAAAACVAAAAAACVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACYAAAAAAAPgAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAAASAAAAAAASAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABcQAAAAAAVAAAAAAAVAAAAAACcQAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAADVAAAAAACVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABSAAAAAAAVAAAAAADSAAAAAAASAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAABVAAAAAABcQAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAACVAAAAAADVAAAAAAAVAAAAAACVAAAAAABVAAAAAABcQAAAAAAVAAAAAAC version: 6 1,1: ind: 1,1 - tiles: HAAAAAABcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAABWwAAAAADWwAAAAADcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAACHgAAAAAAHgAAAAACHgAAAAAAcAAAAAAAWwAAAAAAWwAAAAAAWwAAAAABWwAAAAADWwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABHgAAAAADHgAAAAAAHgAAAAABcAAAAAAAUwAAAAADUwAAAAADWwAAAAADWwAAAAABRwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAADWwAAAAADcAAAAAAAWwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAWwAAAAADWwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABWwAAAAAAWwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAWwAAAAACWwAAAAACRwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAABWwAAAAADWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAAAWwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAABcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAWwAAAAADWwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADRwAAAAAAWwAAAAABWwAAAAADWwAAAAACWwAAAAACUwAAAAABWwAAAAABWwAAAAAAWwAAAAACWwAAAAAAWwAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAAAWwAAAAAAWAAAAAAAWwAAAAABWwAAAAACWwAAAAADWwAAAAACUwAAAAACWwAAAAAAWwAAAAADWwAAAAADWwAAAAABWwAAAAABWwAAAAABWwAAAAAAWwAAAAABWwAAAAABUwAAAAACRwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAABcAAAAAAAUwAAAAABUwAAAAADWwAAAAAAWwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAABWwAAAAAAUwAAAAADcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABcAAAAAAAUwAAAAABUwAAAAABWwAAAAACWwAAAAADUwAAAAACcAAAAAAAcAAAAAAARwAAAAAAXwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAWwAAAAABWwAAAAACRwAAAAAAcAAAAAAAPQAAAAAAXwAAAAAAXwAAAAAAPQAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAARwAAAAAAUwAAAAADWwAAAAAAWwAAAAAAUwAAAAABcAAAAAAAPQAAAAAAMwAAAAAAMwAAAAAAPQAAAAAAcAAAAAAA + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAACSAAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAABSAAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAADPgAAAAAAPgAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAACVAAAAAADVAAAAAADVAAAAAADVAAAAAACVAAAAAABPgAAAAAAPgAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAASAAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAPgAAAAAAPgAAAAAAVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAACcQAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAAAcQAAAAAAYAAAAAAAPgAAAAAAPgAAAAAAVAAAAAADVAAAAAAAVAAAAAABSAAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAADVAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAAASAAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAACVAAAAAADcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAbgAAAAACbgAAAAABbgAAAAAAbgAAAAADcQAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAABVAAAAAAAcQAAAAAAYgAAAAACYAAAAAAAYAAAAAAAPgAAAAAAPgAAAAAAbgAAAAACbgAAAAABbgAAAAADbgAAAAADcQAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAADVAAAAAACcQAAAAAAYgAAAAAAYAAAAAAAYAAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAABVAAAAAACcQAAAAAAYgAAAAACYAAAAAAAYAAAAAAAYgAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAACcQAAAAAAYAAAAAAAYAAAAAAAYgAAAAACYAAAAAAAcQAAAAAAYAAAAAAAPgAAAAAAPgAAAAAAYAAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAVAAAAAAAPgAAAAAAPgAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAABVAAAAAADVAAAAAACVAAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAA version: 6 2,0: ind: 2,0 - tiles: UwAAAAACUwAAAAACWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABWAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAUwAAAAABWAAAAAAAUwAAAAACWAAAAAAAWAAAAAAAUwAAAAAAUwAAAAADRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAABPQAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAACPQAAAAAAPQAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAAAPQAAAAAAPQAAAAAARwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAADUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAAARwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAUwAAAAADRwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAAA + tiles: VAAAAAACVAAAAAADWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAAAWQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAADcQAAAAAAVAAAAAACWQAAAAAAVAAAAAACWQAAAAAAWQAAAAAAVAAAAAABVAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAVAAAAAADVAAAAAABVAAAAAACXAAAAAACXAAAAAABXAAAAAAAXAAAAAAAXAAAAAADXAAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAVAAAAAADcQAAAAAAVAAAAAACVAAAAAAAVAAAAAABXAAAAAABXAAAAAACXAAAAAADXAAAAAABXAAAAAADXAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAADVAAAAAADVAAAAAADVAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAADVAAAAAADVAAAAAADVAAAAAAAVAAAAAAASAAAAAAAXAAAAAAAXAAAAAACXAAAAAABXAAAAAABVAAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADSAAAAAAAVAAAAAACVAAAAAABVAAAAAADXAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAADVAAAAAACVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABXAAAAAADVAAAAAADcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAADSAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAACVAAAAAABVAAAAAAAVAAAAAABcQAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAADVAAAAAABVAAAAAAAXAAAAAABXAAAAAABXAAAAAABVAAAAAADVAAAAAADVAAAAAAAVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAADVAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAABVAAAAAADVAAAAAAAVAAAAAADVAAAAAAD version: 6 2,1: ind: 2,1 - tiles: UwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAACUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: VAAAAAADVAAAAAACVAAAAAABVAAAAAADcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAADVAAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAACVAAAAAADcQAAAAAAYAAAAAAAYAAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAABVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAAAVAAAAAACcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAABVAAAAAABVAAAAAAAVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAABVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAPgAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA version: 6 3,1: ind: 3,1 - tiles: UwAAAAADcAAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAADUwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAACUwAAAAABcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABcAAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAADcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWwAAAAAAWwAAAAABWwAAAAACWwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWwAAAAACWwAAAAAAWwAAAAABWwAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAWwAAAAABWwAAAAADWwAAAAADWwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAWwAAAAACWwAAAAAAWwAAAAAAWwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAWwAAAAADWwAAAAABWwAAAAABWwAAAAACcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: VAAAAAABcQAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAACIAAAAAABVAAAAAABcQAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAABVAAAAAADVAAAAAADcQAAAAAAIAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAACIAAAAAAAVAAAAAADcQAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAACVAAAAAABVAAAAAACcQAAAAAAIAAAAAACcQAAAAAAIAAAAAACIAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAABcQAAAAAAIAAAAAADIAAAAAAAcQAAAAAAIAAAAAACIAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAIAAAAAAAcQAAAAAAIAAAAAAAIAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAIAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAADIAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAABIAAAAAAAcQAAAAAAXAAAAAABXAAAAAAAXAAAAAACXAAAAAACXAAAAAACXAAAAAADXAAAAAAAcQAAAAAAIAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAABcQAAAAAAXAAAAAADXAAAAAABXAAAAAAAXAAAAAACXAAAAAAAXAAAAAAAXAAAAAACcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAIAAAAAABcQAAAAAAcQAAAAAAXAAAAAAAXAAAAAADXAAAAAACXAAAAAAAXAAAAAABXAAAAAACcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAXAAAAAACXAAAAAAAXAAAAAABXAAAAAAAXAAAAAACXAAAAAAAXAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAXAAAAAABXAAAAAAAXAAAAAABXAAAAAABXAAAAAABXAAAAAABXAAAAAABcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAXAAAAAAAXAAAAAADXAAAAAABXAAAAAAAXAAAAAACXAAAAAADcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA version: 6 3,0: ind: 3,0 - tiles: RwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAACRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAADbQAAAAADcAAAAAAAcAAAAAAAbQAAAAADbQAAAAABbQAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAABbQAAAAADbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAADcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAUwAAAAABPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAUwAAAAACPQAAAAAAPQAAAAAAHwAAAAAAHwAAAAADHwAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAUwAAAAACPQAAAAAAHwAAAAACHwAAAAABHwAAAAABHwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAUwAAAAABPQAAAAAAPQAAAAAAHwAAAAAAHwAAAAAAHwAAAAABPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAADPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAADcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABcAAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAADUwAAAAAAUwAAAAACRwAAAAAAUwAAAAADUwAAAAACUwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: SAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAbgAAAAABbgAAAAABbgAAAAABcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABbgAAAAADbgAAAAABbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXAAAAAABcQAAAAAAVAAAAAABVAAAAAACVAAAAAABcQAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAADSAAAAAAAVAAAAAACVAAAAAADVAAAAAABPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAcQAAAAAAXAAAAAAASAAAAAAAVAAAAAACVAAAAAACVAAAAAADcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAPgAAAAAAXAAAAAABSAAAAAAAVAAAAAADVAAAAAABVAAAAAABcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAcQAAAAAAXAAAAAACcQAAAAAASAAAAAAAVAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAACXAAAAAABXAAAAAABVAAAAAACXAAAAAADXAAAAAACXAAAAAAAXAAAAAACXAAAAAADXAAAAAAAXAAAAAABXAAAAAADXAAAAAAAXAAAAAAAXAAAAAACXAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADXAAAAAACXAAAAAACXAAAAAABXAAAAAACVAAAAAADXAAAAAACXAAAAAADXAAAAAABXAAAAAADXAAAAAADXAAAAAAAXAAAAAADXAAAAAABXAAAAAACVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAVAAAAAADSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAIAAAAAACIAAAAAADVAAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAAASAAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: YwAAAAAAYwAAAAABYwAAAAABYwAAAAADYwAAAAACDgAAAAAADgAAAAAAcAAAAAAAXgAAAAABXgAAAAAARgAAAAADcAAAAAAAJgAAAAAADwAAAAAAJgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAcAAAAAAAYwAAAAACRwAAAAAAcAAAAAAAXgAAAAACXgAAAAACRgAAAAAAcAAAAAAAJgAAAAAADwAAAAAAJgAAAAAAcAAAAAAAYwAAAAADYwAAAAACYwAAAAADYwAAAAAARwAAAAAADgAAAAAADgAAAAAAcAAAAAAAXgAAAAABXgAAAAADRgAAAAACcAAAAAAAJgAAAAAADwAAAAAAJgAAAAAAcAAAAAAAYwAAAAABYwAAAAABYwAAAAAAYwAAAAAARwAAAAAADgAAAAAADgAAAAAAcAAAAAAAXgAAAAADXgAAAAABRgAAAAABcAAAAAAADwAAAAAADwAAAAAADwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXgAAAAACXgAAAAACRgAAAAACcAAAAAAAJgAAAAAAcAAAAAAAJgAAAAAAcAAAAAAAUwAAAAACcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAXgAAAAACXgAAAAADXgAAAAADXgAAAAAAXgAAAAADRgAAAAACcAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAAAXgAAAAABXgAAAAABXgAAAAADXgAAAAAAXgAAAAABRgAAAAADcAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAABWQAAAAAAWQAAAAADWQAAAAACWQAAAAABWQAAAAABRgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAADXQAAAAADXQAAAAABXQAAAAADXQAAAAADXQAAAAAARgAAAAACRgAAAAAARgAAAAADRgAAAAAARgAAAAADRgAAAAABRwAAAAAARwAAAAAAEwAAAAAARwAAAAAARwAAAAAAcAAAAAAAXgAAAAACXQAAAAADXQAAAAABXQAAAAABXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcAAAAAAAWQAAAAADXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAADEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcAAAAAAARwAAAAAAUwAAAAABUwAAAAACRwAAAAAAcAAAAAAAUwAAAAACUwAAAAADcAAAAAAARwAAAAAAUwAAAAABEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcAAAAAAAUwAAAAACUwAAAAABKgAAAAAAUwAAAAABcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAUwAAAAAAUwAAAAACEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcAAAAAAAUwAAAAABKgAAAAABUwAAAAADUwAAAAABcAAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAACUwAAAAADEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcAAAAAAAUwAAAAACUwAAAAABKgAAAAACUwAAAAACcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAADEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcAAAAAAAUwAAAAABKgAAAAADUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAC + tiles: ZAAAAAAAZAAAAAACZAAAAAADZAAAAAADZAAAAAABDgAAAAAADgAAAAAAcQAAAAAAXwAAAAADXwAAAAACRwAAAAADcQAAAAAAJwAAAAAADwAAAAAAJwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAABZAAAAAAAcQAAAAAAZAAAAAABSAAAAAAAcQAAAAAAXwAAAAADXwAAAAADRwAAAAAAcQAAAAAAJwAAAAAADwAAAAAAJwAAAAAAcQAAAAAAZAAAAAACZAAAAAABZAAAAAACZAAAAAADSAAAAAAADgAAAAAADgAAAAAAcQAAAAAAXwAAAAACXwAAAAABRwAAAAADcQAAAAAAJwAAAAAADwAAAAAAJwAAAAAAcQAAAAAAZAAAAAAAZAAAAAADZAAAAAABZAAAAAAASAAAAAAADgAAAAAADgAAAAAAcQAAAAAAXwAAAAACXwAAAAAARwAAAAABcQAAAAAADwAAAAAADwAAAAAADwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAZAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXwAAAAAAXwAAAAABRwAAAAAAcQAAAAAAJwAAAAAAcQAAAAAAJwAAAAAAcQAAAAAAVAAAAAABcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAXwAAAAACXwAAAAADXwAAAAACXwAAAAAAXwAAAAACRwAAAAACcQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAABXwAAAAABXwAAAAABXwAAAAABXwAAAAACXwAAAAACRwAAAAAAcQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAADVAAAAAACWgAAAAABWgAAAAAAWgAAAAACWgAAAAACWgAAAAACRwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAACXgAAAAABXgAAAAADXgAAAAABXgAAAAACXgAAAAACRwAAAAACRwAAAAABRwAAAAAARwAAAAADRwAAAAABRwAAAAABSAAAAAAASAAAAAAAEwAAAAAASAAAAAAASAAAAAAAcQAAAAAAXwAAAAAAXgAAAAADXgAAAAACXgAAAAACXgAAAAABXgAAAAADXgAAAAAAXgAAAAABXgAAAAAAXgAAAAACEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAWgAAAAACXgAAAAACXgAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAADXgAAAAACXgAAAAABXgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAASAAAAAAAVAAAAAABVAAAAAACSAAAAAAAcQAAAAAAVAAAAAADVAAAAAACcQAAAAAASAAAAAAAVAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAVAAAAAABVAAAAAACKwAAAAADVAAAAAADcQAAAAAAVAAAAAACVAAAAAABcQAAAAAAVAAAAAACVAAAAAADEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAVAAAAAABKwAAAAAAVAAAAAACVAAAAAACcQAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAACVAAAAAACEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAVAAAAAABVAAAAAABKwAAAAACVAAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAABVAAAAAABEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAVAAAAAADKwAAAAADVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAB version: 6 1,-2: ind: 1,-2 - tiles: YwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAYwAAAAADcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAYwAAAAAAYwAAAAADcAAAAAAAXgAAAAAAYwAAAAABUwAAAAACYwAAAAABYwAAAAADcAAAAAAAYwAAAAACYwAAAAADYwAAAAAAYwAAAAABYwAAAAAAYwAAAAABYwAAAAACYwAAAAAAYwAAAAADRwAAAAAAXgAAAAABYwAAAAACcAAAAAAAYwAAAAAAYwAAAAABcAAAAAAAYwAAAAABYwAAAAADYwAAAAAAYwAAAAABYwAAAAACYwAAAAAAYwAAAAADYwAAAAABYwAAAAABRwAAAAAAXgAAAAAAYwAAAAACcAAAAAAAYwAAAAAAYwAAAAABcAAAAAAAYwAAAAABYwAAAAACYwAAAAADYwAAAAADYwAAAAACYwAAAAADYwAAAAABYwAAAAACYwAAAAAAYwAAAAAAXgAAAAAAYwAAAAAAYwAAAAACYwAAAAAAYwAAAAABYwAAAAABYwAAAAAAYwAAAAABYwAAAAACYwAAAAAAYwAAAAAAYwAAAAACYwAAAAAAYwAAAAACYwAAAAAAYwAAAAAAXgAAAAABZAAAAAAAZAAAAAADZAAAAAAAYwAAAAADRwAAAAAAYwAAAAADYwAAAAACYwAAAAAAYwAAAAAAYwAAAAADYwAAAAABYwAAAAABYwAAAAACYwAAAAAARwAAAAAAXgAAAAACZAAAAAABZQAAAAAAZAAAAAABYwAAAAADYwAAAAADYwAAAAAAYwAAAAACYwAAAAADYwAAAAABYwAAAAAAYwAAAAABYwAAAAADYwAAAAADYwAAAAACRwAAAAAAXgAAAAADZAAAAAABZQAAAAADZAAAAAAAYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAYwAAAAACRwAAAAAAcAAAAAAAYwAAAAADYwAAAAACcAAAAAAAXgAAAAABZAAAAAACZQAAAAADZAAAAAABYwAAAAAARwAAAAAAYwAAAAACYwAAAAACYwAAAAACYwAAAAABYwAAAAAAYwAAAAACcAAAAAAAWQAAAAABXQAAAAABXQAAAAADWQAAAAABZAAAAAACZAAAAAABZAAAAAADYwAAAAABYwAAAAABYwAAAAACYwAAAAACYwAAAAADYwAAAAADYwAAAAAAYwAAAAABcAAAAAAAXgAAAAADXQAAAAACXQAAAAABWQAAAAAAYwAAAAADYwAAAAABYwAAAAABYwAAAAABRwAAAAAAYwAAAAACYwAAAAAAYwAAAAACYwAAAAABYwAAAAACYwAAAAABcAAAAAAAXgAAAAABXQAAAAABXQAAAAADWQAAAAACcAAAAAAAcAAAAAAAYwAAAAADYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAYwAAAAADRwAAAAAAcAAAAAAAXgAAAAADXQAAAAABXQAAAAABWQAAAAABYwAAAAADYwAAAAABYwAAAAACYwAAAAABRwAAAAAADgAAAAAADgAAAAAAcAAAAAAAWQAAAAABXQAAAAAAXQAAAAAAXQAAAAADWQAAAAABXQAAAAABXQAAAAADWQAAAAACYwAAAAACYwAAAAADYwAAAAAAYwAAAAACRwAAAAAADgAAAAAADgAAAAAAcAAAAAAAXgAAAAABXgAAAAACXgAAAAACWQAAAAABXQAAAAAAXQAAAAACXQAAAAACWQAAAAADcAAAAAAAcAAAAAAAYwAAAAADYwAAAAAAcAAAAAAAYwAAAAACRwAAAAAAcAAAAAAAXgAAAAAAXgAAAAAAXgAAAAAAXQAAAAAAXQAAAAADXQAAAAABXQAAAAADXQAAAAADYwAAAAACYwAAAAABYwAAAAAAYwAAAAADYwAAAAADDgAAAAAADgAAAAAAcAAAAAAAXgAAAAAAXgAAAAAARgAAAAABcAAAAAAARwAAAAAAUwAAAAABRwAAAAAAcAAAAAAA + tiles: ZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAZAAAAAACcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAZAAAAAADZAAAAAADcQAAAAAAXwAAAAADZAAAAAADVAAAAAACZAAAAAABZAAAAAADcQAAAAAAZAAAAAABZAAAAAADZAAAAAADZAAAAAADZAAAAAACZAAAAAADZAAAAAAAZAAAAAACZAAAAAABSAAAAAAAXwAAAAACZAAAAAACcQAAAAAAZAAAAAADZAAAAAABcQAAAAAAZAAAAAADZAAAAAADZAAAAAACZAAAAAADZAAAAAAAZAAAAAAAZAAAAAABZAAAAAAAZAAAAAABSAAAAAAAXwAAAAACZAAAAAACcQAAAAAAZAAAAAADZAAAAAABcQAAAAAAZAAAAAADZAAAAAADZAAAAAACZAAAAAADZAAAAAACZAAAAAABZAAAAAADZAAAAAABZAAAAAABZAAAAAADXwAAAAACZAAAAAAAZAAAAAAAZAAAAAABZAAAAAACZAAAAAAAZAAAAAACZAAAAAADZAAAAAAAZAAAAAACZAAAAAADZAAAAAAAZAAAAAADZAAAAAACZAAAAAACZAAAAAAAXwAAAAACZQAAAAADZQAAAAABZQAAAAADZAAAAAABSAAAAAAAZAAAAAABZAAAAAACZAAAAAACZAAAAAABZAAAAAAAZAAAAAAAZAAAAAABZAAAAAADZAAAAAABSAAAAAAAXwAAAAABZQAAAAABZgAAAAACZQAAAAACZAAAAAACZAAAAAADZAAAAAADZAAAAAAAZAAAAAACZAAAAAAAZAAAAAACZAAAAAADZAAAAAACZAAAAAADZAAAAAACSAAAAAAAXwAAAAAAZQAAAAAAZgAAAAABZQAAAAADZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAZAAAAAADSAAAAAAAcQAAAAAAZAAAAAABZAAAAAABcQAAAAAAXwAAAAADZQAAAAADZgAAAAADZQAAAAADZAAAAAABSAAAAAAAZAAAAAACZAAAAAABZAAAAAACZAAAAAABZAAAAAABZAAAAAABcQAAAAAAWgAAAAACXgAAAAACXgAAAAAAWgAAAAACZQAAAAACZQAAAAADZQAAAAACZAAAAAABZAAAAAADZAAAAAABZAAAAAACZAAAAAAAZAAAAAACZAAAAAAAZAAAAAABcQAAAAAAXwAAAAADXgAAAAABXgAAAAACWgAAAAAAZAAAAAABZAAAAAABZAAAAAACZAAAAAAASAAAAAAAZAAAAAABZAAAAAAAZAAAAAABZAAAAAACZAAAAAACZAAAAAABcQAAAAAAXwAAAAABXgAAAAADXgAAAAABWgAAAAACcQAAAAAAcQAAAAAAZAAAAAADZAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAZAAAAAADSAAAAAAAcQAAAAAAXwAAAAAAXgAAAAABXgAAAAADWgAAAAACZAAAAAADZAAAAAADZAAAAAABZAAAAAAASAAAAAAADgAAAAAADgAAAAAAcQAAAAAAWgAAAAAAXgAAAAAAXgAAAAAAXgAAAAACWgAAAAAAXgAAAAACXgAAAAADWgAAAAACZAAAAAABZAAAAAAAZAAAAAAAZAAAAAABSAAAAAAADgAAAAAADgAAAAAAcQAAAAAAXwAAAAADXwAAAAABXwAAAAABWgAAAAADXgAAAAAAXgAAAAABXgAAAAAAWgAAAAAAcQAAAAAAcQAAAAAAZAAAAAADZAAAAAADcQAAAAAAZAAAAAADSAAAAAAAcQAAAAAAXwAAAAABXwAAAAADXwAAAAACXgAAAAADXgAAAAADXgAAAAADXgAAAAACXgAAAAACZAAAAAADZAAAAAAAZAAAAAABZAAAAAABZAAAAAADDgAAAAAADgAAAAAAcQAAAAAAXwAAAAACXwAAAAAARwAAAAACcQAAAAAASAAAAAAAVAAAAAADSAAAAAAAcQAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: RgAAAAACXgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARgAAAAACXgAAAAABcAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAUwAAAAAAWAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAADcAAAAAAARgAAAAADXgAAAAABcAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADcAAAAAAARgAAAAABXgAAAAAAcAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAUwAAAAABUwAAAAADUwAAAAABcAAAAAAARgAAAAAAXgAAAAABcAAAAAAAcAAAAAAAEgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARgAAAAACXgAAAAABUwAAAAADYQAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAABWAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACRgAAAAACXgAAAAABUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAACYQAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABRgAAAAADXgAAAAABcAAAAAAAcAAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARgAAAAACXgAAAAABcAAAAAAAbQAAAAACbQAAAAAAbQAAAAAAbQAAAAACbQAAAAACcAAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAADcAAAAAAAUwAAAAADUwAAAAACXQAAAAADXgAAAAACcAAAAAAAbQAAAAAAbQAAAAACbQAAAAABbQAAAAABbQAAAAACcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAADcAAAAAAAUwAAAAADUwAAAAABXQAAAAADWQAAAAACcAAAAAAAbQAAAAAAbQAAAAADbQAAAAABbQAAAAAAbQAAAAADcAAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAUwAAAAABUwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAUwAAAAABWAAAAAAAUwAAAAACWAAAAAAAWAAAAAAAUwAAAAADUwAAAAACRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: RwAAAAABXwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARwAAAAABXwAAAAACcQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcQAAAAAAVAAAAAABWQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAACcQAAAAAARwAAAAABXwAAAAADcQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAADVAAAAAAAcQAAAAAARwAAAAAAXwAAAAACcQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcQAAAAAAVAAAAAADVAAAAAABcQAAAAAAVAAAAAACVAAAAAADVAAAAAACcQAAAAAARwAAAAADXwAAAAABcQAAAAAAcQAAAAAAEgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARwAAAAACXwAAAAACVAAAAAABYgAAAAABVAAAAAABVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAADVAAAAAADVAAAAAABWQAAAAAAVAAAAAABVAAAAAACVAAAAAABRwAAAAADXwAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAACYgAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABRwAAAAADXwAAAAACcQAAAAAAcQAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARwAAAAAAXwAAAAACcQAAAAAAbgAAAAADbgAAAAABbgAAAAACbgAAAAACbgAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAACcQAAAAAAVAAAAAAAVAAAAAAAXgAAAAABXwAAAAABcQAAAAAAbgAAAAADbgAAAAABbgAAAAAAbgAAAAAAbgAAAAACcQAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAADcQAAAAAAVAAAAAAAVAAAAAADXgAAAAAAWgAAAAADcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAADbgAAAAAAbgAAAAADcQAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAAAcQAAAAAAVAAAAAADVAAAAAADSAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAcQAAAAAAVAAAAAADWQAAAAAAVAAAAAABWQAAAAAAWQAAAAAAVAAAAAACVAAAAAADSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: XQAAAAADXgAAAAACRwAAAAAAGwAAAAADGwAAAAABGwAAAAABRwAAAAAAGgAAAAAAGgAAAAAAGgAAAAADGgAAAAACGgAAAAADcAAAAAAAPQAAAAAAHAAAAAADHAAAAAADXQAAAAABXgAAAAAAcAAAAAAARwAAAAAAGwAAAAAAGwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAHAAAAAADWQAAAAACWQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACXQAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAADWQAAAAADWQAAAAADXQAAAAABXQAAAAADXQAAAAACXQAAAAABXQAAAAAAXQAAAAAAXQAAAAACXQAAAAABXQAAAAABXQAAAAAAXQAAAAABXQAAAAAAXQAAAAADXQAAAAACWQAAAAAAWQAAAAADXQAAAAADXQAAAAAAXQAAAAACXQAAAAACXQAAAAADXQAAAAACXQAAAAAAXQAAAAABXQAAAAACXQAAAAAAXQAAAAABXQAAAAAAXQAAAAABXQAAAAADXgAAAAACXgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXgAAAAADXgAAAAAAcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAUwAAAAADUwAAAAADUwAAAAAAXgAAAAAAXgAAAAADcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAXgAAAAACXgAAAAACcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAUwAAAAABUwAAAAACcAAAAAAAUwAAAAACUwAAAAADUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADXgAAAAADXgAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAXgAAAAAAXgAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAXgAAAAAAXgAAAAADUwAAAAAAUwAAAAADUwAAAAAAYQAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABWAAAAAAAUwAAAAADUwAAAAAAUwAAAAACYQAAAAABXgAAAAACXgAAAAACcAAAAAAAcAAAAAAAPgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXgAAAAADXgAAAAADcAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAUwAAAAACUwAAAAABUwAAAAACcAAAAAAAXgAAAAACXgAAAAADcAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcAAAAAAAYQAAAAABUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAADcAAAAAAARgAAAAACXgAAAAADcAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcAAAAAAAWAAAAAAAUwAAAAABcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACcAAAAAAA + tiles: XgAAAAABXwAAAAADSAAAAAAAHAAAAAAAHAAAAAAAHAAAAAADSAAAAAAAGwAAAAACGwAAAAACGwAAAAADGwAAAAACGwAAAAACcQAAAAAAPgAAAAAAHQAAAAAAHQAAAAAAXgAAAAABXwAAAAADcQAAAAAASAAAAAAAHAAAAAADHAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAHQAAAAAAWgAAAAABWgAAAAAAXgAAAAACXgAAAAACXgAAAAABXgAAAAABXgAAAAADXgAAAAACXgAAAAABXgAAAAAAXgAAAAADXgAAAAADXgAAAAABXgAAAAABXgAAAAABXgAAAAACWgAAAAADWgAAAAADXgAAAAABXgAAAAABXgAAAAAAXgAAAAABXgAAAAAAXgAAAAABXgAAAAAAXgAAAAABXgAAAAADXgAAAAAAXgAAAAACXgAAAAAAXgAAAAABXgAAAAACWgAAAAAAWgAAAAADXgAAAAAAXgAAAAABXgAAAAAAXgAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAABXgAAAAACXgAAAAABXgAAAAAAXgAAAAACXgAAAAAAXgAAAAADXwAAAAAAXwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXwAAAAABXwAAAAABcQAAAAAAVAAAAAADVAAAAAABcQAAAAAAVAAAAAADVAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAADcQAAAAAAVAAAAAABVAAAAAAAVAAAAAACXwAAAAACXwAAAAACcQAAAAAAVAAAAAADVAAAAAAAcQAAAAAAVAAAAAABVAAAAAADcQAAAAAAVAAAAAAAVAAAAAABVAAAAAADcQAAAAAAVAAAAAACVAAAAAADVAAAAAAAXwAAAAACXwAAAAADcQAAAAAAVAAAAAADVAAAAAACcQAAAAAAVAAAAAADVAAAAAADcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAAAXwAAAAAAXwAAAAADcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAXwAAAAAAXwAAAAABVAAAAAADVAAAAAADVAAAAAADVAAAAAABVAAAAAACVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAAAVAAAAAABVAAAAAABVAAAAAADXwAAAAAAXwAAAAABVAAAAAACVAAAAAABVAAAAAADYgAAAAADVAAAAAADVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAWQAAAAAAVAAAAAACVAAAAAAAVAAAAAADYgAAAAAAXwAAAAADXwAAAAAAcQAAAAAAcQAAAAAAPwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXwAAAAACXwAAAAABcQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcQAAAAAAVAAAAAAAVAAAAAABcQAAAAAAVAAAAAAAVAAAAAACVAAAAAACcQAAAAAAXwAAAAABXwAAAAADcQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcQAAAAAAYgAAAAABVAAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAAAcQAAAAAARwAAAAABXwAAAAAAcQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcQAAAAAAWQAAAAAAVAAAAAADcQAAAAAAVAAAAAACVAAAAAACVAAAAAABcQAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: DAAAAAADDAAAAAADDAAAAAAADAAAAAAAHwAAAAADHwAAAAACDAAAAAADDAAAAAAADAAAAAABDAAAAAADDAAAAAAADAAAAAADcAAAAAAAWwAAAAADWwAAAAAAWwAAAAABDAAAAAABDAAAAAAADAAAAAADDAAAAAACHwAAAAACHwAAAAADDAAAAAABDAAAAAACDAAAAAABDAAAAAAADAAAAAAADAAAAAADcAAAAAAAWwAAAAADWwAAAAAAWwAAAAABDAAAAAACDAAAAAABDAAAAAABDAAAAAABHwAAAAACHwAAAAAADAAAAAABDAAAAAADDAAAAAAADAAAAAADDAAAAAAADAAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADAAAAAAADAAAAAACDAAAAAABDAAAAAADHwAAAAABHwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAADAAAAAADDAAAAAADDAAAAAACDAAAAAABHwAAAAAAHwAAAAADRwAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAHwAAAAADHwAAAAACDAAAAAABDAAAAAADDAAAAAADDAAAAAACHwAAAAADHwAAAAADOQAAAAAAOQAAAAAAHwAAAAACHwAAAAABHwAAAAAAHwAAAAACHwAAAAADHwAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAACHwAAAAACHwAAAAADHwAAAAABHwAAAAADOQAAAAAAOQAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAABHwAAAAABHwAAAAACRgAAAAAARgAAAAACRgAAAAACRgAAAAACHwAAAAABHwAAAAABOQAAAAAAOQAAAAAAHwAAAAADHwAAAAACOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAHwAAAAABHwAAAAACHwAAAAADHwAAAAAAHwAAAAAAHwAAAAABRwAAAAAAOQAAAAAAHwAAAAACHwAAAAACOQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAACHwAAAAADRwAAAAAAOQAAAAAAHwAAAAAAHwAAAAADOQAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAANwAAAAAANwAAAAAANwAAAAAARwAAAAAAHwAAAAAAHwAAAAACcAAAAAAAOQAAAAAAHwAAAAADHwAAAAABOQAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAHwAAAAABHwAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAALQAAAAAALQAAAAADLQAAAAACcAAAAAAAHwAAAAAAHwAAAAADcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAcAAAAAAALQAAAAACLQAAAAABLQAAAAACRwAAAAAAHwAAAAAAHwAAAAADPQAAAAAAPQAAAAAAJQAAAAACJQAAAAACJQAAAAAAJQAAAAABPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAALQAAAAADLQAAAAAALQAAAAACRwAAAAAAHwAAAAADHwAAAAADRwAAAAAAJQAAAAADJQAAAAAAJQAAAAABJQAAAAABJQAAAAABPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAALQAAAAABLQAAAAABLQAAAAAARwAAAAAAHwAAAAACHwAAAAADRwAAAAAAJQAAAAABJQAAAAABJQAAAAABJQAAAAADJQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAA + tiles: DAAAAAADDAAAAAAADAAAAAABDAAAAAABIAAAAAABIAAAAAACDAAAAAAADAAAAAADDAAAAAADDAAAAAABDAAAAAABDAAAAAAAcQAAAAAAXAAAAAACXAAAAAADXAAAAAAADAAAAAAADAAAAAABDAAAAAACDAAAAAADIAAAAAAAIAAAAAAADAAAAAACDAAAAAABDAAAAAACDAAAAAACDAAAAAADDAAAAAAAcQAAAAAAXAAAAAADXAAAAAABXAAAAAACDAAAAAACDAAAAAADDAAAAAAADAAAAAAAIAAAAAABIAAAAAAADAAAAAACDAAAAAAADAAAAAABDAAAAAACDAAAAAAADAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAADAAAAAACDAAAAAACDAAAAAAADAAAAAAAIAAAAAACIAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAADAAAAAADDAAAAAADDAAAAAABDAAAAAABIAAAAAABIAAAAAACSAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAIAAAAAADIAAAAAAADAAAAAAADAAAAAAADAAAAAACDAAAAAABIAAAAAAAIAAAAAADOgAAAAAAOgAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAACIAAAAAAAIAAAAAADIAAAAAAAIAAAAAABIAAAAAACIAAAAAADIAAAAAACIAAAAAABIAAAAAACIAAAAAAAOgAAAAAAOgAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAADIAAAAAAAIAAAAAADIAAAAAAAIAAAAAACRwAAAAAARwAAAAACRwAAAAAARwAAAAABIAAAAAABIAAAAAADOgAAAAAAOgAAAAAAIAAAAAABIAAAAAADOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAIAAAAAACIAAAAAABIAAAAAADIAAAAAACIAAAAAAAIAAAAAADSAAAAAAAOgAAAAAAIAAAAAAAIAAAAAADOgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAACIAAAAAADSAAAAAAAOgAAAAAAIAAAAAAAIAAAAAAAOgAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAASAAAAAAAIAAAAAACIAAAAAADcQAAAAAAOgAAAAAAIAAAAAAAIAAAAAAAOgAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAIAAAAAAAIAAAAAADOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAADLgAAAAADLgAAAAABcQAAAAAAIAAAAAACIAAAAAACcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKgAAAAAAcQAAAAAALgAAAAAALgAAAAABLgAAAAACSAAAAAAAIAAAAAADIAAAAAAAPgAAAAAAPgAAAAAAJgAAAAABJgAAAAADJgAAAAACJgAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAALgAAAAADLgAAAAACLgAAAAABSAAAAAAAIAAAAAACIAAAAAADSAAAAAAAJgAAAAAAJgAAAAAAJgAAAAABJgAAAAADJgAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAALgAAAAADLgAAAAAALgAAAAADSAAAAAAAIAAAAAADIAAAAAAASAAAAAAAJgAAAAAAJgAAAAACJgAAAAAAJgAAAAACJgAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: FQAAAAACFQAAAAAEFQAAAAAEFQAAAAAHVwAAAAAAVwAAAAACVgAAAAAAVgAAAAACVgAAAAAAcAAAAAAADAAAAAAADAAAAAAADAAAAAACDAAAAAABDAAAAAAADAAAAAADFQAAAAADFQAAAAAGFQAAAAAGFQAAAAADVwAAAAACVwAAAAABVgAAAAAAVgAAAAABVgAAAAAADAAAAAADDAAAAAACDAAAAAACDAAAAAABDAAAAAADDAAAAAACDAAAAAAAFQAAAAAEFQAAAAAHFQAAAAAHFQAAAAAHVwAAAAACVwAAAAACVgAAAAADVgAAAAAAVgAAAAABDAAAAAAADAAAAAADDAAAAAADDAAAAAACDAAAAAACDAAAAAABDAAAAAAAFQAAAAADFQAAAAAAFQAAAAACFQAAAAAHVwAAAAADVwAAAAACVgAAAAACVgAAAAACVgAAAAAARwAAAAAADAAAAAABDAAAAAABDAAAAAAADAAAAAACDAAAAAABDAAAAAADFQAAAAAEFQAAAAAHFQAAAAACFQAAAAAGVwAAAAACVwAAAAAAVgAAAAADVgAAAAABVgAAAAABRwAAAAAADAAAAAAADAAAAAACDAAAAAACDAAAAAACDAAAAAABDAAAAAACFQAAAAABFQAAAAACFQAAAAAGFQAAAAAHVwAAAAACVwAAAAABVgAAAAAAVgAAAAADVgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAFQAAAAADFQAAAAAFFQAAAAAFFQAAAAAGHAAAAAACHAAAAAACRwAAAAAAVgAAAAABVgAAAAADVgAAAAADVgAAAAAAVgAAAAABVgAAAAAAHwAAAAADHwAAAAACHwAAAAABFQAAAAAGFQAAAAADFQAAAAAEFQAAAAADHwAAAAABHwAAAAABHwAAAAAAVgAAAAAAVgAAAAADVgAAAAADVgAAAAAAVgAAAAAAVgAAAAADRgAAAAACRgAAAAABRgAAAAADFQAAAAAHFQAAAAADFQAAAAAEFQAAAAAHHAAAAAADHAAAAAABRwAAAAAAVgAAAAADVgAAAAABVgAAAAADVgAAAAABVgAAAAABVgAAAAACHwAAAAAAHwAAAAABHwAAAAAAFQAAAAADFQAAAAAGFQAAAAAAFQAAAAAHVwAAAAABVwAAAAAAVgAAAAABVgAAAAACVgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAFQAAAAAHFQAAAAABFQAAAAACFQAAAAAGVwAAAAADVwAAAAAAVgAAAAABVgAAAAADVgAAAAAAVgAAAAACcAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAFQAAAAAGFQAAAAAHFQAAAAAAFQAAAAAEVwAAAAACVwAAAAAAVgAAAAABVgAAAAADVgAAAAAAVgAAAAACcAAAAAAANwAAAAAAKgAAAAAAKgAAAAABNwAAAAAANwAAAAAAFQAAAAACFQAAAAAFFQAAAAAAFQAAAAAEVwAAAAABVwAAAAAAVgAAAAABVgAAAAACVgAAAAADVgAAAAACcAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAALQAAAAABFQAAAAADFQAAAAAEFQAAAAAGFQAAAAAGVwAAAAACVwAAAAADVgAAAAABVgAAAAADVgAAAAACVgAAAAADcAAAAAAANwAAAAAAKgAAAAACKgAAAAABNwAAAAAALQAAAAAAFQAAAAACFQAAAAAGFQAAAAAHFQAAAAAEVwAAAAACVwAAAAABVgAAAAADVgAAAAADVgAAAAAAVgAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAALQAAAAAAFQAAAAADFQAAAAAHFQAAAAAGFQAAAAAHcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAANwAAAAAAKgAAAAAAKgAAAAAANwAAAAAALQAAAAAD + tiles: FQAAAAABFQAAAAABFQAAAAAEFQAAAAAAWAAAAAAAWAAAAAAAVwAAAAAAVwAAAAAAVwAAAAABcQAAAAAADAAAAAAADAAAAAACDAAAAAACDAAAAAAADAAAAAABDAAAAAAAFQAAAAABFQAAAAAGFQAAAAABFQAAAAAHWAAAAAABWAAAAAABVwAAAAACVwAAAAADVwAAAAABDAAAAAAADAAAAAADDAAAAAABDAAAAAABDAAAAAACDAAAAAAADAAAAAABFQAAAAABFQAAAAAGFQAAAAAFFQAAAAAHWAAAAAADWAAAAAABVwAAAAACVwAAAAAAVwAAAAABDAAAAAACDAAAAAACDAAAAAABDAAAAAAADAAAAAABDAAAAAABDAAAAAAAFQAAAAAHFQAAAAAHFQAAAAACFQAAAAAGWAAAAAAAWAAAAAABVwAAAAAAVwAAAAABVwAAAAAASAAAAAAADAAAAAACDAAAAAADDAAAAAACDAAAAAABDAAAAAABDAAAAAABFQAAAAAHFQAAAAACFQAAAAACFQAAAAAHWAAAAAACWAAAAAADVwAAAAACVwAAAAABVwAAAAACSAAAAAAADAAAAAACDAAAAAAADAAAAAAADAAAAAAADAAAAAABDAAAAAAAFQAAAAAGFQAAAAADFQAAAAAEFQAAAAADWAAAAAAAWAAAAAAAVwAAAAACVwAAAAADVwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAFQAAAAAHFQAAAAABFQAAAAABFQAAAAAFHQAAAAAAHQAAAAADSAAAAAAAVwAAAAACVwAAAAADVwAAAAABVwAAAAADVwAAAAADVwAAAAACIAAAAAADIAAAAAACIAAAAAADFQAAAAADFQAAAAAEFQAAAAAAFQAAAAAAIAAAAAAAIAAAAAADIAAAAAADVwAAAAABVwAAAAADVwAAAAABVwAAAAACVwAAAAADVwAAAAACRwAAAAACRwAAAAADRwAAAAABFQAAAAAFFQAAAAAEFQAAAAAEFQAAAAAFHQAAAAAAHQAAAAABSAAAAAAAVwAAAAADVwAAAAABVwAAAAABVwAAAAADVwAAAAAAVwAAAAAAIAAAAAADIAAAAAACIAAAAAACFQAAAAAEFQAAAAADFQAAAAAFFQAAAAABWAAAAAAAWAAAAAADVwAAAAACVwAAAAADVwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAFQAAAAABFQAAAAAHFQAAAAAAFQAAAAADWAAAAAABWAAAAAABVwAAAAADVwAAAAADVwAAAAACVwAAAAADcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAFQAAAAAHFQAAAAAAFQAAAAABFQAAAAAAWAAAAAAAWAAAAAADVwAAAAACVwAAAAACVwAAAAABVwAAAAACcQAAAAAAOAAAAAAAKwAAAAABKwAAAAADOAAAAAAAOAAAAAAAFQAAAAAFFQAAAAAEFQAAAAAFFQAAAAAGWAAAAAABWAAAAAADVwAAAAABVwAAAAACVwAAAAADVwAAAAABcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAALgAAAAACFQAAAAAAFQAAAAAHFQAAAAAAFQAAAAAGWAAAAAAAWAAAAAADVwAAAAAAVwAAAAABVwAAAAABVwAAAAACcQAAAAAAOAAAAAAAKwAAAAABKwAAAAACOAAAAAAALgAAAAAAFQAAAAAEFQAAAAAFFQAAAAAEFQAAAAAGWAAAAAADWAAAAAAAVwAAAAACVwAAAAAAVwAAAAABVwAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAALgAAAAAAFQAAAAAAFQAAAAAEFQAAAAABFQAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOAAAAAAAKwAAAAACKwAAAAADOAAAAAAALgAAAAAC version: 6 -2,1: ind: -2,1 - tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAALBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAAHBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAEBwAAAAAABwAAAAAKBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAEBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: FAAAAAABFAAAAAAFFAAAAAAGFAAAAAAEFAAAAAABFAAAAAAAFAAAAAADFAAAAAACFAAAAAABFAAAAAACFAAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFAAAAAAEFAAAAAABFAAAAAABFAAAAAAEFAAAAAAAFAAAAAADFAAAAAAEFAAAAAAGFAAAAAAEFAAAAAADBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAFAAAAAAEFAAAAAACFAAAAAAEFAAAAAAGFAAAAAAEFAAAAAABFAAAAAABFAAAAAABFAAAAAAEBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAMFAAAAAAGFAAAAAADFAAAAAAFFAAAAAAGFAAAAAAFFAAAAAABFAAAAAADFAAAAAAEFAAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAKBwAAAAAAFAAAAAAFFAAAAAACFAAAAAAFFAAAAAADFAAAAAABFAAAAAAEFAAAAAACFAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAFAAAAAAEFAAAAAAFFAAAAAADFAAAAAADFAAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAEBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAHBwAAAAAABwAAAAABBwAAAAAFBwAAAAAABwAAAAAKBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAMBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAAAAAAAAAABwAAAAAGBwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAJBwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAJAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,0: ind: -3,0 - tiles: WwAAAAAAWwAAAAADWwAAAAACWwAAAAABWwAAAAADWwAAAAADWwAAAAABWwAAAAACWwAAAAADWwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAAWwAAAAACWwAAAAACWwAAAAADWwAAAAADWwAAAAADWwAAAAACWwAAAAAAWwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAWwAAAAACWwAAAAABWwAAAAABWwAAAAABcAAAAAAAWwAAAAADWwAAAAACWwAAAAACcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAARwAAAAAARwAAAAAARwAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAACcAAAAAAAWwAAAAAAWwAAAAABWwAAAAADcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAWwAAAAABWwAAAAAAWwAAAAABWwAAAAACcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAWwAAAAAAWwAAAAABWwAAAAAAWwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAWwAAAAADWwAAAAADWwAAAAADWwAAAAABcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAWwAAAAAAYQAAAAADWwAAAAADXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAWwAAAAADYQAAAAABYQAAAAACXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAWwAAAAAAWwAAAAACWwAAAAACXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAHXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAGBwAAAAAA + tiles: XAAAAAAAXAAAAAADXAAAAAABXAAAAAABXAAAAAADXAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAABSAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAXAAAAAABXAAAAAAAXAAAAAAAXAAAAAABXAAAAAABXAAAAAABXAAAAAAAXAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAXAAAAAABXAAAAAABXAAAAAACXAAAAAABcQAAAAAAXAAAAAADXAAAAAABXAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAASAAAAAAASAAAAAAASAAAAAAAXAAAAAACXAAAAAABXAAAAAACXAAAAAADcQAAAAAAXAAAAAADXAAAAAADXAAAAAADcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAXAAAAAACXAAAAAADXAAAAAAAXAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAXAAAAAACXAAAAAACXAAAAAACXAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAXAAAAAACXAAAAAABXAAAAAADXAAAAAADcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAXAAAAAAAYgAAAAADXAAAAAACYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAXAAAAAAAYgAAAAAAYgAAAAACYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAXAAAAAABXAAAAAADXAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAFAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAFAAAAAAFFAAAAAAGcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAFAAAAAACFAAAAAAAFAAAAAABFAAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAFAAAAAACFAAAAAADFAAAAAAEFAAAAAAFFAAAAAAC version: 6 -2,-4: ind: -2,-4 - tiles: cAAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACcAAAAAAASgAAAAAASgAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAABSgAAAAAASgAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAcAAAAAAAbgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAABHwAAAAAAHwAAAAADcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAAHwAAAAABHwAAAAADHwAAAAACcAAAAAAARwAAAAAARgAAAAABRgAAAAAARgAAAAACRgAAAAABRgAAAAACRgAAAAACRgAAAAABRwAAAAAARwAAAAAARwAAAAAARwAAAAAAHwAAAAADHwAAAAABHwAAAAACcAAAAAAARwAAAAAARgAAAAACHAAAAAACHAAAAAADHAAAAAADHAAAAAABHAAAAAADRgAAAAAARwAAAAAAGgAAAAADGgAAAAABGgAAAAACHwAAAAADHwAAAAADHwAAAAAAcAAAAAAARwAAAAAARgAAAAAAHAAAAAAAHAAAAAADHAAAAAADHAAAAAACHAAAAAAARgAAAAADRwAAAAAAGgAAAAACGgAAAAABGgAAAAABHwAAAAACHwAAAAACHwAAAAABGgAAAAACRwAAAAAARgAAAAAARgAAAAACRgAAAAAARgAAAAADRgAAAAAARgAAAAAARgAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAHwAAAAABHwAAAAADHwAAAAABcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAARgAAAAADRgAAAAABRgAAAAADRgAAAAADRwAAAAAAcAAAAAAARwAAAAAAIwAAAAACRwAAAAAAcAAAAAAAbgAAAAAA + tiles: cQAAAAAABwAAAAAABwAAAAAAFAAAAAADFAAAAAADFAAAAAABFAAAAAABFAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAACcQAAAAAASwAAAAAASwAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAADSwAAAAAASwAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAcQAAAAAAbwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAADIAAAAAACIAAAAAABcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAIAAAAAABIAAAAAAAIAAAAAAAcQAAAAAASAAAAAAARwAAAAACRwAAAAABRwAAAAACRwAAAAAARwAAAAADRwAAAAACRwAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAIAAAAAAAIAAAAAADIAAAAAADcQAAAAAASAAAAAAARwAAAAAAHQAAAAABHQAAAAADHQAAAAABHQAAAAAAHQAAAAAARwAAAAAASAAAAAAAGwAAAAABGwAAAAAAGwAAAAACIAAAAAABIAAAAAABIAAAAAABcQAAAAAASAAAAAAARwAAAAABHQAAAAADHQAAAAACHQAAAAACHQAAAAADHQAAAAADRwAAAAACSAAAAAAAGwAAAAACGwAAAAABGwAAAAADIAAAAAABIAAAAAAAIAAAAAABGwAAAAAASAAAAAAARwAAAAABRwAAAAABRwAAAAABRwAAAAABRwAAAAABRwAAAAAARwAAAAABSAAAAAAASAAAAAAASAAAAAAASAAAAAAAIAAAAAAAIAAAAAACIAAAAAADcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAARwAAAAACRwAAAAACRwAAAAACRwAAAAAASAAAAAAAcQAAAAAASAAAAAAAJAAAAAAASAAAAAAAcQAAAAAAbwAAAAAB version: 6 3,-2: ind: 3,-2 - tiles: HAAAAAADPQAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAXQAAAAAAXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAAAUwAAAAACUwAAAAACKgAAAAADUwAAAAACUwAAAAADUwAAAAADKgAAAAAAUwAAAAADXQAAAAADXQAAAAACXQAAAAACXQAAAAACXQAAAAAAXQAAAAAAXQAAAAADXQAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAABKgAAAAABUwAAAAADUwAAAAADUwAAAAAAXQAAAAACXQAAAAACXQAAAAAAXQAAAAABXQAAAAABXQAAAAADXQAAAAACXQAAAAABUwAAAAADUwAAAAAAKgAAAAABUwAAAAACUwAAAAAAUwAAAAABKgAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAARwAAAAAAUwAAAAABRwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAABUwAAAAABcAAAAAAAYQAAAAABcAAAAAAAVgAAAAAAVgAAAAADVgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAADcAAAAAAAWAAAAAAAcAAAAAAAVgAAAAAAVgAAAAABVgAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAADcAAAAAAAWAAAAAAAcAAAAAAAVgAAAAAAVgAAAAACVgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAWAAAAAAAUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAWAAAAAAAUwAAAAACcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAYQAAAAACUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAWAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HQAAAAACPgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAXgAAAAABXgAAAAACXgAAAAACXgAAAAAAXgAAAAADXgAAAAADXgAAAAACXgAAAAABVAAAAAACVAAAAAADKwAAAAACVAAAAAACVAAAAAACVAAAAAABKwAAAAAAVAAAAAADXgAAAAACXgAAAAAAXgAAAAAAXgAAAAABXgAAAAABXgAAAAABXgAAAAADXgAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAACKwAAAAADVAAAAAACVAAAAAACVAAAAAADXgAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAAAXgAAAAACXgAAAAADXgAAAAABVAAAAAABVAAAAAACKwAAAAABVAAAAAAAVAAAAAAAVAAAAAADKwAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAASAAAAAAAVAAAAAADSAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAYgAAAAADcQAAAAAAVwAAAAABVwAAAAABVwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAABcQAAAAAAWQAAAAAAcQAAAAAAVwAAAAABVwAAAAAAVwAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAABcQAAAAAAWQAAAAAAcQAAAAAAVwAAAAACVwAAAAACVwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAABVAAAAAABVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAVAAAAAACVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAAAWQAAAAAAVAAAAAACcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAYgAAAAADVAAAAAACVAAAAAADVAAAAAADcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYgAAAAADWQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-3: ind: 2,-3 - tiles: UwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABKgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAADcAAAAAAAKgAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAACUwAAAAACKgAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAADGgAAAAACGgAAAAABGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKgAAAAACcAAAAAAAGgAAAAAAGgAAAAACGgAAAAAAGgAAAAABGgAAAAABGgAAAAADGgAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAABGgAAAAACGgAAAAADGgAAAAAAGgAAAAABcAAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAKgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAKgAAAAADcAAAAAAAGwAAAAABGwAAAAACGwAAAAABRwAAAAAAGgAAAAADGgAAAAACGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGwAAAAACGwAAAAABGwAAAAAAGgAAAAABGgAAAAABGgAAAAADGgAAAAAAGgAAAAABGgAAAAACcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAXQAAAAACWQAAAAADcAAAAAAAGwAAAAABGwAAAAADGwAAAAAARwAAAAAAGgAAAAADGgAAAAABGgAAAAABGgAAAAACGgAAAAADcAAAAAAAPQAAAAAAHAAAAAADPQAAAAAAXQAAAAAAXgAAAAADGwAAAAACGwAAAAADGwAAAAAAGwAAAAABGgAAAAAAGgAAAAACGgAAAAADGgAAAAAAGgAAAAADGgAAAAACcAAAAAAAPQAAAAAAHAAAAAACPQAAAAAAXQAAAAAAXgAAAAADGwAAAAABGwAAAAAAGwAAAAAAGwAAAAACGgAAAAACGgAAAAAAGgAAAAACGgAAAAABGgAAAAAAGgAAAAABGgAAAAADHAAAAAADHAAAAAAAHAAAAAAA + tiles: VAAAAAABVAAAAAACVAAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAABVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAABVAAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAKwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAADZAAAAAABcQAAAAAAKwAAAAACcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAACZAAAAAACVAAAAAABKwAAAAADcQAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAADGwAAAAACGwAAAAACGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAABcQAAAAAAGwAAAAAAGwAAAAADGwAAAAABGwAAAAACGwAAAAAAGwAAAAACGwAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAACGwAAAAADGwAAAAABGwAAAAAAGwAAAAADGwAAAAACcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACKwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAKwAAAAADcQAAAAAAHAAAAAAAHAAAAAAAHAAAAAAASAAAAAAAGwAAAAAAGwAAAAABGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAHAAAAAABHAAAAAACHAAAAAABGwAAAAABGwAAAAADGwAAAAAAGwAAAAABGwAAAAAAGwAAAAABcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAXgAAAAAAWgAAAAADcQAAAAAAHAAAAAABHAAAAAADHAAAAAAASAAAAAAAGwAAAAABGwAAAAADGwAAAAABGwAAAAABGwAAAAABcQAAAAAAPgAAAAAAHQAAAAAAPgAAAAAAXgAAAAAAXwAAAAAAHAAAAAADHAAAAAAAHAAAAAAAHAAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAABGwAAAAACGwAAAAABcQAAAAAAPgAAAAAAHQAAAAADPgAAAAAAXgAAAAADXwAAAAADHAAAAAACHAAAAAADHAAAAAAAHAAAAAADGwAAAAABGwAAAAAAGwAAAAADGwAAAAAAGwAAAAAAGwAAAAACGwAAAAADHQAAAAADHQAAAAADHQAAAAAA version: 6 3,-3: ind: 3,-3 - tiles: UwAAAAADUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAADUwAAAAADKgAAAAABUwAAAAACUwAAAAABUwAAAAAAKgAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAADKgAAAAACUwAAAAACUwAAAAABUwAAAAADKgAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAADUwAAAAADKgAAAAAAUwAAAAACUwAAAAABUwAAAAABKgAAAAABUwAAAAABUwAAAAADYwAAAAADRwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAADYwAAAAADYwAAAAACYwAAAAABYwAAAAAAYwAAAAABYwAAAAAAYwAAAAACYwAAAAADcAAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAADYwAAAAADYwAAAAADYwAAAAAAYwAAAAAAYwAAAAACYwAAAAACYwAAAAACYwAAAAADcAAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAABUwAAAAADYwAAAAABYwAAAAACYwAAAAADYwAAAAABYwAAAAABYwAAAAAAYwAAAAAAYwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAADUwAAAAAAYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAADPQAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAADPQAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAADPQAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: VAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAACKwAAAAAAVAAAAAAAVAAAAAABVAAAAAADKwAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAABVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAABKwAAAAACVAAAAAACVAAAAAADVAAAAAABKwAAAAADVAAAAAADVAAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAKwAAAAABVAAAAAAAVAAAAAABVAAAAAABKwAAAAABVAAAAAACVAAAAAACZAAAAAACSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAZAAAAAABZAAAAAADZAAAAAABZAAAAAABZAAAAAADZAAAAAAAZAAAAAABZAAAAAACcQAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAADVAAAAAAAZAAAAAACZAAAAAAAZAAAAAABZAAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAACcQAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAABVAAAAAACZAAAAAAAZAAAAAABZAAAAAADZAAAAAADZAAAAAADZAAAAAABZAAAAAAAZAAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAACPgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAPgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAADPgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: WwAAAAACWwAAAAADXwAAAAAAXwAAAAAAXwAAAAAARwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAYwAAAAAAYwAAAAABWwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAABwAAAAAABwAAAAAAAAAAAAAAcAAAAAAAYwAAAAACYwAAAAACYwAAAAADYwAAAAAAYwAAAAADYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAARwAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAAAYwAAAAADYwAAAAAAYwAAAAAAYwAAAAACOQAAAAAAcAAAAAAAPQAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAOQAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAYwAAAAAAYwAAAAADYwAAAAABYwAAAAABcAAAAAAAYwAAAAACOQAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAACcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAYwAAAAADYwAAAAAAYwAAAAADYwAAAAACRwAAAAAAYwAAAAACOQAAAAAAOQAAAAAAUwAAAAABUwAAAAABUwAAAAACcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAYwAAAAADYwAAAAABYwAAAAADYwAAAAABRwAAAAAAYwAAAAADOQAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAADYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAYwAAAAAAYwAAAAABYwAAAAABYwAAAAACRwAAAAAAYwAAAAADKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAACYwAAAAACYwAAAAACYwAAAAABKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAYwAAAAABYwAAAAABYwAAAAABYwAAAAAAcAAAAAAAYwAAAAADKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAYwAAAAACcAAAAAAABwAAAAAABwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAYwAAAAACPQAAAAAABwAAAAAABwAAAAACXwAAAAAAXwAAAAAAPQAAAAAAcAAAAAAABwAAAAAEBwAAAAAHBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAYwAAAAAB + tiles: XAAAAAADXAAAAAACYAAAAAAAYAAAAAAAYAAAAAAASAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAZAAAAAABZAAAAAABXAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAABwAAAAAABwAAAAAAAAAAAAAAcQAAAAAAZAAAAAADZAAAAAADZAAAAAACZAAAAAADZAAAAAAAZAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAZAAAAAACZAAAAAABZAAAAAADZAAAAAAAZAAAAAACZAAAAAACOgAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAOgAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAZAAAAAABZAAAAAACZAAAAAABZAAAAAAAcQAAAAAAZAAAAAACOgAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAABcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAZAAAAAADZAAAAAADZAAAAAACZAAAAAADSAAAAAAAZAAAAAADOgAAAAAAOgAAAAAAVAAAAAACVAAAAAADVAAAAAADcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAZAAAAAACZAAAAAADZAAAAAABZAAAAAAASAAAAAAAZAAAAAABOgAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAABZAAAAAACZAAAAAACZAAAAAABZAAAAAACZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAZAAAAAADZAAAAAABZAAAAAADZAAAAAAASAAAAAAAZAAAAAAAKgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAZAAAAAACZAAAAAACZAAAAAABZAAAAAADZAAAAAABZAAAAAADZAAAAAABKgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAADgAAAAAADgAAAAAAcQAAAAAADgAAAAAAcQAAAAAAZAAAAAACKgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAADgAAAAAADgAAAAAAcQAAAAAADgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAADgAAAAAADgAAAAAAcQAAAAAADgAAAAAADgAAAAAAZAAAAAABcQAAAAAABwAAAAAJBwAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAABwAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAZAAAAAABPgAAAAAABwAAAAAABwAAAAAAYAAAAAAAYAAAAAAAPgAAAAAAcQAAAAAABwAAAAAABwAAAAAAcQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAAD version: 6 -2,-3: ind: -2,-3 - tiles: RwAAAAAARgAAAAAARwAAAAAAcAAAAAAARwAAAAAARgAAAAAARgAAAAADRgAAAAACRgAAAAABRwAAAAAAcAAAAAAARwAAAAAAIwAAAAABRwAAAAAAcAAAAAAAbgAAAAAARwAAAAAARgAAAAADRwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAAIwAAAAAAcAAAAAAAcAAAAAAAbgAAAAACRwAAAAAARgAAAAABRwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAIwAAAAABcAAAAAAAbgAAAAADbgAAAAABRwAAAAAARwAAAAAARwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAYQAAAAAAYQAAAAABcAAAAAAARwAAAAAAIwAAAAABGgAAAAACbgAAAAAAbgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAYQAAAAADcAAAAAAARwAAAAAAIwAAAAACcAAAAAAAbgAAAAACbgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAbgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAbgAAAAAAbgAAAAADUwAAAAABUwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACRwAAAAAAcAAAAAAARwAAAAAAUwAAAAADRwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAbgAAAAADbgAAAAACbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAACcAAAAAAAbgAAAAADbgAAAAACcAAAAAAAbgAAAAADbgAAAAACbgAAAAAAbgAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAABbgAAAAABbgAAAAAAcAAAAAAAUwAAAAAAUwAAAAACRwAAAAAARwAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAcAAAAAAAbgAAAAABbgAAAAACcAAAAAAAbgAAAAACbgAAAAADbgAAAAACcAAAAAAAFQAAAAABFQAAAAABFQAAAAACFQAAAAAFcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADcAAAAAAAbgAAAAAAbgAAAAABbgAAAAAAbgAAAAADbgAAAAAAbgAAAAACcAAAAAAAFQAAAAAHFQAAAAABFQAAAAAFFQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAACcAAAAAAAcAAAAAAA + tiles: SAAAAAAARwAAAAACSAAAAAAAcQAAAAAASAAAAAAARwAAAAACRwAAAAADRwAAAAACRwAAAAACSAAAAAAAcQAAAAAASAAAAAAAJAAAAAAASAAAAAAAcQAAAAAAbwAAAAAASAAAAAAARwAAAAABSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAAJAAAAAACcQAAAAAAcQAAAAAAbwAAAAABSAAAAAAARwAAAAADSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAJAAAAAADcQAAAAAAbwAAAAABbwAAAAACSAAAAAAASAAAAAAASAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYgAAAAAAYgAAAAABcQAAAAAASAAAAAAAJAAAAAADGwAAAAABbwAAAAADbwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYgAAAAABcQAAAAAASAAAAAAAJAAAAAABcQAAAAAAbwAAAAABbwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAbwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAbwAAAAADbwAAAAADVAAAAAABVAAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAACcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAASAAAAAAAcQAAAAAASAAAAAAAVAAAAAABSAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAAAVAAAAAADcQAAAAAAbwAAAAAAbwAAAAADbwAAAAAAbwAAAAABbwAAAAAAbwAAAAACcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAAAVAAAAAADcQAAAAAAbwAAAAADbwAAAAACcQAAAAAAbwAAAAACbwAAAAACbwAAAAABbwAAAAADVAAAAAABVAAAAAACVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbwAAAAACbwAAAAADbwAAAAABcQAAAAAAVAAAAAAAVAAAAAACSAAAAAAASAAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAACcQAAAAAAbwAAAAABbwAAAAABcQAAAAAAbwAAAAABbwAAAAABbwAAAAABcQAAAAAAFQAAAAADFQAAAAACFQAAAAAHFQAAAAACcQAAAAAAVAAAAAADVAAAAAABVAAAAAABcQAAAAAAbwAAAAABbwAAAAAAbwAAAAAAbwAAAAACbwAAAAAAbwAAAAAAcQAAAAAAFQAAAAABFQAAAAAGFQAAAAADFQAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbwAAAAADcQAAAAAAcQAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: bgAAAAADbgAAAAADbgAAAAADbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAACbgAAAAABbgAAAAABbgAAAAABbgAAAAAAbgAAAAABRwAAAAAAXgAAAAABXgAAAAAAUwAAAAADbgAAAAABbgAAAAADbgAAAAAAbgAAAAACbgAAAAADbgAAAAACbgAAAAAAbgAAAAADbgAAAAAAbgAAAAAAbgAAAAADbgAAAAAARwAAAAAAXgAAAAAAXgAAAAACUwAAAAAAbgAAAAACbgAAAAACbgAAAAACbgAAAAADbgAAAAABbgAAAAABbgAAAAAAbgAAAAADbgAAAAACbgAAAAABbgAAAAADbgAAAAAARwAAAAAAXgAAAAADXgAAAAADUwAAAAAAbgAAAAAAbgAAAAABbgAAAAADbgAAAAABbgAAAAAAbgAAAAADbgAAAAABbgAAAAAAbgAAAAABbgAAAAADbgAAAAADbgAAAAADbgAAAAAAXgAAAAAAXgAAAAADUwAAAAAAbgAAAAAAbgAAAAADbgAAAAACbgAAAAABbgAAAAAAbgAAAAADbgAAAAAAbgAAAAAAbgAAAAABbgAAAAAAbgAAAAADbgAAAAACRwAAAAAAXgAAAAABXgAAAAACUwAAAAAAbgAAAAABbgAAAAAAbgAAAAACbgAAAAACbgAAAAACbgAAAAABbgAAAAADbgAAAAAAbgAAAAABbgAAAAABbgAAAAABbgAAAAAARwAAAAAAXgAAAAAAXgAAAAACUwAAAAAAbgAAAAAAbgAAAAACbgAAAAABbgAAAAAAbgAAAAACbgAAAAAAbgAAAAADbgAAAAACbgAAAAADbgAAAAACbgAAAAADbgAAAAAARwAAAAAAXgAAAAABXgAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAADcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAABRgAAAAAARgAAAAAARgAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAACRgAAAAAARgAAAAADRgAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAAAHwAAAAAAHwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAACbQAAAAAAbQAAAAABHwAAAAADHwAAAAACDAAAAAABDAAAAAADDAAAAAACDAAAAAAADAAAAAADDAAAAAADcAAAAAAAWwAAAAADcAAAAAAAWwAAAAADbQAAAAACbQAAAAACbQAAAAAAbQAAAAAAHwAAAAACHwAAAAADDAAAAAACDAAAAAAADAAAAAADDAAAAAADDAAAAAADDAAAAAABcAAAAAAAWwAAAAADcAAAAAAAWwAAAAAAbQAAAAACbQAAAAABbQAAAAABbQAAAAABHwAAAAADHwAAAAADDAAAAAADDAAAAAABDAAAAAADDAAAAAADDAAAAAACDAAAAAACWwAAAAADWwAAAAABWwAAAAAAWwAAAAAB + tiles: bwAAAAACbwAAAAACbwAAAAADbwAAAAABbwAAAAACbwAAAAADbwAAAAADbwAAAAABbwAAAAAAbwAAAAADbwAAAAABbwAAAAABcQAAAAAAXwAAAAADXwAAAAABVAAAAAAAbwAAAAAAbwAAAAAAbwAAAAADbwAAAAACbwAAAAACbwAAAAABbwAAAAAAbwAAAAAAbwAAAAACbwAAAAADbwAAAAABbwAAAAAASAAAAAAAXwAAAAABXwAAAAACVAAAAAADbwAAAAACbwAAAAADbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAABbwAAAAADbwAAAAACbwAAAAABbwAAAAADbwAAAAADSAAAAAAAXwAAAAACXwAAAAACVAAAAAABbwAAAAAAbwAAAAABbwAAAAAAbwAAAAABbwAAAAAAbwAAAAACbwAAAAADbwAAAAADbwAAAAAAbwAAAAABbwAAAAAAbwAAAAAAbwAAAAAAXwAAAAADXwAAAAABVAAAAAACbwAAAAABbwAAAAABbwAAAAADbwAAAAABbwAAAAAAbwAAAAAAbwAAAAACbwAAAAACbwAAAAADbwAAAAAAbwAAAAADbwAAAAADSAAAAAAAXwAAAAACXwAAAAACVAAAAAABbwAAAAABbwAAAAACbwAAAAADbwAAAAABbwAAAAACbwAAAAAAbwAAAAADbwAAAAACbwAAAAABbwAAAAADbwAAAAACbwAAAAAASAAAAAAAXwAAAAACXwAAAAADVAAAAAADbwAAAAAAbwAAAAADbwAAAAAAbwAAAAACbwAAAAADbwAAAAACbwAAAAABbwAAAAABbwAAAAABbwAAAAABbwAAAAABbwAAAAACcQAAAAAAXwAAAAADXwAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAADVAAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAADVAAAAAADVAAAAAABVAAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAABVAAAAAADVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAACVAAAAAACVAAAAAABVAAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAAAVAAAAAADVAAAAAABRwAAAAADRwAAAAABRwAAAAABVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABRwAAAAADRwAAAAADRwAAAAABVAAAAAABVAAAAAACVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAACSAAAAAAASAAAAAAASAAAAAAASAAAAAAAIAAAAAABIAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABbgAAAAABbgAAAAACbgAAAAADIAAAAAADIAAAAAADDAAAAAACDAAAAAABDAAAAAADDAAAAAACDAAAAAADDAAAAAADcQAAAAAAXAAAAAADcQAAAAAAXAAAAAACbgAAAAACbgAAAAAAbgAAAAABbgAAAAACIAAAAAACIAAAAAABDAAAAAAADAAAAAACDAAAAAABDAAAAAACDAAAAAACDAAAAAACcQAAAAAAXAAAAAACcQAAAAAAXAAAAAABbgAAAAACbgAAAAACbgAAAAAAbgAAAAACIAAAAAADIAAAAAACDAAAAAADDAAAAAADDAAAAAADDAAAAAADDAAAAAABDAAAAAADXAAAAAAAXAAAAAACXAAAAAADXAAAAAAC version: 6 0,-3: ind: 0,-3 - tiles: UwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAACLQAAAAAALQAAAAAALQAAAAACLQAAAAACLQAAAAADLQAAAAAALQAAAAACLQAAAAACLQAAAAAALQAAAAAALQAAAAACLQAAAAABLQAAAAAAUwAAAAACUwAAAAABUwAAAAABLQAAAAAALQAAAAAALQAAAAADLQAAAAADLQAAAAABLQAAAAAALQAAAAABLQAAAAACLQAAAAACLQAAAAABLQAAAAACLQAAAAAALQAAAAACUwAAAAADUwAAAAAAUwAAAAADLQAAAAADLQAAAAACLQAAAAACLQAAAAAALQAAAAADLQAAAAABLQAAAAAALQAAAAAALQAAAAACLQAAAAAALQAAAAACLQAAAAADLQAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAABcAAAAAAAYwAAAAADYwAAAAAAYwAAAAADYwAAAAADYwAAAAABRwAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAUwAAAAAAUwAAAAADUwAAAAABcAAAAAAAYwAAAAAAYwAAAAACYwAAAAADYwAAAAABYwAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAUwAAAAACUwAAAAACUwAAAAAAcAAAAAAAYwAAAAADYwAAAAABYwAAAAACYwAAAAABYwAAAAACRwAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAYwAAAAADYwAAAAADYwAAAAACYwAAAAACYwAAAAADRwAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYwAAAAADYwAAAAACYwAAAAACYwAAAAADYwAAAAABYwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAYwAAAAACYwAAAAABcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAYwAAAAADYwAAAAAD + tiles: VAAAAAACVAAAAAADVAAAAAABVAAAAAABVAAAAAADVAAAAAADVAAAAAABVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAADVAAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAADVAAAAAADVAAAAAADVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAADLgAAAAACLgAAAAABLgAAAAACLgAAAAACLgAAAAABLgAAAAAALgAAAAACLgAAAAABLgAAAAAALgAAAAACLgAAAAADLgAAAAABLgAAAAADVAAAAAABVAAAAAACVAAAAAAALgAAAAACLgAAAAACLgAAAAABLgAAAAAALgAAAAACLgAAAAAALgAAAAACLgAAAAABLgAAAAACLgAAAAACLgAAAAACLgAAAAAALgAAAAACVAAAAAACVAAAAAADVAAAAAACLgAAAAADLgAAAAABLgAAAAABLgAAAAACLgAAAAADLgAAAAAALgAAAAADLgAAAAADLgAAAAABLgAAAAABLgAAAAAALgAAAAACLgAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAACVAAAAAABVAAAAAADVAAAAAACVAAAAAABVAAAAAAAVAAAAAADVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAABcQAAAAAAZAAAAAAAZAAAAAACZAAAAAABZAAAAAAAZAAAAAADSAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAVAAAAAABVAAAAAAAVAAAAAACcQAAAAAAZAAAAAABZAAAAAADZAAAAAADZAAAAAADZAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAVAAAAAABVAAAAAADVAAAAAACcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAACZAAAAAAAZAAAAAAASAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAVAAAAAABVAAAAAAAVAAAAAACcQAAAAAAZAAAAAADZAAAAAADZAAAAAADZAAAAAACZAAAAAACSAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAABwAAAAAJAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAZAAAAAACZAAAAAACZAAAAAAAZAAAAAACZAAAAAAAZAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAZAAAAAACZAAAAAACcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAZAAAAAAAZAAAAAAA version: 6 1,-3: ind: 1,-3 - tiles: UwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAADLQAAAAACLQAAAAADLQAAAAAALQAAAAADLQAAAAADLQAAAAADLQAAAAACLQAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAABLQAAAAADLQAAAAABLQAAAAAALQAAAAABLQAAAAABLQAAAAACLQAAAAABLQAAAAADUwAAAAABUwAAAAABSgAAAAAASgAAAAAASgAAAAAAUwAAAAADUwAAAAABUwAAAAAALQAAAAAALQAAAAADLQAAAAACLQAAAAAALQAAAAABLQAAAAABLQAAAAAALQAAAAABUwAAAAADUwAAAAACSgAAAAAASgAAAAAASgAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAACUwAAAAADSQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAXgAAAAABXgAAAAADRwAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAAAGgAAAAAAGgAAAAACRwAAAAAAXgAAAAACXgAAAAADXgAAAAABXgAAAAADSQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAGgAAAAAAGgAAAAAAGgAAAAABGgAAAAAAGgAAAAACGgAAAAADGgAAAAACXgAAAAADXgAAAAAAXgAAAAADXgAAAAABSQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAABGgAAAAACGgAAAAADRwAAAAAAXgAAAAAAXgAAAAACXgAAAAACXgAAAAABUwAAAAABcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAXgAAAAABXgAAAAACXgAAAAAAXgAAAAADYwAAAAACcAAAAAAAYwAAAAABYwAAAAADYwAAAAAAYwAAAAAAYwAAAAACcAAAAAAAGgAAAAADGgAAAAADGgAAAAAARwAAAAAAXgAAAAADXgAAAAACXgAAAAAAWQAAAAADYwAAAAACYwAAAAACYwAAAAABYwAAAAADYwAAAAABYwAAAAACYwAAAAAAGgAAAAACGgAAAAADGgAAAAAAGgAAAAABRwAAAAAAXgAAAAADXgAAAAABXgAAAAAAXgAAAAABYwAAAAADcAAAAAAAYwAAAAABYwAAAAABYwAAAAADYwAAAAAAYwAAAAADcAAAAAAAGgAAAAABGgAAAAACGgAAAAADRwAAAAAAWQAAAAABXQAAAAABXQAAAAABWQAAAAAB + tiles: VAAAAAADVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAACVAAAAAADVAAAAAADVAAAAAACVAAAAAACVAAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAADVAAAAAADVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAACVAAAAAAALgAAAAACLgAAAAADLgAAAAAALgAAAAADLgAAAAAALgAAAAABLgAAAAAALgAAAAADVAAAAAADVAAAAAABVAAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAACVAAAAAADLgAAAAABLgAAAAADLgAAAAADLgAAAAAALgAAAAAALgAAAAAALgAAAAADLgAAAAABVAAAAAACVAAAAAABSwAAAAAASwAAAAAASwAAAAAAVAAAAAADVAAAAAADVAAAAAADLgAAAAACLgAAAAAALgAAAAADLgAAAAACLgAAAAADLgAAAAACLgAAAAAALgAAAAAAVAAAAAAAVAAAAAACSwAAAAAASwAAAAAASwAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAABVAAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAADVAAAAAABVAAAAAABVAAAAAAAVAAAAAADVAAAAAADVAAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAXwAAAAABXwAAAAAASAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAGwAAAAAAGwAAAAADGwAAAAABGwAAAAACGwAAAAACSAAAAAAAXwAAAAADXwAAAAADXwAAAAAAXwAAAAABSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAGwAAAAAAGwAAAAAAGwAAAAABGwAAAAABGwAAAAAAGwAAAAABGwAAAAADXwAAAAACXwAAAAABXwAAAAABXwAAAAADSgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAGwAAAAADGwAAAAADGwAAAAAAGwAAAAAAGwAAAAAASAAAAAAAXwAAAAACXwAAAAAAXwAAAAACXwAAAAAAVAAAAAADcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAXwAAAAADXwAAAAADXwAAAAAAXwAAAAAAZAAAAAADcQAAAAAAZAAAAAACZAAAAAADZAAAAAABZAAAAAADZAAAAAADcQAAAAAAGwAAAAADGwAAAAACGwAAAAADSAAAAAAAXwAAAAACXwAAAAACXwAAAAACWgAAAAAAZAAAAAABZAAAAAACZAAAAAADZAAAAAACZAAAAAACZAAAAAADZAAAAAADGwAAAAAAGwAAAAAAGwAAAAACGwAAAAABSAAAAAAAXwAAAAAAXwAAAAABXwAAAAAAXwAAAAAAZAAAAAAAcQAAAAAAZAAAAAABZAAAAAAAZAAAAAACZAAAAAAAZAAAAAABcQAAAAAAGwAAAAADGwAAAAADGwAAAAABSAAAAAAAWgAAAAAAXgAAAAABXgAAAAADWgAAAAAA version: 6 0,2: ind: 0,2 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAADcAAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAABPQAAAAAAPQAAAAAAUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAABPQAAAAAAPQAAAAAAUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAcAAAAAAARwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABPQAAAAAAPQAAAAAAUwAAAAACUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAIAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAARwAAAAAAIAAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAARwAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAARwAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAARwAAAAAAIAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAIAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAA + tiles: cQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADPgAAAAAAPgAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAADVAAAAAAAPgAAAAAAPgAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAADPgAAAAAAPgAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAABVAAAAAADVAAAAAABPgAAAAAAPgAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADPgAAAAAAPgAAAAAAcQAAAAAASAAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAAAVAAAAAABVAAAAAABPgAAAAAAPgAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,2: ind: 1,2 - tiles: PQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAWwAAAAACWwAAAAAAWwAAAAADUwAAAAACcAAAAAAAPQAAAAAAXwAAAAAAXwAAAAAAPQAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAARwAAAAAAUwAAAAADWwAAAAADWwAAAAACUwAAAAADcAAAAAAAXwAAAAAAMwAAAAAAMwAAAAAAXwAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAARwAAAAAAUwAAAAABWwAAAAAAWwAAAAAAUwAAAAABcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAARwAAAAAAGgAAAAABGgAAAAACRwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAARwAAAAAAbwAAAAAAbwAAAAAARwAAAAAAIAAAAAAAIAAAAAAARwAAAAAAcAAAAAAAIAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIAAAAAAARwAAAAAAbwAAAAAAbwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAcAAAAAAAIAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIAAAAAAARwAAAAAAbwAAAAAAbwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAcAAAAAAAIAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAcAAAAAAAIAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAcAAAAAAAIAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAcAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: VAAAAAABVAAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAACVAAAAAABVAAAAAADVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAADVAAAAAADVAAAAAADVAAAAAADVAAAAAACVAAAAAABVAAAAAADcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAADVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAPgAAAAAAPgAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA version: 6 2,2: ind: 2,2 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAA + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAA version: 6 -1,2: ind: -1,2 - tiles: bwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAbwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAbwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAA + tiles: cAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAA version: 6 0,3: ind: 0,3 - tiles: cAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,3: ind: -1,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-1: ind: -3,-1 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAFQAAAAAEFQAAAAAGFQAAAAAFFQAAAAAGFQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAWwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAbQAAAAACbQAAAAABbQAAAAABbQAAAAAAbQAAAAABcAAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAAWAAAAAAAXwAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAbQAAAAACcAAAAAAAbQAAAAAAcAAAAAAAbQAAAAADcAAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAASgAAAAAAUwAAAAACUwAAAAABcAAAAAAAUwAAAAABUwAAAAAAUwAAAAABRwAAAAAARwAAAAAARwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAASgAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABYQAAAAABYQAAAAADUwAAAAABWwAAAAABWwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAADRwAAAAAARwAAAAAAWwAAAAADXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAWwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAWwAAAAABWwAAAAABWwAAAAACWwAAAAABWwAAAAADWwAAAAADWwAAAAAAWwAAAAADWwAAAAAAWwAAAAADWwAAAAABWwAAAAADWwAAAAAAWwAAAAACWwAAAAAAWwAAAAACWwAAAAADWwAAAAACWwAAAAADWwAAAAABWwAAAAADWwAAAAADWwAAAAACWwAAAAAAWwAAAAABWwAAAAACWwAAAAADWwAAAAABWwAAAAABWwAAAAABRwAAAAAARwAAAAAARwAAAAAA + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAFQAAAAAAFQAAAAABFQAAAAABFQAAAAAGFQAAAAAGcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAXAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAbgAAAAABbgAAAAAAbgAAAAABbgAAAAADbgAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAWQAAAAAAYAAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAbgAAAAAAcQAAAAAAbgAAAAABcQAAAAAAbgAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASwAAAAAASwAAAAAAVAAAAAADVAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASwAAAAAASwAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAACYgAAAAADYgAAAAABVAAAAAACXAAAAAABXAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAAASAAAAAAASAAAAAAAXAAAAAABYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAXAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAXAAAAAACXAAAAAADXAAAAAACXAAAAAACXAAAAAADXAAAAAADXAAAAAABXAAAAAABXAAAAAABXAAAAAADXAAAAAADXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAACXAAAAAABXAAAAAACXAAAAAADXAAAAAADXAAAAAADXAAAAAABXAAAAAADXAAAAAAAXAAAAAADXAAAAAABXAAAAAAAXAAAAAABXAAAAAADXAAAAAAAXAAAAAACSAAAAAAASAAAAAAASAAAAAAA version: 6 -1,-4: ind: -1,-4 - tiles: cAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAEwAAAAAAcAAAAAAAEwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAEwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAcAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAcAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAcAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAcAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAEwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAXgAAAAACXgAAAAADXgAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAABRwAAAAAAGgAAAAABGgAAAAABGgAAAAAAGgAAAAACGgAAAAAAGgAAAAACXgAAAAAAXgAAAAABXgAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAACRwAAAAAAGgAAAAABGgAAAAABGgAAAAADGgAAAAAAGgAAAAAAGgAAAAACXgAAAAADXgAAAAABXgAAAAACSgAAAAAASgAAAAAASgAAAAAAUwAAAAACUwAAAAABUwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAXgAAAAABXgAAAAAAXgAAAAACSgAAAAAASgAAAAAASgAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAABRwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXgAAAAAAXgAAAAABXgAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAbgAAAAADbgAAAAAAbgAAAAACbgAAAAACXgAAAAADXgAAAAABXgAAAAACUwAAAAADUwAAAAABUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAAAbgAAAAAAbgAAAAABbgAAAAABbgAAAAAAbgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAC + tiles: cQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAEwAAAAAAcQAAAAAAEwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAEwAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAcQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAcQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABDwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAcQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAcQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAEwAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAXwAAAAABXwAAAAABXwAAAAADVAAAAAADVAAAAAACVAAAAAAAVAAAAAABVAAAAAACVAAAAAACSAAAAAAAGwAAAAABGwAAAAADGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAABXwAAAAACXwAAAAACXwAAAAACVAAAAAADVAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAACSAAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAABGwAAAAACGwAAAAAAXwAAAAACXwAAAAACXwAAAAAASwAAAAAASwAAAAAASwAAAAAAVAAAAAABVAAAAAACVAAAAAACcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAXwAAAAAAXwAAAAABXwAAAAABSwAAAAAASwAAAAAASwAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAACSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXwAAAAAAXwAAAAABXwAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAbwAAAAABbwAAAAADbwAAAAAAbwAAAAAAXwAAAAABXwAAAAACXwAAAAADVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAACVAAAAAACbwAAAAACbwAAAAAAbwAAAAABbwAAAAAAbwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAC version: 6 0,-4: ind: 0,-4 - tiles: XwAAAAAAGgAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAGgAAAAACGgAAAAABGgAAAAADGgAAAAAAGgAAAAABGgAAAAADGgAAAAABGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAIAAAAAAAGgAAAAACGgAAAAABGgAAAAAAIAAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAAAGgAAAAABGgAAAAACGgAAAAAAGgAAAAADGgAAAAAAGgAAAAACcAAAAAAAIAAAAAAAGgAAAAAAGgAAAAAAGgAAAAABIAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAACIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAADcAAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAGgAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAACbQAAAAAAcAAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAGgAAAAABcAAAAAAAGgAAAAAAGgAAAAACGgAAAAABGgAAAAACGgAAAAACcAAAAAAAbQAAAAAAbQAAAAACbQAAAAABcAAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAGgAAAAACcAAAAAAAGgAAAAABGgAAAAACGgAAAAAAGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAcAAAAAAAGgAAAAABcAAAAAAAGgAAAAABGgAAAAADGgAAAAADGgAAAAADGgAAAAACcAAAAAAAbQAAAAAAbQAAAAABbQAAAAABcAAAAAAAbQAAAAABbQAAAAAAbQAAAAABbQAAAAADcAAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAAAGgAAAAADGgAAAAABcAAAAAAAbQAAAAAAbQAAAAADbQAAAAAAbQAAAAACbQAAAAACbQAAAAAAbQAAAAABbQAAAAACGgAAAAABGgAAAAADGgAAAAABGgAAAAAAGgAAAAABGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAADbQAAAAACbQAAAAADGgAAAAABGgAAAAADGgAAAAACGgAAAAADGgAAAAABGgAAAAACGgAAAAACcAAAAAAAbQAAAAABbQAAAAADcAAAAAAAbQAAAAACbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAcAAAAAAARwAAAAAAGgAAAAADRwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAACbQAAAAADbQAAAAACbQAAAAAAbQAAAAACbQAAAAAAbQAAAAADUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAACbQAAAAABbQAAAAABbQAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAbQAAAAADbQAAAAACbQAAAAADbQAAAAABbQAAAAADbQAAAAACbQAAAAABbQAAAAACUwAAAAADUwAAAAACUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAADcAAAAAAAbQAAAAABbQAAAAADbQAAAAACbQAAAAABbQAAAAACbQAAAAAAbQAAAAAAbQAAAAADUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAbQAAAAAARwAAAAAAcAAAAAAA + tiles: YAAAAAAAGwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAGwAAAAADGwAAAAACGwAAAAADGwAAAAAAGwAAAAABGwAAAAAAGwAAAAAAGwAAAAABGwAAAAADcQAAAAAAcQAAAAAAIQAAAAAAGwAAAAAAGwAAAAADGwAAAAAAIQAAAAAAcQAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAABGwAAAAABGwAAAAABGwAAAAABGwAAAAAAGwAAAAADcQAAAAAAIQAAAAAAGwAAAAADGwAAAAADGwAAAAABIQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAADIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAAbgAAAAACbgAAAAAAbgAAAAADcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAGwAAAAADcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAADcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAGwAAAAACcQAAAAAAGwAAAAABGwAAAAABGwAAAAADGwAAAAAAGwAAAAADcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAABcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAGwAAAAAAcQAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAACGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACcQAAAAAAGwAAAAAAcQAAAAAAGwAAAAAAGwAAAAADGwAAAAABGwAAAAACGwAAAAABcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAbgAAAAACbgAAAAACbgAAAAADbgAAAAABcQAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAAAGwAAAAACGwAAAAABcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAABbgAAAAAAbgAAAAACbgAAAAAAbgAAAAACGwAAAAABGwAAAAADGwAAAAADGwAAAAADGwAAAAADGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAbgAAAAACcQAAAAAAcQAAAAAAbgAAAAACbgAAAAABbgAAAAADbgAAAAABGwAAAAABGwAAAAAAGwAAAAABGwAAAAACGwAAAAACGwAAAAAAGwAAAAACcQAAAAAAbgAAAAACbgAAAAACcQAAAAAAbgAAAAACbgAAAAADbgAAAAADbgAAAAADbgAAAAACcQAAAAAAcQAAAAAASAAAAAAAGwAAAAACSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABbgAAAAADbgAAAAADbgAAAAABbgAAAAAAbgAAAAADbgAAAAADbgAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABbgAAAAABbgAAAAACbgAAAAAAbgAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAADcQAAAAAAbgAAAAAAbgAAAAACbgAAAAADbgAAAAABbgAAAAAAbgAAAAADbgAAAAACbgAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAABVAAAAAAAcQAAAAAAbgAAAAACbgAAAAAAbgAAAAABbgAAAAAAbgAAAAACbgAAAAADbgAAAAAAbgAAAAABVAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAbgAAAAAASAAAAAAAcQAAAAAA version: 6 1,-4: ind: 1,-4 - tiles: GgAAAAADGgAAAAAAGgAAAAACGgAAAAADGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAABGgAAAAADGgAAAAADGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAABGgAAAAACGgAAAAAAGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAADHgAAAAADGgAAAAADGgAAAAACcAAAAAAAbgAAAAACbgAAAAADbgAAAAADbgAAAAACbgAAAAACbgAAAAACbgAAAAACbgAAAAABSQAAAAAAcAAAAAAAGgAAAAADGgAAAAAAHgAAAAAAGgAAAAABGgAAAAABcAAAAAAAbgAAAAACbgAAAAABbgAAAAACbgAAAAACbgAAAAACbgAAAAAAbgAAAAAAbgAAAAABSQAAAAAAcAAAAAAAGgAAAAADGgAAAAAAHgAAAAAAGgAAAAADGgAAAAAAcAAAAAAAbgAAAAAAbgAAAAACbgAAAAACbgAAAAAAbgAAAAACbgAAAAACbgAAAAAAbgAAAAADSQAAAAAAcAAAAAAAGgAAAAADGgAAAAAAHgAAAAACGgAAAAAAGgAAAAABcAAAAAAAbgAAAAACbgAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAADbgAAAAABbgAAAAABcAAAAAAAcAAAAAAAGgAAAAACGgAAAAADHgAAAAADGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAbgAAAAADbgAAAAABbgAAAAACbQAAAAACcAAAAAAAGgAAAAAAGgAAAAABHgAAAAADGgAAAAACGgAAAAADcAAAAAAAGgAAAAADGgAAAAABGgAAAAADcAAAAAAAbgAAAAADbgAAAAADbgAAAAADbgAAAAACbQAAAAACbQAAAAACGgAAAAABGgAAAAABGgAAAAADGgAAAAACGgAAAAAAGgAAAAAAGgAAAAABHgAAAAACGgAAAAACcAAAAAAAbgAAAAABbgAAAAADbgAAAAAAbgAAAAADbQAAAAACcAAAAAAAGgAAAAACGgAAAAADGgAAAAACGgAAAAAAGgAAAAAARwAAAAAAGgAAAAAAHgAAAAACGgAAAAABcAAAAAAAbgAAAAABbgAAAAAAbgAAAAAAbgAAAAADbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAACcAAAAAAAbgAAAAAAbgAAAAABbgAAAAACbgAAAAABbQAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAADGgAAAAACGgAAAAADcAAAAAAARwAAAAAAGgAAAAACRwAAAAAAcAAAAAAAbgAAAAABbgAAAAACbgAAAAACbgAAAAABbQAAAAACcAAAAAAAGgAAAAAAHgAAAAADHgAAAAADHgAAAAAAGgAAAAABUwAAAAABGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAACbQAAAAACcAAAAAAAGgAAAAAAHgAAAAADHgAAAAABHgAAAAACGgAAAAADRwAAAAAAGgAAAAACHgAAAAAAGgAAAAABcAAAAAAAbgAAAAACbgAAAAADbgAAAAACbgAAAAADbQAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAACGgAAAAAAGgAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAbgAAAAADbgAAAAAAbgAAAAADbgAAAAADcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAGgAAAAAARwAAAAAAcAAAAAAARwAAAAAAGgAAAAACRwAAAAAAcAAAAAAAcAAAAAAARwAAAAAAbgAAAAADRwAAAAAA + tiles: GwAAAAABGwAAAAADGwAAAAADGwAAAAAAGwAAAAAAGwAAAAABGwAAAAADGwAAAAACGwAAAAABGwAAAAACGwAAAAAAGwAAAAACGwAAAAAAGwAAAAACcQAAAAAAcQAAAAAAGwAAAAABGwAAAAABGwAAAAABGwAAAAAAGwAAAAADGwAAAAADGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAABHwAAAAAAGwAAAAACGwAAAAABcQAAAAAAbwAAAAABbwAAAAABbwAAAAADbwAAAAABbwAAAAACbwAAAAAAbwAAAAABbwAAAAACSgAAAAAAcQAAAAAAGwAAAAACGwAAAAAAHwAAAAAAGwAAAAADGwAAAAAAcQAAAAAAbwAAAAAAbwAAAAADbwAAAAACbwAAAAAAbwAAAAAAbwAAAAABbwAAAAACbwAAAAABSgAAAAAAcQAAAAAAGwAAAAADGwAAAAABHwAAAAABGwAAAAADGwAAAAAAcQAAAAAAbwAAAAAAbwAAAAABbwAAAAACbwAAAAACbwAAAAADbwAAAAACbwAAAAABbwAAAAABSgAAAAAAcQAAAAAAGwAAAAACGwAAAAABHwAAAAACGwAAAAABGwAAAAACcQAAAAAAbwAAAAADbwAAAAABbwAAAAAAbwAAAAAAbwAAAAADbwAAAAABbwAAAAAAbwAAAAABcQAAAAAAcQAAAAAAGwAAAAABGwAAAAABHwAAAAADGwAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAbwAAAAAAbwAAAAABbwAAAAABbgAAAAACcQAAAAAAGwAAAAADGwAAAAACHwAAAAABGwAAAAACGwAAAAADcQAAAAAAGwAAAAADGwAAAAAAGwAAAAACcQAAAAAAbwAAAAADbwAAAAADbwAAAAACbwAAAAADbgAAAAAAbgAAAAACGwAAAAAAGwAAAAACGwAAAAABGwAAAAAAGwAAAAADGwAAAAACGwAAAAABHwAAAAADGwAAAAACcQAAAAAAbwAAAAADbwAAAAACbwAAAAAAbwAAAAAAbgAAAAAAcQAAAAAAGwAAAAACGwAAAAABGwAAAAACGwAAAAACGwAAAAADSAAAAAAAGwAAAAADHwAAAAAAGwAAAAAAcQAAAAAAbwAAAAABbwAAAAADbwAAAAAAbwAAAAAAbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAGwAAAAADcQAAAAAAcQAAAAAAGwAAAAABGwAAAAACGwAAAAACcQAAAAAAbwAAAAADbwAAAAADbwAAAAAAbwAAAAABbgAAAAABcQAAAAAAGwAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAABcQAAAAAASAAAAAAAGwAAAAADSAAAAAAAcQAAAAAAbwAAAAACbwAAAAADbwAAAAAAbwAAAAABbgAAAAADcQAAAAAAGwAAAAABHwAAAAACHwAAAAADHwAAAAABGwAAAAACVAAAAAABGwAAAAACGwAAAAABGwAAAAABcQAAAAAAbwAAAAACbwAAAAACbwAAAAACbwAAAAACbgAAAAABcQAAAAAAGwAAAAADHwAAAAACHwAAAAACHwAAAAACGwAAAAADSAAAAAAAGwAAAAADHwAAAAAAGwAAAAADcQAAAAAAbwAAAAACbwAAAAACbwAAAAACbwAAAAABbgAAAAADcQAAAAAAGwAAAAAAGwAAAAADGwAAAAABGwAAAAAAGwAAAAACcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAABcQAAAAAAbwAAAAAAbwAAAAABbwAAAAAAbwAAAAADcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAGwAAAAADSAAAAAAAcQAAAAAASAAAAAAAGwAAAAABSAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAbwAAAAADSAAAAAAA version: 6 -3,-2: ind: -3,-2 - tiles: cAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAHwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAFQAAAAACFQAAAAAFFQAAAAAAFQAAAAADcAAAAAAAcAAAAAAAXwAAAAAARwAAAAAAHwAAAAABHwAAAAADcAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAFQAAAAAAFQAAAAADFQAAAAAGFQAAAAACcAAAAAAAcAAAAAAAXwAAAAAARwAAAAAAHwAAAAADHwAAAAAAcAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAFQAAAAAEFQAAAAAFFQAAAAACFQAAAAAFcAAAAAAAcAAAAAAAXwAAAAAARwAAAAAAHwAAAAADHwAAAAACcAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAFQAAAAADFQAAAAAEFQAAAAACFQAAAAAFcAAAAAAAcAAAAAAAXwAAAAAARwAAAAAAHwAAAAACHwAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAFQAAAAABFQAAAAAHFQAAAAAFFQAAAAAFRwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAHwAAAAABHwAAAAADcAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAFQAAAAACFQAAAAAAFQAAAAADFQAAAAAARwAAAAAAcAAAAAAAXwAAAAAARwAAAAAAHwAAAAACHwAAAAABcAAAAAAAIAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAFQAAAAABFQAAAAAEFQAAAAAFFQAAAAAHRwAAAAAAcAAAAAAAXwAAAAAARwAAAAAAHwAAAAABHwAAAAABcAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAFQAAAAAEFQAAAAACFQAAAAAHFQAAAAABRwAAAAAAcAAAAAAAXwAAAAAARwAAAAAAHwAAAAAAHwAAAAACIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAFQAAAAABFQAAAAAEFQAAAAAEFQAAAAAHRwAAAAAAcAAAAAAAXwAAAAAARwAAAAAAHwAAAAAAHwAAAAACcAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAFQAAAAAGFQAAAAABFQAAAAAFFQAAAAAERwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAFQAAAAADFQAAAAAGFQAAAAACFQAAAAACRwAAAAAAcAAAAAAAXwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAFQAAAAAFFQAAAAAHFQAAAAAHFQAAAAAHRwAAAAAAcAAAAAAAXwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAFQAAAAABFQAAAAAEFQAAAAAGFQAAAAACcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAFQAAAAAEFQAAAAAAFQAAAAABFQAAAAAHcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAFQAAAAAAFQAAAAAFFQAAAAABFQAAAAAHFQAAAAAGcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAFQAAAAAHFQAAAAABFQAAAAABFQAAAAACFQAAAAAB + tiles: cQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAIAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAFQAAAAAGFQAAAAAHFQAAAAAHFQAAAAAGcQAAAAAAcQAAAAAAYAAAAAAASAAAAAAAIAAAAAABIAAAAAABcQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAFQAAAAADFQAAAAADFQAAAAAAFQAAAAAEcQAAAAAAcQAAAAAAYAAAAAAASAAAAAAAIAAAAAABIAAAAAAAcQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAFQAAAAAEFQAAAAADFQAAAAAHFQAAAAABcQAAAAAAcQAAAAAAYAAAAAAASAAAAAAAIAAAAAAAIAAAAAACcQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAFQAAAAAGFQAAAAAEFQAAAAABFQAAAAADcQAAAAAAcQAAAAAAYAAAAAAASAAAAAAAIAAAAAABIAAAAAABIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAFQAAAAACFQAAAAAHFQAAAAABFQAAAAACSAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAIAAAAAABIAAAAAACcQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAFQAAAAAHFQAAAAAFFQAAAAACFQAAAAAASAAAAAAAcQAAAAAAYAAAAAAASAAAAAAAIAAAAAACIAAAAAABcQAAAAAAIQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAFQAAAAABFQAAAAAHFQAAAAABFQAAAAAGSAAAAAAAcQAAAAAAYAAAAAAASAAAAAAAIAAAAAAAIAAAAAAAcQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAFQAAAAADFQAAAAAEFQAAAAAEFQAAAAAHSAAAAAAAcQAAAAAAYAAAAAAASAAAAAAAIAAAAAACIAAAAAADIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAFQAAAAAFFQAAAAABFQAAAAAEFQAAAAAASAAAAAAAcQAAAAAAYAAAAAAASAAAAAAAIAAAAAADIAAAAAACcQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAFQAAAAABFQAAAAAFFQAAAAAEFQAAAAACSAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAFQAAAAABFQAAAAADFQAAAAAGFQAAAAABSAAAAAAAcQAAAAAAYAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAFQAAAAABFQAAAAADFQAAAAAGFQAAAAACSAAAAAAAcQAAAAAAYAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAFQAAAAAAFQAAAAAEFQAAAAACFQAAAAAFcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAFQAAAAAFFQAAAAABFQAAAAAEFQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAFQAAAAACFQAAAAADFQAAAAADFQAAAAAGFQAAAAABcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAFQAAAAAAFQAAAAAFFQAAAAACFQAAAAAAFQAAAAAD version: 6 3,-1: ind: 3,-1 - tiles: YQAAAAADWAAAAAAAcAAAAAAAYQAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAYQAAAAAAUwAAAAADcAAAAAAAUwAAAAACcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAYQAAAAAAUwAAAAABUwAAAAAAUwAAAAABWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAUwAAAAACWAAAAAAAWAAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAUwAAAAABWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAUwAAAAACUwAAAAADcAAAAAAAWAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAUwAAAAABWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAARwAAAAAAAAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAUwAAAAACWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAARwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: YgAAAAADWQAAAAAAcQAAAAAAYgAAAAADcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAYgAAAAAAVAAAAAADcQAAAAAAVAAAAAADcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAYgAAAAAAVAAAAAABVAAAAAADVAAAAAACWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAVAAAAAACWQAAAAAAWQAAAAAAVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAVAAAAAACWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAVAAAAAACVAAAAAACcQAAAAAAWQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAVAAAAAABVAAAAAAAcQAAAAAAVAAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAASAAAAAAAAAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAVAAAAAABWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAASAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-2: ind: 4,-2 - tiles: bwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAKgAAAAABUwAAAAABKgAAAAADRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAADRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAABKgAAAAADUwAAAAADUwAAAAABUwAAAAABKgAAAAADUwAAAAACUwAAAAACUwAAAAABKgAAAAADUwAAAAABRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAABUwAAAAACUwAAAAACUwAAAAADKgAAAAABUwAAAAACUwAAAAADUwAAAAADKgAAAAACUwAAAAAAUwAAAAAAUwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAACKgAAAAADUwAAAAAAUwAAAAACUwAAAAABKgAAAAABUwAAAAADUwAAAAACUwAAAAADKgAAAAAAUwAAAAADRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAABUwAAAAACcAAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAABcAAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAABRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAACcAAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAADcAAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAKwAAAAADVAAAAAADKwAAAAACSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAACSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAAAKwAAAAADVAAAAAADVAAAAAAAVAAAAAABKwAAAAADVAAAAAADVAAAAAABVAAAAAACKwAAAAABVAAAAAADSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAABVAAAAAABVAAAAAAAVAAAAAAAKwAAAAACVAAAAAAAVAAAAAAAVAAAAAAAKwAAAAAAVAAAAAADVAAAAAADVAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAADKwAAAAADVAAAAAAAVAAAAAABVAAAAAACKwAAAAAAVAAAAAACVAAAAAADVAAAAAABKwAAAAADVAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAABVAAAAAABVAAAAAAAVAAAAAADcQAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAACVAAAAAAAVAAAAAACVAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAACVAAAAAABSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAAAVAAAAAADVAAAAAABcQAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-3: ind: 4,-3 - tiles: UwAAAAADKgAAAAABUwAAAAADUwAAAAADUwAAAAACKgAAAAACUwAAAAAAUwAAAAACUwAAAAACKgAAAAACUwAAAAACKgAAAAABRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAABUwAAAAAAKgAAAAADUwAAAAAAUwAAAAACUwAAAAABKgAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAABRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAKgAAAAACUwAAAAADUwAAAAACUwAAAAADKgAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAABKgAAAAACUwAAAAADcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABcAAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAUwAAAAABUwAAAAAAUwAAAAABRwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAABKgAAAAAAUwAAAAADKgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAUwAAAAACUwAAAAAAUwAAAAACRwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACcAAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAAUwAAAAADUwAAAAADUwAAAAACRwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACKgAAAAADUwAAAAADRwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAARwAAAAAAUwAAAAADUwAAAAADUwAAAAAARwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAACRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAUwAAAAABUwAAAAAAUwAAAAACRwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAABKgAAAAADUwAAAAAAKgAAAAABRwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABKgAAAAABUwAAAAABcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAKgAAAAACUwAAAAAAKgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAUwAAAAAAUwAAAAABUwAAAAABcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAUwAAAAABKgAAAAAAUwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: VAAAAAADKwAAAAAAVAAAAAACVAAAAAACVAAAAAADKwAAAAACVAAAAAABVAAAAAADVAAAAAABKwAAAAAAVAAAAAADKwAAAAABSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAABVAAAAAABKwAAAAACVAAAAAABVAAAAAACVAAAAAAAKwAAAAACVAAAAAADVAAAAAACVAAAAAACVAAAAAABSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACKwAAAAAAVAAAAAACVAAAAAADVAAAAAADKwAAAAABVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAKwAAAAAAVAAAAAACcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAVAAAAAABVAAAAAABVAAAAAAASAAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAACKwAAAAABVAAAAAABKwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAVAAAAAACVAAAAAABVAAAAAACSAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAADVAAAAAABVAAAAAACVAAAAAADcQAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAAVAAAAAACVAAAAAAAVAAAAAADSAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAACVAAAAAABKwAAAAAAVAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASAAAAAAAVAAAAAACVAAAAAADVAAAAAADSAAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAACVAAAAAACVAAAAAADSAAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAADKwAAAAAAVAAAAAACKwAAAAAASAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABKwAAAAADVAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAADVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAKwAAAAACVAAAAAABKwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAABVAAAAAADVAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAABKwAAAAABVAAAAAACcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAADVAAAAAABVAAAAAABSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-4: ind: 2,-4 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAACXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACWAAAAAAAUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAWAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAbgAAAAADcAAAAAAASQAAAAAASQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAbQAAAAAAbgAAAAACcAAAAAAASQAAAAAASQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbQAAAAAAbgAAAAADcAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbQAAAAACbgAAAAACcAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbQAAAAADbgAAAAABcAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAEwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAD + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAADcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAACcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAABcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACWQAAAAAAVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACWQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAACcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACWQAAAAAAVAAAAAACVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAbwAAAAABcQAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAbgAAAAAAbwAAAAABcQAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAbgAAAAAAbwAAAAAAcQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAbgAAAAACbwAAAAACcQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAbgAAAAAAbwAAAAAAcQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAbgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAEwAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAD version: 6 1,-5: ind: 1,-5 - tiles: RwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAADGgAAAAADcAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAABGgAAAAACGgAAAAABGgAAAAADcAAAAAAAXwAAAAAAcAAAAAAAHAAAAAAAGgAAAAABcAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAACHwAAAAAAGgAAAAADGgAAAAACcAAAAAAAXwAAAAAAcAAAAAAAHAAAAAABGgAAAAAAcAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAcAAAAAAAGgAAAAADGgAAAAACIAAAAAAAIAAAAAAAIAAAAAAAGgAAAAABcAAAAAAAXwAAAAAAcAAAAAAAHAAAAAADGgAAAAACcAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAADIAAAAAAAGgAAAAACGgAAAAADcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAADGgAAAAABcAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAGgAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAADRwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAMwAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAABIAAAAAAAGgAAAAACGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAA + tiles: SAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAGwAAAAAAGwAAAAADcQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAACGwAAAAADGwAAAAACGwAAAAABcQAAAAAAYAAAAAAAcQAAAAAAHQAAAAACGwAAAAACcQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAAGwAAAAABGwAAAAACGwAAAAACIAAAAAACGwAAAAAAGwAAAAACcQAAAAAAYAAAAAAAcQAAAAAAHQAAAAAAGwAAAAABcQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAAGwAAAAAAGwAAAAACIQAAAAAAIQAAAAAAIQAAAAAAGwAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAHQAAAAADGwAAAAACcQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAADIQAAAAAAGwAAAAACGwAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAGwAAAAACGwAAAAADcQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAAGwAAAAABGwAAAAABIQAAAAAAIQAAAAAAIQAAAAAAGwAAAAABcQAAAAAAYAAAAAAAcQAAAAAAGwAAAAACSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAANAAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAADIQAAAAAAGwAAAAABGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAA version: 6 2,-5: ind: 2,-5 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-3: ind: -3,-3 - tiles: AAAAAAAAAAAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAGBwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAIcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADXwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAADcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbgAAAAACbgAAAAADbgAAAAACbgAAAAAAbgAAAAAAcAAAAAAARwAAAAAARwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAADRwAAAAAAUwAAAAADUwAAAAACXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbgAAAAACbgAAAAACbgAAAAACbgAAAAADbgAAAAACbgAAAAAAUwAAAAAAUwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbgAAAAACbgAAAAAAbgAAAAADbgAAAAAAbgAAAAABRwAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbgAAAAADbgAAAAABbgAAAAACcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbgAAAAABbgAAAAABbgAAAAACcAAAAAAAFQAAAAAHFQAAAAAEFQAAAAAGFQAAAAABXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAADbgAAAAABbgAAAAADcAAAAAAAFQAAAAABFQAAAAAHFQAAAAABFQAAAAAA + tiles: AAAAAAAAAAAAAAAABwAAAAAKBwAAAAAHFAAAAAACFAAAAAADFAAAAAADFAAAAAAEcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASwAAAAAASwAAAAAASwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAAAAAAFFAAAAAABFAAAAAAFFAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASwAAAAAASwAAAAAASwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABYAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbwAAAAABcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAbwAAAAADbwAAAAADbwAAAAADbwAAAAAAbwAAAAABcQAAAAAASAAAAAAASAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAbwAAAAACbwAAAAADbwAAAAACbwAAAAADbwAAAAACSAAAAAAAVAAAAAACVAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAbwAAAAAAbwAAAAACbwAAAAADbwAAAAADbwAAAAADbwAAAAABVAAAAAADVAAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAbwAAAAADbwAAAAACbwAAAAABbwAAAAAAbwAAAAABSAAAAAAAVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAbwAAAAAAbwAAAAABbwAAAAACcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAbwAAAAADbwAAAAAAbwAAAAAAcQAAAAAAFQAAAAADFQAAAAAFFQAAAAAFFQAAAAAEYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbwAAAAABbwAAAAADbwAAAAAAcQAAAAAAFQAAAAAEFQAAAAAGFQAAAAAHFQAAAAAE version: 6 -3,-4: ind: -3,-4 - tiles: BwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAXwAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAHwAAAAAABwAAAAAABwAAAAAEBwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAHwAAAAAABwAAAAAMBwAAAAAABwAAAAACBwAAAAALBwAAAAAABwAAAAAABwAAAAAMcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAHwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAAAAAAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAA + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAMBwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAEBwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAABwAAAAAKBwAAAAAABwAAAAACBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAABBwAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAIAAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAFBwAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAIAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAIAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAABBwAAAAAHBwAAAAAABwAAAAAHBwAAAAAFFAAAAAAGFAAAAAAAFAAAAAACFAAAAAAFcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAAAAAAAAABwAAAAAIBwAAAAAABwAAAAAAFAAAAAACFAAAAAADFAAAAAABFAAAAAAGcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAFFAAAAAAAFAAAAAACFAAAAAADFAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASwAAAAAASwAAAAAASwAAAAAAcQAAAAAA version: 6 0,-5: ind: 0,-5 - tiles: cAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAARwAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAARwAAAAAARwAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAARwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAARwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAABwAAAAAARwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAABwAAAAAABwAAAAAABwAAAAAHPQAAAAAAPQAAAAAAPQAAAAAABwAAAAAEBwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAPQAAAAAARwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAIBwAAAAAEBwAAAAAABwAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAADcAAAAAAAGgAAAAADGgAAAAAAGgAAAAADGgAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAARwAAAAAAGgAAAAAAGgAAAAADGgAAAAADRwAAAAAAGgAAAAACHAAAAAACHAAAAAACHAAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAEAAAAAAAARwAAAAAAGgAAAAAAGgAAAAABGgAAAAACRwAAAAAAGgAAAAABHAAAAAADGwAAAAABGwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAABwAAAAAAAAAAAAAARwAAAAAAGgAAAAADGgAAAAACGgAAAAAARwAAAAAAGgAAAAADHAAAAAAAHAAAAAACHAAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAACcAAAAAAAGgAAAAADGgAAAAABGgAAAAABGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAAGgAAAAADRwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAA + tiles: cQAAAAAAFAAAAAAGFAAAAAAAFAAAAAABFAAAAAACFAAAAAABSAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAFAAAAAAGFAAAAAABFAAAAAAGFAAAAAACFAAAAAAFSAAAAAAASAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAFAAAAAAFFAAAAAAFFAAAAAACFAAAAAABFAAAAAAGFAAAAAAASAAAAAAAFAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAFAAAAAABFAAAAAAAFAAAAAAGFAAAAAAGFAAAAAADFAAAAAABSAAAAAAAFAAAAAAFAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAFAAAAAADFAAAAAADPgAAAAAAPgAAAAAAPgAAAAAAFAAAAAACSAAAAAAAFAAAAAABAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAFAAAAAAGFAAAAAAAFAAAAAABPgAAAAAAPgAAAAAAPgAAAAAAFAAAAAABFAAAAAAEPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAFAAAAAAGFAAAAAAEFAAAAAADFAAAAAADFAAAAAAEFAAAAAAGFAAAAAAEPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAPgAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAPgAAAAAASAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAFAAAAAAGFAAAAAAFcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAANgAAAAAANgAAAAAANgAAAAAAcQAAAAAAFAAAAAADAAAAAAAAcQAAAAAAGwAAAAACGwAAAAACGwAAAAAAcQAAAAAAGwAAAAAAGwAAAAACGwAAAAADGwAAAAACcQAAAAAANgAAAAAANgAAAAAANgAAAAAAcQAAAAAAFAAAAAACAAAAAAAASAAAAAAAGwAAAAAAGwAAAAABGwAAAAAASAAAAAAAGwAAAAADHQAAAAABHQAAAAADHQAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAFAAAAAACAAAAAAAASAAAAAAAGwAAAAAAGwAAAAABGwAAAAACSAAAAAAAGwAAAAADHQAAAAAAHAAAAAACHAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAFAAAAAAGAAAAAAAASAAAAAAAGwAAAAAAGwAAAAADGwAAAAADSAAAAAAAGwAAAAADHQAAAAACHQAAAAACHQAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAADcQAAAAAAGwAAAAAAGwAAAAABGwAAAAABGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAAGwAAAAADSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAA version: 6 -1,-5: ind: -1,-5 - tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAABwAAAAAJBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAAPQAAAAAAPQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAcAAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAAPQAAAAAAPQAAAAAABwAAAAAAFAAAAAAFFAAAAAAAFAAAAAADBwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAACcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAFAAAAAAAFAAAAAAEFAAAAAAEFAAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAFAAAAAABFAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAARwAAAAAAFAAAAAAFFAAAAAADPQAAAAAAPQAAAAAAPQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAABwAAAAAAFAAAAAABFAAAAAADBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAPQAAAAAAPQAAAAAARwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFAAAAAAGFAAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAXwAAAAAAXwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAPQAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAPQAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAPQAAAAAA + tiles: FAAAAAABFAAAAAAEFAAAAAAGFAAAAAAFFAAAAAACFAAAAAABFAAAAAACFAAAAAAEFAAAAAAFcQAAAAAAFAAAAAAEFAAAAAAAFAAAAAAGFAAAAAAEFAAAAAABFAAAAAADFAAAAAAGFAAAAAABFAAAAAABFAAAAAAGFAAAAAADFAAAAAADFAAAAAABFAAAAAAAFAAAAAADcQAAAAAAFAAAAAACFAAAAAAGFAAAAAADFAAAAAAGPgAAAAAAPgAAAAAAFAAAAAAFFAAAAAAFFAAAAAACFAAAAAACFAAAAAADFAAAAAABFAAAAAACFAAAAAADFAAAAAAEcQAAAAAAFAAAAAACFAAAAAAFFAAAAAABFAAAAAAFPgAAAAAAPgAAAAAAFAAAAAABFAAAAAACFAAAAAAGFAAAAAADFAAAAAAGFAAAAAADFAAAAAADFAAAAAACFAAAAAAFcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAFAAAAAABFAAAAAADFAAAAAAGFAAAAAAFFAAAAAABFAAAAAAAFAAAAAAFFAAAAAAFFAAAAAAFcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAFAAAAAAFFAAAAAADFAAAAAADFAAAAAABFAAAAAAFFAAAAAACFAAAAAABFAAAAAADFAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAASAAAAAAAFAAAAAAGFAAAAAACPgAAAAAAPgAAAAAAPgAAAAAAFAAAAAADFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAGFAAAAAAAFAAAAAAAFAAAAAAGPgAAAAAAPgAAAAAAPgAAAAAAFAAAAAABFAAAAAAAFAAAAAAEFAAAAAABFAAAAAABFAAAAAAGFAAAAAAGFAAAAAABPgAAAAAAPgAAAAAASAAAAAAAFAAAAAAGFAAAAAAGFAAAAAABFAAAAAAEFAAAAAAEFAAAAAAGFAAAAAABFAAAAAAEFAAAAAAFFAAAAAAFFAAAAAAAFAAAAAAGFAAAAAADFAAAAAAEcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAFAAAAAAFFAAAAAADFAAAAAACFAAAAAAGcQAAAAAAFAAAAAADFAAAAAADFAAAAAAGFAAAAAABcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAFAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAPgAAAAAA version: 6 -4,0: ind: -4,0 - tiles: KgAAAAACKgAAAAACKgAAAAAAKgAAAAACKgAAAAADKgAAAAABKgAAAAABKgAAAAADXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAWwAAAAACKgAAAAABKgAAAAABKgAAAAADKgAAAAACKgAAAAAAKgAAAAACKgAAAAADKgAAAAACXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALwAAAAAALwAAAAACLwAAAAADWwAAAAABKgAAAAADKgAAAAACKgAAAAABKgAAAAACKgAAAAADKgAAAAAAKgAAAAADKgAAAAAAXwAAAAAAcAAAAAAAcAAAAAAALwAAAAACJQAAAAACJQAAAAAAJQAAAAABWwAAAAACKgAAAAABKgAAAAADKgAAAAAAKgAAAAACKgAAAAAAKgAAAAAAKgAAAAADKgAAAAACXwAAAAAAcAAAAAAAcAAAAAAALwAAAAABJQAAAAAAJQAAAAADJQAAAAACWwAAAAABKgAAAAAAKgAAAAADKgAAAAADKgAAAAAAKgAAAAABKgAAAAAAKgAAAAACKgAAAAADXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALwAAAAAALwAAAAABLwAAAAAAWwAAAAAAKgAAAAACKgAAAAAAKgAAAAACKgAAAAACKgAAAAACKgAAAAACKgAAAAADKgAAAAABXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAWwAAAAACKgAAAAAAKgAAAAADKgAAAAAAKgAAAAADKgAAAAACKgAAAAACKgAAAAABKgAAAAABXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWwAAAAADKgAAAAACKgAAAAACKgAAAAAAKgAAAAAAKgAAAAADKgAAAAAAKgAAAAAAKgAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKgAAAAABKgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAACKgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAABKgAAAAADKgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAKgAAAAADKgAAAAADKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAKgAAAAACKgAAAAABKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAKgAAAAABKgAAAAAAKgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAA + tiles: KwAAAAACSAAAAAAAKwAAAAABKwAAAAAAKwAAAAAAKwAAAAACKwAAAAAASAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAXAAAAAAAKwAAAAAASAAAAAAAKwAAAAACKwAAAAACKwAAAAACKwAAAAABKwAAAAAASAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAMAAAAAACMAAAAAABMAAAAAABXAAAAAAAKwAAAAABKwAAAAABKwAAAAADKwAAAAAAKwAAAAABKwAAAAABKwAAAAAAKwAAAAADYAAAAAAAcQAAAAAAcQAAAAAAMAAAAAACJgAAAAACJgAAAAADJgAAAAAAXAAAAAAAKwAAAAACKwAAAAABKwAAAAAAKwAAAAAAKwAAAAACKwAAAAABKwAAAAACKwAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAMAAAAAACJgAAAAACJgAAAAADJgAAAAADXAAAAAADKwAAAAAASAAAAAAAKwAAAAABKwAAAAABKwAAAAACKwAAAAAAKwAAAAABSAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAMAAAAAAAMAAAAAADMAAAAAACXAAAAAAAKwAAAAADSAAAAAAAKwAAAAACKwAAAAADKwAAAAABKwAAAAABKwAAAAAASAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAXAAAAAACKwAAAAABSAAAAAAAKwAAAAABKwAAAAAAKwAAAAADKwAAAAACKwAAAAADSAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXAAAAAADKwAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAADSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAKwAAAAABSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAKwAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAKwAAAAABKwAAAAADSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAKwAAAAADKwAAAAACSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAA version: 6 -4,-1: ind: -4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAPQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAPQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAPQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAARwAAAAAAUwAAAAACWAAAAAAAKgAAAAAAKgAAAAAAKgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAPQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAARwAAAAAAWAAAAAAAWAAAAAAAKgAAAAAAKgAAAAABKgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAPQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAARwAAAAAAUwAAAAADYQAAAAADKgAAAAADKgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKgAAAAACKgAAAAACKgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAKgAAAAABKgAAAAACKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKgAAAAAAKgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAKgAAAAABKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKgAAAAACKgAAAAAAKgAAAAABKgAAAAAAKgAAAAADKgAAAAAAKgAAAAACKgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWwAAAAACKgAAAAAAKgAAAAABKgAAAAADKgAAAAACKgAAAAAAKgAAAAAAKgAAAAACKgAAAAADXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWwAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAASAAAAAAAVAAAAAABWQAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAASAAAAAAAWQAAAAAAWQAAAAAAKwAAAAADKwAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAASAAAAAAAVAAAAAAAYgAAAAADKwAAAAAAKwAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAADKwAAAAABSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAKwAAAAACSAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAADSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAKwAAAAABSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXAAAAAABKwAAAAACSAAAAAAAKwAAAAAAKwAAAAADKwAAAAACKwAAAAAAKwAAAAABSAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXAAAAAAC version: 6 3,-4: ind: 3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAbQAAAAABcAAAAAAAbQAAAAAAbQAAAAACbQAAAAACcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAbQAAAAACbQAAAAADcAAAAAAAbQAAAAADbQAAAAACbQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAbgAAAAABbgAAAAABbgAAAAACbgAAAAAAbgAAAAABbgAAAAABbQAAAAACbQAAAAAAbQAAAAABbQAAAAAAbQAAAAADbQAAAAADcAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAbgAAAAAAbgAAAAAAbgAAAAADbgAAAAACbgAAAAACbgAAAAADbQAAAAABbQAAAAACcAAAAAAABwAAAAAABwAAAAAMBwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAbgAAAAACbgAAAAACbgAAAAABbgAAAAACbgAAAAAAbgAAAAABbQAAAAAAbQAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAARwAAAAAAbgAAAAABbgAAAAADbgAAAAACbgAAAAADbgAAAAABbgAAAAABRwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAACbgAAAAACcAAAAAAARwAAAAAAbgAAAAAARwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABbgAAAAADcQAAAAAAbgAAAAAAbgAAAAACbgAAAAABcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAbgAAAAABbgAAAAACcQAAAAAAbgAAAAABbgAAAAABbgAAAAACcQAAAAAAAAAAAAAAAAAAAAAASAAAAAAAbwAAAAACbwAAAAAAbwAAAAAAbwAAAAACbwAAAAACbwAAAAABbgAAAAADbgAAAAADbgAAAAADbgAAAAACbgAAAAADbgAAAAABcQAAAAAAAAAAAAAAAAAAAAAASAAAAAAAbwAAAAACbwAAAAADbwAAAAABbwAAAAADbwAAAAADbwAAAAACbgAAAAADbgAAAAADcQAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAASAAAAAAAbwAAAAADbwAAAAADbwAAAAAAbwAAAAAAbwAAAAABbwAAAAADbgAAAAACbgAAAAABcQAAAAAABwAAAAAHBwAAAAAABwAAAAAAcQAAAAAAcAAAAAAAcAAAAAAASAAAAAAAbwAAAAABbwAAAAADbwAAAAAAbwAAAAACbwAAAAABbwAAAAACSAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbwAAAAAAbwAAAAADcQAAAAAASAAAAAAAbwAAAAACSAAAAAAA version: 6 4,-4: ind: 4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,-3: ind: 5,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-6: ind: 0,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAFAAAAAAESAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAFAAAAAAFFAAAAAACFAAAAAAFFAAAAAAFcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-6: ind: -1,-6 - tiles: AAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAABBwAAAAAABwAAAAADBwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAABBwAAAAAABwAAAAAGRwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAARwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAARwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAABwAAAAAAcAAAAAAABwAAAAAABwAAAAACBwAAAAAAcAAAAAAARwAAAAAAMwAAAAAAMwAAAAAARwAAAAAAcAAAAAAARwAAAAAADwAAAAAADwAAAAAARwAAAAAAcAAAAAAABwAAAAAAcAAAAAAABwAAAAAMBwAAAAAABwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAABwAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAABwAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAABwAAAAACcAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAABwAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAPQAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAKBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAIBwAAAAAA + tiles: AAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAFAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAFBwAAAAAGAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAKBwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAGcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAASAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMSAAAAAAABwAAAAAABwAAAAACBwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAASAAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAABwAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAASAAAAAAANAAAAAAANAAAAAAASAAAAAAAcQAAAAAASAAAAAAADwAAAAAADwAAAAAASAAAAAAAcQAAAAAABwAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAABwAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAADcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAABwAAAAAIcQAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAFAAAAAAEcQAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAFAAAAAAFcQAAAAAABwAAAAAAFAAAAAACBwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAPgAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAFAAAAAADFAAAAAAFFAAAAAAAFAAAAAAAFAAAAAAGFAAAAAAAFAAAAAABFAAAAAADFAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAFAAAAAAAFAAAAAAFFAAAAAADFAAAAAAEFAAAAAACFAAAAAAEFAAAAAADFAAAAAAAFAAAAAADFAAAAAADFAAAAAACFAAAAAAFcQAAAAAAFAAAAAAEFAAAAAAFFAAAAAADFAAAAAAEFAAAAAADFAAAAAAB version: 6 -2,-6: ind: -2,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAALBwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGBwAAAAAKBwAAAAAKBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAcAAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAADcAAAAAAAbQAAAAACbQAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAcAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAFBwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAFBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAAEBwAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAAcQAAAAAAbgAAAAABbgAAAAADcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAGBwAAAAAAcQAAAAAAbgAAAAAAbgAAAAACBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAFAAAAAADFAAAAAABFAAAAAAGBwAAAAAGBwAAAAAABwAAAAAEcQAAAAAAcQAAAAAAbgAAAAACcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFAAAAAAEFAAAAAAEFAAAAAAC version: 6 -2,-5: ind: -2,-5 - tiles: BwAAAAABBwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFAAAAAADBwAAAAAJBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAAFAAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFAAAAAAEBwAAAAADFAAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAGBwAAAAABBwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFAAAAAAGFAAAAAAEFAAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAAFAAAAAADFAAAAAAEFAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAAFAAAAAAEFAAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFAAAAAABBwAAAAAKBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAACBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: BwAAAAAABwAAAAAABwAAAAAFBwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAFAAAAAABFAAAAAAGFAAAAAAGFAAAAAACFAAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFAAAAAAFFAAAAAAGFAAAAAAEFAAAAAAAFAAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAAFAAAAAAEFAAAAAABFAAAAAAGFAAAAAADFAAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFAAAAAAFFAAAAAAGFAAAAAAAFAAAAAABFAAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFAAAAAAEFAAAAAAFFAAAAAABFAAAAAACFAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAALBwAAAAABBwAAAAAMFAAAAAAEFAAAAAAGFAAAAAAEFAAAAAABFAAAAAAEFAAAAAACFAAAAAABBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAAFAAAAAADFAAAAAACFAAAAAAFFAAAAAAGFAAAAAABFAAAAAAFFAAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFAAAAAABFAAAAAACFAAAAAAGFAAAAAAAFAAAAAAGFAAAAAABFAAAAAACFAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHFAAAAAAEFAAAAAABFAAAAAACFAAAAAAAFAAAAAABFAAAAAACFAAAAAAEFAAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFAAAAAABFAAAAAADFAAAAAAGFAAAAAAAFAAAAAABFAAAAAADFAAAAAAAFAAAAAABBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFAAAAAABFAAAAAACFAAAAAAAFAAAAAAEFAAAAAADFAAAAAAFBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAFAAAAAADFAAAAAAFFAAAAAAGFAAAAAAGFAAAAAAFFAAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAAFAAAAAABBwAAAAAABwAAAAAABwAAAAAAFAAAAAADFAAAAAAAFAAAAAADFAAAAAAAFAAAAAADFAAAAAACBwAAAAAHBwAAAAAABwAAAAAABwAAAAAJBwAAAAACFAAAAAAGFAAAAAACBwAAAAAABwAAAAAABwAAAAAAFAAAAAAFFAAAAAAFFAAAAAABFAAAAAAGFAAAAAAFFAAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAAFAAAAAAFFAAAAAADFAAAAAAGFAAAAAAFFAAAAAAFFAAAAAADFAAAAAAAFAAAAAAGFAAAAAABFAAAAAAEFAAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAFAAAAAAGFAAAAAAFFAAAAAACFAAAAAADFAAAAAAAFAAAAAAAFAAAAAABFAAAAAAEFAAAAAAEFAAAAAAGFAAAAAADFAAAAAAA version: 6 -3,-5: ind: -3,-5 - tiles: cAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAFRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAAcAAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAFBwAAAAAABwAAAAAGcAAAAAAAcAAAAAAARwAAAAAAbwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAIcAAAAAAAcAAAAAAARwAAAAAAbwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAMBwAAAAAABwAAAAAJBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAJBwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: cQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAFcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAADBwAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEBwAAAAAFBwAAAAAABwAAAAADSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAJBwAAAAAKBwAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAFcQAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAKBwAAAAAABwAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAFcQAAAAAAcQAAAAAASAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAACBwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAEBwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAJBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAMBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGAAAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAGBwAAAAAABwAAAAAABwAAAAAA version: 6 4,-1: ind: 4,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAARwAAAAAASwAAAAAASwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAATwAAAAAASwAAAAAASwAAAAAATwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAATwAAAAAASwAAAAAATwAAAAAATwAAAAAASwAAAAAATwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAATwAAAAAASwAAAAAATwAAAAAATwAAAAAASwAAAAAATwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAATwAAAAAASwAAAAAATwAAAAAATwAAAAAASwAAAAAATwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASAAAAAAATAAAAAAATAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAUAAAAAAATAAAAAAATAAAAAAAUAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAATAAAAAAATAAAAAAATAAAAAAATAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAUAAAAAAATAAAAAAAUAAAAAAAUAAAAAAATAAAAAAAUAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAUAAAAAAATAAAAAAAUAAAAAAAUAAAAAAATAAAAAAAUAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAUAAAAAAATAAAAAAAUAAAAAAAUAAAAAAATAAAAAAAUAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,-2: ind: -4,-2 - tiles: AAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAARwAAAAAAcAAAAAAAcAAAAAAARwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAARwAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAARwAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: AAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA version: 6 -4,-3: ind: -4,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAARgAAAAADRgAAAAABRgAAAAACcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAYAAAAAAAXwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAARgAAAAADRgAAAAADRgAAAAACcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAARgAAAAAARgAAAAADRgAAAAADcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAARgAAAAADRgAAAAADRgAAAAADcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAYAAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAARwAAAAAARwAAAAAARwAAAAADcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYQAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAARwAAAAACRwAAAAAARwAAAAACcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAARwAAAAADRwAAAAABRwAAAAABcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAARwAAAAABRwAAAAAARwAAAAACcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYQAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAA version: 6 3,2: ind: 3,2 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAARwAAAAAAcAAAAAAAcAAAAAAARwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,3: ind: 3,3 - tiles: bwAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,-2: ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,1: ind: -3,1 - tiles: bwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAIBwAAAAAEBwAAAAAJBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAFBwAAAAADBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAEBwAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAMBwAAAAAEBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAHAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAACBwAAAAAAFAAAAAAGFAAAAAAEFAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAAFAAAAAABFAAAAAAFFAAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAFAAAAAAEFAAAAAAFFAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAABwAAAAABBwAAAAAJBwAAAAAAFAAAAAAGFAAAAAACFAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAKFAAAAAAAFAAAAAAAFAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAFBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAALBwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAKBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,2: ind: -2,2 - tiles: AAAAAAAAAAAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAABwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,-5: ind: -4,-5 - tiles: bwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,-6: ind: -4,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAA version: 6 -3,-6: ind: -3,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,-4: ind: -4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAEBwAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAIBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAADBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,-6: ind: -5,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAA version: 6 -5,-5: ind: -5,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-6: ind: 2,-6 - tiles: bgAAAAADbgAAAAABbgAAAAABbgAAAAADbgAAAAACcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAADbgAAAAABbgAAAAABbgAAAAAARwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAACbgAAAAABbgAAAAADbgAAAAABRwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAACbgAAAAABbgAAAAACbgAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAACbgAAAAAAbgAAAAADbgAAAAADRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbgAAAAABbgAAAAADbgAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAcAAAAAAAbgAAAAAAbgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAJQAAAAAAJQAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAJQAAAAAAJQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAADcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAACcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAACcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAPQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: bwAAAAACbwAAAAACbwAAAAAAbwAAAAACbwAAAAABcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAABbwAAAAABbwAAAAABbwAAAAABbwAAAAACSAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAABbwAAAAAAbwAAAAACbwAAAAAAbwAAAAACSAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAADbwAAAAADbwAAAAABbwAAAAADbwAAAAADSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAACbwAAAAACbwAAAAACbwAAAAABbwAAAAACSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAbwAAAAABbwAAAAAAbwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAcQAAAAAAbwAAAAACbwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAJgAAAAACJgAAAAACcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAJgAAAAACJgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAACcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAADcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-6: ind: 1,-6 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbgAAAAACbgAAAAADbgAAAAAAbgAAAAABbgAAAAADbgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbgAAAAAAbgAAAAACbgAAAAACbgAAAAABbgAAAAACbgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAARwAAAAAAbgAAAAAAbgAAAAAAbgAAAAADbgAAAAAAbgAAAAABbgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAARwAAAAAAbgAAAAACbgAAAAACbgAAAAADbgAAAAABbgAAAAAAbgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAABbgAAAAACbgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbgAAAAADbgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKgAAAAABHwAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAABHwAAAAABHwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAADHwAAAAACHwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAABHwAAAAABHwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAADHwAAAAADHwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAKgAAAAADHwAAAAACKgAAAAAB + tiles: cQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAbwAAAAAAbwAAAAAAbwAAAAABbwAAAAABbwAAAAABbwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAbwAAAAABbwAAAAADbwAAAAAAbwAAAAABbwAAAAACbwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAASAAAAAAAbwAAAAACbwAAAAABbwAAAAABbwAAAAABbwAAAAACbwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAASAAAAAAAbwAAAAACbwAAAAAAbwAAAAADbwAAAAADbwAAAAACbwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAbwAAAAADbwAAAAACbwAAAAAAbwAAAAACbwAAAAACbwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAbwAAAAACbwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAABIAAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAIAAAAAACIAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAADIAAAAAADIAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAADIAAAAAABIAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAIAAAAAABIAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAKwAAAAACIAAAAAAAKwAAAAAD version: 6 -1,-7: ind: -1,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-7: ind: 0,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-7: ind: 1,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAA version: 6 2,-7: ind: 2,-7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,1: ind: -4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,3: ind: 2,3 - tiles: bwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 1,3: ind: 1,3 - tiles: AAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,-3: ind: -5,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA version: 6 -6,-2: ind: -6,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -7,-2: ind: -7,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,0: ind: -5,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAACLwAAAAACLwAAAAAALwAAAAABKgAAAAABKgAAAAABKgAAAAAAKgAAAAABKgAAAAACKgAAAAACKgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAACLwAAAAADLwAAAAACLwAAAAAAKgAAAAABKgAAAAAAKgAAAAAAKgAAAAABKgAAAAAAKgAAAAABKgAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAABLwAAAAAALwAAAAAALwAAAAADKgAAAAADKgAAAAADKgAAAAABKgAAAAACKgAAAAACKgAAAAABKgAAAAACAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAKgAAAAABLwAAAAAALwAAAAADLwAAAAABKgAAAAACKgAAAAACKgAAAAABKgAAAAAAKgAAAAABKgAAAAAAKgAAAAABAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAACLwAAAAACLwAAAAABLwAAAAABKgAAAAACKgAAAAACKgAAAAAAKgAAAAABKgAAAAACKgAAAAABKgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAALwAAAAACLwAAAAADLwAAAAADKgAAAAAAKgAAAAAAKgAAAAACKgAAAAABKgAAAAACKgAAAAADKgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAALwAAAAAALwAAAAABLwAAAAACKgAAAAABKgAAAAADKgAAAAADKgAAAAAAKgAAAAADKgAAAAADKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAKgAAAAACKgAAAAAAKgAAAAACKgAAAAACKgAAAAACKgAAAAAAKgAAAAADKgAAAAABKgAAAAAAKgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAACKgAAAAAAKgAAAAACKgAAAAAAKgAAAAADKgAAAAABKgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAKgAAAAADKgAAAAADKgAAAAACKgAAAAACKgAAAAADKgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAADKgAAAAABKgAAAAAAKgAAAAAAKgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAACKgAAAAACKgAAAAACKgAAAAABKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAADKgAAAAAAKgAAAAAAKgAAAAABKgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAKgAAAAABKgAAAAAAKgAAAAADKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAMAAAAAABMAAAAAACMAAAAAACSAAAAAAAKwAAAAACKwAAAAAAKwAAAAABKwAAAAACSAAAAAAAKwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAMAAAAAABMAAAAAABMAAAAAADSAAAAAAAKwAAAAACKwAAAAAAKwAAAAAAKwAAAAAASAAAAAAAKwAAAAADAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAMAAAAAADMAAAAAADMAAAAAADKwAAAAAAKwAAAAABKwAAAAABKwAAAAACKwAAAAABKwAAAAACKwAAAAADAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASAAAAAAAMAAAAAAAMAAAAAACMAAAAAAAKwAAAAADKwAAAAADKwAAAAAAKwAAAAADKwAAAAADKwAAAAABKwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAMAAAAAADMAAAAAABMAAAAAACSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAMAAAAAACMAAAAAACMAAAAAACSAAAAAAAKwAAAAACKwAAAAABKwAAAAACKwAAAAABSAAAAAAAKwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAMAAAAAABMAAAAAADMAAAAAACSAAAAAAAKwAAAAADKwAAAAAAKwAAAAACKwAAAAAAKwAAAAAAKwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAKwAAAAACKwAAAAAAKwAAAAACKwAAAAABSAAAAAAAKwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAKwAAAAACKwAAAAADKwAAAAADKwAAAAABSAAAAAAAKwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAKwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAKwAAAAAAKwAAAAABKwAAAAACKwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAKwAAAAADKwAAAAADKwAAAAACKwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAKwAAAAADKwAAAAABKwAAAAAAKwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAA version: 6 -5,-1: ind: -5,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAADKgAAAAAAKgAAAAABKgAAAAAAKgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAACKgAAAAAAKgAAAAACKgAAAAAAKgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAABKgAAAAACKgAAAAACKgAAAAACKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAKgAAAAABKgAAAAACKgAAAAACKgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAACKgAAAAACKgAAAAACKgAAAAACKgAAAAADKgAAAAACKgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAABKgAAAAAAKgAAAAACKgAAAAAAKgAAAAABKgAAAAADKgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAACKgAAAAAAKgAAAAADKgAAAAACKgAAAAACKgAAAAACKgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAADKgAAAAABKgAAAAAAKgAAAAADKgAAAAACKgAAAAACKgAAAAADKgAAAAABKgAAAAACKgAAAAADKgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAABLwAAAAAALwAAAAAALwAAAAACKgAAAAACKgAAAAADKgAAAAADKgAAAAACKgAAAAABKgAAAAACKgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAKwAAAAADKwAAAAABKwAAAAACKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAKwAAAAADKwAAAAAAKwAAAAAAKwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAKwAAAAABKwAAAAADKwAAAAACKwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAKwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAKwAAAAACKwAAAAACKwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAKwAAAAACKwAAAAACKwAAAAABKwAAAAABSAAAAAAAKwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAKwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAMAAAAAAAMAAAAAABMAAAAAACSAAAAAAAKwAAAAAAKwAAAAADKwAAAAACKwAAAAABSAAAAAAAKwAAAAAD version: 6 -5,1: ind: -5,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,0: + ind: 4,0 + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAASAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAASAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAASAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAASAAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAGwAAAAADGwAAAAABSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAABGwAAAAABSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAGwAAAAABGwAAAAACSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,1: + ind: 4,1 + tiles: PgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAGwAAAAACGwAAAAADSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAGwAAAAABGwAAAAABSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASQAAAAAAcQAAAAAAcQAAAAAASQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASQAAAAAAcQAAAAAAcQAAAAAASQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASQAAAAAAcQAAAAAAcQAAAAAASQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAASQAAAAAASQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,2: + ind: 4,2 + tiles: cQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,4: + ind: 2,4 + tiles: AAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,4: + ind: 3,4 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 5,1: + ind: 5,1 + tiles: cQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 6,1: + ind: 6,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAA + version: 6 + 5,0: + ind: 5,0 + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAA + version: 6 + 6,0: + ind: 6,0 + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAA + version: 6 + 5,-1: + ind: 5,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAA + version: 6 + 5,-2: + ind: 5,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 6,-1: + ind: 6,-1 + tiles: AAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAA + version: 6 + 6,2: + ind: 6,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 5,2: + ind: 5,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,3: + ind: 4,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 5,3: + ind: 5,3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 6,-2: + ind: 6,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 type: MapGrid - type: Broadphase @@ -463,51 +536,44 @@ entities: color: '#DE3A3A96' id: 1 decals: - 3977: -34.244606,-14.123523 + 3137: -34.244606,-14.123523 - node: angle: 1.5707963267948966 rad color: '#DE3A3A96' id: 2 decals: - 3978: -34.29669,-13.268763 + 3138: -34.29669,-13.268763 - node: angle: 1.5707963267948966 rad color: '#DE3A3A96' id: 3 decals: - 3979: -34.23419,-12.226372 + 3139: -34.23419,-12.226372 - node: color: '#DE3A3A96' id: 4 decals: - 3980: -33.932106,-11.715601 + 3140: -33.932106,-11.715601 - node: color: '#DE3A3A96' id: 5 decals: - 3981: -32.92169,-11.715601 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: Arrows - decals: - 3938: 54,13 - 3939: 54,9 + 3141: -32.92169,-11.715601 - node: color: '#FFFFFFFF' id: Basalt1 decals: - 5002: -2.3954644,-14.790876 + 4122: -2.3954644,-14.790876 - node: color: '#FFFFFFFF' id: Basalt2 decals: - 4977: -5.437131,-15.6769085 + 4097: -5.437131,-15.6769085 - node: color: '#FFFFFFFF' id: Basalt3 decals: - 5003: -8.343382,-16.354462 + 4123: -8.343382,-16.354462 - node: color: '#FFFFFFFF' id: Bot @@ -524,2370 +590,2459 @@ entities: 12: 49,-32 13: 49,-33 14: 45,-32 - 27: 43,7 - 28: 43,6 - 29: 39,18 - 46: 49.22215,11.736407 - 47: 50.22215,11.736407 - 48: 52.71173,11.767678 - 49: 49.232567,9.297214 - 50: 50.232567,9.286789 - 51: 52.72215,9.255517 - 52: 49.24298,10.51681 - 53: 50.224648,10.51681 - 54: 51.733074,9.265327 - 55: 51.72266,11.767066 - 56: 51.764324,10.52662 - 57: 52.733074,10.516196 - 70: 32,35 - 71: 33,35 - 72: 33,34 - 73: 32,34 - 74: 32,33 - 75: 33,33 - 76: 33,32 - 77: 32,32 - 78: 32,31 - 79: 33,31 - 80: 33,30 - 81: 32,30 - 82: 52,30 - 83: 53,30 - 84: 54,30 - 85: 51,30 - 107: 17,22 - 1472: 52,23 - 1473: 52,24 - 1474: 52,25 - 1475: 55,23 - 1476: 55,24 - 1477: 55,25 - 1574: 4,-83 - 1575: 3,-83 - 1578: 7,-15 - 1579: 7,-16 - 2008: -46,-82 - 2009: -47,-82 - 2024: 14,-79 - 2025: 15,-79 - 2026: 16,-79 - 2027: 17,-79 - 3812: 22,15 - 3813: 22,14 - 3814: 22,13 - 3900: 16,22 - 3901: 15,22 - 3902: 14,22 - 3903: 13,22 - 3952: 5,-7 - 3953: 5,-6 - 3954: 5,-5 - 3955: 2,0 - 3956: 3,0 - 3957: 4,0 - 3982: -6,-22 - 3983: -6,-21 - 3984: -43,-19 - 5634: -53,-14 - 5635: -52,-14 - 5636: -54,-14 - 5637: -55,-14 + 28: 32,35 + 29: 33,35 + 30: 33,34 + 31: 32,34 + 32: 32,33 + 33: 33,33 + 34: 33,32 + 35: 32,32 + 36: 32,31 + 37: 33,31 + 38: 33,30 + 39: 32,30 + 40: 52,30 + 41: 53,30 + 42: 54,30 + 43: 51,30 + 1426: 4,-83 + 1427: 3,-83 + 1430: 7,-15 + 1431: 7,-16 + 1512: -46,-82 + 1513: -47,-82 + 1527: 14,-79 + 1528: 15,-79 + 1529: 16,-79 + 1530: 17,-79 + 3112: 5,-7 + 3113: 5,-6 + 3114: 5,-5 + 3115: 2,0 + 3116: 3,0 + 3117: 4,0 + 3142: -6,-22 + 3143: -6,-21 + 3144: -43,-19 + 4751: -53,-14 + 4752: -52,-14 + 4753: -54,-14 + 4754: -55,-14 + 4809: 15,13 + 4810: 16,13 + 4811: 17,13 + 4864: 59,15 + 4865: 59,16 + 4866: 59,17 + 4867: 59,21 + 4868: 59,22 + 4869: 59,23 + 4930: 58,25 + 4931: 59,25 + 4932: 60,25 + 4933: 61,25 + 5260: 43,7 + 5261: 43,6 - node: color: '#FFFFFFFF' id: Box decals: - 86: 22,42 - 87: 23,42 - 88: 24,42 - 89: 25,42 - 90: 26,42 - 91: 26,41 - 92: 25,41 - 93: 24,41 - 94: 23,41 - 95: 22,41 - 96: 22,40 - 97: 23,40 - 98: 24,40 - 99: 25,40 - 100: 26,40 - 101: 26,39 - 102: 25,39 - 103: 24,39 - 104: 23,39 - 105: 22,39 - 106: 24,38 - 125: 40,9 - 126: 41,8 - 127: 41,10 - 138: 10,35 - 139: 11,34 - 140: 10,33 - 160: 0,34 - 161: 1,35 - 162: 1,33 - 163: -4,35 - 164: -4,33 - 165: -3,34 - 178: -12,35 - 179: -12,34 - 180: -13,32 - 185: -13,19 - 195: -12,44 - 196: 41,7 - 197: 41,6 - 198: 27,-5 - 199: 28,-5 - 1176: 15,-38 - 1177: 15,-39 - 1178: 14,-39 - 1179: 14,-38 - 1180: 12,-38 - 1181: 11,-38 - 1182: 11,-39 - 1183: 12,-39 - 1193: 14,-60 - 1587: -5,-78 - 1588: -6,-78 - 1589: -6,-79 - 1590: -6,-80 - 1591: -5,-80 - 1592: -4,-80 - 1593: -4,-79 - 1594: -4,-78 - 3807: 34,43 - 3808: 34,42 - 3809: 34,41 + 44: 10,35 + 45: 11,34 + 46: 10,33 + 66: 0,34 + 67: 1,35 + 68: 1,33 + 69: -4,35 + 70: -4,33 + 71: -3,34 + 84: -12,35 + 85: -12,34 + 86: -13,32 + 91: -13,19 + 101: -12,44 + 102: 27,-5 + 103: 28,-5 + 1050: 15,-38 + 1051: 15,-39 + 1052: 14,-39 + 1053: 14,-38 + 1054: 12,-38 + 1055: 11,-38 + 1056: 11,-39 + 1057: 12,-39 + 1067: 14,-60 + 1439: -5,-78 + 1440: -6,-78 + 1441: -6,-79 + 1442: -6,-80 + 1443: -5,-80 + 1444: -4,-80 + 1445: -4,-79 + 1446: -4,-78 + 2996: 34,43 + 2997: 34,42 + 2998: 34,41 + 4876: 72,16 + 4877: 72,15 + 4878: 72,14 + 4879: 72,13 + 4880: 71,13 + 4881: 71,14 + 4882: 71,15 + 4883: 71,16 + 4884: 70,16 + 4885: 70,15 + 4886: 70,14 + 4887: 70,13 + 4888: 69,13 + 4889: 69,14 + 4890: 69,15 + 4891: 69,16 - node: - color: '#334E6DC8' - id: BrickTileSteelCornerNe + color: '#FFFFFFFF' + id: BrickTileSteelBox decals: - 4457: -43,-23 + 5243: 47,7 + 5244: 48,7 + 5245: 48,6 + 5246: 47,6 + 5247: 46,6 + 5248: 46,7 + 5249: 45,7 + 5250: 45,6 + 5251: 44,6 + 5252: 44,7 + 5256: 43,7 + 5257: 43,6 + 5258: 42,6 + 5259: 42,7 - node: - color: '#D4D4D496' + color: '#334E6DC8' id: BrickTileSteelCornerNe decals: - 1926: 59,18 - 1927: 59,18 - 1928: 55,18 - 1929: 55,18 - 1930: 48,18 - 1931: 48,18 + 3609: -43,-23 - node: color: '#334E6DC8' id: BrickTileSteelCornerNw decals: - 4456: -44,-23 - - node: - color: '#D4D4D496' - id: BrickTileSteelCornerNw - decals: - 1920: 37,18 - 1921: 37,18 - 1922: 50,18 - 1923: 50,18 - 1924: 57,18 - 1925: 57,18 - - node: - color: '#D4D4D496' - id: BrickTileSteelCornerSe - decals: - 1936: 59,15 - 1937: 59,15 - 1938: 48,15 - 1939: 48,15 - 1940: 55,6 - 1941: 55,6 + 3608: -44,-23 - node: color: '#334E6DC8' id: BrickTileSteelCornerSw decals: - 4448: -44,-31 - - node: - color: '#D4D4D496' - id: BrickTileSteelCornerSw - decals: - 1932: 37,15 - 1933: 37,15 - 1934: 57,15 - 1935: 57,15 + 3600: -44,-31 - node: color: '#334E6DC8' id: BrickTileSteelInnerNe decals: - 4458: -43,-24 - 4461: -43,-28 - 4476: -44,-25 - 4477: -44,-26 - 4478: -44,-27 - 4479: -44,-28 - 4480: -44,-29 - 4481: -44,-30 - 4482: -44,-31 - 4483: -44,-24 - - node: - color: '#D4D4D496' - id: BrickTileSteelInnerNw - decals: - 1994: 50,13 - 1995: 50,13 + 3610: -43,-24 + 3613: -43,-28 + 3628: -44,-25 + 3629: -44,-26 + 3630: -44,-27 + 3631: -44,-28 + 3632: -44,-29 + 3633: -44,-30 + 3634: -44,-31 + 3635: -44,-24 - node: color: '#334E6DC8' id: BrickTileSteelInnerSe decals: - 4459: -43,-24 - 4460: -43,-28 + 3611: -43,-24 + 3612: -43,-28 - node: color: '#334E6DC8' id: BrickTileSteelInnerSw decals: - 4468: -43,-31 - 4469: -43,-30 - 4470: -43,-29 - 4471: -43,-28 - 4472: -43,-27 - 4473: -43,-26 - 4474: -43,-25 - 4475: -43,-24 - 4484: -43,-23 + 3620: -43,-31 + 3621: -43,-30 + 3622: -43,-29 + 3623: -43,-28 + 3624: -43,-27 + 3625: -43,-26 + 3626: -43,-25 + 3627: -43,-24 + 3636: -43,-23 - node: color: '#334E6DC8' id: BrickTileSteelLineE decals: - 3958: -20,-49 - 3959: -20,-48 - 3960: -20,-47 - 3961: -20,-46 - 4462: -43,-25 - 4463: -43,-26 - 4464: -43,-27 - 4465: -43,-29 - 4466: -43,-30 - 4467: -43,-31 - - node: - color: '#D4D4D496' - id: BrickTileSteelLineE - decals: - 1980: 48,17 - 1981: 48,17 - 1982: 48,16 - 1983: 48,16 - 1984: 55,17 - 1985: 55,17 - 1986: 59,17 - 1987: 59,17 - 1988: 59,16 - 1989: 59,16 - 1990: 55,15 - 1991: 55,15 - 1992: 55,7 - 1993: 55,7 - - node: - color: '#D4D4D496' - id: BrickTileSteelLineN - decals: - 1888: 38,18 - 1889: 38,18 - 1890: 43,18 - 1891: 43,18 - 1892: 44,18 - 1893: 44,18 - 1894: 45,18 - 1895: 45,18 - 1896: 46,18 - 1897: 46,18 - 1898: 47,18 - 1899: 47,18 - 1900: 51,18 - 1901: 51,18 - 1902: 52,18 - 1903: 52,18 - 1904: 53,18 - 1905: 53,18 - 1906: 54,18 - 1907: 54,18 - 1908: 58,18 - 1909: 58,18 - 1910: 49,13 - 1911: 49,13 - 1912: 48,13 - 1913: 48,13 - 1914: 46,13 - 1915: 46,13 - 1916: 45,13 - 1917: 45,13 - 1918: 44,13 - 1919: 44,13 - 1998: 41,18 - 1999: 41,18 - 2000: 42,18 - 2001: 42,18 - - node: - color: '#D4D4D496' - id: BrickTileSteelLineS - decals: - 1942: 39,15 - 1943: 39,15 - 1944: 41,15 - 1945: 41,15 - 1946: 42,15 - 1947: 42,15 - 1948: 43,15 - 1949: 43,15 - 1950: 44,15 - 1951: 44,15 - 1952: 45,15 - 1953: 45,15 - 1954: 46,15 - 1955: 46,15 - 1956: 58,15 - 1957: 58,15 - 1958: 54,6 - 1959: 54,6 + 3118: -20,-49 + 3119: -20,-48 + 3120: -20,-47 + 3121: -20,-46 + 3614: -43,-25 + 3615: -43,-26 + 3616: -43,-27 + 3617: -43,-29 + 3618: -43,-30 + 3619: -43,-31 - node: color: '#334E6DC8' id: BrickTileSteelLineW decals: - 4449: -44,-30 - 4450: -44,-29 - 4451: -44,-28 - 4452: -44,-27 - 4453: -44,-26 - 4454: -44,-25 - 4455: -44,-24 - - node: - color: '#D4D4D496' - id: BrickTileSteelLineW - decals: - 1960: 57,17 - 1961: 57,17 - 1962: 50,17 - 1963: 50,17 - 1964: 50,16 - 1965: 50,16 - 1966: 50,15 - 1967: 50,15 - 1968: 50,14 - 1969: 50,14 - 1970: 46,8 - 1971: 46,8 - 1972: 43,10 - 1973: 43,10 - 1974: 43,12 - 1975: 43,12 - 1976: 37,16 - 1977: 37,16 - 1978: 37,17 - 1979: 37,17 + 3601: -44,-30 + 3602: -44,-29 + 3603: -44,-28 + 3604: -44,-27 + 3605: -44,-26 + 3606: -44,-25 + 3607: -44,-24 - node: color: '#FFFFFFFF' id: BrickTileSteelLineW decals: - 4377: -16,-13 - 4396: -16,-9 + 3529: -16,-13 + 3548: -16,-9 - node: color: '#169C9CC4' id: BrickTileWhiteCornerNe decals: - 1154: 13,-32 + 1028: 13,-32 - node: color: '#1D1D21FF' id: BrickTileWhiteCornerNe decals: - 425: 5,-62 - 461: 0,-57 - 494: 5,-55 - 534: 6,-54 - 1285: 10,-66 - 4419: -18,-14 - 4658: -23,-18 + 329: 5,-62 + 365: 0,-57 + 398: 5,-55 + 438: 6,-54 + 1159: 10,-66 + 3571: -18,-14 + 3810: -23,-18 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNe decals: - 4494: -37,-20 + 3646: -37,-20 - node: color: '#52B4E996' id: BrickTileWhiteCornerNe decals: - 1196: 26,-33 - 3854: 55,-42 - 4585: -18,-9 - 4586: -24,-10 - 4587: -24,-14 + 1070: 26,-33 + 3034: 55,-42 + 3737: -18,-9 + 3738: -24,-10 + 3739: -24,-14 - node: color: '#8932B87F' id: BrickTileWhiteCornerNe decals: - 927: 33,3 + 801: 33,3 - node: color: '#9FED5896' id: BrickTileWhiteCornerNe decals: - 241: 43,-32 + 145: 43,-32 + - node: + color: '#A4610696' + id: BrickTileWhiteCornerNe + decals: + 5126: 29,13 - node: color: '#D381C996' id: BrickTileWhiteCornerNe decals: - 371: 22,-55 - 385: 22,-50 - 390: 26,-50 - 395: 26,-54 - 1241: 17,-66 + 275: 22,-55 + 289: 22,-50 + 294: 26,-50 + 299: 26,-54 + 1115: 17,-66 - node: color: '#D58C18BF' id: BrickTileWhiteCornerNe decals: - 4921: -36,-1 - 4926: -41,3 - 4937: -45,6 + 4041: -36,-1 + 4046: -41,3 + 4057: -45,6 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNe decals: - 4700: 4,-2 - 4701: 3,-1 - 4733: -1,1 - 4774: -11,2 - 4797: -36,-5 + 3852: 4,-2 + 3853: 3,-1 + 3885: -1,1 + 3914: -11,2 + 3929: -36,-5 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerNe + decals: + 5164: 48,18 + 5189: 55,18 + 5208: 55,28 + 5268: 52,9 - node: color: '#F9FFFEFF' id: BrickTileWhiteCornerNe decals: - 332: 28,-27 - 333: 27,-28 - 1026: 22,-13 - 1027: 22,-16 - 1028: 22,-19 - 1052: 19,-12 - 4213: 13,-22 - 4261: 26,-22 + 236: 28,-27 + 237: 27,-28 + 900: 22,-13 + 901: 22,-16 + 902: 22,-19 + 926: 19,-12 + 3413: 26,-22 - node: color: '#169C9CFF' id: BrickTileWhiteCornerNw decals: - 1151: 10,-32 + 1025: 10,-32 - node: color: '#1D1D21FF' id: BrickTileWhiteCornerNw decals: - 424: 3,-62 - 462: -1,-57 - 493: 3,-55 - 523: 0,-54 - 1286: 8,-66 - 4423: -22,-14 + 328: 3,-62 + 366: -1,-57 + 397: 3,-55 + 427: 0,-54 + 1160: 8,-66 + 3575: -22,-14 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNw decals: - 4486: -41,-23 - 4492: -39,-20 + 3638: -41,-23 + 3644: -39,-20 - node: color: '#52B4E996' id: BrickTileWhiteCornerNw decals: - 1194: 24,-33 - 1206: 22,-37 - 3845: 46,-42 - 4593: -22,-9 - 4594: -27,-10 - 4595: -27,-14 + 1068: 24,-33 + 1080: 22,-37 + 3025: 46,-42 + 3745: -22,-9 + 3746: -27,-10 + 3747: -27,-14 - node: color: '#8932B87F' id: BrickTileWhiteCornerNw decals: - 921: 27,3 + 795: 27,3 - node: color: '#9FED5896' id: BrickTileWhiteCornerNw decals: - 245: 39,-32 + 149: 39,-32 - node: angle: 43.982297150257104 rad color: '#9FED5896' id: BrickTileWhiteCornerNw decals: - 814: 15,-8 - 878: 37,13 + 713: 15,-8 - node: color: '#D381C996' id: BrickTileWhiteCornerNw decals: - 350: 8,-63 - 368: 18,-55 - 382: 18,-50 - 391: 24,-50 - 394: 24,-54 - 405: 23,-66 - 1251: 12,-66 + 254: 8,-63 + 272: 18,-55 + 286: 18,-50 + 295: 24,-50 + 298: 24,-54 + 309: 23,-66 + 1125: 12,-66 - node: color: '#D58C18BF' id: BrickTileWhiteCornerNw decals: - 4928: -43,3 - 4942: -49,6 - 4953: -49,-1 - 4954: -47,-1 - 4955: -45,-1 + 4048: -43,3 + 4062: -49,6 + 4073: -49,-1 + 4074: -47,-1 + 4075: -45,-1 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerNw decals: - 4706: 2,-5 - 4775: -13,2 - 4776: -17,1 - 4798: -38,-5 - 4801: -41,-6 + 3858: 2,-5 + 3915: -13,2 + 3916: -17,1 + 3930: -38,-5 + 3933: -41,-6 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerNw + decals: + 4981: 48,11 + 5156: 40,18 + 5194: 50,18 + 5231: 49,24 + 5267: 50,9 - node: color: '#F9FFFEFF' id: BrickTileWhiteCornerNw decals: - 322: 22,-27 - 323: 23,-28 - 1015: 18,-12 - 1016: 15,-13 - 1017: 15,-16 - 1018: 15,-19 - 1019: 15,-22 - 1025: 21,-13 - 1057: 21,-16 - 1058: 21,-19 - 1075: 18,-33 - 1125: 10,-30 - 4210: 10,-22 - 4257: 21,-22 + 226: 22,-27 + 227: 23,-28 + 889: 18,-12 + 890: 15,-13 + 891: 15,-16 + 892: 15,-19 + 893: 15,-22 + 899: 21,-13 + 931: 21,-16 + 932: 21,-19 + 949: 18,-33 + 999: 10,-30 + 3409: 21,-22 - node: color: '#169C9CC4' id: BrickTileWhiteCornerSe decals: - 1156: 13,-34 + 1030: 13,-34 - node: color: '#1D1D21FF' id: BrickTileWhiteCornerSe decals: - 426: 5,-63 - 468: 0,-62 - 495: 5,-58 - 529: 6,-59 - 4439: -14,-22 - 4655: -24,-32 - 4656: -23,-22 + 330: 5,-63 + 372: 0,-62 + 399: 5,-58 + 433: 6,-59 + 3591: -14,-22 + 3807: -24,-32 + 3808: -23,-22 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSe decals: - 4499: -37,-25 + 3651: -37,-25 - node: color: '#52B4E996' id: BrickTileWhiteCornerSe decals: - 1201: 26,-39 - 3856: 55,-44 - 4601: -24,-16 - 4602: -18,-12 - 4603: -24,-13 + 1075: 26,-39 + 3036: 55,-44 + 3753: -24,-16 + 3754: -18,-12 + 3755: -24,-13 - node: color: '#9FED5896' id: BrickTileWhiteCornerSe decals: - 235: 41,-37 - 238: 43,-36 + 139: 41,-37 + 142: 43,-36 - node: angle: 43.982297150257104 rad color: '#9FED5896' id: BrickTileWhiteCornerSe decals: - 825: 33,-35 + 724: 33,-35 - node: color: '#D381C996' id: BrickTileWhiteCornerSe decals: - 387: 22,-53 - 388: 26,-52 - 3825: 28,-70 + 291: 22,-53 + 292: 26,-52 + 3005: 28,-70 - node: color: '#D58C18BF' id: BrickTileWhiteCornerSe decals: - 4959: -48,-2 - 4960: -46,-2 - 4961: -44,-2 + 4079: -48,-2 + 4080: -46,-2 + 4081: -44,-2 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSe decals: - 4522: -37,-31 - 4806: -40,-7 - 4813: -36,-7 - 4841: -30,-6 - 4861: -17,-2 - 4872: -11,0 - 4894: -8,-7 + 3674: -37,-31 + 3938: -40,-7 + 3945: -36,-7 + 3973: -30,-6 + 3992: -11,0 + 4014: -8,-7 + 5054: -18,-2 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerSe + decals: + 5167: 48,15 + 5188: 55,15 + 5262: 52,6 - node: color: '#F9FFFEFF' id: BrickTileWhiteCornerSe decals: - 336: 27,-29 - 337: 28,-30 - 1005: 19,-31 - 1006: 22,-20 - 1007: 22,-17 - 1008: 22,-14 - 1071: 22,-35 - 4216: 13,-28 - 4262: 26,-24 + 240: 27,-29 + 241: 28,-30 + 879: 19,-31 + 880: 22,-20 + 881: 22,-17 + 882: 22,-14 + 945: 22,-35 + 3368: 13,-28 + 3414: 26,-24 - node: color: '#169C9CC4' id: BrickTileWhiteCornerSw decals: - 1157: 10,-34 + 1031: 10,-34 - node: color: '#1D1D21FF' id: BrickTileWhiteCornerSw decals: - 265: 21,-31 - 423: 3,-63 - 467: -1,-62 - 496: 3,-58 - 524: 0,-55 - 4425: -22,-16 - 4432: -21,-22 + 169: 21,-31 + 327: 3,-63 + 371: -1,-62 + 400: 3,-58 + 428: 0,-55 + 3577: -22,-16 + 3584: -21,-22 - node: angle: 43.982297150257104 rad color: '#334E6DC8' id: BrickTileWhiteCornerSw decals: - 892: -10,-55 + 766: -10,-55 - node: color: '#52B4E996' id: BrickTileWhiteCornerSw decals: - 1205: 22,-39 - 3843: 46,-44 - 4599: -22,-12 - 4600: -27,-16 + 1079: 22,-39 + 3023: 46,-44 + 3751: -22,-12 + 3752: -27,-16 - node: angle: 43.982297150257104 rad color: '#52B4E996' id: BrickTileWhiteCornerSw decals: - 859: 24,-20 + 758: 24,-20 - node: color: '#8932B87F' id: BrickTileWhiteCornerSw decals: - 913: 30,-4 - 918: 27,0 - - node: - color: '#9FED5896' - id: BrickTileWhiteCornerSw - decals: - 234: 39,-37 + 787: 30,-4 + 792: 27,0 - node: - angle: 43.982297150257104 rad color: '#9FED5896' id: BrickTileWhiteCornerSw decals: - 886: 37,6 + 138: 39,-37 - node: color: '#D381C996' id: BrickTileWhiteCornerSw decals: - 379: 18,-53 - 399: 24,-57 - 1247: 12,-70 - 3831: 23,-70 + 283: 18,-53 + 303: 24,-57 + 1121: 12,-70 + 3011: 23,-70 - node: color: '#D58C18BF' id: BrickTileWhiteCornerSw decals: - 4919: -43,-2 - 4948: -49,0 - 4956: -49,-2 - 4957: -47,-2 - 4958: -45,-2 + 4039: -43,-2 + 4068: -49,0 + 4076: -49,-2 + 4077: -47,-2 + 4078: -45,-2 - node: color: '#DE3A3A96' id: BrickTileWhiteCornerSw decals: - 4527: -41,-31 - 4705: 2,-6 - 4811: -38,-7 - 5644: -5,-7 + 3679: -41,-31 + 3857: 2,-6 + 3943: -38,-7 + 4761: -5,-7 + - node: + color: '#EFB34196' + id: BrickTileWhiteCornerSw + decals: + 5197: 50,15 + 5230: 49,23 + 5264: 50,6 - node: color: '#F9FFFEFF' id: BrickTileWhiteCornerSw decals: - 284: 21,-31 - 346: 22,-30 - 347: 23,-29 - 1020: 15,-28 - 1021: 15,-20 - 1022: 15,-17 - 1023: 21,-20 - 1024: 15,-14 - 1059: 21,-17 - 1060: 21,-14 - 1076: 18,-35 - 1140: 10,-31 - 4219: 10,-28 + 188: 21,-31 + 250: 22,-30 + 251: 23,-29 + 894: 15,-28 + 895: 15,-20 + 896: 15,-17 + 897: 21,-20 + 898: 15,-14 + 933: 21,-17 + 934: 21,-14 + 950: 18,-35 + 1014: 10,-31 + 3371: 10,-28 - node: color: '#169C9CFF' id: BrickTileWhiteEndE decals: - 1219: 12,-33 + 1093: 12,-33 - node: color: '#DE3A3A96' id: BrickTileWhiteEndE decals: - 4838: -30,-13 + 3970: -30,-13 + - node: + color: '#EFB34196' + id: BrickTileWhiteEndE + decals: + 4934: 51,13 + 4937: 50,11 + 4940: 61,13 + 4941: 63,11 + 4990: 46,13 + 5221: 53,23 - node: color: '#F9FFFEFF' id: BrickTileWhiteEndE decals: - 4274: 25,-23 + 3426: 25,-23 - node: color: '#1D1D21FF' id: BrickTileWhiteEndN decals: - 1268: 9,-67 + 1142: 9,-67 - node: color: '#52B4E996' id: BrickTileWhiteEndN decals: - 3847: 48,-41 - 3864: 48,-44 + 3027: 48,-41 + 3044: 48,-44 + - node: + color: '#DE3A3A96' + id: BrickTileWhiteEndN + decals: + 5043: -24,8 + - node: + color: '#EFB34196' + id: BrickTileWhiteEndN + decals: + 4991: 46,11 + 5218: 55,25 + 5219: 50,26 - node: color: '#1D1D21FF' id: BrickTileWhiteEndS decals: - 1274: 9,-70 + 1148: 9,-70 - node: color: '#52B4E996' id: BrickTileWhiteEndS decals: - 3865: 48,-42 + 3045: 48,-42 + - node: + color: '#EFB34196' + id: BrickTileWhiteEndS + decals: + 5002: 46,8 + 5003: 48,8 + 5207: 55,27 + 5220: 55,23 - node: color: '#169C9CFF' id: BrickTileWhiteEndW decals: - 1218: 11,-33 + 1092: 11,-33 - node: color: '#DE3A3A96' id: BrickTileWhiteEndW decals: - 4826: -33,-13 + 3958: -33,-13 + - node: + color: '#EFB34196' + id: BrickTileWhiteEndW + decals: + 4938: 52,11 + 4939: 53,13 + 4976: 44,13 + 4980: 48,13 + 4992: 43,9 + 5206: 50,28 - node: color: '#F9FFFEFF' id: BrickTileWhiteEndW decals: - 1126: 10,-35 - 4273: 21,-23 + 1000: 10,-35 + 3425: 21,-23 - node: color: '#1D1D21FF' id: BrickTileWhiteInnerNe decals: - 430: 3,-63 - 4650: -24,-24 + 334: 3,-63 + 3802: -24,-24 - node: color: '#52B4E996' id: BrickTileWhiteInnerNe decals: - 3866: 48,-46 - 4579: -18,-11 - 4613: -25,-14 - 4615: -24,-11 + 3046: 48,-46 + 3731: -18,-11 + 3765: -25,-14 + 3767: -24,-11 - node: color: '#79150096' id: BrickTileWhiteInnerNe decals: - 4368: -11,-37 + 3520: -11,-37 + - node: + color: '#A4610696' + id: BrickTileWhiteInnerNe + decals: + 5128: 29,11 + 5134: 34,11 + 5135: 22,11 - node: color: '#D58C18BF' id: BrickTileWhiteInnerNe decals: - 4920: -36,-2 - 4932: -45,1 - 4938: -46,6 + 4040: -36,-2 + 4052: -45,1 + 4058: -46,6 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerNe decals: - 4514: -41,-27 - 4688: 4,-9 - 4702: 3,-2 - 4720: -1,-9 - 4730: -1,-1 - 4759: -7,1 - 4760: -21,-2 - 4761: -24,-2 - 4762: -27,-2 - 4763: -32,-2 - 4770: -11,1 - 4796: -36,-6 - 4802: -40,-6 - 4839: -31,-13 - 4907: -8,-3 - 5643: -5,-7 + 3666: -41,-27 + 3840: 4,-9 + 3854: 3,-2 + 3872: -1,-9 + 3882: -1,-1 + 3906: -7,1 + 3907: -32,-2 + 3910: -11,1 + 3928: -36,-6 + 3934: -40,-6 + 3971: -31,-13 + 4027: -8,-3 + 4760: -5,-7 + 5025: -24,0 + 5026: -20,0 - node: color: '#EFB34196' id: BrickTileWhiteInnerNe decals: - 3951: 21,11 + 5149: 40,13 + 5151: 41,7 + 5202: 55,16 + 5226: 50,23 + 5235: 49,23 + 5270: 52,7 + 5273: 51,9 - node: color: '#1D1D21FF' id: BrickTileWhiteInnerNw decals: - 432: 5,-63 - 4667: -25,-27 - 4671: -25,-25 + 336: 5,-63 + 3819: -25,-27 + 3823: -25,-25 - node: color: '#334E6DC8' id: BrickTileWhiteInnerNw decals: - 4487: -41,-24 - 4489: -39,-23 + 3639: -41,-24 + 3641: -39,-23 - node: color: '#52B4E996' id: BrickTileWhiteInnerNw decals: - 1208: 24,-37 - 3867: 48,-46 - 4577: -16,-11 - 4580: -22,-11 - 4610: -27,-13 - 4614: -26,-14 + 1082: 24,-37 + 3047: 48,-46 + 3729: -16,-11 + 3732: -22,-11 + 3762: -27,-13 + 3766: -26,-14 - node: angle: 43.982297150257104 rad color: '#52B4E996' id: BrickTileWhiteInnerNw decals: - 844: 31,-33 + 743: 31,-33 - node: color: '#79150096' id: BrickTileWhiteInnerNw decals: - 4369: -12,-37 + 3521: -12,-37 - node: color: '#9FED5896' id: BrickTileWhiteInnerNw decals: - 4325: -12,-24 + 3477: -12,-24 - node: - angle: 43.982297150257104 rad - color: '#9FED5896' + color: '#A4610696' id: BrickTileWhiteInnerNw decals: - 880: 37,11 + 5136: 21,11 + 5137: 34,11 - node: color: '#D381C996' id: BrickTileWhiteInnerNw decals: - 361: 18,-63 - 404: 24,-66 + 265: 18,-63 + 308: 24,-66 - node: color: '#D58C18BF' id: BrickTileWhiteInnerNw decals: - 4930: -43,1 - 4939: -46,6 - 4945: -49,3 + 4050: -43,1 + 4059: -46,6 + 4065: -49,3 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerNw decals: - 4512: -41,-28 - 4689: 3,-9 - 4703: 3,-5 - 4721: -2,-9 - 4764: -32,-2 - 4765: -27,-2 - 4766: -24,-2 - 4767: -21,-2 - 4768: -17,-2 - 4769: -13,1 - 4773: -7,1 - 4792: -33,-6 - 4799: -38,-6 - 4803: -40,-6 - 4804: -41,-7 - 4825: -32,-13 - 4895: -8,-7 - 4906: -5,-3 - 5649: -2,-7 + 3664: -41,-28 + 3841: 3,-9 + 3855: 3,-5 + 3873: -2,-9 + 3908: -32,-2 + 3909: -13,1 + 3913: -7,1 + 3924: -33,-6 + 3931: -38,-6 + 3935: -40,-6 + 3936: -41,-7 + 3957: -32,-13 + 4015: -8,-7 + 4026: -5,-3 + 4766: -2,-7 + 5024: -24,-2 + 5027: -20,0 + 5047: -24,4 + 5048: -24,1 + 5049: -24,7 + 5050: -17,0 + - node: + color: '#EFB34196' + id: BrickTileWhiteInnerNw + decals: + 4999: 46,9 + 5150: 40,13 + 5176: 40,17 + 5232: 50,24 + 5236: 50,23 + 5272: 51,9 - node: color: '#F9FFFEFF' id: BrickTileWhiteInnerNw decals: - 1048: 18,-13 - 1049: 18,-16 - 1050: 18,-19 - 1051: 18,-22 - 1132: 14,-35 + 922: 18,-13 + 923: 18,-16 + 924: 18,-19 + 925: 18,-22 + 1006: 14,-35 - node: color: '#1D1D21FF' id: BrickTileWhiteInnerSe decals: - 431: 3,-62 - 4649: -24,-26 - 4657: -24,-22 + 335: 3,-62 + 3801: -24,-26 + 3809: -24,-22 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSe decals: - 4503: -41,-25 + 3655: -41,-25 - node: color: '#52B4E996' id: BrickTileWhiteInnerSe decals: - 4578: -18,-11 - 4612: -25,-13 - 4616: -24,-11 + 3730: -18,-11 + 3764: -25,-13 + 3768: -24,-11 - node: color: '#9FED5896' id: BrickTileWhiteInnerSe decals: - 236: 41,-36 + 140: 41,-36 - node: angle: 43.982297150257104 rad color: '#9FED5896' id: BrickTileWhiteInnerSe decals: - 829: 33,-30 + 728: 33,-30 - node: color: '#D58C18BF' id: BrickTileWhiteInnerSe decals: - 4965: -48,0 - 4966: -46,0 - 4967: -44,0 + 4085: -48,0 + 4086: -46,0 + 4087: -44,0 - node: color: '#DE3A3A96' id: BrickTileWhiteInnerSe decals: - 4525: -39,-31 - 4731: -1,-2 - 4805: -41,-7 - 4807: -40,-6 - 4814: -36,-6 - 4818: -31,-6 - 4840: -31,-13 - 4845: -30,-2 - 4858: -21,-2 - 4863: -17,0 - 4871: -12,0 - 4873: -11,1 - 4883: -8,1 - 4884: -5,1 - 4891: -8,-6 + 3677: -39,-31 + 3883: -1,-2 + 3937: -41,-7 + 3939: -40,-6 + 3946: -36,-6 + 3950: -31,-6 + 3972: -31,-13 + 3977: -30,-2 + 3991: -12,0 + 3993: -11,1 + 4003: -8,1 + 4004: -5,1 + 4011: -8,-6 + 5022: -21,-2 + 5052: -18,0 + - node: + color: '#EFB34196' + id: BrickTileWhiteInnerSe + decals: + 4984: 48,11 + 5174: 40,15 + 5178: 47,15 + 5179: 41,13 + 5199: 52,15 + 5203: 55,16 + 5237: 49,24 + 5271: 52,7 - node: color: '#1D1D21FF' id: BrickTileWhiteInnerSw decals: - 433: 5,-62 - 539: 2,-55 - 4426: -21,-16 - 4670: -25,-25 - 4672: -25,-23 + 337: 5,-62 + 443: 2,-55 + 3578: -21,-16 + 3822: -25,-25 + 3824: -25,-23 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSw decals: - 4505: -41,-24 + 3657: -41,-24 - node: color: '#52B4E996' id: BrickTileWhiteInnerSw decals: - 4576: -16,-11 - 4581: -22,-11 - 4611: -26,-13 + 3728: -16,-11 + 3733: -22,-11 + 3763: -26,-13 - node: angle: 43.982297150257104 rad color: '#52B4E996' id: BrickTileWhiteInnerSw decals: - 851: 31,-24 - 856: 28,-20 + 750: 31,-24 + 755: 28,-20 - node: color: '#79150096' id: BrickTileWhiteInnerSw decals: - 4310: -12,-26 + 3462: -12,-26 - node: color: '#8932B87F' id: BrickTileWhiteInnerSw decals: - 915: 30,0 + 789: 30,0 - node: - angle: 43.982297150257104 rad - color: '#9FED5896' + color: '#D58C18BF' id: BrickTileWhiteInnerSw decals: - 883: 37,9 + 4066: -49,2 + 4070: -43,0 - node: - color: '#D58C18BF' + color: '#DE3A3A96' id: BrickTileWhiteInnerSw decals: - 4946: -49,2 - 4950: -43,0 + 3663: -41,-28 + 3678: -39,-31 + 3856: 3,-6 + 3862: 3,-2 + 3920: -33,-2 + 3944: -38,-6 + 3949: -32,-6 + 3959: -32,-13 + 3990: -12,0 + 4000: -2,1 + 4001: -5,1 + 4002: -8,1 + 4758: -5,-6 + 4767: -2,-7 + 5023: -21,-2 + 5039: -24,7 + 5040: -24,4 + 5041: -24,1 - node: - color: '#DE3A3A96' + color: '#EFB34196' id: BrickTileWhiteInnerSw decals: - 4511: -41,-28 - 4526: -39,-31 - 4704: 3,-6 - 4710: 3,-2 - 4788: -33,-2 - 4812: -38,-6 - 4817: -32,-6 - 4827: -32,-13 - 4857: -21,-2 - 4870: -12,0 - 4880: -2,1 - 4881: -5,1 - 4882: -8,1 - 5641: -5,-6 - 5650: -2,-7 + 4995: 46,9 + 5175: 40,17 + 5177: 47,15 + 5200: 52,15 + 5217: 55,28 + 5234: 50,24 - node: color: '#F9FFFEFF' id: BrickTileWhiteInnerSw decals: - 1030: 18,-28 - 1031: 18,-20 - 1032: 18,-17 - 1033: 18,-14 - 1136: 14,-31 + 904: 18,-28 + 905: 18,-20 + 906: 18,-17 + 907: 18,-14 + 1010: 14,-31 - node: color: '#169C9CC4' id: BrickTileWhiteLineE decals: - 1155: 13,-33 + 1029: 13,-33 - node: color: '#1D1D21FF' id: BrickTileWhiteLineE decals: - 259: 29,-30 - 276: 29,-27 - 458: 0,-60 - 459: 0,-59 - 460: 0,-58 - 499: 5,-56 - 500: 5,-57 - 530: 6,-58 - 531: 6,-57 - 532: 6,-56 - 533: 6,-55 - 1269: 9,-68 - 1270: 9,-69 - 1291: 10,-70 - 1292: 10,-69 - 1293: 10,-68 - 1294: 10,-67 - 4651: -24,-23 - 4652: -24,-27 - 4653: -24,-28 - 4654: -24,-29 - 4659: -23,-21 - 4660: -23,-20 - 4661: -23,-19 - 4662: -24,-31 - 4663: -24,-30 + 163: 29,-30 + 180: 29,-27 + 362: 0,-60 + 363: 0,-59 + 364: 0,-58 + 403: 5,-56 + 404: 5,-57 + 434: 6,-58 + 435: 6,-57 + 436: 6,-56 + 437: 6,-55 + 1143: 9,-68 + 1144: 9,-69 + 1165: 10,-70 + 1166: 10,-69 + 1167: 10,-68 + 1168: 10,-67 + 3803: -24,-23 + 3804: -24,-27 + 3805: -24,-28 + 3806: -24,-29 + 3811: -23,-21 + 3812: -23,-20 + 3813: -23,-19 + 3814: -24,-31 + 3815: -24,-30 - node: color: '#334E6DC8' id: BrickTileWhiteLineE decals: - 3962: -20,-44 - 3963: -20,-46 - 3964: -20,-47 - 3965: -20,-48 - 3966: -20,-49 - 3967: -20,-50 - 3975: -20,-43 - 4495: -37,-21 - 4496: -37,-22 - 4497: -37,-23 - 4498: -37,-24 - 4506: -41,-26 + 3122: -20,-44 + 3123: -20,-46 + 3124: -20,-47 + 3125: -20,-48 + 3126: -20,-49 + 3127: -20,-50 + 3135: -20,-43 + 3647: -37,-21 + 3648: -37,-22 + 3649: -37,-23 + 3650: -37,-24 + 3658: -41,-26 - node: color: '#52B4E996' id: BrickTileWhiteLineE decals: - 1197: 26,-34 - 1198: 26,-35 - 1199: 26,-36 - 1200: 26,-37 - 3855: 55,-43 - 3868: 48,-45 - 4582: -18,-10 - 4583: -24,-12 - 4584: -24,-15 + 1071: 26,-34 + 1072: 26,-35 + 1073: 26,-36 + 1074: 26,-37 + 3035: 55,-43 + 3048: 48,-45 + 3734: -18,-10 + 3735: -24,-12 + 3736: -24,-15 - node: color: '#79150096' id: BrickTileWhiteLineE decals: - 4303: -11,-36 - 4304: -11,-35 - 4305: -11,-34 - 4306: -11,-33 - 4307: -11,-32 - 4308: -11,-31 - 4309: -11,-30 + 3455: -11,-36 + 3456: -11,-35 + 3457: -11,-34 + 3458: -11,-33 + 3459: -11,-32 + 3460: -11,-31 + 3461: -11,-30 - node: color: '#8932B87F' id: BrickTileWhiteLineE decals: - 928: 33,2 - 929: 33,1 - 930: 33,-1 - 931: 33,-2 + 802: 33,2 + 803: 33,1 + 804: 33,-1 + 805: 33,-2 - node: color: '#9FED5896' id: BrickTileWhiteLineE decals: - 239: 43,-35 - 240: 43,-34 - 4335: -11,-15 - 4336: -11,-16 - 4337: -11,-17 - 4338: -11,-18 - 4339: -11,-20 - 4340: -11,-22 - 4341: -11,-23 - 4342: -11,-24 - 4343: -11,-28 - 4344: -11,-29 - 4345: -11,-14 + 143: 43,-35 + 144: 43,-34 + 3487: -11,-15 + 3488: -11,-16 + 3489: -11,-17 + 3490: -11,-18 + 3491: -11,-20 + 3492: -11,-22 + 3493: -11,-23 + 3494: -11,-24 + 3495: -11,-28 + 3496: -11,-29 + 3497: -11,-14 - node: angle: 43.982297150257104 rad color: '#9FED5896' id: BrickTileWhiteLineE decals: - 827: 33,-32 - 828: 33,-31 - 891: 41,12 + 726: 33,-32 + 727: 33,-31 + - node: + color: '#A4610696' + id: BrickTileWhiteLineE + decals: + 5127: 29,12 - node: color: '#D381C996' id: BrickTileWhiteLineE decals: - 372: 22,-57 - 373: 22,-58 - 374: 22,-59 - 375: 22,-62 - 376: 22,-63 - 386: 22,-51 - 389: 26,-51 - 396: 26,-55 - 397: 26,-56 - 408: 28,-68 - 409: 28,-67 - 410: 28,-66 - 411: 28,-65 - 1242: 17,-68 - 1243: 17,-69 - 3819: 17,-67 - 3826: 28,-69 + 276: 22,-57 + 277: 22,-58 + 278: 22,-59 + 279: 22,-62 + 280: 22,-63 + 290: 22,-51 + 293: 26,-51 + 300: 26,-55 + 301: 26,-56 + 312: 28,-68 + 313: 28,-67 + 314: 28,-66 + 315: 28,-65 + 1116: 17,-68 + 1117: 17,-69 + 3004: 17,-67 + 3006: 28,-69 - node: color: '#D58C18BF' id: BrickTileWhiteLineE decals: - 4925: -41,2 - 4933: -45,2 - 4934: -45,3 - 4935: -45,4 - 4936: -45,5 - 4962: -44,-1 - 4963: -46,-1 - 4964: -48,-1 - 4969: -41,1 + 4045: -41,2 + 4053: -45,2 + 4054: -45,3 + 4055: -45,4 + 4056: -45,5 + 4082: -44,-1 + 4083: -46,-1 + 4084: -48,-1 + 4089: -41,1 - node: color: '#DE3A3A96' id: BrickTileWhiteLineE decals: - 4518: -37,-28 - 4519: -37,-29 - 4520: -37,-30 - 4531: -39,-32 - 4690: 4,-8 - 4691: 4,-7 - 4692: 4,-6 - 4693: 4,-5 - 4694: 4,-4 - 4695: 4,-3 - 4714: -1,-8 - 4715: -1,-7 - 4716: -1,-6 - 4717: -1,-5 - 4718: -1,-4 - 4719: -1,-3 - 4732: -1,0 - 4771: -7,2 - 4782: -27,-1 - 4783: -24,-1 - 4784: -21,-1 - 4785: -32,-1 - 4830: -31,-15 - 4831: -31,-14 - 4832: -31,-12 - 4833: -31,-11 - 4834: -31,-10 - 4835: -31,-9 - 4836: -31,-8 - 4837: -31,-7 - 4842: -30,-5 - 4843: -30,-4 - 4844: -30,-3 - 4859: -21,-3 - 4862: -17,-1 - 4868: -12,-1 - 4885: -5,0 - 4886: -5,-1 - 4887: -5,-2 - 4888: -5,-3 - 4889: -5,-4 - 4890: -5,-5 - 4910: -8,-2 - 4911: -8,-1 - 4912: -8,0 - 5642: -5,-6 + 3670: -37,-28 + 3671: -37,-29 + 3672: -37,-30 + 3683: -39,-32 + 3842: 4,-8 + 3843: 4,-7 + 3844: 4,-6 + 3845: 4,-5 + 3846: 4,-4 + 3847: 4,-3 + 3866: -1,-8 + 3867: -1,-7 + 3868: -1,-6 + 3869: -1,-5 + 3870: -1,-4 + 3871: -1,-3 + 3884: -1,0 + 3911: -7,2 + 3917: -32,-1 + 3962: -31,-15 + 3963: -31,-14 + 3964: -31,-12 + 3965: -31,-11 + 3966: -31,-10 + 3967: -31,-9 + 3968: -31,-8 + 3969: -31,-7 + 3974: -30,-5 + 3975: -30,-4 + 3976: -30,-3 + 3982: -21,-3 + 3988: -12,-1 + 4005: -5,0 + 4006: -5,-1 + 4007: -5,-2 + 4008: -5,-3 + 4009: -5,-4 + 4010: -5,-5 + 4030: -8,-2 + 4031: -8,-1 + 4032: -8,0 + 4759: -5,-6 + 5028: -20,1 + 5034: -24,1 + 5035: -24,3 + 5036: -24,4 + 5037: -24,6 + 5038: -24,7 + 5042: -24,2 + 5044: -24,5 + 5053: -18,-1 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineE + decals: + 4985: 48,9 + 4986: 48,10 + 4996: 46,9 + 4997: 46,10 + 5142: 41,12 + 5143: 41,11 + 5144: 41,10 + 5145: 41,9 + 5146: 41,8 + 5165: 48,17 + 5166: 48,16 + 5182: 47,14 + 5185: 52,14 + 5201: 55,17 + 5224: 50,25 + 5225: 50,24 + 5269: 52,8 - node: color: '#F9FFFEFF' id: BrickTileWhiteLineE decals: - 277: 29,-27 - 278: 29,-30 - 334: 28,-28 - 335: 28,-29 - 992: 19,-22 - 993: 19,-21 - 994: 19,-20 - 995: 19,-19 - 996: 19,-18 - 997: 19,-15 - 998: 19,-14 - 999: 19,-13 - 1000: 19,-24 - 1001: 19,-25 - 1002: 19,-27 - 1003: 19,-29 - 1004: 19,-30 - 1141: 16,-32 - 1142: 16,-33 - 1171: 15,-34 - 1172: 15,-33 - 1173: 15,-32 - 1174: 15,-31 - 4214: 13,-24 - 4215: 13,-26 - 4232: 13,-27 + 181: 29,-27 + 182: 29,-30 + 238: 28,-28 + 239: 28,-29 + 866: 19,-22 + 867: 19,-21 + 868: 19,-20 + 869: 19,-19 + 870: 19,-18 + 871: 19,-15 + 872: 19,-14 + 873: 19,-13 + 874: 19,-24 + 875: 19,-25 + 876: 19,-27 + 877: 19,-29 + 878: 19,-30 + 1015: 16,-32 + 1016: 16,-33 + 1045: 15,-34 + 1046: 15,-33 + 1047: 15,-32 + 1048: 15,-31 + 3366: 13,-24 + 3367: 13,-26 + 3384: 13,-27 - node: color: '#169C9CFF' id: BrickTileWhiteLineN decals: - 1152: 11,-32 - 1153: 12,-32 + 1026: 11,-32 + 1027: 12,-32 - node: color: '#1D1D21FF' id: BrickTileWhiteLineN decals: - 266: 22,-26 - 267: 23,-26 - 268: 24,-26 - 269: 26,-26 - 270: 27,-26 - 427: 4,-62 - 428: 4,-63 - 501: 4,-55 - 535: 5,-54 - 536: 4,-54 - 537: 2,-54 - 538: 1,-54 - 4420: -19,-14 - 4421: -20,-14 - 4422: -21,-14 - 4632: -20,-24 - 4633: -21,-24 - 4634: -22,-24 - 4635: -23,-24 - 4636: -24,-18 - 4637: -25,-18 - 4638: -26,-18 - 4639: -27,-18 - 4640: -28,-18 - 4664: -28,-27 - 4665: -27,-27 - 4666: -26,-27 + 170: 22,-26 + 171: 23,-26 + 172: 24,-26 + 173: 26,-26 + 174: 27,-26 + 331: 4,-62 + 332: 4,-63 + 405: 4,-55 + 439: 5,-54 + 440: 4,-54 + 441: 2,-54 + 442: 1,-54 + 3572: -19,-14 + 3573: -20,-14 + 3574: -21,-14 + 3784: -20,-24 + 3785: -21,-24 + 3786: -22,-24 + 3787: -23,-24 + 3788: -24,-18 + 3789: -25,-18 + 3790: -26,-18 + 3791: -27,-18 + 3792: -28,-18 + 3816: -28,-27 + 3817: -27,-27 + 3818: -26,-27 - node: color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 212: -18,-53 - 213: -17,-53 - 214: -16,-53 - 215: -19,-53 - 216: -15,-53 - 217: -14,-53 - 218: -13,-53 - 219: -12,-53 - 220: -11,-53 - 4485: -42,-24 - 4488: -40,-23 - 4493: -38,-20 + 116: -18,-53 + 117: -17,-53 + 118: -16,-53 + 119: -19,-53 + 120: -15,-53 + 121: -14,-53 + 122: -13,-53 + 123: -12,-53 + 124: -11,-53 + 3637: -42,-24 + 3640: -40,-23 + 3645: -38,-20 - node: angle: 43.982297150257104 rad color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 895: -9,-50 - 896: -8,-50 - 897: -7,-50 - 898: -6,-50 - 899: -5,-50 - 900: -4,-50 - 901: -3,-50 - 902: -2,-50 + 769: -9,-50 + 770: -8,-50 + 771: -7,-50 + 772: -6,-50 + 773: -5,-50 + 774: -4,-50 + 775: -3,-50 + 776: -2,-50 - node: color: '#52B4E996' id: BrickTileWhiteLineN decals: - 1195: 25,-33 - 1207: 23,-37 - 3834: 46,-46 - 3835: 47,-46 - 3836: 49,-46 - 3837: 50,-46 - 3838: 51,-46 - 3839: 52,-46 - 3840: 53,-46 - 3841: 54,-46 - 3842: 55,-46 - 3846: 47,-42 - 3848: 49,-42 - 3849: 50,-42 - 3850: 51,-42 - 3851: 52,-42 - 3852: 53,-42 - 3853: 54,-42 - 4574: -17,-11 - 4588: -19,-9 - 4589: -20,-9 - 4590: -21,-9 - 4591: -25,-10 - 4592: -26,-10 + 1069: 25,-33 + 1081: 23,-37 + 3014: 46,-46 + 3015: 47,-46 + 3016: 49,-46 + 3017: 50,-46 + 3018: 51,-46 + 3019: 52,-46 + 3020: 53,-46 + 3021: 54,-46 + 3022: 55,-46 + 3026: 47,-42 + 3028: 49,-42 + 3029: 50,-42 + 3030: 51,-42 + 3031: 52,-42 + 3032: 53,-42 + 3033: 54,-42 + 3726: -17,-11 + 3740: -19,-9 + 3741: -20,-9 + 3742: -21,-9 + 3743: -25,-10 + 3744: -26,-10 - node: angle: 43.982297150257104 rad color: '#52B4E996' id: BrickTileWhiteLineN decals: - 843: 30,-33 + 742: 30,-33 - node: color: '#79150096' id: BrickTileWhiteLineN decals: - 4357: -14,-37 - 4358: -13,-37 - 4359: -10,-37 - 4360: -9,-37 - 4361: -8,-37 - 4362: -16,-37 - 4363: -15,-37 - 4364: -7,-37 - 4365: -6,-37 - 4366: -5,-37 - 4367: -4,-37 + 3509: -14,-37 + 3510: -13,-37 + 3511: -10,-37 + 3512: -9,-37 + 3513: -8,-37 + 3514: -16,-37 + 3515: -15,-37 + 3516: -7,-37 + 3517: -6,-37 + 3518: -5,-37 + 3519: -4,-37 - node: color: '#8932B87F' id: BrickTileWhiteLineN decals: - 922: 28,3 - 923: 29,3 - 924: 30,3 - 925: 31,3 - 926: 32,3 + 796: 28,3 + 797: 29,3 + 798: 30,3 + 799: 31,3 + 800: 32,3 - node: angle: 43.982297150257104 rad color: '#8932B87F' id: BrickTileWhiteLineN decals: - 820: 26,-6 - 821: 29,-6 - 822: 30,-6 - 823: 32,-6 - 824: 33,-6 + 719: 26,-6 + 720: 29,-6 + 721: 30,-6 + 722: 32,-6 + 723: 33,-6 - node: color: '#9FED5896' id: BrickTileWhiteLineN decals: - 242: 42,-32 - 243: 41,-32 - 244: 40,-32 - 4047: -28,-25 - 4048: -27,-25 - 4049: -26,-25 - 4318: -19,-24 - 4319: -18,-24 - 4320: -17,-24 - 4321: -16,-24 - 4322: -15,-24 - 4323: -14,-24 - 4324: -13,-24 + 146: 42,-32 + 147: 41,-32 + 148: 40,-32 + 3207: -28,-25 + 3208: -27,-25 + 3209: -26,-25 + 3470: -19,-24 + 3471: -18,-24 + 3472: -17,-24 + 3473: -16,-24 + 3474: -15,-24 + 3475: -14,-24 + 3476: -13,-24 - node: angle: 43.982297150257104 rad color: '#9FED5896' id: BrickTileWhiteLineN decals: - 815: 16,-8 - 816: 17,-8 - 817: 19,-8 - 818: 20,-8 - 819: 21,-8 - 881: 36,11 - 890: 39,13 + 714: 16,-8 + 715: 17,-8 + 716: 19,-8 + 717: 20,-8 + 718: 21,-8 - node: - color: '#D381C996' + color: '#A4610696' id: BrickTileWhiteLineN decals: - 369: 19,-55 - 370: 20,-55 - 383: 19,-50 - 384: 20,-50 - 400: 25,-64 - 401: 26,-64 - 402: 27,-64 - 543: 9,-63 - 544: 10,-63 - 545: 11,-63 - 546: 12,-63 - 547: 13,-63 - 548: 14,-63 - 549: 15,-63 - 550: 16,-63 - 551: 17,-63 - 1252: 13,-66 - 1253: 14,-66 - 1254: 15,-66 + 5121: 20,11 + 5122: 23,11 + 5123: 26,13 + 5124: 27,13 + 5125: 28,13 + 5129: 30,11 + 5130: 31,11 + 5131: 32,11 + 5132: 33,11 + 5133: 35,11 + 5138: 19,11 + 5139: 18,11 - node: - color: '#D58C18BF' + color: '#D381C996' id: BrickTileWhiteLineN decals: - 4914: -35,-2 - 4922: -37,-1 - 4923: -38,-1 - 4924: -39,-1 - 4927: -42,3 - 4931: -44,1 - 4940: -47,6 - 4941: -48,6 + 273: 19,-55 + 274: 20,-55 + 287: 19,-50 + 288: 20,-50 + 304: 25,-64 + 305: 26,-64 + 306: 27,-64 + 447: 9,-63 + 448: 10,-63 + 449: 11,-63 + 450: 12,-63 + 451: 13,-63 + 452: 14,-63 + 453: 15,-63 + 454: 16,-63 + 455: 17,-63 + 1126: 13,-66 + 1127: 14,-66 + 1128: 15,-66 - node: - color: '#DE3A3A96' + color: '#D58C18BF' id: BrickTileWhiteLineN decals: - 4379: 5,-9 - 4380: 2,-9 - 4381: 1,-9 - 4382: 0,-9 - 4383: -3,-9 - 4384: -4,-9 - 4385: -6,-9 - 4386: -7,-9 - 4387: -8,-9 - 4388: -9,-9 - 4389: -10,-9 - 4390: -11,-9 - 4391: -12,-9 - 4392: -13,-9 - 4393: -14,-9 - 4394: -15,-9 - 4395: -16,-9 - 4510: -42,-28 - 4515: -40,-27 - 4516: -39,-27 - 4517: -38,-27 - 4521: -37,-27 - 4707: 2,-1 - 4708: 1,-1 - 4709: 0,-1 - 4734: -2,1 - 4735: -3,1 - 4736: -4,1 - 4737: -5,1 - 4738: -6,1 - 4739: -8,1 - 4740: -9,1 - 4741: -10,1 - 4742: -12,2 - 4743: -14,1 - 4744: -15,1 - 4745: -16,1 - 4746: -18,-2 - 4747: -19,-2 - 4748: -20,-2 - 4749: -22,-2 - 4750: -23,-2 - 4751: -25,-2 - 4752: -26,-2 - 4753: -28,-2 - 4754: -29,-2 - 4755: -30,-2 - 4756: -31,-2 - 4757: -33,-2 - 4758: -34,-2 - 4793: -34,-6 - 4794: -35,-6 - 4795: -37,-5 - 4800: -39,-6 - 4908: -6,-3 - 4909: -7,-3 - 5647: -4,-7 - 5648: -3,-7 - 5651: -5,-9 + 4034: -35,-2 + 4042: -37,-1 + 4043: -38,-1 + 4044: -39,-1 + 4047: -42,3 + 4051: -44,1 + 4060: -47,6 + 4061: -48,6 - node: - color: '#EFB34196' + color: '#DE3A3A96' id: BrickTileWhiteLineN decals: - 3950: 26,11 + 3531: 5,-9 + 3532: 2,-9 + 3533: 1,-9 + 3534: 0,-9 + 3535: -3,-9 + 3536: -4,-9 + 3537: -6,-9 + 3538: -7,-9 + 3539: -8,-9 + 3540: -9,-9 + 3541: -10,-9 + 3542: -11,-9 + 3543: -12,-9 + 3544: -13,-9 + 3545: -14,-9 + 3546: -15,-9 + 3547: -16,-9 + 3662: -42,-28 + 3667: -40,-27 + 3668: -39,-27 + 3669: -38,-27 + 3673: -37,-27 + 3859: 2,-1 + 3860: 1,-1 + 3861: 0,-1 + 3886: -2,1 + 3887: -3,1 + 3888: -4,1 + 3889: -5,1 + 3890: -6,1 + 3891: -8,1 + 3892: -9,1 + 3893: -10,1 + 3894: -12,2 + 3895: -14,1 + 3896: -15,1 + 3897: -16,1 + 3898: -25,-2 + 3899: -26,-2 + 3900: -28,-2 + 3901: -29,-2 + 3902: -30,-2 + 3903: -31,-2 + 3904: -33,-2 + 3905: -34,-2 + 3925: -34,-6 + 3926: -35,-6 + 3927: -37,-5 + 3932: -39,-6 + 4028: -6,-3 + 4029: -7,-3 + 4764: -4,-7 + 4765: -3,-7 + 4768: -5,-9 + 5016: -27,-2 + 5017: -18,0 + 5018: -19,0 + 5019: -21,0 + 5020: -22,0 + 5021: -23,0 - node: - angle: 43.982297150257104 rad color: '#EFB34196' id: BrickTileWhiteLineN decals: - 867: 18,11 - 868: 19,11 - 869: 22,11 - 870: 23,11 - 871: 24,11 - 872: 25,11 - 873: 27,11 - 874: 28,11 - 875: 30,11 - 876: 31,11 - 877: 32,11 + 4935: 50,13 + 4942: 54,13 + 4943: 55,13 + 4944: 56,13 + 4945: 57,13 + 4946: 58,13 + 4947: 59,13 + 4948: 60,13 + 4966: 53,11 + 4967: 54,11 + 4968: 55,11 + 4969: 56,11 + 4970: 57,11 + 4971: 58,11 + 4972: 59,11 + 4973: 60,11 + 4974: 61,11 + 4975: 62,11 + 4977: 45,13 + 4978: 49,13 + 4982: 49,11 + 5000: 44,9 + 5001: 45,9 + 5140: 39,13 + 5141: 41,13 + 5157: 41,18 + 5158: 42,18 + 5159: 43,18 + 5160: 44,18 + 5161: 45,18 + 5162: 46,18 + 5163: 47,18 + 5180: 42,13 + 5190: 54,18 + 5191: 53,18 + 5192: 52,18 + 5193: 51,18 + 5204: 56,16 + 5209: 51,28 + 5210: 52,28 + 5211: 53,28 + 5212: 54,28 + 5222: 52,23 + 5223: 51,23 - node: color: '#F9FFFEFF' id: BrickTileWhiteLineN decals: - 287: 22,-26 - 288: 23,-26 - 289: 24,-26 - 290: 26,-26 - 291: 27,-26 - 324: 23,-27 - 325: 24,-27 - 326: 25,-27 - 327: 26,-27 - 328: 27,-27 - 329: 24,-28 - 330: 25,-28 - 331: 26,-28 - 1034: 16,-13 - 1035: 17,-13 - 1036: 16,-16 - 1037: 17,-16 - 1038: 16,-19 - 1039: 17,-19 - 1040: 16,-22 - 1041: 17,-22 - 1072: 21,-33 - 1073: 20,-33 - 1074: 19,-33 - 1117: 15,-30 - 1118: 14,-30 - 1119: 13,-30 - 1120: 12,-30 - 1121: 11,-30 - 1122: 11,-35 - 1123: 12,-35 - 1124: 13,-35 - 4211: 11,-22 - 4212: 12,-22 - 4258: 22,-22 - 4259: 23,-22 - 4260: 24,-22 - 4275: 23,-23 + 191: 22,-26 + 192: 23,-26 + 193: 24,-26 + 194: 26,-26 + 195: 27,-26 + 228: 23,-27 + 229: 24,-27 + 230: 25,-27 + 231: 26,-27 + 232: 27,-27 + 233: 24,-28 + 234: 25,-28 + 235: 26,-28 + 908: 16,-13 + 909: 17,-13 + 910: 16,-16 + 911: 17,-16 + 912: 16,-19 + 913: 17,-19 + 914: 16,-22 + 915: 17,-22 + 946: 21,-33 + 947: 20,-33 + 948: 19,-33 + 991: 15,-30 + 992: 14,-30 + 993: 13,-30 + 994: 12,-30 + 995: 11,-30 + 996: 11,-35 + 997: 12,-35 + 998: 13,-35 + 3410: 22,-22 + 3411: 23,-22 + 3412: 24,-22 + 3427: 23,-23 - node: color: '#169C9CFF' id: BrickTileWhiteLineS decals: - 1161: 11,-34 - 1162: 12,-34 + 1035: 11,-34 + 1036: 12,-34 - node: color: '#1D1D21FF' id: BrickTileWhiteLineS decals: - 260: 27,-31 - 261: 26,-31 - 262: 25,-31 - 263: 24,-31 - 264: 23,-31 - 422: 4,-63 - 429: 4,-62 - 502: 4,-58 - 525: 1,-55 - 526: 3,-59 - 527: 4,-59 - 528: 5,-59 - 4433: -20,-22 - 4434: -19,-22 - 4435: -18,-22 - 4436: -17,-22 - 4437: -16,-22 - 4438: -15,-22 - 4641: -28,-32 - 4642: -27,-32 - 4643: -26,-32 - 4644: -25,-32 - 4645: -23,-26 - 4646: -22,-26 - 4647: -21,-26 - 4648: -20,-26 - 4673: -26,-23 - 4674: -27,-23 - 4675: -28,-23 + 164: 27,-31 + 165: 26,-31 + 166: 25,-31 + 167: 24,-31 + 168: 23,-31 + 326: 4,-63 + 333: 4,-62 + 406: 4,-58 + 429: 1,-55 + 430: 3,-59 + 431: 4,-59 + 432: 5,-59 + 3585: -20,-22 + 3586: -19,-22 + 3587: -18,-22 + 3588: -17,-22 + 3589: -16,-22 + 3590: -15,-22 + 3793: -28,-32 + 3794: -27,-32 + 3795: -26,-32 + 3796: -25,-32 + 3797: -23,-26 + 3798: -22,-26 + 3799: -21,-26 + 3800: -20,-26 + 3825: -26,-23 + 3826: -27,-23 + 3827: -28,-23 - node: color: '#334E6DC8' id: BrickTileWhiteLineS decals: - 221: -11,-54 - 222: -12,-54 - 223: -13,-54 - 224: -14,-54 - 225: -15,-54 - 226: -16,-54 - 227: -17,-54 - 228: -18,-54 - 229: -19,-54 - 4500: -38,-25 - 4501: -39,-25 - 4502: -40,-25 - 4508: -42,-24 + 125: -11,-54 + 126: -12,-54 + 127: -13,-54 + 128: -14,-54 + 129: -15,-54 + 130: -16,-54 + 131: -17,-54 + 132: -18,-54 + 133: -19,-54 + 3652: -38,-25 + 3653: -39,-25 + 3654: -40,-25 + 3660: -42,-24 - node: color: '#52B4E996' id: BrickTileWhiteLineS decals: - 1202: 25,-39 - 1203: 24,-39 - 1204: 23,-39 - 3857: 54,-44 - 3858: 53,-44 - 3859: 52,-44 - 3860: 51,-44 - 3861: 50,-44 - 3862: 49,-44 - 3863: 47,-44 - 4575: -17,-11 - 4604: -19,-12 - 4605: -20,-12 - 4606: -21,-12 - 4607: -25,-16 - 4608: -26,-16 - 4609: -27,-13 + 1076: 25,-39 + 1077: 24,-39 + 1078: 23,-39 + 3037: 54,-44 + 3038: 53,-44 + 3039: 52,-44 + 3040: 51,-44 + 3041: 50,-44 + 3042: 49,-44 + 3043: 47,-44 + 3727: -17,-11 + 3756: -19,-12 + 3757: -20,-12 + 3758: -21,-12 + 3759: -25,-16 + 3760: -26,-16 + 3761: -27,-13 - node: angle: 43.982297150257104 rad color: '#52B4E996' id: BrickTileWhiteLineS decals: - 852: 30,-24 - 857: 27,-20 - 858: 26,-20 + 751: 30,-24 + 756: 27,-20 + 757: 26,-20 - node: color: '#79150096' id: BrickTileWhiteLineS decals: - 4311: -13,-26 - 4312: -14,-26 - 4313: -15,-26 - 4314: -16,-26 - 4315: -17,-26 - 4316: -18,-26 - 4317: -19,-26 + 3463: -13,-26 + 3464: -14,-26 + 3465: -15,-26 + 3466: -16,-26 + 3467: -17,-26 + 3468: -18,-26 + 3469: -19,-26 - node: color: '#8932B87F' id: BrickTileWhiteLineS decals: - 916: 29,0 - 917: 28,0 + 790: 29,0 + 791: 28,0 - node: color: '#9FED5896' id: BrickTileWhiteLineS decals: - 237: 42,-36 - 4050: -28,-25 - 4051: -27,-25 - 4052: -26,-25 - 4346: -15,-13 - 4347: -14,-13 - 4348: -13,-13 - 4349: -10,-13 - 4350: -7,-13 - 4351: -6,-13 - 4352: -5,-13 - 4353: -4,-13 - 4354: -3,-13 - 4355: -2,-13 - 4356: -1,-13 - 4376: -16,-13 + 141: 42,-36 + 3210: -28,-25 + 3211: -27,-25 + 3212: -26,-25 + 3498: -15,-13 + 3499: -14,-13 + 3500: -13,-13 + 3501: -10,-13 + 3502: -7,-13 + 3503: -6,-13 + 3504: -5,-13 + 3505: -4,-13 + 3506: -3,-13 + 3507: -2,-13 + 3508: -1,-13 + 3528: -16,-13 - node: angle: 43.982297150257104 rad color: '#9FED5896' id: BrickTileWhiteLineS decals: - 826: 32,-35 - 830: 34,-30 - 831: 35,-30 - 832: 38,-30 - 833: 39,-30 - 834: 40,-30 - 835: 41,-30 - 836: 42,-30 - 837: 43,-30 - 882: 36,9 - 887: 38,6 - 888: 39,6 - 889: 40,6 + 725: 32,-35 + 729: 34,-30 + 730: 35,-30 + 731: 38,-30 + 732: 39,-30 + 733: 40,-30 + 734: 41,-30 + 735: 42,-30 + 736: 43,-30 - node: color: '#D381C996' id: BrickTileWhiteLineS decals: - 351: 10,-64 - 352: 11,-64 - 353: 12,-64 - 354: 13,-64 - 355: 14,-64 - 356: 15,-64 - 357: 17,-64 - 358: 18,-64 - 359: 19,-64 - 360: 21,-64 - 377: 20,-53 - 378: 19,-53 - 398: 25,-57 - 1244: 16,-70 - 1245: 14,-70 - 1246: 13,-70 - 3818: 15,-70 - 3827: 27,-70 - 3828: 26,-70 - 3829: 25,-70 - 3830: 24,-70 + 255: 10,-64 + 256: 11,-64 + 257: 12,-64 + 258: 13,-64 + 259: 14,-64 + 260: 15,-64 + 261: 17,-64 + 262: 18,-64 + 263: 19,-64 + 264: 21,-64 + 281: 20,-53 + 282: 19,-53 + 302: 25,-57 + 1118: 16,-70 + 1119: 14,-70 + 1120: 13,-70 + 3003: 15,-70 + 3007: 27,-70 + 3008: 26,-70 + 3009: 25,-70 + 3010: 24,-70 - node: angle: 43.982297150257104 rad color: '#D381C996' id: BrickTileWhiteLineS decals: - 903: 18,-48 - 904: 19,-48 - 905: 20,-48 - 906: 22,-48 - 907: 23,-48 - 908: 24,-48 - 909: 26,-48 + 777: 18,-48 + 778: 19,-48 + 779: 20,-48 + 780: 22,-48 + 781: 23,-48 + 782: 24,-48 + 783: 26,-48 - node: color: '#D58C18BF' id: BrickTileWhiteLineS decals: - 4913: -35,-2 - 4915: -36,-2 - 4916: -37,-2 - 4917: -38,-2 - 4918: -39,-2 - 4951: -45,0 - 4952: -47,0 - 4968: -42,-2 + 4033: -35,-2 + 4035: -36,-2 + 4036: -37,-2 + 4037: -38,-2 + 4038: -39,-2 + 4071: -45,0 + 4072: -47,0 + 4088: -42,-2 - node: color: '#DE3A3A96' id: BrickTileWhiteLineS decals: - 4509: -42,-28 - 4523: -38,-31 - 4524: -40,-31 - 4711: 2,-2 - 4712: 1,-2 - 4713: 0,-2 - 4787: -34,-2 - 4808: -39,-6 - 4809: -37,-7 - 4810: -35,-6 - 4815: -34,-6 - 4816: -33,-6 - 4846: -29,-2 - 4847: -28,-2 - 4848: -27,-2 - 4849: -26,-2 - 4850: -25,-2 - 4851: -24,-2 - 4852: -23,-2 - 4853: -22,-2 - 4854: -20,-2 - 4855: -19,-2 - 4856: -18,-2 - 4864: -16,0 - 4865: -15,0 - 4866: -14,0 - 4867: -13,0 - 4874: -10,1 - 4875: -9,1 - 4876: -7,1 - 4877: -6,1 - 4878: -4,1 - 4879: -3,1 - 4892: -6,-6 - 4893: -7,-6 - 5645: -4,-7 - 5646: -3,-7 + 3661: -42,-28 + 3675: -38,-31 + 3676: -40,-31 + 3863: 2,-2 + 3864: 1,-2 + 3865: 0,-2 + 3919: -34,-2 + 3940: -39,-6 + 3941: -37,-7 + 3942: -35,-6 + 3947: -34,-6 + 3948: -33,-6 + 3978: -29,-2 + 3979: -28,-2 + 3980: -26,-2 + 3981: -25,-2 + 3984: -16,0 + 3985: -15,0 + 3986: -14,0 + 3987: -13,0 + 3994: -10,1 + 3995: -9,1 + 3996: -7,1 + 3997: -6,1 + 3998: -4,1 + 3999: -3,1 + 4012: -6,-6 + 4013: -7,-6 + 4762: -4,-7 + 4763: -3,-7 + 5010: -19,-2 + 5011: -20,-2 + 5012: -22,-2 + 5013: -23,-2 + 5014: -24,-2 + 5015: -27,-2 + 5051: -17,0 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineS + decals: + 4936: 50,13 + 4949: 54,13 + 4950: 55,13 + 4951: 56,13 + 4952: 57,13 + 4953: 58,13 + 4954: 59,13 + 4955: 60,13 + 4956: 62,11 + 4957: 61,11 + 4958: 60,11 + 4959: 59,11 + 4960: 58,11 + 4961: 57,11 + 4962: 56,11 + 4963: 55,11 + 4964: 54,11 + 4965: 53,11 + 4979: 49,13 + 4983: 49,11 + 4989: 45,13 + 4993: 44,9 + 4994: 45,9 + 5147: 40,6 + 5148: 39,6 + 5152: 41,6 + 5168: 46,15 + 5169: 45,15 + 5170: 44,15 + 5171: 43,15 + 5172: 42,15 + 5173: 41,15 + 5181: 42,13 + 5186: 53,15 + 5187: 54,15 + 5198: 51,15 + 5205: 56,16 + 5213: 51,28 + 5214: 52,28 + 5215: 53,28 + 5216: 54,28 + 5227: 52,23 + 5228: 51,23 + 5229: 50,23 + 5263: 51,6 - node: color: '#F9FFFEFF' id: BrickTileWhiteLineS decals: - 279: 23,-31 - 280: 24,-31 - 281: 25,-31 - 282: 26,-31 - 283: 27,-31 - 338: 27,-30 - 339: 26,-30 - 340: 25,-30 - 341: 24,-30 - 342: 23,-30 - 343: 24,-29 - 344: 25,-29 - 345: 26,-29 - 1029: 17,-28 - 1042: 16,-20 - 1043: 17,-20 - 1044: 16,-17 - 1045: 17,-17 - 1046: 16,-14 - 1047: 17,-14 - 1069: 20,-35 - 1070: 21,-35 - 1127: 11,-35 - 1128: 12,-35 - 1129: 13,-35 - 1130: 14,-35 - 1131: 15,-35 - 1137: 13,-31 - 1138: 12,-31 - 1139: 11,-31 - 4217: 12,-28 - 4218: 11,-28 - 4263: 24,-24 - 4264: 23,-24 - 4265: 22,-24 - 4276: 23,-23 + 183: 23,-31 + 184: 24,-31 + 185: 25,-31 + 186: 26,-31 + 187: 27,-31 + 242: 27,-30 + 243: 26,-30 + 244: 25,-30 + 245: 24,-30 + 246: 23,-30 + 247: 24,-29 + 248: 25,-29 + 249: 26,-29 + 903: 17,-28 + 916: 16,-20 + 917: 17,-20 + 918: 16,-17 + 919: 17,-17 + 920: 16,-14 + 921: 17,-14 + 943: 20,-35 + 944: 21,-35 + 1001: 11,-35 + 1002: 12,-35 + 1003: 13,-35 + 1004: 14,-35 + 1005: 15,-35 + 1011: 13,-31 + 1012: 12,-31 + 1013: 11,-31 + 3369: 12,-28 + 3370: 11,-28 + 3415: 24,-24 + 3416: 23,-24 + 3417: 22,-24 + 3428: 23,-23 - node: color: '#169C9CC4' id: BrickTileWhiteLineW decals: - 1158: 10,-33 + 1032: 10,-33 - node: color: '#1D1D21FF' id: BrickTileWhiteLineW decals: - 274: 21,-27 - 275: 21,-30 - 463: -1,-58 - 464: -1,-59 - 465: -1,-60 - 466: -1,-61 - 497: 3,-57 - 498: 3,-56 - 540: 2,-56 - 541: 2,-57 - 542: 2,-58 - 1271: 9,-68 - 1272: 9,-69 - 1287: 8,-67 - 1288: 8,-68 - 1289: 8,-69 - 1290: 8,-70 - 4424: -22,-15 - 4427: -21,-17 - 4428: -21,-18 - 4429: -21,-19 - 4430: -21,-20 - 4431: -21,-21 - 4668: -25,-26 - 4669: -25,-24 - 4676: -28,-18 - 4677: -28,-19 - 4678: -28,-20 - 4679: -28,-21 - 4680: -28,-22 - 4681: -28,-23 - 4682: -28,-27 - 4683: -28,-28 - 4684: -28,-29 - 4685: -28,-30 - 4686: -28,-31 - 4687: -28,-32 + 178: 21,-27 + 179: 21,-30 + 367: -1,-58 + 368: -1,-59 + 369: -1,-60 + 370: -1,-61 + 401: 3,-57 + 402: 3,-56 + 444: 2,-56 + 445: 2,-57 + 446: 2,-58 + 1145: 9,-68 + 1146: 9,-69 + 1161: 8,-67 + 1162: 8,-68 + 1163: 8,-69 + 1164: 8,-70 + 3576: -22,-15 + 3579: -21,-17 + 3580: -21,-18 + 3581: -21,-19 + 3582: -21,-20 + 3583: -21,-21 + 3820: -25,-26 + 3821: -25,-24 + 3828: -28,-18 + 3829: -28,-19 + 3830: -28,-20 + 3831: -28,-21 + 3832: -28,-22 + 3833: -28,-23 + 3834: -28,-27 + 3835: -28,-28 + 3836: -28,-29 + 3837: -28,-30 + 3838: -28,-31 + 3839: -28,-32 - node: color: '#334E6DC8' id: BrickTileWhiteLineW decals: - 3968: -20,-50 - 3969: -20,-49 - 3970: -20,-48 - 3971: -20,-47 - 3972: -20,-46 - 3973: -20,-45 - 3974: -20,-44 - 3976: -20,-43 - 4490: -39,-22 - 4491: -39,-21 - 4504: -41,-25 - 4507: -41,-26 + 3128: -20,-50 + 3129: -20,-49 + 3130: -20,-48 + 3131: -20,-47 + 3132: -20,-46 + 3133: -20,-45 + 3134: -20,-44 + 3136: -20,-43 + 3642: -39,-22 + 3643: -39,-21 + 3656: -41,-25 + 3659: -41,-26 - node: angle: 43.982297150257104 rad color: '#334E6DC8' id: BrickTileWhiteLineW decals: - 893: -10,-52 - 894: -10,-51 + 767: -10,-52 + 768: -10,-51 - node: color: '#52B4E996' id: BrickTileWhiteLineW decals: - 1209: 24,-36 - 1210: 24,-35 - 3844: 46,-43 - 3869: 48,-45 - 4374: -16,-10 - 4375: -16,-12 - 4378: -16,-13 - 4397: -16,-9 - 4596: -22,-10 - 4597: -27,-11 - 4598: -27,-12 - 4617: -27,-15 + 1083: 24,-36 + 1084: 24,-35 + 3024: 46,-43 + 3049: 48,-45 + 3526: -16,-10 + 3527: -16,-12 + 3530: -16,-13 + 3549: -16,-9 + 3748: -22,-10 + 3749: -27,-11 + 3750: -27,-12 + 3769: -27,-15 - node: angle: 43.982297150257104 rad color: '#52B4E996' id: BrickTileWhiteLineW decals: - 838: 28,-39 - 839: 28,-37 - 840: 28,-36 - 841: 28,-35 - 842: 28,-34 - 845: 31,-32 - 846: 31,-31 - 847: 31,-30 - 848: 31,-27 - 849: 31,-26 - 850: 31,-25 - 853: 28,-23 - 854: 28,-22 - 855: 28,-21 - 860: 24,-19 - 861: 24,-18 - 862: 24,-17 - 863: 24,-16 - 864: 24,-15 - 865: 24,-14 - 866: 24,-13 + 737: 28,-39 + 738: 28,-37 + 739: 28,-36 + 740: 28,-35 + 741: 28,-34 + 744: 31,-32 + 745: 31,-31 + 746: 31,-30 + 747: 31,-27 + 748: 31,-26 + 749: 31,-25 + 752: 28,-23 + 753: 28,-22 + 754: 28,-21 + 759: 24,-19 + 760: 24,-18 + 761: 24,-17 + 762: 24,-16 + 763: 24,-15 + 764: 24,-14 + 765: 24,-13 - node: color: '#79150096' id: BrickTileWhiteLineW decals: - 4293: -12,-36 - 4294: -12,-35 - 4295: -12,-34 - 4296: -12,-33 - 4297: -12,-32 - 4298: -12,-31 - 4299: -12,-30 - 4300: -12,-29 - 4301: -12,-28 - 4302: -12,-27 + 3445: -12,-36 + 3446: -12,-35 + 3447: -12,-34 + 3448: -12,-33 + 3449: -12,-32 + 3450: -12,-31 + 3451: -12,-30 + 3452: -12,-29 + 3453: -12,-28 + 3454: -12,-27 - node: color: '#8932B87F' id: BrickTileWhiteLineW decals: - 914: 30,-1 - 919: 27,1 - 920: 27,2 - - node: - color: '#9FED5896' - id: BrickTileWhiteLineW - decals: - 246: 39,-35 - 4326: -12,-23 - 4327: -12,-22 - 4328: -12,-20 - 4329: -12,-19 - 4330: -12,-18 - 4331: -12,-17 - 4332: -12,-16 - 4333: -12,-15 - 4334: -12,-14 + 788: 30,-1 + 793: 27,1 + 794: 27,2 - node: - angle: 43.982297150257104 rad color: '#9FED5896' id: BrickTileWhiteLineW decals: - 879: 37,12 - 884: 37,8 - 885: 37,7 + 150: 39,-35 + 3478: -12,-23 + 3479: -12,-22 + 3480: -12,-20 + 3481: -12,-19 + 3482: -12,-18 + 3483: -12,-17 + 3484: -12,-16 + 3485: -12,-15 + 3486: -12,-14 - node: color: '#D381C996' id: BrickTileWhiteLineW decals: - 362: 18,-62 - 363: 18,-61 - 364: 18,-60 - 365: 18,-59 - 366: 18,-58 - 367: 18,-57 - 380: 18,-52 - 381: 18,-51 - 392: 24,-51 - 393: 24,-55 - 403: 24,-65 - 406: 23,-67 - 407: 23,-68 - 1248: 12,-69 - 1249: 12,-68 - 1250: 12,-67 - 3832: 23,-69 + 266: 18,-62 + 267: 18,-61 + 268: 18,-60 + 269: 18,-59 + 270: 18,-58 + 271: 18,-57 + 284: 18,-52 + 285: 18,-51 + 296: 24,-51 + 297: 24,-55 + 307: 24,-65 + 310: 23,-67 + 311: 23,-68 + 1122: 12,-69 + 1123: 12,-68 + 1124: 12,-67 + 3012: 23,-69 - node: color: '#D58C18BF' id: BrickTileWhiteLineW decals: - 4929: -43,2 - 4943: -49,5 - 4944: -49,4 - 4947: -49,1 - 4949: -43,-1 + 4049: -43,2 + 4063: -49,5 + 4064: -49,4 + 4067: -49,1 + 4069: -43,-1 - node: color: '#DE3A3A96' id: BrickTileWhiteLineW decals: - 4513: -41,-27 - 4528: -41,-30 - 4529: -41,-29 - 4530: -39,-32 - 4696: 3,-8 - 4697: 3,-7 - 4698: 3,-4 - 4699: 3,-3 - 4722: -2,-8 - 4723: -2,-6 - 4724: -2,-5 - 4725: -2,-4 - 4726: -2,-3 - 4727: -2,-2 - 4728: -2,-1 - 4729: -2,0 - 4772: -7,2 - 4777: -17,0 - 4778: -17,-1 - 4779: -21,-1 - 4780: -24,-1 - 4781: -27,-1 - 4786: -32,-1 - 4789: -33,-3 - 4790: -33,-4 - 4791: -33,-5 - 4819: -32,-7 - 4820: -32,-8 - 4821: -32,-9 - 4822: -32,-10 - 4823: -32,-11 - 4824: -32,-12 - 4828: -32,-14 - 4829: -32,-15 - 4860: -21,-3 - 4869: -12,-1 - 4896: -8,-6 - 4897: -8,-5 - 4898: -8,-4 - 4899: -8,-3 - 4900: -8,-2 - 4901: -8,-1 - 4902: -8,0 - 4903: -5,0 - 4904: -5,-1 - 4905: -5,-2 + 3665: -41,-27 + 3680: -41,-30 + 3681: -41,-29 + 3682: -39,-32 + 3848: 3,-8 + 3849: 3,-7 + 3850: 3,-4 + 3851: 3,-3 + 3874: -2,-8 + 3875: -2,-6 + 3876: -2,-5 + 3877: -2,-4 + 3878: -2,-3 + 3879: -2,-2 + 3880: -2,-1 + 3881: -2,0 + 3912: -7,2 + 3918: -32,-1 + 3921: -33,-3 + 3922: -33,-4 + 3923: -33,-5 + 3951: -32,-7 + 3952: -32,-8 + 3953: -32,-9 + 3954: -32,-10 + 3955: -32,-11 + 3956: -32,-12 + 3960: -32,-14 + 3961: -32,-15 + 3983: -21,-3 + 3989: -12,-1 + 4016: -8,-6 + 4017: -8,-5 + 4018: -8,-4 + 4019: -8,-3 + 4020: -8,-2 + 4021: -8,-1 + 4022: -8,0 + 4023: -5,0 + 4024: -5,-1 + 4025: -5,-2 + 5029: -20,1 + 5030: -24,-1 + 5031: -24,0 + 5032: -24,3 + 5033: -24,6 + 5045: -24,5 + 5046: -24,2 + - node: + color: '#EFB34196' + id: BrickTileWhiteLineW + decals: + 4987: 48,9 + 4988: 48,10 + 4998: 46,10 + 5153: 40,14 + 5154: 40,15 + 5155: 40,16 + 5183: 47,14 + 5184: 52,14 + 5195: 50,17 + 5196: 50,16 + 5233: 50,25 + 5265: 50,7 + 5266: 50,8 - node: color: '#F9FFFEFF' id: BrickTileWhiteLineW decals: - 285: 21,-30 - 286: 21,-27 - 293: 21,-29 - 348: 22,-29 - 349: 22,-28 - 1009: 18,-30 - 1010: 18,-29 - 1011: 15,-27 - 1012: 18,-21 - 1013: 18,-18 - 1014: 18,-15 - 1133: 14,-34 - 1134: 14,-33 - 1135: 14,-32 - 1167: 15,-31 - 1168: 15,-32 - 1169: 15,-33 - 1170: 15,-34 - 4220: 10,-27 - 4221: 10,-26 - 4222: 10,-25 - 4223: 10,-24 - 4277: 15,-26 - 4278: 15,-24 + 189: 21,-30 + 190: 21,-27 + 197: 21,-29 + 252: 22,-29 + 253: 22,-28 + 883: 18,-30 + 884: 18,-29 + 885: 15,-27 + 886: 18,-21 + 887: 18,-18 + 888: 18,-15 + 1007: 14,-34 + 1008: 14,-33 + 1009: 14,-32 + 1041: 15,-31 + 1042: 15,-32 + 1043: 15,-33 + 1044: 15,-34 + 3372: 10,-27 + 3373: 10,-26 + 3374: 10,-25 + 3375: 10,-24 + 3429: 15,-26 + 3430: 15,-24 - node: color: '#80C71FFF' id: BushCThree decals: - 5065: -16.730618,-16.83763 + 4185: -16.730618,-16.83763 - node: color: '#F9801DFF' id: Bushc2 decals: - 5067: -15.553534,-15.284467 + 4187: -15.553534,-15.284467 - node: color: '#FED83DFF' id: Bushe1 decals: - 3883: 53.149242,-50.203865 - 3890: 53.170074,-50.328953 + 3063: 53.149242,-50.203865 + 3070: 53.170074,-50.328953 - node: color: '#FED83DFF' id: Bushe2 decals: - 3881: 50.899242,-50.203865 - 3889: 50.909657,-50.235138 + 3061: 50.899242,-50.203865 + 3069: 50.909657,-50.235138 - node: color: '#FFFFFFFF' id: Bushe2 decals: - 5063: -14.782701,-19.4853 + 4183: -14.782701,-19.4853 - node: color: '#FED83DFF' id: Bushe3 decals: - 3882: 52.065907,-50.943962 + 3062: 52.065907,-50.943962 - node: color: '#FED83DFF' id: Bushe4 decals: - 3884: 51.982574,-49.703518 + 3064: 51.982574,-49.703518 - node: color: '#FFFFFFFF' id: Bushe4 decals: - 5064: -14.043118,-19.308094 + 4184: -14.043118,-19.308094 - node: color: '#FED83DFF' id: Bushi1 decals: - 5030: -16.983692,-16.823538 - 5035: -15.160776,-20.013252 - 5037: -13.629526,-19.929863 - 5043: -16.192026,-14.832572 + 4150: -16.983692,-16.823538 + 4155: -15.160776,-20.013252 + 4157: -13.629526,-19.929863 + 4163: -16.192026,-14.832572 - node: color: '#FFFFFFFF' id: Bushi1 decals: - 3886: 50.878407,-49.75564 + 3066: 50.878407,-49.75564 - node: color: '#FED83DFF' id: Bushi2 decals: - 5029: -16.952442,-16.166832 - 5031: -16.93161,-17.46982 - 5034: -16.858692,-20.096645 - 5036: -14.317026,-20.096645 - 5038: -13.848276,-19.304428 - 5040: -14.598276,-19.492058 - 5042: -15.348276,-19.36697 - 5044: -16.192026,-15.426735 + 4149: -16.952442,-16.166832 + 4151: -16.93161,-17.46982 + 4154: -16.858692,-20.096645 + 4156: -14.317026,-20.096645 + 4158: -13.848276,-19.304428 + 4160: -14.598276,-19.492058 + 4162: -15.348276,-19.36697 + 4164: -16.192026,-15.426735 - node: color: '#FFFFFFFF' id: Bushi2 decals: - 1478: 38.67235,-84.52093 - 1479: 39.318188,-84.614746 + 1330: 38.67235,-84.52093 + 1331: 39.318188,-84.614746 - node: color: '#FED83DFF' id: Bushi3 decals: - 5028: -16.93161,-15.52055 - 5032: -16.90036,-18.105679 - 5039: -13.900359,-18.69984 - 5041: -14.619109,-18.866623 - 5045: -15.369109,-14.863844 + 4148: -16.93161,-15.52055 + 4152: -16.90036,-18.105679 + 4159: -13.900359,-18.69984 + 4161: -14.619109,-18.866623 + 4165: -15.369109,-14.863844 - node: color: '#FFFFFFFF' id: Bushi3 decals: - 3888: 53.170074,-49.693092 + 3068: 53.170074,-49.693092 - node: color: '#FED83DFF' id: Bushi4 decals: - 5027: -16.983692,-14.9055395 - 5033: -16.889942,-19.62757 - 5046: -14.577442,-14.842996 + 4147: -16.983692,-14.9055395 + 4153: -16.889942,-19.62757 + 4166: -14.577442,-14.842996 - node: color: '#FFFFFFFF' id: Bushi4 decals: - 1480: 37.693188,-85.563324 - 1481: 38.161938,-85.60502 - 1482: 36.77652,-83.8121 - 1483: 37.286938,-83.82253 - 1484: 37.6411,-83.739136 - 1485: 38.099438,-83.77041 - 1486: 38.52652,-83.749565 - 1487: 38.98485,-83.749565 - 1488: 39.40152,-83.80168 - 1489: 39.85985,-83.80168 - 1490: 40.286938,-83.80168 - 1491: 40.80777,-83.80168 - 1492: 41.17235,-83.80168 - 1493: 36.818188,-84.28118 - 1494: 37.29735,-84.20821 - 1495: 37.71402,-84.229065 - 1496: 38.130688,-84.23949 - 1497: 38.568188,-84.19779 - 1498: 39.15152,-84.16652 - 1499: 39.55777,-84.229065 - 1500: 40.005688,-84.229065 - 1501: 40.4536,-84.218636 - 1502: 41.005688,-84.19779 - 1503: 41.30777,-84.34373 - 1504: 36.67235,-84.67729 - 1505: 37.193188,-84.64602 - 1506: 37.74527,-84.64602 - 1507: 38.40152,-84.64602 - 1508: 38.85985,-84.64602 - 1509: 39.42235,-84.6356 - 1510: 40.02652,-84.6356 - 1511: 40.54735,-84.6356 - 1512: 40.99527,-84.64602 - 1513: 41.2661,-84.791954 - 1514: 36.71402,-85.21933 - 1515: 37.130688,-85.14636 - 1516: 37.505688,-85.16721 - 1517: 38.12027,-85.188065 - 1518: 38.55777,-85.16721 - 1519: 38.8911,-85.1151 - 1520: 39.4536,-85.15679 - 1521: 39.90152,-85.14636 - 1522: 40.505688,-85.12552 - 1523: 40.83902,-85.12552 - 1524: 41.21402,-85.21933 - 1525: 36.79735,-85.7301 - 1526: 37.35985,-85.68841 - 1527: 36.98485,-85.64671 - 1528: 37.755688,-85.74053 - 1529: 38.15152,-85.74053 - 1530: 38.568188,-85.74053 - 1531: 39.15152,-85.75095 - 1532: 39.60985,-85.69883 - 1533: 39.943188,-85.68841 - 1534: 40.380688,-85.70926 - 1535: 40.68277,-85.70926 - 1536: 41.2036,-85.70926 - 1537: 36.68277,-86.27215 - 1538: 36.974438,-86.17833 - 1539: 37.443188,-86.18876 - 1540: 37.7661,-86.2096 - 1541: 38.17235,-86.2096 - 1542: 38.67235,-86.2096 - 1543: 39.130688,-86.14706 - 1544: 39.42235,-86.16791 - 1545: 39.79735,-86.18876 - 1546: 40.193188,-86.220024 - 1547: 40.68277,-86.23045 - 1548: 41.005688,-86.220024 - 1549: 41.30777,-86.2096 - 1550: 36.755688,-86.75165 - 1551: 37.130688,-86.64741 - 1552: 37.62027,-86.69953 - 1553: 38.02652,-86.66826 - 1554: 38.443188,-86.720375 - 1555: 38.87027,-86.74123 - 1556: 39.29735,-86.7308 - 1557: 39.693188,-86.69953 - 1558: 40.036938,-86.6891 - 1559: 40.48485,-86.7308 - 1560: 40.9536,-86.7308 - 1561: 41.3286,-86.70995 - 1562: 36.880688,-87.23115 - 1563: 36.65152,-87.220726 - 1564: 37.2661,-87.23115 - 1565: 37.599438,-87.220726 - 1566: 37.943188,-87.2103 - 1567: 38.3911,-87.25199 - 1568: 38.818188,-87.26242 - 1569: 39.17235,-87.26242 - 1570: 39.724438,-87.24157 - 1571: 40.2036,-87.23115 - 1572: 40.6411,-87.26242 - 1573: 41.21402,-87.26242 - 3887: 53.149242,-51.17329 + 1332: 37.693188,-85.563324 + 1333: 38.161938,-85.60502 + 1334: 36.77652,-83.8121 + 1335: 37.286938,-83.82253 + 1336: 37.6411,-83.739136 + 1337: 38.099438,-83.77041 + 1338: 38.52652,-83.749565 + 1339: 38.98485,-83.749565 + 1340: 39.40152,-83.80168 + 1341: 39.85985,-83.80168 + 1342: 40.286938,-83.80168 + 1343: 40.80777,-83.80168 + 1344: 41.17235,-83.80168 + 1345: 36.818188,-84.28118 + 1346: 37.29735,-84.20821 + 1347: 37.71402,-84.229065 + 1348: 38.130688,-84.23949 + 1349: 38.568188,-84.19779 + 1350: 39.15152,-84.16652 + 1351: 39.55777,-84.229065 + 1352: 40.005688,-84.229065 + 1353: 40.4536,-84.218636 + 1354: 41.005688,-84.19779 + 1355: 41.30777,-84.34373 + 1356: 36.67235,-84.67729 + 1357: 37.193188,-84.64602 + 1358: 37.74527,-84.64602 + 1359: 38.40152,-84.64602 + 1360: 38.85985,-84.64602 + 1361: 39.42235,-84.6356 + 1362: 40.02652,-84.6356 + 1363: 40.54735,-84.6356 + 1364: 40.99527,-84.64602 + 1365: 41.2661,-84.791954 + 1366: 36.71402,-85.21933 + 1367: 37.130688,-85.14636 + 1368: 37.505688,-85.16721 + 1369: 38.12027,-85.188065 + 1370: 38.55777,-85.16721 + 1371: 38.8911,-85.1151 + 1372: 39.4536,-85.15679 + 1373: 39.90152,-85.14636 + 1374: 40.505688,-85.12552 + 1375: 40.83902,-85.12552 + 1376: 41.21402,-85.21933 + 1377: 36.79735,-85.7301 + 1378: 37.35985,-85.68841 + 1379: 36.98485,-85.64671 + 1380: 37.755688,-85.74053 + 1381: 38.15152,-85.74053 + 1382: 38.568188,-85.74053 + 1383: 39.15152,-85.75095 + 1384: 39.60985,-85.69883 + 1385: 39.943188,-85.68841 + 1386: 40.380688,-85.70926 + 1387: 40.68277,-85.70926 + 1388: 41.2036,-85.70926 + 1389: 36.68277,-86.27215 + 1390: 36.974438,-86.17833 + 1391: 37.443188,-86.18876 + 1392: 37.7661,-86.2096 + 1393: 38.17235,-86.2096 + 1394: 38.67235,-86.2096 + 1395: 39.130688,-86.14706 + 1396: 39.42235,-86.16791 + 1397: 39.79735,-86.18876 + 1398: 40.193188,-86.220024 + 1399: 40.68277,-86.23045 + 1400: 41.005688,-86.220024 + 1401: 41.30777,-86.2096 + 1402: 36.755688,-86.75165 + 1403: 37.130688,-86.64741 + 1404: 37.62027,-86.69953 + 1405: 38.02652,-86.66826 + 1406: 38.443188,-86.720375 + 1407: 38.87027,-86.74123 + 1408: 39.29735,-86.7308 + 1409: 39.693188,-86.69953 + 1410: 40.036938,-86.6891 + 1411: 40.48485,-86.7308 + 1412: 40.9536,-86.7308 + 1413: 41.3286,-86.70995 + 1414: 36.880688,-87.23115 + 1415: 36.65152,-87.220726 + 1416: 37.2661,-87.23115 + 1417: 37.599438,-87.220726 + 1418: 37.943188,-87.2103 + 1419: 38.3911,-87.25199 + 1420: 38.818188,-87.26242 + 1421: 39.17235,-87.26242 + 1422: 39.724438,-87.24157 + 1423: 40.2036,-87.23115 + 1424: 40.6411,-87.26242 + 1425: 41.21402,-87.26242 + 3067: 53.149242,-51.17329 - node: color: '#F9801DFF' id: Bushn1 decals: - 5066: -16.741034,-19.4853 + 4186: -16.741034,-19.4853 - node: color: '#FFFFFFFF' id: Caution decals: - 1595: -6,-81 - 1596: -5,-81 - 1597: -4,-81 - 1636: 17,37 - 1637: 18,37 - 3810: 31,43 - 3811: 33,43 + 1447: -6,-81 + 1448: -5,-81 + 1449: -4,-81 + 2999: 31,43 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Caution decals: 11: -12,-74 - 1598: -3,-80 - 1599: -3,-79 - 1600: -3,-78 + 1450: -3,-80 + 1451: -3,-79 + 1452: -3,-78 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Caution decals: - 1601: -6,-77 - 1602: -5,-77 - 1603: -4,-77 + 1453: -6,-77 + 1454: -5,-77 + 1455: -4,-77 - node: color: '#DE3A3A96' id: CautionGreyscale decals: - 4442: -32,-37 - 4443: -31,-37 - 4444: -32,-37 - 4445: -31,-37 + 3594: -32,-37 + 3595: -31,-37 + 3596: -32,-37 + 3597: -31,-37 - node: color: '#52B4E996' id: CheckerNWSE decals: - 4618: -26,-11 - 4619: -25,-11 - 4620: -25,-12 - 4621: -26,-12 - 4625: -26,-15 - 4626: -25,-15 + 3770: -26,-11 + 3771: -25,-11 + 3772: -25,-12 + 3773: -26,-12 + 3777: -26,-15 + 3778: -25,-15 - node: color: '#DE3A3AC0' id: Delivery decals: - 3988: -40,0 - 3989: -40,-2 - 3990: -40,-1 + 3148: -40,0 + 3149: -40,-2 + 3150: -40,-1 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 4870: 59,21 + 4871: 59,22 + 4872: 59,23 + 4873: 59,17 + 4874: 59,16 + 4875: 59,15 - node: cleanable: True color: '#E43E9AFF' @@ -2898,2652 +3053,2556 @@ entities: color: '#835432FF' id: DiagonalCheckerAOverlay decals: - 4053: -26,-18 - 4054: -25,-18 - 4055: -24,-18 - 4056: -23,-18 - 4057: -23,-19 - 4058: -24,-19 - 4059: -25,-19 - 4060: -26,-19 - 4061: -26,-20 - 4062: -25,-20 - 4063: -24,-20 - 4064: -23,-20 - 4065: -23,-21 - 4066: -23,-22 - 4067: -24,-22 - 4068: -24,-21 - 4069: -25,-21 - 4070: -26,-21 - 4071: -26,-22 - 4072: -25,-22 - 4073: -26,-23 - 4074: -25,-23 - 4075: -24,-23 - 4076: -25,-24 - 4077: -24,-24 - 4078: -23,-24 - 4079: -22,-24 - 4080: -21,-24 - 4081: -20,-24 - 4082: -20,-25 - 4083: -21,-25 - 4084: -22,-25 - 4085: -23,-25 - 4086: -24,-25 - 4087: -25,-25 - 4088: -25,-26 - 4089: -24,-26 - 4090: -23,-26 - 4091: -22,-26 - 4092: -21,-26 - 4093: -20,-26 - 4094: -26,-27 - 4095: -26,-28 - 4096: -26,-29 - 4097: -26,-30 - 4098: -26,-31 - 4099: -26,-32 - 4100: -25,-32 - 4101: -25,-31 - 4102: -25,-30 - 4103: -25,-29 - 4104: -25,-28 - 4105: -25,-27 - 4106: -24,-27 - 4107: -24,-28 - 4108: -24,-29 - 4109: -24,-30 - 4110: -24,-31 - 4111: -24,-32 + 3213: -26,-18 + 3214: -25,-18 + 3215: -24,-18 + 3216: -23,-18 + 3217: -23,-19 + 3218: -24,-19 + 3219: -25,-19 + 3220: -26,-19 + 3221: -26,-20 + 3222: -25,-20 + 3223: -24,-20 + 3224: -23,-20 + 3225: -23,-21 + 3226: -23,-22 + 3227: -24,-22 + 3228: -24,-21 + 3229: -25,-21 + 3230: -26,-21 + 3231: -26,-22 + 3232: -25,-22 + 3233: -26,-23 + 3234: -25,-23 + 3235: -24,-23 + 3236: -25,-24 + 3237: -24,-24 + 3238: -23,-24 + 3239: -22,-24 + 3240: -21,-24 + 3241: -20,-24 + 3242: -20,-25 + 3243: -21,-25 + 3244: -22,-25 + 3245: -23,-25 + 3246: -24,-25 + 3247: -25,-25 + 3248: -25,-26 + 3249: -24,-26 + 3250: -23,-26 + 3251: -22,-26 + 3252: -21,-26 + 3253: -20,-26 + 3254: -26,-27 + 3255: -26,-28 + 3256: -26,-29 + 3257: -26,-30 + 3258: -26,-31 + 3259: -26,-32 + 3260: -25,-32 + 3261: -25,-31 + 3262: -25,-30 + 3263: -25,-29 + 3264: -25,-28 + 3265: -25,-27 + 3266: -24,-27 + 3267: -24,-28 + 3268: -24,-29 + 3269: -24,-30 + 3270: -24,-31 + 3271: -24,-32 - node: color: '#9FED5896' id: DiagonalCheckerAOverlay decals: - 232: 36,-31 - 233: 37,-31 + 136: 36,-31 + 137: 37,-31 - node: color: '#D381C996' id: DiagonalCheckerAOverlay decals: - 446: -1,-57 - 447: 0,-57 - 448: 0,-58 - 449: -1,-58 - 450: -1,-59 - 451: 0,-59 - 452: 0,-60 - 453: -1,-60 - 454: -1,-61 - 455: 0,-61 - 456: 0,-62 - 457: -1,-62 + 350: -1,-57 + 351: 0,-57 + 352: 0,-58 + 353: -1,-58 + 354: -1,-59 + 355: 0,-59 + 356: 0,-60 + 357: -1,-60 + 358: -1,-61 + 359: 0,-61 + 360: 0,-62 + 361: -1,-62 - node: color: '#1D1D21FF' id: DiagonalCheckerBOverlay decals: - 434: -1,-57 - 435: 0,-57 - 436: 0,-58 - 437: -1,-58 - 438: -1,-59 - 439: 0,-59 - 440: 0,-60 - 441: -1,-60 - 442: -1,-61 - 443: 0,-61 - 444: 0,-62 - 445: -1,-62 + 338: -1,-57 + 339: 0,-57 + 340: 0,-58 + 341: -1,-58 + 342: -1,-59 + 343: 0,-59 + 344: 0,-60 + 345: -1,-60 + 346: -1,-61 + 347: 0,-61 + 348: 0,-62 + 349: -1,-62 - node: color: '#52B4E996' id: DiagonalCheckerBOverlay decals: - 1080: 16,-26 - 1081: 16,-27 - 1082: 17,-27 - 1083: 18,-27 - 1084: 16,-23 - 1085: 17,-23 - 1086: 18,-23 - 1087: 18,-24 - 1088: 18,-25 - 1089: 18,-26 - 1090: 16,-25 - 1091: 16,-24 + 954: 16,-26 + 955: 16,-27 + 956: 17,-27 + 957: 18,-27 + 958: 16,-23 + 959: 17,-23 + 960: 18,-23 + 961: 18,-24 + 962: 18,-25 + 963: 18,-26 + 964: 16,-25 + 965: 16,-24 - node: color: '#5E7C16FF' id: DiagonalCheckerBOverlay decals: - 4112: -26,-32 - 4113: -25,-32 - 4114: -24,-32 - 4115: -24,-31 - 4116: -25,-31 - 4117: -26,-31 - 4118: -26,-30 - 4119: -25,-30 - 4120: -24,-30 - 4121: -24,-29 - 4122: -25,-29 - 4123: -26,-29 - 4124: -26,-28 - 4125: -25,-28 - 4126: -24,-28 - 4127: -24,-27 - 4128: -25,-27 - 4129: -26,-27 - 4130: -25,-26 - 4131: -24,-26 - 4132: -23,-26 - 4133: -22,-26 - 4134: -21,-26 - 4135: -20,-26 - 4136: -20,-25 - 4137: -21,-25 - 4138: -22,-25 - 4139: -23,-25 - 4140: -24,-25 - 4141: -25,-25 - 4142: -25,-24 - 4143: -24,-24 - 4144: -23,-24 - 4145: -22,-24 - 4146: -21,-24 - 4147: -20,-24 - 4148: -24,-23 - 4149: -25,-23 - 4150: -26,-23 - 4151: -26,-22 - 4152: -25,-22 - 4153: -24,-22 - 4154: -23,-22 - 4155: -23,-21 - 4156: -24,-21 - 4157: -25,-21 - 4158: -26,-21 - 4159: -26,-20 - 4160: -25,-20 - 4161: -24,-20 - 4162: -23,-20 - 4163: -23,-19 - 4164: -24,-19 - 4165: -25,-19 - 4166: -26,-19 - 4167: -26,-18 - 4168: -25,-18 - 4169: -24,-18 - 4170: -23,-18 + 3272: -26,-32 + 3273: -25,-32 + 3274: -24,-32 + 3275: -24,-31 + 3276: -25,-31 + 3277: -26,-31 + 3278: -26,-30 + 3279: -25,-30 + 3280: -24,-30 + 3281: -24,-29 + 3282: -25,-29 + 3283: -26,-29 + 3284: -26,-28 + 3285: -25,-28 + 3286: -24,-28 + 3287: -24,-27 + 3288: -25,-27 + 3289: -26,-27 + 3290: -25,-26 + 3291: -24,-26 + 3292: -23,-26 + 3293: -22,-26 + 3294: -21,-26 + 3295: -20,-26 + 3296: -20,-25 + 3297: -21,-25 + 3298: -22,-25 + 3299: -23,-25 + 3300: -24,-25 + 3301: -25,-25 + 3302: -25,-24 + 3303: -24,-24 + 3304: -23,-24 + 3305: -22,-24 + 3306: -21,-24 + 3307: -20,-24 + 3308: -24,-23 + 3309: -25,-23 + 3310: -26,-23 + 3311: -26,-22 + 3312: -25,-22 + 3313: -24,-22 + 3314: -23,-22 + 3315: -23,-21 + 3316: -24,-21 + 3317: -25,-21 + 3318: -26,-21 + 3319: -26,-20 + 3320: -25,-20 + 3321: -24,-20 + 3322: -23,-20 + 3323: -23,-19 + 3324: -24,-19 + 3325: -25,-19 + 3326: -26,-19 + 3327: -26,-18 + 3328: -25,-18 + 3329: -24,-18 + 3330: -23,-18 - node: color: '#9FED5896' id: DiagonalCheckerBOverlay decals: - 230: 34,-33 - 231: 34,-34 + 134: 34,-33 + 135: 34,-34 - node: cleanable: True color: '#FFFFFFFF' id: Dirt decals: - 3383: 69.419556,-18.458513 - 3384: 71.544556,-18.489784 - 3385: 72.86748,-27.644072 - 3386: 72.06539,-27.831703 - 3387: 59.36202,-29.971268 - 3388: 56.55852,-29.491768 - 3389: 56.141853,-29.564735 - 3390: 55.37102,-29.637703 - 3391: 51.531544,-27.504915 - 3392: 51.32321,-26.74397 - 3393: 51.312794,-26.379133 - 3394: 53.926983,-24.575829 - 3395: 53.97907,-25.055328 - 3396: 53.9999,-25.753729 - 3397: 51.29157,-22.673273 - 3398: 51.44782,-22.277164 - 3399: 51.8124,-22.131231 - 3400: 50.3124,-20.602192 - 3401: 51.270733,-20.404137 - 3402: 50.85407,-20.643887 - 3403: 48.907383,-21.133812 - 3404: 47.05322,-21.23805 - 3405: 47.366463,-21.248474 - 3406: 47.970627,-21.18593 - 3407: 46.265556,-22.520191 - 3408: 45.463474,-22.70782 - 3409: 45.859306,-22.478495 - 3410: 45.748272,-23.248838 - 3411: 45.63369,-23.540709 - 3412: 45.467022,-23.915968 - 3413: 39.119694,-22.556726 - 3414: 38.963444,-22.421217 - 3415: 38.07209,-20.77324 - 3416: 37.863754,-20.919174 - 3417: 34.301254,-20.801998 - 3418: 33.863754,-20.81242 - 3419: 33.374172,-21.020899 - 3420: 33.311672,-21.813116 - 3421: 33.57209,-22.084137 - 3422: 42.562397,-18.781172 - 3423: 42.416565,-18.239128 - 3424: 43.58323,-17.89514 - 3425: 42.437397,-18.061922 - 3426: 41.572815,-17.509455 - 3427: 40.89573,-17.15504 - 3428: 42.08323,-13.393965 - 3429: 42.218647,-12.68514 - 3430: 41.67698,-12.956161 - 3431: 41.23948,-12.518357 - 3432: 43.11448,-11.148764 - 3433: 43.67698,-10.773503 - 3434: 43.947815,-10.637992 - 3435: 43.567116,-10.888165 - 3436: 42.755833,-8.574059 - 3437: 43.71417,-9.720689 - 3438: 48.731606,-9.658145 - 3439: 50.877438,-9.637298 - 3440: 49.814938,-9.75196 - 3441: 48.33577,-10.085525 - 3442: 49.17952,-9.950014 - 3443: 48.314938,-10.502481 - 3444: 47.596188,-10.992405 - 3445: 47.24202,-11.2425785 - 3446: 51.002857,-8.7825365 - 3447: 51.284107,-5.74918 - 3448: 51.054943,-6.60394 - 3449: 51.190357,-7.583787 - 3450: 52.044525,-6.5935163 - 3451: 52.315357,-7.792265 - 3452: 52.357025,-9.03271 - 3453: 52.346607,-10.52333 - 3454: 52.273693,-10.877742 - 3455: 52.054943,-11.357242 - 3456: 51.586193,-11.711655 - 3457: 51.054943,-12.458711 - 3458: 50.732025,-13.584493 - 3459: 50.607025,-14.043145 - 3460: 50.492443,-14.112839 - 3461: 50.669525,-14.748697 - 3462: 50.565357,-14.477675 - 3463: 50.690357,-15.082262 - 3464: 50.607025,-15.7493925 - 3465: 50.065357,-17.862099 - 3466: 49.950775,-18.226936 - 3467: 49.804943,-19.269327 - 3468: 48.284107,-17.841251 - 3469: 48.742443,-17.111578 - 3470: 49.221607,-16.246395 - 3471: 49.117443,-14.411788 - 3472: 48.804943,-13.552691 - 3473: 48.419525,-13.22955 - 3474: 48.065357,-13.938375 - 3475: 34.96789,-9.936574 - 3476: 34.07206,-9.780215 - 3477: 33.332474,-9.780215 - 3478: 33.07206,-10.072084 - 3479: 32.78039,-10.290986 - 3480: 32.49914,-10.916421 - 3481: 32.467155,-7.5102053 - 3482: 31.769238,-6.884772 - 3483: 30.862988,-6.301033 - 3484: 31.571323,-5.9570436 - 3485: 33.123405,-5.9049244 - 3486: 30.716919,-4.2787952 - 3487: 30.654419,-4.8104143 - 3488: 31.727337,-3.0487738 - 3489: 31.425251,-3.7680235 - 3490: 31.977337,-3.1530128 - 3491: 33.5815,-2.9132628 - 3492: 33.15442,-3.0279264 - 3493: 32.394,-3.2259803 - 3494: 28.50484,-5.175251 - 3495: 28.34859,-4.61236 - 3496: 28.025673,-3.4865785 - 3497: 28.66109,-2.6630893 - 3498: 28.09859,-2.8090243 - 3499: 26.775673,-5.3733053 - 3500: 26.765259,-5.9153485 - 3501: 26.44234,-7.155793 - 3502: 27.681923,-5.7172937 - 3503: 28.463173,-7.0619783 - 3504: 34.732906,-2.6831698 - 3505: 35.326656,-2.5580833 - 3506: 35.78499,-2.4955394 - 3507: 35.86832,-1.9639208 - 3508: 36.170406,-1.2759426 - 3509: 36.732906,0.30432153 - 3510: 37.87874,0.5336478 - 3511: 39.22249,0.65873456 - 3512: 36.107906,0.0437243 - 3513: 34.52457,-0.13348222 - 3514: 35.46207,0.03330016 - 3515: 37.08707,0.27305007 - 3516: 37.44124,0.5128 - 3517: 39.21207,0.59619117 - 3518: 40.451656,0.70043015 - 3519: 41.139156,-0.28984046 - 3520: 39.764156,-0.7380688 - 3521: 38.64957,-0.8423078 - 3522: 37.69124,-0.9465468 - 3523: 31.892235,0.74212575 - 3524: 31.569317,0.7733977 - 3525: 30.423485,0.7108538 - 3526: 29.340149,1.075691 - 3527: 30.735985,1.1903536 - 3528: 59.2448,12.477725 - 3529: 58.442715,12.394332 - 3530: 57.57813,12.363061 - 3531: 56.432297,12.352637 - 3532: 59.2448,11.445758 - 3533: 57.67188,11.341518 - 3534: 53.713547,12.22755 - 3535: 53.432297,12.14416 - 3536: 50.67188,11.581268 - 3537: 49.48438,11.539573 - 3538: 49.776047,11.549996 - 3539: 47.817715,5.8236 - 3540: 47.880215,6.0425034 - 3541: 47.82813,6.4281874 - 3542: 47.380215,6.7200565 - 3543: 47.04688,6.8347197 - 3544: 44.494797,6.761752 - 3545: 45.994797,6.73048 - 3546: 46.116024,6.855568 - 3547: 45.511856,6.824296 - 3548: 46.876442,9.055012 - 3549: 47.230606,8.387882 - 3550: 47.741024,7.6999035 - 3551: 50.888084,6.0633507 - 3552: 50.961002,6.6679373 - 3553: 50.127666,7.5539694 - 3554: 49.044334,7.835415 - 3555: 48.481834,8.40873 - 3556: 47.388084,9.044588 - 3557: 48.023502,8.440001 - 3558: 51.742252,6.8972626 - 3559: 50.981834,7.178709 - 3560: 51.648502,6.8764153 - 3561: 52.138084,6.647089 - 3562: 52.815166,6.3343716 - 3563: 54.044334,7.387186 - 3564: 54.117252,7.647784 - 3565: 55.804752,16.52822 - 3566: 55.763084,16.486525 - 3567: 55.596416,16.330166 - 3568: 55.263084,16.038296 - 3569: 54.690166,15.840242 - 3570: 54.408916,15.5692215 - 3571: 57.721416,17.528915 - 3572: 57.690166,17.080687 - 3573: 50.828125,13.963939 - 3574: 49.901043,13.359351 - 3575: 49.53646,13.32808 - 3576: 47.244793,13.286384 - 3577: 47.06771,13.7033415 - 3578: 46.713543,15.193959 - 3579: 46.796875,14.912515 - 3580: 47.109375,14.412166 - 3581: 42.741573,12.781077 - 3582: 42.272823,12.927012 - 3583: 40.918655,13.052098 - 3584: 41.543655,12.989554 - 3585: 41.604862,6.926813 - 3586: 40.896526,6.874694 - 3587: 40.438194,6.874694 - 3588: 38.167362,8.646758 - 3589: 39.292362,7.7398777 - 3590: 38.625694,8.448704 - 3591: 39.719444,7.260378 - 3592: 38.959026,6.8851175 - 3593: 39.427776,6.3847704 - 3594: 40.094444,6.0616293 - 3595: 41.406944,10.123722 - 3596: 40.646526,9.665071 - 3597: 40.521526,9.341929 - 3598: 39.625694,9.060484 - 3599: 41.281944,8.341234 - 3600: 40.427776,8.424625 - 3601: 29.152435,10.819572 - 3602: 29.048267,11.507549 - 3603: 28.60035,13.4047 - 3604: 28.78785,12.132985 - 3605: 28.798267,17.313667 - 3606: 29.9441,17.355362 - 3607: 30.714935,17.230274 - 3608: 31.048267,17.13646 - 3609: 31.235767,16.312971 - 3610: 31.3191,15.823048 - 3611: 31.485767,14.394971 - 3612: 31.47535,13.477668 - 3613: 28.923267,12.153832 - 3614: 28.360767,11.236528 - 3615: 27.735767,10.882115 - 3616: 28.16285,11.372039 - 3617: 25.961983,10.590245 - 3618: 25.961983,9.370648 - 3619: 26.024483,10.2254095 - 3620: 26.014069,11.361615 - 3621: 25.94115,12.904353 - 3622: 27.242832,13.823396 - 3623: 26.346996,13.2083845 - 3624: 18.553879,13.706912 - 3625: 18.616379,13.6339445 - 3626: 18.949715,13.498435 - 3627: 19.366379,13.310803 - 3628: 19.824715,13.164868 - 3629: 20.001797,12.132903 - 3630: 20.064297,11.401406 - 3631: 19.387215,10.338168 - 3632: 17.230965,10.338168 - 3633: 15.76667,10.160961 - 3634: 13.225657,10.223505 - 3635: 10.931874,10.233929 - 3636: 7.9547377,10.244353 - 3637: 8.545297,10.31732 - 3638: 9.243214,10.359015 - 3639: 9.878631,10.265201 - 3640: 11.441131,10.171386 - 3641: 12.326547,10.140114 - 3642: 23.46373,22.522877 - 3643: 23.442894,22.199736 - 3644: 23.317894,21.532606 - 3645: 23.192894,20.719542 - 3646: 22.90123,19.83351 - 3647: 22.515812,19.135107 - 3648: 22.265812,18.259499 - 3649: 24.46373,20.062834 - 3650: 25.359562,18.019749 - 3651: 25.43248,17.779999 - 3652: 15.003123,26.03166 - 3653: 14.357289,25.989964 - 3654: 15.253123,25.969116 - 3655: 16.117706,25.885725 - 3656: 17.648956,26.010813 - 3657: 18.669792,26.010813 - 3658: 21.440624,26.03166 - 3659: 20.107292,25.906572 - 3660: 19.898956,26.657095 - 3661: 18.867706,26.532007 - 3662: 17.992706,26.45904 - 3663: 17.367706,26.49031 - 3664: 16.711456,26.896845 - 3665: 16.461456,27.55355 - 3666: 18.253124,28.960777 - 3667: 18.544792,28.35619 - 3668: 32.105022,26.042084 - 3669: 29.698772,25.864878 - 3670: 29.073772,26.135899 - 3671: 36.210175,24.45765 - 3672: 35.73101,24.186628 - 3673: 34.48101,23.717552 - 3674: 34.658092,25.010117 - 3675: 34.57476,24.11366 - 3676: 33.022675,25.322834 - 3677: 34.189342,25.479193 - 3678: 36.19976,26.323528 - 3679: 36.928925,27.292952 - 3680: 37.126842,27.44931 - 3681: 36.814342,26.99066 - 3682: 36.32476,26.573704 - 3683: 23.456963,34.17295 - 3684: 23.706963,32.92208 - 3685: 23.540295,33.432854 - 3686: 11.412072,24.97239 - 3687: 10.672488,24.670095 - 3688: 10.318322,24.35738 - 3689: 11.339156,25.087053 - 3690: 12.172488,25.358074 - 3691: 10.859988,24.86815 - 3692: 14.651656,27.77642 - 3693: 14.349572,27.69303 - 3694: 13.641238,27.442856 - 3695: 9.203738,27.891083 - 3696: 9.255822,26.004356 - 3697: 9.516238,25.514433 - 3698: 11.318322,27.302483 - 3699: 11.287072,28.04258 - 3700: 11.203738,29.386631 - 3701: 11.599572,29.741043 - 3702: 13.828738,30.53326 - 3703: 12.953738,30.679195 - 3704: 11.599572,31.085728 - 3705: 10.682904,32.492954 - 3706: 11.547488,31.450565 - 3707: 11.547488,32.45126 - 3708: 13.964156,32.409565 - 3709: 13.380822,32.357445 - 3710: 12.818322,32.32617 - 3711: 13.880822,35.10814 - 3712: 12.901656,34.81627 - 3713: 12.016238,34.57652 - 3714: 11.474572,33.951084 - 3715: 9.28119,33.66964 - 3716: 7.864523,33.836422 - 3717: 5.395773,33.867695 - 3718: 4.729106,33.398617 - 3719: 3.7095013,33.62794 - 3720: 3.3553343,32.96081 - 3721: 4.4595013,33.42989 - 3722: 2.9074173,32.637672 - 3723: 3.8657513,32.981663 - 3724: 3.5532503,32.731487 - 3725: 3.3345003,32.304108 - 3726: 3.2199173,32.1269 - 3727: 2.4074173,31.689098 - 3728: 2.5584936,32.731487 - 3729: 1.1001601,32.439617 - 3730: 15.122949,16.834099 - 3731: 15.102115,18.168358 - 3732: 17.678928,-7.7376556 - 3733: 17.616428,-7.7793503 - 3734: 17.04351,-8.175459 - 3735: 15.905357,-11.104577 - 3736: 15.23869,-11.292208 - 3737: 7.293606,-9.676502 - 3738: 7.439439,-8.73835 - 3739: 7.647773,-9.864132 - 3740: 7.001939,-9.113611 - 3741: 8.616523,-10.458295 - 3742: -6.292487,-8.921461 - 3743: -8.625821,-8.733831 - 3744: -10.8474655,-9.31757 - 3745: -19.813374,3.4039094 - 3746: -20.021706,2.7159312 - 3747: 26,-42 - 3748: 20,-43 - 3749: 14,-43 - 3750: 4,-43 - 3751: 1,-48 - 3752: -9,-54 - 3753: -5,-54 - 3754: 17,-48 - 3755: 25,-48 - 3756: 34,-47 - 3757: 46,-47 - 3758: 59,-47 - 3759: 65,-47 - 3760: 70,-47 - 3761: 76,-47 - 3762: 73,-48 - 3763: 74,-42 - 3764: 74,-38 - 3765: 74,-34 - 3766: 74,-26 - 3767: 75.473015,-22.639088 - 3768: 75.20218,-22.649511 - 3769: 74.70218,-22.701632 - 3770: 74.4001,-22.80587 - 3771: 71.223015,-18.448677 - 3772: 71.379265,-18.95945 - 3773: 71.38968,-19.355558 - 3774: 69.5251,-18.9386 - 3775: 69.6501,-19.668274 - 3776: 69.63968,-20.116503 - 3777: 71.43135,-20.356253 - 3778: 73.973015,-24.468374 - 3779: 73.36885,-24.854057 - 3780: 72.598015,-25.427374 - 3781: 72.3376,-25.719242 - 3782: 29,-35 - 3783: 31,-32 - 3784: 33,-24 - 3785: 32,-19 - 3786: 26,-13 - 3787: 23,-9 - 3788: 24,-2 - 3789: 25,7 - 3790: 21,12 - 3791: 21.069393,11.594574 - 3792: 15,-10 - 5535: 1.8856349,-31.76875 - 5536: 1.4377184,-32.102314 - 5537: 0.5523014,-32.30037 - 5538: 0.1043849,-31.63324 - 5539: 0.9054718,-36.963215 - 5540: 0.6346383,-37.88052 - 5541: -15.283687,-39.79528 - 5542: -11.767625,-36.089367 - 5543: -11.934292,-35.568172 - 5544: -12.059292,-35.099094 - 5545: -4.3134036,-32.88301 - 5546: -4.5009036,-32.50775 - 5547: -5.1884036,-30.329155 - 5548: -4.802987,-31.924011 - 5549: -2.020146,-31.069252 - 5550: -0.93401146,-34.926098 - 5551: -0.93401146,-34.926098 - 5552: -9.83919,-29.496267 - 5553: -10.443356,-29.319061 - 5554: -10.641273,-29.162703 - 5555: -10.609102,-28.746555 - 5556: -10.619518,-29.34072 - 5557: -16.717175,-26.576124 - 5558: -16.644257,-27.003504 - 5559: -17.04009,-27.21198 - 5560: -17.248425,-26.46146 - 5561: -17.998425,-26.294678 - 5562: -19.498425,-26.180016 - 5563: -20.706757,-26.107048 - 5564: -18.238007,-24.595581 - 5565: -18.275425,-32.036373 - 5566: -17.858759,-31.994678 - 5567: -18.192093,-31.233732 - 5568: -18.233759,-30.378973 - 5569: -17.994175,-30.087103 - 5570: -18.233759,-29.128103 - 5571: -20.22153,-32.5263 - 5572: -21.19028,-32.495026 - 5573: -22.794449,-29.8682 - 5574: -22.794449,-30.191341 - 5575: -23.054867,-31.369244 - 5576: -15.394883,-20.881506 - 5577: -15.728216,-20.766842 - 5578: -14.821966,-21.16295 - 5579: -13.571966,-21.1838 - 5580: -12.384466,-20.89193 - 5581: -11.509466,-19.703604 - 5582: -10.832382,-18.880116 - 5583: -12.0928,-20.141409 - 5584: -11.561549,-20.68345 - 5585: -11.405299,-19.547245 - 5586: -11.332382,-18.99478 - 5587: -30.848236,-15.0994425 - 5588: -30.889904,-14.755453 - 5589: -30.952404,-14.348921 - 5590: -30.983654,-11.427445 - 5591: -30.900318,-11.052185 - 5592: -30.744068,-10.499718 - 5593: -32.379486,-35.70226 - 5594: -32.40032,-36.286 - 5595: -31.202404,-35.81692 - 5596: -30.816986,-35.983707 - 5597: -25.344467,-34.455265 - 5598: -25.95905,-34.403145 - 5599: -26.64655,-35.21621 - 5600: -26.938217,-35.330875 - 5601: -27.261131,-35.153667 - 5602: -25.448631,-40.135998 - 5603: -25.563217,-40.646767 - 5604: -26.281967,-41.386864 - 5605: -28.219467,-41.303474 - 5606: -29.52155,-39.927517 - 5607: -30.938217,-40.000484 - 5608: -32.20905,-39.948368 - 5609: -36.273994,-35.300537 - 5610: -35.248173,-1.9216735 - 5611: -36.98776,-1.5151412 - 5612: -39.73776,-1.1815765 - 5613: -43.528877,1.5458653 - 5614: -44.07054,1.6292565 - 5615: -44.89346,2.3902018 - 5616: -49.86221,1.139333 - 5617: -49.841377,1.1289089 - 5618: -49.58096,1.0663655 - 5619: -49.44554,3.4534404 - 5620: -49.48721,4.2352333 - 5621: -49.372627,2.7341907 - 5622: -45.449696,6.5832567 - 5623: -46.355946,7.55268 - 5624: -46.84553,9.012027 - 5625: -45.710114,8.949484 - 5626: -46.90803,8.949484 - 5627: -47.293446,7.166996 - 5628: -43.991364,8.042604 - 5629: -45.25178,1.5322659 - 5630: -46.012196,1.7928636 - 5631: -46.22053,2.001342 - 5632: -46.324696,2.2723634 - 5633: -46.28303,2.1160047 - 5696: 5.2911997,30.138435 - 5697: 5.6141167,26.66469 - 5698: 5.7078667,24.444923 - 5699: 5.8328667,19.341602 - 5700: 5.8120327,13.995181 - 5701: 5.7703667,12.750169 - 5702: 6.5203667,12.503745 - 5703: 6.6349497,14.135129 - 5704: 7.0620327,16.187181 - 5705: 7.1453667,18.194073 - 5706: 7.3849497,20.98193 - 5707: 7.3849497,23.16565 - 5708: 7.3849497,25.244886 - 5709: 7.3536997,27.711573 - 5710: 6.1974497,30.290543 - 5711: 4.8328667,30.290543 - 5712: 4.7703667,26.954893 - 5713: 4.5203657,21.991884 - 5714: 4.5099497,19.762556 - 5715: 4.5932827,17.313992 + 2681: 69.419556,-18.458513 + 2682: 71.544556,-18.489784 + 2683: 72.86748,-27.644072 + 2684: 72.06539,-27.831703 + 2685: 59.36202,-29.971268 + 2686: 56.55852,-29.491768 + 2687: 56.141853,-29.564735 + 2688: 55.37102,-29.637703 + 2689: 51.531544,-27.504915 + 2690: 51.32321,-26.74397 + 2691: 51.312794,-26.379133 + 2692: 53.926983,-24.575829 + 2693: 53.97907,-25.055328 + 2694: 53.9999,-25.753729 + 2695: 51.29157,-22.673273 + 2696: 51.44782,-22.277164 + 2697: 51.8124,-22.131231 + 2698: 50.3124,-20.602192 + 2699: 51.270733,-20.404137 + 2700: 50.85407,-20.643887 + 2701: 48.907383,-21.133812 + 2702: 47.05322,-21.23805 + 2703: 47.366463,-21.248474 + 2704: 47.970627,-21.18593 + 2705: 46.265556,-22.520191 + 2706: 45.463474,-22.70782 + 2707: 45.859306,-22.478495 + 2708: 45.748272,-23.248838 + 2709: 45.63369,-23.540709 + 2710: 45.467022,-23.915968 + 2711: 39.119694,-22.556726 + 2712: 38.963444,-22.421217 + 2713: 38.07209,-20.77324 + 2714: 37.863754,-20.919174 + 2715: 34.301254,-20.801998 + 2716: 33.863754,-20.81242 + 2717: 33.374172,-21.020899 + 2718: 33.311672,-21.813116 + 2719: 33.57209,-22.084137 + 2720: 42.562397,-18.781172 + 2721: 42.416565,-18.239128 + 2722: 43.58323,-17.89514 + 2723: 42.437397,-18.061922 + 2724: 41.572815,-17.509455 + 2725: 40.89573,-17.15504 + 2726: 42.08323,-13.393965 + 2727: 42.218647,-12.68514 + 2728: 41.67698,-12.956161 + 2729: 41.23948,-12.518357 + 2730: 43.11448,-11.148764 + 2731: 43.67698,-10.773503 + 2732: 43.947815,-10.637992 + 2733: 43.567116,-10.888165 + 2734: 42.755833,-8.574059 + 2735: 43.71417,-9.720689 + 2736: 48.731606,-9.658145 + 2737: 50.877438,-9.637298 + 2738: 49.814938,-9.75196 + 2739: 48.33577,-10.085525 + 2740: 49.17952,-9.950014 + 2741: 48.314938,-10.502481 + 2742: 47.596188,-10.992405 + 2743: 47.24202,-11.2425785 + 2744: 51.002857,-8.7825365 + 2745: 51.284107,-5.74918 + 2746: 51.054943,-6.60394 + 2747: 51.190357,-7.583787 + 2748: 52.044525,-6.5935163 + 2749: 52.315357,-7.792265 + 2750: 52.357025,-9.03271 + 2751: 52.346607,-10.52333 + 2752: 52.273693,-10.877742 + 2753: 52.054943,-11.357242 + 2754: 51.586193,-11.711655 + 2755: 51.054943,-12.458711 + 2756: 50.732025,-13.584493 + 2757: 50.607025,-14.043145 + 2758: 50.492443,-14.112839 + 2759: 50.669525,-14.748697 + 2760: 50.565357,-14.477675 + 2761: 50.690357,-15.082262 + 2762: 50.607025,-15.7493925 + 2763: 50.065357,-17.862099 + 2764: 49.950775,-18.226936 + 2765: 49.804943,-19.269327 + 2766: 48.284107,-17.841251 + 2767: 48.742443,-17.111578 + 2768: 49.221607,-16.246395 + 2769: 49.117443,-14.411788 + 2770: 48.804943,-13.552691 + 2771: 48.419525,-13.22955 + 2772: 48.065357,-13.938375 + 2773: 34.96789,-9.936574 + 2774: 34.07206,-9.780215 + 2775: 33.332474,-9.780215 + 2776: 33.07206,-10.072084 + 2777: 32.78039,-10.290986 + 2778: 32.49914,-10.916421 + 2779: 32.467155,-7.5102053 + 2780: 31.769238,-6.884772 + 2781: 30.862988,-6.301033 + 2782: 31.571323,-5.9570436 + 2783: 33.123405,-5.9049244 + 2784: 30.716919,-4.2787952 + 2785: 30.654419,-4.8104143 + 2786: 31.727337,-3.0487738 + 2787: 31.425251,-3.7680235 + 2788: 31.977337,-3.1530128 + 2789: 33.5815,-2.9132628 + 2790: 33.15442,-3.0279264 + 2791: 32.394,-3.2259803 + 2792: 28.50484,-5.175251 + 2793: 28.34859,-4.61236 + 2794: 28.025673,-3.4865785 + 2795: 28.66109,-2.6630893 + 2796: 28.09859,-2.8090243 + 2797: 26.775673,-5.3733053 + 2798: 26.765259,-5.9153485 + 2799: 26.44234,-7.155793 + 2800: 27.681923,-5.7172937 + 2801: 28.463173,-7.0619783 + 2802: 34.732906,-2.6831698 + 2803: 35.326656,-2.5580833 + 2804: 35.78499,-2.4955394 + 2805: 35.86832,-1.9639208 + 2806: 36.170406,-1.2759426 + 2807: 36.732906,0.30432153 + 2808: 37.87874,0.5336478 + 2809: 39.22249,0.65873456 + 2810: 36.107906,0.0437243 + 2811: 34.52457,-0.13348222 + 2812: 35.46207,0.03330016 + 2813: 37.08707,0.27305007 + 2814: 37.44124,0.5128 + 2815: 39.21207,0.59619117 + 2816: 40.451656,0.70043015 + 2817: 41.139156,-0.28984046 + 2818: 39.764156,-0.7380688 + 2819: 38.64957,-0.8423078 + 2820: 37.69124,-0.9465468 + 2821: 31.892235,0.74212575 + 2822: 31.569317,0.7733977 + 2823: 30.423485,0.7108538 + 2824: 29.340149,1.075691 + 2825: 30.735985,1.1903536 + 2826: 59.2448,12.477725 + 2827: 59.2448,11.445758 + 2828: 57.67188,11.341518 + 2829: 53.713547,12.22755 + 2830: 46.876442,9.055012 + 2831: 47.230606,8.387882 + 2832: 50.127666,7.5539694 + 2833: 49.044334,7.835415 + 2834: 47.388084,9.044588 + 2835: 54.044334,7.387186 + 2836: 54.117252,7.647784 + 2837: 55.804752,16.52822 + 2838: 55.763084,16.486525 + 2839: 55.596416,16.330166 + 2840: 55.263084,16.038296 + 2841: 54.690166,15.840242 + 2842: 54.408916,15.5692215 + 2843: 57.721416,17.528915 + 2844: 57.690166,17.080687 + 2845: 50.828125,13.963939 + 2846: 47.06771,13.7033415 + 2847: 47.109375,14.412166 + 2848: 42.741573,12.781077 + 2849: 42.272823,12.927012 + 2850: 40.918655,13.052098 + 2851: 41.543655,12.989554 + 2852: 38.167362,8.646758 + 2853: 39.292362,7.7398777 + 2854: 38.625694,8.448704 + 2855: 39.719444,7.260378 + 2856: 38.959026,6.8851175 + 2857: 39.427776,6.3847704 + 2858: 29.152435,10.819572 + 2859: 28.60035,13.4047 + 2860: 28.798267,17.313667 + 2861: 29.9441,17.355362 + 2862: 30.714935,17.230274 + 2863: 31.048267,17.13646 + 2864: 31.235767,16.312971 + 2865: 31.3191,15.823048 + 2866: 31.485767,14.394971 + 2867: 31.47535,13.477668 + 2868: 25.961983,10.590245 + 2869: 25.961983,9.370648 + 2870: 26.024483,10.2254095 + 2871: 27.242832,13.823396 + 2872: 18.949715,13.498435 + 2873: 19.366379,13.310803 + 2874: 19.387215,10.338168 + 2875: 17.230965,10.338168 + 2876: 15.76667,10.160961 + 2877: 13.225657,10.223505 + 2878: 10.931874,10.233929 + 2879: 7.9547377,10.244353 + 2880: 8.545297,10.31732 + 2881: 9.243214,10.359015 + 2882: 9.878631,10.265201 + 2883: 11.441131,10.171386 + 2884: 12.326547,10.140114 + 2885: 36.210175,24.45765 + 2886: 35.73101,24.186628 + 2887: 34.48101,23.717552 + 2888: 34.658092,25.010117 + 2889: 34.57476,24.11366 + 2890: 33.022675,25.322834 + 2891: 34.189342,25.479193 + 2892: 36.19976,26.323528 + 2893: 36.928925,27.292952 + 2894: 37.126842,27.44931 + 2895: 36.814342,26.99066 + 2896: 36.32476,26.573704 + 2897: 23.456963,34.17295 + 2898: 23.706963,32.92208 + 2899: 23.540295,33.432854 + 2900: 11.412072,24.97239 + 2901: 10.672488,24.670095 + 2902: 10.318322,24.35738 + 2903: 11.339156,25.087053 + 2904: 10.859988,24.86815 + 2905: 9.203738,27.891083 + 2906: 9.255822,26.004356 + 2907: 9.516238,25.514433 + 2908: 11.318322,27.302483 + 2909: 11.599572,31.085728 + 2910: 10.682904,32.492954 + 2911: 11.547488,31.450565 + 2912: 11.547488,32.45126 + 2913: 13.380822,32.357445 + 2914: 11.474572,33.951084 + 2915: 9.28119,33.66964 + 2916: 7.864523,33.836422 + 2917: 5.395773,33.867695 + 2918: 4.729106,33.398617 + 2919: 3.7095013,33.62794 + 2920: 3.3553343,32.96081 + 2921: 4.4595013,33.42989 + 2922: 2.9074173,32.637672 + 2923: 3.8657513,32.981663 + 2924: 3.5532503,32.731487 + 2925: 3.3345003,32.304108 + 2926: 3.2199173,32.1269 + 2927: 2.4074173,31.689098 + 2928: 2.5584936,32.731487 + 2929: 1.1001601,32.439617 + 2930: 17.678928,-7.7376556 + 2931: 17.616428,-7.7793503 + 2932: 17.04351,-8.175459 + 2933: 15.905357,-11.104577 + 2934: 15.23869,-11.292208 + 2935: 7.293606,-9.676502 + 2936: 7.439439,-8.73835 + 2937: 7.647773,-9.864132 + 2938: 7.001939,-9.113611 + 2939: 8.616523,-10.458295 + 2940: -6.292487,-8.921461 + 2941: -8.625821,-8.733831 + 2942: -10.8474655,-9.31757 + 2943: 26,-42 + 2944: 20,-43 + 2945: 14,-43 + 2946: 4,-43 + 2947: 1,-48 + 2948: -9,-54 + 2949: -5,-54 + 2950: 17,-48 + 2951: 25,-48 + 2952: 34,-47 + 2953: 46,-47 + 2954: 59,-47 + 2955: 65,-47 + 2956: 70,-47 + 2957: 76,-47 + 2958: 73,-48 + 2959: 74,-42 + 2960: 74,-38 + 2961: 74,-34 + 2962: 74,-26 + 2963: 75.473015,-22.639088 + 2964: 75.20218,-22.649511 + 2965: 74.70218,-22.701632 + 2966: 74.4001,-22.80587 + 2967: 71.223015,-18.448677 + 2968: 71.379265,-18.95945 + 2969: 71.38968,-19.355558 + 2970: 69.5251,-18.9386 + 2971: 69.6501,-19.668274 + 2972: 69.63968,-20.116503 + 2973: 71.43135,-20.356253 + 2974: 73.973015,-24.468374 + 2975: 73.36885,-24.854057 + 2976: 72.598015,-25.427374 + 2977: 72.3376,-25.719242 + 2978: 29,-35 + 2979: 31,-32 + 2980: 33,-24 + 2981: 32,-19 + 2982: 26,-13 + 2983: 23,-9 + 2984: 24,-2 + 2985: 25,7 + 2986: 15,-10 + 4652: 1.8856349,-31.76875 + 4653: 1.4377184,-32.102314 + 4654: 0.5523014,-32.30037 + 4655: 0.1043849,-31.63324 + 4656: 0.9054718,-36.963215 + 4657: 0.6346383,-37.88052 + 4658: -15.283687,-39.79528 + 4659: -11.767625,-36.089367 + 4660: -11.934292,-35.568172 + 4661: -12.059292,-35.099094 + 4662: -4.3134036,-32.88301 + 4663: -4.5009036,-32.50775 + 4664: -5.1884036,-30.329155 + 4665: -4.802987,-31.924011 + 4666: -2.020146,-31.069252 + 4667: -0.93401146,-34.926098 + 4668: -0.93401146,-34.926098 + 4669: -9.83919,-29.496267 + 4670: -10.443356,-29.319061 + 4671: -10.641273,-29.162703 + 4672: -10.609102,-28.746555 + 4673: -10.619518,-29.34072 + 4674: -16.717175,-26.576124 + 4675: -16.644257,-27.003504 + 4676: -17.04009,-27.21198 + 4677: -17.248425,-26.46146 + 4678: -17.998425,-26.294678 + 4679: -19.498425,-26.180016 + 4680: -20.706757,-26.107048 + 4681: -18.238007,-24.595581 + 4682: -18.275425,-32.036373 + 4683: -17.858759,-31.994678 + 4684: -18.192093,-31.233732 + 4685: -18.233759,-30.378973 + 4686: -17.994175,-30.087103 + 4687: -18.233759,-29.128103 + 4688: -20.22153,-32.5263 + 4689: -21.19028,-32.495026 + 4690: -22.794449,-29.8682 + 4691: -22.794449,-30.191341 + 4692: -23.054867,-31.369244 + 4693: -15.394883,-20.881506 + 4694: -15.728216,-20.766842 + 4695: -14.821966,-21.16295 + 4696: -13.571966,-21.1838 + 4697: -12.384466,-20.89193 + 4698: -11.509466,-19.703604 + 4699: -10.832382,-18.880116 + 4700: -12.0928,-20.141409 + 4701: -11.561549,-20.68345 + 4702: -11.405299,-19.547245 + 4703: -11.332382,-18.99478 + 4704: -30.848236,-15.0994425 + 4705: -30.889904,-14.755453 + 4706: -30.952404,-14.348921 + 4707: -30.983654,-11.427445 + 4708: -30.900318,-11.052185 + 4709: -30.744068,-10.499718 + 4710: -32.379486,-35.70226 + 4711: -32.40032,-36.286 + 4712: -31.202404,-35.81692 + 4713: -30.816986,-35.983707 + 4714: -25.344467,-34.455265 + 4715: -25.95905,-34.403145 + 4716: -26.64655,-35.21621 + 4717: -26.938217,-35.330875 + 4718: -27.261131,-35.153667 + 4719: -25.448631,-40.135998 + 4720: -25.563217,-40.646767 + 4721: -26.281967,-41.386864 + 4722: -28.219467,-41.303474 + 4723: -29.52155,-39.927517 + 4724: -30.938217,-40.000484 + 4725: -32.20905,-39.948368 + 4726: -36.273994,-35.300537 + 4727: -35.248173,-1.9216735 + 4728: -36.98776,-1.5151412 + 4729: -39.73776,-1.1815765 + 4730: -43.528877,1.5458653 + 4731: -44.07054,1.6292565 + 4732: -44.89346,2.3902018 + 4733: -49.86221,1.139333 + 4734: -49.841377,1.1289089 + 4735: -49.58096,1.0663655 + 4736: -49.44554,3.4534404 + 4737: -49.48721,4.2352333 + 4738: -49.372627,2.7341907 + 4739: -45.449696,6.5832567 + 4740: -46.355946,7.55268 + 4741: -46.84553,9.012027 + 4742: -45.710114,8.949484 + 4743: -46.90803,8.949484 + 4744: -47.293446,7.166996 + 4745: -43.991364,8.042604 + 4746: -45.25178,1.5322659 + 4747: -46.012196,1.7928636 + 4748: -46.22053,2.001342 + 4749: -46.324696,2.2723634 + 4750: -46.28303,2.1160047 + 4779: 5.2911997,30.138435 + 4780: 5.6141167,26.66469 + 4781: 5.7078667,24.444923 + 4782: 6.1974497,30.290543 + 4783: 4.8328667,30.290543 + 5104: -25.085869,6.2596016 + 5105: -24.66087,6.1845493 + 5106: -24.61087,5.9844103 + 5107: -24.54837,5.5340977 + 5108: -24.685867,4.983715 + 5109: -27.41087,7.9107485 + 5110: -27.498367,7.2227697 + 5111: -27.29837,5.183854 + 5112: -27.198368,4.445842 + 5113: -27.060867,3.3450778 + 5114: -18.010868,7.197753 + 5115: -17.748367,7.160227 + 5116: -17.485868,6.734932 + 5117: -17.573368,3.2324994 + 5118: -18.048368,3.2825344 + 5119: -19.010868,3.2074826 + 5120: -21.560867,7.1101923 + 5509: 12.771617,34.882286 + 5510: 12.990367,33.996254 + 5511: 13.657035,33.287426 + 5512: 14.625785,33.892014 + 5513: 17.663391,35.330513 + 5514: 17.684227,35.195004 + 5515: 17.715477,34.434055 + 5516: 17.89256,34.110916 + 5517: 18.33006,35.320087 + 5518: 18.33006,34.46533 + 5519: 18.23631,33.923286 + 5520: 22.475655,35.28882 + 5521: 22.329819,34.70508 + 5522: 21.881905,33.819046 + 5523: 21.756905,33.69396 + 5524: 16.9444,29.033741 + 5525: 17.048569,29.461124 + 5526: 17.0694,30.169949 + 5527: 16.996487,30.71199 + 5528: 16.923569,30.95174 + 5529: 17.486069,31.160221 + 5530: 17.725655,30.732838 + 5531: 17.861069,29.867657 + 5532: 24.017582,30.190796 + 5533: 23.861332,29.388157 + 5534: 23.725914,28.575092 + 5535: 24.12175,27.491005 + 5536: 24.8405,26.844723 + 5537: 25.142582,26.469461 + 5538: 25.0905,25.864874 + 5539: 24.538414,25.416647 + 5540: 24.236332,23.762123 + 5541: 24.43425,25.178082 + 5542: 24.028,24.114843 + 5543: 25.153,22.272074 + 5544: 24.955082,21.81324 + 5545: 23.99675,21.646458 + 5546: 24.403,19.027742 + 5547: 24.12175,18.537819 + 5548: 23.9655,17.745602 + 5549: 24.05925,17.036777 + 5550: 24.37175,15.074004 + 5551: 24.444664,14.198396 + 5552: 24.392582,13.385331 + 5553: 24.392582,12.832864 + 5554: 25.017582,11.686234 + 5555: 24.80925,12.176158 + 5556: 24.153,12.957952 + 5557: 21.03915,11.222679 + 5558: 20.987064,11.764722 + 5559: 20.841232,12.421428 + 5560: 22.497482,12.88008 + 5561: 22.622482,11.629211 + 5562: 23.059982,11.139288 + 5563: 23.6329,11.097592 + 5564: 22.64114,24.186085 + 5565: 22.755722,23.143694 + 5566: 41.939583,7.026366 + 5567: 42.5125,7.057637 + 5568: 43.52292,7.0472136 + 5569: 44.96042,7.1306047 + 5570: 46.54375,7.620528 + 5571: 46.220833,7.068062 + 5572: 42.79375,5.879737 + 5573: 47.43388,9.82484 + 5574: 47.725548,10.189676 + 5575: 49.892212,10.898501 + 5576: 54.722065,12.0858755 + 5577: 56.253315,12.023332 + 5578: 55.598217,11.992061 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Dirt decals: - 3793: 0.7615886,-23.692425 - 3794: 0.81367207,-23.661154 - 3795: 1.0949221,-23.827936 - 3796: 1.0636721,-25.214315 - 3797: 0.39550686,-34.45684 - 3940: 54,13 - 3941: 54,9 + 2987: 0.7615886,-23.692425 + 2988: 0.81367207,-23.661154 + 2989: 1.0949221,-23.827936 + 2990: 1.0636721,-25.214315 + 2991: 0.39550686,-34.45684 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: Dirt + decals: + 5055: -9.115898,7.000552 + - node: + cleanable: True + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: Dirt + decals: + 5056: -9.178398,6.037383 + 5057: -9.453399,5.7621927 + 5058: -9.640899,5.399441 + 5059: -8.365898,5.7246666 + 5060: -8.890899,7.100622 + 5061: -8.315899,7.02557 + 5062: -8.140899,6.6127834 + 5063: -7.8158984,5.999857 + 5064: -7.4408984,5.49951 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavy decals: - 5259: -32.026825,-5.997283 - 5260: -24.030098,-6.0480723 - 5261: -24.030098,-6.0480723 - 5274: -49.025608,6.0883503 - 5275: -49.025608,6.0883503 - 5322: -45.0686,3.3973076 - 5323: -45.0686,3.3973076 - 5324: -44.641518,4.001895 - 5325: -44.97485,7.9872103 - 5326: -44.985268,7.9872103 - 5327: -42.99568,8.028906 - 5328: -42.99568,8.028906 - 5329: -42.99568,8.028906 - 5357: 2.7265406,-39.491512 - 5358: 2.7161236,-40.002285 - 5359: 2.7161236,-40.002285 - 5534: -6.104628,-21.528816 + 4376: -32.026825,-5.997283 + 4377: -24.030098,-6.0480723 + 4378: -24.030098,-6.0480723 + 4391: -49.025608,6.0883503 + 4392: -49.025608,6.0883503 + 4439: -45.0686,3.3973076 + 4440: -45.0686,3.3973076 + 4441: -44.641518,4.001895 + 4442: -44.97485,7.9872103 + 4443: -44.985268,7.9872103 + 4444: -42.99568,8.028906 + 4445: -42.99568,8.028906 + 4446: -42.99568,8.028906 + 4474: 2.7265406,-39.491512 + 4475: 2.7161236,-40.002285 + 4476: 2.7161236,-40.002285 + 4651: -6.104628,-21.528816 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 5664: 4.4682827,29.910908 - 5665: 5.3328667,27.284082 - 5666: 6.3641167,25.470324 - 5667: 4.4786997,19.676277 - 5668: 4.5620327,17.695734 - 5669: 7.5932827,17.810398 - 5670: 7.6349497,15.230145 - 5671: 7.6349497,14.337012 - 5672: 7.5828667,12.455537 + 4769: 4.4682827,29.910908 + 4770: 5.3328667,27.284082 + 4771: 6.3641167,25.470324 + 5075: -25.54837,6.5598097 + 5076: -25.54837,6.497267 + 5077: -25.023369,8.08587 + 5078: -25.073368,8.023326 + 5079: -25.085869,7.9858007 + 5080: -25.11087,8.060853 + 5081: -25.11087,8.048344 + 5082: -25.123367,7.9858007 + 5409: 18.50869,35.39296 + 5410: 19.831608,35.68483 + 5411: 21.00869,35.705677 + 5412: 21.85244,34.86134 + 5413: 22.32119,35.007275 + 5414: 15.14886,33.078854 + 5415: 14.815528,32.839104 + 5416: 14.36761,32.776558 + 5417: 14.985951,30.266766 + 5418: 18.861862,30.235493 + 5419: 17.580612,30.25634 + 5420: 17.497276,29.599636 + 5421: 17.518112,28.234104 + 5422: 17.445194,28.004776 + 5423: 24.923054,30.01659 + 5424: 24.902218,29.078442 + 5425: 24.631386,27.702484 + 5426: 24.027218,27.045778 + 5427: 24.048054,24.05232 + 5428: 24.985554,24.073168 + 5429: 24.964718,22.069265 + 5430: 24.152218,21.985874 + 5431: 24.152218,21.985874 + 5432: 25.006386,19.016037 + 5433: 24.035736,17.010649 + 5434: 27.537533,21.981152 + 5435: 27.006283,21.543348 + 5436: 27.006283,21.543348 + 5579: 60.44457,13.635814 + 5580: 60.44457,13.552423 - node: cleanable: True color: '#FFFFFFFF' id: DirtLight decals: - 2028: 68.96888,-18.487247 - 2029: 68.9793,-18.60191 - 2030: 67.5418,-19.957018 - 2031: 73.020966,-19.571333 - 2032: 74.958466,-22.052223 - 2033: 75.37513,-25.564346 - 2034: 75.40638,-28.430922 - 2035: 70.44805,-29.025085 - 2036: 68.4793,-30.45316 - 2037: 63.597282,-27.59701 - 2038: 59.290546,-30.004932 - 2039: 59.665546,-29.952812 - 2040: 53.763718,-30.238668 - 2041: 52.732468,-29.686201 - 2042: 54.326218,-24.813839 - 2043: 53.68038,-24.938927 - 2044: 52.5033,-26.460817 - 2045: 55.451218,-23.542124 - 2046: 55.451218,-23.562971 - 2047: 55.451218,-23.562971 - 2048: 47.999554,-27.55731 - 2049: 44.72538,-30.340492 - 2050: 44.558712,-30.507275 - 2051: 44.235794,-30.486427 - 2052: 47.14407,-29.037504 - 2053: 46.779484,-29.089624 - 2054: 38.537804,-27.599007 - 2055: 32.1837,-34.926617 - 2056: 31.8712,-34.978737 - 2057: 32.83995,-34.759834 - 2058: 32.83995,-34.77026 - 2059: 27.829533,-32.622936 - 2060: 29.235783,-32.52912 - 2061: 30.4337,-27.515476 - 2062: 30.600365,-28.151335 - 2063: 30.412865,-29.454323 - 2064: 29.40245,-25.003315 - 2065: 29.40245,-25.003315 - 2066: 27.600365,-24.523815 - 2067: 21.53312,-41.477196 - 2068: 21.710201,-41.445927 - 2069: 22.78312,-41.45635 - 2070: 23.074783,-41.445927 - 2071: 24.34562,-41.445927 - 2072: 24.68937,-41.45635 - 2073: 26.324783,-40.757946 - 2074: 72.49788,-30.966576 - 2075: 75.34163,-34.93098 - 2076: 75.393715,-33.930286 - 2077: 75.456215,-39.500744 - 2078: 75.44579,-39.803036 - 2079: 73.518715,-47.434147 - 2080: 74.52913,-46.965073 - 2081: 75.331215,-47.392452 - 2082: 72.43538,-48.525173 - 2083: 67.49922,-48.504322 - 2084: 67.88464,-45.470966 - 2085: 62.590527,-48.525173 - 2086: 62.590527,-48.525173 - 2087: 61.44469,-48.535595 - 2088: 61.44469,-48.535595 - 2089: 56.72178,-45.435387 - 2090: 57.36761,-44.434692 - 2091: 57.732193,-41.828716 - 2092: 57.950943,-40.650814 - 2093: 57.294693,-41.432606 - 2094: 52.908268,-45.536163 - 2095: 45.600636,-45.588284 - 2096: 45.475636,-48.298496 - 2097: 45.265495,-48.43401 - 2098: 43.58841,-48.49655 - 2099: 45.390495,-48.506977 - 2100: 35.582027,-45.439796 - 2101: 36.061195,-45.648273 - 2102: 34.967445,-45.42937 - 2103: 34.477863,-45.55446 - 2104: 31.519527,-45.564884 - 2105: 31.467445,-48.431458 - 2106: 8.417126,-48.471527 - 2107: 14.448377,-46.480564 - 2108: 15.115043,-46.459713 - 2109: 14.458793,-46.52226 - 2110: -1.3214302,-45.27139 - 2111: -0.9880967,-44.65638 - 2112: 3.0014868,-52.46908 - 2113: 6.345237,-50.43642 - 2114: 6.3035707,-50.697018 - 2115: 6.313987,-51.687286 - 2116: 6.3035707,-52.41696 - 2117: -1.8647547,-54.464172 - 2118: -5.995307,-55.506565 - 2119: -10.231806,-52.937588 - 2120: 1.4807768,-25.496803 - 2121: 6.9994717,-22.724043 - 2122: 7.9161386,-24.318901 - 2123: 8.426555,-27.99854 - 2124: 8.426555,-28.279985 - 2125: 8.426555,-29.301529 - 2126: 6.2807217,-27.43565 - 2127: 5.8223877,-27.112509 - 2128: 5.9578047,-21.431479 - 2129: 5.9786386,-21.452328 - 2130: 4.3640547,-21.494022 - 2131: 4.3640547,-21.587837 - 2132: -18.48595,-38.779957 - 2133: -32.632523,-41.669697 - 2134: -32.632523,-41.669697 - 2135: -33.382523,-42.00326 - 2136: -33.382523,-42.31598 - 2137: -32.61169,-42.399372 - 2138: -34.01794,-40.710697 - 2139: -31.038773,-40.9296 - 2140: -30.070023,-41.002567 - 2141: -26.83179,-44.150585 - 2142: -26.83179,-44.150585 - 2143: -26.998455,-44.338215 - 2144: -23.717205,-43.81702 - 2145: -23.498455,-43.952534 - 2146: -25.258873,-44.067196 - 2147: -22.48804,-39.324318 - 2148: -22.48804,-39.032448 - 2149: -25.45679,-39.397285 - 2150: -25.154705,-39.48068 - 2151: -23.915123,-39.501522 - 2152: -24.26929,-39.501522 - 2153: -24.779705,-40.189503 - 2154: -27.01929,-39.4911 - 2155: -27.321373,-39.511948 - 2156: -27.790123,-39.35559 - 2157: -27.790123,-38.625916 - 2158: -27.165123,-42.013687 - 2159: -27.165123,-41.78436 - 2160: -27.217205,-41.628002 - 2161: -32.639732,-38.389755 - 2162: -32.452232,-36.242428 - 2163: -33.566814,-35.65869 - 2164: -34.202232,-35.512756 - 2165: -34.254314,-35.81505 - 2166: -35.160564,-38.473145 - 2167: -35.4939,-38.108307 - 2168: -35.483482,-37.618385 - 2169: -35.96265,-35.5753 - 2170: -36.170982,-35.523182 - 2171: -36.129314,-35.55445 - 2172: -35.566814,-35.54403 - 2173: -35.295982,-35.55445 - 2174: -37.3064,-36.88871 - 2175: -37.483482,-36.93041 - 2176: -37.691814,-37.389057 - 2177: -38.46265,-38.389755 - 2178: -38.46265,-38.1917 - 2179: -30.683025,-25.958038 - 2180: -29.776775,-25.926767 - 2181: -29.66219,-25.958038 - 2182: -29.901775,-25.541082 - 2183: -31.037193,-25.572353 - 2184: -32.308025,-26.04143 - 2185: -31.380943,-27.365265 - 2186: -31.120525,-27.354841 - 2187: -30.985107,-23.438007 - 2188: -32.151775,-23.458855 - 2189: -32.078857,-19.538427 - 2190: -31.516357,-21.425156 - 2191: -31.016357,-21.435577 - 2192: -30.576984,-16.910597 - 2193: -31.943726,-14.550095 - 2194: -32.15206,-14.414583 - 2195: -32.016644,-13.4868555 - 2196: -29.5322,-11.985647 - 2197: -23.479229,-6.549697 - 2198: -23.541729,-7.467 - 2199: -23.406311,-7.112588 - 2200: -19.656311,-4.7255135 - 2201: -21.333397,-5.059078 - 2202: -20.239647,-2.651156 - 2203: -19.656311,-2.6720037 - 2204: -19.145897,-2.6615796 - 2205: -17.291729,-3.8916008 - 2206: -17.375061,-4.277285 - 2207: -16.927147,-7.4461527 - 2208: -19.322979,-6.7060556 - 2209: -17.562561,-5.455187 - 2210: -31.89732,3.6574936 - 2211: -32.095234,3.6574936 - 2212: -30.08482,2.7193425 - 2213: -29.970234,2.68807 - 2214: -30.043152,-1.6065793 - 2215: -30.043152,-2.7115133 - 2216: -31.970234,-2.3987958 - 2217: -26.047005,2.4483206 - 2218: -25.859505,2.4795926 - 2219: -23.849087,2.4900162 - 2220: -22.838673,2.4795926 - 2221: -22.609505,2.4900162 - 2222: -27.890755,2.4795926 - 2223: -29.359505,-0.43910193 - 2224: -29.078255,-0.47037363 - 2225: -30.682423,0.5198977 - 2226: -21.259674,-6.996375 - 2227: -21.186756,-7.2882442 - 2228: -21.040924,-7.4237547 - 2229: -12.025789,3.2194417 - 2230: -12.536205,3.386224 - 2231: -11.536205,2.1562026 - 2232: -11.536205,-0.47062206 - 2233: -13.484123,-3.7645764 - 2234: -6.598706,-8.582137 - 2235: -5.3903723,-3.7767167 - 2236: -14.202872,-10.448606 - 2237: -2.6940975,-11.574832 - 2238: -3.298264,-11.595679 - 2239: -4.4753475,-10.490746 - 2240: -2.454514,-10.511593 - 2241: -1.454514,-9.458778 - 2242: 0.5969219,-11.845853 - 2243: 0.49275494,-12.387897 - 2244: 0.46150494,-13.35732 - 2245: 3.478551,-8.484807 - 2246: 7.0299044,-8.073131 - 2247: 7.0819883,-8.761107 - 2248: 2.6165943,-12.527547 - 2249: 2.4707613,-12.746449 - 2250: 2.5540943,-16.394815 - 2251: 2.5436773,-16.040403 - 2252: 2.5332613,-15.623446 - 2253: 2.1999273,-15.873621 - 2254: 1.8145113,-15.758958 - 2255: 1.7832613,-16.123795 - 2256: 3.3561773,-18.7698 - 2257: 3.4811773,-19.416082 - 2258: 4.6270113,-18.613441 - 2259: 4.6061773,-18.488354 - 2260: 4.4499273,-17.581474 - 2261: 4.0436773,-17.498083 - 2262: 1.9395113,-18.550898 - 2263: 1.6165943,-18.571747 - 2264: 1.2103443,-18.686409 - 2265: 4.601055,-13.653295 - 2266: 5.017722,-13.55948 - 2267: 5.913555,-13.903468 - 2268: 5.882305,-14.143218 - 2269: 5.840638,-14.445512 - 2270: 3.5698051,-11.349611 - 2271: 3.5073051,-11.422579 - 2272: 3.8406382,-11.495545 - 2273: 2.5073051,-11.495545 - 2274: 9.247281,-10.978955 - 2275: 9.580614,-10.926836 - 2276: 17.072475,-7.5941076 - 2277: 14.4578905,-8.011065 - 2278: 15.67664,-11.4196825 - 2279: 16.124557,-11.492649 - 2280: 22.971046,-11.190355 - 2281: 22.82521,-11.513497 - 2282: 23.002296,-11.461377 - 2283: 23.408546,-11.388411 - 2284: 26.581997,-4.5476413 - 2285: 27.175747,-4.5476413 - 2286: 26.956997,-4.776967 - 2287: 28.071583,-4.5267935 - 2288: 28.248665,-4.516369 - 2289: 28.394497,-5.3711295 - 2290: 27.967415,-5.5691833 - 2291: 30.602833,-5.673423 - 2292: 31.019497,-4.8186626 - 2293: 31.446583,-4.558065 - 2294: 31.456997,-4.558065 - 2295: 33.852833,-3.432283 - 2296: 33.602833,-3.4114356 - 2297: 33.269497,-2.994479 - 2298: 33.51746,-0.37743497 - 2299: 33.413296,0.14375997 - 2300: 34.444546,0.4356296 - 2301: 34.444546,-0.3670113 - 2302: 34.600796,-0.49209833 - 2303: 34.902878,-0.79439163 - 2304: 35.246628,-1.3885541 - 2305: 36.934128,0.779618 - 2306: 37.45496,1.0089443 - 2307: 36.757046,0.9776728 - 2308: 37.782017,0.46690106 - 2309: 38.844517,0.42520547 - 2310: 39.11535,0.8630092 - 2311: 39.11535,0.85258555 - 2312: 40.41743,-0.51294565 - 2313: 41.05285,-0.62760925 - 2314: 38.907017,-1.4406738 - 2315: 37.44868,-0.05429387 - 2316: 37.42785,-0.07514167 - 2317: 27.477322,1.5362422 - 2318: 27.36274,0.9629276 - 2319: 29.64399,1.3381884 - 2320: 30.716904,0.816993 - 2321: 30.685654,0.67105794 - 2322: 31.30024,0.6606343 - 2323: 31.42524,1.4320037 - 2324: 30.946072,1.4111559 - 2325: 31.852322,1.0046237 - 2326: 31.61274,0.921232 - 2327: 32.16482,1.3277647 - 2328: 30.92524,2.5654871 - 2329: 31.64399,3.3368556 - 2330: 31.414822,3.3577034 - 2331: 29.321072,3.2743123 - 2332: 29.414822,3.0971062 - 2333: 26.623154,3.368128 - 2334: 26.560654,3.3785517 - 2335: 33.435654,3.3889754 - 2336: 33.39399,-4.4124975 - 2337: 32.72732,-4.4854646 - 2338: 32.28982,-4.5063124 - 2339: 32.22732,-4.5063124 - 2340: 31.946072,-3.43265 - 2341: 27.227322,-2.4030805 - 2342: 26.935654,-3.4037755 - 2343: 27.98774,-3.4871666 - 2344: 27.935654,-2.5281677 - 2345: 28.529404,-2.3301136 - 2346: 29.466904,-2.4552002 - 2347: 29.529404,-2.9685516 - 2348: 34.46227,-9.558907 - 2349: 35.191433,-9.475515 - 2350: 35.566433,-11.403938 - 2351: 34.39977,-11.497753 - 2352: 34.972683,-10.945286 - 2353: 35.01435,-10.455362 - 2354: 35.410183,-10.476211 - 2355: 36.402534,-12.446329 - 2356: 40.488354,-11.508177 - 2357: 42.547966,-11.768775 - 2358: 42.527134,-12.008525 - 2359: 42.53755,-11.8417425 - 2360: 43.527134,-11.403938 - 2361: 43.860466,-9.517212 - 2362: 45.28755,-9.475515 - 2363: 45.589634,-9.475515 - 2364: 47.433384,-9.444244 - 2365: 48.579216,-9.475515 - 2366: 48.704216,-9.475515 - 2367: 48.683384,-9.527636 - 2368: 49.72505,-9.517212 - 2369: 49.922966,-9.496364 - 2370: 50.5688,-9.485939 - 2371: 50.28755,-9.527636 - 2372: 50.110466,-9.517212 - 2373: 49.766716,-9.548483 - 2374: 51.055984,-9.765561 - 2375: 51.0039,-9.98446 - 2376: 50.951817,-10.65159 - 2377: 50.983067,-10.985155 - 2378: 50.983067,-11.349992 - 2379: 50.451817,-11.548046 - 2380: 51.59765,-11.464656 - 2381: 52.087234,-11.537623 - 2382: 52.233067,-11.485503 - 2383: 52.514317,-11.006003 - 2384: 52.420567,-9.327754 - 2385: 50.66015,-5.450061 - 2386: 50.5664,-5.5543 - 2387: 50.545567,-5.648115 - 2388: 50.514317,-6.336093 - 2389: 50.514317,-6.6696577 - 2390: 50.483067,-6.8781357 - 2391: 50.462234,-7.138734 - 2392: 50.483067,-7.8267117 - 2393: 50.514317,-8.108157 - 2394: 50.524734,-8.264515 - 2395: 50.53515,-8.556385 - 2396: 50.47265,-9.07758 - 2397: 50.524734,-8.681472 - 2398: 51.868484,-5.4917564 - 2399: 52.170567,-5.6689625 - 2400: 52.170567,-6.898984 - 2401: 52.1289,-7.013647 - 2402: 52.295567,-7.07619 - 2403: 52.399734,-7.55569 - 2404: 52.451817,-7.7120485 - 2405: 52.451817,-8.400026 - 2406: 52.483067,-8.493841 - 2407: 52.483067,-8.535538 - 2408: 52.108067,-8.962917 - 2409: 52.493484,-9.473688 - 2410: 52.493484,-9.838526 - 2411: 52.493484,-10.11997 - 2412: 52.59765,-10.839221 - 2413: 52.389317,-11.495927 - 2414: 51.545567,-12.4901495 - 2415: 51.545567,-12.938377 - 2416: 51.53515,-12.907105 - 2417: 51.5039,-13.58466 - 2418: 51.514317,-13.63678 - 2419: 51.555984,-14.126703 - 2420: 51.5664,-14.428996 - 2421: 51.139317,-13.553388 - 2422: 50.670567,-13.480421 - 2423: 50.53515,-12.91753 - 2424: 50.53515,-13.886953 - 2425: 50.483067,-15.075278 - 2426: 50.483067,-15.711137 - 2427: 50.524734,-15.627746 - 2428: 50.608067,-16.128094 - 2429: 50.59765,-16.618015 - 2430: 51.430984,-16.555473 - 2431: 51.524734,-18.44328 - 2432: 51.47265,-20.366905 - 2433: 51.493484,-20.502415 - 2434: 51.837234,-20.564959 - 2435: 52.368484,-20.51284 - 2436: 52.087234,-22.410568 - 2437: 52.576817,-22.441841 - 2438: 52.576817,-22.108276 - 2439: 51.524734,-22.514809 - 2440: 51.014317,-23.985928 - 2441: 51.014317,-23.985928 - 2442: 50.5664,-25.424427 - 2443: 50.993484,-25.518242 - 2444: 51.087234,-25.935198 - 2445: 51.295567,-26.427126 - 2446: 51.483067,-26.583485 - 2447: 51.483067,-27.334005 - 2448: 51.462234,-27.39655 - 2449: 51.420567,-27.615452 - 2450: 50.576817,-27.47994 - 2451: 50.5664,-27.44867 - 2452: 50.483067,-23.37484 - 2453: 50.233067,-22.301178 - 2454: 49.6914,-22.311602 - 2455: 49.712234,-21.707014 - 2456: 49.951817,-20.99819 - 2457: 49.680984,-20.768864 - 2458: 49.6289,-20.633352 - 2459: 50.41015,-19.512796 - 2460: 50.41015,-19.512796 - 2461: 50.045567,-19.38771 - 2462: 48.493484,-19.502373 - 2463: 47.774734,-19.533646 - 2464: 47.545567,-19.450254 - 2465: 47.545567,-19.450254 - 2466: 47.53515,-18.418287 - 2467: 48.389317,-18.449558 - 2468: 48.47265,-18.459982 - 2469: 48.47265,-18.155146 - 2470: 49.430984,-16.618757 - 2471: 49.4414,-16.535366 - 2472: 49.451817,-16.483246 - 2473: 48.5039,-15.962051 - 2474: 48.514317,-14.450585 - 2475: 48.483067,-14.638215 - 2476: 48.47265,-15.148987 - 2477: 48.483067,-15.284497 - 2478: 47.451817,-14.440162 - 2479: 47.3789,-14.700759 - 2480: 47.41015,-15.065596 - 2481: 47.430984,-15.190682 - 2482: 47.47265,-15.524247 - 2483: 47.514317,-12.568465 - 2484: 47.514317,-12.568465 - 2485: 47.514317,-12.568465 - 2486: 47.514317,-12.568465 - 2487: 47.97265,-12.505921 - 2488: 48.47265,-12.47465 - 2489: 49.0039,-12.516346 - 2490: 49.295567,-12.516346 - 2491: 48.930984,-12.495498 - 2492: 49.28515,-12.537193 - 2493: 49.34765,-12.6205845 - 2494: 49.41015,-12.870759 - 2495: 49.420567,-13.120933 - 2496: 49.462234,-13.287715 - 2497: 49.5039,-13.537889 - 2498: 49.5039,-13.819334 - 2499: 49.483067,-14.017388 - 2500: 49.47265,-14.47604 - 2501: 49.5664,-17.540283 - 2502: 49.5664,-17.540283 - 2503: 49.899734,-17.56113 - 2504: 50.233067,-17.52986 - 2505: 49.962234,-17.519434 - 2506: 50.045567,-17.550707 - 2507: 50.389317,-17.540283 - 2508: 43.478157,-20.528257 - 2509: 43.90524,-20.465714 - 2510: 44.071907,-20.47614 - 2511: 44.040657,-22.383713 - 2512: 44.040657,-22.529648 - 2513: 44.446907,-22.529648 - 2514: 45.551075,-23.55119 - 2515: 44.540657,-24.48206 - 2516: 44.540657,-24.48206 - 2517: 45.488575,-25.003256 - 2518: 45.68649,-24.951136 - 2519: 45.696907,-24.96156 - 2520: 46.582325,-26.483316 - 2521: 46.84274,-26.483316 - 2522: 47.09274,-26.483316 - 2523: 47.009407,-26.483316 - 2524: 48.509407,-26.514587 - 2525: 48.46774,-23.439535 - 2526: 48.40524,-23.575045 - 2527: 47.738575,-23.575045 - 2528: 47.509407,-24.44023 - 2529: 42.39001,-22.419138 - 2530: 42.49418,-22.481682 - 2531: 37.467724,-23.482378 - 2532: 37.394806,-24.149508 - 2533: 37.519806,-24.31629 - 2534: 38.040638,-25.369104 - 2535: 38.051056,-25.369104 - 2536: 38.457306,-25.442072 - 2537: 38.436474,-25.400375 - 2538: 39.332306,-24.58731 - 2539: 39.457306,-24.50392 - 2540: 36.467724,-23.513649 - 2541: 36.467724,-23.513649 - 2542: 36.467724,-23.513649 - 2543: 36.155224,-24.754093 - 2544: 35.457306,-24.483072 - 2545: 34.686474,-23.461529 - 2546: 34.665638,-23.503225 - 2547: 34.530224,-23.64916 - 2548: 34.582306,-26.401072 - 2549: 37.019806,-22.33527 - 2550: 36.926056,-22.543747 - 2551: 35.436474,-22.47078 - 2552: 35.436474,-22.47078 - 2553: 34.426056,-20.542356 - 2554: 34.426056,-20.542356 - 2555: 33.946888,-20.55278 - 2556: 40.46879,-18.693834 - 2557: 40.666702,-18.485357 - 2558: 40.86462,-18.474934 - 2559: 41.40629,-17.47483 - 2560: 41.40629,-17.47483 - 2561: 41.00004,-17.443558 - 2562: 40.59379,-17.506102 - 2563: 42.50004,-18.472912 - 2564: 42.50004,-18.472912 - 2565: 42.50004,-18.472912 - 2566: 42.53129,-18.931564 - 2567: 42.40629,-19.046227 - 2568: 42.447952,-15.389344 - 2569: 42.45837,-15.493583 - 2570: 42.45837,-15.587398 - 2571: 42.46879,-16.025202 - 2572: 42.416702,-13.513041 - 2573: 40.53129,-14.399073 - 2574: 33.53216,-5.498646 - 2575: 33.53216,-5.498646 - 2576: 33.46966,-5.8947544 - 2577: 33.46966,-5.5716133 - 2578: 33.37591,-5.498646 - 2579: 30.48008,-17.625967 - 2580: 27.469662,-17.39664 - 2581: 27.469662,-17.39664 - 2582: 31.768013,-23.235754 - 2583: 32.351345,-23.256601 - 2584: 30.913845,-22.870916 - 2585: 35.778427,-30.122984 - 2586: 36.070095,-30.175102 - 2587: 37.028427,-29.76857 - 2588: 33.184677,-34.242767 - 2589: 31.445095,-32.43943 - 2590: 32.215927,-28.225906 - 2591: 32.736763,-26.119097 - 2592: 30.038845,-22.976084 - 2593: 27.713322,-19.981579 - 2594: 30.202908,-19.220634 - 2595: 31.984158,-18.272093 - 2596: 24.86081,-14.72366 - 2597: 24.86081,-9.83413 - 2598: 20.760582,-10.43703 - 2599: 23.750168,-7.257738 - 2600: 31.196217,-6.4581 - 2601: 32.539967,-7.4170995 - 2602: 33.144135,-9.491458 - 2603: 21.509678,-5.50616 - 2604: 13.973496,-43.408886 - 2605: 8.965953,-43.502705 - 2606: 8.965953,-43.502705 - 2607: 8.97637,-41.511738 - 2608: 9.049287,-41.428345 - 2609: 19.417751,-10.516342 - 2610: 23.466835,2.5198576 - 2611: 24.425167,-0.45095563 - 2612: 24.425167,-0.45095563 - 2613: 23.466835,-2.5148885 - 2614: 22.643917,-3.3800733 - 2615: 21.581417,-4.44503 - 2616: 21.612667,-4.4763017 - 2617: 21.998081,2.6088116 - 2618: 22.0085,2.535844 - 2619: 21.998081,1.1390407 - 2620: 24.831417,-1.5122066 - 2621: 24.831417,-1.4913585 - 2622: 26.498081,5.0041037 - 2623: 26.28975,4.9832554 - 2624: 26.237667,4.555875 - 2625: 26.393917,4.545451 - 2626: 27.143917,4.6288424 - 2627: 27.716831,4.555875 - 2628: 28.425167,5.4210596 - 2629: 28.560581,6.5259933 - 2630: 28.5085,6.4842978 - 2631: 18.56311,5.5357227 - 2632: 18.53186,4.4829082 - 2633: 19.146442,4.5350275 - 2634: 19.427692,4.545451 - 2635: 18.802692,4.5975714 - 2636: 18.40686,7.568384 - 2637: 22.490192,7.4623623 - 2638: 22.490192,7.441515 - 2639: 22.53186,7.3685474 - 2640: 21.573528,8.556872 - 2641: 16.450783,8.618908 - 2642: 16.513283,9.50494 - 2643: 16.513283,9.50494 - 2644: 16.565369,9.067136 - 2645: 16.534119,10.526483 - 2646: 16.482033,11.349971 - 2647: 16.482033,11.45421 - 2648: 17.419537,10.547331 - 2649: 17.440369,9.6404505 - 2650: 17.044537,9.546636 - 2651: 16.7737,9.536212 - 2652: 16.482033,10.495212 - 2653: 16.909119,10.495212 - 2654: 17.11745,10.495212 - 2655: 17.419537,8.514668 - 2656: 18.6487,9.963592 - 2657: 18.700787,10.255462 - 2658: 19.315369,10.234613 - 2659: 15.315618,9.494516 - 2660: 14.993169,9.515364 - 2661: 14.670253,9.494516 - 2662: 14.066085,9.473668 - 2663: 13.326503,9.494516 - 2664: 10.018869,9.536212 - 2665: 7.4577208,9.484092 - 2666: 6.9643927,9.494516 - 2667: 8.703977,9.932321 - 2668: 7.9748096,10.026135 - 2669: 13.547727,10.953863 - 2670: 12.756059,10.891319 - 2671: 6.5373096,11.55845 - 2672: 6.5373096,11.45421 - 2673: 6.4956427,11.089374 - 2674: 6.4793053,8.54594 - 2675: 5.5401106,8.566789 - 2676: 4.393257,9.567483 - 2677: 4.143257,9.557059 - 2678: 3.7057571,9.536212 - 2679: 2.6849232,10.5577545 - 2680: 2.5807562,11.422938 - 2681: 2.4974232,8.577212 - 2682: 2.4974232,8.556365 - 2683: 1.4979553,9.484092 - 2684: 1.0604553,9.442397 - 2685: 0.7062888,9.463244 - 2686: 0.20628881,9.463244 - 2687: -0.22079468,9.494516 - 2688: -0.4187112,9.50494 - 2689: -0.8666277,9.546636 - 2690: -1.6166277,9.557059 - 2691: 0.8312888,10.380548 - 2692: 1.3937888,10.484787 - 2693: 0.6125388,10.453515 - 2694: -0.31454468,10.46394 - 2695: -1.2624612,10.516059 - 2696: 0.4250388,11.381244 - 2697: -0.11662769,11.433363 - 2698: -1.4395447,9.911472 - 2699: -1.4916277,8.608484 - 2700: -0.43954468,8.608484 - 2701: 0.5500388,8.472974 - 2702: 19.499157,12.425813 - 2703: 19.519989,11.716988 - 2704: 20.072071,11.550204 - 2705: 20.655407,11.518932 - 2706: 16.322071,15.484221 - 2707: 13.384572,18.455036 - 2708: 13.384572,18.163166 - 2709: 14.457488,18.746904 - 2710: 14.457488,19.393187 - 2711: 12.738738,16.662123 - 2712: 13.488738,16.505764 - 2713: 13.499154,16.505764 - 2714: 13.769988,16.474493 - 2715: 14.676238,14.577342 - 2716: 14.655404,15.129807 - 2717: 14.488738,15.452949 - 2718: 14.592904,15.411254 - 2719: 14.603322,15.40083 - 2720: 14.530404,13.430711 - 2721: 14.509572,12.784429 - 2722: 14.655404,12.607223 - 2723: 14.738738,12.555102 - 2724: 14.717904,12.49256 - 2725: 15.415822,12.49256 - 2726: 15.686653,12.4300165 - 2727: 16.155403,12.450864 - 2728: 16.999153,12.49256 - 2729: 17.238739,12.544679 - 2730: 17.322071,12.586375 - 2731: 17.405403,12.648917 - 2732: 17.415821,13.243081 - 2733: 17.342903,13.441136 - 2734: 16.853321,13.34732 - 2735: 16.019989,13.34732 - 2736: 15.894989,13.34732 - 2737: 15.905403,14.004025 - 2738: 15.801239,14.045722 - 2739: 15.624153,13.805972 - 2740: 15.280404,13.983178 - 2741: 15.332488,14.86921 - 2742: 14.905404,13.357743 - 2743: 14.915822,13.316049 - 2744: 19.966679,13.316049 - 2745: 20.070843,13.190961 - 2746: 19.945843,12.73231 - 2747: 20.11251,16.349405 - 2748: 19.820843,17.600275 - 2749: 19.95626,17.537731 - 2750: 20.164593,17.548155 - 2751: 20.86251,18.350796 - 2752: 20.48751,18.350796 - 2753: 20.497929,18.36122 - 2754: 21.320847,17.621122 - 2755: 23.540947,16.578732 - 2756: 23.509697,17.141623 - 2757: 24.540947,17.485613 - 2758: 25.186779,15.286166 - 2759: 25.384697,14.973449 - 2760: 25.415947,14.733699 - 2761: 27.374279,13.816396 - 2762: 26.832611,13.190961 - 2763: 26.572197,13.253505 - 2764: 26.051365,12.419593 - 2765: 26.551361,12.38832 - 2766: 26.113861,11.689919 - 2767: 25.957615,11.42932 - 2768: 25.978447,10.97067 - 2769: 29.335304,12.475633 - 2770: 29.418636,11.485362 - 2771: 29.564472,10.682721 - 2772: 29.564472,10.2866125 - 2773: 30.335304,14.258882 - 2774: 29.699886,17.688349 - 2775: 29.637386,18.25124 - 2776: 31.626972,17.58411 - 2777: 31.199886,17.490294 - 2778: 31.449886,17.47987 - 2779: 31.710304,16.771046 - 2780: 31.543636,16.374937 - 2781: 28.606136,17.636229 - 2782: 29.095722,17.604958 - 2783: 29.043636,16.543253 - 2784: 29.929054,15.563406 - 2785: 24.963287,19.575718 - 2786: 23.682034,21.391178 - 2787: 23.744534,20.849134 - 2788: 22.73412,23.536888 - 2789: 23.379951,23.422226 - 2790: 23.525784,22.452803 - 2791: 20.479828,27.156353 - 2792: 20.417328,26.53092 - 2793: 20.37566,25.801247 - 2794: 19.511078,25.884638 - 2795: 19.511078,26.624735 - 2796: 19.59441,27.250168 - 2797: 20.604828,24.10215 - 2798: 20.37566,24.039606 - 2799: 20.104828,24.039606 - 2800: 19.542328,24.008333 - 2801: 22.990246,30.314796 - 2802: 22.865246,29.887417 - 2803: 24.125664,30.148014 - 2804: 24.104828,29.751907 - 2805: 24.281914,29.38707 - 2806: 20.771496,27.635853 - 2807: 24.938164,26.520494 - 2808: 22.719414,27.291864 - 2809: 22.781914,27.072962 - 2810: 28.913006,28.459343 - 2811: 28.965088,31.763721 - 2812: 28.965088,31.763721 - 2813: 28.163006,33.605797 - 2814: 27.850506,33.58495 - 2815: 27.225506,31.500168 - 2816: 26.590088,31.531437 - 2817: 26.465088,31.489742 - 2818: 26.600506,31.18745 - 2819: 26.579674,30.676678 - 2820: 26.569256,30.562016 - 2821: 29.569256,29.894886 - 2822: 29.517174,29.905308 - 2823: 29.475506,29.613438 - 2824: 31.443161,26.045942 - 2825: 32.057743,27.53656 - 2826: 32.797325,27.567833 - 2827: 33.026493,27.567833 - 2828: 35.922325,26.775616 - 2829: 37.28691,27.692919 - 2830: 36.66191,27.494865 - 2831: 36.578575,28.36005 - 2832: 36.422325,28.349625 - 2833: 38.16191,28.526833 - 2834: 38.328575,28.412167 - 2835: 38.391075,28.20369 - 2836: 38.328575,25.712378 - 2837: 38.22441,25.660257 - 2838: 37.984825,23.48166 - 2839: 38.026493,24.451084 - 2840: 36.34941,24.857616 - 2841: 36.06816,24.586596 - 2842: 35.963993,24.471931 - 2843: 35.91191,24.471931 - 2844: 34.682743,23.66929 - 2845: 34.34941,24.888887 - 2846: 34.34941,24.253029 - 2847: 34.34941,24.0654 - 2848: 32.63066,23.710987 - 2849: 31.474411,24.013279 - 2850: 31.578575,24.795073 - 2851: 31.505661,25.274572 - 2852: 32.69316,25.15991 - 2853: 33.547325,25.545595 - 2854: 34.026493,25.451778 - 2855: 31.943161,26.087637 - 2856: 23.60672,35.584606 - 2857: 23.440052,34.854935 - 2858: 23.45047,34.2295 - 2859: 24.002552,32.55125 - 2860: 25.07547,36.79359 - 2861: 25.148388,36.07434 - 2862: 25.148388,35.64696 - 2863: 25.523388,36.407906 - 2864: 16.423882,28.976421 - 2865: 16.444714,28.653278 - 2866: 16.465546,28.19463 - 2867: 16.028046,29.028542 - 2868: 18.580132,29.028542 - 2869: 18.944714,28.590736 - 2870: 19.007214,28.100815 - 2871: 15.600964,23.98337 - 2872: 14.517631,23.962523 - 2873: 17.517632,24.045914 - 2874: 13.028047,23.618534 - 2875: 12.757213,23.483023 - 2876: 12.028047,23.55599 - 2877: 11.528047,23.55599 - 2878: 11.278047,24.337784 - 2879: 10.705129,24.389902 - 2880: 10.257213,24.358631 - 2881: 9.809297,24.421175 - 2882: 9.36138,25.369751 - 2883: 9.340547,26.016033 - 2884: 8.996797,26.401716 - 2885: 8.590547,26.141119 - 2886: 8.694713,25.28636 - 2887: 8.590547,28.361412 - 2888: 8.475963,27.673433 - 2889: 8.538463,26.870792 - 2890: 8.67388,25.922216 - 2891: 8.944713,26.724857 - 2892: 13.882213,27.558771 - 2893: 14.371797,27.579618 - 2894: 13.278047,27.537922 - 2895: 13.007213,27.537922 - 2896: 12.444713,28.601162 - 2897: 12.246797,28.611584 - 2898: 11.059297,28.784977 - 2899: 11.017629,28.628616 - 2900: 11.319713,28.388866 - 2901: 9.01763,29.608463 - 2902: 9.028047,29.399986 - 2903: 9.01763,30.431953 - 2904: 9.01763,30.755093 - 2905: 12.955131,31.828754 - 2906: 12.653047,32.110203 - 2907: 12.923881,32.235287 - 2908: 13.132213,32.891994 - 2909: 12.975963,35.07059 - 2910: 12.757213,34.997623 - 2911: 13.163463,35.028896 - 2912: 13.788463,34.96635 - 2913: 13.923881,32.56885 - 2914: 14.017631,30.515343 - 2915: 13.882213,30.515343 - 2916: 13.465547,30.494495 - 2917: 10.462693,33.439457 - 2918: 10.566859,32.866142 - 2919: 10.566859,32.59512 - 2920: 11.473109,33.647938 - 2921: 11.421027,34.586086 - 2922: 10.504359,34.53397 - 2923: 9.525193,34.48185 - 2924: 9.264776,33.543697 - 2925: 8.452276,33.668785 - 2926: 6.8481092,33.65836 - 2927: 4.806443,33.637512 - 2928: 4.233526,33.637512 - 2929: 3.5251932,34.398457 - 2930: 4.587693,34.283794 - 2931: 5.5981092,34.2421 - 2932: 7.368943,34.231674 - 2933: 8.014776,34.2421 - 2934: 8.723109,34.2004 - 2935: 9.191859,34.30464 - 2936: 8.504359,34.335915 - 2937: 2.4961157,32.532578 - 2938: 3.2773657,33.012077 - 2939: 2.6731997,32.93911 - 2940: 3.7148657,32.126045 - 2941: 2.5794497,32.021805 - 2942: 2.0898657,32.000957 - 2943: 2.5065327,31.563152 - 2944: 1.6940327,33.627087 - 2945: 1.2044492,33.647938 - 2946: 0.6523657,33.700054 - 2947: 0.32944918,33.512424 - 2948: 0.32944918,33.502003 - 2949: 0.40236568,32.75148 - 2950: 0.43361568,32.56385 - 2951: -0.48305082,33.585392 - 2952: 0.5794492,34.42973 - 2953: 0.5481992,34.554813 - 2954: 1.5794492,34.44015 - 2955: 2.2773657,35.45127 - 2956: 1.7565327,35.440845 - 2957: 0.5898657,39.277607 - 2958: 0.6731992,38.25606 - 2959: 0.8606992,37.588932 - 2960: 0.8294492,36.94265 - 2961: 0.7669492,36.014923 - 2962: 0.5273657,38.474964 - 2963: -0.41013432,38.662594 - 2964: -0.6913843,38.652172 - 2965: -2.7196784,38.527084 - 2966: -3.428012,38.422844 - 2967: -2.9800951,36.129585 - 2968: -4.490512,35.431183 - 2969: -4.4800954,35.139317 - 2970: -4.4800954,34.659813 - 2971: -3.521762,35.358215 - 2972: -4.3238454,34.46176 - 2973: -3.490512,34.420063 - 2974: -3.4488451,34.13862 - 2975: -3.5009284,33.87802 - 2976: -3.5009284,33.732086 - 2977: -3.5113451,33.544456 - 2978: -3.396762,34.10735 - 2979: -3.2196784,34.48261 - 2980: -2.740512,34.503456 - 2981: 0.4782381,34.37837 - 2982: 0.4365716,34.37837 - 2983: -3.4696784,32.59526 - 2984: -3.4175951,33.41875 - 2985: -4.6884284,33.512566 - 2986: -5.8134284,33.54384 - 2987: -6.3134284,33.512566 - 2988: -7.521762,33.616806 - 2989: -8.313429,33.585533 - 2990: -8.105095,34.46114 - 2991: -7.8446784,34.440292 - 2992: -7.4175954,34.388172 - 2993: -6.6363454,34.304783 - 2994: -6.0634284,34.336056 - 2995: -5.396762,34.27351 - 2996: -5.5315547,34.379097 - 2997: -5.541971,34.35825 - 2998: -5.5315547,33.493065 - 2999: -5.5315547,33.420097 - 3000: -5.677388,33.440945 - 3001: -5.948221,33.50349 - 3002: -5.916971,33.472218 - 3003: -6.291971,33.430523 - 3004: -6.166971,34.347824 - 3005: -6.187805,34.347824 - 3006: -6.573221,34.337402 - 3007: -6.927388,34.30613 - 3008: -14.342768,34.596508 - 3009: -14.415685,34.794563 - 3010: -14.134435,34.450573 - 3011: -14.124018,34.450573 - 3012: -13.696934,34.481846 - 3013: -13.790684,34.38803 - 3014: -13.978185,34.315063 - 3015: -13.582351,34.71117 - 3016: -13.686518,34.4193 - 3017: -14.103185,34.32549 - 3018: -14.457351,34.4193 - 3019: -14.467768,35.138554 - 3020: -14.467768,35.10728 - 3021: -14.457351,34.930073 - 3022: -14.457351,34.80499 - 3023: -14.561518,35.19067 - 3024: -14.540685,34.971767 - 3025: -14.530268,34.75287 - 3026: -14.509435,34.57566 - 3027: -13.488601,35.148975 - 3028: -13.488601,35.05516 - 3029: -11.644851,33.502 - 3030: -11.467768,33.53327 - 3031: -11.582351,34.33591 - 3032: -11.582351,34.262943 - 3033: -11.551101,34.11701 - 3034: -11.478184,33.647934 - 3035: -11.488601,33.2414 - 3036: -11.603184,34.367184 - 3037: -12.519851,33.522846 - 3038: -12.644851,32.928684 - 3039: -14.259435,32.188587 - 3040: -13.478184,32.459606 - 3041: -13.446934,32.19901 - 3042: -12.988601,32.41791 - 3043: -10.644851,44.23155 - 3044: -10.644851,44.189854 - 3045: -11.144851,44.2107 - 3046: -11.738601,44.24197 - 3047: -11.634434,44.512993 - 3048: -11.301101,44.502567 - 3049: -12.478184,45.25309 - 3050: -12.186518,44.4296 - 3051: -13.372225,19.418964 - 3052: -13.111808,19.502356 - 3053: -13.080558,19.439812 - 3054: -12.747225,19.418964 - 3055: -12.549308,19.418964 - 3056: -12.778475,19.366844 - 3057: -13.049308,19.418964 - 3058: -12.768058,18.772682 - 3059: -12.726391,18.585052 - 3060: -13.080558,18.65802 - 3061: -12.611808,19.617018 - 3062: -12.549308,19.7838 - 3063: -12.590975,20.07567 - 3064: -12.528475,20.409235 - 3065: -12.549308,20.701105 - 3066: -12.590975,21.118061 - 3067: -12.601391,21.54544 - 3068: -12.601391,22.129179 - 3069: -12.393058,22.285538 - 3070: -12.393058,22.23342 - 3071: 11.161374,25.052107 - 3072: 11.286374,25.052107 - 3073: 11.42179,25.052107 - 3074: 12.119706,25.469063 - 3075: 12.39054,25.500334 - 3076: 13.411374,24.999987 - 3077: 38.407673,13.5602255 - 3078: 38.251423,17.623114 - 3079: 41.709755,17.64396 - 3080: 42.105587,17.654385 - 3081: 41.491005,15.621723 - 3082: 41.491005,15.381972 - 3083: 41.470173,14.704419 - 3084: 41.449337,15.204766 - 3085: 41.501423,15.559179 - 3086: 42.116005,15.652996 - 3087: 40.595173,15.340278 - 3088: 40.720173,14.641875 - 3089: 46.599617,14.475093 - 3090: 46.880867,14.516788 - 3091: 47.0892,14.516788 - 3092: 47.860035,16.70581 - 3093: 47.860035,16.70581 - 3094: 48.4642,18.457026 - 3095: 48.4642,18.436178 - 3096: 48.443367,18.31109 - 3097: 47.474617,13.50567 - 3098: 47.0892,13.411855 - 3099: 43.693367,10.377899 - 3100: 42.7142,10.680193 - 3101: 42.505867,10.70104 - 3102: 45.443367,10.388324 - 3103: 45.568367,9.616954 - 3104: 45.078785,9.554411 - 3105: 40.412117,9.283389 - 3106: 40.43295,8.866433 - 3107: 40.422535,8.741346 - 3108: 40.93295,9.398051 - 3109: 41.287117,8.439054 - 3110: 44.505867,8.746013 - 3111: 42.943367,9.314661 - 3112: 43.891285,9.36678 - 3113: 44.860035,9.417288 - 3114: 44.703785,9.469407 - 3115: 46.266285,8.531255 - 3116: 45.93295,8.01006 - 3117: 45.891285,7.551409 - 3118: 46.172535,7.5826807 - 3119: 44.485035,7.363778 - 3120: 43.318367,7.2908106 - 3121: 42.828785,7.0927563 - 3122: 42.380867,6.1024847 - 3123: 42.391285,5.591714 - 3124: 41.349617,5.675105 - 3125: 41.49545,6.7591915 - 3126: 44.287117,6.206724 - 3127: 44.662117,6.2588444 - 3128: 45.516285,5.9357023 - 3129: 45.5267,5.622985 - 3130: 47.2767,6.780039 - 3131: 47.2767,6.800887 - 3132: 48.203785,7.071909 - 3133: 48.97631,6.780039 - 3134: 48.997147,6.363082 - 3135: 49.028397,5.9044313 - 3136: 50.778397,6.8842783 - 3137: 50.76798,5.9669743 - 3138: 50.19506,6.185877 - 3139: 50.11173,6.1441813 - 3140: 48.10131,6.4047785 - 3141: 48.059647,6.0816374 - 3142: 52.13674,6.123334 - 3143: 52.07424,6.363082 - 3144: 52.01174,6.623681 - 3145: 52.79299,6.269267 - 3146: 52.845074,6.6445284 - 3147: 54.063824,7.363778 - 3148: 54.678406,6.352659 - 3149: 54.084656,6.1650286 - 3150: 54.48049,5.5395947 - 3151: 54.897156,11.898667 - 3152: 58.053406,11.867394 - 3153: 59.08138,12.586644 - 3154: 58.227207,12.534526 - 3155: 56.945957,12.628341 - 3156: 56.706375,12.440709 - 3157: 57.373043,12.461558 - 3158: 59.508457,12.617917 - 3159: 59.508457,12.451133 - 3160: 59.248043,9.48032 - 3161: 58.508457,9.3760805 - 3162: 58.154293,9.334385 - 3163: 57.404293,9.407352 - 3164: 56.873043,9.313538 - 3165: 57.195957,9.459473 - 3166: 57.258457,9.449048 - 3167: 59.05013,10.501863 - 3168: 58.67513,10.470592 - 3169: 59.51888,9.918124 - 3170: 59.51888,9.918124 - 3171: 56.279293,9.980667 - 3172: 55.581375,9.928548 - 3173: 55.518875,9.918124 - 3174: 55.227207,9.85558 - 3175: 52.977207,9.467992 - 3176: 52.227207,9.259513 - 3177: 51.498043,9.207394 - 3178: 49.393875,9.228242 - 3179: 50.237625,10.416567 - 3180: 49.675125,10.812675 - 3181: 50.248043,12.126086 - 3182: 50.320957,11.980153 - 3183: 50.429398,15.647409 - 3184: 50.28356,15.199182 - 3185: 49.51273,18.472288 - 3186: 50.12731,18.388897 - 3187: 50.18981,17.982365 - 3188: 50.20023,17.586256 - 3189: 51.804398,17.544561 - 3190: 52.148148,17.544561 - 3191: 53.15856,17.544561 - 3192: 53.26273,17.252691 - 3193: 53.26273,17.033789 - 3194: 53.82523,16.856583 - 3195: 54.73148,17.544561 - 3196: 55.06481,17.523712 - 3197: 55.56481,16.272844 - 3198: 55.554398,15.616138 - 3199: 57.56481,16.585562 - 3200: 57.59606,17.867702 - 3201: 56.45023,18.305506 - 3202: 56.460648,18.044909 - 3203: 58.814816,17.200571 - 3204: 58.95023,16.523018 - 3205: 58.991894,16.085215 - 3206: 58.960644,16.439627 - 3207: 58.939816,15.647409 - 3208: 58.877316,14.990703 - 3209: 57.98148,14.573747 - 3210: 58.023148,14.928159 - 3211: 57.960648,14.53205 - 3212: 56.68981,14.500779 - 3213: 56.460648,14.542476 - 3214: 55.534443,14.038774 - 3215: 55.534443,14.038774 - 3216: 55.409443,14.08047 - 3217: 54.98236,13.924111 - 3218: 50.648247,13.965806 - 3219: 50.460747,13.559274 - 3220: 55.16271,-29.56868 - 3221: 53.996044,-30.121147 - 3222: 43.734573,-27.556866 - 3223: 43.015823,-27.546442 - 3224: 39.83369,-27.412212 - 3225: 46.104523,-27.568571 - 3226: 46.385773,-27.547724 - 3227: 37.409584,-27.526875 - 3228: 37.430416,-27.651962 - 3229: -19.565151,-25.476324 - 3230: -28.102497,-20.576414 - 3231: -23.539997,-17.960318 - 3232: -29.523403,-32.040947 - 3233: -29.648403,-32.666386 - 3234: -26.606735,-32.478752 - 3235: -19.377567,-32.96497 - 3236: -19.565067,-32.725224 - 3237: -19.544235,-32.902428 - 3238: -8.406201,-0.4566989 - 3239: 20.04884,4.4430914 - 3240: 19.757172,4.453515 - 3241: 19.403008,3.74469 - 3242: 12.676013,-0.25743055 - 3243: 11.623931,-0.30954957 - 3244: 10.686431,-0.30954957 - 3245: 3.8577223,4.6130314 - 3246: 4.0764723,4.592183 - 3247: 4.2118893,3.9250526 - 3248: -17.415333,5.5268745 - 3249: -17.363249,5.2037334 - 3250: -16.675749,5.370516 - 3251: -16.311165,5.339245 - 3252: -15.613249,5.130766 - 3253: -16.311165,4.421941 - 3254: -35.885174,-9.732544 - 3255: -36.343506,-9.409403 - 3256: -36.39559,-9.398979 - 3257: -34.478924,-8.8256645 - 3258: -39.71845,-13.58939 - 3259: -39.92678,-13.5685425 - 3260: -40.40595,-13.860412 - 3261: -41.30178,-14.402454 - 3262: -42.2497,-14.381607 - 3263: -44.054047,-14.360759 - 3264: -48.820038,-13.380912 - 3265: -49.184624,-13.370487 - 3266: -49.465874,-13.495575 - 3267: -49.278374,-32.45957 - 3268: -49.351288,-32.58466 - 3269: -49.445038,-33.095432 - 3270: -49.872124,-32.537483 - 3271: -49.767956,-32.756386 - 3272: -49.486706,-33.21504 - 3273: -41.073032,-36.453472 - 3274: -40.614697,-36.463894 - 3275: -40.208447,-37.026787 - 3276: -40.052197,-38.006634 - 3277: -44.968864,-42.261353 - 3278: -45.928387,-41.333626 - 3279: -45.990887,-41.3649 - 3280: -46.26172,-40.666496 - 3281: -46.178387,-40.666496 - 3282: -44.865887,-40.739464 - 3283: -3.8079247,-70.90175 - 3284: -3.8697991,-70.953865 - 3285: -4.1093826,-71.00599 - 3286: -4.6822996,-71.058105 - 3287: -5.7656326,-71.13107 - 3288: -6.1197996,-71.151924 - 3289: -4.8697996,-71.28743 - 3290: 30.344131,-89.77827 - 3291: 29.875381,-89.945045 - 3292: 29.375381,-89.91378 - 3293: 35.327736,-87.57111 - 3294: 35.327736,-87.7379 - 3295: 35.338154,-88.06104 - 3296: 35.504818,-88.37376 - 3297: 35.536068,-88.01935 - 3298: 35.213154,-88.154854 - 3299: 34.827736,-88.363335 - 3300: 36.963154,-65.47481 - 3301: 37.327736,-65.40184 - 3302: 34.973568,-56.398106 - 3303: 34.973568,-56.398106 - 3304: 34.661068,-55.94988 - 3305: 35.327736,-56.022846 - 3306: 43.818256,-49.574497 - 3307: 43.818256,-49.835094 - 3308: 43.787006,-50.252052 - 3309: 43.83878,-38.40324 - 3310: 43.27628,-38.43451 - 3311: 43.130447,-38.663837 - 3312: 43.01586,-39.591564 - 3313: 42.77628,-40.018944 - 3314: 53.17552,-17.753592 - 3315: 53.165108,-17.393248 - 3316: 53.040108,-16.100685 - 3317: 52.977608,-15.027021 - 3318: 52.99844,-14.151413 - 3319: 52.80052,-13.327925 - 3320: 52.758858,-16.997139 - 3321: 52.727608,-17.810204 - 3322: 52.602608,-18.571148 - 3323: 60.029858,-21.940498 - 3324: 60.342358,-21.271244 - 3325: 52.16824,-1.7232664 - 3326: 51.93907,-1.6919949 - 3327: 51.366154,-1.6398752 - 3328: 34.815258,7.256752 - 3329: 34.096508,7.2775993 - 3330: 33.700672,7.2463274 - 3331: 33.419422,6.964882 - 3332: 32.794422,6.693861 - 3333: 32.096508,6.6521645 - 3334: 30.96109,6.7355556 - 3335: 30.30484,7.079545 - 3336: 29.55484,7.2775993 - 3337: 29.763172,6.7668285 - 3338: 39.242516,22.375364 - 3339: 38.82585,22.344093 - 3340: 37.82585,22.12519 - 3341: 37.377934,22.104343 - 3342: 33.867516,22.458755 - 3343: 34.26335,22.156462 - 3344: 34.867516,21.812473 - 3345: 35.721684,21.687386 - 3346: 36.617516,21.697811 - 3347: 37.492516,21.895864 - 3348: 36.8571,22.208582 - 3349: 36.127934,22.28155 - 5135: -2.470861,-5.479699 - 5136: -2.5125275,-5.66733 - 5137: -2.5750275,-6.011318 - 5138: 0.5603895,-6.5012426 - 5139: 0.5603895,-6.5012426 - 5140: 1.258306,-4.5206995 - 5141: 1.0291395,-4.531124 - 5142: 1.0291395,-4.531124 - 5143: 0.86247253,-4.541548 - 5144: 0.570806,-4.5623956 - 5145: 0.38330603,-4.2809496 - 5146: 0.33122253,-4.1350155 - 5147: 0.28955603,-3.9161134 - 5148: 0.049972534,-3.6763635 - 5149: -0.21044397,-3.645092 - 5150: -2.595861,-3.5617008 - 5151: -1.689611,-3.5617008 - 5152: -1.4812775,-3.80145 - 5153: -2.595861,-1.4211264 - 5154: -2.6479442,-1.0875609 - 5155: -3.095861,1.6330783 - 5156: -2.627111,1.5079916 - 5157: -1.741694,1.4454482 - 5158: -1.064611,1.3099372 - 5159: -2.1166942,1.3829043 - 5160: -1.4187775,1.3516328 - 5161: -0.6271105,1.2056983 - 5162: 3.0426645,-0.3095293 - 5163: 3.0322475,-0.5492792 - 5164: 3.0426645,-0.7890291 - 5165: 2.1989145,-0.7890291 - 5166: 2.1780806,-0.66394234 - 5167: 2.1155806,-0.4346161 - 5168: 1.9176645,-0.60139894 - 5169: 1.771831,-0.7473335 - 5170: 2.3655815,-4.346985 - 5171: 2.084331,-4.545039 - 5172: 4.033042,-8.655805 - 5173: 2.678875,-8.489021 - 5174: 3.980958,-8.561989 - 5175: -4.6294065,-0.5137758 - 5176: -4.452323,0.52861524 - 5177: -6.5356565,2.3632224 - 5178: -7.18149,2.509157 - 5179: -7.5669065,2.4570372 - 5180: -7.4731565,2.3527987 - 5181: -7.4731565,2.050505 - 5182: -4.644047,-3.5288017 - 5183: -5.5086303,-3.6643124 - 5184: -5.7898803,-5.5614634 - 5185: -5.519047,-6.583006 - 5186: -5.4773803,-6.6455493 - 5187: -8.539881,-1.4350414 - 5188: -8.539881,-1.4975846 - 5189: -8.571131,-1.685215 - 5190: -12.560714,3.328684 - 5191: -12.560714,3.1931727 - 5192: -12.550297,2.65113 - 5193: -12.602381,2.2550213 - 5194: -12.696131,1.7234023 - 5195: -14.487798,3.3391078 - 5196: -14.508631,3.036815 - 5197: -14.560714,2.65113 - 5198: -14.727381,2.4634993 - 5199: -13.435714,1.7859457 - 5200: -13.414881,1.494076 - 5201: -11.171612,2.5364668 - 5202: -10.942445,2.442652 - 5203: -11.546612,-1.6539433 - 5204: -17.546612,1.5774677 - 5205: -17.55703,1.5149243 - 5206: -17.598694,1.108392 - 5207: -17.504944,1.494076 - 5208: -16.890362,1.7546742 - 5209: -16.49453,1.6504347 - 5210: -20.570595,0.47185016 - 5211: -20.528927,2.535784 - 5212: -21.528927,2.4315445 - 5213: -21.060177,2.4940884 - 5214: -20.685177,2.5253594 - 5215: -19.549759,2.4940884 - 5216: -19.549759,2.4940884 - 5217: -23.992668,1.9816601 - 5218: -24.409336,1.9295409 - 5219: -26.467155,2.0650513 - 5220: -25.612988,2.4090407 - 5221: -25.47757,2.3881924 - 5222: -25.404655,2.106747 - 5223: -25.404655,1.7002146 - 5224: -25.394238,1.5647042 - 5225: -25.467155,0.7203672 - 5226: -27.487988,0.5952809 - 5227: -16.005154,0.48198867 - 5228: -12.025986,0.5758035 - 5229: -24.472675,-1.5790999 - 5230: -23.639343,-3.643033 - 5231: -24.253925,-3.622185 - 5232: -25.462261,-3.570066 - 5233: -27.389343,-3.570066 - 5234: -25.410175,-0.46374154 - 5235: -18.628925,-0.5054374 - 5236: -18.358093,-0.44289422 - 5237: -32.513805,8.500856 - 5238: -32.513805,8.500856 - 5239: -32.565887,8.323649 - 5240: -32.513805,7.531433 - 5241: -33.534637,7.500161 - 5242: -33.534637,7.500161 - 5243: -31.357555,7.625248 - 5244: -31.36797,7.531433 - 5245: -30.576305,7.4376173 - 5246: -30.52422,7.2604113 - 5247: -30.503387,6.9581184 - 5248: -29.49297,4.4146843 - 5249: -28.80547,2.5279577 - 5250: -28.71172,2.4445665 - 5251: -28.55547,0.54741645 - 5252: -28.80547,0.4223287 - 5253: -29.378387,0.2972424 - 5254: -36.565887,1.674514 - 5255: -37.357555,1.9455359 - 5256: -37.05547,1.9976552 - 5257: -39.154213,3.0704515 - 5258: -38.78963,3.0808756 - 5276: -39.46848,0.42637277 - 5277: -39.05181,0.46806836 - 5278: -38.74973,0.43679643 - 5279: -38.603893,-0.4909308 - 5280: -39.21848,-0.5638983 - 5281: -35.55181,-1.7626479 - 5282: -36.52056,-1.5437453 - 5283: -36.874725,-1.4499304 - 5284: -38.072643,-1.4707785 - 5285: -39.478893,-2.5340173 - 5286: -40.572643,-0.42838764 - 5287: -41.17681,-0.44923568 - 5288: -41.61431,0.03026414 - 5289: -41.43723,0.46806836 - 5290: -41.4386,3.5282478 - 5291: -41.55318,3.4657052 - 5292: -42.230267,3.4865525 - 5293: -42.34485,3.2259552 - 5294: -42.30318,2.756879 - 5295: -41.605267,3.4031613 - 5296: -41.605267,2.9757807 - 5297: -40.386517,1.4643147 - 5298: -40.292767,1.9333909 - 5299: -40.42818,2.8715422 - 5300: -43.480267,2.6526396 - 5301: -43.324017,2.579673 - 5302: -43.91235,-2.4834108 - 5303: -44.266518,-2.4521391 - 5304: -44.68318,-2.4208677 - 5305: -45.22485,-1.6286509 - 5306: -45.03735,-0.9302492 - 5307: -43.71443,-0.6071081 - 5308: -43.71443,-0.9823687 - 5309: -46.46443,-1.5348356 - 5310: -45.922768,-1.5556834 - 5311: -45.91235,-0.6592276 - 5312: -48.41235,-0.6488035 - 5313: -48.922768,-0.68007565 - 5314: -49.047768,-0.6904993 - 5315: -49.3186,-0.8051622 - 5316: -49.3811,-1.4410207 - 5317: -49.329018,-1.8684008 - 5318: -48.735268,-2.368748 - 5319: -49.454018,0.58285356 - 5330: -43.5061,8.518829 - 5331: -42.4436,8.518829 - 5332: -42.454018,9.008753 - 5333: -42.485268,7.4764385 - 5334: -42.99568,7.278385 - 5335: -43.02693,7.0386353 - 5336: -43.02693,6.6529503 - 5337: -44.22485,6.538287 - 5338: -44.22485,6.538287 - 5339: -41.53735,9.436133 - 5340: -41.5061,6.486168 - 5341: -41.5061,6.486168 - 5342: -36.570263,-5.47698 - 5343: -37.539013,-6.050295 - 5344: -37.539013,-6.050295 - 5345: -37.51818,-7.5200663 - 5346: -39.539017,-6.164958 - 5347: -40.007767,-5.748002 - 5348: -40.789017,-7.47837 - 5349: -40.51818,-7.155229 - 5350: -34.418655,-6.3517876 - 5351: -34.179073,-6.03907 - 5352: -31.510803,-8.464451 - 5353: -31.448303,-8.943951 - 5354: -31.354553,-9.142004 - 5355: -31.37539,-9.298363 - 5356: -31.385803,-9.944645 - 5360: 0.45570707,-36.44141 - 5361: 0.7057071,-36.472683 - 5362: 0.7890401,-36.462257 - 5363: 0.9557071,-36.264206 - 5364: 0.8515401,-36.399715 - 5365: 0.6640401,-36.462257 - 5366: 0.4452901,-36.576923 - 5367: -4.1229095,-40.204956 - 5368: -4.2062426,-40.33004 - 5369: -3.7791593,-40.42386 - 5370: -3.383326,-40.507248 - 5371: -1.7166591,-39.95478 - 5372: -1.8416591,-39.84012 - 5373: -2.0916593,-39.829693 - 5374: -3.4366515,-37.434795 - 5375: -2.957485,-36.38198 - 5376: -16.413067,-39.780174 - 5377: -16.163067,-39.602966 - 5378: -15.392234,-39.25898 - 5379: -15.5589,-38.498035 - 5380: -15.506817,-38.06023 - 5381: -15.517234,-38.64397 - 5382: -15.485984,-39.040077 - 5383: -16.423485,-40.082466 - 5384: -16.402649,-40.499424 - 5385: -13.850567,-40.52027 - 5386: -13.590151,-40.426456 - 5387: -13.590151,-40.416035 - 5388: -16.423485,-36.653004 - 5389: -11.423484,-36.551277 - 5390: -11.579734,-35.602703 - 5391: -11.777651,-35.185745 - 5392: -10.944317,-36.72848 - 5393: -4.319317,-32.594986 - 5394: -2.8401499,-32.70965 - 5395: -2.6606374,-33.52061 - 5396: -2.6189706,-34.22944 - 5397: -2.608554,-34.437916 - 5398: -2.5564706,-35.105045 - 5399: -3.2752206,-35.29938 - 5400: -3.2752206,-35.34108 - 5401: -3.2752206,-35.37235 - 5402: -2.6814706,-35.445316 - 5403: -3.5981374,-34.663525 - 5404: -3.5981374,-34.663525 - 5405: 0.08936262,-30.639894 - 5406: 0.1622796,-30.712862 - 5407: 0.3497796,-31.171515 - 5408: 0.3810296,-31.286177 - 5409: -0.22313738,-30.535656 - 5410: 0.7560296,-31.7761 - 5411: 0.7560296,-32.318146 - 5412: 0.5372796,-32.589165 - 5413: -0.6398039,-32.589165 - 5414: -0.9939704,-30.744135 - 5415: -0.6398039,-30.702438 - 5416: -0.8168874,-30.764982 - 5417: -1.2543874,-30.827526 - 5435: -21.403927,-27.520338 - 5436: -19.664345,-27.707968 - 5437: -19.33101,-27.760088 - 5438: -19.341427,-28.041533 - 5439: -19.33101,-28.250011 - 5440: -18.935177,-28.437641 - 5441: -18.747677,-28.427217 - 5442: -18.653927,-28.291706 - 5443: -18.622677,-27.697544 - 5444: -18.601845,-27.92687 - 5445: -19.23726,-31.147858 - 5446: -19.372677,-32.59678 - 5447: -19.008095,-32.659325 - 5448: -18.67476,-32.721867 - 5449: -18.664345,-33.23264 - 5450: -18.560177,-33.409847 - 5451: -19.466427,-33.6079 - 5452: -22.653927,-31.470999 - 5453: -23.226845,-29.886564 - 5454: -23.331013,-29.855293 - 5455: -23.435177,-29.865717 - 5456: -23.695595,-30.157585 - 5457: -23.695595,-30.616238 - 5458: -23.601845,-30.918531 - 5459: -23.289345,-31.45015 - 5460: -24.018513,-30.188858 - 5461: -24.331013,-29.949108 - 5462: -24.466427,-29.98038 - 5466: -10.398228,-27.616209 - 5467: -10.419062,-27.355612 - 5468: -10.450312,-27.126286 - 5469: -10.356562,-24.608856 - 5470: -10.366978,-24.85903 - 5471: -10.366978,-25.025812 - 5472: -10.346144,-25.547007 - 5473: -12.596145,-23.51351 - 5474: -10.481562,-18.559704 - 5475: -10.596144,-19.331072 - 5476: -11.491978,-19.69591 - 5477: -11.606562,-20.12329 - 5478: -12.419062,-20.852962 - 5479: -2.092088,-20.477701 - 5480: -1.5295877,-20.644485 - 5481: -1.4775047,-20.665333 - 5482: -1.3837547,-21.092712 - 5483: 3.275756,-25.704914 - 5484: 4.192422,-24.454044 - 5485: 4.650756,-24.6521 - 5486: 4.588256,-24.881424 - 5487: 4.442422,-25.569403 - 5488: 4.432006,-26.25738 - 5489: 4.411172,-26.653488 - 5490: 4.390339,-27.16426 - 5491: 4.234089,-27.50825 - 5492: 3.911172,-27.64376 - 5493: 3.327839,-27.633335 - 5494: 3.202839,-27.633335 - 5495: 2.588256,-27.695879 - 5496: 2.484089,-28.248346 - 5497: 2.452839,-28.561064 - 5498: 2.890339,-28.571487 - 5499: 3.379922,-28.540216 - 5500: 2.421589,-27.445705 - 5501: 1.7028389,-27.50825 - 5502: 1.4840889,-27.466553 - 5503: 1.4320054,-27.11214 - 5504: 2.629922,-25.152447 - 5505: 2.504922,-25.256685 - 5506: 2.348672,-25.256685 - 5507: 2.317422,-25.048206 - 5508: 1.9945054,-24.68337 - 5509: 1.3278389,-24.59998 - 5510: 1.3070054,-24.756338 - 5511: 1.3486719,-25.225414 - 5512: 1.4632554,-26.382467 - 5513: 0.6715889,-26.528402 - 5514: 0.06742191,-26.424162 - 5515: 0.22367191,-25.527706 - 5516: 0.1715889,-24.902273 - 5517: -0.4534111,-24.63125 - 5518: 0.2445054,-24.568708 - 5519: 0.2965889,-24.620827 - 5520: -0.047161102,-29.478367 - 5521: -0.4117446,-29.478367 - 5522: -1.0679946,-29.551334 - 5523: -1.8284116,-29.520063 - 5524: -2.5679948,-29.530487 - 5525: -3.495078,-28.508944 - 5526: -3.5784116,-28.488096 - 5527: -3.9221616,-28.488096 - 5528: -4.536745,-28.540216 - 5529: -9.052546,-24.537436 - 5530: -9.115046,-24.41235 - 5531: -8.865046,-24.537436 - 5532: -8.573379,-24.527012 - 5533: -8.396296,-24.037088 - 5673: 4.4682827,14.145057 - 5674: 4.3641157,15.051936 - 5675: 4.3641157,16.042208 - 5676: 4.7911997,27.603165 - 5677: 4.6245327,27.373838 - 5678: 5.2703667,27.759521 - 5679: 5.9161997,26.602468 - 5680: 6.3536997,25.00761 - 5681: 6.5620327,25.914492 - 5682: 6.8432827,25.289057 - 5683: 5.6557827,27.447535 - 5684: 6.9161997,30.3975 - 5685: 7.0828667,30.407925 - 5686: 7.3016167,29.501045 - 5687: 7.4370327,28.364838 - 5688: 7.3328667,26.780405 - 5689: 7.4682827,16.380367 - 5690: 7.1766167,15.786203 - 5691: 7.2182827,15.004409 - 5692: 4.5516157,18.200611 - 5693: 4.7807827,14.896234 - 5694: 5.9474497,12.884418 - 5695: 6.5932827,11.842029 + 1531: 68.96888,-18.487247 + 1532: 68.9793,-18.60191 + 1533: 67.5418,-19.957018 + 1534: 73.020966,-19.571333 + 1535: 74.958466,-22.052223 + 1536: 75.37513,-25.564346 + 1537: 75.40638,-28.430922 + 1538: 70.44805,-29.025085 + 1539: 68.4793,-30.45316 + 1540: 63.597282,-27.59701 + 1541: 59.290546,-30.004932 + 1542: 59.665546,-29.952812 + 1543: 53.763718,-30.238668 + 1544: 52.732468,-29.686201 + 1545: 54.326218,-24.813839 + 1546: 53.68038,-24.938927 + 1547: 52.5033,-26.460817 + 1548: 55.451218,-23.542124 + 1549: 55.451218,-23.562971 + 1550: 55.451218,-23.562971 + 1551: 47.999554,-27.55731 + 1552: 44.72538,-30.340492 + 1553: 44.558712,-30.507275 + 1554: 44.235794,-30.486427 + 1555: 47.14407,-29.037504 + 1556: 46.779484,-29.089624 + 1557: 38.537804,-27.599007 + 1558: 32.1837,-34.926617 + 1559: 31.8712,-34.978737 + 1560: 32.83995,-34.759834 + 1561: 32.83995,-34.77026 + 1562: 27.829533,-32.622936 + 1563: 29.235783,-32.52912 + 1564: 30.4337,-27.515476 + 1565: 30.600365,-28.151335 + 1566: 30.412865,-29.454323 + 1567: 29.40245,-25.003315 + 1568: 29.40245,-25.003315 + 1569: 27.600365,-24.523815 + 1570: 21.53312,-41.477196 + 1571: 21.710201,-41.445927 + 1572: 22.78312,-41.45635 + 1573: 23.074783,-41.445927 + 1574: 24.34562,-41.445927 + 1575: 24.68937,-41.45635 + 1576: 26.324783,-40.757946 + 1577: 72.49788,-30.966576 + 1578: 75.34163,-34.93098 + 1579: 75.393715,-33.930286 + 1580: 75.456215,-39.500744 + 1581: 75.44579,-39.803036 + 1582: 73.518715,-47.434147 + 1583: 74.52913,-46.965073 + 1584: 75.331215,-47.392452 + 1585: 72.43538,-48.525173 + 1586: 67.49922,-48.504322 + 1587: 67.88464,-45.470966 + 1588: 62.590527,-48.525173 + 1589: 62.590527,-48.525173 + 1590: 61.44469,-48.535595 + 1591: 61.44469,-48.535595 + 1592: 56.72178,-45.435387 + 1593: 57.36761,-44.434692 + 1594: 57.732193,-41.828716 + 1595: 57.950943,-40.650814 + 1596: 57.294693,-41.432606 + 1597: 52.908268,-45.536163 + 1598: 45.600636,-45.588284 + 1599: 45.475636,-48.298496 + 1600: 45.265495,-48.43401 + 1601: 43.58841,-48.49655 + 1602: 45.390495,-48.506977 + 1603: 35.582027,-45.439796 + 1604: 36.061195,-45.648273 + 1605: 34.967445,-45.42937 + 1606: 34.477863,-45.55446 + 1607: 31.519527,-45.564884 + 1608: 31.467445,-48.431458 + 1609: 8.417126,-48.471527 + 1610: 14.448377,-46.480564 + 1611: 15.115043,-46.459713 + 1612: 14.458793,-46.52226 + 1613: -1.3214302,-45.27139 + 1614: -0.9880967,-44.65638 + 1615: 3.0014868,-52.46908 + 1616: 6.345237,-50.43642 + 1617: 6.3035707,-50.697018 + 1618: 6.313987,-51.687286 + 1619: 6.3035707,-52.41696 + 1620: -1.8647547,-54.464172 + 1621: -5.995307,-55.506565 + 1622: -10.231806,-52.937588 + 1623: 1.4807768,-25.496803 + 1624: 6.9994717,-22.724043 + 1625: 7.9161386,-24.318901 + 1626: 8.426555,-27.99854 + 1627: 8.426555,-28.279985 + 1628: 8.426555,-29.301529 + 1629: 6.2807217,-27.43565 + 1630: 5.8223877,-27.112509 + 1631: 5.9578047,-21.431479 + 1632: 5.9786386,-21.452328 + 1633: 4.3640547,-21.494022 + 1634: 4.3640547,-21.587837 + 1635: -18.48595,-38.779957 + 1636: -32.632523,-41.669697 + 1637: -32.632523,-41.669697 + 1638: -33.382523,-42.00326 + 1639: -33.382523,-42.31598 + 1640: -32.61169,-42.399372 + 1641: -34.01794,-40.710697 + 1642: -31.038773,-40.9296 + 1643: -30.070023,-41.002567 + 1644: -26.83179,-44.150585 + 1645: -26.83179,-44.150585 + 1646: -26.998455,-44.338215 + 1647: -23.717205,-43.81702 + 1648: -23.498455,-43.952534 + 1649: -25.258873,-44.067196 + 1650: -22.48804,-39.324318 + 1651: -22.48804,-39.032448 + 1652: -25.45679,-39.397285 + 1653: -25.154705,-39.48068 + 1654: -23.915123,-39.501522 + 1655: -24.26929,-39.501522 + 1656: -24.779705,-40.189503 + 1657: -27.01929,-39.4911 + 1658: -27.321373,-39.511948 + 1659: -27.790123,-39.35559 + 1660: -27.790123,-38.625916 + 1661: -27.165123,-42.013687 + 1662: -27.165123,-41.78436 + 1663: -27.217205,-41.628002 + 1664: -32.639732,-38.389755 + 1665: -32.452232,-36.242428 + 1666: -33.566814,-35.65869 + 1667: -34.202232,-35.512756 + 1668: -34.254314,-35.81505 + 1669: -35.160564,-38.473145 + 1670: -35.4939,-38.108307 + 1671: -35.483482,-37.618385 + 1672: -35.96265,-35.5753 + 1673: -36.170982,-35.523182 + 1674: -36.129314,-35.55445 + 1675: -35.566814,-35.54403 + 1676: -35.295982,-35.55445 + 1677: -37.3064,-36.88871 + 1678: -37.483482,-36.93041 + 1679: -37.691814,-37.389057 + 1680: -38.46265,-38.389755 + 1681: -38.46265,-38.1917 + 1682: -30.683025,-25.958038 + 1683: -29.776775,-25.926767 + 1684: -29.66219,-25.958038 + 1685: -29.901775,-25.541082 + 1686: -31.037193,-25.572353 + 1687: -32.308025,-26.04143 + 1688: -31.380943,-27.365265 + 1689: -31.120525,-27.354841 + 1690: -30.985107,-23.438007 + 1691: -32.151775,-23.458855 + 1692: -32.078857,-19.538427 + 1693: -31.516357,-21.425156 + 1694: -31.016357,-21.435577 + 1695: -30.576984,-16.910597 + 1696: -31.943726,-14.550095 + 1697: -32.15206,-14.414583 + 1698: -32.016644,-13.4868555 + 1699: -29.5322,-11.985647 + 1700: -23.479229,-6.549697 + 1701: -23.541729,-7.467 + 1702: -23.406311,-7.112588 + 1703: -19.656311,-4.7255135 + 1704: -21.333397,-5.059078 + 1705: -20.239647,-2.651156 + 1706: -19.656311,-2.6720037 + 1707: -19.145897,-2.6615796 + 1708: -17.291729,-3.8916008 + 1709: -17.375061,-4.277285 + 1710: -16.927147,-7.4461527 + 1711: -19.322979,-6.7060556 + 1712: -17.562561,-5.455187 + 1713: -31.89732,3.6574936 + 1714: -32.095234,3.6574936 + 1715: -30.08482,2.7193425 + 1716: -29.970234,2.68807 + 1717: -30.043152,-1.6065793 + 1718: -30.043152,-2.7115133 + 1719: -31.970234,-2.3987958 + 1720: -26.047005,2.4483206 + 1721: -25.859505,2.4795926 + 1722: -22.838673,2.4795926 + 1723: -22.609505,2.4900162 + 1724: -27.890755,2.4795926 + 1725: -29.359505,-0.43910193 + 1726: -29.078255,-0.47037363 + 1727: -30.682423,0.5198977 + 1728: -21.259674,-6.996375 + 1729: -21.186756,-7.2882442 + 1730: -21.040924,-7.4237547 + 1731: -12.025789,3.2194417 + 1732: -12.536205,3.386224 + 1733: -11.536205,2.1562026 + 1734: -11.536205,-0.47062206 + 1735: -13.484123,-3.7645764 + 1736: -6.598706,-8.582137 + 1737: -5.3903723,-3.7767167 + 1738: -14.202872,-10.448606 + 1739: -2.6940975,-11.574832 + 1740: -3.298264,-11.595679 + 1741: -4.4753475,-10.490746 + 1742: -2.454514,-10.511593 + 1743: -1.454514,-9.458778 + 1744: 0.5969219,-11.845853 + 1745: 0.49275494,-12.387897 + 1746: 0.46150494,-13.35732 + 1747: 3.478551,-8.484807 + 1748: 7.0299044,-8.073131 + 1749: 7.0819883,-8.761107 + 1750: 2.6165943,-12.527547 + 1751: 2.4707613,-12.746449 + 1752: 2.5540943,-16.394815 + 1753: 2.5436773,-16.040403 + 1754: 2.5332613,-15.623446 + 1755: 2.1999273,-15.873621 + 1756: 1.8145113,-15.758958 + 1757: 1.7832613,-16.123795 + 1758: 3.3561773,-18.7698 + 1759: 3.4811773,-19.416082 + 1760: 4.6270113,-18.613441 + 1761: 4.6061773,-18.488354 + 1762: 4.4499273,-17.581474 + 1763: 4.0436773,-17.498083 + 1764: 1.9395113,-18.550898 + 1765: 1.6165943,-18.571747 + 1766: 1.2103443,-18.686409 + 1767: 4.601055,-13.653295 + 1768: 5.017722,-13.55948 + 1769: 5.913555,-13.903468 + 1770: 5.882305,-14.143218 + 1771: 5.840638,-14.445512 + 1772: 3.5698051,-11.349611 + 1773: 3.5073051,-11.422579 + 1774: 3.8406382,-11.495545 + 1775: 2.5073051,-11.495545 + 1776: 9.247281,-10.978955 + 1777: 9.580614,-10.926836 + 1778: 17.072475,-7.5941076 + 1779: 14.4578905,-8.011065 + 1780: 15.67664,-11.4196825 + 1781: 16.124557,-11.492649 + 1782: 22.971046,-11.190355 + 1783: 22.82521,-11.513497 + 1784: 23.002296,-11.461377 + 1785: 23.408546,-11.388411 + 1786: 26.581997,-4.5476413 + 1787: 27.175747,-4.5476413 + 1788: 26.956997,-4.776967 + 1789: 28.071583,-4.5267935 + 1790: 28.248665,-4.516369 + 1791: 28.394497,-5.3711295 + 1792: 27.967415,-5.5691833 + 1793: 30.602833,-5.673423 + 1794: 31.019497,-4.8186626 + 1795: 31.446583,-4.558065 + 1796: 31.456997,-4.558065 + 1797: 33.852833,-3.432283 + 1798: 33.602833,-3.4114356 + 1799: 33.269497,-2.994479 + 1800: 33.51746,-0.37743497 + 1801: 33.413296,0.14375997 + 1802: 34.444546,0.4356296 + 1803: 34.444546,-0.3670113 + 1804: 34.600796,-0.49209833 + 1805: 34.902878,-0.79439163 + 1806: 35.246628,-1.3885541 + 1807: 36.934128,0.779618 + 1808: 37.45496,1.0089443 + 1809: 36.757046,0.9776728 + 1810: 37.782017,0.46690106 + 1811: 38.844517,0.42520547 + 1812: 39.11535,0.8630092 + 1813: 39.11535,0.85258555 + 1814: 40.41743,-0.51294565 + 1815: 41.05285,-0.62760925 + 1816: 38.907017,-1.4406738 + 1817: 37.44868,-0.05429387 + 1818: 37.42785,-0.07514167 + 1819: 27.477322,1.5362422 + 1820: 27.36274,0.9629276 + 1821: 29.64399,1.3381884 + 1822: 30.716904,0.816993 + 1823: 30.685654,0.67105794 + 1824: 31.30024,0.6606343 + 1825: 31.42524,1.4320037 + 1826: 30.946072,1.4111559 + 1827: 31.852322,1.0046237 + 1828: 31.61274,0.921232 + 1829: 32.16482,1.3277647 + 1830: 30.92524,2.5654871 + 1831: 31.64399,3.3368556 + 1832: 31.414822,3.3577034 + 1833: 29.321072,3.2743123 + 1834: 29.414822,3.0971062 + 1835: 26.623154,3.368128 + 1836: 26.560654,3.3785517 + 1837: 33.435654,3.3889754 + 1838: 33.39399,-4.4124975 + 1839: 32.72732,-4.4854646 + 1840: 32.28982,-4.5063124 + 1841: 32.22732,-4.5063124 + 1842: 31.946072,-3.43265 + 1843: 27.227322,-2.4030805 + 1844: 26.935654,-3.4037755 + 1845: 27.98774,-3.4871666 + 1846: 27.935654,-2.5281677 + 1847: 28.529404,-2.3301136 + 1848: 29.466904,-2.4552002 + 1849: 29.529404,-2.9685516 + 1850: 34.46227,-9.558907 + 1851: 35.191433,-9.475515 + 1852: 35.566433,-11.403938 + 1853: 34.39977,-11.497753 + 1854: 34.972683,-10.945286 + 1855: 35.01435,-10.455362 + 1856: 35.410183,-10.476211 + 1857: 36.402534,-12.446329 + 1858: 40.488354,-11.508177 + 1859: 42.547966,-11.768775 + 1860: 42.527134,-12.008525 + 1861: 42.53755,-11.8417425 + 1862: 43.527134,-11.403938 + 1863: 43.860466,-9.517212 + 1864: 45.28755,-9.475515 + 1865: 45.589634,-9.475515 + 1866: 47.433384,-9.444244 + 1867: 48.579216,-9.475515 + 1868: 48.704216,-9.475515 + 1869: 48.683384,-9.527636 + 1870: 49.72505,-9.517212 + 1871: 49.922966,-9.496364 + 1872: 50.5688,-9.485939 + 1873: 50.28755,-9.527636 + 1874: 50.110466,-9.517212 + 1875: 49.766716,-9.548483 + 1876: 51.055984,-9.765561 + 1877: 51.0039,-9.98446 + 1878: 50.951817,-10.65159 + 1879: 50.983067,-10.985155 + 1880: 50.983067,-11.349992 + 1881: 50.451817,-11.548046 + 1882: 51.59765,-11.464656 + 1883: 52.087234,-11.537623 + 1884: 52.233067,-11.485503 + 1885: 52.514317,-11.006003 + 1886: 52.420567,-9.327754 + 1887: 50.66015,-5.450061 + 1888: 50.5664,-5.5543 + 1889: 50.545567,-5.648115 + 1890: 50.514317,-6.336093 + 1891: 50.514317,-6.6696577 + 1892: 50.483067,-6.8781357 + 1893: 50.462234,-7.138734 + 1894: 50.483067,-7.8267117 + 1895: 50.514317,-8.108157 + 1896: 50.524734,-8.264515 + 1897: 50.53515,-8.556385 + 1898: 50.47265,-9.07758 + 1899: 50.524734,-8.681472 + 1900: 51.868484,-5.4917564 + 1901: 52.170567,-5.6689625 + 1902: 52.170567,-6.898984 + 1903: 52.1289,-7.013647 + 1904: 52.295567,-7.07619 + 1905: 52.399734,-7.55569 + 1906: 52.451817,-7.7120485 + 1907: 52.451817,-8.400026 + 1908: 52.483067,-8.493841 + 1909: 52.483067,-8.535538 + 1910: 52.108067,-8.962917 + 1911: 52.493484,-9.473688 + 1912: 52.493484,-9.838526 + 1913: 52.493484,-10.11997 + 1914: 52.59765,-10.839221 + 1915: 52.389317,-11.495927 + 1916: 51.545567,-12.4901495 + 1917: 51.545567,-12.938377 + 1918: 51.53515,-12.907105 + 1919: 51.5039,-13.58466 + 1920: 51.514317,-13.63678 + 1921: 51.555984,-14.126703 + 1922: 51.5664,-14.428996 + 1923: 51.139317,-13.553388 + 1924: 50.670567,-13.480421 + 1925: 50.53515,-12.91753 + 1926: 50.53515,-13.886953 + 1927: 50.483067,-15.075278 + 1928: 50.483067,-15.711137 + 1929: 50.524734,-15.627746 + 1930: 50.608067,-16.128094 + 1931: 50.59765,-16.618015 + 1932: 51.430984,-16.555473 + 1933: 51.524734,-18.44328 + 1934: 51.47265,-20.366905 + 1935: 51.493484,-20.502415 + 1936: 51.837234,-20.564959 + 1937: 52.368484,-20.51284 + 1938: 52.087234,-22.410568 + 1939: 52.576817,-22.441841 + 1940: 52.576817,-22.108276 + 1941: 51.524734,-22.514809 + 1942: 51.014317,-23.985928 + 1943: 51.014317,-23.985928 + 1944: 50.5664,-25.424427 + 1945: 50.993484,-25.518242 + 1946: 51.087234,-25.935198 + 1947: 51.295567,-26.427126 + 1948: 51.483067,-26.583485 + 1949: 51.483067,-27.334005 + 1950: 51.462234,-27.39655 + 1951: 51.420567,-27.615452 + 1952: 50.576817,-27.47994 + 1953: 50.5664,-27.44867 + 1954: 50.483067,-23.37484 + 1955: 50.233067,-22.301178 + 1956: 49.6914,-22.311602 + 1957: 49.712234,-21.707014 + 1958: 49.951817,-20.99819 + 1959: 49.680984,-20.768864 + 1960: 49.6289,-20.633352 + 1961: 50.41015,-19.512796 + 1962: 50.41015,-19.512796 + 1963: 50.045567,-19.38771 + 1964: 48.493484,-19.502373 + 1965: 47.774734,-19.533646 + 1966: 47.545567,-19.450254 + 1967: 47.545567,-19.450254 + 1968: 47.53515,-18.418287 + 1969: 48.389317,-18.449558 + 1970: 48.47265,-18.459982 + 1971: 48.47265,-18.155146 + 1972: 49.430984,-16.618757 + 1973: 49.4414,-16.535366 + 1974: 49.451817,-16.483246 + 1975: 48.5039,-15.962051 + 1976: 48.514317,-14.450585 + 1977: 48.483067,-14.638215 + 1978: 48.47265,-15.148987 + 1979: 48.483067,-15.284497 + 1980: 47.451817,-14.440162 + 1981: 47.3789,-14.700759 + 1982: 47.41015,-15.065596 + 1983: 47.430984,-15.190682 + 1984: 47.47265,-15.524247 + 1985: 47.514317,-12.568465 + 1986: 47.514317,-12.568465 + 1987: 47.514317,-12.568465 + 1988: 47.514317,-12.568465 + 1989: 47.97265,-12.505921 + 1990: 48.47265,-12.47465 + 1991: 49.0039,-12.516346 + 1992: 49.295567,-12.516346 + 1993: 48.930984,-12.495498 + 1994: 49.28515,-12.537193 + 1995: 49.34765,-12.6205845 + 1996: 49.41015,-12.870759 + 1997: 49.420567,-13.120933 + 1998: 49.462234,-13.287715 + 1999: 49.5039,-13.537889 + 2000: 49.5039,-13.819334 + 2001: 49.483067,-14.017388 + 2002: 49.47265,-14.47604 + 2003: 49.5664,-17.540283 + 2004: 49.5664,-17.540283 + 2005: 49.899734,-17.56113 + 2006: 50.233067,-17.52986 + 2007: 49.962234,-17.519434 + 2008: 50.045567,-17.550707 + 2009: 50.389317,-17.540283 + 2010: 43.478157,-20.528257 + 2011: 43.90524,-20.465714 + 2012: 44.071907,-20.47614 + 2013: 44.040657,-22.383713 + 2014: 44.040657,-22.529648 + 2015: 44.446907,-22.529648 + 2016: 45.551075,-23.55119 + 2017: 44.540657,-24.48206 + 2018: 44.540657,-24.48206 + 2019: 45.488575,-25.003256 + 2020: 45.68649,-24.951136 + 2021: 45.696907,-24.96156 + 2022: 46.582325,-26.483316 + 2023: 46.84274,-26.483316 + 2024: 47.09274,-26.483316 + 2025: 47.009407,-26.483316 + 2026: 48.509407,-26.514587 + 2027: 48.46774,-23.439535 + 2028: 48.40524,-23.575045 + 2029: 47.738575,-23.575045 + 2030: 47.509407,-24.44023 + 2031: 42.39001,-22.419138 + 2032: 42.49418,-22.481682 + 2033: 37.467724,-23.482378 + 2034: 37.394806,-24.149508 + 2035: 37.519806,-24.31629 + 2036: 38.040638,-25.369104 + 2037: 38.051056,-25.369104 + 2038: 38.457306,-25.442072 + 2039: 38.436474,-25.400375 + 2040: 39.332306,-24.58731 + 2041: 39.457306,-24.50392 + 2042: 36.467724,-23.513649 + 2043: 36.467724,-23.513649 + 2044: 36.467724,-23.513649 + 2045: 36.155224,-24.754093 + 2046: 35.457306,-24.483072 + 2047: 34.686474,-23.461529 + 2048: 34.665638,-23.503225 + 2049: 34.530224,-23.64916 + 2050: 34.582306,-26.401072 + 2051: 37.019806,-22.33527 + 2052: 36.926056,-22.543747 + 2053: 35.436474,-22.47078 + 2054: 35.436474,-22.47078 + 2055: 34.426056,-20.542356 + 2056: 34.426056,-20.542356 + 2057: 33.946888,-20.55278 + 2058: 40.46879,-18.693834 + 2059: 40.666702,-18.485357 + 2060: 40.86462,-18.474934 + 2061: 41.40629,-17.47483 + 2062: 41.40629,-17.47483 + 2063: 41.00004,-17.443558 + 2064: 40.59379,-17.506102 + 2065: 42.50004,-18.472912 + 2066: 42.50004,-18.472912 + 2067: 42.50004,-18.472912 + 2068: 42.53129,-18.931564 + 2069: 42.40629,-19.046227 + 2070: 42.447952,-15.389344 + 2071: 42.45837,-15.493583 + 2072: 42.45837,-15.587398 + 2073: 42.46879,-16.025202 + 2074: 42.416702,-13.513041 + 2075: 40.53129,-14.399073 + 2076: 33.53216,-5.498646 + 2077: 33.53216,-5.498646 + 2078: 33.46966,-5.8947544 + 2079: 33.46966,-5.5716133 + 2080: 33.37591,-5.498646 + 2081: 30.48008,-17.625967 + 2082: 27.469662,-17.39664 + 2083: 27.469662,-17.39664 + 2084: 31.768013,-23.235754 + 2085: 32.351345,-23.256601 + 2086: 30.913845,-22.870916 + 2087: 35.778427,-30.122984 + 2088: 36.070095,-30.175102 + 2089: 37.028427,-29.76857 + 2090: 33.184677,-34.242767 + 2091: 31.445095,-32.43943 + 2092: 32.215927,-28.225906 + 2093: 32.736763,-26.119097 + 2094: 30.038845,-22.976084 + 2095: 27.713322,-19.981579 + 2096: 30.202908,-19.220634 + 2097: 31.984158,-18.272093 + 2098: 24.86081,-14.72366 + 2099: 24.86081,-9.83413 + 2100: 20.760582,-10.43703 + 2101: 23.750168,-7.257738 + 2102: 31.196217,-6.4581 + 2103: 32.539967,-7.4170995 + 2104: 33.144135,-9.491458 + 2105: 21.509678,-5.50616 + 2106: 13.973496,-43.408886 + 2107: 8.965953,-43.502705 + 2108: 8.965953,-43.502705 + 2109: 8.97637,-41.511738 + 2110: 9.049287,-41.428345 + 2111: 19.417751,-10.516342 + 2112: 23.466835,2.5198576 + 2113: 24.425167,-0.45095563 + 2114: 24.425167,-0.45095563 + 2115: 23.466835,-2.5148885 + 2116: 22.643917,-3.3800733 + 2117: 21.581417,-4.44503 + 2118: 21.612667,-4.4763017 + 2119: 21.998081,2.6088116 + 2120: 22.0085,2.535844 + 2121: 21.998081,1.1390407 + 2122: 24.831417,-1.5122066 + 2123: 24.831417,-1.4913585 + 2124: 26.498081,5.0041037 + 2125: 26.28975,4.9832554 + 2126: 26.237667,4.555875 + 2127: 26.393917,4.545451 + 2128: 27.143917,4.6288424 + 2129: 27.716831,4.555875 + 2130: 28.425167,5.4210596 + 2131: 28.560581,6.5259933 + 2132: 28.5085,6.4842978 + 2133: 18.56311,5.5357227 + 2134: 18.53186,4.4829082 + 2135: 19.146442,4.5350275 + 2136: 19.427692,4.545451 + 2137: 18.802692,4.5975714 + 2138: 18.40686,7.568384 + 2139: 22.490192,7.4623623 + 2140: 22.490192,7.441515 + 2141: 22.53186,7.3685474 + 2142: 21.573528,8.556872 + 2143: 16.450783,8.618908 + 2144: 16.513283,9.50494 + 2145: 16.513283,9.50494 + 2146: 16.565369,9.067136 + 2147: 16.534119,10.526483 + 2148: 16.482033,11.349971 + 2149: 16.482033,11.45421 + 2150: 17.419537,10.547331 + 2151: 17.440369,9.6404505 + 2152: 17.044537,9.546636 + 2153: 16.7737,9.536212 + 2154: 16.482033,10.495212 + 2155: 16.909119,10.495212 + 2156: 17.11745,10.495212 + 2157: 17.419537,8.514668 + 2158: 18.6487,9.963592 + 2159: 18.700787,10.255462 + 2160: 19.315369,10.234613 + 2161: 15.315618,9.494516 + 2162: 14.993169,9.515364 + 2163: 14.670253,9.494516 + 2164: 14.066085,9.473668 + 2165: 13.326503,9.494516 + 2166: 10.018869,9.536212 + 2167: 7.4577208,9.484092 + 2168: 6.9643927,9.494516 + 2169: 8.703977,9.932321 + 2170: 7.9748096,10.026135 + 2171: 13.547727,10.953863 + 2172: 12.756059,10.891319 + 2173: 6.4956427,11.089374 + 2174: 6.4793053,8.54594 + 2175: 5.5401106,8.566789 + 2176: 4.393257,9.567483 + 2177: 4.143257,9.557059 + 2178: 3.7057571,9.536212 + 2179: 2.6849232,10.5577545 + 2180: 2.5807562,11.422938 + 2181: 2.4974232,8.577212 + 2182: 2.4974232,8.556365 + 2183: 1.4979553,9.484092 + 2184: 1.0604553,9.442397 + 2185: 0.7062888,9.463244 + 2186: 0.20628881,9.463244 + 2187: -0.22079468,9.494516 + 2188: -0.4187112,9.50494 + 2189: -0.8666277,9.546636 + 2190: -1.6166277,9.557059 + 2191: 0.8312888,10.380548 + 2192: 1.3937888,10.484787 + 2193: 0.6125388,10.453515 + 2194: -0.31454468,10.46394 + 2195: -1.2624612,10.516059 + 2196: 0.4250388,11.381244 + 2197: -0.11662769,11.433363 + 2198: -1.4395447,9.911472 + 2199: -1.4916277,8.608484 + 2200: -0.43954468,8.608484 + 2201: 0.5500388,8.472974 + 2202: 20.655407,11.518932 + 2203: 16.322071,15.484221 + 2204: 13.384572,18.455036 + 2205: 13.384572,18.163166 + 2206: 14.457488,19.393187 + 2207: 14.676238,14.577342 + 2208: 14.655404,15.129807 + 2209: 14.488738,15.452949 + 2210: 14.592904,15.411254 + 2211: 14.603322,15.40083 + 2212: 14.530404,13.430711 + 2213: 14.509572,12.784429 + 2214: 14.655404,12.607223 + 2215: 14.738738,12.555102 + 2216: 14.717904,12.49256 + 2217: 15.415822,12.49256 + 2218: 15.686653,12.4300165 + 2219: 16.155403,12.450864 + 2220: 16.999153,12.49256 + 2221: 17.238739,12.544679 + 2222: 17.322071,12.586375 + 2223: 17.405403,12.648917 + 2224: 17.342903,13.441136 + 2225: 16.853321,13.34732 + 2226: 16.019989,13.34732 + 2227: 15.894989,13.34732 + 2228: 15.905403,14.004025 + 2229: 15.801239,14.045722 + 2230: 15.624153,13.805972 + 2231: 15.280404,13.983178 + 2232: 15.332488,14.86921 + 2233: 14.905404,13.357743 + 2234: 14.915822,13.316049 + 2235: 19.820843,17.600275 + 2236: 19.95626,17.537731 + 2237: 20.164593,17.548155 + 2238: 20.86251,18.350796 + 2239: 20.48751,18.350796 + 2240: 20.497929,18.36122 + 2241: 25.384697,14.973449 + 2242: 25.415947,14.733699 + 2243: 27.374279,13.816396 + 2244: 26.832611,13.190961 + 2245: 29.564472,10.682721 + 2246: 29.564472,10.2866125 + 2247: 30.335304,14.258882 + 2248: 31.626972,17.58411 + 2249: 31.199886,17.490294 + 2250: 31.449886,17.47987 + 2251: 31.710304,16.771046 + 2252: 31.543636,16.374937 + 2253: 29.043636,16.543253 + 2254: 29.929054,15.563406 + 2255: 20.771496,27.635853 + 2256: 28.965088,31.763721 + 2257: 28.965088,31.763721 + 2258: 28.163006,33.605797 + 2259: 27.850506,33.58495 + 2260: 27.225506,31.500168 + 2261: 26.590088,31.531437 + 2262: 26.465088,31.489742 + 2263: 26.600506,31.18745 + 2264: 26.579674,30.676678 + 2265: 26.569256,30.562016 + 2266: 29.569256,29.894886 + 2267: 29.517174,29.905308 + 2268: 29.475506,29.613438 + 2269: 31.443161,26.045942 + 2270: 32.057743,27.53656 + 2271: 32.797325,27.567833 + 2272: 33.026493,27.567833 + 2273: 35.922325,26.775616 + 2274: 37.28691,27.692919 + 2275: 36.66191,27.494865 + 2276: 36.578575,28.36005 + 2277: 36.422325,28.349625 + 2278: 38.16191,28.526833 + 2279: 38.328575,28.412167 + 2280: 38.391075,28.20369 + 2281: 38.328575,25.712378 + 2282: 38.22441,25.660257 + 2283: 37.984825,23.48166 + 2284: 38.026493,24.451084 + 2285: 36.34941,24.857616 + 2286: 36.06816,24.586596 + 2287: 35.963993,24.471931 + 2288: 35.91191,24.471931 + 2289: 34.682743,23.66929 + 2290: 34.34941,24.888887 + 2291: 34.34941,24.253029 + 2292: 34.34941,24.0654 + 2293: 32.63066,23.710987 + 2294: 31.474411,24.013279 + 2295: 31.578575,24.795073 + 2296: 31.505661,25.274572 + 2297: 32.69316,25.15991 + 2298: 33.547325,25.545595 + 2299: 34.026493,25.451778 + 2300: 31.943161,26.087637 + 2301: 23.45047,34.2295 + 2302: 16.465546,28.19463 + 2303: 13.028047,23.618534 + 2304: 12.757213,23.483023 + 2305: 12.028047,23.55599 + 2306: 11.528047,23.55599 + 2307: 11.278047,24.337784 + 2308: 10.705129,24.389902 + 2309: 10.257213,24.358631 + 2310: 9.809297,24.421175 + 2311: 9.36138,25.369751 + 2312: 9.340547,26.016033 + 2313: 8.996797,26.401716 + 2314: 8.590547,26.141119 + 2315: 8.694713,25.28636 + 2316: 8.590547,28.361412 + 2317: 8.475963,27.673433 + 2318: 8.538463,26.870792 + 2319: 8.67388,25.922216 + 2320: 8.944713,26.724857 + 2321: 9.028047,29.399986 + 2322: 13.465547,30.494495 + 2323: 10.462693,33.439457 + 2324: 10.566859,32.866142 + 2325: 10.566859,32.59512 + 2326: 11.473109,33.647938 + 2327: 11.421027,34.586086 + 2328: 10.504359,34.53397 + 2329: 9.525193,34.48185 + 2330: 9.264776,33.543697 + 2331: 8.452276,33.668785 + 2332: 6.8481092,33.65836 + 2333: 4.806443,33.637512 + 2334: 4.233526,33.637512 + 2335: 5.5981092,34.2421 + 2336: 7.368943,34.231674 + 2337: 8.014776,34.2421 + 2338: 8.723109,34.2004 + 2339: 9.191859,34.30464 + 2340: 8.504359,34.335915 + 2341: 2.4961157,32.532578 + 2342: 3.2773657,33.012077 + 2343: 2.6731997,32.93911 + 2344: 3.7148657,32.126045 + 2345: 2.5794497,32.021805 + 2346: 2.0898657,32.000957 + 2347: 2.5065327,31.563152 + 2348: 1.6940327,33.627087 + 2349: 1.2044492,33.647938 + 2350: 0.6523657,33.700054 + 2351: 0.32944918,33.512424 + 2352: 0.32944918,33.502003 + 2353: 0.40236568,32.75148 + 2354: 0.43361568,32.56385 + 2355: -0.48305082,33.585392 + 2356: 0.5794492,34.42973 + 2357: 0.5481992,34.554813 + 2358: 1.5794492,34.44015 + 2359: 2.2773657,35.45127 + 2360: 1.7565327,35.440845 + 2361: 0.5898657,39.277607 + 2362: 0.6731992,38.25606 + 2363: 0.8606992,37.588932 + 2364: 0.8294492,36.94265 + 2365: 0.7669492,36.014923 + 2366: 0.5273657,38.474964 + 2367: -0.41013432,38.662594 + 2368: -0.6913843,38.652172 + 2369: -2.7196784,38.527084 + 2370: -3.428012,38.422844 + 2371: -2.9800951,36.129585 + 2372: -4.490512,35.431183 + 2373: -4.4800954,35.139317 + 2374: -4.4800954,34.659813 + 2375: -3.521762,35.358215 + 2376: -4.3238454,34.46176 + 2377: -3.490512,34.420063 + 2378: -3.4488451,34.13862 + 2379: -3.5009284,33.87802 + 2380: -3.5009284,33.732086 + 2381: -3.5113451,33.544456 + 2382: -3.396762,34.10735 + 2383: -3.2196784,34.48261 + 2384: -2.740512,34.503456 + 2385: 0.4782381,34.37837 + 2386: 0.4365716,34.37837 + 2387: -3.4696784,32.59526 + 2388: -3.4175951,33.41875 + 2389: -4.6884284,33.512566 + 2390: -5.8134284,33.54384 + 2391: -6.3134284,33.512566 + 2392: -7.521762,33.616806 + 2393: -8.313429,33.585533 + 2394: -8.105095,34.46114 + 2395: -7.8446784,34.440292 + 2396: -7.4175954,34.388172 + 2397: -6.6363454,34.304783 + 2398: -6.0634284,34.336056 + 2399: -5.396762,34.27351 + 2400: -5.5315547,34.379097 + 2401: -5.541971,34.35825 + 2402: -5.5315547,33.493065 + 2403: -5.5315547,33.420097 + 2404: -5.677388,33.440945 + 2405: -5.948221,33.50349 + 2406: -5.916971,33.472218 + 2407: -6.291971,33.430523 + 2408: -6.166971,34.347824 + 2409: -6.187805,34.347824 + 2410: -6.573221,34.337402 + 2411: -6.927388,34.30613 + 2412: -14.342768,34.596508 + 2413: -14.415685,34.794563 + 2414: -14.134435,34.450573 + 2415: -14.124018,34.450573 + 2416: -13.696934,34.481846 + 2417: -13.790684,34.38803 + 2418: -13.978185,34.315063 + 2419: -13.582351,34.71117 + 2420: -13.686518,34.4193 + 2421: -14.103185,34.32549 + 2422: -14.457351,34.4193 + 2423: -14.467768,35.138554 + 2424: -14.467768,35.10728 + 2425: -14.457351,34.930073 + 2426: -14.457351,34.80499 + 2427: -14.561518,35.19067 + 2428: -14.540685,34.971767 + 2429: -14.530268,34.75287 + 2430: -14.509435,34.57566 + 2431: -13.488601,35.148975 + 2432: -13.488601,35.05516 + 2433: -11.644851,33.502 + 2434: -11.467768,33.53327 + 2435: -11.582351,34.33591 + 2436: -11.582351,34.262943 + 2437: -11.551101,34.11701 + 2438: -11.478184,33.647934 + 2439: -11.488601,33.2414 + 2440: -11.603184,34.367184 + 2441: -12.519851,33.522846 + 2442: -12.644851,32.928684 + 2443: -14.259435,32.188587 + 2444: -13.478184,32.459606 + 2445: -13.446934,32.19901 + 2446: -12.988601,32.41791 + 2447: -10.644851,44.23155 + 2448: -10.644851,44.189854 + 2449: -11.144851,44.2107 + 2450: -11.738601,44.24197 + 2451: -11.634434,44.512993 + 2452: -11.301101,44.502567 + 2453: -12.478184,45.25309 + 2454: -12.186518,44.4296 + 2455: -13.372225,19.418964 + 2456: -13.111808,19.502356 + 2457: -13.080558,19.439812 + 2458: -12.747225,19.418964 + 2459: -12.549308,19.418964 + 2460: -12.778475,19.366844 + 2461: -13.049308,19.418964 + 2462: -12.768058,18.772682 + 2463: -12.726391,18.585052 + 2464: -13.080558,18.65802 + 2465: -12.611808,19.617018 + 2466: -12.549308,19.7838 + 2467: -12.590975,20.07567 + 2468: -12.528475,20.409235 + 2469: -12.549308,20.701105 + 2470: -12.590975,21.118061 + 2471: -12.601391,21.54544 + 2472: -12.601391,22.129179 + 2473: -12.393058,22.285538 + 2474: -12.393058,22.23342 + 2475: 11.161374,25.052107 + 2476: 11.286374,25.052107 + 2477: 11.42179,25.052107 + 2478: 41.491005,15.621723 + 2479: 42.116005,15.652996 + 2480: 46.880867,14.516788 + 2481: 47.0892,14.516788 + 2482: 48.4642,18.457026 + 2483: 48.4642,18.436178 + 2484: 48.443367,18.31109 + 2485: 47.0892,13.411855 + 2486: 42.7142,10.680193 + 2487: 42.505867,10.70104 + 2488: 45.443367,10.388324 + 2489: 45.568367,9.616954 + 2490: 45.078785,9.554411 + 2491: 44.860035,9.417288 + 2492: 44.703785,9.469407 + 2493: 44.662117,6.2588444 + 2494: 50.778397,6.8842783 + 2495: 50.19506,6.185877 + 2496: 50.11173,6.1441813 + 2497: 54.063824,7.363778 + 2498: 59.08138,12.586644 + 2499: 59.508457,12.451133 + 2500: 59.05013,10.501863 + 2501: 58.67513,10.470592 + 2502: 59.51888,9.918124 + 2503: 59.51888,9.918124 + 2504: 56.279293,9.980667 + 2505: 55.581375,9.928548 + 2506: 55.518875,9.918124 + 2507: 55.227207,9.85558 + 2508: 50.20023,17.586256 + 2509: 51.804398,17.544561 + 2510: 52.148148,17.544561 + 2511: 53.15856,17.544561 + 2512: 53.26273,17.252691 + 2513: 53.26273,17.033789 + 2514: 53.82523,16.856583 + 2515: 55.56481,16.272844 + 2516: 57.56481,16.585562 + 2517: 56.68981,14.500779 + 2518: 56.460648,14.542476 + 2519: 55.534443,14.038774 + 2520: 55.534443,14.038774 + 2521: 55.409443,14.08047 + 2522: 54.98236,13.924111 + 2523: 55.16271,-29.56868 + 2524: 53.996044,-30.121147 + 2525: 43.734573,-27.556866 + 2526: 43.015823,-27.546442 + 2527: 39.83369,-27.412212 + 2528: 46.104523,-27.568571 + 2529: 46.385773,-27.547724 + 2530: 37.409584,-27.526875 + 2531: 37.430416,-27.651962 + 2532: -19.565151,-25.476324 + 2533: -28.102497,-20.576414 + 2534: -23.539997,-17.960318 + 2535: -29.523403,-32.040947 + 2536: -29.648403,-32.666386 + 2537: -26.606735,-32.478752 + 2538: -19.377567,-32.96497 + 2539: -19.565067,-32.725224 + 2540: -19.544235,-32.902428 + 2541: -8.406201,-0.4566989 + 2542: 20.04884,4.4430914 + 2543: 19.757172,4.453515 + 2544: 19.403008,3.74469 + 2545: 12.676013,-0.25743055 + 2546: 11.623931,-0.30954957 + 2547: 10.686431,-0.30954957 + 2548: 3.8577223,4.6130314 + 2549: 4.0764723,4.592183 + 2550: 4.2118893,3.9250526 + 2551: -15.613249,5.130766 + 2552: -35.885174,-9.732544 + 2553: -36.343506,-9.409403 + 2554: -36.39559,-9.398979 + 2555: -34.478924,-8.8256645 + 2556: -39.71845,-13.58939 + 2557: -39.92678,-13.5685425 + 2558: -40.40595,-13.860412 + 2559: -41.30178,-14.402454 + 2560: -42.2497,-14.381607 + 2561: -44.054047,-14.360759 + 2562: -48.820038,-13.380912 + 2563: -49.184624,-13.370487 + 2564: -49.465874,-13.495575 + 2565: -49.278374,-32.45957 + 2566: -49.351288,-32.58466 + 2567: -49.445038,-33.095432 + 2568: -49.872124,-32.537483 + 2569: -49.767956,-32.756386 + 2570: -49.486706,-33.21504 + 2571: -41.073032,-36.453472 + 2572: -40.614697,-36.463894 + 2573: -40.208447,-37.026787 + 2574: -40.052197,-38.006634 + 2575: -44.968864,-42.261353 + 2576: -45.928387,-41.333626 + 2577: -45.990887,-41.3649 + 2578: -46.26172,-40.666496 + 2579: -46.178387,-40.666496 + 2580: -44.865887,-40.739464 + 2581: -3.8079247,-70.90175 + 2582: -3.8697991,-70.953865 + 2583: -4.1093826,-71.00599 + 2584: -4.6822996,-71.058105 + 2585: -5.7656326,-71.13107 + 2586: -6.1197996,-71.151924 + 2587: -4.8697996,-71.28743 + 2588: 30.344131,-89.77827 + 2589: 29.875381,-89.945045 + 2590: 29.375381,-89.91378 + 2591: 35.327736,-87.57111 + 2592: 35.327736,-87.7379 + 2593: 35.338154,-88.06104 + 2594: 35.504818,-88.37376 + 2595: 35.536068,-88.01935 + 2596: 35.213154,-88.154854 + 2597: 34.827736,-88.363335 + 2598: 36.963154,-65.47481 + 2599: 37.327736,-65.40184 + 2600: 34.973568,-56.398106 + 2601: 34.973568,-56.398106 + 2602: 34.661068,-55.94988 + 2603: 35.327736,-56.022846 + 2604: 43.818256,-49.574497 + 2605: 43.818256,-49.835094 + 2606: 43.787006,-50.252052 + 2607: 43.83878,-38.40324 + 2608: 43.27628,-38.43451 + 2609: 43.130447,-38.663837 + 2610: 43.01586,-39.591564 + 2611: 42.77628,-40.018944 + 2612: 53.17552,-17.753592 + 2613: 53.165108,-17.393248 + 2614: 53.040108,-16.100685 + 2615: 52.977608,-15.027021 + 2616: 52.99844,-14.151413 + 2617: 52.80052,-13.327925 + 2618: 52.758858,-16.997139 + 2619: 52.727608,-17.810204 + 2620: 52.602608,-18.571148 + 2621: 60.029858,-21.940498 + 2622: 60.342358,-21.271244 + 2623: 52.16824,-1.7232664 + 2624: 51.93907,-1.6919949 + 2625: 51.366154,-1.6398752 + 2626: 34.815258,7.256752 + 2627: 34.096508,7.2775993 + 2628: 33.700672,7.2463274 + 2629: 33.419422,6.964882 + 2630: 32.794422,6.693861 + 2631: 32.096508,6.6521645 + 2632: 30.96109,6.7355556 + 2633: 30.30484,7.079545 + 2634: 29.55484,7.2775993 + 2635: 29.763172,6.7668285 + 2636: 39.242516,22.375364 + 2637: 38.82585,22.344093 + 2638: 37.82585,22.12519 + 2639: 37.377934,22.104343 + 2640: 33.867516,22.458755 + 2641: 34.26335,22.156462 + 2642: 34.867516,21.812473 + 2643: 35.721684,21.687386 + 2644: 36.617516,21.697811 + 2645: 37.492516,21.895864 + 2646: 36.8571,22.208582 + 2647: 36.127934,22.28155 + 4255: -2.470861,-5.479699 + 4256: -2.5125275,-5.66733 + 4257: -2.5750275,-6.011318 + 4258: 0.5603895,-6.5012426 + 4259: 0.5603895,-6.5012426 + 4260: 1.258306,-4.5206995 + 4261: 1.0291395,-4.531124 + 4262: 1.0291395,-4.531124 + 4263: 0.86247253,-4.541548 + 4264: 0.570806,-4.5623956 + 4265: 0.38330603,-4.2809496 + 4266: 0.33122253,-4.1350155 + 4267: 0.28955603,-3.9161134 + 4268: 0.049972534,-3.6763635 + 4269: -0.21044397,-3.645092 + 4270: -2.595861,-3.5617008 + 4271: -1.689611,-3.5617008 + 4272: -1.4812775,-3.80145 + 4273: -2.595861,-1.4211264 + 4274: -2.6479442,-1.0875609 + 4275: -3.095861,1.6330783 + 4276: -2.627111,1.5079916 + 4277: -1.741694,1.4454482 + 4278: -1.064611,1.3099372 + 4279: -2.1166942,1.3829043 + 4280: -1.4187775,1.3516328 + 4281: -0.6271105,1.2056983 + 4282: 3.0426645,-0.3095293 + 4283: 3.0322475,-0.5492792 + 4284: 3.0426645,-0.7890291 + 4285: 2.1989145,-0.7890291 + 4286: 2.1780806,-0.66394234 + 4287: 2.1155806,-0.4346161 + 4288: 1.9176645,-0.60139894 + 4289: 1.771831,-0.7473335 + 4290: 2.3655815,-4.346985 + 4291: 2.084331,-4.545039 + 4292: 4.033042,-8.655805 + 4293: 2.678875,-8.489021 + 4294: 3.980958,-8.561989 + 4295: -4.6294065,-0.5137758 + 4296: -4.452323,0.52861524 + 4297: -6.5356565,2.3632224 + 4298: -7.18149,2.509157 + 4299: -7.5669065,2.4570372 + 4300: -7.4731565,2.3527987 + 4301: -7.4731565,2.050505 + 4302: -4.644047,-3.5288017 + 4303: -5.5086303,-3.6643124 + 4304: -5.7898803,-5.5614634 + 4305: -5.519047,-6.583006 + 4306: -5.4773803,-6.6455493 + 4307: -8.539881,-1.4350414 + 4308: -8.539881,-1.4975846 + 4309: -8.571131,-1.685215 + 4310: -12.560714,3.328684 + 4311: -12.560714,3.1931727 + 4312: -12.550297,2.65113 + 4313: -12.602381,2.2550213 + 4314: -12.696131,1.7234023 + 4315: -14.487798,3.3391078 + 4316: -14.508631,3.036815 + 4317: -14.560714,2.65113 + 4318: -14.727381,2.4634993 + 4319: -13.435714,1.7859457 + 4320: -13.414881,1.494076 + 4321: -11.171612,2.5364668 + 4322: -10.942445,2.442652 + 4323: -11.546612,-1.6539433 + 4324: -17.546612,1.5774677 + 4325: -17.55703,1.5149243 + 4326: -17.598694,1.108392 + 4327: -17.504944,1.494076 + 4328: -16.890362,1.7546742 + 4329: -16.49453,1.6504347 + 4330: -20.570595,0.47185016 + 4331: -20.528927,2.535784 + 4332: -21.528927,2.4315445 + 4333: -21.060177,2.4940884 + 4334: -20.685177,2.5253594 + 4335: -19.549759,2.4940884 + 4336: -19.549759,2.4940884 + 4337: -26.467155,2.0650513 + 4338: -25.612988,2.4090407 + 4339: -25.47757,2.3881924 + 4340: -25.404655,2.106747 + 4341: -25.404655,1.7002146 + 4342: -25.394238,1.5647042 + 4343: -25.467155,0.7203672 + 4344: -27.487988,0.5952809 + 4345: -16.005154,0.48198867 + 4346: -12.025986,0.5758035 + 4347: -23.639343,-3.643033 + 4348: -24.253925,-3.622185 + 4349: -25.462261,-3.570066 + 4350: -27.389343,-3.570066 + 4351: -25.410175,-0.46374154 + 4352: -18.628925,-0.5054374 + 4353: -18.358093,-0.44289422 + 4354: -32.513805,8.500856 + 4355: -32.513805,8.500856 + 4356: -32.565887,8.323649 + 4357: -32.513805,7.531433 + 4358: -33.534637,7.500161 + 4359: -33.534637,7.500161 + 4360: -31.357555,7.625248 + 4361: -31.36797,7.531433 + 4362: -30.576305,7.4376173 + 4363: -30.52422,7.2604113 + 4364: -30.503387,6.9581184 + 4365: -29.49297,4.4146843 + 4366: -28.80547,2.5279577 + 4367: -28.71172,2.4445665 + 4368: -28.55547,0.54741645 + 4369: -28.80547,0.4223287 + 4370: -29.378387,0.2972424 + 4371: -36.565887,1.674514 + 4372: -37.357555,1.9455359 + 4373: -37.05547,1.9976552 + 4374: -39.154213,3.0704515 + 4375: -38.78963,3.0808756 + 4393: -39.46848,0.42637277 + 4394: -39.05181,0.46806836 + 4395: -38.74973,0.43679643 + 4396: -38.603893,-0.4909308 + 4397: -39.21848,-0.5638983 + 4398: -35.55181,-1.7626479 + 4399: -36.52056,-1.5437453 + 4400: -36.874725,-1.4499304 + 4401: -38.072643,-1.4707785 + 4402: -39.478893,-2.5340173 + 4403: -40.572643,-0.42838764 + 4404: -41.17681,-0.44923568 + 4405: -41.61431,0.03026414 + 4406: -41.43723,0.46806836 + 4407: -41.4386,3.5282478 + 4408: -41.55318,3.4657052 + 4409: -42.230267,3.4865525 + 4410: -42.34485,3.2259552 + 4411: -42.30318,2.756879 + 4412: -41.605267,3.4031613 + 4413: -41.605267,2.9757807 + 4414: -40.386517,1.4643147 + 4415: -40.292767,1.9333909 + 4416: -40.42818,2.8715422 + 4417: -43.480267,2.6526396 + 4418: -43.324017,2.579673 + 4419: -43.91235,-2.4834108 + 4420: -44.266518,-2.4521391 + 4421: -44.68318,-2.4208677 + 4422: -45.22485,-1.6286509 + 4423: -45.03735,-0.9302492 + 4424: -43.71443,-0.6071081 + 4425: -43.71443,-0.9823687 + 4426: -46.46443,-1.5348356 + 4427: -45.922768,-1.5556834 + 4428: -45.91235,-0.6592276 + 4429: -48.41235,-0.6488035 + 4430: -48.922768,-0.68007565 + 4431: -49.047768,-0.6904993 + 4432: -49.3186,-0.8051622 + 4433: -49.3811,-1.4410207 + 4434: -49.329018,-1.8684008 + 4435: -48.735268,-2.368748 + 4436: -49.454018,0.58285356 + 4447: -43.5061,8.518829 + 4448: -42.4436,8.518829 + 4449: -42.454018,9.008753 + 4450: -42.485268,7.4764385 + 4451: -42.99568,7.278385 + 4452: -43.02693,7.0386353 + 4453: -43.02693,6.6529503 + 4454: -44.22485,6.538287 + 4455: -44.22485,6.538287 + 4456: -41.53735,9.436133 + 4457: -41.5061,6.486168 + 4458: -41.5061,6.486168 + 4459: -36.570263,-5.47698 + 4460: -37.539013,-6.050295 + 4461: -37.539013,-6.050295 + 4462: -37.51818,-7.5200663 + 4463: -39.539017,-6.164958 + 4464: -40.007767,-5.748002 + 4465: -40.789017,-7.47837 + 4466: -40.51818,-7.155229 + 4467: -34.418655,-6.3517876 + 4468: -34.179073,-6.03907 + 4469: -31.510803,-8.464451 + 4470: -31.448303,-8.943951 + 4471: -31.354553,-9.142004 + 4472: -31.37539,-9.298363 + 4473: -31.385803,-9.944645 + 4477: 0.45570707,-36.44141 + 4478: 0.7057071,-36.472683 + 4479: 0.7890401,-36.462257 + 4480: 0.9557071,-36.264206 + 4481: 0.8515401,-36.399715 + 4482: 0.6640401,-36.462257 + 4483: 0.4452901,-36.576923 + 4484: -4.1229095,-40.204956 + 4485: -4.2062426,-40.33004 + 4486: -3.7791593,-40.42386 + 4487: -3.383326,-40.507248 + 4488: -1.7166591,-39.95478 + 4489: -1.8416591,-39.84012 + 4490: -2.0916593,-39.829693 + 4491: -3.4366515,-37.434795 + 4492: -2.957485,-36.38198 + 4493: -16.413067,-39.780174 + 4494: -16.163067,-39.602966 + 4495: -15.392234,-39.25898 + 4496: -15.5589,-38.498035 + 4497: -15.506817,-38.06023 + 4498: -15.517234,-38.64397 + 4499: -15.485984,-39.040077 + 4500: -16.423485,-40.082466 + 4501: -16.402649,-40.499424 + 4502: -13.850567,-40.52027 + 4503: -13.590151,-40.426456 + 4504: -13.590151,-40.416035 + 4505: -16.423485,-36.653004 + 4506: -11.423484,-36.551277 + 4507: -11.579734,-35.602703 + 4508: -11.777651,-35.185745 + 4509: -10.944317,-36.72848 + 4510: -4.319317,-32.594986 + 4511: -2.8401499,-32.70965 + 4512: -2.6606374,-33.52061 + 4513: -2.6189706,-34.22944 + 4514: -2.608554,-34.437916 + 4515: -2.5564706,-35.105045 + 4516: -3.2752206,-35.29938 + 4517: -3.2752206,-35.34108 + 4518: -3.2752206,-35.37235 + 4519: -2.6814706,-35.445316 + 4520: -3.5981374,-34.663525 + 4521: -3.5981374,-34.663525 + 4522: 0.08936262,-30.639894 + 4523: 0.1622796,-30.712862 + 4524: 0.3497796,-31.171515 + 4525: 0.3810296,-31.286177 + 4526: -0.22313738,-30.535656 + 4527: 0.7560296,-31.7761 + 4528: 0.7560296,-32.318146 + 4529: 0.5372796,-32.589165 + 4530: -0.6398039,-32.589165 + 4531: -0.9939704,-30.744135 + 4532: -0.6398039,-30.702438 + 4533: -0.8168874,-30.764982 + 4534: -1.2543874,-30.827526 + 4552: -21.403927,-27.520338 + 4553: -19.664345,-27.707968 + 4554: -19.33101,-27.760088 + 4555: -19.341427,-28.041533 + 4556: -19.33101,-28.250011 + 4557: -18.935177,-28.437641 + 4558: -18.747677,-28.427217 + 4559: -18.653927,-28.291706 + 4560: -18.622677,-27.697544 + 4561: -18.601845,-27.92687 + 4562: -19.23726,-31.147858 + 4563: -19.372677,-32.59678 + 4564: -19.008095,-32.659325 + 4565: -18.67476,-32.721867 + 4566: -18.664345,-33.23264 + 4567: -18.560177,-33.409847 + 4568: -19.466427,-33.6079 + 4569: -22.653927,-31.470999 + 4570: -23.226845,-29.886564 + 4571: -23.331013,-29.855293 + 4572: -23.435177,-29.865717 + 4573: -23.695595,-30.157585 + 4574: -23.695595,-30.616238 + 4575: -23.601845,-30.918531 + 4576: -23.289345,-31.45015 + 4577: -24.018513,-30.188858 + 4578: -24.331013,-29.949108 + 4579: -24.466427,-29.98038 + 4583: -10.398228,-27.616209 + 4584: -10.419062,-27.355612 + 4585: -10.450312,-27.126286 + 4586: -10.356562,-24.608856 + 4587: -10.366978,-24.85903 + 4588: -10.366978,-25.025812 + 4589: -10.346144,-25.547007 + 4590: -12.596145,-23.51351 + 4591: -10.481562,-18.559704 + 4592: -10.596144,-19.331072 + 4593: -11.491978,-19.69591 + 4594: -11.606562,-20.12329 + 4595: -12.419062,-20.852962 + 4596: -2.092088,-20.477701 + 4597: -1.5295877,-20.644485 + 4598: -1.4775047,-20.665333 + 4599: -1.3837547,-21.092712 + 4600: 3.275756,-25.704914 + 4601: 4.192422,-24.454044 + 4602: 4.650756,-24.6521 + 4603: 4.588256,-24.881424 + 4604: 4.442422,-25.569403 + 4605: 4.432006,-26.25738 + 4606: 4.411172,-26.653488 + 4607: 4.390339,-27.16426 + 4608: 4.234089,-27.50825 + 4609: 3.911172,-27.64376 + 4610: 3.327839,-27.633335 + 4611: 3.202839,-27.633335 + 4612: 2.588256,-27.695879 + 4613: 2.484089,-28.248346 + 4614: 2.452839,-28.561064 + 4615: 2.890339,-28.571487 + 4616: 3.379922,-28.540216 + 4617: 2.421589,-27.445705 + 4618: 1.7028389,-27.50825 + 4619: 1.4840889,-27.466553 + 4620: 1.4320054,-27.11214 + 4621: 2.629922,-25.152447 + 4622: 2.504922,-25.256685 + 4623: 2.348672,-25.256685 + 4624: 2.317422,-25.048206 + 4625: 1.9945054,-24.68337 + 4626: 1.3278389,-24.59998 + 4627: 1.3070054,-24.756338 + 4628: 1.3486719,-25.225414 + 4629: 1.4632554,-26.382467 + 4630: 0.6715889,-26.528402 + 4631: 0.06742191,-26.424162 + 4632: 0.22367191,-25.527706 + 4633: 0.1715889,-24.902273 + 4634: -0.4534111,-24.63125 + 4635: 0.2445054,-24.568708 + 4636: 0.2965889,-24.620827 + 4637: -0.047161102,-29.478367 + 4638: -0.4117446,-29.478367 + 4639: -1.0679946,-29.551334 + 4640: -1.8284116,-29.520063 + 4641: -2.5679948,-29.530487 + 4642: -3.495078,-28.508944 + 4643: -3.5784116,-28.488096 + 4644: -3.9221616,-28.488096 + 4645: -4.536745,-28.540216 + 4646: -9.052546,-24.537436 + 4647: -9.115046,-24.41235 + 4648: -8.865046,-24.537436 + 4649: -8.573379,-24.527012 + 4650: -8.396296,-24.037088 + 4772: 5.2703667,27.759521 + 4773: 5.9161997,26.602468 + 4774: 6.3536997,25.00761 + 4775: 6.5620327,25.914492 + 4776: 6.8432827,25.289057 + 4777: 5.6557827,27.447535 + 4778: 7.3328667,26.780405 + 5083: -27.41087,8.461131 + 5084: -26.998367,8.423604 + 5085: -27.010868,8.198448 + 5086: -27.023369,7.960783 + 5087: -27.47337,6.509775 + 5088: -27.47337,6.509775 + 5089: -27.47337,5.1963634 + 5090: -27.41087,4.5709286 + 5091: -27.385868,3.857934 + 5092: -26.48587,3.3951123 + 5093: -25.335869,5.12131 + 5094: -25.34837,5.4340277 + 5095: -25.460869,5.50908 + 5096: -26.023369,5.584132 + 5097: -27.09837,5.671693 + 5098: -26.385868,5.6216583 + 5099: -26.09837,5.60915 + 5100: -24.66087,4.520894 + 5101: -24.48587,4.2081766 + 5102: -24.53587,3.695321 + 5103: -24.573368,3.3700955 + 5437: 13.347741,19.249342 + 5438: 13.587323,18.686451 + 5439: 13.764407,18.279919 + 5440: 13.837325,17.779572 + 5441: 13.795657,16.747604 + 5442: 18.326908,16.455734 + 5443: 18.514408,16.705908 + 5444: 18.420658,22.20973 + 5445: 17.951908,22.470327 + 5446: 16.59774,22.512024 + 5447: 12.545657,21.73023 + 5448: 12.514407,21.30285 + 5449: 12.535241,20.82335 + 5450: 12.483157,20.291733 + 5451: 19.660088,22.382257 + 5452: 19.71217,21.454529 + 5453: 19.920502,21.506649 + 5454: 19.972588,21.506649 + 5455: 20.33717,21.517073 + 5456: 20.389252,21.517073 + 5457: 21.459946,19.65235 + 5458: 21.449528,19.297935 + 5459: 21.393837,23.535633 + 5460: 20.748001,23.639872 + 5461: 20.550087,23.890045 + 5462: 20.498001,23.994284 + 5463: 20.664669,23.535633 + 5464: 21.487587,23.452242 + 5465: 20.768837,23.598175 + 5466: 20.550087,23.785807 + 5467: 20.560501,28.747585 + 5468: 20.591751,29.195812 + 5469: 20.654251,29.435562 + 5470: 20.664669,29.445988 + 5471: 21.175087,29.498108 + 5472: 20.873001,29.445988 + 5473: 20.487587,28.820553 + 5474: 19.406025,29.388409 + 5475: 19.41644,29.169506 + 5476: 19.426857,29.096539 + 5477: 19.458107,29.002724 + 5478: 19.51019,27.845669 + 5479: 16.458107,28.512798 + 5480: 16.44769,28.512798 + 5481: 16.29144,28.43983 + 5482: 16.04144,28.48153 + 5483: 16.031025,28.48153 + 5484: 15.781025,28.48153 + 5485: 15.572689,28.460682 + 5486: 15.572689,28.231354 + 5487: 15.572689,27.94991 + 5488: 15.572689,27.814396 + 5489: 15.531025,27.543377 + 5490: 15.489358,27.491257 + 5491: 23.624775,30.003895 + 5492: 23.572693,29.576515 + 5493: 21.708107,30.410427 + 5494: 21.416443,30.431278 + 5495: 21.416443,30.431278 + 5496: 21.395607,30.587635 + 5497: 22.676857,35.59111 + 5498: 22.572693,35.372208 + 5499: 22.562275,35.35136 + 5500: 12.917451,34.44448 + 5501: 13.407035,34.454906 + 5502: 13.896617,34.46533 + 5503: 14.532035,34.434055 + 5504: 15.271617,34.54872 + 5505: 15.407035,35.184578 + 5506: 15.219535,35.330513 + 5507: 14.782035,35.40348 + 5508: 13.834117,35.424328 + 5581: 61.551037,13.604541 + 5582: 61.634373,13.562846 + 5583: 63.634377,12.061803 + 5584: 63.634377,11.352978 + 5585: 63.655212,10.967293 + 5586: 63.509377,10.550336 + 5587: 63.228123,10.393978 + 5588: 62.769787,10.268891 + 5589: 53.192535,13.604541 + 5590: 52.546703,13.635814 + 5591: 52.307117,13.625388 + 5592: 51.796703,13.646237 + 5593: 49.559258,16.663572 + 5594: 49.621758,15.91305 + 5595: 39.5167,13.473855 + 5596: 39.5167,13.473855 - node: cleanable: True color: '#FFFFFFFF' id: DirtMedium decals: - 5262: -9.987249,-3.9825282 - 5263: -10.039333,-3.0652246 - 5264: -10.039333,-3.0652246 - 5265: -10.039333,-3.0652246 - 5266: -9.514065,-6.5939417 - 5267: -8.961981,-6.531399 - 5268: -16.013287,-8.928868 - 5269: -15.992452,-9.043531 - 5270: -16.05495,-13.536976 - 5271: -16.6487,-13.495279 - 5272: -15.440369,-13.453585 - 5273: -15.440369,-13.453585 - 5320: -49.516518,2.6884825 - 5321: -49.47485,2.3549178 - 5418: -0.9314704,-31.036003 - 5419: -11.019344,-29.480032 - 5420: -17.54976,-27.853903 - 5421: -17.54976,-28.479338 - 5422: -17.54976,-28.594 - 5423: -17.67476,-29.63639 - 5424: -17.716427,-29.949108 - 5425: -17.758095,-30.553694 - 5426: -17.747677,-30.876835 - 5427: -17.76851,-31.231249 - 5428: -17.79976,-31.710749 - 5429: -17.79976,-32.11728 - 5430: -17.58101,-32.732292 - 5431: -17.133095,-32.721867 - 5432: -17.101845,-32.721867 - 5433: -17.101845,-32.85738 - 5434: -17.497677,-32.784412 + 4379: -9.987249,-3.9825282 + 4380: -10.039333,-3.0652246 + 4381: -10.039333,-3.0652246 + 4382: -10.039333,-3.0652246 + 4383: -9.514065,-6.5939417 + 4384: -8.961981,-6.531399 + 4385: -16.013287,-8.928868 + 4386: -15.992452,-9.043531 + 4387: -16.05495,-13.536976 + 4388: -16.6487,-13.495279 + 4389: -15.440369,-13.453585 + 4390: -15.440369,-13.453585 + 4437: -49.516518,2.6884825 + 4438: -49.47485,2.3549178 + 4535: -0.9314704,-31.036003 + 4536: -11.019344,-29.480032 + 4537: -17.54976,-27.853903 + 4538: -17.54976,-28.479338 + 4539: -17.54976,-28.594 + 4540: -17.67476,-29.63639 + 4541: -17.716427,-29.949108 + 4542: -17.758095,-30.553694 + 4543: -17.747677,-30.876835 + 4544: -17.76851,-31.231249 + 4545: -17.79976,-31.710749 + 4546: -17.79976,-32.11728 + 4547: -17.58101,-32.732292 + 4548: -17.133095,-32.721867 + 4549: -17.101845,-32.721867 + 4550: -17.101845,-32.85738 + 4551: -17.497677,-32.784412 - node: color: '#F9801DFF' id: FlowersBRTwo decals: - 5101: -74.36727,1.0510876 + 4221: -74.36727,1.0510876 - node: color: '#F9801DFF' id: Flowersbr1 decals: - 5099: -74.14852,3.1879885 + 4219: -74.14852,3.1879885 - node: color: '#FED83DFF' id: Flowersbr1 decals: - 3891: 51.722157,-50.67294 + 3071: 51.722157,-50.67294 - node: color: '#FFFFFFFF' id: Flowersbr1 decals: - 5024: -7.7392144,-18.074406 - 5025: -3.2704644,-16.114712 + 4144: -7.7392144,-18.074406 + 4145: -3.2704644,-16.114712 - node: color: '#169C9CFF' id: Flowersbr3 decals: - 5132: -52.107662,0.9340193 + 4252: -52.107662,0.9340193 - node: color: '#FED83DFF' id: Flowersbr3 decals: - 5062: -14.363294,-15.488698 + 4182: -14.363294,-15.488698 - node: color: '#FFFFFFFF' id: Flowersbr3 decals: - 3377: 19.843185,-45.26182 - 3378: 20.405685,-45.33479 - 3379: 19.770267,-45.407757 + 2675: 19.843185,-45.26182 + 2676: 20.405685,-45.33479 + 2677: 19.770267,-45.407757 - node: color: '#FFFFFFFF' id: Flowerspv1 decals: - 3380: 4.210721,-45.324364 + 2678: 4.210721,-45.324364 - node: color: '#FED83DFF' id: Flowerspv2 decals: - 5061: -14.790377,-18.13637 + 4181: -14.790377,-18.13637 - node: color: '#FFFFFFFF' id: Flowerspv2 decals: - 3381: 6.523221,-45.12631 - 5021: -4.8954644,-14.957659 - 5022: -8.916298,-16.156408 + 2679: 6.523221,-45.12631 + 4141: -4.8954644,-14.957659 + 4142: -8.916298,-16.156408 - node: color: '#169C9CFF' id: Flowerspv3 decals: - 5134: -50.451412,4.0403433 + 4254: -50.451412,4.0403433 - node: color: '#F9801DFF' id: Flowerspv3 decals: - 5100: -73.66935,2.1977174 + 4220: -73.66935,2.1977174 - node: color: '#FED83DFF' id: Flowerspv3 decals: - 3892: 52.451324,-50.631245 + 3072: 52.451324,-50.631245 - node: color: '#FFFFFFFF' id: Flowerspv3 decals: - 3382: 8.794054,-45.783016 - 5023: -9.041298,-18.053558 + 2680: 8.794054,-45.783016 + 4143: -9.041298,-18.053558 - node: color: '#169C9CFF' id: Flowersy1 decals: - 5133: -51.305576,4.0716143 + 4253: -51.305576,4.0716143 - node: color: '#FED83DFF' id: Flowersy1 decals: - 5060: -16.18621,-16.23922 + 4180: -16.18621,-16.23922 - node: color: '#FFFFFFFF' id: Flowersy1 decals: - 5019: -6.405881,-15.197409 - 5026: -1.1558809,-16.18768 + 4139: -6.405881,-15.197409 + 4146: -1.1558809,-16.18768 - node: color: '#FFFFFFFF' id: Flowersy4 decals: - 3374: 12.582768,-45.10546 - 3375: 13.332768,-45.115887 - 3376: 12.968184,-45.41818 - 5020: -5.791298,-15.426735 + 2672: 12.582768,-45.10546 + 2673: 13.332768,-45.115887 + 2674: 12.968184,-45.41818 + 4140: -5.791298,-15.426735 - node: color: '#1D1D21FF' id: FullTileOverlayGreyscale decals: - 552: 2,-52 - 553: 4,-52 + 456: 2,-52 + 457: 4,-52 - node: color: '#52B4E996' id: FullTileOverlayGreyscale decals: - 1104: 10,-35 - 1105: 11,-35 - 1106: 12,-35 - 1107: 13,-35 - 1143: 10,-32 - 1144: 10,-33 - 1145: 10,-34 - 1146: 13,-34 - 1147: 13,-33 - 1148: 13,-32 - 1149: 12,-32 - 1150: 11,-32 - 1159: 11,-34 - 1160: 12,-34 - 1163: 15,-32 - 1164: 15,-33 - 1165: 15,-34 - 4266: 21,-23 - 4267: 22,-23 - 4268: 23,-23 - 4269: 24,-23 - 4270: 25,-23 + 978: 10,-35 + 979: 11,-35 + 980: 12,-35 + 981: 13,-35 + 1017: 10,-32 + 1018: 10,-33 + 1019: 10,-34 + 1020: 13,-34 + 1021: 13,-33 + 1022: 13,-32 + 1023: 12,-32 + 1024: 11,-32 + 1033: 11,-34 + 1034: 12,-34 + 1037: 15,-32 + 1038: 15,-33 + 1039: 15,-34 + 3418: 21,-23 + 3419: 22,-23 + 3420: 23,-23 + 3421: 24,-23 + 3422: 25,-23 - node: color: '#D381C996' id: FullTileOverlayGreyscale decals: - 416: 3,-62 - 417: 3,-63 - 418: 4,-63 - 419: 4,-62 - 420: 5,-62 - 421: 5,-63 - 1265: 9,-67 - 1266: 9,-68 - 1267: 9,-69 - 1273: 9,-70 + 320: 3,-62 + 321: 3,-63 + 322: 4,-63 + 323: 4,-62 + 324: 5,-62 + 325: 5,-63 + 1139: 9,-67 + 1140: 9,-68 + 1141: 9,-69 + 1147: 9,-70 - node: cleanable: True angle: 7.853981633974483 rad @@ -5555,1300 +5614,1287 @@ entities: color: '#FFFFFFFF' id: Grassa2 decals: - 5018: -6.291298,-15.343344 + 4138: -6.291298,-15.343344 - node: color: '#FFFFFFFF' id: Grassa4 decals: - 5001: -6.135048,-15.332919 + 4121: -6.135048,-15.332919 - node: color: '#FFFFFFFF' id: Grassb2 decals: - 3875: 51.565907,-50.48531 + 3055: 51.565907,-50.48531 - node: color: '#FFFFFFFF' id: Grassb4 decals: - 3876: 52.763824,-50.787605 + 3056: 52.763824,-50.787605 - node: color: '#FFFFFFFF' id: Grassc1 decals: - 3355: 20.21592,-45.313942 - 3356: 18.955502,-45.991493 - 3358: 13.178092,-45.23055 - 3362: 8.396841,-45.57454 - 3363: 8.782258,-45.855984 - 3364: 9.219758,-45.63708 - 3373: 4.5151777,-45.303516 - 4995: -8.676715,-17.876352 - 5016: -6.1142144,-18.772808 - 5088: -73.21102,6.12753 - 5090: -74.02352,1.8745763 - 5091: -73.908936,1.5618589 - 5131: -50.243076,2.8207462 + 2653: 20.21592,-45.313942 + 2654: 18.955502,-45.991493 + 2656: 13.178092,-45.23055 + 2660: 8.396841,-45.57454 + 2661: 8.782258,-45.855984 + 2662: 9.219758,-45.63708 + 2671: 4.5151777,-45.303516 + 4115: -8.676715,-17.876352 + 4136: -6.1142144,-18.772808 + 4208: -73.21102,6.12753 + 4210: -74.02352,1.8745763 + 4211: -73.908936,1.5618589 + 4251: -50.243076,2.8207462 - node: color: '#FFFFFFFF' id: Grassc2 decals: - 3351: 16.976334,-46.06446 - 3357: 20.882584,-46.06446 - 3880: 51.909657,-49.839027 - 4996: -7.635048,-17.605331 + 2649: 16.976334,-46.06446 + 2655: 20.882584,-46.06446 + 3060: 51.909657,-49.839027 + 4116: -7.635048,-17.605331 - node: color: '#FFFFFFFF' id: Grassc3 decals: - 3350: 16.976334,-44.0318 - 3352: 22.986752,-44.177734 - 3360: 9.969758,-46.074886 - 3368: 5.1401777,-45.960224 - 3369: 3.9943447,-45.991493 - 3370: 2.9735117,-44.146465 - 3878: 52.055492,-51.089897 - 4997: -3.8329644,-15.051475 - 4998: -2.5829644,-16.020897 - 5010: -5.312131,-16.95905 - 5017: -4.905881,-18.824928 - 5087: -72.05477,4.9913244 - 5092: -73.46102,0.43607688 + 2648: 16.976334,-44.0318 + 2650: 22.986752,-44.177734 + 2658: 9.969758,-46.074886 + 2666: 5.1401777,-45.960224 + 2667: 3.9943447,-45.991493 + 2668: 2.9735117,-44.146465 + 3058: 52.055492,-51.089897 + 4117: -3.8329644,-15.051475 + 4118: -2.5829644,-16.020897 + 4130: -5.312131,-16.95905 + 4137: -4.905881,-18.824928 + 4207: -72.05477,4.9913244 + 4212: -73.46102,0.43607688 - node: color: '#FFFFFFFF' id: Grassc4 decals: - 3353: 23.018002,-46.022766 - 3354: 19.820084,-45.34521 - 3359: 12.761424,-45.240974 - 3361: 9.959341,-44.18816 - 3365: 6.386424,-45.001225 - 3366: 6.521841,-45.074192 - 3367: 4.8693447,-45.939373 - 3371: 3.0151777,-45.991493 - 3372: 3.9943447,-45.272243 - 3877: 51.107574,-50.443615 - 3879: 53.430492,-50.433193 - 4994: -8.843382,-15.812419 - 4999: -4.093381,-16.093864 - 5000: -1.2912979,-14.968083 - 5015: -6.499631,-15.343344 - 5086: -74.17977,4.17826 - 5089: -73.80477,2.9690864 - 5093: -72.283936,0.029544592 - 5094: -73.23185,-1.1796286 - 5095: -72.67977,-1.0024219 - 5111: -52.420162,1.2258885 - 5112: -50.586826,0.3607037 - 5113: -50.201412,1.6428444 - 5114: -51.201412,1.6219966 - 5115: -52.951412,3.0709198 - 5116: -52.909744,2.216159 - 5129: -52.607662,2.7165072 - 5130: -51.024326,3.6233873 + 2651: 23.018002,-46.022766 + 2652: 19.820084,-45.34521 + 2657: 12.761424,-45.240974 + 2659: 9.959341,-44.18816 + 2663: 6.386424,-45.001225 + 2664: 6.521841,-45.074192 + 2665: 4.8693447,-45.939373 + 2669: 3.0151777,-45.991493 + 2670: 3.9943447,-45.272243 + 3057: 51.107574,-50.443615 + 3059: 53.430492,-50.433193 + 4114: -8.843382,-15.812419 + 4119: -4.093381,-16.093864 + 4120: -1.2912979,-14.968083 + 4135: -6.499631,-15.343344 + 4206: -74.17977,4.17826 + 4209: -73.80477,2.9690864 + 4213: -72.283936,0.029544592 + 4214: -73.23185,-1.1796286 + 4215: -72.67977,-1.0024219 + 4231: -52.420162,1.2258885 + 4232: -50.586826,0.3607037 + 4233: -50.201412,1.6428444 + 4234: -51.201412,1.6219966 + 4235: -52.951412,3.0709198 + 4236: -52.909744,2.216159 + 4249: -52.607662,2.7165072 + 4250: -51.024326,3.6233873 - node: color: '#FFFFFFFF' id: Grassd1 decals: - 4978: -9.093382,-16.208527 - 4979: -9.062132,-15.614366 - 4980: -4.166298,-16.020897 - 4981: -0.9579644,-14.957659 - 5047: -13.921192,-14.957659 - 5053: -16.129526,-16.941525 - 5072: -74.0756,2.802304 - 5073: -73.565186,2.7814558 - 5104: -52.034744,1.1112254 - 5106: -50.388912,1.6428444 - 5123: -50.628494,3.5295715 - 5124: -52.243076,2.737355 + 4098: -9.093382,-16.208527 + 4099: -9.062132,-15.614366 + 4100: -4.166298,-16.020897 + 4101: -0.9579644,-14.957659 + 4167: -13.921192,-14.957659 + 4173: -16.129526,-16.941525 + 4192: -74.0756,2.802304 + 4193: -73.565186,2.7814558 + 4224: -52.034744,1.1112254 + 4226: -50.388912,1.6428444 + 4243: -50.628494,3.5295715 + 4244: -52.243076,2.737355 - node: color: '#FFFFFFFF' id: Grassd2 decals: - 4985: -9.114215,-17.8972 - 4986: -0.9162979,-15.906235 - 4987: -3.322548,-15.781148 - 5014: -4.9267144,-14.915963 - 5054: -16.108692,-17.858828 - 5058: -13.848276,-17.433235 - 5059: -14.077442,-16.599321 - 5074: -74.158936,3.7821503 - 5075: -73.71102,3.7404556 - 5107: -49.847244,1.476062 - 5110: -52.232662,0.46494317 - 5122: -51.524326,3.4983003 - 5128: -49.920162,2.7582023 + 4105: -9.114215,-17.8972 + 4106: -0.9162979,-15.906235 + 4107: -3.322548,-15.781148 + 4134: -4.9267144,-14.915963 + 4174: -16.108692,-17.858828 + 4178: -13.848276,-17.433235 + 4179: -14.077442,-16.599321 + 4194: -74.158936,3.7821503 + 4195: -73.71102,3.7404556 + 4227: -49.847244,1.476062 + 4230: -52.232662,0.46494317 + 4242: -51.524326,3.4983003 + 4248: -49.920162,2.7582023 - node: color: '#FFFFFFFF' id: Grassd3 decals: - 1580: 37,-88 - 1581: 37.601788,-88.06885 - 1582: 36.758038,-88.829796 - 1583: 37.185123,-89.25717 - 1584: 37.716373,-88.642166 - 1585: 38.299706,-88.01673 - 1586: 38.341373,-88.829796 - 4982: -4.135048,-14.936811 - 4983: -1.7912979,-14.936811 - 4984: -8.510048,-18.022287 - 5008: -4.853798,-17.136255 - 5055: -15.504526,-18.667604 - 5057: -14.462859,-17.412386 - 5076: -74.096436,4.55352 - 5108: -49.940994,0.40239978 - 5120: -49.930576,3.5608435 - 5121: -52.190994,3.571268 - 5126: -52.284744,1.788779 + 1432: 37,-88 + 1433: 37.601788,-88.06885 + 1434: 36.758038,-88.829796 + 1435: 37.185123,-89.25717 + 1436: 37.716373,-88.642166 + 1437: 38.299706,-88.01673 + 1438: 38.341373,-88.829796 + 4102: -4.135048,-14.936811 + 4103: -1.7912979,-14.936811 + 4104: -8.510048,-18.022287 + 4128: -4.853798,-17.136255 + 4175: -15.504526,-18.667604 + 4177: -14.462859,-17.412386 + 4196: -74.096436,4.55352 + 4228: -49.940994,0.40239978 + 4240: -49.930576,3.5608435 + 4241: -52.190994,3.571268 + 4246: -52.284744,1.788779 - node: color: '#FFFFFFFF' id: Grasse1 decals: - 4988: -8.082965,-16.250223 - 4989: -7.635048,-17.292614 - 4990: -3.1767144,-15.020203 - 5009: -5.5204644,-19.033405 - 5048: -13.973275,-15.2912245 - 5077: -73.127686,5.7626934 - 5078: -72.64852,6.044139 - 5079: -72.065186,5.0121717 - 5109: -50.836826,0.41282344 - 5119: -50.076412,4.0716143 + 4108: -8.082965,-16.250223 + 4109: -7.635048,-17.292614 + 4110: -3.1767144,-15.020203 + 4129: -5.5204644,-19.033405 + 4168: -13.973275,-15.2912245 + 4197: -73.127686,5.7626934 + 4198: -72.64852,6.044139 + 4199: -72.065186,5.0121717 + 4229: -50.836826,0.41282344 + 4239: -50.076412,4.0716143 - node: color: '#FFFFFFFF' id: Grasse2 decals: - 4991: -2.322548,-15.958354 - 4992: -8.957965,-17.073711 - 5004: -4.968381,-16.656755 - 5005: -6.3017144,-19.043829 - 5012: -6.7079644,-15.04105 - 5049: -14.744109,-15.4684305 - 5050: -13.869109,-15.916658 - 5051: -15.577442,-15.603941 - 5068: -74.08602,0.82176185 - 5069: -73.71102,0.8113377 - 5080: -71.971436,0.11293578 - 5081: -72.83602,0.18590331 - 5082: -72.783936,-0.71055245 - 5083: -72.73185,-1.064965 - 5084: -73.2006,-1.0753894 - 5085: -73.29435,-0.16850924 - 5102: -53.003494,3.091768 - 5118: -51.034744,4.1237345 - 5125: -51.399326,2.6852357 + 4111: -2.322548,-15.958354 + 4112: -8.957965,-17.073711 + 4124: -4.968381,-16.656755 + 4125: -6.3017144,-19.043829 + 4132: -6.7079644,-15.04105 + 4169: -14.744109,-15.4684305 + 4170: -13.869109,-15.916658 + 4171: -15.577442,-15.603941 + 4188: -74.08602,0.82176185 + 4189: -73.71102,0.8113377 + 4200: -71.971436,0.11293578 + 4201: -72.83602,0.18590331 + 4202: -72.783936,-0.71055245 + 4203: -72.73185,-1.064965 + 4204: -73.2006,-1.0753894 + 4205: -73.29435,-0.16850924 + 4222: -53.003494,3.091768 + 4238: -51.034744,4.1237345 + 4245: -51.399326,2.6852357 - node: color: '#FFFFFFFF' id: Grasse3 decals: - 3870: 50.867992,-50.433193 - 3871: 52.492992,-51.07947 - 3872: 51.659657,-51.06905 - 3873: 53.107574,-50.3498 - 3874: 51.961742,-49.81818 - 4993: -7.5933814,-18.13695 - 5006: -5.603798,-17.146679 - 5007: -4.947548,-19.064678 - 5011: -6.3329644,-15.781148 - 5013: -5.780881,-14.884692 - 5052: -16.08786,-16.250223 - 5056: -14.764942,-18.14206 - 5070: -74.096436,1.7286413 - 5071: -73.690186,1.7494895 - 5103: -53.034744,2.038953 - 5105: -51.315994,1.611573 - 5117: -52.013912,4.082039 - 5127: -50.482662,2.7165072 + 3050: 50.867992,-50.433193 + 3051: 52.492992,-51.07947 + 3052: 51.659657,-51.06905 + 3053: 53.107574,-50.3498 + 3054: 51.961742,-49.81818 + 4113: -7.5933814,-18.13695 + 4126: -5.603798,-17.146679 + 4127: -4.947548,-19.064678 + 4131: -6.3329644,-15.781148 + 4133: -5.780881,-14.884692 + 4172: -16.08786,-16.250223 + 4176: -14.764942,-18.14206 + 4190: -74.096436,1.7286413 + 4191: -73.690186,1.7494895 + 4223: -53.034744,2.038953 + 4225: -51.315994,1.611573 + 4237: -52.013912,4.082039 + 4247: -50.482662,2.7165072 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale decals: - 247: 27,-26 - 248: 26,-26 - 249: 24,-26 - 250: 23,-26 - 251: 22,-26 - 296: 23,-27 - 297: 24,-27 - 298: 25,-27 - 299: 26,-27 - 300: 27,-27 - 303: 24,-28 - 304: 25,-28 - 305: 26,-28 - 954: 17,-13 - 955: 16,-13 - 968: 16,-19 - 969: 17,-19 - 970: 16,-16 - 971: 17,-16 - 981: 17,-22 - 982: 16,-22 - 1061: 21,-33 - 1062: 20,-33 - 1063: 19,-33 - 1096: 11,-30 - 1097: 12,-30 - 1098: 13,-30 - 1099: 14,-30 - 1100: 15,-30 - 4249: 22,-22 - 4250: 23,-22 - 4251: 24,-22 + 151: 27,-26 + 152: 26,-26 + 153: 24,-26 + 154: 23,-26 + 155: 22,-26 + 200: 23,-27 + 201: 24,-27 + 202: 25,-27 + 203: 26,-27 + 204: 27,-27 + 207: 24,-28 + 208: 25,-28 + 209: 26,-28 + 828: 17,-13 + 829: 16,-13 + 842: 16,-19 + 843: 17,-19 + 844: 16,-16 + 845: 17,-16 + 855: 17,-22 + 856: 16,-22 + 935: 21,-33 + 936: 20,-33 + 937: 19,-33 + 970: 11,-30 + 971: 12,-30 + 972: 13,-30 + 973: 14,-30 + 974: 15,-30 + 3401: 22,-22 + 3402: 23,-22 + 3403: 24,-22 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale decals: - 1837: 38,18 - 1838: 43,18 - 1839: 44,18 - 1840: 45,18 - 1841: 46,18 - 1842: 47,18 - 1843: 51,18 - 1844: 52,18 - 1845: 53,18 - 1846: 54,18 - 1847: 44,13 - 1848: 45,13 - 1849: 46,13 - 1850: 48,13 - 1851: 49,13 - 1870: 58,18 - 1996: 41,18 - 1997: 42,18 - 4398: -19,-14 - 4399: -20,-14 - 4400: -21,-14 + 3550: -19,-14 + 3551: -20,-14 + 3552: -21,-14 - node: color: '#D381C996' id: HalfTileOverlayGreyscale decals: - 503: 1,-54 - 504: 2,-54 - 505: 4,-54 - 506: 5,-54 + 407: 1,-54 + 408: 2,-54 + 409: 4,-54 + 410: 5,-54 - node: color: '#EAEBEE93' id: HalfTileOverlayGreyscale decals: - 5638: 15,-31 - 5639: 15,-31 - 5640: 15,-31 - - node: - color: '#F9801D80' - id: HalfTileOverlayGreyscale - decals: - 4203: 12,-22 - 4204: 11,-22 + 4755: 15,-31 + 4756: 15,-31 + 4757: 15,-31 - node: color: '#F9FFFEFF' id: HalfTileOverlayGreyscale decals: - 1175: 15,-31 + 1049: 15,-31 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 decals: - 253: 23,-31 - 254: 24,-31 - 255: 25,-31 - 256: 26,-31 - 257: 27,-31 - 310: 27,-30 - 311: 26,-30 - 312: 25,-30 - 313: 24,-30 - 314: 23,-30 - 317: 24,-29 - 318: 25,-29 - 319: 26,-29 - 962: 16,-14 - 963: 17,-14 - 964: 16,-17 - 965: 17,-17 - 966: 16,-20 - 967: 17,-20 - 986: 17,-28 - 1066: 20,-35 - 1067: 21,-35 - 1103: 15,-35 - 1113: 11,-31 - 1114: 12,-31 - 1115: 13,-31 - 1166: 15,-31 - 4254: 22,-24 - 4255: 23,-24 - 4256: 24,-24 + 157: 23,-31 + 158: 24,-31 + 159: 25,-31 + 160: 26,-31 + 161: 27,-31 + 214: 27,-30 + 215: 26,-30 + 216: 25,-30 + 217: 24,-30 + 218: 23,-30 + 221: 24,-29 + 222: 25,-29 + 223: 26,-29 + 836: 16,-14 + 837: 17,-14 + 838: 16,-17 + 839: 17,-17 + 840: 16,-20 + 841: 17,-20 + 860: 17,-28 + 940: 20,-35 + 941: 21,-35 + 977: 15,-35 + 987: 11,-31 + 988: 12,-31 + 989: 13,-31 + 1040: 15,-31 + 3406: 22,-24 + 3407: 23,-24 + 3408: 24,-24 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale180 decals: - 1871: 39,15 - 1872: 41,15 - 1873: 42,15 - 1874: 43,15 - 1875: 44,15 - 1876: 45,15 - 1877: 46,15 - 1878: 54,6 - 1879: 58,15 - 4407: -20,-22 - 4408: -19,-22 - 4409: -18,-22 - 4410: -17,-22 - 4411: -16,-22 - 4412: -15,-22 + 3559: -20,-22 + 3560: -19,-22 + 3561: -18,-22 + 3562: -17,-22 + 3563: -16,-22 + 3564: -15,-22 - node: color: '#D381C996' id: HalfTileOverlayGreyscale180 decals: - 513: 5,-59 - 514: 4,-59 - 515: 3,-59 - 520: 1,-55 + 417: 5,-59 + 418: 4,-59 + 419: 3,-59 + 424: 1,-55 - node: color: '#F9801D80' id: HalfTileOverlayGreyscale180 decals: - 4197: 12,-28 - 4198: 11,-28 + 3357: 12,-28 + 3358: 11,-28 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale270 decals: - 271: 21,-27 - 272: 21,-30 - 292: 21,-29 - 320: 22,-29 - 321: 22,-28 - 977: 18,-15 - 978: 18,-18 - 979: 18,-21 - 984: 15,-27 - 988: 18,-30 - 1109: 14,-34 - 1110: 14,-33 - 1111: 14,-32 - 4252: 15,-24 - 4253: 15,-26 + 175: 21,-27 + 176: 21,-30 + 196: 21,-29 + 224: 22,-29 + 225: 22,-28 + 851: 18,-15 + 852: 18,-18 + 853: 18,-21 + 858: 15,-27 + 862: 18,-30 + 983: 14,-34 + 984: 14,-33 + 985: 14,-32 + 3404: 15,-24 + 3405: 15,-26 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale270 decals: - 1860: 37,16 - 1861: 37,17 - 1862: 50,17 - 1863: 50,16 - 1864: 50,15 - 1865: 50,14 - 1866: 46,8 - 1867: 43,10 - 1868: 43,12 - 1869: 57,17 - 4401: -22,-15 - 4402: -21,-17 - 4403: -21,-18 - 4404: -21,-19 - 4405: -21,-20 - 4406: -21,-21 + 3553: -22,-15 + 3554: -21,-17 + 3555: -21,-18 + 3556: -21,-19 + 3557: -21,-20 + 3558: -21,-21 - node: color: '#D381C996' id: HalfTileOverlayGreyscale270 decals: - 516: 2,-58 - 517: 2,-57 - 518: 2,-56 - 1277: 8,-70 - 1278: 8,-69 - 1279: 8,-68 - 1280: 8,-67 + 420: 2,-58 + 421: 2,-57 + 422: 2,-56 + 1151: 8,-70 + 1152: 8,-69 + 1153: 8,-68 + 1154: 8,-67 - node: color: '#F9801D80' id: HalfTileOverlayGreyscale270 decals: - 4200: 10,-27 - 4201: 10,-26 - 4202: 10,-24 - 4209: 10,-25 + 3360: 10,-27 + 3361: 10,-26 + 3362: 10,-24 + 3365: 10,-25 - node: color: '#0E7F1B81' id: HalfTileOverlayGreyscale90 decals: - 939: 19,-18 - 940: 19,-15 - 941: 19,-14 - 942: 19,-13 + 813: 19,-18 + 814: 19,-15 + 815: 19,-14 + 816: 19,-13 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale90 decals: - 258: 29,-30 - 273: 29,-27 - 306: 28,-28 - 307: 28,-29 - 932: 19,-27 - 933: 19,-25 - 934: 19,-24 - 935: 19,-22 - 936: 19,-21 - 937: 19,-20 - 938: 19,-19 - 990: 19,-30 - 991: 19,-29 - 1101: 16,-32 - 1102: 16,-33 - 4271: 26,-23 - - node: - color: '#9FED5896' - id: HalfTileOverlayGreyscale90 - decals: - 1880: 48,17 - 1881: 48,16 - 1882: 55,17 - 1883: 55,15 - 1884: 59,17 - 1885: 59,16 - 1886: 55,7 + 162: 29,-30 + 177: 29,-27 + 210: 28,-28 + 211: 28,-29 + 806: 19,-27 + 807: 19,-25 + 808: 19,-24 + 809: 19,-22 + 810: 19,-21 + 811: 19,-20 + 812: 19,-19 + 864: 19,-30 + 865: 19,-29 + 975: 16,-32 + 976: 16,-33 + 3423: 26,-23 - node: color: '#D381C996' id: HalfTileOverlayGreyscale90 decals: - 508: 6,-55 - 509: 6,-56 - 510: 6,-57 - 511: 6,-58 - 1281: 10,-67 - 1282: 10,-68 - 1283: 10,-69 - 1284: 10,-70 + 412: 6,-55 + 413: 6,-56 + 414: 6,-57 + 415: 6,-58 + 1155: 10,-67 + 1156: 10,-68 + 1157: 10,-69 + 1158: 10,-70 - node: color: '#F9801D80' id: HalfTileOverlayGreyscale90 decals: - 4196: 13,-24 - 4199: 13,-26 - 4231: 13,-27 + 3356: 13,-24 + 3359: 13,-26 + 3383: 13,-27 + - node: + color: '#FFFFFFFF' + id: LoadingArea + decals: + 4807: 24,31 + 4812: 22,33 + 4815: 24,21 + 4816: 25,16 + 4817: 25,12 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 4808: 25,31 + 4813: 18,33 + 4814: 25,21 + 4818: 24,12 + 4819: 24,16 - node: cleanable: True angle: -1.5707963267948966 rad color: '#16B464FF' id: Max decals: - 58: 49.021217,-13.107667 + 24: 49.021217,-13.107667 - node: color: '#52B4E996' id: MiniTileCheckerAOverlay decals: - 1211: 25,-38 - 1212: 24,-38 - 1213: 23,-38 - 1214: 25,-37 - 1215: 25,-36 - 1216: 25,-35 - 1217: 25,-34 + 1085: 25,-38 + 1086: 24,-38 + 1087: 23,-38 + 1088: 25,-37 + 1089: 25,-36 + 1090: 25,-35 + 1091: 25,-34 - node: color: '#D381C996' id: MiniTileCheckerBOverlay decals: - 1220: 20,-57 - 1221: 20,-58 - 1222: 20,-59 - 1223: 20,-60 - 1224: 20,-61 - 1225: 20,-62 - 1226: 25,-51 - 1227: 25,-55 - 1228: 25,-56 - 1229: 21,-52 - 1230: 21,-51 - 1231: 20,-51 - 1232: 20,-52 - 1233: 19,-52 - 1234: 19,-51 - - node: - color: '#EFB34196' - id: MiniTileCheckerBOverlay - decals: - 1830: 15,17 - 1831: 15,18 - 1832: 14,18 - 1833: 14,17 + 1094: 20,-57 + 1095: 20,-58 + 1096: 20,-59 + 1097: 20,-60 + 1098: 20,-61 + 1099: 20,-62 + 1100: 25,-51 + 1101: 25,-55 + 1102: 25,-56 + 1103: 21,-52 + 1104: 21,-51 + 1105: 20,-51 + 1106: 20,-52 + 1107: 19,-52 + 1108: 19,-51 - node: angle: 4.71238898038469 rad color: '#5E7C16FF' id: MiniTileDiagonalCheckerAOverlay decals: - 4023: -28,-32 - 4024: -27,-32 - 4025: -27,-31 - 4026: -28,-31 - 4027: -28,-30 - 4028: -27,-30 - 4029: -27,-29 - 4030: -28,-29 - 4031: -28,-28 - 4032: -27,-28 - 4033: -27,-27 - 4034: -28,-27 - 4035: -27,-23 - 4036: -28,-23 - 4037: -28,-22 - 4038: -27,-22 - 4039: -27,-21 - 4040: -28,-21 - 4041: -28,-20 - 4042: -27,-20 - 4043: -27,-19 - 4044: -28,-19 - 4045: -28,-18 - 4046: -27,-18 + 3183: -28,-32 + 3184: -27,-32 + 3185: -27,-31 + 3186: -28,-31 + 3187: -28,-30 + 3188: -27,-30 + 3189: -27,-29 + 3190: -28,-29 + 3191: -28,-28 + 3192: -27,-28 + 3193: -27,-27 + 3194: -28,-27 + 3195: -27,-23 + 3196: -28,-23 + 3197: -28,-22 + 3198: -27,-22 + 3199: -27,-21 + 3200: -28,-21 + 3201: -28,-20 + 3202: -27,-20 + 3203: -27,-19 + 3204: -28,-19 + 3205: -28,-18 + 3206: -27,-18 - node: color: '#D381C996' id: MiniTileDiagonalCheckerAOverlay decals: - 1255: 13,-69 - 1256: 14,-69 - 1257: 15,-69 - 1258: 16,-69 - 1259: 16,-68 - 1260: 16,-67 - 1261: 15,-67 - 1262: 14,-67 - 1263: 13,-67 - 1264: 13,-68 + 1129: 13,-69 + 1130: 14,-69 + 1131: 15,-69 + 1132: 16,-69 + 1133: 16,-68 + 1134: 16,-67 + 1135: 15,-67 + 1136: 14,-67 + 1137: 13,-67 + 1138: 13,-68 - node: color: '#52B4E996' id: MiniTileDiagonalCheckerBOverlay decals: - 1092: 17,-24 - 1093: 17,-25 - 1094: 17,-26 + 966: 17,-24 + 967: 17,-25 + 968: 17,-26 - node: angle: 4.71238898038469 rad color: '#835432FF' id: MiniTileDiagonalCheckerBOverlay decals: - 3999: -28,-18 - 4000: -27,-18 - 4001: -27,-19 - 4002: -28,-19 - 4003: -28,-20 - 4004: -27,-20 - 4005: -27,-21 - 4006: -28,-21 - 4007: -28,-22 - 4008: -27,-22 - 4009: -27,-23 - 4010: -28,-23 - 4011: -28,-27 - 4012: -27,-27 - 4013: -27,-28 - 4014: -28,-28 - 4015: -28,-29 - 4016: -27,-29 - 4017: -27,-30 - 4018: -28,-30 - 4019: -28,-31 - 4020: -27,-31 - 4021: -27,-32 - 4022: -28,-32 + 3159: -28,-18 + 3160: -27,-18 + 3161: -27,-19 + 3162: -28,-19 + 3163: -28,-20 + 3164: -27,-20 + 3165: -27,-21 + 3166: -28,-21 + 3167: -28,-22 + 3168: -27,-22 + 3169: -27,-23 + 3170: -28,-23 + 3171: -28,-27 + 3172: -27,-27 + 3173: -27,-28 + 3174: -28,-28 + 3175: -28,-29 + 3176: -27,-29 + 3177: -27,-30 + 3178: -28,-30 + 3179: -28,-31 + 3180: -27,-31 + 3181: -27,-32 + 3182: -28,-32 + - node: + color: '#9D9D97E3' + id: MiniTileSteelCornerNe + decals: + 4897: 38,28 + - node: + color: '#9D9D97E3' + id: MiniTileSteelCornerNw + decals: + 4892: 32,28 + - node: + color: '#9D9D97E3' + id: MiniTileSteelCornerSe + decals: + 4901: 38,24 + - node: + color: '#9D9D97E3' + id: MiniTileSteelCornerSw + decals: + 4907: 32,24 + - node: + color: '#9D9D97E3' + id: MiniTileSteelLineE + decals: + 4898: 38,27 + 4899: 38,26 + 4900: 38,25 + - node: + color: '#9D9D97E3' + id: MiniTileSteelLineN + decals: + 4893: 33,28 + 4894: 35,28 + 4895: 36,28 + 4896: 37,28 + 4919: 34,28 + - node: + color: '#9D9D97E3' + id: MiniTileSteelLineS + decals: + 4902: 37,24 + 4903: 36,24 + 4904: 35,24 + 4905: 34,24 + 4906: 33,24 + - node: + color: '#A46106CC' + id: MiniTileSteelLineS + decals: + 5304: 3,32 + 5305: 4,32 + 5306: 6,32 + - node: + color: '#9D9D97E3' + id: MiniTileSteelLineW + decals: + 4908: 32,27 - node: color: '#334E6DC8' id: MiniTileWhiteCornerNe decals: - 206: -22,-53 + 110: -22,-53 + - node: + color: '#A46106CC' + id: MiniTileWhiteCornerNe + decals: + 5324: 25,35 + 5343: 18,22 + 5358: 27,22 + 5363: 29,18 + 5380: 19,15 + 5402: 35,18 - node: color: '#EFB34196' id: MiniTileWhiteCornerNe decals: - 1645: 32,18 - 1658: 38,28 - 5716: 7,30 + 1490: 38,28 - node: color: '#334E6DC8' id: MiniTileWhiteCornerNw decals: - 205: -26,-53 + 109: -26,-53 + - node: + color: '#A46106CC' + id: MiniTileWhiteCornerNw + decals: + 5331: 21,29 + 5384: 15,15 + 5398: 31,18 + - node: + color: '#A46106E5' + id: MiniTileWhiteCornerNw + decals: + 4786: 4,35 - node: color: '#EFB34196' id: MiniTileWhiteCornerNw decals: - 1677: 4,35 - 1744: 32,28 - 1760: 20,17 - 3804: 24,15 + 1503: 32,28 - node: color: '#334E6DC8' id: MiniTileWhiteCornerSe decals: - 207: -22,-54 + 111: -22,-54 + - node: + color: '#A46106CC' + id: MiniTileWhiteCornerSe + decals: + 5312: 14,30 + 5347: 18,17 + 5365: 29,15 + 5391: 35,13 - node: color: '#EFB34196' id: MiniTileWhiteCornerSe decals: - 1650: 32,13 - 1662: 38,24 - 1764: 22,16 - 5732: 7,13 + 1494: 38,24 - node: color: '#334E6DC8' id: MiniTileWhiteCornerSw decals: - 211: -26,-54 + 115: -26,-54 + - node: + color: '#A46106CC' + id: MiniTileWhiteCornerSw + decals: + 5336: 21,24 + 5351: 14,17 + 5355: 13,20 + 5379: 20,17 + 5394: 31,13 + - node: + color: '#A46106E5' + id: MiniTileWhiteCornerSw + decals: + 4797: 9,30 - node: color: '#EFB34196' id: MiniTileWhiteCornerSw decals: - 1668: 32,24 - 1671: 9,30 - 1813: 14,24 - 1819: 11,26 - 3802: 24,13 + 1500: 32,24 - node: color: '#334E6DC8' id: MiniTileWhiteInnerNe decals: - 4447: -20,-45 + 3599: -20,-45 + - node: + color: '#A46106CC' + id: MiniTileWhiteInnerNe + decals: + 5361: 27,18 - node: color: '#EFB34196' id: MiniTileWhiteInnerNe decals: - 1694: 24,27 - 1710: 29,26 - 1745: 35,28 - 1769: 25,18 - 1777: 23,17 - 1786: 24,20 - 1812: 14,24 - 1822: 12,27 - 3948: 29,11 + 1504: 35,28 + - node: + color: '#A46106CC' + id: MiniTileWhiteInnerNw + decals: + 5330: 22,29 - node: color: '#EFB34196' id: MiniTileWhiteInnerNw decals: - 1691: 23,27 - 1711: 29,27 - 1720: 23,32 - 1742: 32,26 - 1746: 35,28 - 1747: 20,11 - 1757: 20,14 - 1762: 22,17 - 1771: 25,17 - 1787: 23,20 - 1795: 23,24 - 3803: 25,15 - 3947: 29,11 + 1505: 35,28 - node: color: '#334E6DC8' id: MiniTileWhiteInnerSe decals: - 4446: -20,-45 + 3598: -20,-45 - node: color: '#9FED5896' id: MiniTileWhiteInnerSe decals: - 4372: -11,-13 + 3524: -11,-13 - node: - color: '#EFB34196' + color: '#A46106CC' id: MiniTileWhiteInnerSe decals: - 1698: 24,26 - 1763: 21,16 - 1765: 22,17 - 1780: 23,20 - 1783: 25,20 - 1815: 14,26 - 1825: 12,30 - 3944: 29,13 + 5313: 14,31 + 5370: 22,15 - node: color: '#9FED5896' id: MiniTileWhiteInnerSw decals: - 4373: -12,-13 + 3525: -12,-13 - node: - color: '#EFB34196' + color: '#A46106CC' id: MiniTileWhiteInnerSw decals: - 1674: 9,32 - 1690: 23,26 - 1717: 23,32 - 1743: 32,26 - 1754: 20,14 - 1768: 25,17 - 1784: 22,20 - 1794: 23,24 - 1816: 14,26 - 1826: 11,30 - 3942: 25,20 - 3943: 29,13 + 5328: 22,31 + 5337: 22,24 + 5354: 14,20 + 5378: 21,17 + - node: + color: '#A46106E5' + id: MiniTileWhiteInnerSw + decals: + 4795: 9,32 + - node: + color: '#A46106CC' + id: MiniTileWhiteLineE + decals: + 5325: 25,34 + 5326: 25,33 + 5327: 25,32 + 5344: 18,21 + 5345: 18,20 + 5346: 18,19 + 5359: 27,20 + 5360: 27,19 + 5364: 29,16 + 5371: 22,14 + 5372: 22,13 + 5373: 22,12 + 5386: 19,13 + 5387: 35,17 + 5388: 35,16 + 5389: 35,15 + 5390: 35,14 - node: color: '#EFB34196' id: MiniTileWhiteLineE decals: - 1646: 32,17 - 1647: 32,16 - 1648: 32,15 - 1649: 32,14 - 1659: 38,27 - 1660: 38,26 - 1661: 38,25 - 1670: 14,25 - 1692: 24,29 - 1693: 24,28 - 1696: 24,24 - 1697: 24,25 - 1712: 29,27 - 1713: 29,28 - 1723: 24,34 - 1724: 24,33 - 1725: 24,32 - 1726: 24,31 - 1727: 24,30 - 1748: 21,12 - 1749: 21,13 - 1750: 21,14 - 1751: 21,15 - 1772: 25,19 - 1778: 23,18 - 1779: 23,19 - 1791: 24,21 - 1792: 24,22 - 1793: 24,23 - 1823: 12,28 - 1824: 12,29 - 3945: 29,12 - 5717: 7,29 - 5718: 7,28 - 5719: 7,26 - 5720: 7,25 - 5721: 7,24 - 5722: 7,23 - 5723: 7,22 - 5724: 7,21 - 5725: 7,20 - 5726: 7,19 - 5727: 7,18 - 5728: 7,17 - 5729: 7,16 - 5730: 7,15 - 5731: 7,14 + 1491: 38,27 + 1492: 38,26 + 1493: 38,25 + 4784: 7,22 - node: color: '#334E6DC8' id: MiniTileWhiteLineN decals: - 202: -23,-53 - 203: -24,-53 - 204: -25,-53 + 106: -23,-53 + 107: -24,-53 + 108: -25,-53 + - node: + color: '#A46106CC' + id: MiniTileWhiteLineN + decals: + 5319: 16,35 + 5320: 17,35 + 5321: 20,35 + 5322: 23,35 + 5323: 24,35 + 5339: 14,22 + 5340: 15,22 + 5341: 16,22 + 5342: 17,22 + 5357: 26,22 + 5362: 28,18 + 5381: 18,15 + 5382: 17,15 + 5383: 16,15 + 5399: 32,18 + 5400: 33,18 + 5401: 34,18 + - node: + color: '#A46106E5' + id: MiniTileWhiteLineN + decals: + 4787: 5,35 + 4788: 6,35 + 4789: 7,35 + 4790: 8,35 + 4791: 9,35 + 4792: 12,35 - node: color: '#EFB34196' id: MiniTileWhiteLineN decals: - 1639: 26,18 - 1640: 27,18 - 1641: 28,18 - 1642: 29,18 - 1643: 30,18 - 1644: 31,18 - 1655: 34,28 - 1656: 36,28 - 1657: 37,28 - 1678: 5,35 - 1679: 6,35 - 1680: 7,35 - 1681: 8,35 - 1682: 9,35 - 1683: 12,35 - 1684: 21,27 - 1685: 22,27 - 1699: 25,27 - 1700: 26,27 - 1701: 27,27 - 1702: 28,27 - 1709: 30,26 - 1719: 22,32 - 1734: 15,27 - 1735: 16,27 - 1736: 17,27 - 1737: 18,27 - 1738: 19,27 - 1739: 20,27 - 1740: 33,28 - 1756: 19,14 - 1761: 21,17 - 1776: 24,17 - 1782: 25,20 - 1785: 22,20 - 1796: 22,24 - 1797: 21,24 - 1798: 20,24 - 1799: 19,24 - 1800: 18,24 - 1801: 17,24 - 1802: 16,24 - 1803: 15,24 - 1820: 14,27 - 1821: 13,27 + 1488: 36,28 + 1489: 37,28 + 1501: 33,28 - node: color: '#334E6DC8' id: MiniTileWhiteLineS decals: - 208: -23,-54 - 209: -24,-54 - 210: -25,-54 + 112: -23,-54 + 113: -24,-54 + 114: -25,-54 + - node: + color: '#A46106CC' + id: MiniTileWhiteLineS + decals: + 5307: 6,32 + 5308: 4,32 + 5309: 3,32 + 5310: 12,30 + 5311: 13,30 + 5314: 15,31 + 5315: 16,31 + 5316: 19,31 + 5317: 20,31 + 5318: 21,31 + 5348: 17,17 + 5349: 16,17 + 5350: 15,17 + 5366: 28,15 + 5367: 27,15 + 5368: 26,15 + 5369: 23,15 + 5392: 33,13 + 5393: 32,13 + - node: + color: '#A46106E5' + id: MiniTileWhiteLineS + decals: + 4793: 7,32 + 4794: 8,32 + 4798: 10,30 - node: color: '#EFB34196' id: MiniTileWhiteLineS decals: - 1651: 31,13 - 1652: 30,13 - 1653: 28,13 - 1654: 27,13 - 1663: 37,24 - 1664: 36,24 - 1665: 35,24 - 1666: 34,24 - 1667: 33,24 - 1672: 10,30 - 1675: 8,32 - 1676: 7,32 - 1688: 21,26 - 1689: 22,26 - 1703: 25,26 - 1704: 26,26 - 1705: 27,26 - 1706: 28,26 - 1707: 29,26 - 1708: 30,26 - 1718: 22,32 - 1728: 19,26 - 1729: 18,26 - 1730: 17,26 - 1731: 16,26 - 1732: 15,26 - 1733: 20,26 - 1755: 19,14 - 1766: 23,17 - 1767: 24,17 - 1781: 24,20 - 1804: 22,24 - 1805: 21,24 - 1806: 20,24 - 1807: 19,24 - 1808: 18,24 - 1809: 17,24 - 1810: 16,24 - 1811: 15,24 - 1817: 13,26 - 1818: 12,26 - 3806: 25,13 - 3949: 26,13 + 1495: 37,24 + 1496: 36,24 + 1497: 35,24 + 1498: 34,24 + 1499: 33,24 + - node: + color: '#A46106CC' + id: MiniTileWhiteLineW + decals: + 5329: 22,30 + 5332: 21,28 + 5333: 21,27 + 5334: 21,26 + 5335: 21,25 + 5338: 22,23 + 5352: 14,18 + 5353: 14,19 + 5356: 13,22 + 5374: 21,12 + 5375: 21,13 + 5376: 21,15 + 5377: 21,16 + 5385: 15,14 + 5395: 31,14 + 5396: 31,15 + 5397: 31,16 + - node: + color: '#A46106E5' + id: MiniTileWhiteLineW + decals: + 4796: 9,31 - node: color: '#EFB34196' id: MiniTileWhiteLineW decals: - 1638: 25,16 - 1669: 32,25 - 1673: 9,31 - 1686: 23,29 - 1687: 23,28 - 1695: 23,25 - 1714: 29,28 - 1715: 23,30 - 1716: 23,31 - 1721: 23,33 - 1722: 23,34 - 1741: 32,27 - 1752: 20,12 - 1753: 20,13 - 1758: 20,15 - 1759: 20,16 - 1770: 25,18 - 1773: 25,19 - 1774: 22,19 - 1775: 22,18 - 1788: 23,21 - 1789: 23,22 - 1790: 23,23 - 1814: 14,25 - 1827: 11,27 - 1828: 11,28 - 1829: 11,29 - 3805: 24,14 - 3946: 29,12 - 5733: 5,14 - 5734: 5,15 - 5735: 5,16 - 5736: 5,17 - 5737: 5,18 - 5738: 5,19 - 5739: 5,20 - 5740: 5,21 - 5741: 5,22 - 5742: 5,23 - 5743: 5,24 - 5744: 5,25 - 5745: 5,26 - 5746: 5,27 - 5747: 5,28 - 5748: 5,29 + 1502: 32,27 + 4785: 5,22 + - node: + color: '#EFB34196' + id: MonoOverlay + decals: + 5004: 48,6 + 5005: 47,7 + 5006: 46,6 + 5007: 45,7 + 5008: 44,6 + 5009: 42,6 + 5238: 44,7 + 5239: 45,6 + 5240: 46,7 + 5241: 47,6 + 5242: 48,7 + 5253: 43,7 + 5254: 43,6 + 5255: 42,7 - node: color: '#F9FFFEFF' id: MonoOverlay decals: - 4561: -2,-28 - 4562: -1,-27 - 4563: -2,-26 - 4564: -3,-27 - 4565: -5,-27 - 4566: -4,-26 - 4567: -7,-27 - 4568: -6,-26 - 4569: -8,-26 - 4570: -7,-25 - 4571: -8,-24 - 4572: -7,-23 - 4573: -8,-22 + 3713: -2,-28 + 3714: -1,-27 + 3715: -2,-26 + 3716: -3,-27 + 3717: -5,-27 + 3718: -4,-26 + 3719: -7,-27 + 3720: -6,-26 + 3721: -8,-26 + 3722: -7,-25 + 3723: -8,-24 + 3724: -7,-23 + 3725: -8,-22 - node: color: '#334E6DC8' id: OffsetCheckerAOverlay decals: - 3893: 9,22 - 3894: 9,21 - 3895: 9,20 - 3896: 10,20 - 3897: 11,20 - 4555: -40,-24 - 4556: -39,-24 - 4557: -38,-24 - 4558: -38,-23 - 4559: -38,-22 - 4560: -38,-21 + 3073: 9,22 + 3074: 9,21 + 3075: 9,20 + 3076: 10,20 + 3077: 11,20 + 3707: -40,-24 + 3708: -39,-24 + 3709: -38,-24 + 3710: -38,-23 + 3711: -38,-22 + 3712: -38,-21 - node: color: '#D381C996' id: OffsetCheckerAOverlay decals: - 469: 3,-55 - 470: 4,-55 - 471: 5,-55 - 472: 3,-56 - 473: 4,-56 - 474: 5,-56 - 475: 3,-57 - 476: 4,-57 - 477: 5,-57 - 478: 3,-58 - 479: 4,-58 - 480: 5,-58 - 1235: 25,-66 - 1236: 26,-66 - 1237: 27,-66 - 1238: 26,-67 - 1239: 26,-68 - 1240: 26,-65 - 1576: 25,-68 - 1577: 27,-68 - 3833: 26,-69 + 373: 3,-55 + 374: 4,-55 + 375: 5,-55 + 376: 3,-56 + 377: 4,-56 + 378: 5,-56 + 379: 3,-57 + 380: 4,-57 + 381: 5,-57 + 382: 3,-58 + 383: 4,-58 + 384: 5,-58 + 1109: 25,-66 + 1110: 26,-66 + 1111: 27,-66 + 1112: 26,-67 + 1113: 26,-68 + 1114: 26,-65 + 1428: 25,-68 + 1429: 27,-68 + 3013: 26,-69 - node: color: '#DE3A3A96' id: OffsetCheckerAOverlay decals: - 4546: -40,-28 - 4547: -39,-28 - 4548: -38,-28 - 4549: -38,-29 - 4550: -38,-30 - 4551: -39,-30 - 4552: -40,-30 - 4553: -40,-29 + 3698: -40,-28 + 3699: -39,-28 + 3700: -38,-28 + 3701: -38,-29 + 3702: -38,-30 + 3703: -39,-30 + 3704: -40,-30 + 3705: -40,-29 - node: color: '#F9801D80' id: OffsetCheckerAOverlay decals: - 4236: 11,-23 - 4237: 12,-23 - 4238: 12,-24 - 4239: 11,-24 - 4240: 11,-25 - 4241: 12,-25 - 4242: 12,-26 - 4243: 11,-26 - 4244: 11,-27 - 4245: 12,-27 + 3388: 11,-23 + 3389: 12,-23 + 3390: 12,-24 + 3391: 11,-24 + 3392: 11,-25 + 3393: 12,-25 + 3394: 12,-26 + 3395: 11,-26 + 3396: 11,-27 + 3397: 12,-27 - node: color: '#1D1D21FF' id: OffsetCheckerBOverlay decals: - 481: 3,-55 - 482: 4,-55 - 483: 5,-55 - 484: 5,-56 - 485: 4,-56 - 486: 3,-56 - 487: 3,-57 - 488: 4,-57 - 489: 5,-57 - 490: 5,-58 - 491: 4,-58 - 492: 3,-58 - 4532: -40,-28 - 4533: -39,-28 - 4534: -38,-28 - 4535: -38,-29 - 4536: -38,-30 - 4537: -39,-30 - 4538: -40,-30 - 4539: -40,-29 - 4540: -40,-24 - 4541: -39,-24 - 4542: -38,-24 - 4543: -38,-23 - 4544: -38,-22 - 4545: -38,-21 + 385: 3,-55 + 386: 4,-55 + 387: 5,-55 + 388: 5,-56 + 389: 4,-56 + 390: 3,-56 + 391: 3,-57 + 392: 4,-57 + 393: 5,-57 + 394: 5,-58 + 395: 4,-58 + 396: 3,-58 + 3684: -40,-28 + 3685: -39,-28 + 3686: -38,-28 + 3687: -38,-29 + 3688: -38,-30 + 3689: -39,-30 + 3690: -40,-30 + 3691: -40,-29 + 3692: -40,-24 + 3693: -39,-24 + 3694: -38,-24 + 3695: -38,-23 + 3696: -38,-22 + 3697: -38,-21 - node: color: '#334E6DC8' id: OffsetCheckerBOverlay decals: - 3898: 10,22 - 3899: 11,22 + 3078: 10,22 + 3079: 11,22 - node: color: '#F9801D80' id: OffsetCheckerBOverlay decals: - 4224: 11,-27 - 4225: 12,-27 - 4226: 12,-26 - 4227: 12,-25 - 4228: 12,-24 - 4229: 12,-23 - 4230: 11,-23 - 4233: 11,-26 - 4234: 11,-25 - 4235: 11,-24 + 3376: 11,-27 + 3377: 12,-27 + 3378: 12,-26 + 3379: 12,-25 + 3380: 12,-24 + 3381: 12,-23 + 3382: 11,-23 + 3385: 11,-26 + 3386: 11,-25 + 3387: 11,-24 - node: color: '#52B4E996' id: OffsetOverlay decals: - 1077: 19,-34 - 1078: 20,-34 - 1079: 21,-34 + 951: 19,-34 + 952: 20,-34 + 953: 21,-34 - node: color: '#DE3A3A96' id: OffsetOverlay decals: - 4554: -39,-29 + 3706: -39,-29 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale decals: - 953: 18,-13 - 975: 18,-19 - 976: 18,-16 - 980: 18,-22 - 4622: -25,-13 - 4623: -25,-14 - - node: - color: '#9FED5896' - id: QuarterTileOverlayGreyscale - decals: - 1887: 50,13 + 827: 18,-13 + 849: 18,-19 + 850: 18,-16 + 854: 18,-22 + 3774: -25,-13 + 3775: -25,-14 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 decals: - 4624: -26,-13 - 4627: -26,-14 + 3776: -26,-13 + 3779: -26,-14 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 decals: - 972: 18,-14 - 973: 18,-17 - 974: 18,-20 - 987: 18,-28 - 1112: 14,-31 + 846: 18,-14 + 847: 18,-17 + 848: 18,-20 + 861: 18,-28 + 986: 14,-31 - node: color: '#9FED5896' id: QuarterTileOverlayGreyscale270 decals: - 4413: -21,-16 + 3565: -21,-16 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale270 decals: - 519: 2,-55 + 423: 2,-55 - node: color: '#FFFFFFFF' id: Remains decals: - 2010: -32.76039,24.97744 - 2019: 10.191478,-16.520697 + 1514: -32.76039,24.97744 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Remains + decals: + 5597: 10.21478,-16.06863 - node: color: '#FFFFFFFF' id: Rock01 decals: - 5098: -72.04435,4.0740204 + 4218: -72.04435,4.0740204 - node: color: '#FFFFFFFF' id: Rock02 decals: - 3885: 50.930492,-50.996082 + 3065: 50.930492,-50.996082 - node: angle: -39.269908169872416 rad color: '#FFFFFFFF' id: Rock06 decals: - 747: -28.930904,21.502367 + 646: -28.930904,21.502367 - node: angle: -37.69911184307752 rad color: '#FFFFFFFF' id: Rock06 decals: - 746: -28.38924,22.263313 + 645: -28.38924,22.263313 - node: angle: -36.12831551628262 rad color: '#FFFFFFFF' id: Rock06 decals: - 745: -27.691322,22.596878 + 644: -27.691322,22.596878 - node: angle: -34.55751918948773 rad color: '#FFFFFFFF' id: Rock06 decals: - 744: -27.232986,23.357822 + 643: -27.232986,23.357822 - node: angle: -32.98672286269283 rad color: '#FFFFFFFF' id: Rock06 decals: - 743: -26.312943,23.566301 + 642: -26.312943,23.566301 - node: angle: -31.41592653589793 rad color: '#FFFFFFFF' id: Rock06 decals: - 742: -25.437943,24.827595 + 641: -25.437943,24.827595 - node: angle: -29.845130209103036 rad color: '#FFFFFFFF' id: Rock06 decals: - 741: -25.208775,23.618422 + 640: -25.208775,23.618422 - node: angle: -28.274333882308138 rad color: '#FFFFFFFF' id: Rock06 decals: - 740: -22.458775,24.546148 + 639: -22.458775,24.546148 - node: angle: -26.703537555513243 rad color: '#FFFFFFFF' id: Rock06 decals: - 739: -18.677525,26.015919 + 638: -18.677525,26.015919 - node: angle: -25.132741228718345 rad color: '#FFFFFFFF' id: Rock06 decals: - 738: -18.667109,25.098616 + 637: -18.667109,25.098616 - node: angle: -23.56194490192345 rad color: '#FFFFFFFF' id: Rock06 decals: - 737: -18.000443,24.348093 + 636: -18.000443,24.348093 - node: angle: -21.991148575128552 rad color: '#FFFFFFFF' id: Rock06 decals: - 736: -16.740025,23.420366 + 635: -16.740025,23.420366 - node: angle: -20.420352248333657 rad color: '#FFFFFFFF' id: Rock06 decals: - 734: -2.5908124,20.552643 - 735: -15.198359,23.357822 + 633: -2.5908124,20.552643 + 634: -15.198359,23.357822 - node: angle: -18.84955592153876 rad color: '#FFFFFFFF' id: Rock06 decals: - 732: -3.9345624,20.396284 - 733: -3.2783124,20.365011 + 631: -3.9345624,20.396284 + 632: -3.2783124,20.365011 - node: angle: -17.278759594743864 rad color: '#FFFFFFFF' id: Rock06 decals: - 731: -4.632479,21.209349 + 630: -4.632479,21.209349 - node: angle: -15.707963267948966 rad color: '#FFFFFFFF' id: Rock06 decals: - 730: -5.444979,21.365707 + 629: -5.444979,21.365707 - node: angle: -14.137166941154069 rad color: '#FFFFFFFF' id: Rock06 decals: - 728: -6.590765,20.469252 - 729: -6.236598,21.303164 + 627: -6.590765,20.469252 + 628: -6.236598,21.303164 - node: angle: -12.566370614359172 rad color: '#FFFFFFFF' id: Rock06 decals: - 727: -7.372015,20.229502 + 626: -7.372015,20.229502 - node: angle: -10.995574287564276 rad color: '#FFFFFFFF' id: Rock06 decals: - 726: -5.6636815,22.720814 + 625: -5.6636815,22.720814 - node: angle: -9.42477796076938 rad color: '#FFFFFFFF' id: Rock06 decals: - 725: -6.517848,22.52276 + 624: -6.517848,22.52276 - node: angle: -7.853981633974483 rad color: '#FFFFFFFF' id: Rock06 decals: - 724: -7.2261815,22.720814 + 623: -7.2261815,22.720814 - node: angle: -6.283185307179586 rad color: '#FFFFFFFF' id: Rock06 decals: - 723: -7.7574315,23.606846 + 622: -7.7574315,23.606846 - node: angle: -4.71238898038469 rad color: '#FFFFFFFF' id: Rock06 decals: - 722: -8.580348,22.856325 - 788: 6.429899,-18.607792 + 621: -8.580348,22.856325 + 687: 6.429899,-18.607792 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' id: Rock06 decals: - 721: -8.611598,21.605457 - 789: 6.409066,-17.846846 + 620: -8.611598,21.605457 + 688: 6.409066,-17.846846 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: Rock06 decals: - 720: -7.4251165,19.431574 + 619: -7.4251165,19.431574 - node: color: '#FFFFFFFF' id: Rock06 @@ -6856,598 +6902,595 @@ entities: 18: -30,-63 19: -28,-63 23: -27.88609,-62.207825 - 25: -16.386646,5.243759 - 556: -9,-79 - 577: -9.8994465,-80.76573 - 578: -10.79528,-75.585045 - 579: -9.4306965,-75.92904 - 580: -15.572801,-77.581726 - 581: -14.666551,-77.37325 - 582: -16.781136,-78.18632 - 583: -17.6353,-76.633156 - 584: -16.312386,-76.48722 - 585: -18.593636,-76.341286 - 719: -8.6022005,20.536509 - 790: 6.125163,3.5425081 - 791: -30.401302,5.7240763 - 792: -34.516907,-64.54638 - 1299: 0.45037842,-68.55803 - 1300: 4.4712114,-68.29743 - 1301: 3.3670454,-71.45587 - 1302: 0.5545449,-70.50729 - 1452: 8.548074,-12.6926775 - 2015: -32.414146,24.413397 - 2016: -31.424564,25.507908 - 2017: -32.466232,26.539875 - 2018: -33.539146,25.539179 - 2020: -5.2004986,-96.93421 - 2021: -6.8671656,-96.80912 - 3798: -27.417637,-85.7586 - 3799: -28.500969,-84.938675 + 460: -9,-79 + 481: -9.8994465,-80.76573 + 482: -10.79528,-75.585045 + 483: -9.4306965,-75.92904 + 484: -15.572801,-77.581726 + 485: -14.666551,-77.37325 + 486: -16.781136,-78.18632 + 487: -17.6353,-76.633156 + 488: -16.312386,-76.48722 + 489: -18.593636,-76.341286 + 618: -8.6022005,20.536509 + 689: 6.125163,3.5425081 + 690: -30.401302,5.7240763 + 691: -34.516907,-64.54638 + 1171: 4.4712114,-68.29743 + 1318: 8.548074,-12.6926775 + 1519: -32.414146,24.413397 + 1520: -31.424564,25.507908 + 1521: -32.466232,26.539875 + 1522: -33.539146,25.539179 + 1523: -5.2004986,-96.93421 + 1524: -6.8671656,-96.80912 + 2992: -27.417637,-85.7586 + 2993: -28.500969,-84.938675 + 5073: -7.7941637,6.3346653 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Rock06 + decals: + 5066: -7.803398,6.3125744 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Rock06 decals: - 560: -11.4306965,-80.109024 - 561: -11.67028,-80.109024 - 562: -11.0244465,-80.0986 - 571: -12.60778,-80.82827 - 572: -12.3994465,-78.53501 - 586: -19.510302,-73.67277 - 587: -19.416552,-75.4761 - 588: -18.624886,-73.50598 - 589: -18.35405,-71.890274 - 718: -9.6126175,20.202944 - 793: -34.38149,-65.54707 - 1303: 0.22121143,-69.57957 - 1400: -34.46182,-69.34563 - 1401: -34.42015,-67.583984 - 1402: -36.55557,-68.76189 - 1403: -36.847233,-67.55558 - 1453: 8.475157,-13.881003 + 464: -11.4306965,-80.109024 + 465: -11.67028,-80.109024 + 466: -11.0244465,-80.0986 + 475: -12.60778,-80.82827 + 476: -12.3994465,-78.53501 + 490: -19.510302,-73.67277 + 491: -19.416552,-75.4761 + 492: -18.624886,-73.50598 + 493: -18.35405,-71.890274 + 617: -9.6126175,20.202944 + 692: -34.38149,-65.54707 + 1172: 0.22121143,-69.57957 + 1266: -34.46182,-69.34563 + 1267: -34.42015,-67.583984 + 1268: -36.55557,-68.76189 + 1269: -36.847233,-67.55558 + 1319: 8.475157,-13.881003 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Rock06 decals: - 563: -9.0556965,-81.80812 - 564: -8.9931965,-81.28693 - 570: -12.2119465,-81.51625 - 573: -11.7119465,-78.43078 - 590: -17.66655,-71.69222 - 591: -16.624886,-72.58868 - 592: -15.968635,-73.47471 - 593: -16.41655,-73.41216 - 594: -15.562385,-72.82843 - 595: -14.437385,-74.72558 - 717: -10.8522005,19.556662 - 1304: 1.1587114,-70.528145 - 1404: -37.659733,-67.47218 - 1405: -38.8264,-65.387405 - 1406: -39.409737,-64.522224 - 1407: -40.60765,-63.302624 - 1454: 8.350157,-15.955361 - 1455: 7.818907,-17.445978 - 1608: -2.4588132,-89.41784 - 1609: -2.496313,-91.88205 - 1610: -1.4713135,-92.51999 - 1611: -2.9213133,-92.469955 - 1612: -6.4463134,-95.22187 - 1613: -4.7213135,-93.28302 - 1614: -9.996313,-93.5457 - 2022: -4.158832,-94.839005 - 2023: -6.1379986,-96.089874 + 467: -9.0556965,-81.80812 + 468: -8.9931965,-81.28693 + 474: -12.2119465,-81.51625 + 477: -11.7119465,-78.43078 + 494: -17.66655,-71.69222 + 495: -16.624886,-72.58868 + 496: -15.968635,-73.47471 + 497: -16.41655,-73.41216 + 498: -15.562385,-72.82843 + 499: -14.437385,-74.72558 + 616: -10.8522005,19.556662 + 1270: -37.659733,-67.47218 + 1271: -38.8264,-65.387405 + 1272: -39.409737,-64.522224 + 1273: -40.60765,-63.302624 + 1320: 8.350157,-15.955361 + 1321: 7.818907,-17.445978 + 1460: -2.4588132,-89.41784 + 1461: -2.496313,-91.88205 + 1462: -1.4713135,-92.51999 + 1463: -2.9213133,-92.469955 + 1464: -6.4463134,-95.22187 + 1465: -4.7213135,-93.28302 + 1466: -9.996313,-93.5457 + 1525: -4.158832,-94.839005 + 1526: -6.1379986,-96.089874 + - node: + angle: 4.71238898038469 rad + color: '#FFFFFFFF' + id: Rock06 + decals: + 470: -7.5765305,-82.40228 + 471: -7.6181965,-80.47386 + 472: -10.48278,-82.329315 + 473: -11.1181965,-81.557945 + 478: -10.659863,-77.56559 + 479: -8.566113,-77.815765 + 500: -14.416551,-75.2989 + 615: -8.748034,18.43088 + 693: -33.485657,-67.016846 + 694: -33.43944,-71.481995 + 1197: -29.272285,12.484818 + 1198: -33.563953,15.403512 + 1239: -14.264661,-88.4822 + 1274: -42.17015,-63.469406 + 1275: -37.7014,-65.387405 + 1467: -9.121313,-93.533195 + 1468: -7.6588135,-94.546394 + 1469: -5.4213133,-93.74584 + 1470: -14.009486,-94.48386 + 1471: -14.721986,-93.73333 + 1472: -17.421986,-90.456055 + 1473: -15.671987,-93.608246 + 5074: -8.394163,5.4840746 - node: + cleanable: True angle: 4.71238898038469 rad color: '#FFFFFFFF' id: Rock06 decals: - 566: -7.5765305,-82.40228 - 567: -7.6181965,-80.47386 - 568: -10.48278,-82.329315 - 569: -11.1181965,-81.557945 - 574: -10.659863,-77.56559 - 575: -8.566113,-77.815765 - 596: -14.416551,-75.2989 - 716: -8.748034,18.43088 - 794: -33.485657,-67.016846 - 795: -33.43944,-71.481995 - 1305: 2.1066284,-68.52676 - 1331: -29.272285,12.484818 - 1332: -33.563953,15.403512 - 1373: -14.264661,-88.4822 - 1408: -42.17015,-63.469406 - 1409: -37.7014,-65.387405 - 1615: -9.121313,-93.533195 - 1616: -7.6588135,-94.546394 - 1617: -5.4213133,-93.74584 - 1618: -14.009486,-94.48386 - 1619: -14.721986,-93.73333 - 1620: -17.421986,-90.456055 - 1621: -15.671987,-93.608246 + 5065: -8.440899,5.4494753 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: Rock06 decals: - 576: -9.45153,-77.32584 - 597: -14.489468,-75.96603 - 598: -13.916551,-71.55671 - 715: -14.487617,19.494118 - 796: -31.616524,-73.49381 - 1333: -34.532703,16.4876 - 1374: -14.920911,-87.50235 - 1410: -36.1389,-65.41868 - 1458: 9.860574,-15.402894 - 1462: -44.46032,-50.930473 - 1463: -45.751987,-48.62679 - 1622: -18.241879,-89.58675 - 1623: -19.604378,-88.72365 - 1624: -26.949497,-84.53319 - 1625: -26.549496,-85.95918 - 1629: -5.180885,-95.6479 - 1630: -5.5058846,-95.09753 - 1631: -12.90465,-75.69721 - 1632: -12.82965,-77.223274 + 480: -9.45153,-77.32584 + 501: -14.489468,-75.96603 + 502: -13.916551,-71.55671 + 614: -14.487617,19.494118 + 695: -31.616524,-73.49381 + 1199: -34.532703,16.4876 + 1240: -14.920911,-87.50235 + 1276: -36.1389,-65.41868 + 1324: 9.860574,-15.402894 + 1328: -44.46032,-50.930473 + 1329: -45.751987,-48.62679 + 1474: -18.241879,-89.58675 + 1475: -19.604378,-88.72365 + 1476: -26.949497,-84.53319 + 1477: -26.549496,-85.95918 + 1481: -5.180885,-95.6479 + 1482: -5.5058846,-95.09753 + 1483: -12.90465,-75.69721 + 1484: -12.82965,-77.223274 - node: angle: 7.853981633974483 rad color: '#FFFFFFFF' id: Rock06 decals: - 599: -15.343635,-71.431625 - 714: -15.404284,18.639359 - 797: -31.501942,-71.90938 - 798: -31.712612,-75.48231 - 1306: 4.5649614,-71.45587 - 1334: -34.491035,17.384056 - 1375: -15.941745,-87.564896 - 1411: -42.39932,-60.523773 + 503: -15.343635,-71.431625 + 613: -15.404284,18.639359 + 696: -31.501942,-71.90938 + 697: -31.712612,-75.48231 + 1173: 4.5649614,-71.45587 + 1200: -34.491035,17.384056 + 1241: -15.941745,-87.564896 + 1277: -42.39932,-60.523773 - node: angle: 9.42477796076938 rad color: '#FFFFFFFF' id: Rock06 decals: - 600: -13.416552,-72.870125 - 601: -17.29155,-74.52753 - 713: -15.831367,17.378065 - 1307: 5.6795454,-71.51842 - 1335: -32.782703,18.488989 - 1336: -30.428535,16.894133 - 1337: -30.355618,14.5696 - 1376: -17.488722,-84.58465 - 1412: -42.5764,-58.567844 + 504: -13.416552,-72.870125 + 505: -17.29155,-74.52753 + 612: -15.831367,17.378065 + 1174: 5.6795454,-71.51842 + 1201: -32.782703,18.488989 + 1202: -30.428535,16.894133 + 1203: -30.355618,14.5696 + 1242: -17.488722,-84.58465 + 1278: -42.5764,-58.567844 - node: angle: 10.995574287564276 rad color: '#FFFFFFFF' id: Rock06 decals: - 602: -16.66655,-74.402435 - 603: -10.864468,-73.46429 - 712: -16.550117,18.576815 - 799: -28.556362,-76.28495 - 1308: 4.5962114,-67.20292 - 1309: -6.079744,-72.437256 - 1338: -31.574368,13.485515 - 1339: -30.501453,16.258274 - 1340: -37.446686,20.669966 - 1341: -38.113354,22.489063 - 1377: -18.217888,-83.521416 - 1378: -19.551222,-82.80216 - 1413: -41.33682,-58.776325 - 1414: -42.49307,-56.139076 + 506: -16.66655,-74.402435 + 507: -10.864468,-73.46429 + 611: -16.550117,18.576815 + 698: -28.556362,-76.28495 + 1175: 4.5962114,-67.20292 + 1176: -6.079744,-72.437256 + 1204: -31.574368,13.485515 + 1205: -30.501453,16.258274 + 1206: -37.446686,20.669966 + 1207: -38.113354,22.489063 + 1243: -18.217888,-83.521416 + 1244: -19.551222,-82.80216 + 1279: -41.33682,-58.776325 + 1280: -42.49307,-56.139076 - node: angle: 12.566370614359172 rad color: '#FFFFFFFF' id: Rock06 decals: - 604: -9.968634,-73.41216 - 711: -17.268867,17.409336 - 1310: -4.923494,-72.416405 - 1342: -37.498768,21.644728 - 1343: -37.082104,23.426022 - 1379: -26.831768,-83.39399 - 1380: -25.540104,-83.831795 - 1415: -42.92015,-55.51364 - 1416: -44.10765,-56.462215 + 508: -9.968634,-73.41216 + 610: -17.268867,17.409336 + 1177: -4.923494,-72.416405 + 1208: -37.498768,21.644728 + 1209: -37.082104,23.426022 + 1245: -26.831768,-83.39399 + 1246: -25.540104,-83.831795 + 1281: -42.92015,-55.51364 + 1282: -44.10765,-56.462215 - node: angle: 14.137166941154069 rad color: '#FFFFFFFF' id: Rock06 decals: - 605: -8.906134,-73.52683 - 710: -17.831367,18.587238 - 800: -26.7235,-77.462845 - 1311: -3.3297439,-72.426834 - 1344: -36.373768,24.186968 - 1381: -28.120346,-82.3516 - 1382: -27.787014,-83.50866 - 1383: -31.466583,-79.913765 - 1417: -45.55557,-53.866577 - 1418: -45.034737,-52.375957 - 1419: -42.74307,-54.40862 + 509: -8.906134,-73.52683 + 609: -17.831367,18.587238 + 699: -26.7235,-77.462845 + 1178: -3.3297439,-72.426834 + 1210: -36.373768,24.186968 + 1247: -28.120346,-82.3516 + 1248: -27.787014,-83.50866 + 1249: -31.466583,-79.913765 + 1283: -45.55557,-53.866577 + 1284: -45.034737,-52.375957 + 1285: -42.74307,-54.40862 - node: angle: 15.707963267948966 rad color: '#FFFFFFFF' id: Rock06 decals: - 606: -9.145718,-74.590065 - 708: -14.7584505,16.366947 - 709: -14.675117,17.190435 - 801: -25.525581,-78.26549 - 1312: -1.7568269,-72.4581 - 1345: -36.092518,25.47953 - 1346: -35.540436,24.530956 - 1347: -34.918495,27.56218 - 1384: -32.747833,-79.45512 - 1420: -42.43057,-52.709522 + 510: -9.145718,-74.590065 + 607: -14.7584505,16.366947 + 608: -14.675117,17.190435 + 700: -25.525581,-78.26549 + 1179: -1.7568269,-72.4581 + 1211: -36.092518,25.47953 + 1212: -35.540436,24.530956 + 1213: -34.918495,27.56218 + 1250: -32.747833,-79.45512 + 1286: -42.43057,-52.709522 - node: angle: 17.278759594743864 rad color: '#FFFFFFFF' id: Rock06 decals: - 607: -10.770718,-74.74643 - 608: -7.8914423,-74.62134 - 609: -2.4768522,-81.51775 - 707: -13.3834505,16.53373 - 802: -26.536,-79.672714 - 1348: -34.574745,28.031258 - 1349: -32.918495,29.493557 - 1385: -33.39367,-78.94434 - 1421: -43.659737,-51.57332 - 1422: -42.409737,-51.656708 - 1423: -44.753487,-54.46074 - 1424: -47.44402,-53.396847 + 511: -10.770718,-74.74643 + 512: -7.8914423,-74.62134 + 513: -2.4768522,-81.51775 + 606: -13.3834505,16.53373 + 701: -26.536,-79.672714 + 1214: -34.574745,28.031258 + 1215: -32.918495,29.493557 + 1251: -33.39367,-78.94434 + 1287: -43.659737,-51.57332 + 1288: -42.409737,-51.656708 + 1289: -44.753487,-54.46074 + 1290: -47.44402,-53.396847 - node: angle: 18.84955592153876 rad color: '#FFFFFFFF' id: Rock06 decals: - 610: -1.4560189,-80.444084 - 611: -2.4039354,-80.62129 - 706: -11.0813675,17.430185 - 803: -27.431831,-80.67341 - 804: -25.915615,-82.65238 - 1386: -33.83117,-78.05831 - 1425: -49.52735,-55.06467 + 514: -1.4560189,-80.444084 + 515: -2.4039354,-80.62129 + 605: -11.0813675,17.430185 + 702: -27.431831,-80.67341 + 703: -25.915615,-82.65238 + 1252: -33.83117,-78.05831 + 1291: -49.52735,-55.06467 - node: angle: 20.420352248333657 rad color: '#FFFFFFFF' id: Rock06 decals: - 612: -1.5081024,-79.70399 - 613: 1.2590113,-79.35836 - 705: -10.2584505,18.43088 - 805: -20.377743,-80.953285 - 1350: -31.39766,30.932056 - 1387: -32.67492,-77.48499 - 1426: -48.96485,-60.432983 + 516: -1.5081024,-79.70399 + 517: 1.2590113,-79.35836 + 604: -10.2584505,18.43088 + 704: -20.377743,-80.953285 + 1216: -31.39766,30.932056 + 1253: -32.67492,-77.48499 + 1292: -48.96485,-60.432983 - node: angle: 21.991148575128552 rad color: '#FFFFFFFF' id: Rock06 decals: - 614: 1.5506783,-78.49318 - 615: 2.3944283,-78.055374 - 704: -9.3834505,23.684528 - 806: -16.330814,-81.92271 - 1351: -30.05391,31.421982 - 1429: -46.751545,-64.61667 - 1430: -43.83975,-70.50205 - 1431: -42.20433,-70.68968 - 1432: -43.90225,-71.46105 + 518: 1.5506783,-78.49318 + 519: 2.3944283,-78.055374 + 603: -9.3834505,23.684528 + 705: -16.330814,-81.92271 + 1217: -30.05391,31.421982 + 1295: -46.751545,-64.61667 + 1296: -43.83975,-70.50205 + 1297: -42.20433,-70.68968 + 1298: -43.90225,-71.46105 - node: angle: 23.56194490192345 rad color: '#FFFFFFFF' id: Rock06 decals: - 616: 1.4985948,-77.48206 - 703: -10.279284,22.485779 - 807: -15.195399,-80.63014 - 1433: -41.70433,-74.04618 - 1434: -38.518448,-75.46783 - 1437: -35.743473,-72.33816 - 1438: -33.69139,-74.58972 - 1439: -34.31639,-71.14983 - 1440: -35.524723,-70.83711 - 1441: -37.737553,-70.51785 + 520: 1.4985948,-77.48206 + 602: -10.279284,22.485779 + 706: -15.195399,-80.63014 + 1299: -41.70433,-74.04618 + 1300: -38.518448,-75.46783 + 1303: -35.743473,-72.33816 + 1304: -33.69139,-74.58972 + 1305: -34.31639,-71.14983 + 1306: -35.524723,-70.83711 + 1307: -37.737553,-70.51785 - node: angle: 25.132741228718345 rad color: '#FFFFFFFF' id: Rock06 decals: - 617: 1.4569283,-76.429245 - 618: 1.5506783,-75.470245 - 619: -29.403545,-65.32383 - 620: -30.413963,-65.69909 - 621: -30.538963,-66.98123 - 622: -29.320213,-66.75191 - 702: -11.3001175,22.464931 - 808: -14.528732,-83.29866 - 1360: -27.56781,28.120808 - 1361: -22.636265,28.550419 - 1362: -22.230015,29.165432 - 1363: -22.915905,25.503538 - 1364: -17.83633,27.494753 - 1442: -39.83915,-70.61167 + 521: 1.4569283,-76.429245 + 522: 1.5506783,-75.470245 + 523: -29.403545,-65.32383 + 524: -30.413963,-65.69909 + 525: -30.538963,-66.98123 + 526: -29.320213,-66.75191 + 601: -11.3001175,22.464931 + 707: -14.528732,-83.29866 + 1226: -27.56781,28.120808 + 1227: -22.636265,28.550419 + 1228: -22.230015,29.165432 + 1229: -22.915905,25.503538 + 1230: -17.83633,27.494753 + 1308: -39.83915,-70.61167 - node: angle: 26.703537555513243 rad color: '#FFFFFFFF' id: Rock06 decals: - 623: -30.528545,-68.00278 - 700: -18.933617,17.485304 - 701: -18.787785,18.548542 - 1322: -4.7968616,-74.65755 - 1365: -18.346748,28.130611 - 1443: -41.40165,-70.61167 - 1444: -41.51623,-69.287834 + 527: -30.528545,-68.00278 + 599: -18.933617,17.485304 + 600: -18.787785,18.548542 + 1188: -4.7968616,-74.65755 + 1231: -18.346748,28.130611 + 1309: -41.40165,-70.61167 + 1310: -41.51623,-69.287834 - node: angle: 28.274333882308138 rad color: '#FFFFFFFF' id: Rock06 decals: - 624: -30.653545,-69.55594 - 625: -29.768127,-69.608055 - 699: -17.621117,13.524219 - 1323: -6.223945,-74.55331 - 1324: 4.6013365,-80.687164 - 1370: 5.4909105,5.861699 - 1445: -39.65165,-69.44419 - 1446: -38.6204,-70.538704 - 1447: -37.77665,-69.496315 + 528: -30.653545,-69.55594 + 529: -29.768127,-69.608055 + 598: -17.621117,13.524219 + 1189: -6.223945,-74.55331 + 1190: 4.6013365,-80.687164 + 1236: 5.4909105,5.861699 + 1311: -39.65165,-69.44419 + 1312: -38.6204,-70.538704 + 1313: -37.77665,-69.496315 - node: angle: 29.845130209103036 rad color: '#FFFFFFFF' id: Rock06 decals: - 626: -29.101463,-69.55594 - 698: -19.26695,14.472795 - 1371: 5.4179935,4.47532 - 1372: -2.5219917,22.108795 - 1448: -36.54748,-70.549126 + 530: -29.101463,-69.55594 + 597: -19.26695,14.472795 + 1237: 5.4179935,4.47532 + 1238: -2.5219917,22.108795 + 1314: -36.54748,-70.549126 - node: angle: 31.41592653589793 rad color: '#FFFFFFFF' id: Rock06 decals: - 627: -28.320213,-69.49339 - 697: -20.506535,13.649304 - 1449: -36.8079,-69.38165 - 1450: -44.50806,-47.939693 - 1451: -41.591393,-45.437954 + 531: -28.320213,-69.49339 + 596: -20.506535,13.649304 + 1315: -36.8079,-69.38165 + 1316: -44.50806,-47.939693 + 1317: -41.591393,-45.437954 - node: angle: 32.98672286269283 rad color: '#FFFFFFFF' id: Rock06 decals: - 628: -28.945213,-67.34607 - 695: -23.454453,14.514489 - 696: -21.319035,14.566609 + 532: -28.945213,-67.34607 + 594: -23.454453,14.514489 + 595: -21.319035,14.566609 - node: angle: 34.55751918948773 rad color: '#FFFFFFFF' id: Rock06 decals: - 629: -28.372295,-68.263374 - 694: -25.298203,14.764663 + 533: -28.372295,-68.263374 + 593: -25.298203,14.764663 - node: angle: 36.12831551628262 rad color: '#FFFFFFFF' id: Rock06 decals: - 630: -27.393127,-68.43015 - 693: -25.433617,16.401217 + 534: -27.393127,-68.43015 + 592: -25.433617,16.401217 - node: angle: 37.69911184307752 rad color: '#FFFFFFFF' id: Rock06 decals: - 631: -26.434795,-68.367615 - 632: -25.643127,-68.43015 - 692: -25.391953,17.47488 + 535: -26.434795,-68.367615 + 536: -25.643127,-68.43015 + 591: -25.391953,17.47488 - node: angle: 39.269908169872416 rad color: '#FFFFFFFF' id: Rock06 decals: - 633: -25.538963,-67.61709 - 691: -26.600285,17.537422 + 537: -25.538963,-67.61709 + 590: -26.600285,17.537422 - node: angle: 40.840704496667314 rad color: '#FFFFFFFF' id: Rock06 decals: - 634: -25.143127,-66.60597 - 690: -27.704453,17.558271 + 538: -25.143127,-66.60597 + 589: -27.704453,17.558271 - node: angle: 42.411500823462205 rad color: '#FFFFFFFF' id: Rock06 decals: - 635: -25.226463,-69.74357 - 636: -24.538963,-70.296036 - 637: -24.570213,-69.73315 - 688: -27.496117,15.483912 - 689: -27.954453,16.474184 + 539: -25.226463,-69.74357 + 540: -24.538963,-70.296036 + 541: -24.570213,-69.73315 + 587: -27.496117,15.483912 + 588: -27.954453,16.474184 - node: angle: 43.982297150257104 rad color: '#FFFFFFFF' id: Rock06 decals: - 638: -23.538963,-70.54621 - 639: -22.716045,-70.50452 - 687: -27.433617,14.454471 - 813: 7.9721985,-78.14113 - 910: 5.557891,-30.72972 - 911: 6.339141,-30.48997 + 542: -23.538963,-70.54621 + 543: -22.716045,-70.50452 + 586: -27.433617,14.454471 + 712: 7.9721985,-78.14113 + 784: 5.557891,-30.72972 + 785: 6.339141,-30.48997 - node: angle: 45.553093477052 rad color: '#FFFFFFFF' id: Rock06 decals: - 640: -22.299377,-69.83738 - 686: -27.662785,13.65183 - 912: 5.453724,-31.938892 + 544: -22.299377,-69.83738 + 585: -27.662785,13.65183 + 786: 5.453724,-31.938892 - node: angle: 47.1238898038469 rad color: '#FFFFFFFF' id: Rock06 decals: - 641: -22.330627,-69.02432 - 685: -26.756535,12.4165125 + 545: -22.330627,-69.02432 + 584: -26.756535,12.4165125 - node: angle: 48.69468613064179 rad color: '#FFFFFFFF' id: Rock06 decals: - 642: -22.403545,-68.04447 - 643: -24.111877,-66.41834 - 684: -26.714867,11.686839 + 546: -22.403545,-68.04447 + 547: -24.111877,-66.41834 + 583: -26.714867,11.686839 - node: angle: 50.26548245743669 rad color: '#FFFFFFFF' id: Rock06 decals: - 644: -23.330627,-66.439186 - 683: -26.631535,11.050981 + 548: -23.330627,-66.439186 + 582: -26.631535,11.050981 - node: angle: 51.83627878423159 rad color: '#FFFFFFFF' id: Rock06 decals: - 645: -22.413963,-66.65809 - 682: -27.006535,10.644448 + 549: -22.413963,-66.65809 + 581: -27.006535,10.644448 - node: angle: 53.40707511102649 rad color: '#FFFFFFFF' id: Rock06 decals: - 646: -27.507713,-70.459435 - 680: -27.569035,8.632635 - 681: -27.610703,9.810536 + 550: -27.507713,-70.459435 + 579: -27.569035,8.632635 + 580: -27.610703,9.810536 - node: angle: 54.97787143782138 rad color: '#FFFFFFFF' id: Rock06 decals: - 647: -26.716045,-70.78257 - 679: -27.610703,7.5277004 + 551: -26.716045,-70.78257 + 578: -27.610703,7.5277004 - node: angle: 56.548667764616276 rad color: '#FFFFFFFF' id: Rock06 decals: - 648: -27.632713,-69.69849 - 678: -25.902367,7.5277004 + 552: -27.632713,-69.69849 - node: angle: 58.119464091411174 rad color: '#FFFFFFFF' id: Rock06 decals: - 649: -27.207565,-72.53555 - 677: -26.194035,8.72645 + 553: -27.207565,-72.53555 + 577: -26.194035,8.72645 - node: angle: 59.69026041820607 rad color: '#FFFFFFFF' id: Rock06 decals: - 650: -27.176315,-73.49455 - 676: -26.256535,9.320612 + 554: -27.176315,-73.49455 + 576: -26.256535,9.320612 - node: angle: 61.261056745000964 rad color: '#FFFFFFFF' id: Rock06 decals: - 651: -25.49923,-72.01436 - 675: -25.329453,9.549939 + 555: -25.49923,-72.01436 + 575: -25.329453,9.549939 - node: angle: 62.83185307179586 rad color: '#FFFFFFFF' id: Rock06 decals: - 652: -26.613815,-71.39935 - 674: -24.766953,10.467242 + 556: -26.613815,-71.39935 + 574: -24.766953,10.467242 - node: angle: 64.40264939859075 rad color: '#FFFFFFFF' id: Rock06 decals: - 653: -26.572147,-74.401436 - 673: -23.933617,10.435971 + 557: -26.572147,-74.401436 + 573: -23.933617,10.435971 - node: angle: 65.97344572538566 rad color: '#FFFFFFFF' id: Rock06 decals: - 654: -25.56173,-74.776695 - 672: -23.631535,10.1336775 + 558: -25.56173,-74.776695 + 572: -23.631535,10.1336775 - node: angle: 67.54424205218055 rad color: '#FFFFFFFF' id: Rock06 decals: - 655: -24.49923,-75.45425 - 671: -23.589867,9.34146 + 559: -24.49923,-75.45425 + 571: -23.589867,9.34146 - node: angle: 69.11503837897546 rad color: '#FFFFFFFF' id: Rock06 decals: - 656: -23.228397,-74.93305 - 670: -23.006535,8.497124 + 560: -23.228397,-74.93305 + 570: -23.006535,8.497124 - node: angle: 70.68583470577035 rad color: '#FFFFFFFF' id: Rock06 decals: - 657: -23.43673,-73.66134 - 669: -22.600285,8.11144 + 561: -23.43673,-73.66134 + 569: -22.600285,8.11144 - node: angle: 72.25663103256524 rad color: '#FFFFFFFF' id: Rock06 decals: - 658: -24.322147,-73.45286 - 668: -22.652367,7.423462 + 562: -24.322147,-73.45286 + 568: -22.652367,7.423462 - node: angle: 73.82742735936014 rad color: '#FFFFFFFF' id: Rock06 decals: - 659: -24.822147,-72.49386 - 660: -28.450779,-71.402664 - 661: -31.96215,-69.530594 - 667: -22.506535,6.620821 + 563: -24.822147,-72.49386 + 564: -28.450779,-71.402664 + 565: -31.96215,-69.530594 - node: angle: 75.39822368615503 rad color: '#FFFFFFFF' id: Rock06 decals: - 662: -33.420483,-68.50905 - 666: -20.162785,6.53743 + 566: -33.420483,-68.50905 - node: angle: 76.96902001294993 rad color: '#FFFFFFFF' id: Rock06 decals: - 663: -33.77465,-70.53129 - 665: -18.621117,6.4019184 - - node: - angle: 78.53981633974483 rad - color: '#FFFFFFFF' - id: Rock06 - decals: - 664: -17.64195,6.5791254 + 567: -33.77465,-70.53129 - node: angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: Rock07 decals: - 24: -17.355396,5.2854548 - 748: -30.477211,13.316003 - 749: -24.456902,12.013015 - 3824: 2.431754,-68.85548 + 647: -30.477211,13.316003 + 648: -24.456902,12.013015 - node: color: '#FFFFFFFF' id: Rock07 @@ -7458,912 +7501,940 @@ entities: 20: -30.490253,-62.40588 21: -28.969421,-62.395454 22: -31.656921,-63.271065 - 26: -16.64706,4.6391726 - 557: -9.6181965,-79.43147 - 558: -11.51403,-79.86927 - 559: -11.32653,-79.84843 - 750: -24.394402,12.888623 - 1295: 1.5128784,-71.44545 - 1296: 2.9087114,-68.599724 - 1297: -0.37253857,-68.776924 - 1298: 6.4503784,-71.195274 - 1325: -33.867134,13.359717 - 1326: -32.501453,14.454938 - 1327: -32.709785,15.257577 - 1390: -41.838326,-64.52446 - 1391: -40.536243,-62.283318 - 1392: -40.140408,-59.48971 - 1393: -39.369576,-63.628002 - 1394: -39.421658,-63.628002 - 2011: -33.580814,24.52806 - 2012: -33.455814,26.487755 - 2013: -31.528732,26.44606 - 2014: -31.424564,24.68442 - 3800: -27.469719,-86.81498 - 3801: -26.876545,-81.61934 - 3820: 3,-71 - 3821: 2,-70 - 3822: 2.759879,-70.54415 - 3823: 2.509879,-69.85617 + 461: -9.6181965,-79.43147 + 462: -11.51403,-79.86927 + 463: -11.32653,-79.84843 + 649: -24.394402,12.888623 + 1169: -0.37253857,-68.776924 + 1170: 6.4503784,-71.195274 + 1191: -33.867134,13.359717 + 1192: -32.501453,14.454938 + 1193: -32.709785,15.257577 + 1256: -41.838326,-64.52446 + 1257: -40.536243,-62.283318 + 1258: -40.140408,-59.48971 + 1259: -39.369576,-63.628002 + 1260: -39.421658,-63.628002 + 1515: -33.580814,24.52806 + 1516: -33.455814,26.487755 + 1517: -31.528732,26.44606 + 1518: -31.424564,24.68442 + 2994: -27.469719,-86.81498 + 2995: -26.876545,-81.61934 + 5070: -21.269165,8.448633 + 5072: -9.506664,6.122018 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Rock07 + decals: + 5067: -9.515899,6.1124363 + 5068: -21.248623,8.448633 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Rock07 decals: - 751: -24.050652,13.295156 - 1328: -34.23062,18.238815 - 1395: -40.952908,-64.566154 - 1396: -40.963326,-60.511253 - 1397: -40.734158,-59.43759 - 1398: -40.567493,-66.108894 - 1399: -41.452908,-56.852207 + 650: -24.050652,13.295156 + 1194: -34.23062,18.238815 + 1261: -40.952908,-64.566154 + 1262: -40.963326,-60.511253 + 1263: -40.734158,-59.43759 + 1264: -40.567493,-66.108894 + 1265: -41.452908,-56.852207 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Rock07 decals: - 565: -8.691113,-81.7143 - 752: -22.613152,13.441091 - 753: -3.4967937,18.532234 - 1329: -31.116035,18.530685 - 1456: 8.558491,-14.975513 - 1604: -2.308813,-87.691635 - 1605: -1.4963131,-89.205185 - 1606: -4.1338134,-92.48247 - 1607: -8.408813,-94.1086 + 469: -8.691113,-81.7143 + 651: -22.613152,13.441091 + 652: -3.4967937,18.532234 + 1195: -31.116035,18.530685 + 1322: 8.558491,-14.975513 + 1456: -2.308813,-87.691635 + 1457: -1.4963131,-89.205185 + 1458: -4.1338134,-92.48247 + 1459: -8.408813,-94.1086 + 5071: -12.406664,8.348564 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Rock07 + decals: + 5069: -12.423624,8.3610735 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: Rock07 decals: - 754: -3.0697103,19.501657 - 1330: -29.459785,14.371545 + 653: -3.0697103,19.501657 + 1196: -29.459785,14.371545 - node: angle: 6.283185307179586 rad color: '#FFFFFFFF' id: Rock07 decals: - 755: -2.423877,18.532234 - 1457: 8.995991,-17.435555 - 1459: -48.86657,-53.609417 - 1460: -48.220737,-52.400246 - 1461: -45.501987,-50.732418 - 1626: -18.181543,-90.90096 - 1627: -14.585299,-95.41024 - 1628: -8.218385,-95.57285 + 654: -2.423877,18.532234 + 1323: 8.995991,-17.435555 + 1325: -48.86657,-53.609417 + 1326: -48.220737,-52.400246 + 1327: -45.501987,-50.732418 + 1478: -18.181543,-90.90096 + 1479: -14.585299,-95.41024 + 1480: -8.218385,-95.57285 - node: angle: 7.853981633974483 rad color: '#FFFFFFFF' id: Rock07 decals: - 756: -1.4447103,17.260517 + 655: -1.4447103,17.260517 - node: angle: 9.42477796076938 rad color: '#FFFFFFFF' id: Rock07 decals: - 757: -2.0592937,15.478028 + 656: -2.0592937,15.478028 - node: angle: 10.995574287564276 rad color: '#FFFFFFFF' id: Rock07 decals: - 758: -3.4447103,15.488452 + 657: -3.4447103,15.488452 - node: angle: 12.566370614359172 rad color: '#FFFFFFFF' id: Rock07 decals: - 759: -3.267627,16.478725 + 658: -3.267627,16.478725 - node: angle: 14.137166941154069 rad color: '#FFFFFFFF' id: Rock07 decals: - 760: -4.3405437,13.340383 + 659: -4.3405437,13.340383 - node: angle: 15.707963267948966 rad color: '#FFFFFFFF' id: Rock07 decals: - 761: -4.1947103,12.4752 - 1313: -0.61831903,-72.437256 + 660: -4.1947103,12.4752 + 1180: -0.61831903,-72.437256 - node: angle: 17.278759594743864 rad color: '#FFFFFFFF' id: Rock07 decals: - 762: -3.205127,12.350112 - 1314: 0.84001446,-72.47895 - - node: - angle: 18.84955592153876 rad - color: '#FFFFFFFF' - id: Rock07 - decals: - 1315: 2.105527,-72.37471 + 661: -3.205127,12.350112 + 1181: 0.84001446,-72.47895 - node: angle: 20.420352248333657 rad color: '#FFFFFFFF' id: Rock07 decals: - 763: -3.6634605,10.963732 - 1316: 3.84511,-72.48937 - 1317: 6.928443,-74.542885 - 1388: -31.64367,-76.50489 - 1427: -50.596928,-62.43346 - 1428: -49.899014,-63.475853 + 662: -3.6634605,10.963732 + 1182: 3.84511,-72.48937 + 1183: 6.928443,-74.542885 + 1254: -31.64367,-76.50489 + 1293: -50.596928,-62.43346 + 1294: -49.899014,-63.475853 - node: angle: 21.991148575128552 rad color: '#FFFFFFFF' id: Rock07 decals: - 764: -4.4759607,10.359145 - 1318: 2.136777,-74.51161 - 1352: -29.55391,30.869514 - 1353: -29.58516,29.441437 - 1354: -28.980991,29.535252 - 1355: -27.33516,29.795849 - 1356: -29.99141,32.078686 - 1389: -32.490627,-74.45947 + 663: -4.4759607,10.359145 + 1184: 2.136777,-74.51161 + 1218: -29.55391,30.869514 + 1219: -29.58516,29.441437 + 1220: -28.980991,29.535252 + 1221: -27.33516,29.795849 + 1222: -29.99141,32.078686 + 1255: -32.490627,-74.45947 - node: angle: 23.56194490192345 rad color: '#FFFFFFFF' id: Rock07 decals: - 765: -4.4658585,8.783338 - 1319: 0.80344296,-74.68882 - 1357: -28.421978,26.421711 - 1358: -28.69281,27.193079 - 1359: -27.31781,26.880362 - 1435: -36.591366,-76.7187 - 1436: -34.69139,-73.276306 + 664: -4.4658585,8.783338 + 1185: 0.80344296,-74.68882 + 1223: -28.421978,26.421711 + 1224: -28.69281,27.193079 + 1225: -27.31781,26.880362 + 1301: -36.591366,-76.7187 + 1302: -34.69139,-73.276306 - node: angle: 25.132741228718345 rad color: '#FFFFFFFF' id: Rock07 decals: - 766: -3.4879832,8.387229 - 809: -14.640077,-81.93618 - 1320: 0.20969296,-74.55331 + 665: -3.4879832,8.387229 + 708: -14.640077,-81.93618 + 1186: 0.20969296,-74.55331 - node: angle: 26.703537555513243 rad color: '#FFFFFFFF' id: Rock07 decals: - 767: -2.5088167,7.469925 - 810: -14.571584,-84.88917 - 1321: -3.661445,-74.53246 - 1366: -17.888412,28.959637 - 1367: -15.397051,24.470917 + 666: -2.5088167,7.469925 + 709: -14.571584,-84.88917 + 1187: -3.661445,-74.53246 + 1232: -17.888412,28.959637 + 1233: -15.397051,24.470917 - node: angle: 28.274333882308138 rad color: '#FFFFFFFF' id: Rock07 decals: - 768: -1.1338167,7.407382 - 1368: -16.27205,25.482037 - 1369: 5.5638275,7.081296 + 667: -1.1338167,7.407382 + 1234: -16.27205,25.482037 + 1235: 5.5638275,7.081296 - node: angle: 29.845130209103036 rad color: '#FFFFFFFF' id: Rock07 decals: - 769: -0.13381672,7.5116205 - 770: 0.32457066,12.59389 + 668: -0.13381672,7.5116205 + 669: 0.32457066,12.59389 - node: angle: 31.41592653589793 rad color: '#FFFFFFFF' id: Rock07 decals: - 771: -0.61292934,13.469499 + 670: -0.61292934,13.469499 - node: angle: 32.98672286269283 rad color: '#FFFFFFFF' id: Rock07 decals: - 772: -1.3004293,13.490346 - 773: -2.6545963,13.55289 - 774: -14.680241,11.872184 - 775: -23.644173,11.496924 - 776: -23.092087,12.4455 - 777: -22.217087,12.497619 + 671: -1.3004293,13.490346 + 672: -2.6545963,13.55289 + 673: -14.680241,11.872184 + 674: -23.644173,11.496924 + 675: -23.092087,12.4455 + 676: -22.217087,12.497619 - node: angle: 34.55751918948773 rad color: '#FFFFFFFF' id: Rock07 decals: - 778: -21.727505,12.4142275 + 677: -21.727505,12.4142275 - node: angle: 36.12831551628262 rad color: '#FFFFFFFF' id: Rock07 decals: - 779: -20.831673,12.216174 + 678: -20.831673,12.216174 - node: angle: 37.69911184307752 rad color: '#FFFFFFFF' id: Rock07 decals: - 780: -20.477505,11.455229 + 679: -20.477505,11.455229 - node: angle: 39.269908169872416 rad color: '#FFFFFFFF' id: Rock07 decals: - 781: -19.404587,11.361413 + 680: -19.404587,11.361413 - node: angle: 40.840704496667314 rad color: '#FFFFFFFF' id: Rock07 decals: - 782: -18.633755,11.100816 + 681: -18.633755,11.100816 - node: angle: 42.411500823462205 rad color: '#FFFFFFFF' id: Rock07 decals: - 783: -18.373337,10.423263 + 682: -18.373337,10.423263 - node: angle: 43.982297150257104 rad color: '#FFFFFFFF' id: Rock07 decals: - 784: -17.623337,9.912491 - 811: -2.7234015,-86.54657 - 812: 7.7326155,-75.795746 + 683: -17.623337,9.912491 + 710: -2.7234015,-86.54657 + 711: 7.7326155,-75.795746 - node: angle: 45.553093477052 rad color: '#FFFFFFFF' id: Rock07 decals: - 785: -17.133755,9.391295 + 684: -17.133755,9.391295 - node: angle: 47.1238898038469 rad color: '#FFFFFFFF' id: Rock07 decals: - 786: -16.081673,9.328752 + 685: -16.081673,9.328752 - node: angle: 48.69468613064179 rad color: '#FFFFFFFF' id: Rock07 decals: - 787: -15.529588,8.004916 + 686: -15.529588,8.004916 - node: color: '#F9FFFEFF' id: SpaceStationSign1 decals: - 4285: -10,-38 + 3437: -10,-38 - node: color: '#F9FFFEFF' id: SpaceStationSign2 decals: - 4284: -9,-38 + 3436: -9,-38 - node: color: '#F9FFFEFF' id: SpaceStationSign3 decals: - 4283: -8,-38 + 3435: -8,-38 - node: color: '#F9FFFEFF' id: SpaceStationSign4 decals: - 4282: -7,-38 + 3434: -7,-38 - node: color: '#F9FFFEFF' id: SpaceStationSign5 decals: - 4281: -6,-38 + 3433: -6,-38 - node: color: '#F9FFFEFF' id: SpaceStationSign6 decals: - 4280: -5,-38 + 3432: -5,-38 - node: color: '#F9FFFEFF' id: SpaceStationSign7 decals: - 4279: -4,-38 + 3431: -4,-38 - node: angle: -1.5707963267948966 rad color: '#DE3A3AC0' id: StandClear decals: - 3991: -41,-1 - 3992: -41,-2 + 3151: -41,-1 + 3152: -41,-2 - node: angle: -1.5707963267948966 rad color: '#DE3A3AFF' id: StandClear decals: - 3993: -41,-1 - 3994: -41,-2 + 3153: -41,-1 + 3154: -41,-2 - node: angle: 4.71238898038469 rad color: '#DE3A3AFF' id: StandClear decals: - 3997: -41,0 - 3998: -41,0 - - node: - angle: -3.141592653589793 rad - color: '#FFFFFFFF' - id: StandClear - decals: - 123: 41,10 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: StandClear - decals: - 120: 41,7 - 121: 41,6 - 122: 40,9 + 3157: -41,0 + 3158: -41,0 - node: color: '#FFFFFFFF' id: StandClear decals: - 124: 41,8 - 141: 10,33 - 166: -4,33 - 167: 1,33 - 181: -13,32 - 184: -13,19 - 200: 27,-5 - 201: 28,-5 - 1184: 11,-38 - 1185: 12,-38 - 1186: 14,-38 - 1187: 15,-38 + 47: 10,33 + 72: -4,33 + 73: 1,33 + 87: -13,32 + 90: -13,19 + 104: 27,-5 + 105: 28,-5 + 1058: 11,-38 + 1059: 12,-38 + 1060: 14,-38 + 1061: 15,-38 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: StandClear decals: - 142: 11,34 - 168: -3,34 - 182: -12,34 + 48: 11,34 + 74: -3,34 + 88: -12,34 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: StandClear decals: - 143: 10,35 - 169: -4,35 - 170: 1,35 - 183: -12,35 - 194: -12,44 - 1188: 11,-39 - 1189: 12,-39 - 1190: 14,-39 - 1191: 15,-39 - 1192: 14,-60 + 49: 10,35 + 75: -4,35 + 76: 1,35 + 89: -12,35 + 100: -12,44 + 1062: 11,-39 + 1063: 12,-39 + 1064: 14,-39 + 1065: 15,-39 + 1066: 14,-60 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: StandClear decals: - 171: 0,34 + 77: 0,34 - node: color: '#0E7F1B81' id: ThreeQuarterTileOverlayGreyscale decals: - 944: 21,-13 + 818: 21,-13 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale decals: - 294: 22,-27 - 295: 23,-28 - 952: 18,-12 - 956: 15,-13 - 957: 15,-16 - 958: 15,-19 - 983: 15,-22 - 1064: 18,-33 - 1095: 10,-30 - 4246: 21,-22 - 4628: -21,-10 + 198: 22,-27 + 199: 23,-28 + 826: 18,-12 + 830: 15,-13 + 831: 15,-16 + 832: 15,-19 + 857: 15,-22 + 938: 18,-33 + 969: 10,-30 + 3398: 21,-22 + 3780: -21,-10 - node: color: '#5E7C1681' id: ThreeQuarterTileOverlayGreyscale decals: - 1053: 21,-16 - 1054: 21,-19 + 927: 21,-16 + 928: 21,-19 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale decals: - 1834: 37,18 - 1835: 50,18 - 1836: 57,18 - 4417: -22,-14 + 3569: -22,-14 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale decals: - 522: 0,-54 - 1275: 8,-66 - - node: - color: '#F9801D80' - id: ThreeQuarterTileOverlayGreyscale - decals: - 4206: 10,-22 + 426: 0,-54 + 1149: 8,-66 - node: color: '#0E7F1B81' id: ThreeQuarterTileOverlayGreyscale180 decals: - 946: 22,-14 - 949: 22,-17 - 950: 22,-20 + 820: 22,-14 + 823: 22,-17 + 824: 22,-20 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 308: 28,-30 - 309: 27,-29 - 989: 19,-31 - 1068: 22,-35 - 4248: 26,-24 - 4631: -19,-11 + 212: 28,-30 + 213: 27,-29 + 863: 19,-31 + 942: 22,-35 + 3400: 26,-24 + 3783: -19,-11 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1854: 48,15 - 1855: 55,6 - 1856: 59,15 - 4414: -14,-22 + 3566: -14,-22 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 512: 6,-59 + 416: 6,-59 - node: color: '#F9801D80' id: ThreeQuarterTileOverlayGreyscale180 decals: - 4208: 13,-28 + 3364: 13,-28 - node: color: '#0E7F1B81' id: ThreeQuarterTileOverlayGreyscale270 decals: - 951: 21,-20 + 825: 21,-20 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 decals: - 252: 21,-31 - 315: 22,-30 - 316: 23,-29 - 959: 15,-20 - 960: 15,-17 - 961: 15,-14 - 985: 15,-28 - 1065: 18,-35 - 1108: 14,-35 - 1116: 10,-31 - 4272: 21,-24 - 4629: -21,-11 + 156: 21,-31 + 219: 22,-30 + 220: 23,-29 + 833: 15,-20 + 834: 15,-17 + 835: 15,-14 + 859: 15,-28 + 939: 18,-35 + 982: 14,-35 + 990: 10,-31 + 3424: 21,-24 + 3781: -21,-11 - node: color: '#5E7C1681' id: ThreeQuarterTileOverlayGreyscale270 decals: - 1055: 21,-17 - 1056: 21,-14 + 929: 21,-17 + 930: 21,-14 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale270 decals: - 1858: 57,15 - 1859: 37,15 - 4415: -21,-22 - 4416: -22,-16 + 3567: -21,-22 + 3568: -22,-16 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale270 decals: - 521: 0,-55 + 425: 0,-55 - node: color: '#F9801D80' id: ThreeQuarterTileOverlayGreyscale270 decals: - 4207: 10,-28 + 3363: 10,-28 - node: color: '#0E7F1B81' id: ThreeQuarterTileOverlayGreyscale90 decals: - 943: 19,-12 - 945: 22,-13 - 947: 22,-16 - 948: 22,-19 + 817: 19,-12 + 819: 22,-13 + 821: 22,-16 + 822: 22,-19 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 301: 28,-27 - 302: 27,-28 - 4247: 26,-22 - 4630: -19,-10 + 205: 28,-27 + 206: 27,-28 + 3399: 26,-22 + 3782: -19,-10 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale90 decals: - 1852: 55,18 - 1853: 48,18 - 1857: 59,18 - 4418: -18,-14 + 3570: -18,-14 - node: color: '#D381C996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 507: 6,-54 - 1276: 10,-66 + 411: 6,-54 + 1150: 10,-66 - node: - color: '#F9801D80' - id: ThreeQuarterTileOverlayGreyscale90 + color: '#FFFFFFFF' + id: WarnBox decals: - 4205: 13,-22 + 4926: 32,24 + 4927: 33,24 + 4928: 34,24 + 4929: 35,24 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleNE decals: - 4185: -31,-30 + 3345: -31,-30 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleNW decals: - 4184: -34,-30 + 3344: -34,-30 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleSE decals: - 5464: -31,-20 + 4581: -31,-20 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleSW decals: - 4183: -34,-20 + 3343: -34,-20 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: - 41: 53,12 - 64: 17,29 - 65: 19,29 - 108: 14,35 - 109: 14,33 - 110: 14,31 - 1466: 53,28 - 1467: 55,28 + 4802: 15,35 + 4909: 38,28 + 4910: 38,25 + 4918: 35,28 + 4921: 33,28 + 5299: 66,13 - node: color: '#FFFFFFFF' id: WarnCornerNW decals: - 45: 49,12 - 62: 16,29 - 63: 18,29 - 1464: 52,28 - 1465: 54,28 + 4799: 13,35 + 4820: 20,22 + 4821: 20,20 + 4913: 36,28 + 4916: 36,25 + 4917: 32,28 + 4920: 34,28 - node: color: '#FFFFFFFF' id: WarnCornerSE decals: - 31: 49,6 - 34: 51,6 - 35: 53,6 - 43: 53,9 - 111: 14,30 - 112: 14,32 - 113: 14,34 + 4805: 15,33 + 4911: 38,27 + 4912: 38,24 + 5302: 66,17 - node: color: '#FFFFFFFF' id: WarnCornerSW decals: - 30: 48,6 - 32: 50,6 - 33: 52,6 - 42: 49,9 + 4804: 13,33 + 4822: 20,19 + 4823: 20,21 + 4914: 36,27 + 4915: 36,24 - node: color: '#DE3A3AC0' id: WarnCornerSmallGreyscaleSE decals: - 4973: -42,1 - 4974: -42,1 + 4093: -42,1 + 4094: -42,1 - node: color: '#FFFFFFFF' id: WarnCornerSmallGreyscaleSE decals: - 5463: -36,-16 + 4580: -36,-16 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 5295: 67,11 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNW + decals: + 5294: 73,11 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSE + decals: + 5296: 67,18 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSW + decals: + 5293: 73,18 - node: color: '#DE3A3A96' id: WarnFullGreyscale decals: - 4286: -13,-40 - 4287: -12,-40 - 4288: -11,-40 - 4289: -8,-40 - 4290: -7,-40 - 4291: -6,-40 - 4292: -5,-40 - 4370: -10,-40 - 4371: -9,-40 - 4440: -32,-36 - 4441: -31,-36 + 3438: -13,-40 + 3439: -12,-40 + 3440: -11,-40 + 3441: -8,-40 + 3442: -7,-40 + 3443: -6,-40 + 3444: -5,-40 + 3522: -10,-40 + 3523: -9,-40 + 3592: -32,-36 + 3593: -31,-36 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 39: 49,7 - 40: 51,7 - 44: 53,7 - 66: 17,28 - 67: 19,28 - 186: -13,20 - 187: -13,21 - 188: -13,22 - 193: -13,23 - 1468: 55,27 - 1469: 53,27 + 92: -13,20 + 93: -13,21 + 94: -13,22 + 99: -13,23 + 4803: 15,34 + 4846: 25,13 + 4847: 25,14 + 4848: 25,15 + 4849: 25,22 + 4850: 25,23 + 4851: 25,24 + 4852: 25,25 + 4853: 25,26 + 4854: 25,27 + 4855: 25,28 + 4856: 25,29 + 4857: 25,30 + 4858: 22,34 + 4859: 22,35 + 4860: 22,36 + 4861: 18,34 + 4862: 18,35 + 4863: 18,36 + 4922: 33,27 + 4923: 35,27 + 5285: 67,12 + 5286: 67,13 + 5287: 67,17 + 5297: 66,11 + 5298: 66,12 + 5303: 66,18 + 5406: 25,19 + 5407: 25,18 + 5408: 25,17 - node: color: '#DE3A3A96' id: WarnLineGreyscaleE decals: - 4970: -42,-2 - 4971: -42,-2 + 4090: -42,-2 + 4091: -42,-2 - node: color: '#DE3A3AC0' id: WarnLineGreyscaleE decals: - 4972: -42,-2 + 4092: -42,-2 - node: color: '#DE3A3AFF' id: WarnLineGreyscaleE decals: - 3995: -42,-1 - 3996: -42,0 + 3155: -42,-1 + 3156: -42,0 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleE decals: - 4193: -36,-18 - 4194: -36,-17 + 3353: -36,-18 + 3354: -36,-17 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleN decals: - 4171: -30,-26 - 4172: -31,-26 - 4173: -32,-26 - 4174: -33,-26 - 4175: -34,-26 - 4176: -35,-26 - 4186: -33,-30 - 4187: -32,-30 - 4191: -31,-34 - 4192: -32,-34 + 3331: -30,-26 + 3332: -31,-26 + 3333: -32,-26 + 3334: -33,-26 + 3335: -34,-26 + 3336: -35,-26 + 3346: -33,-30 + 3347: -32,-30 + 3351: -31,-34 + 3352: -32,-34 - node: color: '#DE3A3AC0' id: WarnLineGreyscaleS decals: - 4975: -41,1 - 4976: -41,1 + 4095: -41,1 + 4096: -41,1 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleS decals: - 4177: -35,-24 - 4178: -34,-24 - 4179: -33,-24 - 4180: -32,-24 - 4181: -31,-24 - 4182: -30,-24 - 4188: -33,-20 - 4189: -32,-16 - 4190: -31,-16 - 4195: -35,-16 - 5465: -32,-20 + 3337: -35,-24 + 3338: -34,-24 + 3339: -33,-24 + 3340: -32,-24 + 3341: -31,-24 + 3342: -30,-24 + 3348: -33,-20 + 3349: -32,-16 + 3350: -31,-16 + 3355: -35,-16 + 4582: -32,-20 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 117: 13,30 - 118: 13,32 - 119: 13,34 - 5658: 46,9 - 5659: 45,9 - 5660: 44,9 - 5661: 43,9 - 5662: 42,9 - 5663: 41,9 + 4806: 14,33 + 4826: 21,19 + 4827: 21,21 + 5288: 68,18 + 5289: 69,18 + 5290: 70,18 + 5291: 71,18 + 5292: 72,18 + 5301: 65,17 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 36: 48,7 - 37: 50,7 - 38: 52,7 - 68: 16,28 - 69: 18,28 - 189: -13,20 - 190: -13,21 - 191: -13,22 - 192: -13,23 - 1470: 52,27 - 1471: 54,27 + 95: -13,20 + 96: -13,21 + 97: -13,22 + 98: -13,23 + 4800: 13,34 + 4828: 18,36 + 4829: 18,35 + 4830: 18,34 + 4831: 22,36 + 4832: 22,35 + 4833: 22,34 + 4834: 24,30 + 4835: 24,29 + 4836: 24,28 + 4837: 24,27 + 4838: 24,26 + 4839: 24,25 + 4840: 24,24 + 4841: 24,23 + 4842: 24,22 + 4843: 24,15 + 4844: 24,14 + 4845: 24,13 + 4924: 32,27 + 4925: 34,27 + 5274: 73,12 + 5275: 73,13 + 5276: 73,14 + 5277: 73,15 + 5278: 73,16 + 5279: 73,17 + 5403: 24,19 + 5404: 24,18 + 5405: 24,17 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 114: 13,35 - 115: 13,33 - 116: 13,31 - 128: 55,13 - 129: 55,12 - 130: 55,9 - 131: 55,8 - 132: 57,12 - 133: 58,12 - 134: 59,12 - 135: 57,9 - 136: 58,9 - 137: 59,9 - 144: 4,34 - 145: 5,34 - 146: 6,34 - 147: 7,34 - 148: 8,34 - 149: 9,34 - 150: 9,33 - 151: 8,33 - 152: 7,33 - 153: 6,33 - 154: 5,33 - 155: 4,33 - 156: 2,34 - 157: 1,34 - 158: 2,33 - 159: 1,33 - 172: -6,34 - 173: -7,34 - 174: -8,34 - 175: -8,33 - 176: -7,33 - 177: -6,33 - 2002: 38,-1 - 2003: 39,-1 - 2004: 40,-1 - 2005: 38,0 - 2006: 39,0 - 2007: 40,0 - 3936: 56,12 - 3937: 56,9 - 5652: 41,9 - 5653: 42,9 - 5654: 43,9 - 5655: 44,9 - 5656: 45,9 - 5657: 46,9 + 50: 4,34 + 51: 5,34 + 52: 6,34 + 53: 7,34 + 54: 8,34 + 55: 9,34 + 56: 9,33 + 57: 8,33 + 58: 7,33 + 59: 6,33 + 60: 5,33 + 61: 4,33 + 62: 2,34 + 63: 1,34 + 64: 2,33 + 65: 1,33 + 78: -6,34 + 79: -7,34 + 80: -8,34 + 81: -8,33 + 82: -7,33 + 83: -6,33 + 1506: 38,-1 + 1507: 39,-1 + 1508: 40,-1 + 1509: 38,0 + 1510: 39,0 + 1511: 40,0 + 4801: 14,35 + 4824: 21,22 + 4825: 21,20 + 5280: 72,11 + 5281: 71,11 + 5282: 70,11 + 5283: 69,11 + 5284: 68,11 + 5300: 65,13 - node: color: '#FFFFFFFF' id: WoodTrimThinBox decals: - 3904: 34,-91 - 3905: 35,-91 - 3906: 36,-91 - 3907: 36,-92 - 3908: 35,-92 - 3909: 34,-92 - 3910: 34,-93 - 3911: 35,-93 - 3912: 36,-93 - 3913: 36,-94 - 3914: 35,-94 - 3915: 34,-94 - 3916: 34,-95 - 3917: 35,-95 - 3918: 36,-95 - 3919: 36,-96 - 3920: 34,-96 - 3921: 35,-96 - 3922: 27,-91 - 3923: 26,-91 - 3924: 26,-92 - 3925: 27,-92 - 3926: 27,-93 - 3927: 26,-93 - 3928: 26,-94 - 3929: 27,-94 - 3930: 27,-95 - 3931: 27,-96 - 3932: 26,-96 - 3933: 26,-95 - 3934: 34,-90 - 3935: 35,-90 + 3080: 34,-91 + 3081: 35,-91 + 3082: 36,-91 + 3083: 36,-92 + 3084: 35,-92 + 3085: 34,-92 + 3086: 34,-93 + 3087: 35,-93 + 3088: 36,-93 + 3089: 36,-94 + 3090: 35,-94 + 3091: 34,-94 + 3092: 34,-95 + 3093: 35,-95 + 3094: 36,-95 + 3095: 36,-96 + 3096: 34,-96 + 3097: 35,-96 + 3098: 27,-91 + 3099: 26,-91 + 3100: 26,-92 + 3101: 27,-92 + 3102: 27,-93 + 3103: 26,-93 + 3104: 26,-94 + 3105: 27,-94 + 3106: 27,-95 + 3107: 27,-96 + 3108: 26,-96 + 3109: 26,-95 + 3110: 34,-90 + 3111: 35,-90 - node: color: '#474F52FF' id: WoodTrimThinLineS decals: - 3985: -37,4 - 3986: -38,4 - 3987: -39,4 + 3145: -37,4 + 3146: -38,4 + 3147: -39,4 - node: angle: 3.141592653589793 rad color: '#0E7F1BFF' id: arrow decals: - 1635: -49.08386,-34.011707 + 1487: -49.08386,-34.011707 - node: cleanable: True angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: body decals: - 60: 48,-14 + 26: 48,-14 - node: angle: 6.283185307179586 rad color: '#0E7F1BFF' id: credit decals: - 1633: -49.58386,-33.949165 - 1634: -48.65886,-33.89913 + 1485: -49.58386,-33.949165 + 1486: -48.65886,-33.89913 - node: color: '#F9801DFF' id: grasssnowb1 decals: - 5097: -73.41935,1.1865985 + 4217: -73.41935,1.1865985 - node: color: '#F9801DFF' id: grasssnowb3 decals: - 5096: -73.9506,4.4180098 + 4216: -73.9506,4.4180098 - node: color: '#D381C996' id: rune1 decals: - 412: 2,-61 + 316: 2,-61 - node: color: '#D381C996' id: rune2 decals: - 554: 2,-52 - 3815: 20,-66 + 458: 2,-52 + 3000: 20,-66 - node: color: '#D381C996' id: rune3 decals: - 555: 4,-52 - 3816: 21,-68 + 459: 4,-52 + 3001: 21,-68 - node: color: '#D381C996' id: rune4 decals: - 415: 6,-61 - 3817: 19,-68 + 319: 6,-61 + 3002: 19,-68 - node: color: '#D381C996' id: rune5 decals: - 413: 2,-64 + 317: 2,-64 - node: color: '#D381C996' id: rune6 decals: - 414: 6,-64 + 318: 6,-64 - node: cleanable: True angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: skull decals: - 61: 49,-14 + 27: 49,-14 - node: cleanable: True angle: -1.5707963267948966 rad color: '#DE3A3A96' id: splatter decals: - 59: 48.271217,-14.056242 + 25: 48.271217,-14.056242 type: DecalGrid - version: 2 data: @@ -8493,13 +8564,11 @@ entities: 1,2: 0: 65535 1,3: - 0: 1919 - 1: 63616 + 0: 65535 2,2: 0: 65535 2,3: - 0: 15 - 1: 4368 + 0: 4383 3,2: 0: 65535 3,3: @@ -8631,9 +8700,9 @@ entities: 14,4: 0: 65535 15,4: - 0: 8191 + 0: 65535 16,4: - 0: 819 + 0: 65535 12,0: 0: 65535 12,1: @@ -8659,7 +8728,7 @@ entities: 14,3: 0: 65535 15,0: - 0: 65297 + 0: 65311 15,1: 0: 65535 15,2: @@ -8667,13 +8736,13 @@ entities: 15,3: 0: 65535 16,0: - 0: 13056 + 0: 62223 16,1: - 0: 13107 + 0: 65535 16,2: - 0: 13107 + 0: 65535 16,3: - 0: 13107 + 0: 65535 4,-4: 0: 65535 4,-3: @@ -8829,10 +8898,9 @@ entities: -1,7: 0: 63351 0,7: - 0: 61440 + 0: 64716 1,7: - 0: 61440 - 1: 4095 + 0: 65535 2,5: 0: 65535 2,6: @@ -8914,13 +8982,13 @@ entities: 2,-6: 0: 65535 2,-5: - 0: 29443 + 0: 65519 3,-7: 0: 65535 3,-6: 0: 65535 3,-5: - 0: 52428 + 0: 65535 -5,-9: 0: 65535 -5,-10: @@ -8982,9 +9050,9 @@ entities: 0,9: 0: 30591 0,10: - 0: 29767 + 0: 64719 0,11: - 0: 30583 + 0: 32767 1,8: 0: 65535 1,9: @@ -9032,7 +9100,7 @@ entities: 7,10: 0: 65535 7,11: - 0: 13055 + 0: 65279 8,8: 0: 65535 9,8: @@ -9722,7 +9790,7 @@ entities: 10,4: 0: 65535 10,5: - 0: 32767 + 0: 65535 10,6: 0: 30583 10,7: @@ -9972,17 +10040,17 @@ entities: 18,-2: 0: 1911 11,5: - 0: 4095 + 0: 8191 11,6: 0: 65520 11,7: 0: 65535 12,5: - 0: 36863 + 0: 65535 12,6: - 0: 48056 + 0: 65535 12,7: - 0: 65531 + 0: 65535 13,5: 0: 65535 13,6: @@ -9990,27 +10058,27 @@ entities: 13,7: 0: 65535 14,5: - 0: 4369 + 0: 65535 14,6: - 0: 30579 + 0: 65535 14,7: - 0: 13107 + 0: 65535 15,-6: 0: 13107 15,-5: 0: 51 8,9: - 0: 63631 + 0: 65535 8,10: 0: 65535 8,11: - 0: 39423 + 0: 65535 9,9: 0: 65535 9,10: - 2: 273 + 1: 273 0: 64170 - 3: 1092 + 2: 1092 9,11: 0: 29439 10,8: @@ -10018,9 +10086,9 @@ entities: 10,9: 0: 65535 10,10: - 4: 273 + 3: 273 0: 64170 - 1: 1092 + 4: 1092 10,11: 0: 29439 11,8: @@ -10028,10 +10096,10 @@ entities: 11,9: 0: 65535 11,10: - 1: 1365 + 4: 1365 0: 64170 11,11: - 0: 32511 + 0: 65279 15,-4: 0: 30583 15,-3: @@ -10039,7 +10107,7 @@ entities: 15,-2: 0: 30583 15,-1: - 0: 4369 + 0: 12561 10,-15: 0: 65535 11,-14: @@ -10087,7 +10155,7 @@ entities: 12,9: 0: 16383 12,10: - 1: 273 + 4: 273 0: 47650 12,11: 0: 40891 @@ -10100,11 +10168,11 @@ entities: 13,11: 0: 65535 14,8: - 0: 13107 + 0: 65535 14,9: - 0: 26231 + 0: 65535 14,10: - 0: 30566 + 0: 30575 14,11: 0: 6007 12,12: @@ -10112,11 +10180,11 @@ entities: 13,12: 0: 65535 14,12: - 0: 12561 + 0: 28945 -17,-6: 0: 4095 0,5: - 0: 17 + 0: 52241 -8,6: 0: 65535 -8,7: @@ -10412,25 +10480,25 @@ entities: -13,4: 0: 3855 8,13: - 0: 12185 + 0: 65433 8,14: - 0: 15 + 0: 50255 9,13: - 0: 3879 + 0: 65319 9,14: - 0: 15 + 0: 64527 10,13: - 0: 3943 + 0: 65383 10,14: - 0: 15 + 0: 65295 10,12: 0: 63351 11,12: - 0: 30583 + 0: 65535 11,13: - 0: 61415 + 0: 65519 11,14: - 0: 239 + 0: 63727 4,12: 0: 52988 4,13: @@ -10446,7 +10514,7 @@ entities: 6,14: 0: 255 7,13: - 0: 3875 + 0: 36643 7,14: 0: 15 -4,-24: @@ -10464,11 +10532,11 @@ entities: -5,-24: 0: 32768 8,12: - 0: 40445 + 0: 40447 5,12: 0: 56797 7,12: - 0: 14327 + 0: 14335 -11,3: 0: 53247 14,-9: @@ -10570,7 +10638,7 @@ entities: 13,14: 0: 15 14,13: - 0: 61987 + 0: 62063 14,14: 0: 255 -17,-7: @@ -10604,8 +10672,7 @@ entities: 13,-14: 0: 30576 2,4: - 0: 61440 - 1: 273 + 0: 61713 8,-24: 0: 65535 6,-24: @@ -10685,11 +10752,311 @@ entities: -17,4: 0: 200 1,4: - 1: 65535 + 0: 65535 1,5: - 1: 65535 + 0: 65535 1,6: - 1: 65535 + 0: 65535 + 0,6: + 0: 52428 + 15,5: + 0: 65535 + 15,6: + 0: 65535 + 15,7: + 0: 65535 + 1,10: + 0: 13107 + 1,11: + 0: 819 + 15,8: + 0: 65535 + 17,1: + 0: 65535 + 17,2: + 0: 65535 + 17,3: + 0: 65535 + 16,5: + 0: 4369 + 16,6: + 0: 65535 + 16,7: + 0: 65535 + 17,4: + 0: 65535 + 16,8: + 0: 65535 + 15,9: + 0: 65535 + 15,10: + 0: 65535 + 17,0: + 0: 61999 + 18,0: + 0: 61455 + 18,1: + 0: 65535 + 18,2: + 0: 65535 + 18,3: + 0: 65535 + 19,0: + 0: 12847 + 19,1: + 0: 13107 + 19,2: + 0: 13107 + 17,6: + 0: 65535 + 17,7: + 0: 13107 + 17,5: + 0: 61166 + 18,4: + 0: 65535 + 18,5: + 0: 30583 + 18,6: + 0: 30583 + 16,9: + 0: 255 + 17,8: + 0: 63283 + 17,9: + 0: 247 + 8,15: + 0: 50244 + 9,15: + 0: 64524 + 10,15: + 0: 65295 + 11,15: + 0: 63624 + 8,17: + 0: 60996 + 8,18: + 0: 14 + 8,16: + 0: 50244 + 9,16: + 0: 64524 + 9,17: + 0: 61452 + 10,16: + 0: 65295 + 10,17: + 0: 61455 + 11,16: + 0: 63624 + 11,17: + 0: 64648 + 11,18: + 0: 12 + 12,17: + 0: 4352 + 12,18: + 0: 1 + 15,13: + 0: 15 + 15,14: + 0: 15 + 19,4: + 0: 65535 + 18,8: + 0: 61440 + 18,9: + 0: 245 + 19,8: + 0: 61440 + 19,9: + 0: 36080 + 20,4: + 0: 8177 + 21,4: + 0: 36856 + 21,5: + 0: 52428 + 21,6: + 0: 204 + 22,4: + 0: 36856 + 22,5: + 0: 56797 + 22,6: + 0: 221 + 23,4: + 0: 36856 + 23,5: + 0: 56797 + 23,6: + 0: 221 + 24,4: + 0: 36856 + 24,5: + 0: 56797 + 24,6: + 0: 221 + 25,4: + 0: 4080 + 25,5: + 0: 4369 + 25,6: + 0: 17 + 27,7: + 0: 25668 + 27,4: + 0: 17476 + 27,5: + 0: 17476 + 27,6: + 0: 17476 + 20,0: + 0: 15 + 21,0: + 0: 15 + 21,2: + 0: 52224 + 21,3: + 0: 52428 + 22,0: + 0: 143 + 22,2: + 0: 56576 + 22,3: + 0: 56797 + 23,0: + 0: 62335 + 23,2: + 0: 56576 + 23,3: + 0: 56797 + 24,0: + 0: 61455 + 24,2: + 0: 56576 + 24,3: + 0: 56797 + 25,0: + 0: 61455 + 25,2: + 0: 4352 + 25,3: + 0: 4369 + 26,0: + 0: 61455 + 26,1: + 0: 140 + 27,0: + 0: 29303 + 27,1: + 0: 26452 + 27,2: + 0: 17476 + 27,3: + 0: 17476 + 22,-1: + 0: 32768 + 23,-4: + 0: 13107 + 23,-3: + 0: 13107 + 23,-2: + 0: 13299 + 23,-1: + 0: 29491 + 23,-7: + 0: 13056 + 23,-6: + 0: 62259 + 23,-5: + 0: 13107 + 24,-2: + 0: 17524 + 24,-4: + 0: 17476 + 24,-3: + 0: 17476 + 24,-1: + 0: 17476 + 27,-1: + 0: 28672 + 24,8: + 0: 61440 + 24,9: + 0: 240 + 25,8: + 0: 61440 + 25,9: + 0: 240 + 26,8: + 0: 64640 + 26,9: + 0: 240 + 27,8: + 0: 29783 + 27,9: + 0: 116 + 20,8: + 0: 61440 + 20,9: + 0: 40176 + 20,10: + 0: 35051 + 20,11: + 0: 34952 + 21,8: + 0: 61440 + 21,9: + 0: 9968 + 21,10: + 0: 8814 + 21,11: + 0: 8738 + 22,8: + 0: 61440 + 22,9: + 0: 14064 + 22,10: + 0: 1 + 23,8: + 0: 61440 + 23,9: + 0: 240 + 16,13: + 0: 15 + 16,14: + 0: 15 + 17,13: + 0: 15 + 17,14: + 0: 15 + 18,13: + 0: 15 + 18,14: + 0: 15 + 19,13: + 0: 15 + 19,14: + 0: 15 + 20,13: + 0: 51407 + 20,14: + 0: 207 + 20,12: + 0: 51336 + 21,12: + 0: 12834 + 21,13: + 0: 4115 + 21,14: + 0: 17 + 24,-6: + 0: 29764 + 24,-7: + 0: 16384 + 24,-5: + 0: 17476 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -10709,7 +11076,7 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 0 + - 6666.982 - 0 - 0 - 0 @@ -10724,8 +11091,8 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 6666.982 - 0 + - 6666.982 - 0 - 0 - 0 @@ -10740,9 +11107,9 @@ entities: temperature: 293.15 moles: - 0 - - 6666.982 - 0 - 0 + - 6666.982 - 0 - 0 - 0 @@ -10757,7 +11124,7 @@ entities: - 0 - 0 - 0 - - 6666.982 + - 0 - 0 - 0 - 0 @@ -10780,6 +11147,78 @@ entities: type: GravityShake - proto: AirAlarm entities: + - uid: 304 + components: + - rot: 3.141592653589793 rad + pos: 50.5,29.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 26967 + - 22191 + - 22192 + - 26985 + - 26988 + - 1959 + - 2421 + - 26031 + - 13077 + - 8433 + - 7909 + type: DeviceNetwork + - devices: + - 26967 + - 22191 + - 22192 + - 26985 + - 26988 + - 1959 + - 2421 + - 26031 + - 13077 + - 8433 + - 7909 + type: DeviceList + - uid: 1755 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,6.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 21919 + - 954 + - 955 + - 956 + - 26967 + - 26966 + - 26962 + - 26968 + - 21921 + - 21748 + - 21749 + - 21750 + - 21751 + - 13451 + - 13162 + type: DeviceNetwork + - devices: + - 21919 + - 954 + - 955 + - 956 + - 26967 + - 26966 + - 26962 + - 26968 + - 21921 + - 21748 + - 21749 + - 21750 + - 21751 + - 13451 + - 13162 + type: DeviceList - uid: 3694 components: - pos: 17.5,-35.5 @@ -10818,6 +11257,255 @@ entities: - 14236 - 14021 type: DeviceList + - uid: 8860 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,8.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 26984 + - 9416 + - 9417 + - 9418 + - 1958 + - 22206 + - 21916 + - 8994 + - 8995 + - 22316 + - 22189 + - 21920 + - 954 + - 955 + - 956 + - 26969 + - 22190 + - 26976 + - 26977 + - 26978 + - 26979 + - 26980 + - 26981 + - 26982 + - 26983 + - 13452 + - 13335 + - 22283 + - 22284 + - 13376 + - 13246 + type: DeviceNetwork + - devices: + - 26984 + - 9416 + - 9417 + - 9418 + - 1958 + - 22206 + - 21916 + - 8994 + - 8995 + - 22316 + - 22189 + - 21920 + - 954 + - 955 + - 956 + - 26969 + - 22190 + - 26976 + - 26977 + - 26978 + - 26979 + - 26980 + - 26981 + - 26982 + - 26983 + - 13452 + - 13335 + - 22283 + - 22284 + - 13376 + - 13246 + type: DeviceList + - uid: 9063 + components: + - pos: 45.5,14.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 25606 + - 22745 + - 26056 + - 26143 + - 13062 + - 13231 + - 21751 + - 21750 + - 21749 + - 21748 + - 21920 + - 21752 + - 26962 + - 26961 + - 26954 + - 26957 + - 26953 + - 26960 + - 26951 + - 26950 + - 26946 + type: DeviceNetwork + - devices: + - 26946 + - 26950 + - 26951 + - 26960 + - 26953 + - 26957 + - 26954 + - 26961 + - 26962 + - 21752 + - 21920 + - 21748 + - 21749 + - 21750 + - 21751 + - 13231 + - 13062 + - 26143 + - 26056 + - 22745 + - 25606 + type: DeviceList + - uid: 13485 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-11.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 25213 + - 25203 + - 25204 + - 25202 + - 25201 + - 1958 + - 21390 + - 21916 + - 857 + - 865 + - 114 + - 25254 + - 21391 + - 25260 + - 25270 + - 25269 + - 25262 + - 15912 + - 15913 + - 25266 + - 25268 + - 15990 + - 15810 + - 23752 + - 23751 + type: DeviceNetwork + - devices: + - 25213 + - 25203 + - 25204 + - 25202 + - 25201 + - 1958 + - 21390 + - 21916 + - 857 + - 865 + - 114 + - 25254 + - 21391 + - 25260 + - 25270 + - 25269 + - 25262 + - 15912 + - 15913 + - 25266 + - 25268 + - 15990 + - 15810 + - 23752 + - 23751 + type: DeviceList + - uid: 13930 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-1.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 1745 + - 27035 + - 25213 + - 25205 + - 25214 + - 25207 + - 25215 + - 25208 + - 25219 + - 25211 + - 25210 + - 25209 + - 1958 + - 25206 + - 24174 + - 24175 + - 26830 + - 26825 + - 26829 + - 26826 + - 26828 + - 26827 + - 24144 + - 24133 + - 24120 + - 24134 + - 24138 + - 24178 + type: DeviceNetwork + - devices: + - 1745 + - 27035 + - 25213 + - 25205 + - 25214 + - 25207 + - 25215 + - 25208 + - 25219 + - 25211 + - 25210 + - 25209 + - 1958 + - 25206 + - 24174 + - 24175 + - 26830 + - 26825 + - 26829 + - 26826 + - 26828 + - 26827 + - 24144 + - 24133 + - 24120 + - 24134 + - 24138 + - 24178 + type: DeviceList - uid: 21858 components: - pos: 25.5,-79.5 @@ -10965,226 +11653,6 @@ entities: - 22324 - 21389 type: DeviceList - - uid: 22045 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,8.5 - parent: 6747 - type: Transform - - devices: - - 22189 - - 860 - - 858 - - 868 - - 21761 - - 21762 - - 21765 - - 21764 - - 21919 - - 9416 - - 9417 - - 9418 - - 22206 - - 22329 - - 8995 - - 8994 - - 13452 - - 13335 - - 22283 - - 22284 - - 13246 - - 13376 - type: DeviceList - - uid: 22047 - components: - - pos: 39.5,19.5 - parent: 6747 - type: Transform - - devices: - - 21752 - - 21747 - - 21746 - - 22336 - - 21922 - - 13089 - - 13058 - type: DeviceList - - uid: 22050 - components: - - pos: 45.5,14.5 - parent: 6747 - type: Transform - - devices: - - 21748 - - 21749 - - 21750 - - 21751 - - 21921 - - 21752 - - 22333 - - 22186 - - 13061 - - 13126 - - 13105 - - 13062 - - 13106 - - 13060 - type: DeviceList - - uid: 22051 - components: - - rot: 3.141592653589793 rad - pos: 50.5,29.5 - parent: 6747 - type: Transform - - devices: - - 21757 - - 21758 - - 21927 - - 22192 - - 22191 - - 21756 - - 8433 - type: DeviceList - - uid: 22054 - components: - - pos: 21.5,23.5 - parent: 6747 - type: Transform - - devices: - - 22205 - - 22200 - - 22199 - - 22203 - - 22202 - - 22201 - - 22342 - - 13339 - - 13458 - type: DeviceList - - uid: 22055 - components: - - pos: 16.5,19.5 - parent: 6747 - type: Transform - - devices: - - 21764 - - 21765 - - 22204 - - 22202 - - 22201 - - 22343 - - 21924 - - 22344 - - 13341 - - 13456 - - 13340 - - 13455 - - 13285 - - 13336 - type: DeviceList - - uid: 22057 - components: - - pos: 31.5,19.5 - parent: 6747 - type: Transform - - devices: - - 21762 - - 21761 - - 21923 - - 22204 - - 22203 - - 13337 - - 13454 - type: DeviceList - - uid: 22059 - components: - - pos: 7.5,36.5 - parent: 6747 - type: Transform - - devices: - - 22349 - - 22350 - - 21929 - - 21760 - - 21759 - - 13333 - - 13485 - type: DeviceList - - uid: 22061 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,37.5 - parent: 6747 - type: Transform - - devices: - - 21759 - - 21760 - - 22352 - - 22353 - - 21930 - - 13486 - - 13332 - - 22496 - - 22497 - type: DeviceList - - uid: 22063 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,39.5 - parent: 6747 - type: Transform - - devices: - - 22195 - - 22194 - - 22340 - - 22341 - - 13430 - - 13462 - - 13429 - - 13461 - - 22791 - - 22792 - type: DeviceList - - uid: 22071 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-11.5 - parent: 6747 - type: Transform - - ShutdownSubscribers: - - 25260 - - 25269 - - 25270 - type: DeviceNetwork - - devices: - - 21916 - - 22209 - - 114 - - 865 - - 857 - - 21390 - - 25213 - - 25201 - - 25202 - - 25203 - - 25204 - - 25266 - - 25268 - - 25262 - - 15913 - - 15912 - - 25260 - - 25269 - - 25270 - - 25254 - - 21391 - - 15990 - - 15810 - - 24135 - - 24119 - - 23751 - - 23752 - type: DeviceList - uid: 22087 components: - pos: -14.5,-40.5 @@ -11595,7 +12063,6 @@ entities: type: DeviceNetwork - devices: - 13955 - - 13869 - 13870 - 13956 - 22312 @@ -11679,45 +12146,6 @@ entities: - 15574 - 16536 type: DeviceList - - uid: 22193 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,32.5 - parent: 6747 - type: Transform - - devices: - - 21756 - - 21926 - - 21925 - - 22200 - - 22199 - - 22196 - - 22197 - - 22198 - - 22195 - - 22194 - - 22339 - - 22338 - - 13428 - - 13460 - - 13427 - - 13459 - - 13482 - - 13420 - - 13480 - - 13421 - - 13419 - - 13481 - type: DeviceList - - uid: 22210 - components: - - pos: -13.5,7.5 - parent: 6747 - type: Transform - - devices: - - 22209 - - 21820 - type: DeviceList - uid: 22223 components: - pos: 45.5,-44.5 @@ -11789,6 +12217,10 @@ entities: - pos: -2.5,-71.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 25595 + - 25608 + type: DeviceNetwork - devices: - 22154 - 22233 @@ -11798,6 +12230,8 @@ entities: - 14633 - 14915 - 438 + - 25595 + - 25608 type: DeviceList - uid: 22239 components: @@ -11885,26 +12319,6 @@ entities: - 15716 - 15989 type: DeviceList - - uid: 22331 - components: - - pos: 35.5,12.5 - parent: 6747 - type: Transform - - devices: - - 860 - - 858 - - 868 - - 22190 - - 21751 - - 21750 - - 21749 - - 21748 - - 21747 - - 21746 - - 21920 - - 13162 - - 13451 - type: DeviceList - uid: 22346 components: - pos: 15.5,12.5 @@ -11914,25 +12328,6 @@ entities: - 9416 - 9417 - 9418 - - 22345 - type: DeviceList - - uid: 22347 - components: - - pos: 18.5,30.5 - parent: 6747 - type: Transform - - devices: - - 22196 - - 22197 - - 22198 - - 21928 - - 22351 - - 22349 - - 22350 - - 13483 - - 13338 - - 13334 - - 13484 type: DeviceList - uid: 25271 components: @@ -11941,19 +12336,8 @@ entities: parent: 6747 type: Transform - ShutdownSubscribers: - - 21389 - - 25201 - - 25202 - - 25203 - - 25204 - - 25212 - - 25205 - - 23683 - - 23686 - - 23671 - - 23659 - - 23684 - - 23685 + - 24135 + - 24119 type: DeviceNetwork - devices: - 21389 @@ -11969,48 +12353,8 @@ entities: - 23659 - 23684 - 23685 - type: DeviceList - - uid: 25273 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-1.5 - parent: 6747 - type: Transform - - ShutdownSubscribers: - - 25277 - - 24178 - - 24138 - - 24134 - - 24120 - type: DeviceNetwork - - devices: - - 25213 - - 25205 - - 22209 - - 25206 - - 25214 - - 25207 - - 25215 - - 25208 - - 25219 - - 25209 - - 25210 - - 25211 - - 24236 - - 24229 - - 24237 - - 24228 - - 24238 - - 24227 - - 24175 - - 24174 - - 24144 - - 24133 - - 25277 - - 24178 - - 24138 - - 24134 - - 24120 + - 24135 + - 24119 type: DeviceList - uid: 25275 components: @@ -12712,7 +13056,6 @@ entities: - 25256 - 25257 - 25258 - - 13869 - 13955 type: DeviceNetwork - devices: @@ -12722,17 +13065,325 @@ entities: - 25256 - 25257 - 25258 - - 13869 - 13955 type: DeviceList -- proto: AirAlarmElectronics - entities: - - uid: 8258 + - uid: 26597 + components: + - rot: -1.5707963267948966 rad + pos: 64.5,31.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 27051 + type: DeviceNetwork + - devices: + - 27051 + type: DeviceList + - uid: 26945 + components: + - pos: 72.5,19.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 26946 + - 21921 + - 26953 + - 26952 + - 26136 + - 26058 + - 26064 + - 26131 + type: DeviceNetwork + - devices: + - 26946 + - 21921 + - 26953 + - 26952 + - 26136 + - 26058 + - 26064 + - 26131 + type: DeviceList + - uid: 26958 + components: + - rot: -1.5707963267948966 rad + pos: 53.5,9.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 21921 + - 26954 + - 26228 + - 26070 + - 26072 + - 26227 + - 26074 + - 26226 + - 26130 + - 26069 + type: DeviceNetwork + - devices: + - 21921 + - 26954 + - 26228 + - 26070 + - 26072 + - 26227 + - 26074 + - 26226 + - 26130 + - 26069 + type: DeviceList + - uid: 26963 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,16.5 + parent: 6747 + type: Transform + - uid: 26970 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,15.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 21919 + - 26983 + - 26982 + - 26981 + - 26980 + - 26979 + - 26978 + - 26977 + - 26976 + - 22190 + - 26967 + - 26975 + - 1820 + - 26973 + - 26972 + - 22433 + - 26974 + - 26254 + - 26997 + - 26308 + - 26317 + - 26275 + - 26276 + type: DeviceNetwork + - devices: + - 21919 + - 26983 + - 26982 + - 26981 + - 26980 + - 26979 + - 26978 + - 26977 + - 26976 + - 22190 + - 26967 + - 26975 + - 1820 + - 26973 + - 26972 + - 22433 + - 26974 + - 26254 + - 26997 + - 26308 + - 26317 + - 26275 + - 26276 + type: DeviceList + - uid: 26989 + components: + - rot: 1.5707963267948966 rad + pos: 56.5,29.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 1784 + - 1959 + - 2421 + - 26988 + - 26946 + - 26948 + - 26949 + - 26030 + - 26049 + type: DeviceNetwork + - devices: + - 1784 + - 1959 + - 2421 + - 26988 + - 26946 + - 26948 + - 26949 + - 26030 + - 26049 + type: DeviceList + - uid: 26991 + components: + - rot: 1.5707963267948966 rad + pos: 56.5,18.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 26985 + - 26948 + - 26949 + - 26967 + - 26987 + - 21921 + - 26961 + - 26950 + - 26951 + - 26960 + - 26952 + - 26028 + - 26051 + type: DeviceNetwork + - devices: + - 26985 + - 26948 + - 26949 + - 26967 + - 26987 + - 21921 + - 26961 + - 26950 + - 26951 + - 26960 + - 26952 + - 26028 + - 26051 + type: DeviceList + - uid: 27003 + components: + - pos: 14.5,29.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 1820 + - 27001 + - 27002 + - 22433 + - 27010 + - 26318 + - 26337 + - 13334 + - 13484 + - 22571 + - 27011 + - 26336 + - 27020 + - 26329 + - 27021 + type: DeviceNetwork + - devices: + - 1820 + - 27001 + - 27002 + - 22433 + - 27010 + - 26318 + - 26337 + - 13334 + - 13484 + - 22571 + - 27011 + - 26336 + - 27020 + - 26329 + - 27021 + type: DeviceList + - uid: 27005 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,32.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 21930 + - 27007 + - 21759 + - 21760 + - 21928 + - 27002 + - 27001 + - 26969 + - 26972 + - 26973 + - 26367 + - 26316 + - 13333 + - 22062 + type: DeviceNetwork + - devices: + - 21930 + - 27007 + - 21759 + - 21760 + - 21928 + - 27002 + - 27001 + - 26969 + - 26972 + - 26973 + - 26367 + - 26316 + - 13333 + - 22062 + type: DeviceList + - uid: 27009 + components: + - pos: 15.5,23.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 26969 + - 26974 + - 21928 + - 27010 + - 26346 + - 26199 + - 13217 + - 26345 + type: DeviceNetwork + - devices: + - 26969 + - 26974 + - 21928 + - 27010 + - 26346 + - 26199 + - 13217 + - 26345 + type: DeviceList + - uid: 27036 components: - rot: 3.141592653589793 rad - pos: 16.904121,13.584338 + pos: -18.5,3.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 1958 + - 27034 + - 25212 + - 27035 + - 26831 + - 26824 + type: DeviceNetwork + - devices: + - 1958 + - 27034 + - 25212 + - 27035 + - 26831 + - 26824 + type: DeviceList - proto: AirCanister entities: - uid: 7790 @@ -12745,24 +13396,24 @@ entities: - pos: 32.5,33.5 parent: 6747 type: Transform - - uid: 8185 + - uid: 11336 components: - - pos: 33.5,33.5 + - pos: 57.5,-19.5 parent: 6747 type: Transform - - uid: 11159 + - uid: 11372 components: - - pos: 55.5,25.5 + - pos: 34.5,22.5 parent: 6747 type: Transform - - uid: 11336 + - uid: 12029 components: - - pos: 57.5,-19.5 + - pos: 33.5,24.5 parent: 6747 type: Transform - - uid: 11372 + - uid: 16663 components: - - pos: 34.5,22.5 + - pos: 13.5,-20.5 parent: 6747 type: Transform - proto: Airlock @@ -12850,9 +13501,14 @@ entities: type: Transform - proto: AirlockAtmosphericsGlassLocked entities: - - uid: 6613 + - uid: 7850 components: - - pos: 35.5,29.5 + - pos: 56.5,33.5 + parent: 6747 + type: Transform + - uid: 7855 + components: + - pos: 56.5,32.5 parent: 6747 type: Transform - uid: 8041 @@ -12865,6 +13521,13 @@ entities: - pos: 53.5,36.5 parent: 6747 type: Transform +- proto: AirlockAtmosphericsLocked + entities: + - uid: 6888 + components: + - pos: 49.5,27.5 + parent: 6747 + type: Transform - proto: AirlockBarLocked entities: - uid: 623 @@ -12925,33 +13588,48 @@ entities: type: Transform - proto: AirlockCargoGlassLocked entities: - - uid: 3285 + - uid: 809 components: - - pos: 42.5,7.5 + - pos: 8.5,27.5 parent: 6747 type: Transform - - uid: 3301 + - uid: 6469 components: - - pos: 42.5,6.5 + - pos: 23.5,23.5 parent: 6747 type: Transform - - uid: 6597 + - uid: 6688 components: - - pos: 42.5,13.5 + - pos: 11.5,29.5 parent: 6747 type: Transform - - uid: 6605 + - uid: 7624 components: - - pos: 45.5,7.5 + - pos: 20.5,14.5 parent: 6747 type: Transform - - uid: 6606 + - uid: 8406 components: - - pos: 45.5,6.5 + - pos: 21.5,12.5 + parent: 6747 + type: Transform + - uid: 8460 + components: + - pos: 22.5,23.5 + parent: 6747 + type: Transform + - uid: 8496 + components: + - pos: 22.5,12.5 parent: 6747 type: Transform - proto: AirlockCargoLocked entities: + - uid: 1819 + components: + - pos: 3.5,25.5 + parent: 6747 + type: Transform - uid: 5377 components: - pos: 43.5,-8.5 @@ -12962,6 +13640,16 @@ entities: - pos: 48.5,-8.5 parent: 6747 type: Transform + - uid: 8491 + components: + - pos: 15.5,25.5 + parent: 6747 + type: Transform + - uid: 27024 + components: + - pos: 7.5,25.5 + parent: 6747 + type: Transform - proto: AirlockChapelLocked entities: - uid: 2930 @@ -12983,24 +13671,16 @@ entities: type: Transform - proto: AirlockChiefEngineerGlassLocked entities: - - uid: 23 - components: - - pos: 29.5,29.5 - parent: 6747 - type: Transform - - uid: 2265 - components: - - pos: 18.5,14.5 - parent: 6747 - type: Transform - - uid: 8343 + - uid: 6717 components: - - pos: 21.5,32.5 + - pos: 51.5,10.5 parent: 6747 type: Transform - - uid: 21733 +- proto: AirlockChiefEngineerLocked + entities: + - uid: 17021 components: - - pos: 12.5,21.5 + - pos: 71.5,19.5 parent: 6747 type: Transform - proto: AirlockChiefMedicalOfficerGlassLocked @@ -13098,81 +13778,83 @@ entities: - pos: -28.5,-46.5 parent: 6747 type: Transform -- proto: AirlockEngineeringGlassLocked +- proto: AirlockDetectiveGlassLocked entities: - - uid: 798 + - uid: 233 components: - - pos: 20.5,12.5 + - pos: -19.5,2.5 parent: 6747 type: Transform - - uid: 805 +- proto: AirlockEngineeringGlassLocked + entities: + - uid: 6398 components: - - pos: 21.5,12.5 + - pos: 52.5,14.5 parent: 6747 type: Transform - - uid: 866 + - uid: 6423 components: - - pos: 29.5,12.5 + - pos: 47.5,14.5 parent: 6747 type: Transform - - uid: 895 + - uid: 13267 components: - - pos: 24.5,17.5 + - pos: 58.5,36.5 parent: 6747 type: Transform - - uid: 896 + - uid: 13415 components: - - pos: 25.5,19.5 + - pos: 64.5,26.5 parent: 6747 type: Transform - - uid: 907 + - uid: 13416 components: - - pos: 23.5,19.5 + - pos: 64.5,25.5 parent: 6747 type: Transform - - uid: 908 + - uid: 16822 components: - - pos: 22.5,19.5 + - pos: 63.5,24.5 parent: 6747 type: Transform - - uid: 1094 + - uid: 16884 components: - - pos: 20.5,24.5 + - pos: 62.5,24.5 parent: 6747 type: Transform - - uid: 2877 + - uid: 16967 components: - - pos: 23.5,35.5 + - pos: 62.5,14.5 parent: 6747 type: Transform - - uid: 6610 + - uid: 16968 components: - - pos: 31.5,26.5 + - pos: 63.5,14.5 parent: 6747 type: Transform - - uid: 8319 + - uid: 17249 components: - - pos: 23.5,30.5 + - pos: 64.5,12.5 parent: 6747 type: Transform - - uid: 8320 + - uid: 18850 components: - - pos: 24.5,30.5 + - pos: 56.5,16.5 parent: 6747 type: Transform - - uid: 8376 + - uid: 18888 components: - - pos: 24.5,35.5 + - pos: 42.5,13.5 parent: 6747 type: Transform - - uid: 8383 + - uid: 19874 components: - - pos: 24.5,23.5 + - pos: 64.5,16.5 parent: 6747 type: Transform - - uid: 8384 + - uid: 23989 components: - - pos: 23.5,23.5 + - pos: 74.5,17.5 parent: 6747 type: Transform - proto: AirlockEngineeringLocked @@ -13182,6 +13864,21 @@ entities: - pos: 4.5,-13.5 parent: 6747 type: Transform + - uid: 929 + components: + - pos: 40.5,14.5 + parent: 6747 + type: Transform + - uid: 2163 + components: + - pos: 42.5,6.5 + parent: 6747 + type: Transform + - uid: 3307 + components: + - pos: 42.5,7.5 + parent: 6747 + type: Transform - uid: 5387 components: - pos: 46.5,-22.5 @@ -13202,11 +13899,26 @@ entities: - pos: -44.5,-15.5 parent: 6747 type: Transform + - uid: 8245 + components: + - pos: 30.5,36.5 + parent: 6747 + type: Transform + - uid: 8315 + components: + - pos: 31.5,39.5 + parent: 6747 + type: Transform - uid: 10359 components: - pos: 53.5,-38.5 parent: 6747 type: Transform + - uid: 12878 + components: + - pos: 56.5,26.5 + parent: 6747 + type: Transform - uid: 13236 components: - pos: -43.5,-41.5 @@ -13340,6 +14052,33 @@ entities: - pos: 79.5,-35.5 parent: 6747 type: Transform +- proto: AirlockExternalGlassEngineeringLocked + entities: + - uid: 8255 + components: + - pos: 34.5,45.5 + parent: 6747 + type: Transform + - uid: 13301 + components: + - pos: 59.5,38.5 + parent: 6747 + type: Transform + - uid: 13411 + components: + - pos: 69.5,26.5 + parent: 6747 + type: Transform + - uid: 13412 + components: + - pos: 69.5,25.5 + parent: 6747 + type: Transform + - uid: 23995 + components: + - pos: 77.5,17.5 + parent: 6747 + type: Transform - proto: AirlockExternalGlassLocked entities: - uid: 8 @@ -13417,11 +14156,6 @@ entities: - pos: 54.5,40.5 parent: 6747 type: Transform - - uid: 8390 - components: - - pos: 29.5,42.5 - parent: 6747 - type: Transform - uid: 10052 components: - pos: -52.5,-83.5 @@ -13432,11 +14166,6 @@ entities: - pos: -58.5,-83.5 parent: 6747 type: Transform - - uid: 17045 - components: - - pos: 29.5,41.5 - parent: 6747 - type: Transform - uid: 21962 components: - pos: 11.5,-78.5 @@ -13457,11 +14186,6 @@ entities: - pos: 31.5,44.5 parent: 6747 type: Transform - - uid: 22743 - components: - - pos: 33.5,44.5 - parent: 6747 - type: Transform - uid: 22806 components: - pos: 10.5,-81.5 @@ -13489,6 +14213,12 @@ entities: type: Transform - proto: AirlockExternalGlassShuttleEscape entities: + - uid: 1129 + components: + - rot: 3.141592653589793 rad + pos: 6.5,12.5 + parent: 6747 + type: Transform - uid: 6196 components: - rot: 1.5707963267948966 rad @@ -13513,13 +14243,22 @@ entities: pos: -55.5,-12.5 parent: 6747 type: Transform -- proto: AirlockExternalLocked +- proto: AirlockExternalGlassShuttleLocked entities: - - uid: 5732 + - uid: 902 components: - - pos: 56.5,26.5 + - rot: 3.141592653589793 rad + pos: 19.5,36.5 + parent: 6747 + type: Transform + - uid: 1055 + components: + - rot: 3.141592653589793 rad + pos: 21.5,36.5 parent: 6747 type: Transform +- proto: AirlockExternalLocked + entities: - uid: 7375 components: - pos: -48.5,-13.5 @@ -13550,11 +14289,6 @@ entities: - pos: -48.5,-16.5 parent: 6747 type: Transform - - uid: 11140 - components: - - pos: 58.5,26.5 - parent: 6747 - type: Transform - uid: 23077 components: - pos: -49.5,-13.5 @@ -13696,14 +14430,10 @@ entities: - pos: 24.5,4.5 parent: 6747 type: Transform - - uid: 11523 - components: - - pos: 30.5,11.5 - parent: 6747 - type: Transform - - uid: 11524 + - uid: 12906 components: - - pos: 30.5,10.5 + - rot: 1.5707963267948966 rad + pos: 36.5,11.5 parent: 6747 type: Transform - uid: 12960 @@ -13731,9 +14461,16 @@ entities: - pos: -63.5,-4.5 parent: 6747 type: Transform - - uid: 16884 + - uid: 18889 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,10.5 + parent: 6747 + type: Transform + - uid: 18890 components: - - pos: 30.5,9.5 + - rot: 1.5707963267948966 rad + pos: 36.5,9.5 parent: 6747 type: Transform - uid: 21701 @@ -13933,16 +14670,16 @@ entities: type: Transform - proto: AirlockGlassShuttle entities: - - uid: 2461 + - uid: 23 components: - rot: 1.5707963267948966 rad - pos: 60.5,12.5 + pos: 5.5,42.5 parent: 6747 type: Transform - - uid: 4073 + - uid: 1130 components: - rot: 1.5707963267948966 rad - pos: 60.5,10.5 + pos: 5.5,44.5 parent: 6747 type: Transform - proto: AirlockGlassShuttleEasyPry @@ -14062,14 +14799,16 @@ entities: type: Transform - proto: AirlockMailGlassLocked entities: - - uid: 3282 + - uid: 8304 components: - - pos: 40.5,14.5 + - pos: 30.5,17.5 parent: 6747 type: Transform - - uid: 6640 +- proto: AirlockMailLocked + entities: + - uid: 8301 components: - - pos: 47.5,14.5 + - pos: 34.5,12.5 parent: 6747 type: Transform - proto: AirlockMaint @@ -14154,11 +14893,6 @@ entities: - pos: 20.5,4.5 parent: 6747 type: Transform - - uid: 6607 - components: - - pos: 34.5,12.5 - parent: 6747 - type: Transform - uid: 7467 components: - pos: 29.5,6.5 @@ -14209,6 +14943,11 @@ entities: - pos: 58.5,-4.5 parent: 6747 type: Transform + - uid: 11422 + components: + - pos: 38.5,14.5 + parent: 6747 + type: Transform - uid: 12911 components: - pos: 1.5,-35.5 @@ -14240,9 +14979,9 @@ entities: type: Transform - proto: AirlockMaintCargoLocked entities: - - uid: 386 + - uid: 1483 components: - - pos: 40.5,19.5 + - pos: 28.5,21.5 parent: 6747 type: Transform - uid: 7668 @@ -14264,20 +15003,52 @@ entities: - pos: -19.5,-42.5 parent: 6747 type: Transform +- proto: AirlockMaintDetectiveLocked + entities: + - uid: 257 + components: + - pos: -14.5,5.5 + parent: 6747 + type: Transform - proto: AirlockMaintEngiLocked entities: - - uid: 8750 + - uid: 6881 components: - - pos: 33.5,21.5 + - pos: 54.5,22.5 + parent: 6747 + type: Transform + - uid: 7613 + components: + - pos: 56.5,20.5 + parent: 6747 + type: Transform + - uid: 12623 + components: + - pos: 39.5,17.5 parent: 6747 type: Transform - proto: AirlockMaintGlass entities: + - uid: 960 + components: + - pos: 33.5,21.5 + parent: 6747 + type: Transform - uid: 3863 components: - pos: -45.5,-10.5 parent: 6747 type: Transform + - uid: 11146 + components: + - pos: 29.5,29.5 + parent: 6747 + type: Transform + - uid: 12021 + components: + - pos: 29.5,23.5 + parent: 6747 + type: Transform - proto: AirlockMaintHydroLocked entities: - uid: 1667 @@ -14442,6 +15213,11 @@ entities: - pos: 47.5,-48.5 parent: 6747 type: Transform + - uid: 25273 + components: + - pos: 14.5,-19.5 + parent: 6747 + type: Transform - proto: AirlockMedicalLocked entities: - uid: 1965 @@ -14468,9 +15244,21 @@ entities: type: Transform - proto: AirlockQuartermasterGlassLocked entities: - - uid: 22 + - uid: 7787 components: - - pos: 56.5,16.5 + - pos: 13.5,23.5 + parent: 6747 + type: Transform + - uid: 11955 + components: + - pos: 19.5,18.5 + parent: 6747 + type: Transform +- proto: AirlockQuartermasterLocked + entities: + - uid: 11512 + components: + - pos: 12.5,21.5 parent: 6747 type: Transform - proto: AirlockResearchDirectorGlassLocked @@ -14494,34 +15282,19 @@ entities: type: Transform - proto: AirlockSalvageGlassLocked entities: - - uid: 944 - components: - - pos: 15.5,24.5 - parent: 6747 - type: Transform - uid: 1043 components: - pos: 3.5,33.5 parent: 6747 type: Transform - - uid: 6068 - components: - - pos: 8.5,27.5 - parent: 6747 - type: Transform - - uid: 8564 + - uid: 7520 components: - pos: 3.5,32.5 parent: 6747 type: Transform - - uid: 8664 - components: - - pos: 12.5,29.5 - parent: 6747 - type: Transform - - uid: 8665 + - uid: 8328 components: - - pos: 11.5,29.5 + - pos: 5.5,28.5 parent: 6747 type: Transform - uid: 25575 @@ -14529,23 +15302,6 @@ entities: - pos: 5.5,31.5 parent: 6747 type: Transform - - uid: 25576 - components: - - pos: 6.5,31.5 - parent: 6747 - type: Transform -- proto: AirlockSalvageLocked - entities: - - uid: 25573 - components: - - pos: 6.5,12.5 - parent: 6747 - type: Transform - - uid: 25574 - components: - - pos: 5.5,12.5 - parent: 6747 - type: Transform - proto: AirlockScienceGlassLocked entities: - uid: 2047 @@ -14618,6 +15374,11 @@ entities: - pos: -5.5,-73.5 parent: 6747 type: Transform + - uid: 25274 + components: + - pos: 2.5,-71.5 + parent: 6747 + type: Transform - proto: AirlockScienceLocked entities: - uid: 2842 @@ -14630,11 +15391,6 @@ entities: - pos: 26.5,-57.5 parent: 6747 type: Transform - - uid: 5386 - components: - - pos: 42.5,-22.5 - parent: 6747 - type: Transform - proto: AirlockSecurity entities: - uid: 25526 @@ -14703,34 +15459,18 @@ entities: type: Transform - uid: 1363 components: - - name: brig 1 - type: MetaData - - pos: -20.5,0.5 - parent: 6747 - type: Transform - - links: - - 3650 - type: DeviceLinkSink - - uid: 1390 - components: - - name: brig 3 + - name: cell 3 type: MetaData - - pos: -26.5,0.5 + - pos: -24.5,7.5 parent: 6747 type: Transform - - links: - - 3185 - type: DeviceLinkSink - - uid: 1391 + - uid: 1488 components: - - name: brig 2 + - name: cell 2 type: MetaData - - pos: -23.5,0.5 + - pos: -24.5,4.5 parent: 6747 type: Transform - - links: - - 3472 - type: DeviceLinkSink - uid: 1610 components: - pos: -31.5,-14.5 @@ -14766,6 +15506,13 @@ entities: - pos: -38.5,-1.5 parent: 6747 type: Transform + - uid: 2772 + components: + - name: cell 1 + type: MetaData + - pos: -24.5,1.5 + parent: 6747 + type: Transform - uid: 3082 components: - pos: -34.5,-5.5 @@ -14853,6 +15600,11 @@ entities: - pos: -10.5,-49.5 parent: 6747 type: Transform + - uid: 4365 + components: + - pos: 42.5,-22.5 + parent: 6747 + type: Transform - uid: 5381 components: - pos: 43.5,-13.5 @@ -14909,6 +15661,50 @@ entities: type: Transform - proto: AirSensor entities: + - uid: 1745 + components: + - pos: -17.5,5.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 13930 + type: DeviceNetwork + - uid: 1784 + components: + - pos: 47.5,29.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 26990 + - 26989 + type: DeviceNetwork + - uid: 1820 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,31.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 26971 + - 26970 + - 27004 + - 27003 + type: DeviceNetwork + - uid: 1958 + components: + - pos: 6.5,1.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 73 + - 8860 + - 27037 + - 27036 + - 1781 + - 13930 + - 767 + - 13485 + type: DeviceNetwork - uid: 5046 components: - pos: 19.5,-65.5 @@ -14933,7 +15729,6 @@ entities: - 22044 - 22043 - 25272 - - 25271 - 25310 - 25309 - 25320 @@ -15114,6 +15909,12 @@ entities: - pos: 26.5,-10.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 73 + - 8860 + - 767 + - 13485 + type: DeviceNetwork - uid: 21917 components: - pos: 43.5,-20.5 @@ -15129,61 +15930,63 @@ entities: - pos: 25.5,9.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 13869 + - 1755 + - 26971 + - 26970 + type: DeviceNetwork - uid: 21920 components: - pos: 39.5,11.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 9063 + - 295 + - 73 + - 8860 + type: DeviceNetwork - uid: 21921 components: - pos: 47.5,11.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 26947 + - 26945 + - 26959 + - 26958 + - 13869 + - 1755 + - 26992 + - 26991 + type: DeviceNetwork - uid: 21922 components: - pos: 43.5,16.5 parent: 6747 type: Transform - - uid: 21923 - components: - - pos: 28.5,16.5 - parent: 6747 - type: Transform - - uid: 21924 - components: - - pos: 16.5,15.5 - parent: 6747 - type: Transform - - uid: 21925 - components: - - pos: 27.5,25.5 - parent: 6747 - type: Transform - - uid: 21926 - components: - - pos: 37.5,27.5 - parent: 6747 - type: Transform - - uid: 21927 - components: - - pos: 46.5,32.5 - parent: 6747 - type: Transform - uid: 21928 components: - pos: 10.5,26.5 parent: 6747 type: Transform - - uid: 21929 - components: - - pos: 13.5,34.5 - parent: 6747 - type: Transform + - ShutdownSubscribers: + - 27008 + - 27009 + - 27006 + - 27005 + type: DeviceNetwork - uid: 21930 components: - pos: -0.5,36.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 27006 + - 27005 + type: DeviceNetwork - uid: 21931 components: - pos: 18.5,-1.5 @@ -15213,11 +16016,6 @@ entities: - 25294 - 25293 type: DeviceNetwork - - uid: 22209 - components: - - pos: -13.5,6.5 - parent: 6747 - type: Transform - uid: 22227 components: - pos: 15.5,-74.5 @@ -15308,6 +16106,10 @@ entities: pos: 59.5,-5.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 8860 + - 73 + type: DeviceNetwork - uid: 22319 components: - pos: 59.5,-20.5 @@ -15328,61 +16130,17 @@ entities: - pos: 29.5,1.5 parent: 6747 type: Transform - - uid: 22329 - components: - - pos: 24.5,-2.5 - parent: 6747 - type: Transform - - uid: 22333 - components: - - pos: 58.5,17.5 - parent: 6747 - type: Transform - - uid: 22338 - components: - - pos: 19.5,31.5 - parent: 6747 - type: Transform - - uid: 22339 - components: - - pos: 28.5,30.5 - parent: 6747 - type: Transform - - uid: 22340 - components: - - pos: 19.5,40.5 - parent: 6747 - type: Transform - - uid: 22341 - components: - - pos: 21.5,40.5 - parent: 6747 - type: Transform - - uid: 22342 - components: - - pos: 23.5,21.5 - parent: 6747 - type: Transform - - uid: 22343 - components: - - pos: 22.5,14.5 - parent: 6747 - type: Transform - - uid: 22344 - components: - - pos: 16.5,18.5 - parent: 6747 - type: Transform - - uid: 22345 - components: - - pos: 15.5,11.5 - parent: 6747 - type: Transform - - uid: 22351 + - uid: 22433 components: - - pos: 18.5,25.5 + - pos: 16.5,20.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 26971 + - 26970 + - 27004 + - 27003 + type: DeviceNetwork - uid: 25212 components: - pos: -16.5,0.5 @@ -15390,29 +16148,41 @@ entities: type: Transform - ShutdownSubscribers: - 25272 - - 25271 - 25276 - 25275 - 25279 - 25278 - 25282 - 25281 + - 27037 + - 27036 type: DeviceNetwork - uid: 25213 components: - pos: 0.5,-1.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 13930 + - 767 + - 13485 + type: DeviceNetwork - uid: 25214 components: - pos: -9.5,-3.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 13930 + type: DeviceNetwork - uid: 25215 components: - pos: -21.5,-5.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 13930 + type: DeviceNetwork - uid: 25218 components: - pos: -45.5,1.5 @@ -15438,6 +16208,7 @@ entities: - 25299 - 25324 - 25323 + - 13930 type: DeviceNetwork - uid: 25223 components: @@ -15546,6 +16317,8 @@ entities: - 25317 - 25320 - 25319 + - 767 + - 13485 type: DeviceNetwork - uid: 25259 components: @@ -15564,8 +16337,8 @@ entities: parent: 6747 type: Transform - ShutdownSubscribers: - - 22072 - - 22071 + - 767 + - 13485 - 25310 - 25309 - 25318 @@ -15589,6 +16362,8 @@ entities: - 25320 - 25319 - 25386 + - 767 + - 13485 type: DeviceNetwork - uid: 25263 components: @@ -15628,6 +16403,10 @@ entities: - pos: -24.5,-10.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 767 + - 13485 + type: DeviceNetwork - uid: 25280 components: - rot: -1.5707963267948966 rad @@ -15653,6 +16432,120 @@ entities: - 25312 - 25311 type: DeviceNetwork + - uid: 26946 + components: + - pos: 60.5,20.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 26947 + - 26945 + - 9063 + - 295 + - 26990 + - 26989 + type: DeviceNetwork + - uid: 26955 + components: + - pos: 64.5,7.5 + parent: 6747 + type: Transform + - uid: 26956 + components: + - pos: 59.5,8.5 + parent: 6747 + type: Transform + - uid: 26957 + components: + - pos: 52.5,8.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 9063 + - 295 + type: DeviceNetwork + - uid: 26960 + components: + - rot: 3.141592653589793 rad + pos: 66.5,13.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 9063 + - 295 + - 26992 + - 26991 + type: DeviceNetwork + - uid: 26962 + components: + - rot: 3.141592653589793 rad + pos: 45.5,16.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 9063 + - 295 + - 13869 + - 1755 + type: DeviceNetwork + - uid: 26967 + components: + - pos: 42.5,21.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 13869 + - 1755 + - 26992 + - 26991 + - 13176 + - 304 + - 26971 + - 26970 + type: DeviceNetwork + - uid: 26969 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,17.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 73 + - 8860 + - 27008 + - 27009 + - 27006 + - 27005 + type: DeviceNetwork + - uid: 26984 + components: + - pos: 8.5,11.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 73 + - 8860 + type: DeviceNetwork + - uid: 26985 + components: + - pos: 58.5,28.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 26992 + - 26991 + - 13176 + - 304 + type: DeviceNetwork + - uid: 27051 + components: + - rot: -1.5707963267948966 rad + pos: 68.5,32.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 26597 + type: DeviceNetwork - proto: AirTankFilled entities: - uid: 7666 @@ -15693,28 +16586,16 @@ entities: type: Transform - proto: AmeController entities: - - uid: 8471 + - uid: 17261 components: - - pos: 24.5,38.5 + - pos: 68.5,15.5 parent: 6747 type: Transform - proto: AmeJar entities: - - uid: 6919 - components: - - pos: 44.516575,10.734759 - parent: 6747 - type: Transform -- proto: AmeShielding - entities: - - uid: 8457 - components: - - pos: 24.5,40.5 - parent: 6747 - type: Transform - - uid: 8460 + - uid: 8443 components: - - pos: 24.5,39.5 + - pos: 29.713467,18.61736 parent: 6747 type: Transform - proto: AnomalyScanner @@ -15768,23 +16649,6 @@ entities: pos: -3.5,-34.5 parent: 6747 type: Transform - - uid: 17679 - components: - - rot: 1.5707963267948966 rad - pos: 31.5,24.5 - parent: 6747 - type: Transform - - uid: 17738 - components: - - rot: 3.141592653589793 rad - pos: 30.5,12.5 - parent: 6747 - type: Transform - - uid: 17739 - components: - - pos: 41.5,19.5 - parent: 6747 - type: Transform - uid: 18180 components: - pos: 57.5,-14.5 @@ -15857,8 +16721,43 @@ entities: - pos: -61.5,7.5 parent: 6747 type: Transform + - uid: 26414 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,37.5 + parent: 6747 + type: Transform + - uid: 26469 + components: + - pos: 57.5,36.5 + parent: 6747 + type: Transform + - uid: 26592 + components: + - rot: 1.5707963267948966 rad + pos: 64.5,14.5 + parent: 6747 + type: Transform +- proto: APCElectronics + entities: + - uid: 19035 + components: + - pos: 55.530884,15.727744 + parent: 6747 + type: Transform + - uid: 19046 + components: + - pos: 55.562134,15.529691 + parent: 6747 + type: Transform - proto: APCHighCapacity entities: + - uid: 1086 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,20.5 + parent: 6747 + type: Transform - uid: 1280 components: - rot: 3.141592653589793 rad @@ -15894,22 +16793,6 @@ entities: pos: -5.5,31.5 parent: 6747 type: Transform - - uid: 17680 - components: - - pos: 20.5,35.5 - parent: 6747 - type: Transform - - uid: 17681 - components: - - rot: 3.141592653589793 rad - pos: 26.5,35.5 - parent: 6747 - type: Transform - - uid: 17736 - components: - - pos: 27.5,19.5 - parent: 6747 - type: Transform - uid: 18230 components: - pos: 29.5,-11.5 @@ -16051,17 +16934,6 @@ entities: - pos: -15.5,-56.5 parent: 6747 type: Transform - - uid: 17642 - components: - - pos: 16.5,30.5 - parent: 6747 - type: Transform - - uid: 17670 - components: - - rot: 3.141592653589793 rad - pos: -1.5,31.5 - parent: 6747 - type: Transform - uid: 17720 components: - rot: 1.5707963267948966 rad @@ -16084,6 +16956,17 @@ entities: - pos: 20.5,-31.5 parent: 6747 type: Transform + - uid: 18836 + components: + - pos: 68.5,10.5 + parent: 6747 + type: Transform + - uid: 26754 + components: + - rot: 3.141592653589793 rad + pos: 20.5,30.5 + parent: 6747 + type: Transform - proto: AppraisalTool entities: - uid: 1740 @@ -16097,10 +16980,15 @@ entities: pos: 17.55642,-4.0310593 parent: 6747 type: Transform - - uid: 7064 + - uid: 6896 components: - - rot: 3.141592653589793 rad - pos: 54.405807,6.5684214 + - pos: 28.525967,18.544392 + parent: 6747 + type: Transform + - uid: 10377 + components: + - rot: -1.5707963267948966 rad + pos: 14.939359,19.640268 parent: 6747 type: Transform - uid: 23999 @@ -16108,6 +16996,13 @@ entities: - pos: -1.5918941,39.626057 parent: 6747 type: Transform +- proto: ArenaSpawner + entities: + - uid: 3646 + components: + - pos: -38.5,-16.5 + parent: 6747 + type: Transform - proto: AsteroidAltRock entities: - uid: 213 @@ -16125,16 +17020,6 @@ entities: - pos: -13.5,14.5 parent: 6747 type: Transform - - uid: 3899 - components: - - pos: -21.5,15.5 - parent: 6747 - type: Transform - - uid: 3916 - components: - - pos: -24.5,20.5 - parent: 6747 - type: Transform - uid: 4926 components: - pos: -15.5,-79.5 @@ -16315,26 +17200,6 @@ entities: - pos: -22.5,24.5 parent: 6747 type: Transform - - uid: 5514 - components: - - pos: -27.5,8.5 - parent: 6747 - type: Transform - - uid: 5553 - components: - - pos: -25.5,7.5 - parent: 6747 - type: Transform - - uid: 5555 - components: - - pos: -27.5,7.5 - parent: 6747 - type: Transform - - uid: 5556 - components: - - pos: -26.5,7.5 - parent: 6747 - type: Transform - uid: 5557 components: - pos: -28.5,15.5 @@ -16410,16 +17275,6 @@ entities: - pos: -31.5,14.5 parent: 6747 type: Transform - - uid: 7432 - components: - - pos: -32.5,15.5 - parent: 6747 - type: Transform - - uid: 7433 - components: - - pos: -32.5,14.5 - parent: 6747 - type: Transform - uid: 7434 components: - pos: -16.5,14.5 @@ -16852,19 +17707,24 @@ entities: type: Transform - proto: AtmosDeviceFanTiny entities: - - uid: 2927 + - uid: 629 components: - - pos: 60.5,9.5 + - pos: 21.5,36.5 parent: 6747 type: Transform - - uid: 3013 + - uid: 815 components: - - pos: 60.5,13.5 + - pos: 6.5,12.5 parent: 6747 type: Transform - - uid: 3189 + - uid: 824 components: - - pos: 60.5,10.5 + - pos: 19.5,36.5 + parent: 6747 + type: Transform + - uid: 825 + components: + - pos: 18.5,36.5 parent: 6747 type: Transform - uid: 3227 @@ -16877,11 +17737,6 @@ entities: - pos: -1.5,-23.5 parent: 6747 type: Transform - - uid: 4030 - components: - - pos: 60.5,12.5 - parent: 6747 - type: Transform - uid: 5889 components: - pos: 78.5,-19.5 @@ -16922,6 +17777,11 @@ entities: - pos: 69.5,-54.5 parent: 6747 type: Transform + - uid: 6406 + components: + - pos: 22.5,36.5 + parent: 6747 + type: Transform - uid: 23657 components: - pos: -5.5,-73.5 @@ -17052,14 +17912,14 @@ entities: type: Transform - proto: Autolathe entities: - - uid: 879 + - uid: 3852 components: - - pos: 29.5,18.5 + - pos: 20.5,-3.5 parent: 6747 type: Transform - - uid: 3852 + - uid: 6634 components: - - pos: 20.5,-3.5 + - pos: 26.5,22.5 parent: 6747 type: Transform - uid: 6726 @@ -17082,26 +17942,16 @@ entities: type: Transform - proto: BannerCargo entities: - - uid: 6866 - components: - - pos: 36.5,9.5 - parent: 6747 - type: Transform - - uid: 6867 - components: - - pos: 36.5,11.5 - parent: 6747 - type: Transform - - uid: 8803 + - uid: 22333 components: - - pos: 25.5,7.5 + - pos: 26.5,13.5 parent: 6747 type: Transform - proto: BannerEngineering entities: - - uid: 8802 + - uid: 22336 components: - - pos: 22.5,7.5 + - pos: 41.5,8.5 parent: 6747 type: Transform - proto: BannerMedical @@ -17171,31 +18021,11 @@ entities: type: Transform - proto: Barricade entities: - - uid: 63 - components: - - pos: -7.5,7.5 - parent: 6747 - type: Transform - - uid: 73 - components: - - pos: -8.5,7.5 - parent: 6747 - type: Transform - uid: 333 components: - pos: -23.5,11.5 parent: 6747 type: Transform - - uid: 381 - components: - - pos: -6.5,7.5 - parent: 6747 - type: Transform - - uid: 2493 - components: - - pos: -15.5,7.5 - parent: 6747 - type: Transform - uid: 2494 components: - pos: -15.5,8.5 @@ -17246,31 +18076,6 @@ entities: - pos: -20.5,12.5 parent: 6747 type: Transform - - uid: 2504 - components: - - pos: -20.5,7.5 - parent: 6747 - type: Transform - - uid: 2505 - components: - - pos: -21.5,7.5 - parent: 6747 - type: Transform - - uid: 2506 - components: - - pos: -21.5,8.5 - parent: 6747 - type: Transform - - uid: 2507 - components: - - pos: -21.5,9.5 - parent: 6747 - type: Transform - - uid: 2508 - components: - - pos: -22.5,9.5 - parent: 6747 - type: Transform - uid: 2509 components: - pos: -22.5,10.5 @@ -17490,18 +18295,54 @@ entities: - pos: 58.731464,-21.66678 parent: 6747 type: Transform + - uid: 16187 + components: + - pos: -18.699055,7.72544 + parent: 6747 + type: Transform + - uid: 26927 + components: + - pos: 10.78688,-17.152464 + parent: 6747 + type: Transform + - solutions: + beaker: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 50 + reagents: + - data: null + ReagentId: Cryoxadone + Quantity: 50 + type: SolutionContainerManager - proto: Bed entities: + - uid: 231 + components: + - pos: -26.5,5.5 + parent: 6747 + type: Transform - uid: 721 components: - pos: -26.5,-7.5 parent: 6747 type: Transform + - uid: 878 + components: + - pos: 17.5,26.5 + parent: 6747 + type: Transform - uid: 1239 components: - pos: -17.5,-6.5 parent: 6747 type: Transform + - uid: 2811 + components: + - pos: 19.5,26.5 + parent: 6747 + type: Transform - uid: 3033 components: - pos: -22.5,-34.5 @@ -17527,6 +18368,11 @@ entities: - pos: 41.5,-40.5 parent: 6747 type: Transform + - uid: 3650 + components: + - pos: -26.5,8.5 + parent: 6747 + type: Transform - uid: 4066 components: - pos: -29.5,-59.5 @@ -17547,9 +18393,9 @@ entities: - pos: 21.5,-69.5 parent: 6747 type: Transform - - uid: 6896 + - uid: 5543 components: - - pos: 59.5,15.5 + - pos: -15.5,4.5 parent: 6747 type: Transform - uid: 7176 @@ -17612,11 +18458,6 @@ entities: - pos: 46.5,-6.5 parent: 6747 type: Transform - - uid: 8238 - components: - - pos: 18.5,18.5 - parent: 6747 - type: Transform - uid: 9380 components: - pos: -47.5,-1.5 @@ -17637,19 +18478,24 @@ entities: - pos: -26.5,2.5 parent: 6747 type: Transform - - uid: 9394 + - uid: 9423 components: - - pos: -23.5,2.5 + - pos: 9.5,20.5 parent: 6747 type: Transform - - uid: 9398 + - uid: 11036 components: - - pos: -20.5,2.5 + - pos: 30.5,-76.5 parent: 6747 type: Transform - - uid: 11036 + - uid: 11904 components: - - pos: 30.5,-76.5 + - pos: 19.5,24.5 + parent: 6747 + type: Transform + - uid: 11951 + components: + - pos: 17.5,24.5 parent: 6747 type: Transform - uid: 12179 @@ -17662,6 +18508,11 @@ entities: - pos: -28.5,-40.5 parent: 6747 type: Transform + - uid: 17754 + components: + - pos: 54.5,9.5 + parent: 6747 + type: Transform - uid: 21852 components: - pos: -22.5,-66.5 @@ -17674,6 +18525,13 @@ entities: - pos: -31.5,26.5 parent: 6747 type: Transform +- proto: BedsheetBrown + entities: + - uid: 5534 + components: + - pos: -15.5,4.5 + parent: 6747 + type: Transform - proto: BedsheetCaptain entities: - uid: 4222 @@ -17683,9 +18541,10 @@ entities: type: Transform - proto: BedsheetCE entities: - - uid: 8240 + - uid: 17755 components: - - pos: 18.5,18.5 + - rot: -1.5707963267948966 rad + pos: 54.5,9.5 parent: 6747 type: Transform - proto: BedsheetClown @@ -17742,11 +18601,6 @@ entities: type: Transform - proto: BedsheetMedical entities: - - uid: 1959 - components: - - pos: 15.5,-19.5 - parent: 6747 - type: Transform - uid: 1960 components: - pos: 15.5,-16.5 @@ -17781,6 +18635,11 @@ entities: pos: 52.5,-41.5 parent: 6747 type: Transform + - uid: 26331 + components: + - pos: 16.5,-18.5 + parent: 6747 + type: Transform - proto: BedsheetMime entities: - uid: 7184 @@ -17790,6 +18649,16 @@ entities: type: Transform - proto: BedsheetOrange entities: + - uid: 230 + components: + - pos: -26.5,5.5 + parent: 6747 + type: Transform + - uid: 2507 + components: + - pos: -26.5,8.5 + parent: 6747 + type: Transform - uid: 9383 components: - pos: -47.5,-1.5 @@ -17810,16 +18679,6 @@ entities: - pos: -26.5,2.5 parent: 6747 type: Transform - - uid: 9400 - components: - - pos: -23.5,2.5 - parent: 6747 - type: Transform - - uid: 9401 - components: - - pos: -20.5,2.5 - parent: 6747 - type: Transform - uid: 12187 components: - rot: 1.5707963267948966 rad @@ -17834,10 +18693,10 @@ entities: type: Transform - proto: BedsheetQM entities: - - uid: 5224 + - uid: 474 components: - rot: -1.5707963267948966 rad - pos: 59.5,15.5 + pos: 9.5,20.5 parent: 6747 type: Transform - proto: BedsheetRD @@ -17854,6 +18713,16 @@ entities: - pos: -26.5,-7.5 parent: 6747 type: Transform + - uid: 816 + components: + - pos: 17.5,26.5 + parent: 6747 + type: Transform + - uid: 820 + components: + - pos: 17.5,24.5 + parent: 6747 + type: Transform - uid: 3038 components: - pos: -22.5,-34.5 @@ -17874,6 +18743,11 @@ entities: - pos: -38.5,-8.5 parent: 6747 type: Transform + - uid: 6340 + components: + - pos: 19.5,24.5 + parent: 6747 + type: Transform - uid: 7211 components: - pos: 39.5,-6.5 @@ -17919,6 +18793,11 @@ entities: - pos: 49.5,-25.5 parent: 6747 type: Transform + - uid: 8291 + components: + - pos: 19.5,26.5 + parent: 6747 + type: Transform - proto: BedsheetWiz entities: - uid: 10415 @@ -17926,31 +18805,514 @@ entities: - pos: 30.5,-76.5 parent: 6747 type: Transform -- proto: BigBox +- proto: BenchPewLeft entities: - - uid: 6714 + - uid: 6236 components: - - pos: 43.469193,18.544897 + - pos: 13.5,-52.5 + parent: 6747 + type: Transform + - uid: 6333 + components: + - pos: 13.5,-50.5 + parent: 6747 + type: Transform +- proto: BenchPewMiddle + entities: + - uid: 6213 + components: + - pos: 14.5,-52.5 + parent: 6747 + type: Transform + - uid: 6215 + components: + - pos: 14.5,-50.5 + parent: 6747 + type: Transform +- proto: BenchPewRight + entities: + - uid: 6191 + components: + - pos: 15.5,-52.5 + parent: 6747 + type: Transform + - uid: 6194 + components: + - pos: 15.5,-50.5 + parent: 6747 + type: Transform +- proto: BenchSofaCorner + entities: + - uid: 8109 + components: + - pos: 55.5,28.5 + parent: 6747 + type: Transform +- proto: BenchSofaCorpCorner + entities: + - uid: 22637 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,27.5 + parent: 6747 + type: Transform + - uid: 22640 + components: + - rot: 3.141592653589793 rad + pos: 27.5,25.5 + parent: 6747 + type: Transform +- proto: BenchSofaCorpLeft + entities: + - uid: 6379 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-51.5 + parent: 6747 + type: Transform + - uid: 6380 + components: + - pos: 1.5,-53.5 + parent: 6747 + type: Transform + - uid: 6382 + components: + - rot: -1.5707963267948966 rad + pos: 67.5,-42.5 + parent: 6747 + type: Transform + - uid: 6383 + components: + - rot: 1.5707963267948966 rad + pos: 65.5,-41.5 + parent: 6747 + type: Transform + - uid: 22638 + components: + - pos: 28.5,27.5 + parent: 6747 + type: Transform +- proto: BenchSofaCorpMiddle + entities: + - uid: 22639 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,26.5 + parent: 6747 + type: Transform +- proto: BenchSofaCorpRight + entities: + - uid: 6381 + components: + - pos: 0.5,-53.5 + parent: 6747 + type: Transform + - uid: 6386 + components: + - rot: 1.5707963267948966 rad + pos: 65.5,-42.5 + parent: 6747 + type: Transform + - uid: 6387 + components: + - rot: -1.5707963267948966 rad + pos: 67.5,-41.5 + parent: 6747 + type: Transform + - uid: 11969 + components: + - rot: 3.141592653589793 rad + pos: -31.5,-51.5 + parent: 6747 + type: Transform + - uid: 22641 + components: + - rot: 3.141592653589793 rad + pos: 28.5,25.5 + parent: 6747 + type: Transform +- proto: BenchSofaLeft + entities: + - uid: 6882 + components: + - rot: -1.5707963267948966 rad + pos: 55.5,27.5 + parent: 6747 + type: Transform + - uid: 6885 + components: + - pos: 52.5,28.5 + parent: 6747 + type: Transform +- proto: BenchSofaRight + entities: + - uid: 6884 + components: + - pos: 51.5,28.5 + parent: 6747 + type: Transform + - uid: 8057 + components: + - pos: 54.5,28.5 + parent: 6747 + type: Transform +- proto: BenchSteelLeft + entities: + - uid: 3577 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 6747 + type: Transform + - uid: 4029 + components: + - rot: -1.5707963267948966 rad + pos: 68.5,-21.5 + parent: 6747 + type: Transform + - uid: 4030 + components: + - rot: 1.5707963267948966 rad + pos: 69.5,-24.5 + parent: 6747 + type: Transform + - uid: 4076 + components: + - rot: 3.141592653589793 rad + pos: 63.5,-40.5 + parent: 6747 + type: Transform + - uid: 4260 + components: + - pos: 60.5,-41.5 + parent: 6747 + type: Transform + - uid: 4405 + components: + - rot: 3.141592653589793 rad + pos: 63.5,-43.5 + parent: 6747 + type: Transform + - uid: 4410 + components: + - pos: 60.5,-44.5 + parent: 6747 + type: Transform + - uid: 5091 + components: + - pos: 69.5,-44.5 + parent: 6747 + type: Transform + - uid: 5114 + components: + - rot: 3.141592653589793 rad + pos: 72.5,-43.5 + parent: 6747 + type: Transform + - uid: 5224 + components: + - pos: 69.5,-41.5 + parent: 6747 + type: Transform + - uid: 5225 + components: + - rot: 3.141592653589793 rad + pos: 72.5,-40.5 + parent: 6747 + type: Transform + - uid: 6020 + components: + - rot: -1.5707963267948966 rad + pos: 71.5,-21.5 + parent: 6747 + type: Transform + - uid: 6021 + components: + - rot: 1.5707963267948966 rad + pos: 72.5,-24.5 + parent: 6747 + type: Transform + - uid: 22197 + components: + - pos: 23.5,8.5 + parent: 6747 + type: Transform +- proto: BenchSteelMiddle + entities: + - uid: 4073 + components: + - pos: 62.5,-41.5 + parent: 6747 + type: Transform + - uid: 4132 + components: + - pos: 61.5,-41.5 + parent: 6747 + type: Transform + - uid: 4257 + components: + - rot: 3.141592653589793 rad + pos: 61.5,-40.5 + parent: 6747 + type: Transform + - uid: 4258 + components: + - rot: 3.141592653589793 rad + pos: 62.5,-40.5 + parent: 6747 + type: Transform + - uid: 4261 + components: + - pos: 61.5,-44.5 + parent: 6747 + type: Transform + - uid: 4262 + components: + - rot: 3.141592653589793 rad + pos: 61.5,-43.5 + parent: 6747 + type: Transform + - uid: 4263 + components: + - rot: 3.141592653589793 rad + pos: 62.5,-43.5 + parent: 6747 + type: Transform + - uid: 4264 + components: + - pos: 62.5,-44.5 + parent: 6747 + type: Transform + - uid: 4333 + components: + - rot: 3.141592653589793 rad + pos: 71.5,-43.5 + parent: 6747 + type: Transform + - uid: 4411 + components: + - rot: 3.141592653589793 rad + pos: 70.5,-43.5 + parent: 6747 + type: Transform + - uid: 4594 + components: + - rot: 3.141592653589793 rad + pos: 70.5,-40.5 + parent: 6747 + type: Transform + - uid: 4596 + components: + - rot: 3.141592653589793 rad + pos: 71.5,-40.5 + parent: 6747 + type: Transform + - uid: 4597 + components: + - pos: 71.5,-41.5 + parent: 6747 + type: Transform + - uid: 4617 + components: + - pos: 70.5,-41.5 + parent: 6747 + type: Transform + - uid: 4619 + components: + - pos: 71.5,-44.5 + parent: 6747 + type: Transform + - uid: 4620 + components: + - pos: 70.5,-44.5 + parent: 6747 + type: Transform + - uid: 6004 + components: + - rot: 1.5707963267948966 rad + pos: 72.5,-22.5 + parent: 6747 + type: Transform + - uid: 6025 + components: + - rot: 1.5707963267948966 rad + pos: 69.5,-22.5 + parent: 6747 + type: Transform + - uid: 6029 + components: + - rot: -1.5707963267948966 rad + pos: 71.5,-22.5 + parent: 6747 + type: Transform + - uid: 6034 + components: + - rot: -1.5707963267948966 rad + pos: 68.5,-22.5 + parent: 6747 + type: Transform + - uid: 6047 + components: + - rot: 1.5707963267948966 rad + pos: 72.5,-23.5 + parent: 6747 + type: Transform + - uid: 6067 + components: + - rot: 1.5707963267948966 rad + pos: 69.5,-23.5 + parent: 6747 + type: Transform + - uid: 6068 + components: + - rot: -1.5707963267948966 rad + pos: 71.5,-23.5 + parent: 6747 + type: Transform + - uid: 6069 + components: + - rot: -1.5707963267948966 rad + pos: 68.5,-23.5 + parent: 6747 + type: Transform +- proto: BenchSteelRight + entities: + - uid: 3578 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 6747 + type: Transform + - uid: 4256 + components: + - pos: 63.5,-41.5 + parent: 6747 + type: Transform + - uid: 4259 + components: + - rot: 3.141592653589793 rad + pos: 60.5,-40.5 + parent: 6747 + type: Transform + - uid: 4293 + components: + - pos: 63.5,-44.5 + parent: 6747 + type: Transform + - uid: 4326 + components: + - rot: 3.141592653589793 rad + pos: 60.5,-43.5 + parent: 6747 + type: Transform + - uid: 5226 + components: + - rot: 3.141592653589793 rad + pos: 69.5,-40.5 + parent: 6747 + type: Transform + - uid: 5241 + components: + - rot: 3.141592653589793 rad + pos: 69.5,-43.5 + parent: 6747 + type: Transform + - uid: 5781 + components: + - pos: 72.5,-41.5 + parent: 6747 + type: Transform + - uid: 5867 + components: + - pos: 72.5,-44.5 + parent: 6747 + type: Transform + - uid: 5974 + components: + - rot: -1.5707963267948966 rad + pos: 71.5,-24.5 + parent: 6747 + type: Transform + - uid: 6005 + components: + - rot: -1.5707963267948966 rad + pos: 68.5,-24.5 + parent: 6747 + type: Transform + - uid: 6022 + components: + - rot: 1.5707963267948966 rad + pos: 69.5,-21.5 + parent: 6747 + type: Transform + - uid: 6023 + components: + - rot: 1.5707963267948966 rad + pos: 72.5,-21.5 + parent: 6747 + type: Transform + - uid: 22198 + components: + - pos: 24.5,8.5 + parent: 6747 + type: Transform +- proto: BenchSteelWhiteLeft + entities: + - uid: 3581 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-30.5 + parent: 6747 + type: Transform + - uid: 3584 + components: + - pos: 24.5,-28.5 + parent: 6747 + type: Transform + - uid: 3903 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-27.5 + parent: 6747 + type: Transform +- proto: BenchSteelWhiteMiddle + entities: + - uid: 3580 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-30.5 + parent: 6747 + type: Transform + - uid: 3623 + components: + - pos: 25.5,-28.5 + parent: 6747 + type: Transform + - uid: 3902 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-27.5 + parent: 6747 + type: Transform +- proto: BenchSteelWhiteRight + entities: + - uid: 3579 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-30.5 + parent: 6747 + type: Transform + - uid: 3624 + components: + - pos: 26.5,-28.5 + parent: 6747 + type: Transform + - uid: 3841 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-27.5 parent: 6747 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 4.6948643 - - 17.661633 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - proto: BiomassReclaimer entities: - uid: 2474 @@ -17958,6 +19320,14 @@ entities: - pos: 16.5,-39.5 parent: 6747 type: Transform +- proto: BiomassReclaimerMachineCircuitboard + entities: + - uid: 17744 + components: + - rot: -1.5707963267948966 rad + pos: 74.64603,7.6003265 + parent: 6747 + type: Transform - proto: BirdToyInstrument entities: - uid: 10421 @@ -17999,6 +19369,22 @@ entities: - links: - 1632 type: DeviceLinkSink + - uid: 907 + components: + - pos: 18.5,36.5 + parent: 6747 + type: Transform + - links: + - 8459 + type: DeviceLinkSink + - uid: 958 + components: + - pos: 72.5,23.5 + parent: 6747 + type: Transform + - links: + - 7490 + type: DeviceLinkSink - uid: 1023 components: - pos: -8.5,34.5 @@ -18087,21 +19473,37 @@ entities: - links: - 8129 type: DeviceLinkSink - - uid: 8206 + - uid: 8324 components: - - pos: 60.5,13.5 + - pos: 22.5,36.5 parent: 6747 type: Transform - links: - - 8666 + - 8459 type: DeviceLinkSink - - uid: 16797 + - uid: 12030 components: - - pos: 60.5,9.5 + - pos: 71.5,23.5 parent: 6747 type: Transform - links: - - 8666 + - 7490 + type: DeviceLinkSink + - uid: 13403 + components: + - pos: 66.5,36.5 + parent: 6747 + type: Transform + - links: + - 26595 + type: DeviceLinkSink + - uid: 13404 + components: + - pos: 67.5,36.5 + parent: 6747 + type: Transform + - links: + - 26595 type: DeviceLinkSink - proto: BlastDoorOpen entities: @@ -18156,6 +19558,12 @@ entities: type: Transform - proto: BookAtmosDistro entities: + - uid: 17608 + components: + - rot: 3.141592653589793 rad + pos: 48.587173,26.551313 + parent: 6747 + type: Transform - uid: 22562 components: - pos: 35.625683,35.535435 @@ -18195,9 +19603,10 @@ entities: - type: InsideEntityStorage - proto: BookEngineersHandbook entities: - - uid: 22537 + - uid: 17609 components: - - pos: 28.506123,38.57786 + - rot: 1.5707963267948966 rad + pos: 65.55267,17.62835 parent: 6747 type: Transform - uid: 22597 @@ -18310,86 +19719,88 @@ entities: type: Transform - proto: Bookshelf entities: - - uid: 3335 + - uid: 4754 components: - - pos: 39.5,-38.5 + - pos: -5.5,-61.5 parent: 6747 type: Transform - - uid: 3336 + - uid: 11156 + components: + - pos: 29.5,-80.5 + parent: 6747 + type: Transform +- proto: BookshelfFilled + entities: + - uid: 840 components: - pos: 37.5,-38.5 parent: 6747 type: Transform - - uid: 3577 + - uid: 841 components: - - pos: 28.5,-49.5 + - pos: 39.5,-38.5 parent: 6747 type: Transform - - uid: 3578 + - uid: 842 components: - pos: 32.5,-49.5 parent: 6747 type: Transform - - uid: 3579 + - uid: 843 components: - - pos: 32.5,-51.5 + - pos: 28.5,-49.5 parent: 6747 type: Transform - - uid: 3580 + - uid: 846 components: - pos: 28.5,-51.5 parent: 6747 type: Transform - - uid: 3581 + - uid: 852 components: - - pos: 29.5,-51.5 + - pos: 32.5,-51.5 parent: 6747 type: Transform - - uid: 3584 + - uid: 853 components: - pos: 31.5,-51.5 parent: 6747 type: Transform - - uid: 3623 + - uid: 854 components: - - pos: 32.5,-56.5 + - pos: 29.5,-51.5 parent: 6747 type: Transform - - uid: 3624 + - uid: 855 components: - pos: 28.5,-56.5 parent: 6747 type: Transform - - uid: 3841 + - uid: 864 components: - - pos: 17.5,-0.5 + - pos: 32.5,-56.5 parent: 6747 type: Transform - - uid: 4293 + - uid: 867 components: - - pos: 8.5,-58.5 + - pos: 17.5,-0.5 parent: 6747 type: Transform - - uid: 4754 + - uid: 869 components: - - pos: -5.5,-61.5 + - pos: 8.5,-58.5 parent: 6747 type: Transform - - uid: 7253 + - uid: 870 components: - pos: 41.5,-23.5 parent: 6747 type: Transform - - uid: 7254 + - uid: 871 components: - pos: 41.5,-25.5 parent: 6747 type: Transform - - uid: 11156 - components: - - pos: 29.5,-80.5 - parent: 6747 - type: Transform - proto: BoozeDispenser entities: - uid: 1817 @@ -18415,14 +19826,9 @@ entities: type: Transform - proto: BorgCharger entities: - - uid: 25543 - components: - - pos: 25.5,9.5 - parent: 6747 - type: Transform - - uid: 25544 + - uid: 8049 components: - - pos: 22.5,9.5 + - pos: 37.5,6.5 parent: 6747 type: Transform - uid: 25545 @@ -18430,13 +19836,18 @@ entities: - pos: 3.5,-16.5 parent: 6747 type: Transform - - uid: 25547 + - uid: 25610 components: - - pos: 20.5,-61.5 + - pos: 20.5,-54.5 parent: 6747 type: Transform - proto: BoxBeaker entities: + - uid: 4378 + components: + - pos: -0.48429537,-56.305817 + parent: 6747 + type: Transform - uid: 15081 components: - pos: -0.42498636,-78.285614 @@ -18478,6 +19889,11 @@ entities: type: Transform - proto: BoxCardboard entities: + - uid: 913 + components: + - pos: 35.528908,15.793759 + parent: 6747 + type: Transform - uid: 5355 components: - pos: 37.486248,-0.0381217 @@ -18489,19 +19905,19 @@ entities: pos: 37.152916,0.22247624 parent: 6747 type: Transform - - uid: 6711 + - uid: 6748 components: - - pos: 37.510857,17.710985 + - pos: 35.51849,15.6686735 parent: 6747 type: Transform - - uid: 6712 + - uid: 8511 components: - - pos: 37.46919,16.668594 + - pos: 35.466408,15.60613 parent: 6747 type: Transform - - uid: 6713 + - uid: 8512 components: - - pos: 37.490025,15.688746 + - pos: 35.539326,15.752065 parent: 6747 type: Transform - uid: 16012 @@ -18595,6 +20011,24 @@ entities: - pos: -49.096718,-84.4215 parent: 6747 type: Transform + - uid: 11341 + components: + - rot: 3.141592653589793 rad + pos: -19.938637,5.651083 + parent: 6747 + type: Transform + - uid: 11342 + components: + - rot: 3.141592653589793 rad + pos: -20.324055,5.7553225 + parent: 6747 + type: Transform + - uid: 15697 + components: + - rot: 3.141592653589793 rad + pos: -20.459469,5.5989637 + parent: 6747 + type: Transform - uid: 17329 components: - pos: 47.94412,-51.356106 @@ -18605,6 +20039,11 @@ entities: - pos: 48.0587,-51.460346 parent: 6747 type: Transform + - uid: 17605 + components: + - pos: 66.13281,18.55754 + parent: 6747 + type: Transform - uid: 23607 components: - rot: -1.5707963267948966 rad @@ -18637,6 +20076,13 @@ entities: - pos: 15.840932,-67.459404 parent: 6747 type: Transform +- proto: BoxFolderClipboard + entities: + - uid: 17606 + components: + - pos: 67.03906,18.578388 + parent: 6747 + type: Transform - proto: BoxFolderGrey entities: - uid: 4102 @@ -18680,13 +20126,6 @@ entities: pos: 3.6908503,-57.27961 parent: 6747 type: Transform -- proto: BoxForensicPad - entities: - - uid: 4367 - components: - - pos: -0.46476984,-56.319927 - parent: 6747 - type: Transform - proto: BoxHandcuff entities: - uid: 25331 @@ -18713,11 +20152,6 @@ entities: - pos: 10.496561,-31.37388 parent: 6747 type: Transform - - uid: 5587 - components: - - pos: 12.421359,-21.323751 - parent: 6747 - type: Transform - proto: BoxLightbulb entities: - uid: 25394 @@ -18739,13 +20173,6 @@ entities: - pos: 56.64593,1.8419683 parent: 6747 type: Transform -- proto: BoxMesonScanners - entities: - - uid: 7071 - components: - - pos: 32.178425,18.651724 - parent: 6747 - type: Transform - proto: BoxMousetrap entities: - uid: 2720 @@ -18777,9 +20204,9 @@ entities: type: Transform - proto: BoxMRE entities: - - uid: 7059 + - uid: 8461 components: - - pos: 45.776577,10.694289 + - pos: 29.67707,15.587716 parent: 6747 type: Transform - proto: BoxPerformer @@ -18849,11 +20276,6 @@ entities: - pos: 16.505558,-21.343874 parent: 6747 type: Transform - - uid: 5590 - components: - - pos: 12.650527,-21.355024 - parent: 6747 - type: Transform - proto: BoxTrashbag entities: - uid: 3434 @@ -18887,39 +20309,21 @@ entities: type: Transform - proto: BrigTimer entities: - - uid: 3185 + - uid: 9400 components: - - pos: -24.5,0.5 + - pos: -24.5,6.5 parent: 6747 type: Transform - - linkedPorts: - 1390: - - Start: Close - - Timer: AutoClose - - Timer: Open - type: DeviceLinkSource - - uid: 3472 + - uid: 9401 components: - - pos: -21.5,0.5 + - pos: -24.5,3.5 parent: 6747 type: Transform - - linkedPorts: - 1391: - - Start: Close - - Timer: AutoClose - - Timer: Open - type: DeviceLinkSource - - uid: 3650 + - uid: 9402 components: - - pos: -18.5,0.5 + - pos: -24.5,0.5 parent: 6747 type: Transform - - linkedPorts: - 1363: - - Start: Close - - Timer: AutoClose - - Timer: Open - type: DeviceLinkSource - proto: BrokenBottle entities: - uid: 7619 @@ -18967,11 +20371,31 @@ entities: type: Transform - proto: CableApcExtension entities: + - uid: 346 + components: + - pos: -2.5,32.5 + parent: 6747 + type: Transform + - uid: 348 + components: + - pos: 13.5,27.5 + parent: 6747 + type: Transform - uid: 509 components: - pos: 2.5,-14.5 parent: 6747 type: Transform + - uid: 909 + components: + - pos: 4.5,43.5 + parent: 6747 + type: Transform + - uid: 1013 + components: + - pos: 49.5,21.5 + parent: 6747 + type: Transform - uid: 1240 components: - pos: -34.5,-46.5 @@ -18982,6 +20406,11 @@ entities: - pos: 22.5,-52.5 parent: 6747 type: Transform + - uid: 2268 + components: + - pos: 50.5,13.5 + parent: 6747 + type: Transform - uid: 2776 components: - pos: -41.5,-19.5 @@ -18997,6 +20426,11 @@ entities: - pos: -40.5,-17.5 parent: 6747 type: Transform + - uid: 3013 + components: + - pos: 3.5,43.5 + parent: 6747 + type: Transform - uid: 3018 components: - pos: -40.5,-18.5 @@ -19027,11 +20461,31 @@ entities: - pos: 21.5,6.5 parent: 6747 type: Transform + - uid: 3701 + components: + - pos: -22.5,-39.5 + parent: 6747 + type: Transform + - uid: 3702 + components: + - pos: -21.5,-39.5 + parent: 6747 + type: Transform - uid: 4033 components: - pos: 18.5,8.5 parent: 6747 type: Transform + - uid: 4317 + components: + - pos: -20.5,-39.5 + parent: 6747 + type: Transform + - uid: 4481 + components: + - pos: -19.5,-39.5 + parent: 6747 + type: Transform - uid: 4934 components: - pos: 8.5,-8.5 @@ -19187,19 +20641,54 @@ entities: - pos: 70.5,-42.5 parent: 6747 type: Transform + - uid: 6686 + components: + - pos: 48.5,21.5 + parent: 6747 + type: Transform + - uid: 6708 + components: + - pos: 47.5,21.5 + parent: 6747 + type: Transform - uid: 6894 components: - pos: 22.5,-53.5 parent: 6747 type: Transform + - uid: 6914 + components: + - pos: 4.5,42.5 + parent: 6747 + type: Transform + - uid: 7062 + components: + - pos: 4.5,44.5 + parent: 6747 + type: Transform - uid: 7175 components: - pos: 26.5,-68.5 parent: 6747 type: Transform - - uid: 8155 + - uid: 8323 components: - - pos: 29.5,42.5 + - pos: 46.5,21.5 + parent: 6747 + type: Transform + - uid: 8375 + components: + - pos: 54.5,21.5 + parent: 6747 + type: Transform + - uid: 8435 + components: + - pos: 37.5,20.5 + parent: 6747 + type: Transform + - uid: 8498 + components: + - pos: 37.5,19.5 parent: 6747 type: Transform - uid: 8513 @@ -19242,6 +20731,16 @@ entities: - pos: 8.5,-0.5 parent: 6747 type: Transform + - uid: 11489 + components: + - pos: 48.5,16.5 + parent: 6747 + type: Transform + - uid: 11492 + components: + - pos: 52.5,12.5 + parent: 6747 + type: Transform - uid: 11647 components: - pos: 8.5,0.5 @@ -19252,11 +20751,71 @@ entities: - pos: 8.5,-1.5 parent: 6747 type: Transform + - uid: 11821 + components: + - pos: 59.5,12.5 + parent: 6747 + type: Transform + - uid: 11836 + components: + - pos: -19.5,-0.5 + parent: 6747 + type: Transform + - uid: 11858 + components: + - pos: 41.5,25.5 + parent: 6747 + type: Transform + - uid: 11970 + components: + - pos: -23.5,0.5 + parent: 6747 + type: Transform - uid: 12493 components: - pos: 8.5,-7.5 parent: 6747 type: Transform + - uid: 13061 + components: + - pos: 47.5,46.5 + parent: 6747 + type: Transform + - uid: 13080 + components: + - pos: 47.5,47.5 + parent: 6747 + type: Transform + - uid: 13126 + components: + - pos: 47.5,48.5 + parent: 6747 + type: Transform + - uid: 13167 + components: + - pos: 47.5,49.5 + parent: 6747 + type: Transform + - uid: 13175 + components: + - pos: 47.5,50.5 + parent: 6747 + type: Transform + - uid: 13363 + components: + - pos: 47.5,51.5 + parent: 6747 + type: Transform + - uid: 13399 + components: + - pos: 47.5,52.5 + parent: 6747 + type: Transform + - uid: 13400 + components: + - pos: 47.5,53.5 + parent: 6747 + type: Transform - uid: 16188 components: - pos: 8.5,1.5 @@ -19352,26 +20911,6 @@ entities: - pos: -22.5,-40.5 parent: 6747 type: Transform - - uid: 16207 - components: - - pos: -21.5,-40.5 - parent: 6747 - type: Transform - - uid: 16208 - components: - - pos: -20.5,-40.5 - parent: 6747 - type: Transform - - uid: 16209 - components: - - pos: -19.5,-40.5 - parent: 6747 - type: Transform - - uid: 16210 - components: - - pos: -18.5,-40.5 - parent: 6747 - type: Transform - uid: 16211 components: - pos: -0.5,-9.5 @@ -19932,6 +21471,11 @@ entities: - pos: -19.5,-48.5 parent: 6747 type: Transform + - uid: 16721 + components: + - pos: 47.5,54.5 + parent: 6747 + type: Transform - uid: 16863 components: - pos: -3.5,-34.5 @@ -20037,46 +21581,6 @@ entities: - pos: -13.5,-30.5 parent: 6747 type: Transform - - uid: 16966 - components: - - pos: 24.5,25.5 - parent: 6747 - type: Transform - - uid: 16967 - components: - - pos: 20.5,22.5 - parent: 6747 - type: Transform - - uid: 16968 - components: - - pos: 24.5,24.5 - parent: 6747 - type: Transform - - uid: 16969 - components: - - pos: 21.5,22.5 - parent: 6747 - type: Transform - - uid: 16970 - components: - - pos: 22.5,22.5 - parent: 6747 - type: Transform - - uid: 16971 - components: - - pos: 23.5,22.5 - parent: 6747 - type: Transform - - uid: 16972 - components: - - pos: 24.5,22.5 - parent: 6747 - type: Transform - - uid: 16973 - components: - - pos: 24.5,23.5 - parent: 6747 - type: Transform - uid: 16986 components: - pos: -14.5,-30.5 @@ -20167,6 +21671,11 @@ entities: - pos: -3.5,46.5 parent: 6747 type: Transform + - uid: 17065 + components: + - pos: -11.5,21.5 + parent: 6747 + type: Transform - uid: 17081 components: - pos: -13.5,-33.5 @@ -20752,6 +22261,166 @@ entities: - pos: 2.5,-17.5 parent: 6747 type: Transform + - uid: 17644 + components: + - pos: -12.5,45.5 + parent: 6747 + type: Transform + - uid: 17645 + components: + - pos: 0.5,49.5 + parent: 6747 + type: Transform + - uid: 17646 + components: + - pos: 1.5,49.5 + parent: 6747 + type: Transform + - uid: 17647 + components: + - pos: -1.5,49.5 + parent: 6747 + type: Transform + - uid: 17650 + components: + - pos: -3.5,49.5 + parent: 6747 + type: Transform + - uid: 17651 + components: + - pos: -2.5,49.5 + parent: 6747 + type: Transform + - uid: 17653 + components: + - pos: 52.5,14.5 + parent: 6747 + type: Transform + - uid: 17669 + components: + - pos: 52.5,16.5 + parent: 6747 + type: Transform + - uid: 17670 + components: + - pos: 45.5,7.5 + parent: 6747 + type: Transform + - uid: 17718 + components: + - pos: 53.5,17.5 + parent: 6747 + type: Transform + - uid: 17719 + components: + - pos: 44.5,7.5 + parent: 6747 + type: Transform + - uid: 17721 + components: + - pos: 43.5,12.5 + parent: 6747 + type: Transform + - uid: 17722 + components: + - pos: 44.5,6.5 + parent: 6747 + type: Transform + - uid: 17724 + components: + - pos: 52.5,15.5 + parent: 6747 + type: Transform + - uid: 17739 + components: + - pos: 54.5,17.5 + parent: 6747 + type: Transform + - uid: 17771 + components: + - pos: 52.5,17.5 + parent: 6747 + type: Transform + - uid: 17772 + components: + - pos: 54.5,16.5 + parent: 6747 + type: Transform + - uid: 17774 + components: + - pos: 23.5,31.5 + parent: 6747 + type: Transform + - uid: 17775 + components: + - pos: 23.5,30.5 + parent: 6747 + type: Transform + - uid: 17776 + components: + - pos: 23.5,29.5 + parent: 6747 + type: Transform + - uid: 17777 + components: + - pos: 23.5,28.5 + parent: 6747 + type: Transform + - uid: 17778 + components: + - pos: 23.5,27.5 + parent: 6747 + type: Transform + - uid: 17779 + components: + - pos: 23.5,25.5 + parent: 6747 + type: Transform + - uid: 17780 + components: + - pos: 23.5,24.5 + parent: 6747 + type: Transform + - uid: 17781 + components: + - pos: 23.5,26.5 + parent: 6747 + type: Transform + - uid: 17782 + components: + - pos: 23.5,23.5 + parent: 6747 + type: Transform + - uid: 17783 + components: + - pos: 23.5,22.5 + parent: 6747 + type: Transform + - uid: 17793 + components: + - pos: 46.5,7.5 + parent: 6747 + type: Transform + - uid: 17794 + components: + - pos: 47.5,7.5 + parent: 6747 + type: Transform + - uid: 17795 + components: + - pos: 47.5,8.5 + parent: 6747 + type: Transform + - uid: 17796 + components: + - pos: 47.5,9.5 + parent: 6747 + type: Transform + - uid: 17797 + components: + - pos: 47.5,10.5 + parent: 6747 + type: Transform - uid: 17889 components: - pos: 13.5,2.5 @@ -21374,7 +23043,7 @@ entities: type: Transform - uid: 18777 components: - - pos: -1.5,31.5 + - pos: 40.5,8.5 parent: 6747 type: Transform - uid: 18778 @@ -21512,51 +23181,6 @@ entities: - pos: 11.5,31.5 parent: 6747 type: Transform - - uid: 18805 - components: - - pos: 16.5,30.5 - parent: 6747 - type: Transform - - uid: 18806 - components: - - pos: 16.5,29.5 - parent: 6747 - type: Transform - - uid: 18807 - components: - - pos: 16.5,28.5 - parent: 6747 - type: Transform - - uid: 18808 - components: - - pos: 16.5,27.5 - parent: 6747 - type: Transform - - uid: 18809 - components: - - pos: 16.5,26.5 - parent: 6747 - type: Transform - - uid: 18810 - components: - - pos: 17.5,26.5 - parent: 6747 - type: Transform - - uid: 18811 - components: - - pos: 18.5,26.5 - parent: 6747 - type: Transform - - uid: 18812 - components: - - pos: 15.5,26.5 - parent: 6747 - type: Transform - - uid: 18813 - components: - - pos: 14.5,26.5 - parent: 6747 - type: Transform - uid: 18814 components: - pos: 13.5,26.5 @@ -21572,406 +23196,6 @@ entities: - pos: 11.5,26.5 parent: 6747 type: Transform - - uid: 18817 - components: - - pos: 26.5,35.5 - parent: 6747 - type: Transform - - uid: 18818 - components: - - pos: 26.5,36.5 - parent: 6747 - type: Transform - - uid: 18819 - components: - - pos: 26.5,37.5 - parent: 6747 - type: Transform - - uid: 18820 - components: - - pos: 27.5,37.5 - parent: 6747 - type: Transform - - uid: 18821 - components: - - pos: 28.5,37.5 - parent: 6747 - type: Transform - - uid: 18822 - components: - - pos: 28.5,38.5 - parent: 6747 - type: Transform - - uid: 18823 - components: - - pos: 28.5,39.5 - parent: 6747 - type: Transform - - uid: 18824 - components: - - pos: 28.5,40.5 - parent: 6747 - type: Transform - - uid: 18825 - components: - - pos: 28.5,41.5 - parent: 6747 - type: Transform - - uid: 18826 - components: - - pos: 28.5,42.5 - parent: 6747 - type: Transform - - uid: 18827 - components: - - pos: 28.5,43.5 - parent: 6747 - type: Transform - - uid: 18828 - components: - - pos: 27.5,43.5 - parent: 6747 - type: Transform - - uid: 18829 - components: - - pos: 26.5,43.5 - parent: 6747 - type: Transform - - uid: 18830 - components: - - pos: 25.5,43.5 - parent: 6747 - type: Transform - - uid: 18831 - components: - - pos: 24.5,43.5 - parent: 6747 - type: Transform - - uid: 18832 - components: - - pos: 23.5,43.5 - parent: 6747 - type: Transform - - uid: 18833 - components: - - pos: 22.5,43.5 - parent: 6747 - type: Transform - - uid: 18834 - components: - - pos: 21.5,43.5 - parent: 6747 - type: Transform - - uid: 18835 - components: - - pos: 21.5,42.5 - parent: 6747 - type: Transform - - uid: 18836 - components: - - pos: 21.5,41.5 - parent: 6747 - type: Transform - - uid: 18837 - components: - - pos: 21.5,40.5 - parent: 6747 - type: Transform - - uid: 18838 - components: - - pos: 21.5,39.5 - parent: 6747 - type: Transform - - uid: 18839 - components: - - pos: 21.5,38.5 - parent: 6747 - type: Transform - - uid: 18840 - components: - - pos: 21.5,37.5 - parent: 6747 - type: Transform - - uid: 18841 - components: - - pos: 20.5,37.5 - parent: 6747 - type: Transform - - uid: 18842 - components: - - pos: 19.5,37.5 - parent: 6747 - type: Transform - - uid: 18843 - components: - - pos: 18.5,37.5 - parent: 6747 - type: Transform - - uid: 18844 - components: - - pos: 17.5,37.5 - parent: 6747 - type: Transform - - uid: 18845 - components: - - pos: 17.5,38.5 - parent: 6747 - type: Transform - - uid: 18846 - components: - - pos: 17.5,39.5 - parent: 6747 - type: Transform - - uid: 18847 - components: - - pos: 16.5,39.5 - parent: 6747 - type: Transform - - uid: 18848 - components: - - pos: 15.5,39.5 - parent: 6747 - type: Transform - - uid: 18849 - components: - - pos: 15.5,40.5 - parent: 6747 - type: Transform - - uid: 18850 - components: - - pos: 15.5,41.5 - parent: 6747 - type: Transform - - uid: 18851 - components: - - pos: 15.5,42.5 - parent: 6747 - type: Transform - - uid: 18852 - components: - - pos: 15.5,43.5 - parent: 6747 - type: Transform - - uid: 18853 - components: - - pos: 20.5,35.5 - parent: 6747 - type: Transform - - uid: 18854 - components: - - pos: 20.5,34.5 - parent: 6747 - type: Transform - - uid: 18855 - components: - - pos: 19.5,34.5 - parent: 6747 - type: Transform - - uid: 18856 - components: - - pos: 18.5,34.5 - parent: 6747 - type: Transform - - uid: 18857 - components: - - pos: 20.5,33.5 - parent: 6747 - type: Transform - - uid: 18858 - components: - - pos: 18.5,33.5 - parent: 6747 - type: Transform - - uid: 18859 - components: - - pos: 18.5,32.5 - parent: 6747 - type: Transform - - uid: 18860 - components: - - pos: 17.5,32.5 - parent: 6747 - type: Transform - - uid: 18861 - components: - - pos: 31.5,24.5 - parent: 6747 - type: Transform - - uid: 18862 - components: - - pos: 32.5,24.5 - parent: 6747 - type: Transform - - uid: 18863 - components: - - pos: 33.5,24.5 - parent: 6747 - type: Transform - - uid: 18864 - components: - - pos: 34.5,24.5 - parent: 6747 - type: Transform - - uid: 18865 - components: - - pos: 35.5,24.5 - parent: 6747 - type: Transform - - uid: 18866 - components: - - pos: 36.5,24.5 - parent: 6747 - type: Transform - - uid: 18867 - components: - - pos: 36.5,25.5 - parent: 6747 - type: Transform - - uid: 18868 - components: - - pos: 36.5,26.5 - parent: 6747 - type: Transform - - uid: 18869 - components: - - pos: 36.5,27.5 - parent: 6747 - type: Transform - - uid: 18870 - components: - - pos: 35.5,27.5 - parent: 6747 - type: Transform - - uid: 18871 - components: - - pos: 34.5,27.5 - parent: 6747 - type: Transform - - uid: 18872 - components: - - pos: 33.5,27.5 - parent: 6747 - type: Transform - - uid: 18873 - components: - - pos: 32.5,27.5 - parent: 6747 - type: Transform - - uid: 18874 - components: - - pos: 32.5,26.5 - parent: 6747 - type: Transform - - uid: 18875 - components: - - pos: 31.5,26.5 - parent: 6747 - type: Transform - - uid: 18876 - components: - - pos: 30.5,26.5 - parent: 6747 - type: Transform - - uid: 18877 - components: - - pos: 29.5,26.5 - parent: 6747 - type: Transform - - uid: 18879 - components: - - pos: 29.5,27.5 - parent: 6747 - type: Transform - - uid: 18880 - components: - - pos: 29.5,28.5 - parent: 6747 - type: Transform - - uid: 18881 - components: - - pos: 29.5,29.5 - parent: 6747 - type: Transform - - uid: 18882 - components: - - pos: 29.5,30.5 - parent: 6747 - type: Transform - - uid: 18883 - components: - - pos: 29.5,31.5 - parent: 6747 - type: Transform - - uid: 18884 - components: - - pos: 29.5,32.5 - parent: 6747 - type: Transform - - uid: 18885 - components: - - pos: 28.5,26.5 - parent: 6747 - type: Transform - - uid: 18886 - components: - - pos: 27.5,26.5 - parent: 6747 - type: Transform - - uid: 18887 - components: - - pos: 26.5,26.5 - parent: 6747 - type: Transform - - uid: 18888 - components: - - pos: 25.5,26.5 - parent: 6747 - type: Transform - - uid: 18889 - components: - - pos: 24.5,26.5 - parent: 6747 - type: Transform - - uid: 18890 - components: - - pos: 24.5,27.5 - parent: 6747 - type: Transform - - uid: 18891 - components: - - pos: 24.5,28.5 - parent: 6747 - type: Transform - - uid: 18892 - components: - - pos: 24.5,29.5 - parent: 6747 - type: Transform - - uid: 18893 - components: - - pos: 24.5,30.5 - parent: 6747 - type: Transform - - uid: 18894 - components: - - pos: 24.5,31.5 - parent: 6747 - type: Transform - - uid: 18895 - components: - - pos: 24.5,32.5 - parent: 6747 - type: Transform - - uid: 18896 - components: - - pos: 23.5,32.5 - parent: 6747 - type: Transform - - uid: 18897 - components: - - pos: 23.5,28.5 - parent: 6747 - type: Transform - uid: 18898 components: - pos: 39.5,29.5 @@ -22374,12 +23598,12 @@ entities: type: Transform - uid: 18978 components: - - pos: 52.5,46.5 + - pos: 40.5,12.5 parent: 6747 type: Transform - uid: 18979 components: - - pos: 51.5,46.5 + - pos: 39.5,12.5 parent: 6747 type: Transform - uid: 18980 @@ -22447,154 +23671,19 @@ entities: - pos: 58.5,41.5 parent: 6747 type: Transform - - uid: 19000 - components: - - pos: 58.5,40.5 - parent: 6747 - type: Transform - - uid: 19001 - components: - - pos: 58.5,39.5 - parent: 6747 - type: Transform - - uid: 19002 - components: - - pos: 58.5,38.5 - parent: 6747 - type: Transform - - uid: 19003 - components: - - pos: 58.5,37.5 - parent: 6747 - type: Transform - - uid: 19004 - components: - - pos: 58.5,36.5 - parent: 6747 - type: Transform - - uid: 19005 - components: - - pos: 57.5,36.5 - parent: 6747 - type: Transform - uid: 19012 components: - - pos: 41.5,19.5 - parent: 6747 - type: Transform - - uid: 19013 - components: - - pos: 41.5,20.5 + - pos: 38.5,12.5 parent: 6747 type: Transform - uid: 19014 components: - - pos: 42.5,20.5 + - pos: 37.5,12.5 parent: 6747 type: Transform - uid: 19015 components: - - pos: 43.5,20.5 - parent: 6747 - type: Transform - - uid: 19016 - components: - - pos: 44.5,20.5 - parent: 6747 - type: Transform - - uid: 19017 - components: - - pos: 45.5,20.5 - parent: 6747 - type: Transform - - uid: 19018 - components: - - pos: 46.5,20.5 - parent: 6747 - type: Transform - - uid: 19019 - components: - - pos: 47.5,20.5 - parent: 6747 - type: Transform - - uid: 19020 - components: - - pos: 48.5,20.5 - parent: 6747 - type: Transform - - uid: 19021 - components: - - pos: 49.5,20.5 - parent: 6747 - type: Transform - - uid: 19022 - components: - - pos: 50.5,20.5 - parent: 6747 - type: Transform - - uid: 19023 - components: - - pos: 51.5,20.5 - parent: 6747 - type: Transform - - uid: 19024 - components: - - pos: 52.5,20.5 - parent: 6747 - type: Transform - - uid: 19025 - components: - - pos: 53.5,20.5 - parent: 6747 - type: Transform - - uid: 19026 - components: - - pos: 54.5,20.5 - parent: 6747 - type: Transform - - uid: 19027 - components: - - pos: 54.5,21.5 - parent: 6747 - type: Transform - - uid: 19028 - components: - - pos: 54.5,22.5 - parent: 6747 - type: Transform - - uid: 19029 - components: - - pos: 54.5,23.5 - parent: 6747 - type: Transform - - uid: 19030 - components: - - pos: 54.5,24.5 - parent: 6747 - type: Transform - - uid: 19031 - components: - - pos: 54.5,25.5 - parent: 6747 - type: Transform - - uid: 19032 - components: - - pos: 54.5,26.5 - parent: 6747 - type: Transform - - uid: 19033 - components: - - pos: 55.5,26.5 - parent: 6747 - type: Transform - - uid: 19034 - components: - - pos: 56.5,26.5 - parent: 6747 - type: Transform - - uid: 19035 - components: - - pos: 53.5,26.5 + - pos: 48.5,15.5 parent: 6747 type: Transform - uid: 19036 @@ -22617,69 +23706,29 @@ entities: - pos: 41.5,24.5 parent: 6747 type: Transform - - uid: 19040 - components: - - pos: 40.5,20.5 - parent: 6747 - type: Transform - - uid: 19041 - components: - - pos: 39.5,20.5 - parent: 6747 - type: Transform - uid: 19042 components: - - pos: 38.5,20.5 + - pos: 53.5,21.5 parent: 6747 type: Transform - uid: 19043 components: - - pos: 37.5,20.5 + - pos: 52.5,21.5 parent: 6747 type: Transform - uid: 19044 components: - - pos: 36.5,20.5 + - pos: 51.5,21.5 parent: 6747 type: Transform - uid: 19045 components: - - pos: 35.5,20.5 - parent: 6747 - type: Transform - - uid: 19046 - components: - - pos: 35.5,19.5 - parent: 6747 - type: Transform - - uid: 19047 - components: - - pos: 35.5,18.5 - parent: 6747 - type: Transform - - uid: 19048 - components: - - pos: 35.5,17.5 - parent: 6747 - type: Transform - - uid: 19049 - components: - - pos: 35.5,16.5 - parent: 6747 - type: Transform - - uid: 19050 - components: - - pos: 35.5,15.5 - parent: 6747 - type: Transform - - uid: 19051 - components: - - pos: 35.5,14.5 + - pos: 50.5,21.5 parent: 6747 type: Transform - uid: 19052 components: - - pos: 41.5,18.5 + - pos: 45.5,21.5 parent: 6747 type: Transform - uid: 19053 @@ -22692,21 +23741,6 @@ entities: - pos: 41.5,16.5 parent: 6747 type: Transform - - uid: 19055 - components: - - pos: 40.5,16.5 - parent: 6747 - type: Transform - - uid: 19056 - components: - - pos: 39.5,16.5 - parent: 6747 - type: Transform - - uid: 19057 - components: - - pos: 38.5,16.5 - parent: 6747 - type: Transform - uid: 19058 components: - pos: 42.5,16.5 @@ -22752,11 +23786,6 @@ entities: - pos: 49.5,13.5 parent: 6747 type: Transform - - uid: 19067 - components: - - pos: 50.5,13.5 - parent: 6747 - type: Transform - uid: 19068 components: - pos: 51.5,13.5 @@ -22769,37 +23798,7 @@ entities: type: Transform - uid: 19070 components: - - pos: 53.5,13.5 - parent: 6747 - type: Transform - - uid: 19071 - components: - - pos: 53.5,14.5 - parent: 6747 - type: Transform - - uid: 19072 - components: - - pos: 53.5,15.5 - parent: 6747 - type: Transform - - uid: 19073 - components: - - pos: 53.5,16.5 - parent: 6747 - type: Transform - - uid: 19074 - components: - - pos: 54.5,16.5 - parent: 6747 - type: Transform - - uid: 19075 - components: - - pos: 55.5,16.5 - parent: 6747 - type: Transform - - uid: 19076 - components: - - pos: 56.5,16.5 + - pos: 44.5,21.5 parent: 6747 type: Transform - uid: 19077 @@ -22834,97 +23833,7 @@ entities: type: Transform - uid: 19083 components: - - pos: 53.5,11.5 - parent: 6747 - type: Transform - - uid: 19084 - components: - - pos: 53.5,10.5 - parent: 6747 - type: Transform - - uid: 19085 - components: - - pos: 54.5,10.5 - parent: 6747 - type: Transform - - uid: 19086 - components: - - pos: 55.5,10.5 - parent: 6747 - type: Transform - - uid: 19087 - components: - - pos: 56.5,10.5 - parent: 6747 - type: Transform - - uid: 19088 - components: - - pos: 57.5,10.5 - parent: 6747 - type: Transform - - uid: 19089 - components: - - pos: 58.5,10.5 - parent: 6747 - type: Transform - - uid: 19090 - components: - - pos: 53.5,9.5 - parent: 6747 - type: Transform - - uid: 19091 - components: - - pos: 53.5,8.5 - parent: 6747 - type: Transform - - uid: 19092 - components: - - pos: 53.5,7.5 - parent: 6747 - type: Transform - - uid: 19093 - components: - - pos: 52.5,7.5 - parent: 6747 - type: Transform - - uid: 19094 - components: - - pos: 51.5,7.5 - parent: 6747 - type: Transform - - uid: 19095 - components: - - pos: 50.5,7.5 - parent: 6747 - type: Transform - - uid: 19096 - components: - - pos: 49.5,7.5 - parent: 6747 - type: Transform - - uid: 19097 - components: - - pos: 48.5,7.5 - parent: 6747 - type: Transform - - uid: 19098 - components: - - pos: 47.5,7.5 - parent: 6747 - type: Transform - - uid: 19099 - components: - - pos: 46.5,7.5 - parent: 6747 - type: Transform - - uid: 19100 - components: - - pos: 45.5,7.5 - parent: 6747 - type: Transform - - uid: 19101 - components: - - pos: 44.5,7.5 + - pos: 43.5,21.5 parent: 6747 type: Transform - uid: 19102 @@ -22962,166 +23871,6 @@ entities: - pos: 43.5,11.5 parent: 6747 type: Transform - - uid: 19109 - components: - - pos: 17.5,16.5 - parent: 6747 - type: Transform - - uid: 19110 - components: - - pos: 17.5,17.5 - parent: 6747 - type: Transform - - uid: 19111 - components: - - pos: 16.5,17.5 - parent: 6747 - type: Transform - - uid: 19112 - components: - - pos: 15.5,17.5 - parent: 6747 - type: Transform - - uid: 19113 - components: - - pos: 14.5,17.5 - parent: 6747 - type: Transform - - uid: 19114 - components: - - pos: 14.5,18.5 - parent: 6747 - type: Transform - - uid: 19115 - components: - - pos: 17.5,15.5 - parent: 6747 - type: Transform - - uid: 19116 - components: - - pos: 17.5,14.5 - parent: 6747 - type: Transform - - uid: 19117 - components: - - pos: 16.5,14.5 - parent: 6747 - type: Transform - - uid: 19118 - components: - - pos: 27.5,19.5 - parent: 6747 - type: Transform - - uid: 19119 - components: - - pos: 27.5,18.5 - parent: 6747 - type: Transform - - uid: 19120 - components: - - pos: 27.5,17.5 - parent: 6747 - type: Transform - - uid: 19121 - components: - - pos: 28.5,17.5 - parent: 6747 - type: Transform - - uid: 19122 - components: - - pos: 29.5,17.5 - parent: 6747 - type: Transform - - uid: 19123 - components: - - pos: 30.5,17.5 - parent: 6747 - type: Transform - - uid: 19124 - components: - - pos: 30.5,16.5 - parent: 6747 - type: Transform - - uid: 19125 - components: - - pos: 30.5,15.5 - parent: 6747 - type: Transform - - uid: 19126 - components: - - pos: 30.5,14.5 - parent: 6747 - type: Transform - - uid: 19127 - components: - - pos: 26.5,17.5 - parent: 6747 - type: Transform - - uid: 19128 - components: - - pos: 26.5,16.5 - parent: 6747 - type: Transform - - uid: 19129 - components: - - pos: 26.5,15.5 - parent: 6747 - type: Transform - - uid: 19130 - components: - - pos: 26.5,14.5 - parent: 6747 - type: Transform - - uid: 19131 - components: - - pos: 25.5,17.5 - parent: 6747 - type: Transform - - uid: 19132 - components: - - pos: 24.5,17.5 - parent: 6747 - type: Transform - - uid: 19133 - components: - - pos: 23.5,17.5 - parent: 6747 - type: Transform - - uid: 19134 - components: - - pos: 22.5,17.5 - parent: 6747 - type: Transform - - uid: 19135 - components: - - pos: 21.5,17.5 - parent: 6747 - type: Transform - - uid: 19136 - components: - - pos: 21.5,16.5 - parent: 6747 - type: Transform - - uid: 19137 - components: - - pos: 21.5,15.5 - parent: 6747 - type: Transform - - uid: 19138 - components: - - pos: 21.5,14.5 - parent: 6747 - type: Transform - - uid: 19139 - components: - - pos: 20.5,14.5 - parent: 6747 - type: Transform - - uid: 19140 - components: - - pos: 30.5,12.5 - parent: 6747 - type: Transform - uid: 19142 components: - pos: 30.5,10.5 @@ -23187,11 +23936,6 @@ entities: - pos: 39.5,8.5 parent: 6747 type: Transform - - uid: 19155 - components: - - pos: 44.5,6.5 - parent: 6747 - type: Transform - uid: 19156 components: - pos: 29.5,10.5 @@ -30429,7 +31173,7 @@ entities: type: Transform - uid: 21100 components: - - pos: -20.5,-0.5 + - pos: 42.5,21.5 parent: 6747 type: Transform - uid: 21101 @@ -30439,7 +31183,7 @@ entities: type: Transform - uid: 21102 components: - - pos: -26.5,-0.5 + - pos: 40.5,21.5 parent: 6747 type: Transform - uid: 21103 @@ -31672,26 +32416,6 @@ entities: - pos: -13.5,5.5 parent: 6747 type: Transform - - uid: 21807 - components: - - pos: -14.5,5.5 - parent: 6747 - type: Transform - - uid: 21821 - components: - - pos: -15.5,5.5 - parent: 6747 - type: Transform - - uid: 21822 - components: - - pos: -16.5,5.5 - parent: 6747 - type: Transform - - uid: 21823 - components: - - pos: -17.5,5.5 - parent: 6747 - type: Transform - uid: 21977 components: - pos: 14.5,-76.5 @@ -31792,39 +32516,19 @@ entities: - pos: 73.5,-27.5 parent: 6747 type: Transform - - uid: 22750 - components: - - pos: 30.5,42.5 - parent: 6747 - type: Transform - - uid: 22751 - components: - - pos: 31.5,42.5 - parent: 6747 - type: Transform - - uid: 22752 - components: - - pos: 32.5,42.5 - parent: 6747 - type: Transform - - uid: 22753 + - uid: 22732 components: - - pos: 33.5,42.5 + - pos: 39.5,21.5 parent: 6747 type: Transform - - uid: 22754 + - uid: 22733 components: - - pos: 33.5,43.5 + - pos: 38.5,21.5 parent: 6747 type: Transform - - uid: 22755 - components: - - pos: 33.5,44.5 - parent: 6747 - type: Transform - - uid: 22756 + - uid: 22738 components: - - pos: 33.5,45.5 + - pos: 37.5,21.5 parent: 6747 type: Transform - uid: 22757 @@ -32227,26 +32931,6 @@ entities: - pos: -37.5,-41.5 parent: 6747 type: Transform - - uid: 23673 - components: - - pos: 14.5,19.5 - parent: 6747 - type: Transform - - uid: 23675 - components: - - pos: 15.5,20.5 - parent: 6747 - type: Transform - - uid: 23678 - components: - - pos: 15.5,19.5 - parent: 6747 - type: Transform - - uid: 23679 - components: - - pos: 15.5,21.5 - parent: 6747 - type: Transform - uid: 23718 components: - pos: 34.5,-47.5 @@ -32317,54 +33001,9 @@ entities: - pos: 1.5,48.5 parent: 6747 type: Transform - - uid: 23832 - components: - - pos: 48.5,46.5 - parent: 6747 - type: Transform - - uid: 23833 - components: - - pos: 48.5,47.5 - parent: 6747 - type: Transform - - uid: 23834 - components: - - pos: 48.5,48.5 - parent: 6747 - type: Transform - - uid: 23835 - components: - - pos: 48.5,49.5 - parent: 6747 - type: Transform - - uid: 23836 - components: - - pos: 48.5,50.5 - parent: 6747 - type: Transform - - uid: 23839 - components: - - pos: 45.5,54.5 - parent: 6747 - type: Transform - - uid: 23840 - components: - - pos: 48.5,51.5 - parent: 6747 - type: Transform - - uid: 23841 - components: - - pos: 48.5,52.5 - parent: 6747 - type: Transform - - uid: 23842 - components: - - pos: 48.5,53.5 - parent: 6747 - type: Transform - uid: 23843 components: - - pos: 48.5,54.5 + - pos: 36.5,21.5 parent: 6747 type: Transform - uid: 23844 @@ -32417,201 +33056,6 @@ entities: - pos: 57.5,55.5 parent: 6747 type: Transform - - uid: 23854 - components: - - pos: 47.5,55.5 - parent: 6747 - type: Transform - - uid: 23855 - components: - - pos: 46.5,55.5 - parent: 6747 - type: Transform - - uid: 23856 - components: - - pos: 45.5,55.5 - parent: 6747 - type: Transform - - uid: 23857 - components: - - pos: 44.5,54.5 - parent: 6747 - type: Transform - - uid: 23858 - components: - - pos: 43.5,54.5 - parent: 6747 - type: Transform - - uid: 23859 - components: - - pos: 42.5,54.5 - parent: 6747 - type: Transform - - uid: 23860 - components: - - pos: 41.5,54.5 - parent: 6747 - type: Transform - - uid: 23861 - components: - - pos: 40.5,54.5 - parent: 6747 - type: Transform - - uid: 23862 - components: - - pos: 39.5,54.5 - parent: 6747 - type: Transform - - uid: 23863 - components: - - pos: 38.5,54.5 - parent: 6747 - type: Transform - - uid: 23864 - components: - - pos: 37.5,54.5 - parent: 6747 - type: Transform - - uid: 23865 - components: - - pos: 36.5,54.5 - parent: 6747 - type: Transform - - uid: 23866 - components: - - pos: 35.5,54.5 - parent: 6747 - type: Transform - - uid: 23867 - components: - - pos: 34.5,54.5 - parent: 6747 - type: Transform - - uid: 23868 - components: - - pos: 33.5,54.5 - parent: 6747 - type: Transform - - uid: 23869 - components: - - pos: 32.5,54.5 - parent: 6747 - type: Transform - - uid: 23870 - components: - - pos: 31.5,54.5 - parent: 6747 - type: Transform - - uid: 23871 - components: - - pos: 30.5,54.5 - parent: 6747 - type: Transform - - uid: 23872 - components: - - pos: 29.5,54.5 - parent: 6747 - type: Transform - - uid: 23873 - components: - - pos: 28.5,54.5 - parent: 6747 - type: Transform - - uid: 23874 - components: - - pos: 27.5,54.5 - parent: 6747 - type: Transform - - uid: 23875 - components: - - pos: 26.5,54.5 - parent: 6747 - type: Transform - - uid: 23876 - components: - - pos: 26.5,55.5 - parent: 6747 - type: Transform - - uid: 23877 - components: - - pos: 25.5,54.5 - parent: 6747 - type: Transform - - uid: 23878 - components: - - pos: 24.5,54.5 - parent: 6747 - type: Transform - - uid: 23879 - components: - - pos: 23.5,54.5 - parent: 6747 - type: Transform - - uid: 23880 - components: - - pos: 22.5,54.5 - parent: 6747 - type: Transform - - uid: 23881 - components: - - pos: 21.5,54.5 - parent: 6747 - type: Transform - - uid: 23882 - components: - - pos: 20.5,54.5 - parent: 6747 - type: Transform - - uid: 23883 - components: - - pos: 19.5,54.5 - parent: 6747 - type: Transform - - uid: 23884 - components: - - pos: 18.5,54.5 - parent: 6747 - type: Transform - - uid: 23885 - components: - - pos: 17.5,54.5 - parent: 6747 - type: Transform - - uid: 23886 - components: - - pos: 16.5,54.5 - parent: 6747 - type: Transform - - uid: 23887 - components: - - pos: 15.5,54.5 - parent: 6747 - type: Transform - - uid: 23888 - components: - - pos: 15.5,55.5 - parent: 6747 - type: Transform - - uid: 23898 - components: - - pos: -2.5,48.5 - parent: 6747 - type: Transform - - uid: 23901 - components: - - pos: -1.5,48.5 - parent: 6747 - type: Transform - - uid: 23902 - components: - - pos: -0.5,48.5 - parent: 6747 - type: Transform - - uid: 23903 - components: - - pos: 0.5,48.5 - parent: 6747 - type: Transform - uid: 23910 components: - pos: -2.5,36.5 @@ -32657,11 +33101,6 @@ entities: - pos: 44.5,-43.5 parent: 6747 type: Transform - - uid: 23975 - components: - - pos: 14.5,21.5 - parent: 6747 - type: Transform - uid: 23977 components: - pos: 48.5,-39.5 @@ -32707,26 +33146,6 @@ entities: - pos: 53.5,-42.5 parent: 6747 type: Transform - - uid: 23986 - components: - - pos: 13.5,21.5 - parent: 6747 - type: Transform - - uid: 23987 - components: - - pos: 12.5,21.5 - parent: 6747 - type: Transform - - uid: 23988 - components: - - pos: 11.5,21.5 - parent: 6747 - type: Transform - - uid: 23989 - components: - - pos: 10.5,21.5 - parent: 6747 - type: Transform - uid: 24242 components: - pos: -17.5,-6.5 @@ -33227,14334 +33646,18141 @@ entities: - pos: -8.5,-40.5 parent: 6747 type: Transform -- proto: CableApcStack - entities: - - uid: 4143 + - uid: 25907 components: - - rot: -1.5707963267948966 rad - pos: -21.09296,-55.44727 + - pos: 58.5,55.5 parent: 6747 type: Transform - - uid: 5081 + - uid: 25909 components: - - pos: 23.46833,-66.94682 + - pos: 47.5,55.5 parent: 6747 type: Transform - - uid: 10548 + - uid: 25910 components: - - pos: 56.508034,2.519523 + - pos: 47.5,56.5 parent: 6747 type: Transform -- proto: CableApcStack1 - entities: - - uid: 5112 + - uid: 25911 components: - - rot: -1.5707963267948966 rad - pos: 23.418564,-66.29782 + - pos: 47.5,57.5 parent: 6747 type: Transform - - uid: 5273 + - uid: 25912 components: - - pos: 23.387314,-65.943405 + - pos: 47.5,58.5 parent: 6747 type: Transform - - uid: 7712 + - uid: 25913 components: - - pos: 29.384521,34.63739 + - pos: 47.5,59.5 parent: 6747 type: Transform - - count: 2 - type: Stack - - uid: 8371 + - uid: 25914 components: - - rot: -1.5707963267948966 rad - pos: 29.218697,34.54081 + - pos: 47.5,60.5 parent: 6747 type: Transform - - uid: 10134 + - uid: 25915 components: - - pos: -48.443363,-74.889786 + - pos: 47.5,61.5 parent: 6747 type: Transform - - uid: 10135 + - uid: 25916 components: - - pos: -48.64128,-76.85991 + - pos: 47.5,62.5 parent: 6747 type: Transform - - uid: 10136 + - uid: 25917 components: - - rot: -1.5707963267948966 rad - pos: -48.26628,-76.64101 + - pos: 47.5,63.5 parent: 6747 type: Transform - - uid: 22479 + - uid: 25918 components: - - rot: -1.5707963267948966 rad - pos: 59.28278,-13.162068 + - pos: 47.5,64.5 parent: 6747 type: Transform - - uid: 22480 + - uid: 25919 components: - - pos: 59.084538,-13.600968 + - pos: 47.5,65.5 parent: 6747 type: Transform - - uid: 22481 + - uid: 25920 components: - - pos: 59.05171,-13.170659 + - pos: 47.5,66.5 parent: 6747 type: Transform - - count: 2 - type: Stack - - uid: 22482 + - uid: 25921 components: - - rot: -1.5707963267948966 rad - pos: 59.2932,-13.724959 + - pos: 47.5,67.5 parent: 6747 type: Transform - - uid: 22525 + - uid: 25922 components: - - pos: -15.626692,12.792867 + - pos: 47.5,68.5 parent: 6747 type: Transform - - uid: 22526 + - uid: 25923 components: - - rot: -1.5707963267948966 rad - pos: -15.720442,12.56354 + - pos: 47.5,69.5 parent: 6747 type: Transform - - uid: 22527 + - uid: 25924 components: - - rot: -1.5707963267948966 rad - pos: -15.710025,12.792867 + - pos: 47.5,70.5 parent: 6747 type: Transform - - uid: 23904 + - uid: 25925 components: - - pos: 23.251896,-65.70366 + - pos: 47.5,71.5 parent: 6747 type: Transform -- proto: CableApcStack10 - entities: - - uid: 15924 + - uid: 25926 components: - - pos: -17.528885,-13.314248 + - pos: 46.5,71.5 parent: 6747 type: Transform -- proto: CableHV - entities: - - uid: 583 + - uid: 25927 components: - - pos: -43.5,-19.5 + - pos: 45.5,71.5 parent: 6747 type: Transform - - uid: 843 + - uid: 25928 components: - - pos: 24.5,15.5 + - pos: 44.5,71.5 parent: 6747 type: Transform - - uid: 1203 + - uid: 25929 components: - - pos: -34.5,-48.5 + - pos: 43.5,71.5 parent: 6747 type: Transform - - uid: 2788 + - uid: 25930 components: - - pos: -42.5,-15.5 + - pos: 42.5,71.5 parent: 6747 type: Transform - - uid: 2878 + - uid: 25931 components: - - pos: -42.5,-16.5 + - pos: 41.5,71.5 parent: 6747 type: Transform - - uid: 2950 + - uid: 25932 components: - - pos: -43.5,-20.5 + - pos: 40.5,71.5 parent: 6747 type: Transform - - uid: 2969 + - uid: 25933 components: - - pos: -43.5,-18.5 + - pos: 39.5,71.5 parent: 6747 type: Transform - - uid: 2989 + - uid: 25934 components: - - pos: -42.5,-20.5 + - pos: 38.5,71.5 parent: 6747 type: Transform - - uid: 2998 + - uid: 25935 components: - - pos: -42.5,-18.5 + - pos: 37.5,71.5 parent: 6747 type: Transform - - uid: 3064 + - uid: 25936 components: - - pos: -47.5,-41.5 + - pos: 36.5,71.5 parent: 6747 type: Transform - - uid: 4044 + - uid: 25937 components: - - pos: -39.5,-41.5 + - pos: 35.5,71.5 parent: 6747 type: Transform - - uid: 4611 + - uid: 25938 components: - - pos: -40.5,-41.5 + - pos: 34.5,71.5 parent: 6747 type: Transform - - uid: 4875 + - uid: 25939 components: - - pos: 20.5,4.5 + - pos: 34.5,70.5 parent: 6747 type: Transform - - uid: 5278 + - uid: 25940 components: - - pos: 18.5,-76.5 + - pos: 34.5,69.5 parent: 6747 type: Transform - - uid: 5279 + - uid: 25941 components: - - pos: 19.5,-76.5 + - pos: 34.5,68.5 parent: 6747 type: Transform - - uid: 6284 + - uid: 25942 components: - - pos: 68.5,-7.5 + - pos: 34.5,67.5 parent: 6747 type: Transform - - uid: 6285 + - uid: 25943 components: - - pos: 69.5,-7.5 + - pos: 34.5,66.5 parent: 6747 type: Transform - - uid: 6286 + - uid: 25944 components: - - pos: 70.5,-7.5 + - pos: 34.5,65.5 parent: 6747 type: Transform - - uid: 6287 + - uid: 25945 components: - - pos: 71.5,-7.5 + - pos: 34.5,64.5 parent: 6747 type: Transform - - uid: 6288 + - uid: 25946 components: - - pos: 72.5,-7.5 + - pos: 34.5,63.5 parent: 6747 type: Transform - - uid: 6289 + - uid: 25947 components: - - pos: 73.5,-7.5 + - pos: 34.5,62.5 parent: 6747 type: Transform - - uid: 6290 + - uid: 25948 components: - - pos: 73.5,-6.5 + - pos: 34.5,61.5 parent: 6747 type: Transform - - uid: 7557 + - uid: 25949 components: - - pos: -49.5,-42.5 + - pos: 34.5,60.5 parent: 6747 type: Transform - - uid: 8451 + - uid: 25950 components: - - pos: 24.5,39.5 + - pos: 34.5,59.5 parent: 6747 type: Transform - - uid: 8452 + - uid: 25951 components: - - pos: 24.5,38.5 + - pos: 34.5,58.5 parent: 6747 type: Transform - - uid: 8453 + - uid: 25952 components: - - pos: 24.5,40.5 + - pos: 34.5,57.5 parent: 6747 type: Transform - - uid: 8458 + - uid: 25953 components: - - pos: 24.5,37.5 + - pos: 34.5,56.5 parent: 6747 type: Transform - - uid: 8462 + - uid: 25954 components: - - pos: 24.5,36.5 + - pos: 34.5,55.5 parent: 6747 type: Transform - - uid: 8466 + - uid: 25955 components: - - pos: 24.5,41.5 + - pos: 101.5,17.5 parent: 6747 type: Transform - - uid: 8467 + - uid: 25956 components: - - pos: 24.5,42.5 + - pos: 100.5,17.5 parent: 6747 type: Transform - - uid: 8472 + - uid: 25957 components: - - pos: 24.5,35.5 + - pos: 99.5,17.5 parent: 6747 type: Transform - - uid: 8473 + - uid: 25958 components: - - pos: 24.5,34.5 + - pos: 98.5,17.5 parent: 6747 type: Transform - - uid: 8474 + - uid: 25959 components: - - pos: 24.5,33.5 + - pos: 97.5,17.5 parent: 6747 type: Transform - - uid: 8475 + - uid: 25960 components: - - pos: 24.5,32.5 + - pos: 96.5,17.5 parent: 6747 type: Transform - - uid: 8476 + - uid: 25961 components: - - pos: 24.5,31.5 + - pos: 95.5,17.5 parent: 6747 type: Transform - - uid: 8477 + - uid: 25962 components: - - pos: 24.5,30.5 + - pos: 94.5,17.5 parent: 6747 type: Transform - - uid: 8478 + - uid: 25963 components: - - pos: 24.5,29.5 + - pos: 93.5,17.5 parent: 6747 type: Transform - - uid: 8479 + - uid: 25964 components: - - pos: 24.5,28.5 + - pos: 92.5,17.5 parent: 6747 type: Transform - - uid: 8480 + - uid: 25965 components: - - pos: 24.5,27.5 + - pos: 91.5,17.5 parent: 6747 type: Transform - - uid: 8481 + - uid: 25966 components: - - pos: 24.5,26.5 + - pos: 90.5,17.5 parent: 6747 type: Transform - - uid: 8482 + - uid: 25967 components: - - pos: 24.5,25.5 + - pos: 89.5,17.5 parent: 6747 type: Transform - - uid: 8483 + - uid: 25968 components: - - pos: 24.5,24.5 + - pos: 88.5,17.5 parent: 6747 type: Transform - - uid: 8484 + - uid: 25969 components: - - pos: 24.5,23.5 + - pos: 87.5,17.5 parent: 6747 type: Transform - - uid: 8485 + - uid: 25970 components: - - pos: 24.5,22.5 + - pos: 86.5,17.5 parent: 6747 type: Transform - - uid: 8486 + - uid: 25971 components: - - pos: 25.5,22.5 + - pos: 85.5,17.5 parent: 6747 type: Transform - - uid: 8487 + - uid: 25972 components: - - pos: 26.5,22.5 + - pos: 84.5,17.5 parent: 6747 type: Transform - - uid: 8488 + - uid: 25973 components: - - pos: 27.5,22.5 + - pos: 83.5,17.5 parent: 6747 type: Transform - - uid: 8489 + - uid: 25974 components: - - pos: 28.5,22.5 + - pos: 82.5,17.5 parent: 6747 type: Transform - - uid: 8490 + - uid: 25975 components: - - pos: 23.5,22.5 + - pos: 81.5,17.5 parent: 6747 type: Transform - - uid: 8491 + - uid: 25976 components: - - pos: 22.5,22.5 + - pos: 80.5,17.5 parent: 6747 type: Transform - - uid: 8492 + - uid: 25977 components: - - pos: 21.5,22.5 + - pos: 79.5,17.5 parent: 6747 type: Transform - - uid: 8493 + - uid: 25978 components: - - pos: 20.5,22.5 + - pos: 78.5,17.5 parent: 6747 type: Transform - - uid: 8494 + - uid: 25979 components: - - pos: 19.5,22.5 + - pos: 77.5,17.5 parent: 6747 type: Transform - - uid: 8495 + - uid: 25980 components: - - pos: 19.5,21.5 + - pos: 76.5,17.5 parent: 6747 type: Transform - - uid: 8496 + - uid: 25981 components: - - pos: 20.5,21.5 + - pos: 75.5,17.5 parent: 6747 type: Transform - - uid: 8497 + - uid: 25982 components: - - pos: 19.5,20.5 + - pos: 74.5,17.5 parent: 6747 type: Transform - - uid: 8498 + - uid: 25983 components: - - pos: 20.5,20.5 + - pos: 73.5,17.5 parent: 6747 type: Transform - - uid: 8499 + - uid: 25984 components: - - pos: 28.5,21.5 + - pos: 72.5,17.5 parent: 6747 type: Transform - - uid: 8500 + - uid: 26195 components: - - pos: 27.5,21.5 + - pos: -0.5,49.5 parent: 6747 type: Transform - - uid: 8501 + - uid: 26197 components: - - pos: 28.5,20.5 + - pos: 51.5,46.5 parent: 6747 type: Transform - - uid: 8502 + - uid: 26372 components: - - pos: 27.5,20.5 + - pos: 46.5,27.5 parent: 6747 type: Transform - - uid: 8503 + - uid: 26373 components: - - pos: 26.5,20.5 + - pos: 47.5,27.5 parent: 6747 type: Transform - - uid: 8504 + - uid: 26374 components: - - pos: 21.5,20.5 + - pos: 49.5,30.5 parent: 6747 type: Transform - - uid: 8533 + - uid: 26375 components: - - pos: 25.5,20.5 + - pos: 50.5,30.5 parent: 6747 type: Transform - - uid: 8534 + - uid: 26376 components: - - pos: 25.5,19.5 + - pos: 51.5,30.5 parent: 6747 type: Transform - - uid: 8535 + - uid: 26377 components: - - pos: 25.5,18.5 + - pos: 52.5,30.5 parent: 6747 type: Transform - - uid: 8536 + - uid: 26378 components: - - pos: 25.5,17.5 + - pos: 53.5,30.5 parent: 6747 type: Transform - - uid: 8537 + - uid: 26379 components: - - pos: 25.5,16.5 + - pos: 54.5,30.5 parent: 6747 type: Transform - - uid: 8538 + - uid: 26380 components: - - pos: 25.5,15.5 + - pos: 54.5,31.5 parent: 6747 type: Transform - - uid: 8539 + - uid: 26381 components: - - pos: 24.5,20.5 + - pos: 53.5,47.5 parent: 6747 type: Transform - - uid: 8540 + - uid: 26382 components: - - pos: 23.5,20.5 + - pos: 53.5,48.5 parent: 6747 type: Transform - - uid: 8541 + - uid: 26383 components: - - pos: 22.5,20.5 + - pos: 53.5,49.5 parent: 6747 type: Transform - - uid: 8542 + - uid: 26384 components: - - pos: 15.5,14.5 + - pos: 54.5,49.5 parent: 6747 type: Transform - - uid: 8543 + - uid: 26385 components: - - pos: 16.5,14.5 + - pos: 52.5,46.5 parent: 6747 type: Transform - - uid: 8544 + - uid: 26386 components: - - pos: 17.5,14.5 + - pos: 47.5,45.5 parent: 6747 type: Transform - - uid: 8545 + - uid: 26387 components: - - pos: 18.5,14.5 + - pos: 68.5,26.5 parent: 6747 type: Transform - - uid: 8546 + - uid: 26388 components: - - pos: 19.5,14.5 + - pos: 46.5,45.5 parent: 6747 type: Transform - - uid: 8547 + - uid: 26389 components: - - pos: 20.5,14.5 + - pos: 45.5,45.5 parent: 6747 type: Transform - - uid: 8548 + - uid: 26390 components: - - pos: 21.5,14.5 + - pos: 44.5,45.5 parent: 6747 type: Transform - - uid: 8549 + - uid: 26391 components: - - pos: 22.5,14.5 + - pos: 43.5,45.5 parent: 6747 type: Transform - - uid: 8550 + - uid: 26392 components: - - pos: 22.5,15.5 + - pos: 42.5,45.5 parent: 6747 type: Transform - - uid: 8551 + - uid: 26393 components: - - pos: 22.5,16.5 + - pos: 41.5,45.5 parent: 6747 type: Transform - - uid: 8552 + - uid: 26394 components: - - pos: 22.5,17.5 + - pos: 40.5,45.5 parent: 6747 type: Transform - - uid: 8553 + - uid: 26395 components: - - pos: 22.5,18.5 + - pos: 39.5,45.5 parent: 6747 type: Transform - - uid: 8554 + - uid: 26396 components: - - pos: 22.5,19.5 + - pos: 38.5,45.5 parent: 6747 type: Transform - - uid: 8751 + - uid: 26397 components: - - pos: 30.5,21.5 + - pos: 37.5,45.5 parent: 6747 type: Transform - - uid: 10462 + - uid: 26398 components: - - pos: -41.5,-41.5 + - pos: 36.5,45.5 parent: 6747 type: Transform - - uid: 10471 + - uid: 26399 components: - - pos: -45.5,-41.5 + - pos: 35.5,45.5 parent: 6747 type: Transform - - uid: 10472 + - uid: 26400 components: - - pos: -49.5,-41.5 + - pos: 34.5,45.5 parent: 6747 type: Transform - - uid: 10473 + - uid: 26401 components: - - pos: -49.5,-39.5 + - pos: 33.5,45.5 parent: 6747 type: Transform - - uid: 10484 + - uid: 26402 components: - - pos: -46.5,-41.5 + - pos: 32.5,45.5 parent: 6747 type: Transform - - uid: 10491 + - uid: 26403 components: - - pos: -48.5,-41.5 + - pos: 31.5,45.5 parent: 6747 type: Transform - - uid: 11547 + - uid: 26404 components: - - pos: 6.5,-15.5 + - pos: 31.5,44.5 parent: 6747 type: Transform - - uid: 11548 + - uid: 26405 components: - - pos: 7.5,-14.5 + - pos: 31.5,43.5 parent: 6747 type: Transform - - uid: 11549 + - uid: 26406 components: - - pos: 7.5,-15.5 + - pos: 31.5,42.5 parent: 6747 type: Transform - - uid: 11550 + - uid: 26407 components: - - pos: 3.5,-12.5 + - pos: 31.5,41.5 parent: 6747 type: Transform - - uid: 11551 + - uid: 26408 components: - - pos: 3.5,-13.5 + - pos: 31.5,40.5 parent: 6747 type: Transform - - uid: 11552 + - uid: 26409 components: - - pos: 4.5,-13.5 + - pos: 31.5,39.5 parent: 6747 type: Transform - - uid: 11553 + - uid: 26410 components: - - pos: 5.5,-13.5 + - pos: 31.5,38.5 parent: 6747 type: Transform - - uid: 11554 + - uid: 26411 components: - - pos: 5.5,-12.5 + - pos: 31.5,37.5 parent: 6747 type: Transform - - uid: 11555 + - uid: 26412 components: - - pos: 6.5,-12.5 + - pos: 30.5,37.5 parent: 6747 type: Transform - - uid: 11556 + - uid: 26413 components: - - pos: 7.5,-12.5 + - pos: 29.5,37.5 parent: 6747 type: Transform - - uid: 14532 + - uid: 26420 components: - - pos: -44.5,-41.5 + - pos: 30.5,36.5 parent: 6747 type: Transform - - uid: 14656 + - uid: 26421 components: - - pos: -43.5,-41.5 + - pos: 30.5,35.5 parent: 6747 type: Transform - - uid: 14657 + - uid: 26422 components: - - pos: -42.5,-41.5 + - pos: 29.5,35.5 parent: 6747 type: Transform - - uid: 14794 + - uid: 26423 components: - - pos: -49.5,-40.5 + - pos: 29.5,34.5 parent: 6747 type: Transform - - uid: 14795 + - uid: 26424 components: - - pos: -49.5,-39.5 + - pos: 29.5,33.5 parent: 6747 type: Transform - - uid: 15046 + - uid: 26425 components: - - pos: -33.5,-48.5 + - pos: 29.5,32.5 parent: 6747 type: Transform - - uid: 15805 + - uid: 26426 components: - - pos: -45.5,-9.5 + - pos: 29.5,31.5 parent: 6747 type: Transform - - uid: 16017 + - uid: 26427 components: - - pos: 7.5,-8.5 + - pos: 29.5,30.5 parent: 6747 type: Transform - - uid: 16025 + - uid: 26428 components: - - pos: 7.5,-7.5 + - pos: 29.5,29.5 parent: 6747 type: Transform - - uid: 16029 + - uid: 26429 components: - - pos: 7.5,-6.5 + - pos: 29.5,28.5 parent: 6747 type: Transform - - uid: 16030 + - uid: 26430 components: - - pos: 7.5,-5.5 + - pos: 29.5,27.5 parent: 6747 type: Transform - - uid: 16031 + - uid: 26431 components: - - pos: 7.5,-4.5 + - pos: 29.5,26.5 parent: 6747 type: Transform - - uid: 16032 + - uid: 26432 components: - - pos: 7.5,-3.5 + - pos: 29.5,25.5 parent: 6747 type: Transform - - uid: 16033 + - uid: 26433 components: - - pos: 7.5,-2.5 + - pos: 30.5,25.5 parent: 6747 type: Transform - - uid: 16034 + - uid: 26434 components: - - pos: 7.5,-1.5 + - pos: 31.5,25.5 parent: 6747 type: Transform - - uid: 16035 + - uid: 26435 components: - - pos: 7.5,-0.5 + - pos: 32.5,25.5 parent: 6747 type: Transform - - uid: 16036 + - uid: 26436 components: - - pos: 7.5,0.5 + - pos: 33.5,25.5 parent: 6747 type: Transform - - uid: 16037 + - uid: 26437 components: - - pos: 7.5,1.5 + - pos: 34.5,25.5 parent: 6747 type: Transform - - uid: 16046 + - uid: 26438 components: - - pos: 1.5,-9.5 + - pos: 35.5,25.5 parent: 6747 type: Transform - - uid: 16047 + - uid: 26439 components: - - pos: 2.5,-9.5 + - pos: 36.5,25.5 parent: 6747 type: Transform - - uid: 16048 + - uid: 26440 components: - - pos: 0.5,-9.5 + - pos: 37.5,25.5 parent: 6747 type: Transform - - uid: 16049 + - uid: 26442 components: - - pos: -0.5,-9.5 + - pos: 29.5,24.5 parent: 6747 type: Transform - - uid: 16050 + - uid: 26443 components: - - pos: -1.5,-9.5 + - pos: 29.5,23.5 parent: 6747 type: Transform - - uid: 16051 + - uid: 26444 components: - - pos: -2.5,-9.5 + - pos: 29.5,22.5 parent: 6747 type: Transform - - uid: 16053 + - uid: 26445 components: - - pos: -3.5,-9.5 + - pos: 29.5,21.5 parent: 6747 type: Transform - - uid: 16054 + - uid: 26446 components: - - pos: -4.5,-9.5 + - pos: 30.5,21.5 parent: 6747 type: Transform - - uid: 16055 + - uid: 26447 components: - - pos: -5.5,-9.5 + - pos: 31.5,21.5 parent: 6747 type: Transform - - uid: 16056 + - uid: 26448 components: - - pos: -6.5,-9.5 + - pos: 32.5,21.5 parent: 6747 type: Transform - - uid: 16057 + - uid: 26449 components: - - pos: -7.5,-9.5 + - pos: 33.5,21.5 parent: 6747 type: Transform - - uid: 16058 + - uid: 26450 components: - - pos: -8.5,-9.5 + - pos: 34.5,21.5 parent: 6747 type: Transform - - uid: 16059 + - uid: 26451 components: - - pos: -9.5,-9.5 + - pos: 35.5,21.5 parent: 6747 type: Transform - - uid: 16060 + - uid: 26452 components: - - pos: -10.5,-9.5 + - pos: 37.5,18.5 parent: 6747 type: Transform - - uid: 16061 + - uid: 26453 components: - - pos: -11.5,-9.5 + - pos: 37.5,17.5 parent: 6747 type: Transform - - uid: 16068 + - uid: 26454 components: - - pos: -11.5,-10.5 + - pos: 37.5,16.5 parent: 6747 type: Transform - - uid: 16069 + - uid: 26482 components: - - pos: -11.5,-11.5 + - pos: 60.5,12.5 parent: 6747 type: Transform - - uid: 16070 + - uid: 26483 components: - - pos: -11.5,-12.5 + - pos: 61.5,12.5 parent: 6747 type: Transform - - uid: 16071 + - uid: 26484 components: - - pos: -11.5,-13.5 + - pos: 62.5,12.5 parent: 6747 type: Transform - - uid: 16072 + - uid: 26501 components: - - pos: -11.5,-14.5 + - pos: 68.5,10.5 parent: 6747 type: Transform - - uid: 16073 + - uid: 26502 components: - - pos: -11.5,-15.5 + - pos: 68.5,9.5 parent: 6747 type: Transform - - uid: 16074 + - uid: 26503 components: - - pos: -11.5,-16.5 + - pos: 68.5,8.5 parent: 6747 type: Transform - - uid: 16075 + - uid: 26504 components: - - pos: -11.5,-17.5 + - pos: 69.5,8.5 parent: 6747 type: Transform - - uid: 16076 + - uid: 26505 components: - - pos: -11.5,-18.5 + - pos: 70.5,8.5 parent: 6747 type: Transform - - uid: 16077 + - uid: 26506 components: - - pos: -11.5,-19.5 + - pos: 71.5,8.5 parent: 6747 type: Transform - - uid: 16078 + - uid: 26507 components: - - pos: -11.5,-20.5 + - pos: 72.5,8.5 parent: 6747 type: Transform - - uid: 16079 + - uid: 26508 components: - - pos: -11.5,-21.5 + - pos: 73.5,8.5 parent: 6747 type: Transform - - uid: 16080 + - uid: 26509 components: - - pos: -11.5,-22.5 + - pos: 74.5,8.5 parent: 6747 type: Transform - - uid: 16081 + - uid: 26510 components: - - pos: -11.5,-23.5 + - pos: 67.5,8.5 parent: 6747 type: Transform - - uid: 16082 + - uid: 26511 components: - - pos: -11.5,-24.5 + - pos: 66.5,8.5 parent: 6747 type: Transform - - uid: 16083 + - uid: 26512 components: - - pos: -11.5,-25.5 + - pos: 65.5,8.5 parent: 6747 type: Transform - - uid: 16084 + - uid: 26513 components: - - pos: -11.5,-26.5 + - pos: 64.5,8.5 parent: 6747 type: Transform - - uid: 16085 + - uid: 26514 components: - - pos: -11.5,-27.5 + - pos: 63.5,8.5 parent: 6747 type: Transform - - uid: 16086 + - uid: 26515 components: - - pos: -11.5,-28.5 + - pos: 62.5,8.5 parent: 6747 type: Transform - - uid: 16087 + - uid: 26516 components: - - pos: -11.5,-29.5 + - pos: 61.5,8.5 parent: 6747 type: Transform - - uid: 16088 + - uid: 26517 components: - - pos: -11.5,-30.5 + - pos: 60.5,8.5 parent: 6747 type: Transform - - uid: 16089 + - uid: 26518 components: - - pos: -11.5,-31.5 + - pos: 59.5,8.5 parent: 6747 type: Transform - - uid: 16090 + - uid: 26519 components: - - pos: -11.5,-32.5 + - pos: 58.5,8.5 parent: 6747 type: Transform - - uid: 16091 + - uid: 26520 components: - - pos: -11.5,-33.5 + - pos: 57.5,8.5 parent: 6747 type: Transform - - uid: 16092 + - uid: 26521 components: - - pos: -11.5,-34.5 + - pos: 56.5,8.5 parent: 6747 type: Transform - - uid: 16093 + - uid: 26522 components: - - pos: -11.5,-35.5 + - pos: 55.5,8.5 parent: 6747 type: Transform - - uid: 16094 + - uid: 26523 components: - - pos: -11.5,-36.5 + - pos: 54.5,8.5 parent: 6747 type: Transform - - uid: 16095 + - uid: 26524 components: - - pos: -11.5,-37.5 + - pos: 54.5,7.5 parent: 6747 type: Transform - - uid: 16096 + - uid: 26525 components: - - pos: -11.5,-38.5 + - pos: 53.5,7.5 parent: 6747 type: Transform - - uid: 16097 + - uid: 26526 components: - - pos: -11.5,-39.5 + - pos: 52.5,7.5 parent: 6747 type: Transform - - uid: 16098 + - uid: 26527 components: - - pos: -12.5,-39.5 + - pos: 51.5,7.5 parent: 6747 type: Transform - - uid: 16099 + - uid: 26528 components: - - pos: -13.5,-39.5 + - pos: 51.5,8.5 parent: 6747 type: Transform - - uid: 16100 + - uid: 26531 components: - - pos: -14.5,-39.5 + - pos: 57.5,36.5 parent: 6747 type: Transform - - uid: 16101 + - uid: 26532 components: - - pos: -15.5,-39.5 + - pos: 57.5,37.5 parent: 6747 type: Transform - - uid: 16102 + - uid: 26533 components: - - pos: -16.5,-39.5 + - pos: 57.5,38.5 parent: 6747 type: Transform - - uid: 16103 + - uid: 26534 components: - - pos: -17.5,-39.5 + - pos: 57.5,35.5 parent: 6747 type: Transform - - uid: 16104 + - uid: 26535 components: - - pos: -18.5,-39.5 + - pos: 57.5,34.5 parent: 6747 type: Transform - - uid: 16105 + - uid: 26536 components: - - pos: -19.5,-39.5 + - pos: 57.5,33.5 parent: 6747 type: Transform - - uid: 16106 + - uid: 26537 components: - - pos: -20.5,-39.5 + - pos: 57.5,32.5 parent: 6747 type: Transform - - uid: 16107 + - uid: 26538 components: - - pos: -21.5,-39.5 + - pos: 57.5,31.5 parent: 6747 type: Transform - - uid: 16108 + - uid: 26539 components: - - pos: -22.5,-39.5 + - pos: 57.5,30.5 parent: 6747 type: Transform - - uid: 16109 + - uid: 26540 components: - - pos: -22.5,-40.5 + - pos: 57.5,29.5 parent: 6747 type: Transform - - uid: 16110 + - uid: 26541 components: - - pos: -22.5,-41.5 + - pos: 57.5,28.5 parent: 6747 type: Transform - - uid: 16111 + - uid: 26542 components: - - pos: -22.5,-42.5 + - pos: 57.5,27.5 parent: 6747 type: Transform - - uid: 16112 + - uid: 26543 components: - - pos: -23.5,-42.5 + - pos: 57.5,26.5 parent: 6747 type: Transform - - uid: 16113 + - uid: 26544 components: - - pos: -24.5,-42.5 + - pos: 56.5,26.5 parent: 6747 type: Transform - - uid: 16114 + - uid: 26545 components: - - pos: -25.5,-42.5 + - pos: 55.5,26.5 parent: 6747 type: Transform - - uid: 16115 + - uid: 26546 components: - - pos: -26.5,-42.5 + - pos: 55.5,27.5 parent: 6747 type: Transform - - uid: 16116 + - uid: 26547 components: - - pos: -27.5,-42.5 + - pos: 54.5,27.5 parent: 6747 type: Transform - - uid: 16117 + - uid: 26548 components: - - pos: -28.5,-42.5 + - pos: 53.5,27.5 parent: 6747 type: Transform - - uid: 16118 + - uid: 26549 components: - - pos: -29.5,-42.5 + - pos: 52.5,27.5 parent: 6747 type: Transform - - uid: 16119 + - uid: 26550 components: - - pos: -30.5,-42.5 + - pos: 51.5,27.5 parent: 6747 type: Transform - - uid: 16120 + - uid: 26551 components: - - pos: -31.5,-42.5 + - pos: 51.5,26.5 parent: 6747 type: Transform - - uid: 16121 + - uid: 26552 components: - - pos: -32.5,-42.5 + - pos: 51.5,25.5 parent: 6747 type: Transform - - uid: 16122 + - uid: 26553 components: - - pos: -33.5,-42.5 + - pos: 51.5,24.5 parent: 6747 type: Transform - - uid: 16123 + - uid: 26554 components: - - pos: -34.5,-42.5 + - pos: 52.5,24.5 parent: 6747 type: Transform - - uid: 16124 + - uid: 26555 components: - - pos: -35.5,-42.5 + - pos: 53.5,24.5 parent: 6747 type: Transform - - uid: 16125 + - uid: 26556 components: - - pos: -36.5,-42.5 + - pos: 54.5,24.5 parent: 6747 type: Transform - - uid: 16127 + - uid: 26557 components: - - pos: -36.5,-41.5 + - pos: 54.5,25.5 parent: 6747 type: Transform - - uid: 16128 + - uid: 26558 components: - - pos: -37.5,-41.5 + - pos: 58.5,26.5 parent: 6747 type: Transform - - uid: 16561 + - uid: 26559 components: - - pos: -17.5,4.5 + - pos: 55.5,25.5 parent: 6747 type: Transform - - uid: 16586 + - uid: 26560 components: - - pos: -15.5,4.5 + - pos: 59.5,26.5 parent: 6747 type: Transform - - uid: 16587 + - uid: 26561 components: - - pos: -16.5,4.5 + - pos: 60.5,26.5 parent: 6747 type: Transform - - uid: 16589 + - uid: 26562 components: - - pos: -18.5,4.5 + - pos: 61.5,26.5 parent: 6747 type: Transform - - uid: 16893 + - uid: 26563 components: - - pos: 20.5,3.5 + - pos: 62.5,26.5 parent: 6747 type: Transform - - uid: 17170 + - uid: 26564 components: - - pos: 20.5,5.5 + - pos: 63.5,26.5 parent: 6747 type: Transform - - uid: 17171 + - uid: 26565 components: - - pos: 13.5,3.5 + - pos: 64.5,26.5 parent: 6747 type: Transform - - uid: 17484 + - uid: 26566 components: - - pos: 13.5,4.5 + - pos: 65.5,26.5 parent: 6747 type: Transform - - uid: 17611 + - uid: 26567 components: - - pos: 29.5,20.5 + - pos: 66.5,26.5 parent: 6747 type: Transform - - uid: 17612 + - uid: 26568 components: - - pos: 30.5,20.5 + - pos: 67.5,26.5 parent: 6747 type: Transform - - uid: 17613 + - uid: 26569 components: - - pos: 31.5,20.5 + - pos: 67.5,27.5 parent: 6747 type: Transform - - uid: 17614 + - uid: 26570 components: - - pos: 32.5,20.5 + - pos: 67.5,28.5 parent: 6747 type: Transform - - uid: 17615 + - uid: 26571 components: - - pos: 32.5,21.5 + - pos: 67.5,29.5 parent: 6747 type: Transform - - uid: 17616 + - uid: 26572 components: - - pos: 32.5,22.5 + - pos: 67.5,30.5 parent: 6747 type: Transform - - uid: 17618 + - uid: 26573 components: - - pos: 30.5,22.5 + - pos: 67.5,31.5 parent: 6747 type: Transform - - uid: 17800 + - uid: 26574 components: - - pos: 26.5,15.5 + - pos: 67.5,32.5 parent: 6747 type: Transform - - uid: 17801 + - uid: 26575 components: - - pos: 26.5,14.5 + - pos: 67.5,33.5 parent: 6747 type: Transform - - uid: 17802 + - uid: 26576 components: - - pos: 26.5,13.5 + - pos: 67.5,34.5 parent: 6747 type: Transform - - uid: 17803 + - uid: 26577 components: - - pos: 26.5,12.5 + - pos: 67.5,35.5 parent: 6747 type: Transform - - uid: 17804 + - uid: 26578 components: - - pos: 26.5,11.5 + - pos: 67.5,36.5 parent: 6747 type: Transform - - uid: 17805 + - uid: 26579 components: - - pos: 26.5,10.5 + - pos: 67.5,37.5 parent: 6747 type: Transform - - uid: 17806 + - uid: 26580 components: - - pos: 26.5,9.5 + - pos: 63.5,27.5 parent: 6747 type: Transform - - uid: 17807 + - uid: 26581 components: - - pos: 26.5,8.5 + - pos: 63.5,28.5 parent: 6747 type: Transform - - uid: 17808 + - uid: 26582 components: - - pos: 26.5,7.5 + - pos: 63.5,29.5 parent: 6747 type: Transform - - uid: 17809 + - uid: 26583 components: - - pos: 26.5,6.5 + - pos: 63.5,30.5 parent: 6747 type: Transform - - uid: 17810 + - uid: 26584 components: - - pos: 25.5,6.5 + - pos: 62.5,30.5 parent: 6747 type: Transform - - uid: 17811 + - uid: 26585 components: - - pos: 24.5,6.5 + - pos: 61.5,30.5 parent: 6747 type: Transform - - uid: 17812 + - uid: 26586 components: - - pos: 23.5,6.5 + - pos: 61.5,31.5 parent: 6747 type: Transform - - uid: 17813 + - uid: 26587 components: - - pos: 22.5,6.5 + - pos: 61.5,32.5 parent: 6747 type: Transform - - uid: 17814 + - uid: 26588 components: - - pos: 21.5,6.5 + - pos: 61.5,33.5 parent: 6747 type: Transform - - uid: 17815 + - uid: 26589 components: - - pos: 20.5,6.5 + - pos: 61.5,34.5 parent: 6747 type: Transform - - uid: 17818 + - uid: 26590 components: - - pos: 12.5,4.5 + - pos: 69.5,26.5 parent: 6747 type: Transform - - uid: 17819 + - uid: 26591 components: - - pos: 19.5,3.5 + - pos: 70.5,26.5 parent: 6747 type: Transform - - uid: 17820 + - uid: 26601 components: - - pos: 27.5,6.5 + - pos: 64.5,14.5 parent: 6747 type: Transform - - uid: 17821 + - uid: 26602 components: - - pos: 28.5,6.5 + - pos: 65.5,14.5 parent: 6747 type: Transform - - uid: 17822 + - uid: 26603 components: - - pos: 29.5,6.5 + - pos: 66.5,14.5 parent: 6747 type: Transform - - uid: 17823 + - uid: 26604 components: - - pos: 30.5,6.5 + - pos: 67.5,14.5 parent: 6747 type: Transform - - uid: 17824 + - uid: 26605 components: - - pos: 31.5,6.5 + - pos: 67.5,13.5 parent: 6747 type: Transform - - uid: 17825 + - uid: 26606 components: - - pos: 32.5,6.5 + - pos: 67.5,12.5 parent: 6747 type: Transform - - uid: 17826 + - uid: 26607 components: - - pos: 33.5,6.5 + - pos: 67.5,15.5 parent: 6747 type: Transform - - uid: 17827 + - uid: 26608 components: - - pos: 34.5,6.5 + - pos: 67.5,16.5 parent: 6747 type: Transform - - uid: 17828 + - uid: 26609 components: - - pos: 35.5,6.5 + - pos: 67.5,17.5 parent: 6747 type: Transform - - uid: 17829 + - uid: 26610 components: - - pos: 35.5,5.5 + - pos: 68.5,17.5 parent: 6747 type: Transform - - uid: 17830 + - uid: 26611 components: - - pos: 35.5,4.5 + - pos: 69.5,17.5 parent: 6747 type: Transform - - uid: 17831 + - uid: 26612 components: - - pos: 36.5,4.5 + - pos: 70.5,17.5 parent: 6747 type: Transform - - uid: 17832 + - uid: 26613 components: - - pos: 37.5,4.5 + - pos: 71.5,17.5 parent: 6747 type: Transform - - uid: 17833 + - uid: 26614 components: - - pos: 38.5,4.5 + - pos: 71.5,18.5 parent: 6747 type: Transform - - uid: 17834 + - uid: 26615 components: - - pos: 39.5,4.5 + - pos: 71.5,19.5 parent: 6747 type: Transform - - uid: 17835 + - uid: 26616 components: - - pos: 40.5,4.5 + - pos: 71.5,20.5 parent: 6747 type: Transform - - uid: 17836 + - uid: 26617 components: - - pos: 41.5,4.5 + - pos: 71.5,21.5 parent: 6747 type: Transform - - uid: 17837 + - uid: 26618 components: - - pos: 42.5,4.5 + - pos: 71.5,22.5 parent: 6747 type: Transform - - uid: 17838 + - uid: 26619 components: - - pos: 43.5,4.5 + - pos: 66.5,12.5 parent: 6747 type: Transform - - uid: 17839 + - uid: 26620 components: - - pos: 44.5,4.5 + - pos: 68.5,12.5 parent: 6747 type: Transform - - uid: 17840 + - uid: 26621 components: - - pos: 45.5,4.5 + - pos: 69.5,12.5 parent: 6747 type: Transform - - uid: 17841 + - uid: 26622 components: - - pos: 46.5,4.5 + - pos: 70.5,12.5 parent: 6747 type: Transform - - uid: 17842 + - uid: 26623 components: - - pos: 47.5,4.5 + - pos: 71.5,12.5 parent: 6747 type: Transform - - uid: 17843 + - uid: 26624 components: - - pos: 48.5,4.5 + - pos: 72.5,12.5 parent: 6747 type: Transform - - uid: 17844 + - uid: 26625 components: - - pos: 49.5,4.5 + - pos: 73.5,12.5 parent: 6747 type: Transform - - uid: 17845 + - uid: 26626 components: - - pos: 50.5,4.5 + - pos: 73.5,13.5 parent: 6747 type: Transform - - uid: 17846 + - uid: 26627 components: - - pos: 50.5,3.5 + - pos: 73.5,14.5 parent: 6747 type: Transform - - uid: 17847 + - uid: 26628 components: - - pos: 50.5,2.5 + - pos: 73.5,15.5 parent: 6747 type: Transform - - uid: 17848 + - uid: 26629 components: - - pos: 50.5,1.5 + - pos: 73.5,16.5 parent: 6747 type: Transform - - uid: 17849 + - uid: 26630 components: - - pos: 50.5,0.5 + - pos: 66.5,16.5 parent: 6747 type: Transform - - uid: 17850 + - uid: 26631 components: - - pos: 50.5,-0.5 + - pos: 65.5,16.5 parent: 6747 type: Transform - - uid: 17851 + - uid: 26632 components: - - pos: 50.5,-1.5 + - pos: 64.5,16.5 parent: 6747 type: Transform - - uid: 17852 + - uid: 26633 components: - - pos: 50.5,-2.5 + - pos: 63.5,16.5 parent: 6747 type: Transform - - uid: 17853 + - uid: 26634 components: - - pos: 50.5,-3.5 + - pos: 62.5,16.5 parent: 6747 type: Transform - - uid: 17854 + - uid: 26635 components: - - pos: 51.5,-3.5 + - pos: 62.5,17.5 parent: 6747 type: Transform - - uid: 17855 + - uid: 26636 components: - - pos: 52.5,-3.5 + - pos: 62.5,18.5 parent: 6747 type: Transform - - uid: 17856 + - uid: 26637 components: - - pos: 53.5,-3.5 + - pos: 62.5,19.5 parent: 6747 type: Transform - - uid: 17857 + - uid: 26638 components: - - pos: 54.5,-3.5 + - pos: 62.5,20.5 parent: 6747 type: Transform - - uid: 17858 + - uid: 26639 components: - - pos: 54.5,-4.5 + - pos: 62.5,21.5 parent: 6747 type: Transform - - uid: 17859 + - uid: 26640 components: - - pos: 54.5,-5.5 + - pos: 62.5,22.5 parent: 6747 type: Transform - - uid: 17860 + - uid: 26641 components: - - pos: 54.5,-6.5 + - pos: 63.5,22.5 parent: 6747 type: Transform - - uid: 17861 + - uid: 26642 components: - - pos: 54.5,-7.5 + - pos: 61.5,20.5 parent: 6747 type: Transform - - uid: 17862 + - uid: 26643 components: - - pos: 54.5,-8.5 + - pos: 60.5,20.5 parent: 6747 type: Transform - - uid: 17863 + - uid: 26644 components: - - pos: 54.5,-9.5 + - pos: 59.5,20.5 parent: 6747 type: Transform - - uid: 17864 + - uid: 26645 components: - - pos: 54.5,-10.5 + - pos: 58.5,20.5 parent: 6747 type: Transform - - uid: 17865 + - uid: 26646 components: - - pos: 54.5,-11.5 + - pos: 58.5,19.5 parent: 6747 type: Transform - - uid: 17866 + - uid: 26647 components: - - pos: 54.5,-12.5 + - pos: 58.5,18.5 parent: 6747 type: Transform - - uid: 17867 + - uid: 26648 components: - - pos: 54.5,-13.5 + - pos: 58.5,17.5 parent: 6747 type: Transform - - uid: 17868 + - uid: 26649 components: - - pos: 54.5,-14.5 + - pos: 58.5,16.5 parent: 6747 type: Transform - - uid: 17869 + - uid: 26668 components: - - pos: 54.5,-15.5 + - pos: 28.5,20.5 parent: 6747 type: Transform - - uid: 17870 + - uid: 26669 components: - - pos: 54.5,-16.5 + - pos: 27.5,20.5 parent: 6747 type: Transform - - uid: 17871 + - uid: 26670 components: - - pos: 55.5,-16.5 + - pos: 26.5,20.5 parent: 6747 type: Transform - - uid: 17872 + - uid: 26671 components: - - pos: 56.5,-16.5 + - pos: 25.5,20.5 parent: 6747 type: Transform - - uid: 17873 + - uid: 26672 components: - - pos: 57.5,-16.5 + - pos: 24.5,20.5 parent: 6747 type: Transform - - uid: 17874 + - uid: 26673 components: - - pos: 58.5,-16.5 + - pos: 23.5,20.5 parent: 6747 type: Transform - - uid: 17875 + - uid: 26674 components: - - pos: 58.5,-15.5 + - pos: 23.5,21.5 parent: 6747 type: Transform - - uid: 17876 + - uid: 26675 components: - - pos: 58.5,-17.5 + - pos: 22.5,21.5 parent: 6747 type: Transform - - uid: 17877 + - uid: 26676 components: - - pos: 19.5,2.5 + - pos: 23.5,19.5 parent: 6747 type: Transform - - uid: 17878 + - uid: 26677 components: - - pos: 18.5,2.5 + - pos: 23.5,18.5 parent: 6747 type: Transform - - uid: 17879 + - uid: 26678 components: - - pos: 17.5,2.5 + - pos: 23.5,17.5 parent: 6747 type: Transform - - uid: 17880 + - uid: 26679 components: - - pos: 16.5,2.5 + - pos: 23.5,16.5 parent: 6747 type: Transform - - uid: 17881 + - uid: 26680 components: - - pos: 15.5,2.5 + - pos: 22.5,18.5 parent: 6747 type: Transform - - uid: 17882 + - uid: 26681 components: - - pos: 14.5,2.5 + - pos: 21.5,18.5 parent: 6747 type: Transform - - uid: 17883 + - uid: 26682 components: - - pos: 13.5,2.5 + - pos: 22.5,16.5 parent: 6747 type: Transform - - uid: 17884 + - uid: 26683 components: - - pos: 12.5,2.5 + - pos: 22.5,15.5 parent: 6747 type: Transform - - uid: 17885 + - uid: 26684 components: - - pos: 11.5,2.5 + - pos: 22.5,14.5 parent: 6747 type: Transform - - uid: 17892 + - uid: 26685 components: - - pos: 3.5,-11.5 + - pos: 22.5,13.5 parent: 6747 type: Transform - - uid: 17893 + - uid: 26686 components: - - pos: 3.5,-10.5 + - pos: 21.5,14.5 parent: 6747 type: Transform - - uid: 17894 + - uid: 26687 components: - - pos: 3.5,-9.5 + - pos: 20.5,14.5 parent: 6747 type: Transform - - uid: 17895 + - uid: 26688 components: - - pos: 4.5,-9.5 + - pos: 19.5,14.5 parent: 6747 type: Transform - - uid: 17896 + - uid: 26689 components: - - pos: 5.5,-9.5 + - pos: 18.5,14.5 parent: 6747 type: Transform - - uid: 17897 + - uid: 26690 components: - - pos: 6.5,-9.5 + - pos: 17.5,14.5 parent: 6747 type: Transform - - uid: 17898 + - uid: 26691 components: - - pos: 7.5,-9.5 + - pos: 16.5,14.5 parent: 6747 type: Transform - - uid: 17899 + - uid: 26692 components: - - pos: 8.5,-9.5 + - pos: 24.5,11.5 parent: 6747 type: Transform - - uid: 17900 + - uid: 26693 components: - - pos: 9.5,-9.5 + - pos: 25.5,11.5 parent: 6747 type: Transform - - uid: 17901 + - uid: 26694 components: - - pos: 10.5,-9.5 + - pos: 24.5,16.5 parent: 6747 type: Transform - - uid: 17902 + - uid: 26695 components: - - pos: 11.5,-9.5 + - pos: 25.5,16.5 parent: 6747 type: Transform - - uid: 17903 + - uid: 26696 components: - - pos: 12.5,-9.5 + - pos: 26.5,16.5 parent: 6747 type: Transform - - uid: 17904 + - uid: 26697 components: - - pos: 13.5,-9.5 + - pos: 27.5,16.5 parent: 6747 type: Transform - - uid: 17905 + - uid: 26698 components: - - pos: 14.5,-9.5 + - pos: 28.5,16.5 parent: 6747 type: Transform - - uid: 17906 + - uid: 26699 components: - - pos: 15.5,-9.5 + - pos: 29.5,16.5 parent: 6747 type: Transform - - uid: 17907 + - uid: 26700 components: - - pos: 16.5,-9.5 + - pos: 29.5,17.5 parent: 6747 type: Transform - - uid: 17908 + - uid: 26701 components: - - pos: 17.5,-9.5 + - pos: 30.5,17.5 parent: 6747 type: Transform - - uid: 17909 + - uid: 26702 components: - - pos: 18.5,-9.5 + - pos: 31.5,17.5 parent: 6747 type: Transform - - uid: 17910 + - uid: 26703 components: - - pos: 19.5,-9.5 + - pos: 32.5,17.5 parent: 6747 type: Transform - - uid: 17911 + - uid: 26704 components: - - pos: 20.5,-9.5 + - pos: 33.5,17.5 parent: 6747 type: Transform - - uid: 17912 + - uid: 26705 components: - - pos: 21.5,-9.5 + - pos: 33.5,16.5 parent: 6747 type: Transform - - uid: 17913 + - uid: 26706 components: - - pos: 22.5,-9.5 + - pos: 33.5,15.5 parent: 6747 type: Transform - - uid: 17914 + - uid: 26707 components: - - pos: 23.5,-9.5 + - pos: 33.5,14.5 parent: 6747 type: Transform - - uid: 17915 + - uid: 26708 components: - - pos: 24.5,-9.5 + - pos: 34.5,14.5 parent: 6747 type: Transform - - uid: 17916 + - uid: 26709 components: - - pos: 25.5,-9.5 + - pos: 32.5,14.5 parent: 6747 type: Transform - - uid: 17917 + - uid: 26710 components: - - pos: 25.5,-8.5 + - pos: 31.5,14.5 parent: 6747 type: Transform - - uid: 17918 + - uid: 26711 components: - - pos: 25.5,-7.5 + - pos: 17.5,16.5 parent: 6747 type: Transform - - uid: 17919 + - uid: 26712 components: - - pos: 25.5,-6.5 + - pos: 17.5,17.5 parent: 6747 type: Transform - - uid: 17920 + - uid: 26713 components: - - pos: 25.5,-5.5 + - pos: 17.5,18.5 parent: 6747 type: Transform - - uid: 17921 + - uid: 26714 components: - - pos: 25.5,-4.5 + - pos: 16.5,18.5 parent: 6747 type: Transform - - uid: 17922 + - uid: 26715 components: - - pos: 25.5,-3.5 + - pos: 15.5,18.5 parent: 6747 type: Transform - - uid: 17923 + - uid: 26716 components: - - pos: 25.5,-2.5 + - pos: 15.5,17.5 parent: 6747 type: Transform - - uid: 17924 + - uid: 26717 components: - - pos: 25.5,-1.5 + - pos: 16.5,19.5 parent: 6747 type: Transform - - uid: 17925 + - uid: 26718 components: - - pos: 25.5,-0.5 + - pos: 16.5,20.5 parent: 6747 type: Transform - - uid: 17926 + - uid: 26719 components: - - pos: 25.5,0.5 + - pos: 16.5,21.5 parent: 6747 type: Transform - - uid: 17927 + - uid: 26720 components: - - pos: 25.5,1.5 + - pos: 15.5,21.5 parent: 6747 type: Transform - - uid: 17928 + - uid: 26721 components: - - pos: 25.5,2.5 + - pos: 14.5,21.5 parent: 6747 type: Transform - - uid: 17929 + - uid: 26722 components: - - pos: 25.5,3.5 + - pos: 13.5,21.5 parent: 6747 type: Transform - - uid: 17930 + - uid: 26723 components: - - pos: 25.5,4.5 + - pos: 12.5,21.5 parent: 6747 type: Transform - - uid: 17931 + - uid: 26724 components: - - pos: 25.5,5.5 + - pos: 11.5,21.5 parent: 6747 type: Transform - - uid: 17932 + - uid: 26725 components: - - pos: 54.5,-17.5 + - pos: 10.5,21.5 parent: 6747 type: Transform - - uid: 17933 + - uid: 26726 components: - - pos: 54.5,-18.5 + - pos: 13.5,22.5 parent: 6747 type: Transform - - uid: 17934 + - uid: 26727 components: - - pos: 54.5,-19.5 + - pos: 13.5,23.5 parent: 6747 type: Transform - - uid: 17935 + - uid: 26728 components: - - pos: 54.5,-20.5 + - pos: 13.5,24.5 parent: 6747 type: Transform - - uid: 17936 + - uid: 26729 components: - - pos: 54.5,-21.5 + - pos: 13.5,25.5 parent: 6747 type: Transform - - uid: 17937 + - uid: 26730 components: - - pos: 53.5,-21.5 + - pos: 14.5,25.5 parent: 6747 type: Transform - - uid: 17938 + - uid: 26731 components: - - pos: 52.5,-21.5 + - pos: 15.5,25.5 parent: 6747 type: Transform - - uid: 17939 + - uid: 26732 components: - - pos: 51.5,-21.5 + - pos: 16.5,25.5 parent: 6747 type: Transform - - uid: 17940 + - uid: 26733 components: - - pos: 51.5,-22.5 + - pos: 17.5,25.5 parent: 6747 type: Transform - - uid: 17941 + - uid: 26734 components: - - pos: 51.5,-23.5 + - pos: 18.5,25.5 parent: 6747 type: Transform - - uid: 17942 + - uid: 26735 components: - - pos: 51.5,-24.5 + - pos: 11.5,27.5 parent: 6747 type: Transform - - uid: 17943 + - uid: 26736 components: - - pos: 51.5,-25.5 + - pos: 10.5,27.5 parent: 6747 type: Transform - - uid: 17944 + - uid: 26737 components: - - pos: 51.5,-26.5 + - pos: 9.5,27.5 parent: 6747 type: Transform - - uid: 17945 + - uid: 26738 components: - - pos: 51.5,-27.5 + - pos: 8.5,27.5 parent: 6747 type: Transform - - uid: 17946 + - uid: 26739 components: - - pos: 51.5,-28.5 + - pos: 7.5,27.5 parent: 6747 type: Transform - - uid: 17947 + - uid: 26740 components: - - pos: 51.5,-29.5 + - pos: 6.5,27.5 parent: 6747 type: Transform - - uid: 17948 + - uid: 26741 components: - - pos: 52.5,-29.5 + - pos: 5.5,27.5 parent: 6747 type: Transform - - uid: 17949 + - uid: 26742 components: - - pos: 52.5,-30.5 + - pos: 4.5,27.5 parent: 6747 type: Transform - - uid: 17950 + - uid: 26743 components: - - pos: 52.5,-31.5 + - pos: 3.5,27.5 parent: 6747 type: Transform - - uid: 17951 + - uid: 26744 components: - - pos: 52.5,-32.5 + - pos: 3.5,26.5 parent: 6747 type: Transform - - uid: 17952 + - uid: 26745 components: - - pos: 52.5,-33.5 + - pos: 3.5,25.5 parent: 6747 type: Transform - - uid: 17953 + - uid: 26746 components: - - pos: 52.5,-34.5 + - pos: 3.5,24.5 parent: 6747 type: Transform - - uid: 17954 + - uid: 26747 components: - - pos: 52.5,-35.5 + - pos: 7.5,26.5 parent: 6747 type: Transform - - uid: 17955 + - uid: 26748 components: - - pos: 52.5,-36.5 + - pos: 7.5,25.5 parent: 6747 type: Transform - - uid: 17956 + - uid: 26749 components: - - pos: 52.5,-37.5 + - pos: 7.5,24.5 parent: 6747 type: Transform - - uid: 17957 + - uid: 26750 components: - - pos: 53.5,-37.5 + - pos: 5.5,28.5 parent: 6747 type: Transform - - uid: 17958 + - uid: 26751 components: - - pos: 53.5,-38.5 + - pos: 5.5,29.5 parent: 6747 type: Transform - - uid: 17959 + - uid: 26752 components: - - pos: 53.5,-39.5 + - pos: 4.5,29.5 parent: 6747 type: Transform - - uid: 17960 + - uid: 26753 components: - - pos: 51.5,-37.5 + - pos: 6.5,29.5 parent: 6747 type: Transform - - uid: 17961 + - uid: 26792 components: - - pos: 51.5,-38.5 + - pos: 25.5,34.5 parent: 6747 type: Transform - - uid: 17962 + - uid: 26793 components: - - pos: 50.5,-38.5 + - pos: 24.5,34.5 parent: 6747 type: Transform - - uid: 17963 + - uid: 26794 components: - - pos: 49.5,-38.5 + - pos: 23.5,34.5 parent: 6747 type: Transform - - uid: 17964 + - uid: 26795 components: - - pos: 48.5,-38.5 + - pos: 22.5,34.5 parent: 6747 type: Transform - - uid: 17965 + - uid: 26796 components: - - pos: 47.5,-38.5 + - pos: 21.5,34.5 parent: 6747 type: Transform - - uid: 17966 + - uid: 26797 components: - - pos: 46.5,-38.5 + - pos: 20.5,34.5 parent: 6747 type: Transform - - uid: 17967 + - uid: 26798 components: - - pos: 45.5,-38.5 + - pos: 19.5,34.5 parent: 6747 type: Transform - - uid: 17968 + - uid: 26799 components: - - pos: 45.5,-39.5 + - pos: 18.5,34.5 parent: 6747 type: Transform - - uid: 17969 + - uid: 26800 components: - - pos: 44.5,-39.5 + - pos: 17.5,34.5 parent: 6747 type: Transform - - uid: 17970 + - uid: 26801 components: - - pos: 44.5,-40.5 + - pos: 16.5,34.5 parent: 6747 type: Transform - - uid: 17974 + - uid: 26802 components: - - pos: 43.5,-43.5 + - pos: 15.5,34.5 parent: 6747 type: Transform - - uid: 17975 + - uid: 26803 components: - - pos: 42.5,-43.5 + - pos: 14.5,34.5 parent: 6747 type: Transform - - uid: 17976 + - uid: 26804 components: - - pos: 41.5,-43.5 + - pos: 13.5,34.5 parent: 6747 type: Transform - - uid: 17977 + - uid: 26805 components: - - pos: 40.5,-43.5 + - pos: 12.5,34.5 parent: 6747 type: Transform - - uid: 17978 + - uid: 26806 components: - - pos: 39.5,-43.5 + - pos: 20.5,30.5 parent: 6747 type: Transform - - uid: 17979 + - uid: 26807 components: - - pos: 38.5,-43.5 + - pos: 20.5,31.5 parent: 6747 type: Transform - - uid: 17980 + - uid: 26808 components: - - pos: 37.5,-43.5 + - pos: 19.5,31.5 parent: 6747 type: Transform - - uid: 17981 + - uid: 26809 components: - - pos: 36.5,-43.5 + - pos: 18.5,31.5 parent: 6747 type: Transform - - uid: 17982 + - uid: 26810 components: - - pos: 35.5,-43.5 + - pos: 17.5,31.5 parent: 6747 type: Transform - - uid: 17983 + - uid: 26811 components: - - pos: 35.5,-44.5 + - pos: 16.5,31.5 parent: 6747 type: Transform - - uid: 17984 + - uid: 26812 components: - - pos: 35.5,-45.5 + - pos: 15.5,31.5 parent: 6747 type: Transform - - uid: 17985 + - uid: 26813 components: - - pos: 35.5,-46.5 + - pos: 14.5,31.5 parent: 6747 type: Transform - - uid: 17986 + - uid: 26814 components: - - pos: 35.5,-47.5 + - pos: 13.5,31.5 parent: 6747 type: Transform - - uid: 17987 + - uid: 26815 components: - - pos: 36.5,-47.5 + - pos: 12.5,31.5 parent: 6747 type: Transform - - uid: 17988 + - uid: 26816 components: - - pos: 37.5,-47.5 + - pos: 18.5,30.5 parent: 6747 type: Transform - - uid: 17989 + - uid: 26817 components: - - pos: 38.5,-47.5 + - pos: 18.5,29.5 parent: 6747 type: Transform - - uid: 17990 + - uid: 26818 components: - - pos: 39.5,-47.5 + - pos: 17.5,29.5 parent: 6747 type: Transform - - uid: 17991 + - uid: 26865 components: - - pos: 40.5,-47.5 + - pos: -23.5,1.5 parent: 6747 type: Transform - - uid: 17992 + - uid: 26866 components: - - pos: 41.5,-47.5 + - pos: -23.5,2.5 parent: 6747 type: Transform - - uid: 17993 + - uid: 26867 components: - - pos: 42.5,-47.5 + - pos: -23.5,3.5 parent: 6747 type: Transform - - uid: 17994 + - uid: 26868 components: - - pos: 43.5,-47.5 + - pos: -23.5,4.5 parent: 6747 type: Transform - - uid: 17995 + - uid: 26869 components: - - pos: 44.5,-47.5 + - pos: -23.5,5.5 parent: 6747 type: Transform - - uid: 17996 + - uid: 26870 components: - - pos: 44.5,-48.5 + - pos: -23.5,6.5 parent: 6747 type: Transform - - uid: 17997 + - uid: 26871 components: - - pos: 44.5,-49.5 + - pos: -23.5,7.5 parent: 6747 type: Transform - - uid: 17998 + - uid: 26872 components: - - pos: 44.5,-50.5 + - pos: -23.5,8.5 parent: 6747 type: Transform - - uid: 17999 + - uid: 26873 components: - - pos: 44.5,-51.5 + - pos: -19.5,0.5 parent: 6747 type: Transform - - uid: 18000 + - uid: 26874 components: - - pos: 44.5,-52.5 + - pos: -19.5,1.5 parent: 6747 type: Transform - - uid: 18001 + - uid: 26875 components: - - pos: 44.5,-53.5 + - pos: -19.5,2.5 parent: 6747 type: Transform - - uid: 18002 + - uid: 26876 components: - - pos: 43.5,-53.5 + - pos: -19.5,3.5 parent: 6747 type: Transform - - uid: 18003 + - uid: 26877 components: - - pos: 42.5,-53.5 + - pos: -19.5,4.5 parent: 6747 type: Transform - - uid: 18004 + - uid: 26878 components: - - pos: 41.5,-53.5 + - pos: -19.5,5.5 parent: 6747 type: Transform - - uid: 18005 + - uid: 26879 components: - - pos: 40.5,-53.5 + - pos: -18.5,5.5 parent: 6747 type: Transform - - uid: 18006 + - uid: 26880 components: - - pos: 39.5,-53.5 + - pos: -17.5,5.5 parent: 6747 type: Transform - - uid: 18007 + - uid: 26881 components: - - pos: 38.5,-53.5 + - pos: -16.5,5.5 parent: 6747 type: Transform - - uid: 18008 + - uid: 26934 components: - - pos: 37.5,-53.5 + - pos: -18.5,-39.5 parent: 6747 type: Transform - - uid: 18009 + - uid: 26935 components: - - pos: 37.5,-54.5 + - pos: -17.5,-39.5 parent: 6747 type: Transform - - uid: 18010 + - uid: 26936 components: - - pos: 37.5,-55.5 + - pos: 12.5,-22.5 parent: 6747 type: Transform - - uid: 18011 + - uid: 26937 components: - - pos: 37.5,-56.5 + - pos: 12.5,-21.5 parent: 6747 type: Transform - - uid: 18012 + - uid: 26938 components: - - pos: 37.5,-57.5 + - pos: 12.5,-20.5 parent: 6747 type: Transform - - uid: 18013 + - uid: 26939 components: - - pos: 37.5,-58.5 + - pos: 12.5,-19.5 parent: 6747 type: Transform - - uid: 18014 + - uid: 26940 components: - - pos: 37.5,-59.5 + - pos: 12.5,-18.5 parent: 6747 type: Transform - - uid: 18015 + - uid: 27039 components: - - pos: 37.5,-60.5 + - pos: 2.5,-71.5 parent: 6747 type: Transform - - uid: 18016 + - uid: 27040 components: - - pos: 37.5,-61.5 + - pos: 2.5,-70.5 parent: 6747 type: Transform - - uid: 18017 + - uid: 27041 components: - - pos: 36.5,-61.5 + - pos: 2.5,-69.5 parent: 6747 type: Transform - - uid: 18018 +- proto: CableApcStack + entities: + - uid: 4143 components: - - pos: 35.5,-61.5 + - rot: -1.5707963267948966 rad + pos: -21.09296,-55.44727 parent: 6747 type: Transform - - uid: 18019 + - uid: 5081 components: - - pos: 35.5,-62.5 + - pos: 23.46833,-66.94682 parent: 6747 type: Transform - - uid: 18020 + - uid: 7852 components: - - pos: 35.5,-63.5 + - pos: 73.495026,21.128078 parent: 6747 type: Transform - - uid: 18021 + - uid: 10548 components: - - pos: 34.5,-63.5 + - pos: 56.508034,2.519523 parent: 6747 type: Transform - - uid: 18022 +- proto: CableApcStack1 + entities: + - uid: 901 components: - - pos: 33.5,-63.5 + - rot: -1.5707963267948966 rad + pos: 29.288647,34.525753 parent: 6747 type: Transform - - uid: 18023 + - uid: 5112 components: - - pos: 32.5,-63.5 + - rot: -1.5707963267948966 rad + pos: 23.418564,-66.29782 parent: 6747 type: Transform - - uid: 18024 + - uid: 5273 components: - - pos: 31.5,-63.5 + - pos: 23.387314,-65.943405 parent: 6747 type: Transform - - uid: 18025 + - uid: 7712 components: - - pos: 31.5,-64.5 + - pos: 29.384521,34.63739 parent: 6747 type: Transform - - uid: 18026 + - count: 2 + type: Stack + - uid: 10134 components: - - pos: 31.5,-65.5 + - pos: -48.443363,-74.889786 parent: 6747 type: Transform - - uid: 18027 + - uid: 10135 components: - - pos: 31.5,-66.5 + - pos: -48.64128,-76.85991 parent: 6747 type: Transform - - uid: 18028 + - uid: 10136 components: - - pos: 31.5,-67.5 + - rot: -1.5707963267948966 rad + pos: -48.26628,-76.64101 parent: 6747 type: Transform - - uid: 18029 + - uid: 17046 components: - - pos: 31.5,-68.5 + - pos: 53.75027,24.99081 parent: 6747 type: Transform - - uid: 18030 + - uid: 17047 components: - - pos: 31.5,-69.5 + - rot: 3.141592653589793 rad + pos: 53.677357,24.95954 parent: 6747 type: Transform - - uid: 18031 + - uid: 17056 components: - - pos: 31.5,-70.5 + - rot: 1.5707963267948966 rad + pos: 55.614857,23.969269 parent: 6747 type: Transform - - uid: 18032 + - uid: 22479 components: - - pos: 31.5,-71.5 + - rot: -1.5707963267948966 rad + pos: 59.28278,-13.162068 parent: 6747 type: Transform - - uid: 18033 + - uid: 22480 components: - - pos: 31.5,-72.5 + - pos: 59.084538,-13.600968 parent: 6747 type: Transform - - uid: 18034 + - uid: 22481 components: - - pos: 30.5,-72.5 + - pos: 59.05171,-13.170659 parent: 6747 type: Transform - - uid: 18035 + - count: 2 + type: Stack + - uid: 22482 components: - - pos: 29.5,-72.5 + - rot: -1.5707963267948966 rad + pos: 59.2932,-13.724959 parent: 6747 type: Transform - - uid: 18036 + - uid: 22525 components: - - pos: 28.5,-72.5 + - pos: -15.626692,12.792867 parent: 6747 type: Transform - - uid: 18037 + - uid: 22526 components: - - pos: 27.5,-72.5 + - rot: -1.5707963267948966 rad + pos: -15.720442,12.56354 parent: 6747 type: Transform - - uid: 18038 + - uid: 22527 components: - - pos: 26.5,-72.5 + - rot: -1.5707963267948966 rad + pos: -15.710025,12.792867 parent: 6747 type: Transform - - uid: 18039 + - uid: 23904 components: - - pos: 25.5,-72.5 + - pos: 23.251896,-65.70366 parent: 6747 type: Transform - - uid: 18040 +- proto: CableApcStack10 + entities: + - uid: 15924 components: - - pos: 24.5,-72.5 + - pos: -17.528885,-13.314248 parent: 6747 type: Transform - - uid: 18041 +- proto: CableHV + entities: + - uid: 239 components: - - pos: 23.5,-72.5 + - pos: -7.5,6.5 parent: 6747 type: Transform - - uid: 18042 + - uid: 583 components: - - pos: 22.5,-72.5 + - pos: -43.5,-19.5 parent: 6747 type: Transform - - uid: 18043 + - uid: 868 components: - - pos: 21.5,-72.5 + - pos: 71.5,14.5 parent: 6747 type: Transform - - uid: 18044 + - uid: 959 components: - - pos: 20.5,-72.5 + - pos: 59.5,15.5 parent: 6747 type: Transform - - uid: 18045 + - uid: 1203 components: - - pos: 19.5,-72.5 + - pos: -34.5,-48.5 parent: 6747 type: Transform - - uid: 18046 + - uid: 2788 components: - - pos: 18.5,-72.5 + - pos: -42.5,-15.5 parent: 6747 type: Transform - - uid: 18047 + - uid: 2878 components: - - pos: 18.5,-73.5 + - pos: -42.5,-16.5 parent: 6747 type: Transform - - uid: 18048 + - uid: 2950 components: - - pos: 18.5,-74.5 + - pos: -43.5,-20.5 parent: 6747 type: Transform - - uid: 18049 + - uid: 2969 components: - - pos: 18.5,-75.5 + - pos: -43.5,-18.5 parent: 6747 type: Transform - - uid: 18053 + - uid: 2989 components: - - pos: 34.5,-47.5 + - pos: -42.5,-20.5 parent: 6747 type: Transform - - uid: 18054 + - uid: 2998 components: - - pos: 33.5,-47.5 + - pos: -42.5,-18.5 parent: 6747 type: Transform - - uid: 18055 + - uid: 3064 components: - - pos: 32.5,-47.5 + - pos: -47.5,-41.5 parent: 6747 type: Transform - - uid: 18056 + - uid: 4044 components: - - pos: 31.5,-47.5 + - pos: -39.5,-41.5 parent: 6747 type: Transform - - uid: 18057 + - uid: 4379 components: - - pos: 30.5,-47.5 + - pos: 38.5,63.5 parent: 6747 type: Transform - - uid: 18058 + - uid: 4611 components: - - pos: 29.5,-47.5 + - pos: -40.5,-41.5 parent: 6747 type: Transform - - uid: 18059 + - uid: 4875 components: - - pos: 28.5,-47.5 + - pos: 20.5,4.5 parent: 6747 type: Transform - - uid: 18060 + - uid: 5278 components: - - pos: 27.5,-47.5 + - pos: 18.5,-76.5 parent: 6747 type: Transform - - uid: 18061 + - uid: 5279 components: - - pos: 26.5,-47.5 + - pos: 19.5,-76.5 parent: 6747 type: Transform - - uid: 18062 + - uid: 5386 components: - - pos: 25.5,-47.5 + - pos: 47.5,63.5 parent: 6747 type: Transform - - uid: 18063 + - uid: 6063 components: - - pos: 24.5,-47.5 + - pos: 36.5,63.5 parent: 6747 type: Transform - - uid: 18064 + - uid: 6073 components: - - pos: 23.5,-47.5 + - pos: 37.5,63.5 parent: 6747 type: Transform - - uid: 18065 + - uid: 6077 components: - - pos: 22.5,-47.5 + - pos: 38.5,64.5 parent: 6747 type: Transform - - uid: 18066 + - uid: 6088 components: - - pos: 21.5,-47.5 + - pos: 39.5,64.5 parent: 6747 type: Transform - - uid: 18067 + - uid: 6284 components: - - pos: 20.5,-47.5 + - pos: 68.5,-7.5 parent: 6747 type: Transform - - uid: 18068 + - uid: 6285 components: - - pos: 19.5,-47.5 + - pos: 69.5,-7.5 parent: 6747 type: Transform - - uid: 18069 + - uid: 6286 components: - - pos: 18.5,-47.5 + - pos: 70.5,-7.5 parent: 6747 type: Transform - - uid: 18070 + - uid: 6287 components: - - pos: 17.5,-47.5 + - pos: 71.5,-7.5 parent: 6747 type: Transform - - uid: 18071 + - uid: 6288 components: - - pos: 16.5,-47.5 + - pos: 72.5,-7.5 parent: 6747 type: Transform - - uid: 18072 + - uid: 6289 components: - - pos: 15.5,-47.5 + - pos: 73.5,-7.5 parent: 6747 type: Transform - - uid: 18073 + - uid: 6290 components: - - pos: 14.5,-47.5 + - pos: 73.5,-6.5 parent: 6747 type: Transform - - uid: 18074 + - uid: 6849 components: - - pos: 13.5,-47.5 + - pos: 40.5,64.5 parent: 6747 type: Transform - - uid: 18075 + - uid: 7079 components: - - pos: 12.5,-47.5 + - pos: 41.5,64.5 parent: 6747 type: Transform - - uid: 18076 + - uid: 7557 components: - - pos: 11.5,-47.5 + - pos: -49.5,-42.5 parent: 6747 type: Transform - - uid: 18077 + - uid: 7663 components: - - pos: 10.5,-47.5 + - pos: 42.5,64.5 parent: 6747 type: Transform - - uid: 18078 + - uid: 7679 components: - - pos: 9.5,-47.5 + - pos: 70.5,14.5 parent: 6747 type: Transform - - uid: 18079 + - uid: 7680 components: - - pos: 8.5,-47.5 + - pos: 59.5,28.5 parent: 6747 type: Transform - - uid: 18080 + - uid: 7752 components: - - pos: 7.5,-47.5 + - pos: 59.5,29.5 parent: 6747 type: Transform - - uid: 18081 + - uid: 8110 components: - - pos: 6.5,-47.5 + - pos: 58.5,16.5 parent: 6747 type: Transform - - uid: 18082 + - uid: 8112 components: - - pos: 5.5,-47.5 + - pos: 58.5,17.5 parent: 6747 type: Transform - - uid: 18083 + - uid: 8161 components: - - pos: 4.5,-47.5 + - pos: 59.5,19.5 parent: 6747 type: Transform - - uid: 18084 + - uid: 8266 components: - - pos: 3.5,-47.5 + - pos: 58.5,15.5 parent: 6747 type: Transform - - uid: 18085 + - uid: 8269 components: - - pos: 2.5,-47.5 + - pos: 58.5,18.5 parent: 6747 type: Transform - - uid: 18086 + - uid: 8281 components: - - pos: 1.5,-47.5 + - pos: 60.5,15.5 parent: 6747 type: Transform - - uid: 18087 + - uid: 8499 components: - - pos: 1.5,-48.5 + - pos: 43.5,64.5 parent: 6747 type: Transform - - uid: 18088 + - uid: 8500 components: - - pos: 1.5,-49.5 + - pos: 38.5,62.5 parent: 6747 type: Transform - - uid: 18089 + - uid: 8734 components: - - pos: 1.5,-50.5 + - pos: 62.5,23.5 parent: 6747 type: Transform - - uid: 18090 + - uid: 10462 components: - - pos: 1.5,-51.5 + - pos: -41.5,-41.5 parent: 6747 type: Transform - - uid: 18091 + - uid: 10471 components: - - pos: 0.5,-51.5 + - pos: -45.5,-41.5 parent: 6747 type: Transform - - uid: 18092 + - uid: 10472 components: - - pos: -0.5,-51.5 + - pos: -49.5,-41.5 parent: 6747 type: Transform - - uid: 18093 + - uid: 10473 components: - - pos: -1.5,-51.5 + - pos: -49.5,-39.5 parent: 6747 type: Transform - - uid: 18094 + - uid: 10484 components: - - pos: -2.5,-51.5 + - pos: -46.5,-41.5 parent: 6747 type: Transform - - uid: 18095 + - uid: 10491 components: - - pos: -3.5,-51.5 + - pos: -48.5,-41.5 parent: 6747 type: Transform - - uid: 18096 + - uid: 11137 components: - - pos: -3.5,-52.5 + - pos: 59.5,16.5 parent: 6747 type: Transform - - uid: 18097 + - uid: 11462 components: - - pos: -3.5,-53.5 + - pos: 34.5,57.5 parent: 6747 type: Transform - - uid: 18098 + - uid: 11465 components: - - pos: -3.5,-54.5 + - pos: 39.5,62.5 parent: 6747 type: Transform - - uid: 18099 + - uid: 11468 components: - - pos: -3.5,-55.5 + - pos: 40.5,62.5 parent: 6747 type: Transform - - uid: 18100 + - uid: 11471 components: - - pos: -3.5,-56.5 + - pos: 42.5,62.5 parent: 6747 type: Transform - - uid: 18101 + - uid: 11474 components: - - pos: -3.5,-57.5 + - pos: 43.5,63.5 parent: 6747 type: Transform - - uid: 18102 + - uid: 11495 components: - - pos: -3.5,-58.5 + - pos: 46.5,63.5 parent: 6747 type: Transform - - uid: 18103 + - uid: 11497 components: - - pos: -3.5,-59.5 + - pos: 34.5,63.5 parent: 6747 type: Transform - - uid: 18104 + - uid: 11498 components: - - pos: -3.5,-60.5 + - pos: 35.5,67.5 parent: 6747 type: Transform - - uid: 18105 + - uid: 11500 components: - - pos: -3.5,-61.5 + - pos: 37.5,67.5 parent: 6747 type: Transform - - uid: 18106 + - uid: 11510 components: - - pos: -3.5,-62.5 + - pos: 43.5,67.5 parent: 6747 type: Transform - - uid: 18107 + - uid: 11513 components: - - pos: -3.5,-63.5 + - pos: 60.5,17.5 parent: 6747 type: Transform - - uid: 18108 + - uid: 11523 components: - - pos: -3.5,-64.5 + - pos: 60.5,16.5 parent: 6747 type: Transform - - uid: 18109 + - uid: 11547 components: - - pos: -3.5,-65.5 + - pos: 6.5,-15.5 parent: 6747 type: Transform - - uid: 18110 + - uid: 11548 components: - - pos: -3.5,-66.5 + - pos: 7.5,-14.5 parent: 6747 type: Transform - - uid: 18111 + - uid: 11549 components: - - pos: -3.5,-67.5 + - pos: 7.5,-15.5 parent: 6747 type: Transform - - uid: 18112 + - uid: 11550 components: - - pos: -3.5,-68.5 + - pos: 3.5,-12.5 parent: 6747 type: Transform - - uid: 18113 + - uid: 11551 components: - - pos: -4.5,-68.5 + - pos: 3.5,-13.5 parent: 6747 type: Transform - - uid: 18114 + - uid: 11552 components: - - pos: -5.5,-68.5 + - pos: 4.5,-13.5 parent: 6747 type: Transform - - uid: 18115 + - uid: 11553 components: - - pos: -6.5,-68.5 + - pos: 5.5,-13.5 parent: 6747 type: Transform - - uid: 18116 + - uid: 11554 components: - - pos: -7.5,-68.5 + - pos: 5.5,-12.5 parent: 6747 type: Transform - - uid: 18117 + - uid: 11555 components: - - pos: -8.5,-68.5 + - pos: 6.5,-12.5 parent: 6747 type: Transform - - uid: 18118 + - uid: 11556 components: - - pos: -9.5,-68.5 + - pos: 7.5,-12.5 parent: 6747 type: Transform - - uid: 18119 + - uid: 11843 components: - - pos: -10.5,-68.5 + - pos: 62.5,24.5 parent: 6747 type: Transform - - uid: 18120 + - uid: 11947 components: - - pos: -11.5,-68.5 + - pos: 69.5,14.5 parent: 6747 type: Transform - - uid: 18121 + - uid: 11948 components: - - pos: -12.5,-68.5 + - pos: 72.5,14.5 parent: 6747 type: Transform - - uid: 18122 + - uid: 11994 components: - - pos: -13.5,-68.5 + - pos: 61.5,15.5 parent: 6747 type: Transform - - uid: 18123 + - uid: 12620 components: - - pos: -13.5,-67.5 + - pos: 59.5,27.5 parent: 6747 type: Transform - - uid: 18124 + - uid: 12621 components: - - pos: -13.5,-66.5 + - pos: 60.5,27.5 parent: 6747 type: Transform - - uid: 18125 + - uid: 12877 components: - - pos: -13.5,-65.5 + - pos: 45.5,67.5 parent: 6747 type: Transform - - uid: 18126 + - uid: 12881 components: - - pos: -13.5,-64.5 + - pos: 47.5,67.5 parent: 6747 type: Transform - - uid: 18127 + - uid: 12882 components: - - pos: -13.5,-63.5 + - pos: 47.5,66.5 parent: 6747 type: Transform - - uid: 18128 + - uid: 12883 components: - - pos: -13.5,-62.5 + - pos: 47.5,64.5 parent: 6747 type: Transform - - uid: 18129 + - uid: 12884 components: - - pos: -14.5,-62.5 + - pos: 47.5,62.5 parent: 6747 type: Transform - - uid: 18130 + - uid: 12885 components: - - pos: -15.5,-62.5 + - pos: 47.5,61.5 parent: 6747 type: Transform - - uid: 18131 + - uid: 12886 components: - - pos: -16.5,-62.5 + - pos: 47.5,59.5 parent: 6747 type: Transform - - uid: 18132 + - uid: 12887 components: - - pos: -17.5,-62.5 + - pos: 47.5,57.5 parent: 6747 type: Transform - - uid: 18133 + - uid: 12888 components: - - pos: -18.5,-62.5 + - pos: 47.5,55.5 parent: 6747 type: Transform - - uid: 18134 + - uid: 12889 components: - - pos: -19.5,-62.5 + - pos: 47.5,54.5 parent: 6747 type: Transform - - uid: 18135 + - uid: 12890 components: - - pos: -20.5,-62.5 + - pos: 47.5,50.5 parent: 6747 type: Transform - - uid: 18136 + - uid: 12891 components: - - pos: -21.5,-62.5 + - pos: 47.5,49.5 parent: 6747 type: Transform - - uid: 18137 + - uid: 12993 components: - - pos: -22.5,-62.5 + - pos: 58.5,19.5 parent: 6747 type: Transform - - uid: 18138 + - uid: 13256 components: - - pos: -22.5,-61.5 + - pos: 47.5,48.5 parent: 6747 type: Transform - - uid: 18139 + - uid: 13423 components: - - pos: -23.5,-61.5 + - pos: 61.5,33.5 parent: 6747 type: Transform - - uid: 18140 + - uid: 13424 components: - - pos: -24.5,-61.5 + - pos: 61.5,32.5 parent: 6747 type: Transform - - uid: 18141 + - uid: 13425 components: - - pos: -25.5,-61.5 + - pos: 61.5,31.5 parent: 6747 type: Transform - - uid: 18142 + - uid: 13426 components: - - pos: -26.5,-61.5 + - pos: 61.5,30.5 parent: 6747 type: Transform - - uid: 18143 + - uid: 13427 components: - - pos: -27.5,-61.5 + - pos: 59.5,30.5 parent: 6747 type: Transform - - uid: 18144 + - uid: 13428 components: - - pos: -28.5,-61.5 + - pos: 60.5,30.5 parent: 6747 type: Transform - - uid: 18145 + - uid: 13429 components: - - pos: -29.5,-61.5 + - pos: 61.5,27.5 parent: 6747 type: Transform - - uid: 18146 + - uid: 13430 components: - - pos: -30.5,-61.5 + - pos: 62.5,27.5 parent: 6747 type: Transform - - uid: 18147 + - uid: 13431 components: - - pos: -31.5,-61.5 + - pos: 62.5,26.5 parent: 6747 type: Transform - - uid: 18148 + - uid: 13432 components: - - pos: -32.5,-61.5 + - pos: 62.5,25.5 parent: 6747 type: Transform - - uid: 18149 + - uid: 13433 components: - - pos: -33.5,-61.5 + - pos: 61.5,23.5 parent: 6747 type: Transform - - uid: 18150 + - uid: 13434 components: - - pos: -34.5,-61.5 + - pos: 61.5,22.5 parent: 6747 type: Transform - - uid: 18151 + - uid: 13435 components: - - pos: -34.5,-60.5 + - pos: 61.5,21.5 parent: 6747 type: Transform - - uid: 18152 + - uid: 13437 components: - - pos: -34.5,-59.5 + - pos: 47.5,47.5 parent: 6747 type: Transform - - uid: 18153 + - uid: 13454 components: - - pos: -34.5,-58.5 + - pos: 60.5,23.5 parent: 6747 type: Transform - - uid: 18154 + - uid: 13455 components: - - pos: -34.5,-57.5 + - pos: 60.5,22.5 parent: 6747 type: Transform - - uid: 18155 + - uid: 13456 components: - - pos: -34.5,-56.5 + - pos: 60.5,21.5 parent: 6747 type: Transform - - uid: 18156 + - uid: 13458 components: - - pos: -34.5,-55.5 + - pos: 59.5,22.5 parent: 6747 type: Transform - - uid: 18157 + - uid: 13459 components: - - pos: -34.5,-54.5 + - pos: 59.5,23.5 parent: 6747 type: Transform - - uid: 18158 + - uid: 13460 components: - - pos: -34.5,-53.5 + - pos: 58.5,23.5 parent: 6747 type: Transform - - uid: 18159 + - uid: 13461 components: - - pos: -34.5,-52.5 + - pos: 58.5,22.5 parent: 6747 type: Transform - - uid: 18160 + - uid: 13462 components: - - pos: -35.5,-52.5 + - pos: 58.5,21.5 parent: 6747 type: Transform - - uid: 18161 + - uid: 13463 components: - - pos: -36.5,-52.5 + - pos: 58.5,20.5 parent: 6747 type: Transform - - uid: 18162 + - uid: 13464 components: - - pos: -37.5,-52.5 + - pos: 61.5,16.5 parent: 6747 type: Transform - - uid: 18163 + - uid: 13465 components: - - pos: -38.5,-52.5 + - pos: 61.5,17.5 parent: 6747 type: Transform - - uid: 18164 + - uid: 13466 components: - - pos: -38.5,-51.5 + - pos: 61.5,18.5 parent: 6747 type: Transform - - uid: 18165 + - uid: 13468 components: - - pos: -38.5,-50.5 + - pos: 61.5,19.5 parent: 6747 type: Transform - - uid: 18166 + - uid: 13469 components: - - pos: -38.5,-49.5 + - pos: 61.5,20.5 parent: 6747 type: Transform - - uid: 18167 + - uid: 13472 components: - - pos: -38.5,-48.5 + - pos: 42.5,45.5 parent: 6747 type: Transform - - uid: 18168 + - uid: 14532 components: - - pos: -38.5,-47.5 + - pos: -44.5,-41.5 parent: 6747 type: Transform - - uid: 18169 + - uid: 14656 components: - - pos: -38.5,-46.5 + - pos: -43.5,-41.5 parent: 6747 type: Transform - - uid: 18170 + - uid: 14657 components: - - pos: -38.5,-45.5 + - pos: -42.5,-41.5 parent: 6747 type: Transform - - uid: 18171 + - uid: 14794 components: - - pos: -38.5,-44.5 + - pos: -49.5,-40.5 parent: 6747 type: Transform - - uid: 18172 + - uid: 14795 components: - - pos: -38.5,-43.5 + - pos: -49.5,-39.5 parent: 6747 type: Transform - - uid: 18173 + - uid: 15046 components: - - pos: -38.5,-42.5 + - pos: -33.5,-48.5 parent: 6747 type: Transform - - uid: 18174 + - uid: 15805 components: - - pos: -38.5,-41.5 + - pos: -45.5,-9.5 parent: 6747 type: Transform - - uid: 18242 + - uid: 16017 components: - - pos: 53.5,-34.5 + - pos: 7.5,-8.5 parent: 6747 type: Transform - - uid: 18243 + - uid: 16025 components: - - pos: 54.5,-34.5 + - pos: 7.5,-7.5 parent: 6747 type: Transform - - uid: 18244 + - uid: 16029 components: - - pos: 55.5,-34.5 + - pos: 7.5,-6.5 parent: 6747 type: Transform - - uid: 18245 + - uid: 16030 components: - - pos: 55.5,-33.5 + - pos: 7.5,-5.5 parent: 6747 type: Transform - - uid: 18246 + - uid: 16031 components: - - pos: 55.5,-35.5 + - pos: 7.5,-4.5 parent: 6747 type: Transform - - uid: 20168 + - uid: 16032 components: - - pos: -46.5,-4.5 + - pos: 7.5,-3.5 parent: 6747 type: Transform - - uid: 20178 + - uid: 16033 components: - - pos: 10.5,2.5 + - pos: 7.5,-2.5 parent: 6747 type: Transform - - uid: 20179 + - uid: 16034 components: - - pos: 9.5,2.5 + - pos: 7.5,-1.5 parent: 6747 type: Transform - - uid: 20180 + - uid: 16035 components: - - pos: 8.5,2.5 + - pos: 7.5,-0.5 parent: 6747 type: Transform - - uid: 20181 + - uid: 16036 components: - - pos: 7.5,2.5 + - pos: 7.5,0.5 parent: 6747 type: Transform - - uid: 20182 + - uid: 16037 components: - - pos: 6.5,2.5 + - pos: 7.5,1.5 parent: 6747 type: Transform - - uid: 20183 + - uid: 16046 components: - - pos: 5.5,2.5 + - pos: 1.5,-9.5 parent: 6747 type: Transform - - uid: 20184 + - uid: 16047 components: - - pos: 4.5,2.5 + - pos: 2.5,-9.5 parent: 6747 type: Transform - - uid: 20185 + - uid: 16048 components: - - pos: 3.5,2.5 + - pos: 0.5,-9.5 parent: 6747 type: Transform - - uid: 20186 + - uid: 16049 components: - - pos: 2.5,2.5 + - pos: -0.5,-9.5 parent: 6747 type: Transform - - uid: 20187 + - uid: 16050 components: - - pos: 2.5,3.5 + - pos: -1.5,-9.5 parent: 6747 type: Transform - - uid: 20188 + - uid: 16051 components: - - pos: 2.5,4.5 + - pos: -2.5,-9.5 parent: 6747 type: Transform - - uid: 20189 + - uid: 16053 components: - - pos: 2.5,5.5 + - pos: -3.5,-9.5 parent: 6747 type: Transform - - uid: 20190 + - uid: 16054 components: - - pos: 1.5,5.5 + - pos: -4.5,-9.5 parent: 6747 type: Transform - - uid: 20191 + - uid: 16055 components: - - pos: 0.5,5.5 + - pos: -5.5,-9.5 parent: 6747 type: Transform - - uid: 20192 + - uid: 16056 components: - - pos: -0.5,5.5 + - pos: -6.5,-9.5 parent: 6747 type: Transform - - uid: 20193 + - uid: 16057 components: - - pos: -1.5,5.5 + - pos: -7.5,-9.5 parent: 6747 type: Transform - - uid: 20194 + - uid: 16058 components: - - pos: -2.5,5.5 + - pos: -8.5,-9.5 parent: 6747 type: Transform - - uid: 20195 + - uid: 16059 components: - - pos: -3.5,5.5 + - pos: -9.5,-9.5 parent: 6747 type: Transform - - uid: 20196 + - uid: 16060 components: - - pos: -4.5,5.5 + - pos: -10.5,-9.5 parent: 6747 type: Transform - - uid: 20197 + - uid: 16061 components: - - pos: -5.5,5.5 + - pos: -11.5,-9.5 parent: 6747 type: Transform - - uid: 20198 + - uid: 16068 components: - - pos: -6.5,5.5 + - pos: -11.5,-10.5 parent: 6747 type: Transform - - uid: 20199 + - uid: 16069 components: - - pos: -7.5,5.5 + - pos: -11.5,-11.5 parent: 6747 type: Transform - - uid: 20200 + - uid: 16070 components: - - pos: -8.5,5.5 + - pos: -11.5,-12.5 parent: 6747 type: Transform - - uid: 20201 + - uid: 16071 components: - - pos: -9.5,5.5 + - pos: -11.5,-13.5 parent: 6747 type: Transform - - uid: 20202 + - uid: 16072 components: - - pos: -10.5,5.5 + - pos: -11.5,-14.5 parent: 6747 type: Transform - - uid: 20203 + - uid: 16073 components: - - pos: -11.5,5.5 + - pos: -11.5,-15.5 parent: 6747 type: Transform - - uid: 20204 + - uid: 16074 components: - - pos: -12.5,5.5 + - pos: -11.5,-16.5 parent: 6747 type: Transform - - uid: 20205 + - uid: 16075 components: - - pos: -13.5,5.5 + - pos: -11.5,-17.5 parent: 6747 type: Transform - - uid: 20206 + - uid: 16076 components: - - pos: -14.5,5.5 + - pos: -11.5,-18.5 parent: 6747 type: Transform - - uid: 20207 + - uid: 16077 components: - - pos: -15.5,5.5 + - pos: -11.5,-19.5 parent: 6747 type: Transform - - uid: 20212 + - uid: 16078 components: - - pos: -19.5,4.5 + - pos: -11.5,-20.5 parent: 6747 type: Transform - - uid: 20254 + - uid: 16079 components: - - pos: -45.5,-11.5 + - pos: -11.5,-21.5 parent: 6747 type: Transform - - uid: 20255 + - uid: 16080 components: - - pos: -45.5,-12.5 + - pos: -11.5,-22.5 parent: 6747 type: Transform - - uid: 20256 + - uid: 16081 components: - - pos: -45.5,-13.5 + - pos: -11.5,-23.5 parent: 6747 type: Transform - - uid: 20257 + - uid: 16082 components: - - pos: -45.5,-14.5 + - pos: -11.5,-24.5 parent: 6747 type: Transform - - uid: 20258 + - uid: 16083 components: - - pos: -45.5,-15.5 + - pos: -11.5,-25.5 parent: 6747 type: Transform - - uid: 20259 + - uid: 16084 components: - - pos: -44.5,-15.5 + - pos: -11.5,-26.5 parent: 6747 type: Transform - - uid: 20260 + - uid: 16085 components: - - pos: -43.5,-15.5 + - pos: -11.5,-27.5 parent: 6747 type: Transform - - uid: 21825 + - uid: 16086 components: - - pos: -45.5,-10.5 + - pos: -11.5,-28.5 parent: 6747 type: Transform - - uid: 21826 + - uid: 16087 components: - - pos: -45.5,-8.5 + - pos: -11.5,-29.5 parent: 6747 type: Transform - - uid: 21827 + - uid: 16088 components: - - pos: -45.5,-7.5 + - pos: -11.5,-30.5 parent: 6747 type: Transform - - uid: 21837 + - uid: 16089 components: - - pos: -45.5,-6.5 + - pos: -11.5,-31.5 parent: 6747 type: Transform - - uid: 21838 + - uid: 16090 components: - - pos: -45.5,-5.5 + - pos: -11.5,-32.5 parent: 6747 type: Transform - - uid: 21839 + - uid: 16091 components: - - pos: -45.5,-4.5 + - pos: -11.5,-33.5 parent: 6747 type: Transform - - uid: 21854 + - uid: 16092 components: - - pos: -47.5,-4.5 + - pos: -11.5,-34.5 parent: 6747 type: Transform - - uid: 21874 + - uid: 16093 components: - - pos: -48.5,-4.5 + - pos: -11.5,-35.5 parent: 6747 type: Transform - - uid: 21897 + - uid: 16094 components: - - pos: -49.5,-4.5 + - pos: -11.5,-36.5 parent: 6747 type: Transform - - uid: 21898 + - uid: 16095 components: - - pos: -50.5,-4.5 + - pos: -11.5,-37.5 parent: 6747 type: Transform - - uid: 21899 + - uid: 16096 components: - - pos: -51.5,-4.5 + - pos: -11.5,-38.5 parent: 6747 type: Transform - - uid: 21900 + - uid: 16097 components: - - pos: -52.5,-4.5 + - pos: -11.5,-39.5 parent: 6747 type: Transform - - uid: 21901 + - uid: 16098 components: - - pos: -53.5,-4.5 + - pos: -12.5,-39.5 parent: 6747 type: Transform - - uid: 21902 + - uid: 16099 components: - - pos: -54.5,-4.5 + - pos: -13.5,-39.5 parent: 6747 type: Transform - - uid: 21904 + - uid: 16100 components: - - pos: -54.5,-3.5 + - pos: -14.5,-39.5 parent: 6747 type: Transform - - uid: 21905 + - uid: 16101 components: - - pos: -54.5,-2.5 + - pos: -15.5,-39.5 parent: 6747 type: Transform - - uid: 21932 + - uid: 16102 components: - - pos: -54.5,-1.5 + - pos: -16.5,-39.5 parent: 6747 type: Transform - - uid: 21933 + - uid: 16103 components: - - pos: -54.5,-0.5 + - pos: -17.5,-39.5 parent: 6747 type: Transform - - uid: 21934 + - uid: 16104 components: - - pos: -54.5,0.5 + - pos: -18.5,-39.5 parent: 6747 type: Transform - - uid: 21935 + - uid: 16105 components: - - pos: -54.5,1.5 + - pos: -19.5,-39.5 parent: 6747 type: Transform - - uid: 21936 + - uid: 16106 components: - - pos: -54.5,2.5 + - pos: -20.5,-39.5 parent: 6747 type: Transform - - uid: 21937 + - uid: 16107 components: - - pos: -4.5,-53.5 + - pos: -21.5,-39.5 parent: 6747 type: Transform - - uid: 21938 + - uid: 16108 components: - - pos: -5.5,-53.5 + - pos: -22.5,-39.5 parent: 6747 type: Transform - - uid: 21939 + - uid: 16109 components: - - pos: -6.5,-53.5 + - pos: -22.5,-40.5 parent: 6747 type: Transform - - uid: 21940 + - uid: 16110 components: - - pos: -7.5,-53.5 + - pos: -22.5,-41.5 parent: 6747 type: Transform - - uid: 21941 + - uid: 16111 components: - - pos: -8.5,-53.5 + - pos: -22.5,-42.5 parent: 6747 type: Transform - - uid: 21942 + - uid: 16112 components: - - pos: -9.5,-53.5 + - pos: -23.5,-42.5 parent: 6747 type: Transform - - uid: 21943 + - uid: 16113 components: - - pos: -10.5,-53.5 + - pos: -24.5,-42.5 parent: 6747 type: Transform - - uid: 21944 + - uid: 16114 components: - - pos: -11.5,-53.5 + - pos: -25.5,-42.5 parent: 6747 type: Transform - - uid: 21945 + - uid: 16115 components: - - pos: -12.5,-53.5 + - pos: -26.5,-42.5 parent: 6747 type: Transform - - uid: 21946 + - uid: 16116 components: - - pos: -13.5,-53.5 + - pos: -27.5,-42.5 parent: 6747 type: Transform - - uid: 21947 + - uid: 16117 components: - - pos: -14.5,-53.5 + - pos: -28.5,-42.5 parent: 6747 type: Transform - - uid: 21948 + - uid: 16118 components: - - pos: -15.5,-53.5 + - pos: -29.5,-42.5 parent: 6747 type: Transform - - uid: 21949 + - uid: 16119 components: - - pos: -16.5,-53.5 + - pos: -30.5,-42.5 parent: 6747 type: Transform - - uid: 21950 + - uid: 16120 components: - - pos: -17.5,-53.5 + - pos: -31.5,-42.5 parent: 6747 type: Transform - - uid: 21951 + - uid: 16121 components: - - pos: -18.5,-53.5 + - pos: -32.5,-42.5 parent: 6747 type: Transform - - uid: 21952 + - uid: 16122 components: - - pos: -19.5,-53.5 + - pos: -33.5,-42.5 parent: 6747 type: Transform - - uid: 21953 + - uid: 16123 components: - - pos: -20.5,-53.5 + - pos: -34.5,-42.5 parent: 6747 type: Transform - - uid: 21954 + - uid: 16124 components: - - pos: -21.5,-53.5 + - pos: -35.5,-42.5 parent: 6747 type: Transform - - uid: 21955 + - uid: 16125 components: - - pos: -22.5,-53.5 + - pos: -36.5,-42.5 parent: 6747 type: Transform - - uid: 21956 + - uid: 16127 components: - - pos: -22.5,-52.5 + - pos: -36.5,-41.5 parent: 6747 type: Transform - - uid: 21957 + - uid: 16128 components: - - pos: -22.5,-51.5 + - pos: -37.5,-41.5 parent: 6747 type: Transform - - uid: 21958 + - uid: 16395 components: - - pos: -22.5,-50.5 + - pos: 64.5,15.5 parent: 6747 type: Transform - - uid: 21959 + - uid: 16398 components: - - pos: -22.5,-49.5 + - pos: 43.5,45.5 parent: 6747 type: Transform - - uid: 21960 + - uid: 16584 components: - - pos: -22.5,-48.5 + - pos: 47.5,65.5 parent: 6747 type: Transform - - uid: 22065 + - uid: 16595 components: - - pos: -54.5,3.5 + - pos: 65.5,15.5 parent: 6747 type: Transform - - uid: 22066 + - uid: 16601 components: - - pos: -54.5,4.5 + - pos: 63.5,15.5 parent: 6747 type: Transform - - uid: 22067 + - uid: 16707 components: - - pos: -54.5,5.5 + - pos: 66.5,15.5 parent: 6747 type: Transform - - uid: 22068 + - uid: 16708 components: - - pos: -54.5,6.5 + - pos: 72.5,15.5 parent: 6747 type: Transform - - uid: 22069 + - uid: 16717 components: - - pos: -54.5,7.5 + - pos: 40.5,58.5 parent: 6747 type: Transform - - uid: 22070 + - uid: 16797 components: - - pos: -54.5,8.5 + - pos: 67.5,15.5 parent: 6747 type: Transform - - uid: 22073 + - uid: 16798 components: - - pos: -54.5,9.5 + - pos: 71.5,15.5 parent: 6747 type: Transform - - uid: 22074 + - uid: 16893 components: - - pos: -53.5,9.5 + - pos: 20.5,3.5 parent: 6747 type: Transform - - uid: 22075 + - uid: 16918 components: - - pos: -52.5,9.5 + - pos: 68.5,15.5 parent: 6747 type: Transform - - uid: 22076 + - uid: 16966 components: - - pos: -51.5,9.5 + - pos: 62.5,15.5 parent: 6747 type: Transform - - uid: 22077 + - uid: 16969 components: - - pos: -50.5,9.5 + - pos: 70.5,15.5 parent: 6747 type: Transform - - uid: 22078 + - uid: 16970 components: - - pos: -48.5,9.5 + - pos: 69.5,15.5 parent: 6747 type: Transform - - uid: 22079 + - uid: 17041 components: - - pos: -49.5,9.5 + - pos: 35.5,55.5 parent: 6747 type: Transform - - uid: 22080 + - uid: 17048 components: - - pos: -48.5,10.5 + - pos: 36.5,55.5 parent: 6747 type: Transform - - uid: 22081 + - uid: 17170 components: - - pos: -48.5,11.5 + - pos: 20.5,5.5 parent: 6747 type: Transform - - uid: 22082 + - uid: 17171 components: - - pos: -48.5,12.5 + - pos: 13.5,3.5 parent: 6747 type: Transform - - uid: 22083 + - uid: 17238 components: - - pos: -48.5,13.5 + - pos: 37.5,55.5 parent: 6747 type: Transform - - uid: 22084 + - uid: 17239 components: - - pos: -47.5,13.5 + - pos: 38.5,55.5 parent: 6747 type: Transform - - uid: 22085 + - uid: 17241 components: - - pos: -46.5,13.5 + - pos: 38.5,56.5 parent: 6747 type: Transform - - uid: 22086 + - uid: 17243 components: - - pos: -45.5,13.5 + - pos: 39.5,56.5 parent: 6747 type: Transform - - uid: 22128 + - uid: 17244 components: - - pos: -44.5,13.5 + - pos: 40.5,56.5 parent: 6747 type: Transform - - uid: 22129 + - uid: 17259 components: - - pos: -43.5,13.5 + - pos: 41.5,56.5 parent: 6747 type: Transform - - uid: 22165 + - uid: 17484 components: - - pos: -42.5,13.5 + - pos: 13.5,4.5 parent: 6747 type: Transform - - uid: 22167 + - uid: 17652 components: - - pos: -41.5,13.5 + - pos: 57.5,23.5 parent: 6747 type: Transform - - uid: 22168 + - uid: 17804 components: - - pos: -40.5,13.5 + - pos: 26.5,11.5 parent: 6747 type: Transform - - uid: 22169 + - uid: 17805 components: - - pos: -39.5,13.5 + - pos: 26.5,10.5 parent: 6747 type: Transform - - uid: 22618 + - uid: 17806 components: - - pos: 32.5,52.5 + - pos: 26.5,9.5 parent: 6747 type: Transform - - uid: 22620 + - uid: 17807 components: - - pos: 32.5,53.5 + - pos: 26.5,8.5 parent: 6747 type: Transform - - uid: 22664 + - uid: 17808 components: - - pos: 32.5,51.5 + - pos: 26.5,7.5 parent: 6747 type: Transform - - uid: 22665 + - uid: 17809 components: - - pos: 32.5,50.5 + - pos: 26.5,6.5 parent: 6747 type: Transform - - uid: 22666 + - uid: 17810 components: - - pos: 32.5,49.5 + - pos: 25.5,6.5 parent: 6747 type: Transform - - uid: 22667 + - uid: 17811 components: - - pos: 32.5,48.5 + - pos: 24.5,6.5 parent: 6747 type: Transform - - uid: 22668 + - uid: 17812 components: - - pos: 32.5,47.5 + - pos: 23.5,6.5 parent: 6747 type: Transform - - uid: 22669 + - uid: 17813 components: - - pos: 26.5,52.5 + - pos: 22.5,6.5 parent: 6747 type: Transform - - uid: 22670 + - uid: 17814 components: - - pos: 32.5,46.5 + - pos: 21.5,6.5 parent: 6747 type: Transform - - uid: 22671 + - uid: 17815 components: - - pos: 32.5,45.5 + - pos: 20.5,6.5 parent: 6747 type: Transform - - uid: 22672 + - uid: 17818 components: - - pos: 36.5,52.5 + - pos: 12.5,4.5 parent: 6747 type: Transform - - uid: 22673 + - uid: 17819 components: - - pos: 36.5,51.5 + - pos: 19.5,3.5 parent: 6747 type: Transform - - uid: 22674 + - uid: 17820 components: - - pos: 36.5,50.5 + - pos: 27.5,6.5 parent: 6747 type: Transform - - uid: 22675 + - uid: 17821 components: - - pos: 36.5,49.5 + - pos: 28.5,6.5 parent: 6747 type: Transform - - uid: 22676 + - uid: 17822 components: - - pos: 36.5,48.5 + - pos: 29.5,6.5 parent: 6747 type: Transform - - uid: 22677 + - uid: 17823 components: - - pos: 36.5,47.5 + - pos: 30.5,6.5 parent: 6747 type: Transform - - uid: 22678 + - uid: 17824 components: - - pos: 38.5,52.5 + - pos: 31.5,6.5 parent: 6747 type: Transform - - uid: 22679 + - uid: 17825 components: - - pos: 38.5,51.5 + - pos: 32.5,6.5 parent: 6747 type: Transform - - uid: 22680 + - uid: 17826 components: - - pos: 38.5,50.5 + - pos: 33.5,6.5 parent: 6747 type: Transform - - uid: 22681 + - uid: 17827 components: - - pos: 38.5,49.5 + - pos: 34.5,6.5 parent: 6747 type: Transform - - uid: 22682 + - uid: 17828 components: - - pos: 38.5,48.5 + - pos: 35.5,6.5 parent: 6747 type: Transform - - uid: 22683 + - uid: 17829 components: - - pos: 38.5,47.5 + - pos: 35.5,5.5 parent: 6747 type: Transform - - uid: 22684 + - uid: 17830 components: - - pos: 37.5,47.5 + - pos: 35.5,4.5 parent: 6747 type: Transform - - uid: 22685 + - uid: 17831 components: - - pos: 37.5,46.5 + - pos: 36.5,4.5 parent: 6747 type: Transform - - uid: 22686 + - uid: 17832 components: - - pos: 37.5,45.5 + - pos: 37.5,4.5 parent: 6747 type: Transform - - uid: 22687 + - uid: 17833 components: - - pos: 36.5,45.5 + - pos: 38.5,4.5 parent: 6747 type: Transform - - uid: 22688 + - uid: 17834 components: - - pos: 35.5,45.5 + - pos: 39.5,4.5 parent: 6747 type: Transform - - uid: 22689 + - uid: 17835 components: - - pos: 34.5,45.5 + - pos: 40.5,4.5 parent: 6747 type: Transform - - uid: 22690 + - uid: 17836 components: - - pos: 33.5,45.5 + - pos: 41.5,4.5 parent: 6747 type: Transform - - uid: 22691 + - uid: 17837 components: - - pos: 40.5,52.5 + - pos: 42.5,4.5 parent: 6747 type: Transform - - uid: 22692 + - uid: 17838 components: - - pos: 40.5,51.5 + - pos: 43.5,4.5 parent: 6747 type: Transform - - uid: 22693 + - uid: 17839 components: - - pos: 40.5,50.5 + - pos: 44.5,4.5 parent: 6747 type: Transform - - uid: 22694 + - uid: 17840 components: - - pos: 40.5,49.5 + - pos: 45.5,4.5 parent: 6747 type: Transform - - uid: 22695 + - uid: 17841 components: - - pos: 40.5,48.5 + - pos: 46.5,4.5 parent: 6747 type: Transform - - uid: 22696 + - uid: 17842 components: - - pos: 40.5,47.5 + - pos: 47.5,4.5 parent: 6747 type: Transform - - uid: 22697 + - uid: 17843 components: - - pos: 42.5,49.5 + - pos: 48.5,4.5 parent: 6747 type: Transform - - uid: 22698 + - uid: 17844 components: - - pos: 42.5,48.5 + - pos: 49.5,4.5 parent: 6747 type: Transform - - uid: 22699 + - uid: 17845 components: - - pos: 42.5,47.5 + - pos: 50.5,4.5 parent: 6747 type: Transform - - uid: 22700 + - uid: 17846 components: - - pos: 41.5,47.5 + - pos: 50.5,3.5 parent: 6747 type: Transform - - uid: 22701 + - uid: 17847 components: - - pos: 41.5,46.5 + - pos: 50.5,2.5 parent: 6747 type: Transform - - uid: 22702 + - uid: 17848 components: - - pos: 41.5,45.5 + - pos: 50.5,1.5 parent: 6747 type: Transform - - uid: 22703 + - uid: 17849 components: - - pos: 40.5,45.5 + - pos: 50.5,0.5 parent: 6747 type: Transform - - uid: 22704 + - uid: 17850 components: - - pos: 39.5,45.5 + - pos: 50.5,-0.5 parent: 6747 type: Transform - - uid: 22705 + - uid: 17851 components: - - pos: 38.5,45.5 + - pos: 50.5,-1.5 parent: 6747 type: Transform - - uid: 22706 + - uid: 17852 components: - - pos: 26.5,51.5 + - pos: 50.5,-2.5 parent: 6747 type: Transform - - uid: 22707 + - uid: 17853 components: - - pos: 26.5,50.5 + - pos: 50.5,-3.5 parent: 6747 type: Transform - - uid: 22708 + - uid: 17854 components: - - pos: 26.5,49.5 + - pos: 51.5,-3.5 parent: 6747 type: Transform - - uid: 22709 + - uid: 17855 components: - - pos: 26.5,48.5 + - pos: 52.5,-3.5 parent: 6747 type: Transform - - uid: 22710 + - uid: 17856 components: - - pos: 26.5,47.5 + - pos: 53.5,-3.5 parent: 6747 type: Transform - - uid: 22711 + - uid: 17857 components: - - pos: 28.5,52.5 + - pos: 54.5,-3.5 parent: 6747 type: Transform - - uid: 22712 + - uid: 17858 components: - - pos: 28.5,51.5 + - pos: 54.5,-4.5 parent: 6747 type: Transform - - uid: 22713 + - uid: 17859 components: - - pos: 28.5,50.5 + - pos: 54.5,-5.5 parent: 6747 type: Transform - - uid: 22714 + - uid: 17860 components: - - pos: 28.5,49.5 + - pos: 54.5,-6.5 parent: 6747 type: Transform - - uid: 22715 + - uid: 17861 components: - - pos: 28.5,48.5 + - pos: 54.5,-7.5 parent: 6747 type: Transform - - uid: 22716 + - uid: 17862 components: - - pos: 28.5,47.5 + - pos: 54.5,-8.5 parent: 6747 type: Transform - - uid: 22717 + - uid: 17863 components: - - pos: 22.5,52.5 + - pos: 54.5,-9.5 parent: 6747 type: Transform - - uid: 22718 + - uid: 17864 components: - - pos: 22.5,51.5 + - pos: 54.5,-10.5 parent: 6747 type: Transform - - uid: 22719 + - uid: 17865 components: - - pos: 22.5,50.5 + - pos: 54.5,-11.5 parent: 6747 type: Transform - - uid: 22720 + - uid: 17866 components: - - pos: 22.5,49.5 + - pos: 54.5,-12.5 parent: 6747 type: Transform - - uid: 22721 + - uid: 17867 components: - - pos: 22.5,48.5 + - pos: 54.5,-13.5 parent: 6747 type: Transform - - uid: 22722 + - uid: 17868 components: - - pos: 22.5,47.5 + - pos: 54.5,-14.5 parent: 6747 type: Transform - - uid: 22723 + - uid: 17869 components: - - pos: 24.5,52.5 + - pos: 54.5,-15.5 parent: 6747 type: Transform - - uid: 22724 + - uid: 17870 components: - - pos: 24.5,51.5 + - pos: 54.5,-16.5 parent: 6747 type: Transform - - uid: 22725 + - uid: 17871 components: - - pos: 24.5,50.5 + - pos: 55.5,-16.5 parent: 6747 type: Transform - - uid: 22726 + - uid: 17872 components: - - pos: 24.5,49.5 + - pos: 56.5,-16.5 parent: 6747 type: Transform - - uid: 22727 + - uid: 17873 components: - - pos: 24.5,48.5 + - pos: 57.5,-16.5 parent: 6747 type: Transform - - uid: 22728 + - uid: 17874 components: - - pos: 24.5,47.5 + - pos: 58.5,-16.5 parent: 6747 type: Transform - - uid: 22729 + - uid: 17875 components: - - pos: 23.5,47.5 + - pos: 58.5,-15.5 parent: 6747 type: Transform - - uid: 22730 + - uid: 17876 components: - - pos: 27.5,47.5 + - pos: 58.5,-17.5 parent: 6747 type: Transform - - uid: 22731 + - uid: 17877 components: - - pos: 23.5,46.5 + - pos: 19.5,2.5 parent: 6747 type: Transform - - uid: 22732 + - uid: 17878 components: - - pos: 27.5,46.5 + - pos: 18.5,2.5 parent: 6747 type: Transform - - uid: 22733 + - uid: 17879 components: - - pos: 23.5,45.5 + - pos: 17.5,2.5 parent: 6747 type: Transform - - uid: 22734 + - uid: 17880 components: - - pos: 24.5,45.5 + - pos: 16.5,2.5 parent: 6747 type: Transform - - uid: 22735 + - uid: 17881 components: - - pos: 25.5,45.5 + - pos: 15.5,2.5 parent: 6747 type: Transform - - uid: 22736 + - uid: 17882 components: - - pos: 26.5,45.5 + - pos: 14.5,2.5 parent: 6747 type: Transform - - uid: 22737 + - uid: 17883 components: - - pos: 27.5,45.5 + - pos: 13.5,2.5 parent: 6747 type: Transform - - uid: 22738 + - uid: 17884 components: - - pos: 28.5,45.5 + - pos: 12.5,2.5 parent: 6747 type: Transform - - uid: 22739 + - uid: 17885 components: - - pos: 29.5,45.5 + - pos: 11.5,2.5 parent: 6747 type: Transform - - uid: 22740 + - uid: 17892 components: - - pos: 30.5,45.5 + - pos: 3.5,-11.5 parent: 6747 type: Transform - - uid: 22741 + - uid: 17893 components: - - pos: 31.5,45.5 + - pos: 3.5,-10.5 parent: 6747 type: Transform - - uid: 22777 + - uid: 17894 components: - - pos: 11.5,-83.5 + - pos: 3.5,-9.5 parent: 6747 type: Transform - - uid: 22778 + - uid: 17895 components: - - pos: 31.5,44.5 + - pos: 4.5,-9.5 parent: 6747 type: Transform - - uid: 22779 + - uid: 17896 components: - - pos: 31.5,43.5 + - pos: 5.5,-9.5 parent: 6747 type: Transform - - uid: 22780 + - uid: 17897 components: - - pos: 31.5,42.5 + - pos: 6.5,-9.5 parent: 6747 type: Transform - - uid: 22781 + - uid: 17898 components: - - pos: 31.5,41.5 + - pos: 7.5,-9.5 parent: 6747 type: Transform - - uid: 22782 + - uid: 17899 components: - - pos: 30.5,41.5 + - pos: 8.5,-9.5 parent: 6747 type: Transform - - uid: 22783 + - uid: 17900 components: - - pos: 29.5,41.5 + - pos: 9.5,-9.5 parent: 6747 type: Transform - - uid: 22784 + - uid: 17901 components: - - pos: 28.5,41.5 + - pos: 10.5,-9.5 parent: 6747 type: Transform - - uid: 22785 + - uid: 17902 components: - - pos: 27.5,41.5 + - pos: 11.5,-9.5 parent: 6747 type: Transform - - uid: 22786 + - uid: 17903 components: - - pos: 27.5,40.5 + - pos: 12.5,-9.5 parent: 6747 type: Transform - - uid: 22787 + - uid: 17904 components: - - pos: 27.5,39.5 + - pos: 13.5,-9.5 parent: 6747 type: Transform - - uid: 22788 + - uid: 17905 components: - - pos: 27.5,38.5 + - pos: 14.5,-9.5 parent: 6747 type: Transform - - uid: 22789 + - uid: 17906 components: - - pos: 26.5,38.5 + - pos: 15.5,-9.5 parent: 6747 type: Transform - - uid: 22790 + - uid: 17907 components: - - pos: 25.5,38.5 + - pos: 16.5,-9.5 parent: 6747 type: Transform - - uid: 22851 + - uid: 17908 components: - - pos: 18.5,-81.5 + - pos: 17.5,-9.5 parent: 6747 type: Transform - - uid: 22852 + - uid: 17909 components: - - pos: 17.5,-81.5 + - pos: 18.5,-9.5 parent: 6747 type: Transform - - uid: 22853 + - uid: 17910 components: - - pos: 16.5,-81.5 + - pos: 19.5,-9.5 parent: 6747 type: Transform - - uid: 22854 + - uid: 17911 components: - - pos: 15.5,-81.5 + - pos: 20.5,-9.5 parent: 6747 type: Transform - - uid: 22855 + - uid: 17912 components: - - pos: 14.5,-81.5 + - pos: 21.5,-9.5 parent: 6747 type: Transform - - uid: 22856 + - uid: 17913 components: - - pos: 18.5,-83.5 + - pos: 22.5,-9.5 parent: 6747 type: Transform - - uid: 22857 + - uid: 17914 components: - - pos: 17.5,-83.5 + - pos: 23.5,-9.5 parent: 6747 type: Transform - - uid: 22858 + - uid: 17915 components: - - pos: 16.5,-83.5 + - pos: 24.5,-9.5 parent: 6747 type: Transform - - uid: 22859 + - uid: 17916 components: - - pos: 15.5,-83.5 + - pos: 25.5,-9.5 parent: 6747 type: Transform - - uid: 22860 + - uid: 17917 components: - - pos: 13.5,-83.5 + - pos: 25.5,-8.5 parent: 6747 type: Transform - - uid: 22861 + - uid: 17918 components: - - pos: 14.5,-83.5 + - pos: 25.5,-7.5 parent: 6747 type: Transform - - uid: 22862 + - uid: 17919 components: - - pos: 13.5,-82.5 + - pos: 25.5,-6.5 parent: 6747 type: Transform - - uid: 22863 + - uid: 17920 components: - - pos: 12.5,-82.5 + - pos: 25.5,-5.5 parent: 6747 type: Transform - - uid: 22864 + - uid: 17921 components: - - pos: 11.5,-82.5 + - pos: 25.5,-4.5 parent: 6747 type: Transform - - uid: 22865 + - uid: 17922 components: - - pos: 10.5,-82.5 + - pos: 25.5,-3.5 parent: 6747 type: Transform - - uid: 22866 + - uid: 17923 components: - - pos: 11.5,-84.5 + - pos: 25.5,-2.5 parent: 6747 type: Transform - - uid: 22867 + - uid: 17924 components: - - pos: 11.5,-85.5 + - pos: 25.5,-1.5 parent: 6747 type: Transform - - uid: 22868 + - uid: 17925 components: - - pos: 11.5,-86.5 + - pos: 25.5,-0.5 parent: 6747 type: Transform - - uid: 22869 + - uid: 17926 components: - - pos: 11.5,-87.5 + - pos: 25.5,0.5 parent: 6747 type: Transform - - uid: 22870 + - uid: 17927 components: - - pos: 11.5,-88.5 + - pos: 25.5,1.5 parent: 6747 type: Transform - - uid: 22871 + - uid: 17928 components: - - pos: 11.5,-89.5 + - pos: 25.5,2.5 parent: 6747 type: Transform - - uid: 22872 + - uid: 17929 components: - - pos: 11.5,-90.5 + - pos: 25.5,3.5 parent: 6747 type: Transform - - uid: 22873 + - uid: 17930 components: - - pos: 11.5,-91.5 + - pos: 25.5,4.5 parent: 6747 type: Transform - - uid: 22874 + - uid: 17931 components: - - pos: 11.5,-92.5 + - pos: 25.5,5.5 parent: 6747 type: Transform - - uid: 22875 + - uid: 17932 components: - - pos: 11.5,-93.5 + - pos: 54.5,-17.5 parent: 6747 type: Transform - - uid: 22876 + - uid: 17933 components: - - pos: 11.5,-94.5 + - pos: 54.5,-18.5 parent: 6747 type: Transform - - uid: 22877 + - uid: 17934 components: - - pos: 13.5,-81.5 + - pos: 54.5,-19.5 parent: 6747 type: Transform - - uid: 22879 + - uid: 17935 components: - - pos: 8.5,-88.5 + - pos: 54.5,-20.5 parent: 6747 type: Transform - - uid: 22880 + - uid: 17936 components: - - pos: 9.5,-88.5 + - pos: 54.5,-21.5 parent: 6747 type: Transform - - uid: 22881 + - uid: 17937 components: - - pos: 10.5,-88.5 + - pos: 53.5,-21.5 parent: 6747 type: Transform - - uid: 22882 + - uid: 17938 components: - - pos: 12.5,-94.5 + - pos: 52.5,-21.5 parent: 6747 type: Transform - - uid: 22883 + - uid: 17939 components: - - pos: 12.5,-90.5 + - pos: 51.5,-21.5 parent: 6747 type: Transform - - uid: 22884 + - uid: 17940 components: - - pos: 13.5,-90.5 + - pos: 51.5,-22.5 parent: 6747 type: Transform - - uid: 22885 + - uid: 17941 components: - - pos: 13.5,-89.5 + - pos: 51.5,-23.5 parent: 6747 type: Transform - - uid: 22886 + - uid: 17942 components: - - pos: 14.5,-89.5 + - pos: 51.5,-24.5 parent: 6747 type: Transform - - uid: 22887 + - uid: 17943 components: - - pos: 15.5,-89.5 + - pos: 51.5,-25.5 parent: 6747 type: Transform - - uid: 22888 + - uid: 17944 components: - - pos: 16.5,-89.5 + - pos: 51.5,-26.5 parent: 6747 type: Transform - - uid: 22889 + - uid: 17945 components: - - pos: 17.5,-89.5 + - pos: 51.5,-27.5 parent: 6747 type: Transform - - uid: 22890 + - uid: 17946 components: - - pos: 18.5,-89.5 + - pos: 51.5,-28.5 parent: 6747 type: Transform - - uid: 22891 + - uid: 17947 components: - - pos: 13.5,-91.5 + - pos: 51.5,-29.5 parent: 6747 type: Transform - - uid: 22892 + - uid: 17948 components: - - pos: 14.5,-91.5 + - pos: 52.5,-29.5 parent: 6747 type: Transform - - uid: 22893 + - uid: 17949 components: - - pos: 15.5,-91.5 + - pos: 52.5,-30.5 parent: 6747 type: Transform - - uid: 22894 + - uid: 17950 components: - - pos: 16.5,-91.5 + - pos: 52.5,-31.5 parent: 6747 type: Transform - - uid: 22895 + - uid: 17951 components: - - pos: 17.5,-91.5 + - pos: 52.5,-32.5 parent: 6747 type: Transform - - uid: 22896 + - uid: 17952 components: - - pos: 18.5,-91.5 + - pos: 52.5,-33.5 parent: 6747 type: Transform - - uid: 22897 + - uid: 17953 components: - - pos: 10.5,-81.5 + - pos: 52.5,-34.5 parent: 6747 type: Transform - - uid: 22898 + - uid: 17954 components: - - pos: 10.5,-80.5 + - pos: 52.5,-35.5 parent: 6747 type: Transform - - uid: 22899 + - uid: 17955 components: - - pos: 10.5,-79.5 + - pos: 52.5,-36.5 parent: 6747 type: Transform - - uid: 22900 + - uid: 17956 components: - - pos: 10.5,-78.5 + - pos: 52.5,-37.5 parent: 6747 type: Transform - - uid: 22901 + - uid: 17957 components: - - pos: 11.5,-78.5 + - pos: 53.5,-37.5 parent: 6747 type: Transform - - uid: 22902 + - uid: 17958 components: - - pos: 12.5,-78.5 + - pos: 53.5,-38.5 parent: 6747 type: Transform - - uid: 22903 + - uid: 17959 components: - - pos: 13.5,-78.5 + - pos: 53.5,-39.5 parent: 6747 type: Transform - - uid: 22904 + - uid: 17960 components: - - pos: 14.5,-78.5 + - pos: 51.5,-37.5 parent: 6747 type: Transform - - uid: 22905 + - uid: 17961 components: - - pos: 15.5,-78.5 + - pos: 51.5,-38.5 parent: 6747 type: Transform - - uid: 22906 + - uid: 17962 components: - - pos: 16.5,-78.5 + - pos: 50.5,-38.5 parent: 6747 type: Transform - - uid: 22907 + - uid: 17963 components: - - pos: 17.5,-78.5 + - pos: 49.5,-38.5 parent: 6747 type: Transform - - uid: 23006 + - uid: 17964 components: - - pos: -52.5,-23.5 + - pos: 48.5,-38.5 parent: 6747 type: Transform - - uid: 23050 + - uid: 17965 components: - - pos: -54.5,-23.5 + - pos: 47.5,-38.5 parent: 6747 type: Transform - - uid: 23051 + - uid: 17966 components: - - pos: -53.5,-23.5 + - pos: 46.5,-38.5 parent: 6747 type: Transform - - uid: 23052 + - uid: 17967 components: - - pos: -52.5,-22.5 + - pos: 45.5,-38.5 parent: 6747 type: Transform - - uid: 23053 + - uid: 17968 components: - - pos: -52.5,-21.5 + - pos: 45.5,-39.5 parent: 6747 type: Transform - - uid: 23054 + - uid: 17969 components: - - pos: -52.5,-20.5 + - pos: 44.5,-39.5 parent: 6747 type: Transform - - uid: 23055 + - uid: 17970 components: - - pos: -52.5,-19.5 + - pos: 44.5,-40.5 parent: 6747 type: Transform - - uid: 23056 + - uid: 17974 components: - - pos: -52.5,-18.5 + - pos: 43.5,-43.5 parent: 6747 type: Transform - - uid: 23057 + - uid: 17975 components: - - pos: -52.5,-17.5 + - pos: 42.5,-43.5 parent: 6747 type: Transform - - uid: 23058 + - uid: 17976 components: - - pos: -51.5,-17.5 + - pos: 41.5,-43.5 parent: 6747 type: Transform - - uid: 23059 + - uid: 17977 components: - - pos: -50.5,-17.5 + - pos: 40.5,-43.5 parent: 6747 type: Transform - - uid: 23060 + - uid: 17978 components: - - pos: -49.5,-17.5 + - pos: 39.5,-43.5 parent: 6747 type: Transform - - uid: 23061 + - uid: 17979 components: - - pos: -53.5,-26.5 + - pos: 38.5,-43.5 parent: 6747 type: Transform - - uid: 23062 + - uid: 17980 components: - - pos: -49.5,-16.5 + - pos: 37.5,-43.5 parent: 6747 type: Transform - - uid: 23063 + - uid: 17981 components: - - pos: -49.5,-15.5 + - pos: 36.5,-43.5 parent: 6747 type: Transform - - uid: 23064 + - uid: 17982 components: - - pos: -49.5,-14.5 + - pos: 35.5,-43.5 parent: 6747 type: Transform - - uid: 23065 + - uid: 17983 components: - - pos: -49.5,-13.5 + - pos: 35.5,-44.5 parent: 6747 type: Transform - - uid: 23066 + - uid: 17984 components: - - pos: -49.5,-12.5 + - pos: 35.5,-45.5 parent: 6747 type: Transform - - uid: 23067 + - uid: 17985 components: - - pos: -49.5,-11.5 + - pos: 35.5,-46.5 parent: 6747 type: Transform - - uid: 23068 + - uid: 17986 components: - - pos: -48.5,-11.5 + - pos: 35.5,-47.5 parent: 6747 type: Transform - - uid: 23069 + - uid: 17987 components: - - pos: -47.5,-11.5 + - pos: 36.5,-47.5 parent: 6747 type: Transform - - uid: 23070 + - uid: 17988 components: - - pos: -46.5,-11.5 + - pos: 37.5,-47.5 parent: 6747 type: Transform - - uid: 23079 + - uid: 17989 components: - - pos: -61.5,-25.5 + - pos: 38.5,-47.5 parent: 6747 type: Transform - - uid: 23080 + - uid: 17990 components: - - pos: -61.5,-26.5 + - pos: 39.5,-47.5 parent: 6747 type: Transform - - uid: 23081 + - uid: 17991 components: - - pos: -61.5,-27.5 + - pos: 40.5,-47.5 parent: 6747 type: Transform - - uid: 23082 + - uid: 17992 components: - - pos: -64.5,-34.5 + - pos: 41.5,-47.5 parent: 6747 type: Transform - - uid: 23083 + - uid: 17993 components: - - pos: -64.5,-33.5 + - pos: 42.5,-47.5 parent: 6747 type: Transform - - uid: 23084 + - uid: 17994 components: - - pos: -64.5,-32.5 + - pos: 43.5,-47.5 parent: 6747 type: Transform - - uid: 23085 + - uid: 17995 components: - - pos: -64.5,-31.5 + - pos: 44.5,-47.5 parent: 6747 type: Transform - - uid: 23086 + - uid: 17996 components: - - pos: -64.5,-30.5 + - pos: 44.5,-48.5 parent: 6747 type: Transform - - uid: 23087 + - uid: 17997 components: - - pos: -64.5,-29.5 + - pos: 44.5,-49.5 parent: 6747 type: Transform - - uid: 23088 + - uid: 17998 components: - - pos: -65.5,-29.5 + - pos: 44.5,-50.5 parent: 6747 type: Transform - - uid: 23089 + - uid: 17999 components: - - pos: -65.5,-28.5 + - pos: 44.5,-51.5 parent: 6747 type: Transform - - uid: 23090 + - uid: 18000 components: - - pos: -65.5,-27.5 + - pos: 44.5,-52.5 parent: 6747 type: Transform - - uid: 23091 + - uid: 18001 components: - - pos: -70.5,-34.5 + - pos: 44.5,-53.5 parent: 6747 type: Transform - - uid: 23092 + - uid: 18002 components: - - pos: -70.5,-33.5 + - pos: 43.5,-53.5 parent: 6747 type: Transform - - uid: 23093 + - uid: 18003 components: - - pos: -70.5,-32.5 + - pos: 42.5,-53.5 parent: 6747 type: Transform - - uid: 23094 + - uid: 18004 components: - - pos: -70.5,-31.5 + - pos: 41.5,-53.5 parent: 6747 type: Transform - - uid: 23095 + - uid: 18005 components: - - pos: -70.5,-30.5 + - pos: 40.5,-53.5 parent: 6747 type: Transform - - uid: 23096 + - uid: 18006 components: - - pos: -70.5,-29.5 + - pos: 39.5,-53.5 parent: 6747 type: Transform - - uid: 23097 + - uid: 18007 components: - - pos: -68.5,-34.5 + - pos: 38.5,-53.5 parent: 6747 type: Transform - - uid: 23098 + - uid: 18008 components: - - pos: -68.5,-33.5 + - pos: 37.5,-53.5 parent: 6747 type: Transform - - uid: 23099 + - uid: 18009 components: - - pos: -68.5,-32.5 + - pos: 37.5,-54.5 parent: 6747 type: Transform - - uid: 23100 + - uid: 18010 components: - - pos: -68.5,-31.5 + - pos: 37.5,-55.5 parent: 6747 type: Transform - - uid: 23101 + - uid: 18011 components: - - pos: -68.5,-30.5 + - pos: 37.5,-56.5 parent: 6747 type: Transform - - uid: 23102 + - uid: 18012 components: - - pos: -68.5,-29.5 + - pos: 37.5,-57.5 parent: 6747 type: Transform - - uid: 23103 + - uid: 18013 components: - - pos: -69.5,-29.5 + - pos: 37.5,-58.5 parent: 6747 type: Transform - - uid: 23104 + - uid: 18014 components: - - pos: -69.5,-28.5 + - pos: 37.5,-59.5 parent: 6747 type: Transform - - uid: 23105 + - uid: 18015 components: - - pos: -69.5,-27.5 + - pos: 37.5,-60.5 parent: 6747 type: Transform - - uid: 23106 + - uid: 18016 components: - - pos: -68.5,-27.5 + - pos: 37.5,-61.5 parent: 6747 type: Transform - - uid: 23107 + - uid: 18017 components: - - pos: -67.5,-27.5 + - pos: 36.5,-61.5 parent: 6747 type: Transform - - uid: 23108 + - uid: 18018 components: - - pos: -66.5,-27.5 + - pos: 35.5,-61.5 parent: 6747 type: Transform - - uid: 23109 + - uid: 18019 components: - - pos: -64.5,-27.5 + - pos: 35.5,-62.5 parent: 6747 type: Transform - - uid: 23110 + - uid: 18020 components: - - pos: -63.5,-27.5 + - pos: 35.5,-63.5 parent: 6747 type: Transform - - uid: 23111 + - uid: 18021 components: - - pos: -62.5,-27.5 + - pos: 34.5,-63.5 parent: 6747 type: Transform - - uid: 23112 + - uid: 18022 components: - - pos: -52.5,-34.5 + - pos: 33.5,-63.5 parent: 6747 type: Transform - - uid: 23113 + - uid: 18023 components: - - pos: -52.5,-33.5 + - pos: 32.5,-63.5 parent: 6747 type: Transform - - uid: 23114 + - uid: 18024 components: - - pos: -52.5,-32.5 + - pos: 31.5,-63.5 parent: 6747 type: Transform - - uid: 23115 + - uid: 18025 components: - - pos: -52.5,-31.5 + - pos: 31.5,-64.5 parent: 6747 type: Transform - - uid: 23116 + - uid: 18026 components: - - pos: -52.5,-30.5 + - pos: 31.5,-65.5 parent: 6747 type: Transform - - uid: 23117 + - uid: 18027 components: - - pos: -52.5,-29.5 + - pos: 31.5,-66.5 parent: 6747 type: Transform - - uid: 23118 + - uid: 18028 components: - - pos: -54.5,-34.5 + - pos: 31.5,-67.5 parent: 6747 type: Transform - - uid: 23119 + - uid: 18029 components: - - pos: -54.5,-33.5 + - pos: 31.5,-68.5 parent: 6747 type: Transform - - uid: 23120 + - uid: 18030 components: - - pos: -54.5,-32.5 + - pos: 31.5,-69.5 parent: 6747 type: Transform - - uid: 23121 + - uid: 18031 components: - - pos: -54.5,-31.5 + - pos: 31.5,-70.5 parent: 6747 type: Transform - - uid: 23122 + - uid: 18032 components: - - pos: -54.5,-30.5 + - pos: 31.5,-71.5 parent: 6747 type: Transform - - uid: 23123 + - uid: 18033 components: - - pos: -54.5,-29.5 + - pos: 31.5,-72.5 parent: 6747 type: Transform - - uid: 23124 + - uid: 18034 components: - - pos: -53.5,-29.5 + - pos: 30.5,-72.5 parent: 6747 type: Transform - - uid: 23125 + - uid: 18035 components: - - pos: -53.5,-28.5 + - pos: 29.5,-72.5 parent: 6747 type: Transform - - uid: 23126 + - uid: 18036 components: - - pos: -53.5,-27.5 + - pos: 28.5,-72.5 parent: 6747 type: Transform - - uid: 23127 + - uid: 18037 components: - - pos: -54.5,-27.5 + - pos: 27.5,-72.5 parent: 6747 type: Transform - - uid: 23128 + - uid: 18038 components: - - pos: -55.5,-27.5 + - pos: 26.5,-72.5 parent: 6747 type: Transform - - uid: 23129 + - uid: 18039 components: - - pos: -56.5,-27.5 + - pos: 25.5,-72.5 parent: 6747 type: Transform - - uid: 23130 + - uid: 18040 components: - - pos: -57.5,-27.5 + - pos: 24.5,-72.5 parent: 6747 type: Transform - - uid: 23131 + - uid: 18041 components: - - pos: -58.5,-27.5 + - pos: 23.5,-72.5 parent: 6747 type: Transform - - uid: 23132 + - uid: 18042 components: - - pos: -59.5,-27.5 + - pos: 22.5,-72.5 parent: 6747 type: Transform - - uid: 23133 + - uid: 18043 components: - - pos: -60.5,-27.5 + - pos: 21.5,-72.5 parent: 6747 type: Transform - - uid: 23134 + - uid: 18044 components: - - pos: -53.5,-25.5 + - pos: 20.5,-72.5 parent: 6747 type: Transform - - uid: 23135 + - uid: 18045 components: - - pos: -54.5,-25.5 + - pos: 19.5,-72.5 parent: 6747 type: Transform - - uid: 23136 + - uid: 18046 components: - - pos: -54.5,-24.5 + - pos: 18.5,-72.5 parent: 6747 type: Transform - - uid: 23138 + - uid: 18047 components: - - pos: -61.5,-28.5 + - pos: 18.5,-73.5 parent: 6747 type: Transform - - uid: 23139 + - uid: 18048 components: - - pos: -61.5,-29.5 + - pos: 18.5,-74.5 parent: 6747 type: Transform - - uid: 23140 + - uid: 18049 components: - - pos: -62.5,-29.5 + - pos: 18.5,-75.5 parent: 6747 type: Transform - - uid: 23141 + - uid: 18053 components: - - pos: -62.5,-30.5 + - pos: 34.5,-47.5 parent: 6747 type: Transform - - uid: 23142 + - uid: 18054 components: - - pos: -62.5,-31.5 + - pos: 33.5,-47.5 parent: 6747 type: Transform - - uid: 23143 + - uid: 18055 components: - - pos: -62.5,-32.5 + - pos: 32.5,-47.5 parent: 6747 type: Transform - - uid: 23144 + - uid: 18056 components: - - pos: -62.5,-33.5 + - pos: 31.5,-47.5 parent: 6747 type: Transform - - uid: 23145 + - uid: 18057 components: - - pos: -62.5,-34.5 + - pos: 30.5,-47.5 parent: 6747 type: Transform - - uid: 23962 + - uid: 18058 components: - - pos: 44.5,-41.5 + - pos: 29.5,-47.5 parent: 6747 type: Transform - - uid: 23963 + - uid: 18059 components: - - pos: 44.5,-42.5 + - pos: 28.5,-47.5 parent: 6747 type: Transform - - uid: 23964 + - uid: 18060 components: - - pos: 44.5,-43.5 + - pos: 27.5,-47.5 parent: 6747 type: Transform - - uid: 25456 + - uid: 18061 components: - - pos: -25.5,-43.5 + - pos: 26.5,-47.5 parent: 6747 type: Transform - - uid: 25457 + - uid: 18062 components: - - pos: -25.5,-44.5 + - pos: 25.5,-47.5 parent: 6747 type: Transform - - uid: 25458 + - uid: 18063 components: - - pos: -26.5,-44.5 + - pos: 24.5,-47.5 parent: 6747 type: Transform - - uid: 25459 + - uid: 18064 components: - - pos: -27.5,-44.5 + - pos: 23.5,-47.5 parent: 6747 type: Transform - - uid: 25550 + - uid: 18065 components: - - pos: -34.5,-46.5 + - pos: 22.5,-47.5 parent: 6747 type: Transform - - uid: 25551 + - uid: 18066 components: - - pos: -34.5,-47.5 + - pos: 21.5,-47.5 parent: 6747 type: Transform - - uid: 25552 + - uid: 18067 components: - - pos: -34.5,-45.5 + - pos: 20.5,-47.5 parent: 6747 type: Transform -- proto: CableHVStack - entities: - - uid: 4142 + - uid: 18068 components: - - rot: -1.5707963267948966 rad - pos: -20.99921,-55.415997 + - pos: 19.5,-47.5 parent: 6747 type: Transform - - uid: 23591 + - uid: 18069 components: - - pos: 55.55349,-24.186773 + - pos: 18.5,-47.5 parent: 6747 type: Transform -- proto: CableMV - entities: - - uid: 393 + - uid: 18070 components: - - pos: -42.5,-20.5 + - pos: 17.5,-47.5 parent: 6747 type: Transform - - uid: 1328 + - uid: 18071 components: - - pos: -27.5,-44.5 + - pos: 16.5,-47.5 parent: 6747 type: Transform - - uid: 1334 + - uid: 18072 components: - - pos: -27.5,-45.5 + - pos: 15.5,-47.5 parent: 6747 type: Transform - - uid: 1869 + - uid: 18073 components: - - pos: 22.5,-55.5 + - pos: 14.5,-47.5 parent: 6747 type: Transform - - uid: 1898 + - uid: 18074 components: - - pos: 21.5,-55.5 + - pos: 13.5,-47.5 parent: 6747 type: Transform - - uid: 1899 + - uid: 18075 components: - - pos: 20.5,-55.5 + - pos: 12.5,-47.5 parent: 6747 type: Transform - - uid: 1904 + - uid: 18076 components: - - pos: 22.5,-54.5 + - pos: 11.5,-47.5 parent: 6747 type: Transform - - uid: 2774 + - uid: 18077 components: - - pos: -42.5,-17.5 + - pos: 10.5,-47.5 parent: 6747 type: Transform - - uid: 2775 + - uid: 18078 components: - - pos: -41.5,-17.5 + - pos: 9.5,-47.5 parent: 6747 type: Transform - - uid: 2782 + - uid: 18079 components: - - pos: -41.5,-19.5 + - pos: 8.5,-47.5 parent: 6747 type: Transform - - uid: 2783 + - uid: 18080 components: - - pos: -42.5,-19.5 + - pos: 7.5,-47.5 parent: 6747 type: Transform - - uid: 2975 + - uid: 18081 components: - - pos: -42.5,-16.5 + - pos: 6.5,-47.5 parent: 6747 type: Transform - - uid: 4501 + - uid: 18082 components: - - pos: -15.5,-57.5 + - pos: 5.5,-47.5 parent: 6747 type: Transform - - uid: 5085 + - uid: 18083 components: - - pos: 14.5,-72.5 + - pos: 4.5,-47.5 parent: 6747 type: Transform - - uid: 5098 + - uid: 18084 components: - - pos: 18.5,-71.5 + - pos: 3.5,-47.5 parent: 6747 type: Transform - - uid: 5099 + - uid: 18085 components: - - pos: 16.5,-71.5 + - pos: 2.5,-47.5 parent: 6747 type: Transform - - uid: 5253 + - uid: 18086 components: - - pos: 18.5,-76.5 + - pos: 1.5,-47.5 parent: 6747 type: Transform - - uid: 6291 + - uid: 18087 components: - - pos: 73.5,-6.5 + - pos: 1.5,-48.5 parent: 6747 type: Transform - - uid: 6292 + - uid: 18088 components: - - pos: 72.5,-6.5 + - pos: 1.5,-49.5 parent: 6747 type: Transform - - uid: 6293 + - uid: 18089 components: - - pos: 71.5,-6.5 + - pos: 1.5,-50.5 parent: 6747 type: Transform - - uid: 6294 + - uid: 18090 components: - - pos: 70.5,-6.5 + - pos: 1.5,-51.5 parent: 6747 type: Transform - - uid: 6295 + - uid: 18091 components: - - pos: 69.5,-6.5 + - pos: 0.5,-51.5 parent: 6747 type: Transform - - uid: 6296 + - uid: 18092 components: - - pos: 68.5,-6.5 + - pos: -0.5,-51.5 parent: 6747 type: Transform - - uid: 10369 + - uid: 18093 components: - - pos: 12.5,4.5 + - pos: -1.5,-51.5 parent: 6747 type: Transform - - uid: 10370 + - uid: 18094 components: - - pos: 13.5,4.5 + - pos: -2.5,-51.5 parent: 6747 type: Transform - - uid: 12492 + - uid: 18095 components: - - pos: -6.5,-10.5 + - pos: -3.5,-51.5 parent: 6747 type: Transform - - uid: 12495 + - uid: 18096 components: - - pos: 8.5,-7.5 + - pos: -3.5,-52.5 parent: 6747 type: Transform - - uid: 12496 + - uid: 18097 components: - - pos: 8.5,-6.5 + - pos: -3.5,-53.5 parent: 6747 type: Transform - - uid: 12497 + - uid: 18098 components: - - pos: 7.5,-6.5 + - pos: -3.5,-54.5 parent: 6747 type: Transform - - uid: 12788 + - uid: 18099 components: - - pos: 7.5,-5.5 + - pos: -3.5,-55.5 parent: 6747 type: Transform - - uid: 12789 + - uid: 18100 components: - - pos: 7.5,-4.5 + - pos: -3.5,-56.5 parent: 6747 type: Transform - - uid: 12961 + - uid: 18101 components: - - pos: 7.5,-3.5 + - pos: -3.5,-57.5 parent: 6747 type: Transform - - uid: 12962 + - uid: 18102 components: - - pos: 7.5,-2.5 + - pos: -3.5,-58.5 parent: 6747 type: Transform - - uid: 12968 + - uid: 18103 components: - - pos: 7.5,-1.5 + - pos: -3.5,-59.5 parent: 6747 type: Transform - - uid: 12969 + - uid: 18104 components: - - pos: 7.5,-0.5 + - pos: -3.5,-60.5 parent: 6747 type: Transform - - uid: 12970 + - uid: 18105 components: - - pos: 7.5,0.5 + - pos: -3.5,-61.5 parent: 6747 type: Transform - - uid: 12971 + - uid: 18106 components: - - pos: 7.5,1.5 + - pos: -3.5,-62.5 parent: 6747 type: Transform - - uid: 12972 + - uid: 18107 components: - - pos: 7.5,2.5 + - pos: -3.5,-63.5 parent: 6747 type: Transform - - uid: 12973 + - uid: 18108 components: - - pos: 8.5,2.5 + - pos: -3.5,-64.5 parent: 6747 type: Transform - - uid: 12974 + - uid: 18109 components: - - pos: 9.5,2.5 + - pos: -3.5,-65.5 parent: 6747 type: Transform - - uid: 12975 + - uid: 18110 components: - - pos: 10.5,2.5 + - pos: -3.5,-66.5 parent: 6747 type: Transform - - uid: 12976 + - uid: 18111 components: - - pos: 11.5,2.5 + - pos: -3.5,-67.5 parent: 6747 type: Transform - - uid: 14644 + - uid: 18112 components: - - pos: 15.5,-71.5 + - pos: -3.5,-68.5 parent: 6747 type: Transform - - uid: 14645 + - uid: 18113 components: - - pos: 17.5,-71.5 + - pos: -4.5,-68.5 parent: 6747 type: Transform - - uid: 14649 + - uid: 18114 components: - - pos: 15.5,-72.5 + - pos: -5.5,-68.5 parent: 6747 type: Transform - - uid: 14655 + - uid: 18115 components: - - pos: 29.5,-63.5 + - pos: -6.5,-68.5 parent: 6747 type: Transform - - uid: 14668 + - uid: 18116 components: - - pos: 12.5,2.5 + - pos: -7.5,-68.5 parent: 6747 type: Transform - - uid: 15639 + - uid: 18117 components: - - pos: -17.5,-7.5 + - pos: -8.5,-68.5 parent: 6747 type: Transform - - uid: 15640 + - uid: 18118 components: - - pos: -17.5,-8.5 + - pos: -9.5,-68.5 parent: 6747 type: Transform - - uid: 15641 + - uid: 18119 components: - - pos: -17.5,-9.5 + - pos: -10.5,-68.5 parent: 6747 type: Transform - - uid: 15647 + - uid: 18120 components: - - pos: -17.5,-10.5 + - pos: -11.5,-68.5 parent: 6747 type: Transform - - uid: 15651 + - uid: 18121 components: - - pos: -16.5,-10.5 + - pos: -12.5,-68.5 parent: 6747 type: Transform - - uid: 15652 + - uid: 18122 components: - - pos: -15.5,-10.5 + - pos: -13.5,-68.5 parent: 6747 type: Transform - - uid: 15653 + - uid: 18123 components: - - pos: -14.5,-10.5 + - pos: -13.5,-67.5 parent: 6747 type: Transform - - uid: 15654 + - uid: 18124 components: - - pos: -13.5,-10.5 + - pos: -13.5,-66.5 parent: 6747 type: Transform - - uid: 15655 + - uid: 18125 components: - - pos: -12.5,-10.5 + - pos: -13.5,-65.5 parent: 6747 type: Transform - - uid: 15656 + - uid: 18126 components: - - pos: -11.5,-10.5 + - pos: -13.5,-64.5 parent: 6747 type: Transform - - uid: 15657 + - uid: 18127 components: - - pos: -10.5,-10.5 + - pos: -13.5,-63.5 parent: 6747 type: Transform - - uid: 15658 + - uid: 18128 components: - - pos: -9.5,-10.5 + - pos: -13.5,-62.5 parent: 6747 type: Transform - - uid: 15659 + - uid: 18129 components: - - pos: -7.5,-10.5 + - pos: -14.5,-62.5 parent: 6747 type: Transform - - uid: 15660 + - uid: 18130 components: - - pos: -5.5,-10.5 + - pos: -15.5,-62.5 parent: 6747 type: Transform - - uid: 15661 + - uid: 18131 components: - - pos: -8.5,-10.5 + - pos: -16.5,-62.5 parent: 6747 type: Transform - - uid: 15939 + - uid: 18132 components: - - pos: -49.5,-42.5 + - pos: -17.5,-62.5 parent: 6747 type: Transform - - uid: 15944 + - uid: 18133 components: - - pos: -49.5,-41.5 + - pos: -18.5,-62.5 parent: 6747 type: Transform - - uid: 15945 + - uid: 18134 components: - - pos: -48.5,-41.5 + - pos: -19.5,-62.5 parent: 6747 type: Transform - - uid: 15946 + - uid: 18135 components: - - pos: -47.5,-41.5 + - pos: -20.5,-62.5 parent: 6747 type: Transform - - uid: 15947 + - uid: 18136 components: - - pos: -46.5,-41.5 + - pos: -21.5,-62.5 parent: 6747 type: Transform - - uid: 15948 + - uid: 18137 components: - - pos: -45.5,-41.5 + - pos: -22.5,-62.5 parent: 6747 type: Transform - - uid: 15949 + - uid: 18138 components: - - pos: -44.5,-41.5 + - pos: -22.5,-61.5 parent: 6747 type: Transform - - uid: 15950 + - uid: 18139 components: - - pos: -43.5,-41.5 + - pos: -23.5,-61.5 parent: 6747 type: Transform - - uid: 15951 + - uid: 18140 components: - - pos: -36.5,-41.5 + - pos: -24.5,-61.5 parent: 6747 type: Transform - - uid: 15952 + - uid: 18141 components: - - pos: -37.5,-41.5 + - pos: -25.5,-61.5 parent: 6747 type: Transform - - uid: 15953 + - uid: 18142 components: - - pos: -38.5,-41.5 + - pos: -26.5,-61.5 parent: 6747 type: Transform - - uid: 15954 + - uid: 18143 components: - - pos: -36.5,-42.5 + - pos: -27.5,-61.5 parent: 6747 type: Transform - - uid: 15955 + - uid: 18144 components: - - pos: -35.5,-42.5 + - pos: -28.5,-61.5 parent: 6747 type: Transform - - uid: 15956 + - uid: 18145 components: - - pos: -34.5,-42.5 + - pos: -29.5,-61.5 parent: 6747 type: Transform - - uid: 15957 + - uid: 18146 components: - - pos: -33.5,-42.5 + - pos: -30.5,-61.5 parent: 6747 type: Transform - - uid: 15958 + - uid: 18147 components: - - pos: -32.5,-42.5 + - pos: -31.5,-61.5 parent: 6747 type: Transform - - uid: 15959 + - uid: 18148 components: - - pos: -31.5,-42.5 + - pos: -32.5,-61.5 parent: 6747 type: Transform - - uid: 15960 + - uid: 18149 components: - - pos: -30.5,-42.5 + - pos: -33.5,-61.5 parent: 6747 type: Transform - - uid: 15961 + - uid: 18150 components: - - pos: -29.5,-42.5 + - pos: -34.5,-61.5 parent: 6747 type: Transform - - uid: 15962 + - uid: 18151 components: - - pos: -28.5,-42.5 + - pos: -34.5,-60.5 parent: 6747 type: Transform - - uid: 15991 + - uid: 18152 components: - - pos: -27.5,-42.5 + - pos: -34.5,-59.5 parent: 6747 type: Transform - - uid: 15992 + - uid: 18153 components: - - pos: -26.5,-42.5 + - pos: -34.5,-58.5 parent: 6747 type: Transform - - uid: 15993 + - uid: 18154 components: - - pos: -25.5,-42.5 + - pos: -34.5,-57.5 parent: 6747 type: Transform - - uid: 15994 + - uid: 18155 components: - - pos: -24.5,-42.5 + - pos: -34.5,-56.5 parent: 6747 type: Transform - - uid: 15995 + - uid: 18156 components: - - pos: -23.5,-42.5 + - pos: -34.5,-55.5 parent: 6747 type: Transform - - uid: 15996 + - uid: 18157 components: - - pos: -22.5,-42.5 + - pos: -34.5,-54.5 parent: 6747 type: Transform - - uid: 15997 + - uid: 18158 components: - - pos: -22.5,-41.5 + - pos: -34.5,-53.5 parent: 6747 type: Transform - - uid: 15998 + - uid: 18159 components: - - pos: -22.5,-40.5 + - pos: -34.5,-52.5 parent: 6747 type: Transform - - uid: 15999 + - uid: 18160 components: - - pos: -22.5,-39.5 + - pos: -35.5,-52.5 parent: 6747 type: Transform - - uid: 16000 + - uid: 18161 components: - - pos: -21.5,-39.5 + - pos: -36.5,-52.5 parent: 6747 type: Transform - - uid: 16001 + - uid: 18162 components: - - pos: -20.5,-39.5 + - pos: -37.5,-52.5 parent: 6747 type: Transform - - uid: 16003 + - uid: 18163 components: - - pos: -19.5,-39.5 + - pos: -38.5,-52.5 parent: 6747 type: Transform - - uid: 16004 + - uid: 18164 components: - - pos: -18.5,-39.5 + - pos: -38.5,-51.5 parent: 6747 type: Transform - - uid: 16005 + - uid: 18165 components: - - pos: -17.5,-39.5 + - pos: -38.5,-50.5 parent: 6747 type: Transform - - uid: 16006 + - uid: 18166 components: - - pos: -16.5,-39.5 + - pos: -38.5,-49.5 parent: 6747 type: Transform - - uid: 16007 + - uid: 18167 components: - - pos: -15.5,-39.5 + - pos: -38.5,-48.5 parent: 6747 type: Transform - - uid: 16008 + - uid: 18168 components: - - pos: -14.5,-39.5 + - pos: -38.5,-47.5 parent: 6747 type: Transform - - uid: 16126 + - uid: 18169 components: - - pos: 13.5,-72.5 + - pos: -38.5,-46.5 parent: 6747 type: Transform - - uid: 16477 + - uid: 18170 components: - - pos: -13.5,-39.5 + - pos: -38.5,-45.5 parent: 6747 type: Transform - - uid: 16478 + - uid: 18171 components: - - pos: -13.5,-37.5 + - pos: -38.5,-44.5 parent: 6747 type: Transform - - uid: 16479 + - uid: 18172 components: - - pos: -13.5,-38.5 + - pos: -38.5,-43.5 parent: 6747 type: Transform - - uid: 16480 + - uid: 18173 components: - - pos: -13.5,-36.5 + - pos: -38.5,-42.5 parent: 6747 type: Transform - - uid: 16481 + - uid: 18174 components: - - pos: -12.5,-36.5 + - pos: -38.5,-41.5 parent: 6747 type: Transform - - uid: 16482 + - uid: 18242 components: - - pos: -11.5,-36.5 + - pos: 53.5,-34.5 parent: 6747 type: Transform - - uid: 16483 + - uid: 18243 components: - - pos: -10.5,-36.5 + - pos: 54.5,-34.5 parent: 6747 type: Transform - - uid: 16484 + - uid: 18244 components: - - pos: -9.5,-36.5 + - pos: 55.5,-34.5 parent: 6747 type: Transform - - uid: 16490 + - uid: 18245 components: - - pos: -8.5,-36.5 + - pos: 55.5,-33.5 parent: 6747 type: Transform - - uid: 16491 + - uid: 18246 components: - - pos: -7.5,-36.5 + - pos: 55.5,-35.5 parent: 6747 type: Transform - - uid: 16492 + - uid: 18855 components: - - pos: -6.5,-36.5 + - pos: 35.5,59.5 parent: 6747 type: Transform - - uid: 16493 + - uid: 18856 components: - - pos: -5.5,-36.5 + - pos: 57.5,20.5 parent: 6747 type: Transform - - uid: 16494 + - uid: 18857 components: - - pos: -4.5,-36.5 + - pos: 56.5,20.5 parent: 6747 type: Transform - - uid: 16545 + - uid: 18858 components: - - pos: -3.5,-36.5 + - pos: 55.5,20.5 parent: 6747 type: Transform - - uid: 16546 + - uid: 18859 components: - - pos: -2.5,-36.5 + - pos: 54.5,20.5 parent: 6747 type: Transform - - uid: 16547 + - uid: 18860 components: - - pos: -1.5,-36.5 + - pos: 57.5,16.5 parent: 6747 type: Transform - - uid: 16548 + - uid: 18861 components: - - pos: -0.5,-36.5 + - pos: 56.5,16.5 parent: 6747 type: Transform - - uid: 16549 + - uid: 18862 components: - - pos: 0.5,-36.5 + - pos: 55.5,16.5 parent: 6747 type: Transform - - uid: 16550 + - uid: 18863 components: - - pos: 1.5,-36.5 + - pos: 54.5,16.5 parent: 6747 type: Transform - - uid: 16551 + - uid: 18864 components: - - pos: 2.5,-36.5 + - pos: 53.5,16.5 parent: 6747 type: Transform - - uid: 16552 + - uid: 18865 components: - - pos: 2.5,-35.5 + - pos: 52.5,16.5 parent: 6747 type: Transform - - uid: 16556 + - uid: 18866 components: - - pos: -10.5,-35.5 + - pos: 52.5,15.5 parent: 6747 type: Transform - - uid: 16557 + - uid: 18867 components: - - pos: -10.5,-34.5 + - pos: 52.5,14.5 parent: 6747 type: Transform - - uid: 16558 + - uid: 18868 components: - - pos: -9.5,-34.5 + - pos: 52.5,13.5 parent: 6747 type: Transform - - uid: 16665 + - uid: 18869 components: - - pos: -8.5,-34.5 + - pos: 52.5,12.5 parent: 6747 type: Transform - - uid: 16666 + - uid: 18870 components: - - pos: -7.5,-34.5 + - pos: 51.5,12.5 parent: 6747 type: Transform - - uid: 16687 + - uid: 18871 components: - - pos: -6.5,-34.5 + - pos: 50.5,12.5 parent: 6747 type: Transform - - uid: 16688 + - uid: 18872 components: - - pos: -5.5,-34.5 + - pos: 49.5,12.5 parent: 6747 type: Transform - - uid: 16689 + - uid: 18873 components: - - pos: -4.5,-34.5 + - pos: 48.5,12.5 parent: 6747 type: Transform - - uid: 16690 + - uid: 18874 components: - - pos: -3.5,-34.5 + - pos: 47.5,12.5 parent: 6747 type: Transform - - uid: 16691 + - uid: 18875 components: - - pos: -10.5,-33.5 + - pos: 46.5,12.5 parent: 6747 type: Transform - - uid: 16692 + - uid: 18876 components: - - pos: -10.5,-32.5 + - pos: 45.5,12.5 parent: 6747 type: Transform - - uid: 16693 + - uid: 18877 components: - - pos: -10.5,-31.5 + - pos: 45.5,9.5 parent: 6747 type: Transform - - uid: 16694 + - uid: 18878 components: - - pos: -10.5,-30.5 + - pos: 45.5,10.5 parent: 6747 type: Transform - - uid: 16695 + - uid: 18879 components: - - pos: -10.5,-29.5 + - pos: 45.5,11.5 parent: 6747 type: Transform - - uid: 16697 + - uid: 18880 components: - - pos: -10.5,-28.5 + - pos: 50.5,7.5 parent: 6747 type: Transform - - uid: 16698 + - uid: 18881 components: - - pos: -10.5,-27.5 + - pos: 51.5,7.5 parent: 6747 type: Transform - - uid: 16699 + - uid: 18882 components: - - pos: -10.5,-26.5 + - pos: 51.5,8.5 parent: 6747 type: Transform - - uid: 16710 + - uid: 18883 components: - - pos: -9.5,-26.5 + - pos: 51.5,9.5 parent: 6747 type: Transform - - uid: 16729 + - uid: 18884 components: - - pos: 7.5,-12.5 + - pos: 51.5,10.5 parent: 6747 type: Transform - - uid: 16730 + - uid: 18885 components: - - pos: 7.5,-11.5 + - pos: 51.5,11.5 parent: 6747 type: Transform - - uid: 16731 + - uid: 18886 components: - - pos: 7.5,-10.5 + - pos: 42.5,56.5 parent: 6747 type: Transform - - uid: 16732 + - uid: 18887 components: - - pos: 5.5,-12.5 + - pos: 43.5,56.5 parent: 6747 type: Transform - - uid: 16733 + - uid: 19092 components: - - pos: 5.5,-13.5 + - pos: 57.5,15.5 parent: 6747 type: Transform - - uid: 16734 + - uid: 19094 components: - - pos: 4.5,-13.5 + - pos: 33.5,45.5 parent: 6747 type: Transform - - uid: 16735 + - uid: 19095 components: - - pos: 3.5,-13.5 + - pos: 33.5,46.5 parent: 6747 type: Transform - - uid: 16736 + - uid: 19096 components: - - pos: 2.5,-13.5 + - pos: 32.5,46.5 parent: 6747 type: Transform - - uid: 16737 + - uid: 19097 components: - - pos: 2.5,-12.5 + - pos: 31.5,46.5 parent: 6747 type: Transform - - uid: 16738 + - uid: 19114 components: - - pos: 2.5,-11.5 + - pos: 38.5,54.5 parent: 6747 type: Transform - - uid: 16745 + - uid: 19115 components: - - pos: -8.5,-26.5 + - pos: 39.5,54.5 parent: 6747 type: Transform - - uid: 16746 + - uid: 19116 components: - - pos: -7.5,-26.5 + - pos: 41.5,62.5 parent: 6747 type: Transform - - uid: 16749 + - uid: 19117 components: - - pos: -6.5,-26.5 + - pos: 43.5,62.5 parent: 6747 type: Transform - - uid: 16750 + - uid: 19118 components: - - pos: -5.5,-26.5 + - pos: 45.5,63.5 parent: 6747 type: Transform - - uid: 16751 + - uid: 19119 components: - - pos: -4.5,-26.5 + - pos: 46.5,59.5 parent: 6747 type: Transform - - uid: 16752 + - uid: 19131 components: - - pos: -3.5,-26.5 + - pos: 38.5,58.5 parent: 6747 type: Transform - - uid: 16753 + - uid: 19132 components: - - pos: -2.5,-26.5 + - pos: 43.5,58.5 parent: 6747 type: Transform - - uid: 16754 + - uid: 19133 components: - - pos: -1.5,-26.5 + - pos: 43.5,60.5 parent: 6747 type: Transform - - uid: 16755 + - uid: 19134 components: - - pos: -0.5,-26.5 + - pos: 41.5,60.5 parent: 6747 type: Transform - - uid: 16756 + - uid: 19135 components: - - pos: 0.5,-26.5 + - pos: 40.5,60.5 parent: 6747 type: Transform - - uid: 16757 + - uid: 19136 components: - - pos: 1.5,-26.5 + - pos: 38.5,60.5 parent: 6747 type: Transform - - uid: 16758 + - uid: 19137 components: - - pos: -10.5,-25.5 + - pos: 34.5,59.5 parent: 6747 type: Transform - - uid: 16759 + - uid: 19138 components: - - pos: -10.5,-24.5 + - pos: 37.5,59.5 parent: 6747 type: Transform - - uid: 16760 + - uid: 19139 components: - - pos: -10.5,-23.5 + - pos: 38.5,59.5 parent: 6747 type: Transform - - uid: 16761 + - uid: 19140 components: - - pos: -10.5,-22.5 + - pos: 44.5,59.5 parent: 6747 type: Transform - - uid: 16762 + - uid: 19155 components: - - pos: -10.5,-21.5 + - pos: 45.5,59.5 parent: 6747 type: Transform - - uid: 16763 + - uid: 20168 components: - - pos: -10.5,-20.5 + - pos: -46.5,-4.5 parent: 6747 type: Transform - - uid: 16764 + - uid: 20178 components: - - pos: -11.5,-20.5 + - pos: 10.5,2.5 parent: 6747 type: Transform - - uid: 16765 + - uid: 20179 components: - - pos: -12.5,-20.5 + - pos: 9.5,2.5 parent: 6747 type: Transform - - uid: 16766 + - uid: 20180 components: - - pos: -13.5,-20.5 + - pos: 8.5,2.5 parent: 6747 type: Transform - - uid: 16767 + - uid: 20181 components: - - pos: -14.5,-20.5 + - pos: 7.5,2.5 parent: 6747 type: Transform - - uid: 16775 + - uid: 20182 components: - - pos: -15.5,-20.5 + - pos: 6.5,2.5 parent: 6747 type: Transform - - uid: 16776 + - uid: 20183 components: - - pos: -16.5,-20.5 + - pos: 5.5,2.5 parent: 6747 type: Transform - - uid: 16778 + - uid: 20184 components: - - pos: -17.5,-20.5 + - pos: 4.5,2.5 parent: 6747 type: Transform - - uid: 16779 + - uid: 20185 components: - - pos: -18.5,-20.5 + - pos: 3.5,2.5 parent: 6747 type: Transform - - uid: 16780 + - uid: 20186 components: - - pos: -19.5,-20.5 + - pos: 2.5,2.5 parent: 6747 type: Transform - - uid: 16781 + - uid: 20187 components: - - pos: -19.5,-19.5 + - pos: 2.5,3.5 parent: 6747 type: Transform - - uid: 16782 + - uid: 20188 components: - - pos: -19.5,-18.5 + - pos: 2.5,4.5 parent: 6747 type: Transform - - uid: 16783 + - uid: 20189 components: - - pos: 12.5,-72.5 + - pos: 2.5,5.5 parent: 6747 type: Transform - - uid: 16784 + - uid: 20190 components: - - pos: 11.5,-72.5 + - pos: 1.5,5.5 parent: 6747 type: Transform - - uid: 16785 + - uid: 20191 components: - - pos: 10.5,-72.5 + - pos: 0.5,5.5 parent: 6747 type: Transform - - uid: 16795 + - uid: 20192 components: - - pos: -19.5,-17.5 + - pos: -0.5,5.5 parent: 6747 type: Transform - - uid: 16800 + - uid: 20193 components: - - pos: -19.5,-16.5 + - pos: -1.5,5.5 parent: 6747 type: Transform - - uid: 16850 + - uid: 20194 components: - - pos: -20.5,-16.5 + - pos: -2.5,5.5 parent: 6747 type: Transform - - uid: 16862 + - uid: 20195 components: - - pos: -21.5,-16.5 + - pos: -3.5,5.5 parent: 6747 type: Transform - - uid: 17177 + - uid: 20196 components: - - pos: 13.5,5.5 + - pos: -4.5,5.5 parent: 6747 type: Transform - - uid: 17537 + - uid: 20197 components: - - pos: -11.5,-25.5 + - pos: -5.5,5.5 parent: 6747 type: Transform - - uid: 17538 + - uid: 20198 components: - - pos: -12.5,-25.5 + - pos: -6.5,5.5 parent: 6747 type: Transform - - uid: 17543 + - uid: 20199 components: - - pos: -13.5,-25.5 + - pos: -7.5,5.5 parent: 6747 type: Transform - - uid: 17546 + - uid: 20200 components: - - pos: -14.5,-25.5 + - pos: 34.5,55.5 parent: 6747 type: Transform - - uid: 17579 + - uid: 20201 components: - - pos: -15.5,-25.5 + - pos: 41.5,58.5 parent: 6747 type: Transform - - uid: 17592 + - uid: 20207 components: - - pos: -16.5,-25.5 + - pos: 44.5,63.5 parent: 6747 type: Transform - - uid: 17593 + - uid: 20254 components: - - pos: -17.5,-25.5 + - pos: -45.5,-11.5 parent: 6747 type: Transform - - uid: 17619 + - uid: 20255 components: - - pos: 30.5,22.5 + - pos: -45.5,-12.5 parent: 6747 type: Transform - - uid: 17620 + - uid: 20256 components: - - pos: 29.5,22.5 + - pos: -45.5,-13.5 parent: 6747 type: Transform - - uid: 17621 + - uid: 20257 components: - - pos: 28.5,22.5 + - pos: -45.5,-14.5 parent: 6747 type: Transform - - uid: 17622 + - uid: 20258 components: - - pos: 27.5,22.5 + - pos: -45.5,-15.5 parent: 6747 type: Transform - - uid: 17623 + - uid: 20259 components: - - pos: 26.5,22.5 + - pos: -44.5,-15.5 parent: 6747 type: Transform - - uid: 17624 + - uid: 20260 components: - - pos: 25.5,22.5 + - pos: -43.5,-15.5 parent: 6747 type: Transform - - uid: 17625 + - uid: 21410 components: - - pos: 24.5,22.5 + - pos: 39.5,58.5 parent: 6747 type: Transform - - uid: 17626 + - uid: 21653 components: - - pos: 23.5,22.5 + - pos: 42.5,58.5 parent: 6747 type: Transform - - uid: 17627 + - uid: 21660 components: - - pos: 23.5,23.5 + - pos: 42.5,60.5 parent: 6747 type: Transform - - uid: 17628 + - uid: 21661 components: - - pos: 23.5,24.5 + - pos: 39.5,60.5 parent: 6747 type: Transform - - uid: 17629 + - uid: 21662 components: - - pos: 22.5,24.5 + - pos: 36.5,59.5 parent: 6747 type: Transform - - uid: 17630 + - uid: 21663 components: - - pos: 21.5,24.5 + - pos: 43.5,59.5 parent: 6747 type: Transform - - uid: 17631 + - uid: 21665 components: - - pos: 20.5,24.5 + - pos: 46.5,67.5 parent: 6747 type: Transform - - uid: 17632 + - uid: 21733 components: - - pos: 19.5,24.5 + - pos: 44.5,45.5 parent: 6747 type: Transform - - uid: 17633 + - uid: 21746 components: - - pos: 18.5,24.5 + - pos: 46.5,45.5 parent: 6747 type: Transform - - uid: 17634 + - uid: 21747 components: - - pos: 17.5,24.5 + - pos: 47.5,45.5 parent: 6747 type: Transform - - uid: 17635 + - uid: 21753 components: - - pos: 16.5,24.5 + - pos: 47.5,46.5 parent: 6747 type: Transform - - uid: 17636 + - uid: 21755 components: - - pos: 16.5,25.5 + - pos: 47.5,51.5 parent: 6747 type: Transform - - uid: 17637 + - uid: 21756 components: - - pos: 16.5,26.5 + - pos: 47.5,52.5 parent: 6747 type: Transform - - uid: 17638 + - uid: 21757 components: - - pos: 16.5,27.5 + - pos: 47.5,53.5 parent: 6747 type: Transform - - uid: 17639 + - uid: 21758 components: - - pos: 16.5,28.5 + - pos: 47.5,56.5 parent: 6747 type: Transform - - uid: 17640 + - uid: 21761 components: - - pos: 16.5,29.5 + - pos: 47.5,58.5 parent: 6747 type: Transform - - uid: 17641 + - uid: 21762 components: - - pos: 16.5,30.5 + - pos: 47.5,60.5 parent: 6747 type: Transform - - uid: 17643 + - uid: 21764 components: - - pos: 15.5,24.5 + - pos: 45.5,45.5 parent: 6747 type: Transform - - uid: 17644 + - uid: 21765 components: - - pos: 14.5,24.5 + - pos: 44.5,67.5 parent: 6747 type: Transform - - uid: 17645 + - uid: 21823 components: - - pos: 14.5,25.5 + - pos: 38.5,67.5 parent: 6747 type: Transform - - uid: 17646 + - uid: 21825 components: - - pos: 14.5,26.5 + - pos: -45.5,-10.5 parent: 6747 type: Transform - - uid: 17647 + - uid: 21826 components: - - pos: 13.5,26.5 + - pos: -45.5,-8.5 parent: 6747 type: Transform - - uid: 17648 + - uid: 21827 components: - - pos: 12.5,26.5 + - pos: -45.5,-7.5 parent: 6747 type: Transform - - uid: 17649 + - uid: 21837 components: - - pos: 12.5,27.5 + - pos: -45.5,-6.5 parent: 6747 type: Transform - - uid: 17650 + - uid: 21838 components: - - pos: 12.5,28.5 + - pos: -45.5,-5.5 parent: 6747 type: Transform - - uid: 17651 + - uid: 21839 components: - - pos: 12.5,29.5 + - pos: -45.5,-4.5 parent: 6747 type: Transform - - uid: 17652 + - uid: 21854 components: - - pos: 12.5,30.5 + - pos: -47.5,-4.5 parent: 6747 type: Transform - - uid: 17653 + - uid: 21874 components: - - pos: 12.5,31.5 + - pos: -48.5,-4.5 parent: 6747 type: Transform - - uid: 17654 + - uid: 21897 components: - - pos: 12.5,32.5 + - pos: -49.5,-4.5 parent: 6747 type: Transform - - uid: 17655 + - uid: 21898 components: - - pos: 11.5,32.5 + - pos: -50.5,-4.5 parent: 6747 type: Transform - - uid: 17656 + - uid: 21899 components: - - pos: 10.5,32.5 + - pos: -51.5,-4.5 parent: 6747 type: Transform - - uid: 17657 + - uid: 21900 components: - - pos: 9.5,32.5 + - pos: -52.5,-4.5 parent: 6747 type: Transform - - uid: 17658 + - uid: 21901 components: - - pos: 8.5,32.5 + - pos: -53.5,-4.5 parent: 6747 type: Transform - - uid: 17659 + - uid: 21902 components: - - pos: 7.5,32.5 + - pos: -54.5,-4.5 parent: 6747 type: Transform - - uid: 17660 + - uid: 21904 components: - - pos: 6.5,32.5 + - pos: -54.5,-3.5 parent: 6747 type: Transform - - uid: 17661 + - uid: 21905 components: - - pos: 5.5,32.5 + - pos: -54.5,-2.5 parent: 6747 type: Transform - - uid: 17662 + - uid: 21925 components: - - pos: 4.5,32.5 + - pos: 36.5,67.5 parent: 6747 type: Transform - - uid: 17663 + - uid: 21926 components: - - pos: 3.5,32.5 + - pos: 34.5,67.5 parent: 6747 type: Transform - - uid: 17664 + - uid: 21932 components: - - pos: 2.5,32.5 + - pos: -54.5,-1.5 parent: 6747 type: Transform - - uid: 17665 + - uid: 21933 components: - - pos: 1.5,32.5 + - pos: -54.5,-0.5 parent: 6747 type: Transform - - uid: 17666 + - uid: 21934 components: - - pos: 0.5,32.5 + - pos: -54.5,0.5 parent: 6747 type: Transform - - uid: 17667 + - uid: 21935 components: - - pos: -0.5,32.5 + - pos: -54.5,1.5 parent: 6747 type: Transform - - uid: 17668 + - uid: 21936 components: - - pos: -1.5,32.5 + - pos: -54.5,2.5 parent: 6747 type: Transform - - uid: 17669 + - uid: 21937 components: - - pos: -1.5,31.5 + - pos: -4.5,-53.5 parent: 6747 type: Transform - - uid: 17672 + - uid: 21938 components: - - pos: -2.5,32.5 + - pos: -5.5,-53.5 parent: 6747 type: Transform - - uid: 17673 + - uid: 21939 components: - - pos: -3.5,32.5 + - pos: -6.5,-53.5 parent: 6747 type: Transform - - uid: 17674 + - uid: 21940 components: - - pos: -4.5,32.5 + - pos: -7.5,-53.5 parent: 6747 type: Transform - - uid: 17675 + - uid: 21941 components: - - pos: -5.5,32.5 + - pos: -8.5,-53.5 parent: 6747 type: Transform - - uid: 17676 + - uid: 21942 components: - - pos: -5.5,31.5 + - pos: -9.5,-53.5 parent: 6747 type: Transform - - uid: 17682 + - uid: 21943 components: - - pos: 32.5,22.5 + - pos: -10.5,-53.5 parent: 6747 type: Transform - - uid: 17683 + - uid: 21944 components: - - pos: 32.5,23.5 + - pos: -11.5,-53.5 parent: 6747 type: Transform - - uid: 17684 + - uid: 21945 components: - - pos: 32.5,24.5 + - pos: -12.5,-53.5 parent: 6747 type: Transform - - uid: 17685 + - uid: 21946 components: - - pos: 31.5,24.5 + - pos: -13.5,-53.5 parent: 6747 type: Transform - - uid: 17686 + - uid: 21947 components: - - pos: 32.5,25.5 + - pos: -14.5,-53.5 parent: 6747 type: Transform - - uid: 17687 + - uid: 21948 components: - - pos: 32.5,26.5 + - pos: -15.5,-53.5 parent: 6747 type: Transform - - uid: 17688 + - uid: 21949 components: - - pos: 31.5,26.5 + - pos: -16.5,-53.5 parent: 6747 type: Transform - - uid: 17689 + - uid: 21950 components: - - pos: 30.5,26.5 + - pos: -17.5,-53.5 parent: 6747 type: Transform - - uid: 17690 + - uid: 21951 components: - - pos: 29.5,26.5 + - pos: -18.5,-53.5 parent: 6747 type: Transform - - uid: 17691 + - uid: 21952 components: - - pos: 28.5,26.5 + - pos: -19.5,-53.5 parent: 6747 type: Transform - - uid: 17692 + - uid: 21953 components: - - pos: 27.5,26.5 + - pos: -20.5,-53.5 parent: 6747 type: Transform - - uid: 17693 + - uid: 21954 components: - - pos: 26.5,26.5 + - pos: -21.5,-53.5 parent: 6747 type: Transform - - uid: 17694 + - uid: 21955 components: - - pos: 25.5,26.5 + - pos: -22.5,-53.5 parent: 6747 type: Transform - - uid: 17695 + - uid: 21956 components: - - pos: 24.5,26.5 + - pos: -22.5,-52.5 parent: 6747 type: Transform - - uid: 17696 + - uid: 21957 components: - - pos: 24.5,27.5 + - pos: -22.5,-51.5 parent: 6747 type: Transform - - uid: 17697 + - uid: 21958 components: - - pos: 24.5,28.5 + - pos: -22.5,-50.5 parent: 6747 type: Transform - - uid: 17698 + - uid: 21959 components: - - pos: 24.5,29.5 + - pos: -22.5,-49.5 parent: 6747 type: Transform - - uid: 17699 + - uid: 21960 components: - - pos: 24.5,30.5 + - pos: -22.5,-48.5 parent: 6747 type: Transform - - uid: 17700 + - uid: 21981 components: - - pos: 24.5,31.5 + - pos: 35.5,63.5 parent: 6747 type: Transform - - uid: 17701 + - uid: 22065 components: - - pos: 24.5,32.5 + - pos: -54.5,3.5 parent: 6747 type: Transform - - uid: 17702 + - uid: 22066 components: - - pos: 23.5,32.5 + - pos: -54.5,4.5 parent: 6747 type: Transform - - uid: 17703 + - uid: 22067 components: - - pos: 22.5,32.5 + - pos: -54.5,5.5 parent: 6747 type: Transform - - uid: 17704 + - uid: 22068 components: - - pos: 21.5,32.5 + - pos: -54.5,6.5 parent: 6747 type: Transform - - uid: 17705 + - uid: 22069 components: - - pos: 20.5,32.5 + - pos: -54.5,7.5 parent: 6747 type: Transform - - uid: 17706 + - uid: 22070 components: - - pos: 20.5,33.5 + - pos: -54.5,8.5 parent: 6747 type: Transform - - uid: 17707 + - uid: 22073 components: - - pos: 20.5,34.5 + - pos: -54.5,9.5 parent: 6747 type: Transform - - uid: 17708 + - uid: 22074 components: - - pos: 20.5,35.5 + - pos: -53.5,9.5 parent: 6747 type: Transform - - uid: 17709 + - uid: 22075 components: - - pos: 24.5,33.5 + - pos: -52.5,9.5 parent: 6747 type: Transform - - uid: 17710 + - uid: 22076 components: - - pos: 24.5,34.5 + - pos: -51.5,9.5 parent: 6747 type: Transform - - uid: 17711 + - uid: 22077 components: - - pos: 24.5,35.5 + - pos: -50.5,9.5 parent: 6747 type: Transform - - uid: 17712 + - uid: 22078 components: - - pos: 24.5,36.5 + - pos: -48.5,9.5 parent: 6747 type: Transform - - uid: 17713 + - uid: 22079 components: - - pos: 25.5,36.5 + - pos: -49.5,9.5 parent: 6747 type: Transform - - uid: 17714 + - uid: 22080 components: - - pos: 26.5,36.5 + - pos: -48.5,10.5 parent: 6747 type: Transform - - uid: 17715 + - uid: 22081 components: - - pos: 26.5,35.5 + - pos: -48.5,11.5 parent: 6747 type: Transform - - uid: 17716 + - uid: 22082 components: - - pos: 32.5,20.5 + - pos: -48.5,12.5 parent: 6747 type: Transform - - uid: 17717 + - uid: 22083 components: - - pos: 33.5,20.5 + - pos: -48.5,13.5 parent: 6747 type: Transform - - uid: 17718 + - uid: 22084 components: - - pos: 34.5,20.5 + - pos: -47.5,13.5 parent: 6747 type: Transform - - uid: 17719 + - uid: 22085 components: - - pos: 35.5,20.5 + - pos: -46.5,13.5 parent: 6747 type: Transform - - uid: 17721 + - uid: 22086 components: - - pos: 36.5,20.5 + - pos: -45.5,13.5 parent: 6747 type: Transform - - uid: 17722 + - uid: 22128 components: - - pos: 37.5,20.5 + - pos: -44.5,13.5 parent: 6747 type: Transform - - uid: 17723 + - uid: 22129 components: - - pos: 38.5,20.5 + - pos: -43.5,13.5 parent: 6747 type: Transform - - uid: 17724 + - uid: 22165 components: - - pos: 39.5,20.5 + - pos: -42.5,13.5 parent: 6747 type: Transform - - uid: 17725 + - uid: 22167 components: - - pos: 40.5,20.5 + - pos: -41.5,13.5 parent: 6747 type: Transform - - uid: 17726 + - uid: 22168 components: - - pos: 40.5,21.5 + - pos: -40.5,13.5 parent: 6747 type: Transform - - uid: 17727 + - uid: 22169 components: - - pos: 40.5,22.5 + - pos: -39.5,13.5 parent: 6747 type: Transform - - uid: 17728 + - uid: 22339 components: - - pos: 40.5,23.5 + - pos: 72.5,16.5 parent: 6747 type: Transform - - uid: 17729 + - uid: 22340 components: - - pos: 40.5,24.5 + - pos: 69.5,16.5 parent: 6747 type: Transform - - uid: 17730 + - uid: 22341 components: - - pos: 40.5,25.5 + - pos: 71.5,16.5 parent: 6747 type: Transform - - uid: 17731 + - uid: 22342 components: - - pos: 40.5,26.5 + - pos: 70.5,16.5 parent: 6747 type: Transform - - uid: 17732 + - uid: 22443 components: - - pos: 40.5,27.5 + - pos: 40.5,54.5 parent: 6747 type: Transform - - uid: 17733 + - uid: 22649 components: - - pos: 40.5,28.5 + - pos: 32.5,37.5 parent: 6747 type: Transform - - uid: 17734 + - uid: 22653 components: - - pos: 40.5,29.5 + - pos: 33.5,37.5 parent: 6747 type: Transform - - uid: 17735 + - uid: 22654 components: - - pos: 39.5,29.5 + - pos: 31.5,40.5 parent: 6747 type: Transform - - uid: 17741 + - uid: 22655 components: - - pos: 30.5,20.5 + - pos: 31.5,39.5 parent: 6747 type: Transform - - uid: 17742 + - uid: 22656 components: - - pos: 29.5,20.5 + - pos: 31.5,38.5 parent: 6747 type: Transform - - uid: 17743 + - uid: 22657 components: - - pos: 28.5,20.5 + - pos: 31.5,37.5 parent: 6747 type: Transform - - uid: 17744 + - uid: 22658 components: - - pos: 27.5,20.5 + - pos: 30.5,37.5 parent: 6747 type: Transform - - uid: 17745 + - uid: 22659 components: - - pos: 27.5,19.5 + - pos: 30.5,36.5 parent: 6747 type: Transform - - uid: 17746 + - uid: 22660 components: - - pos: 27.5,18.5 + - pos: 30.5,35.5 parent: 6747 type: Transform - - uid: 17747 + - uid: 22661 components: - - pos: 27.5,17.5 + - pos: 29.5,35.5 parent: 6747 type: Transform - - uid: 17748 + - uid: 22662 components: - - pos: 26.5,17.5 + - pos: 29.5,34.5 parent: 6747 type: Transform - - uid: 17749 + - uid: 22663 components: - - pos: 25.5,17.5 + - pos: 29.5,33.5 parent: 6747 type: Transform - - uid: 17750 + - uid: 22664 components: - - pos: 24.5,17.5 + - pos: 29.5,32.5 parent: 6747 type: Transform - - uid: 17751 + - uid: 22665 components: - - pos: 23.5,17.5 + - pos: 29.5,31.5 parent: 6747 type: Transform - - uid: 17752 + - uid: 22666 components: - - pos: 22.5,17.5 + - pos: 29.5,30.5 parent: 6747 type: Transform - - uid: 17753 + - uid: 22667 components: - - pos: 22.5,16.5 + - pos: 29.5,29.5 parent: 6747 type: Transform - - uid: 17754 + - uid: 22668 components: - - pos: 22.5,15.5 + - pos: 29.5,28.5 parent: 6747 type: Transform - - uid: 17755 + - uid: 22669 components: - - pos: 22.5,14.5 + - pos: 29.5,27.5 parent: 6747 type: Transform - - uid: 17756 + - uid: 22670 components: - - pos: 21.5,14.5 + - pos: 29.5,26.5 parent: 6747 type: Transform - - uid: 17757 + - uid: 22671 components: - - pos: 20.5,14.5 + - pos: 29.5,25.5 parent: 6747 type: Transform - - uid: 17758 + - uid: 22672 components: - - pos: 19.5,14.5 + - pos: 29.5,24.5 parent: 6747 type: Transform - - uid: 17759 + - uid: 22673 components: - - pos: 18.5,14.5 + - pos: 29.5,23.5 parent: 6747 type: Transform - - uid: 17760 + - uid: 22674 components: - - pos: 17.5,14.5 + - pos: 29.5,22.5 parent: 6747 type: Transform - - uid: 17761 + - uid: 22675 components: - - pos: 17.5,15.5 + - pos: 29.5,21.5 parent: 6747 type: Transform - - uid: 17762 + - uid: 22676 components: - - pos: 17.5,16.5 + - pos: 30.5,21.5 parent: 6747 type: Transform - - uid: 17763 + - uid: 22677 components: - - pos: 30.5,12.5 + - pos: 31.5,21.5 parent: 6747 type: Transform - - uid: 17764 + - uid: 22678 components: - - pos: 30.5,13.5 + - pos: 32.5,21.5 parent: 6747 type: Transform - - uid: 17765 + - uid: 22679 components: - - pos: 30.5,14.5 + - pos: 33.5,21.5 parent: 6747 type: Transform - - uid: 17766 + - uid: 22680 components: - - pos: 30.5,15.5 + - pos: 34.5,21.5 parent: 6747 type: Transform - - uid: 17767 + - uid: 22681 components: - - pos: 30.5,16.5 + - pos: 35.5,21.5 parent: 6747 type: Transform - - uid: 17768 + - uid: 22682 components: - - pos: 30.5,17.5 + - pos: 36.5,21.5 parent: 6747 type: Transform - - uid: 17769 + - uid: 22683 components: - - pos: 29.5,17.5 + - pos: 37.5,21.5 parent: 6747 type: Transform - - uid: 17770 + - uid: 22684 components: - - pos: 28.5,17.5 + - pos: 32.5,43.5 parent: 6747 type: Transform - - uid: 17771 + - uid: 22685 components: - - pos: 30.5,11.5 + - pos: 53.5,20.5 parent: 6747 type: Transform - - uid: 17772 + - uid: 22686 components: - - pos: 31.5,11.5 + - pos: 37.5,45.5 parent: 6747 type: Transform - - uid: 17773 + - uid: 22687 components: - - pos: 32.5,11.5 + - pos: 36.5,45.5 parent: 6747 type: Transform - - uid: 17774 + - uid: 22688 components: - - pos: 33.5,11.5 + - pos: 35.5,45.5 parent: 6747 type: Transform - - uid: 17775 + - uid: 22689 components: - - pos: 34.5,11.5 + - pos: 34.5,45.5 parent: 6747 type: Transform - - uid: 17776 + - uid: 22690 components: - - pos: 35.5,11.5 + - pos: 52.5,20.5 parent: 6747 type: Transform - - uid: 17777 + - uid: 22691 components: - - pos: 36.5,11.5 + - pos: 51.5,20.5 parent: 6747 type: Transform - - uid: 17778 + - uid: 22692 components: - - pos: 37.5,11.5 + - pos: 50.5,20.5 parent: 6747 type: Transform - - uid: 17779 + - uid: 22693 components: - - pos: 38.5,11.5 + - pos: 49.5,20.5 parent: 6747 type: Transform - - uid: 17780 + - uid: 22694 components: - - pos: 39.5,11.5 + - pos: 48.5,20.5 parent: 6747 type: Transform - - uid: 17781 + - uid: 22695 components: - - pos: 40.5,11.5 + - pos: 47.5,20.5 parent: 6747 type: Transform - - uid: 17782 + - uid: 22696 components: - - pos: 40.5,12.5 + - pos: 46.5,20.5 parent: 6747 type: Transform - - uid: 17783 + - uid: 22697 components: - - pos: 40.5,13.5 + - pos: 45.5,20.5 parent: 6747 type: Transform - - uid: 17784 + - uid: 22698 components: - - pos: 40.5,14.5 + - pos: 44.5,20.5 parent: 6747 type: Transform - - uid: 17785 + - uid: 22699 components: - - pos: 40.5,15.5 + - pos: 43.5,20.5 parent: 6747 type: Transform - - uid: 17786 + - uid: 22700 components: - - pos: 40.5,16.5 + - pos: 42.5,20.5 parent: 6747 type: Transform - - uid: 17787 + - uid: 22701 components: - - pos: 40.5,17.5 + - pos: 41.5,20.5 parent: 6747 type: Transform - - uid: 17788 + - uid: 22702 components: - - pos: 40.5,18.5 + - pos: 41.5,45.5 parent: 6747 type: Transform - - uid: 17789 + - uid: 22703 components: - - pos: 41.5,18.5 + - pos: 40.5,45.5 parent: 6747 type: Transform - - uid: 17790 + - uid: 22704 components: - - pos: 41.5,19.5 + - pos: 39.5,45.5 parent: 6747 type: Transform - - uid: 17791 + - uid: 22705 components: - - pos: 41.5,13.5 + - pos: 38.5,45.5 parent: 6747 type: Transform - - uid: 17792 + - uid: 22706 components: - - pos: 42.5,13.5 + - pos: 40.5,20.5 parent: 6747 type: Transform - - uid: 17793 + - uid: 22707 components: - - pos: 43.5,13.5 + - pos: 39.5,20.5 parent: 6747 type: Transform - - uid: 17794 + - uid: 22708 components: - - pos: 44.5,13.5 + - pos: 38.5,20.5 parent: 6747 type: Transform - - uid: 17795 + - uid: 22709 components: - - pos: 45.5,13.5 + - pos: 38.5,21.5 parent: 6747 type: Transform - - uid: 17796 + - uid: 22741 components: - - pos: 46.5,13.5 + - pos: 31.5,45.5 parent: 6747 type: Transform - - uid: 17797 + - uid: 22756 components: - - pos: 47.5,13.5 + - pos: 27.5,11.5 parent: 6747 type: Transform - - uid: 17798 + - uid: 22777 components: - - pos: 48.5,13.5 + - pos: 11.5,-83.5 parent: 6747 type: Transform - - uid: 17799 + - uid: 22778 components: - - pos: 48.5,14.5 + - pos: 31.5,44.5 parent: 6747 type: Transform - - uid: 18050 + - uid: 22779 components: - - pos: -18.5,-25.5 + - pos: 31.5,43.5 parent: 6747 type: Transform - - uid: 18051 + - uid: 22780 components: - - pos: -19.5,-25.5 + - pos: 31.5,42.5 parent: 6747 type: Transform - - uid: 18052 + - uid: 22781 components: - - pos: -20.5,-25.5 + - pos: 31.5,41.5 parent: 6747 type: Transform - - uid: 18175 + - uid: 22782 components: - - pos: -21.5,-25.5 + - pos: 28.5,11.5 parent: 6747 type: Transform - - uid: 18176 + - uid: 22783 components: - - pos: -21.5,-26.5 + - pos: 29.5,11.5 parent: 6747 type: Transform - - uid: 18181 + - uid: 22784 components: - - pos: 58.5,-15.5 + - pos: 30.5,11.5 parent: 6747 type: Transform - - uid: 18182 + - uid: 22785 components: - - pos: 57.5,-15.5 + - pos: 31.5,11.5 parent: 6747 type: Transform - - uid: 18183 + - uid: 22786 components: - - pos: 57.5,-14.5 + - pos: 32.5,11.5 parent: 6747 type: Transform - - uid: 18184 + - uid: 22787 components: - - pos: 56.5,-15.5 + - pos: 33.5,11.5 parent: 6747 type: Transform - - uid: 18185 + - uid: 22788 components: - - pos: 55.5,-15.5 + - pos: 34.5,11.5 parent: 6747 type: Transform - - uid: 18186 + - uid: 22789 components: - - pos: 54.5,-15.5 + - pos: 35.5,11.5 parent: 6747 type: Transform - - uid: 18187 + - uid: 22790 components: - - pos: 54.5,-14.5 + - pos: 36.5,11.5 parent: 6747 type: Transform - - uid: 18188 + - uid: 22791 components: - - pos: 54.5,-13.5 + - pos: 37.5,11.5 parent: 6747 type: Transform - - uid: 18189 + - uid: 22792 components: - - pos: 54.5,-12.5 + - pos: 38.5,11.5 parent: 6747 type: Transform - - uid: 18190 + - uid: 22793 components: - - pos: 54.5,-11.5 + - pos: 39.5,11.5 parent: 6747 type: Transform - - uid: 18191 + - uid: 22851 components: - - pos: 54.5,-10.5 + - pos: 18.5,-81.5 parent: 6747 type: Transform - - uid: 18192 + - uid: 22852 components: - - pos: 54.5,-9.5 + - pos: 17.5,-81.5 parent: 6747 type: Transform - - uid: 18193 + - uid: 22853 components: - - pos: 54.5,-8.5 + - pos: 16.5,-81.5 parent: 6747 type: Transform - - uid: 18194 + - uid: 22854 components: - - pos: 54.5,-7.5 + - pos: 15.5,-81.5 parent: 6747 type: Transform - - uid: 18195 + - uid: 22855 components: - - pos: 54.5,-6.5 + - pos: 14.5,-81.5 parent: 6747 type: Transform - - uid: 18196 + - uid: 22856 components: - - pos: 54.5,-5.5 + - pos: 18.5,-83.5 parent: 6747 type: Transform - - uid: 18197 + - uid: 22857 components: - - pos: 54.5,-4.5 + - pos: 17.5,-83.5 parent: 6747 type: Transform - - uid: 18198 + - uid: 22858 components: - - pos: 54.5,-3.5 + - pos: 16.5,-83.5 parent: 6747 type: Transform - - uid: 18199 + - uid: 22859 components: - - pos: 54.5,-2.5 + - pos: 15.5,-83.5 parent: 6747 type: Transform - - uid: 18200 + - uid: 22860 components: - - pos: 53.5,-2.5 + - pos: 13.5,-83.5 parent: 6747 type: Transform - - uid: 18201 + - uid: 22861 components: - - pos: 52.5,-2.5 + - pos: 14.5,-83.5 parent: 6747 type: Transform - - uid: 18202 + - uid: 22862 components: - - pos: 51.5,-2.5 + - pos: 13.5,-82.5 parent: 6747 type: Transform - - uid: 18203 + - uid: 22863 components: - - pos: 50.5,-2.5 + - pos: 12.5,-82.5 parent: 6747 type: Transform - - uid: 18204 + - uid: 22864 components: - - pos: 49.5,-2.5 + - pos: 11.5,-82.5 parent: 6747 type: Transform - - uid: 18205 + - uid: 22865 components: - - pos: 48.5,-2.5 + - pos: 10.5,-82.5 parent: 6747 type: Transform - - uid: 18206 + - uid: 22866 components: - - pos: 47.5,-2.5 + - pos: 11.5,-84.5 parent: 6747 type: Transform - - uid: 18207 + - uid: 22867 components: - - pos: 46.5,-2.5 + - pos: 11.5,-85.5 parent: 6747 type: Transform - - uid: 18208 + - uid: 22868 components: - - pos: 45.5,-2.5 + - pos: 11.5,-86.5 parent: 6747 type: Transform - - uid: 18209 + - uid: 22869 components: - - pos: 44.5,-2.5 + - pos: 11.5,-87.5 parent: 6747 type: Transform - - uid: 18210 + - uid: 22870 components: - - pos: 43.5,-2.5 + - pos: 11.5,-88.5 parent: 6747 type: Transform - - uid: 18211 + - uid: 22871 components: - - pos: 42.5,-2.5 + - pos: 11.5,-89.5 parent: 6747 type: Transform - - uid: 18212 + - uid: 22872 components: - - pos: 41.5,-2.5 + - pos: 11.5,-90.5 parent: 6747 type: Transform - - uid: 18213 + - uid: 22873 components: - - pos: 40.5,-2.5 + - pos: 11.5,-91.5 parent: 6747 type: Transform - - uid: 18214 + - uid: 22874 components: - - pos: 39.5,-2.5 + - pos: 11.5,-92.5 parent: 6747 type: Transform - - uid: 18215 + - uid: 22875 components: - - pos: 38.5,-2.5 + - pos: 11.5,-93.5 parent: 6747 type: Transform - - uid: 18216 + - uid: 22876 components: - - pos: 37.5,-2.5 + - pos: 11.5,-94.5 parent: 6747 type: Transform - - uid: 18217 + - uid: 22877 components: - - pos: 36.5,-2.5 + - pos: 13.5,-81.5 parent: 6747 type: Transform - - uid: 18218 + - uid: 22879 components: - - pos: 35.5,-2.5 + - pos: 8.5,-88.5 parent: 6747 type: Transform - - uid: 18219 + - uid: 22880 components: - - pos: 34.5,-2.5 + - pos: 9.5,-88.5 parent: 6747 type: Transform - - uid: 18220 + - uid: 22881 components: - - pos: 33.5,-2.5 + - pos: 10.5,-88.5 parent: 6747 type: Transform - - uid: 18221 + - uid: 22882 components: - - pos: 32.5,-2.5 + - pos: 12.5,-94.5 parent: 6747 type: Transform - - uid: 18222 + - uid: 22883 components: - - pos: 32.5,-1.5 + - pos: 12.5,-90.5 parent: 6747 type: Transform - - uid: 18223 + - uid: 22884 components: - - pos: 32.5,-0.5 + - pos: 13.5,-90.5 parent: 6747 type: Transform - - uid: 18224 + - uid: 22885 components: - - pos: 32.5,0.5 + - pos: 13.5,-89.5 parent: 6747 type: Transform - - uid: 18225 + - uid: 22886 components: - - pos: 32.5,1.5 + - pos: 14.5,-89.5 parent: 6747 type: Transform - - uid: 18226 + - uid: 22887 components: - - pos: 32.5,2.5 + - pos: 15.5,-89.5 parent: 6747 type: Transform - - uid: 18227 + - uid: 22888 components: - - pos: 33.5,2.5 + - pos: 16.5,-89.5 parent: 6747 type: Transform - - uid: 18228 + - uid: 22889 components: - - pos: 34.5,2.5 + - pos: 17.5,-89.5 parent: 6747 type: Transform - - uid: 18247 + - uid: 22890 components: - - pos: 58.5,-17.5 + - pos: 18.5,-89.5 parent: 6747 type: Transform - - uid: 18248 + - uid: 22891 components: - - pos: 57.5,-17.5 + - pos: 13.5,-91.5 parent: 6747 type: Transform - - uid: 18249 + - uid: 22892 components: - - pos: 57.5,-18.5 + - pos: 14.5,-91.5 parent: 6747 type: Transform - - uid: 18250 + - uid: 22893 components: - - pos: 56.5,-17.5 + - pos: 15.5,-91.5 parent: 6747 type: Transform - - uid: 18251 + - uid: 22894 components: - - pos: 55.5,-17.5 + - pos: 16.5,-91.5 parent: 6747 type: Transform - - uid: 18252 + - uid: 22895 components: - - pos: 54.5,-17.5 + - pos: 17.5,-91.5 parent: 6747 type: Transform - - uid: 18253 + - uid: 22896 components: - - pos: 54.5,-18.5 + - pos: 18.5,-91.5 parent: 6747 type: Transform - - uid: 18254 + - uid: 22897 components: - - pos: 54.5,-19.5 + - pos: 10.5,-81.5 parent: 6747 type: Transform - - uid: 18255 + - uid: 22898 components: - - pos: 54.5,-20.5 + - pos: 10.5,-80.5 parent: 6747 type: Transform - - uid: 18256 + - uid: 22899 components: - - pos: 54.5,-21.5 + - pos: 10.5,-79.5 parent: 6747 type: Transform - - uid: 18257 + - uid: 22900 components: - - pos: 53.5,-21.5 + - pos: 10.5,-78.5 parent: 6747 type: Transform - - uid: 18258 + - uid: 22901 components: - - pos: 52.5,-21.5 + - pos: 11.5,-78.5 parent: 6747 type: Transform - - uid: 18259 + - uid: 22902 components: - - pos: 51.5,-21.5 + - pos: 12.5,-78.5 parent: 6747 type: Transform - - uid: 18260 + - uid: 22903 components: - - pos: 50.5,-21.5 + - pos: 13.5,-78.5 parent: 6747 type: Transform - - uid: 18261 + - uid: 22904 components: - - pos: 49.5,-21.5 + - pos: 14.5,-78.5 parent: 6747 type: Transform - - uid: 18262 + - uid: 22905 components: - - pos: 48.5,-21.5 + - pos: 15.5,-78.5 parent: 6747 type: Transform - - uid: 18263 + - uid: 22906 components: - - pos: 47.5,-21.5 + - pos: 16.5,-78.5 parent: 6747 type: Transform - - uid: 18264 + - uid: 22907 components: - - pos: 46.5,-21.5 + - pos: 17.5,-78.5 parent: 6747 type: Transform - - uid: 18265 + - uid: 23006 components: - - pos: 45.5,-21.5 + - pos: -52.5,-23.5 parent: 6747 type: Transform - - uid: 18266 + - uid: 23050 components: - - pos: 44.5,-21.5 + - pos: -54.5,-23.5 parent: 6747 type: Transform - - uid: 18267 + - uid: 23051 components: - - pos: 43.5,-21.5 + - pos: -53.5,-23.5 parent: 6747 type: Transform - - uid: 18268 + - uid: 23052 components: - - pos: 42.5,-21.5 + - pos: -52.5,-22.5 parent: 6747 type: Transform - - uid: 18269 + - uid: 23053 components: - - pos: 41.5,-21.5 + - pos: -52.5,-21.5 parent: 6747 type: Transform - - uid: 18270 + - uid: 23054 components: - - pos: 40.5,-21.5 + - pos: -52.5,-20.5 parent: 6747 type: Transform - - uid: 18271 + - uid: 23055 components: - - pos: 39.5,-21.5 + - pos: -52.5,-19.5 parent: 6747 type: Transform - - uid: 18272 + - uid: 23056 components: - - pos: 38.5,-21.5 + - pos: -52.5,-18.5 parent: 6747 type: Transform - - uid: 18273 + - uid: 23057 components: - - pos: 37.5,-21.5 + - pos: -52.5,-17.5 parent: 6747 type: Transform - - uid: 18274 + - uid: 23058 components: - - pos: 36.5,-21.5 + - pos: -51.5,-17.5 parent: 6747 type: Transform - - uid: 18275 + - uid: 23059 components: - - pos: 35.5,-21.5 + - pos: -50.5,-17.5 parent: 6747 type: Transform - - uid: 18276 + - uid: 23060 components: - - pos: 34.5,-21.5 + - pos: -49.5,-17.5 parent: 6747 type: Transform - - uid: 18277 + - uid: 23061 components: - - pos: 33.5,-21.5 + - pos: -53.5,-26.5 parent: 6747 type: Transform - - uid: 18278 + - uid: 23062 components: - - pos: 32.5,-21.5 + - pos: -49.5,-16.5 parent: 6747 type: Transform - - uid: 18279 + - uid: 23063 components: - - pos: 31.5,-21.5 + - pos: -49.5,-15.5 parent: 6747 type: Transform - - uid: 18280 + - uid: 23064 components: - - pos: 30.5,-21.5 + - pos: -49.5,-14.5 parent: 6747 type: Transform - - uid: 18281 + - uid: 23065 components: - - pos: 29.5,-21.5 + - pos: -49.5,-13.5 parent: 6747 type: Transform - - uid: 18282 + - uid: 23066 components: - - pos: 29.5,-20.5 + - pos: -49.5,-12.5 parent: 6747 type: Transform - - uid: 18283 + - uid: 23067 components: - - pos: 29.5,-19.5 + - pos: -49.5,-11.5 parent: 6747 type: Transform - - uid: 18284 + - uid: 23068 components: - - pos: 29.5,-18.5 + - pos: -48.5,-11.5 parent: 6747 type: Transform - - uid: 18285 + - uid: 23069 components: - - pos: 29.5,-17.5 + - pos: -47.5,-11.5 parent: 6747 type: Transform - - uid: 18286 + - uid: 23070 components: - - pos: 29.5,-16.5 + - pos: -46.5,-11.5 parent: 6747 type: Transform - - uid: 18287 + - uid: 23079 components: - - pos: 29.5,-15.5 + - pos: -61.5,-25.5 parent: 6747 type: Transform - - uid: 18288 + - uid: 23080 components: - - pos: 29.5,-14.5 + - pos: -61.5,-26.5 parent: 6747 type: Transform - - uid: 18289 + - uid: 23081 components: - - pos: 29.5,-13.5 + - pos: -61.5,-27.5 parent: 6747 type: Transform - - uid: 18290 + - uid: 23082 components: - - pos: 29.5,-12.5 + - pos: -64.5,-34.5 parent: 6747 type: Transform - - uid: 18291 + - uid: 23083 components: - - pos: 29.5,-11.5 + - pos: -64.5,-33.5 parent: 6747 type: Transform - - uid: 18293 + - uid: 23084 components: - - pos: 51.5,-20.5 + - pos: -64.5,-32.5 parent: 6747 type: Transform - - uid: 18294 + - uid: 23085 components: - - pos: 51.5,-19.5 + - pos: -64.5,-31.5 parent: 6747 type: Transform - - uid: 18295 + - uid: 23086 components: - - pos: 51.5,-18.5 + - pos: -64.5,-30.5 parent: 6747 type: Transform - - uid: 18296 + - uid: 23087 components: - - pos: 50.5,-18.5 + - pos: -64.5,-29.5 parent: 6747 type: Transform - - uid: 18297 + - uid: 23088 components: - - pos: 49.5,-18.5 + - pos: -65.5,-29.5 parent: 6747 type: Transform - - uid: 18298 + - uid: 23089 components: - - pos: 49.5,-17.5 + - pos: -65.5,-28.5 parent: 6747 type: Transform - - uid: 18299 + - uid: 23090 components: - - pos: 49.5,-16.5 + - pos: -65.5,-27.5 parent: 6747 type: Transform - - uid: 18300 + - uid: 23091 components: - - pos: 49.5,-15.5 + - pos: -70.5,-34.5 parent: 6747 type: Transform - - uid: 18301 + - uid: 23092 components: - - pos: 49.5,-14.5 + - pos: -70.5,-33.5 parent: 6747 type: Transform - - uid: 18302 + - uid: 23093 components: - - pos: 49.5,-13.5 + - pos: -70.5,-32.5 parent: 6747 type: Transform - - uid: 18303 + - uid: 23094 components: - - pos: 49.5,-12.5 + - pos: -70.5,-31.5 parent: 6747 type: Transform - - uid: 18304 + - uid: 23095 components: - - pos: 49.5,-11.5 + - pos: -70.5,-30.5 parent: 6747 type: Transform - - uid: 18311 + - uid: 23096 components: - - pos: 7.5,-9.5 + - pos: -70.5,-29.5 parent: 6747 type: Transform - - uid: 18312 + - uid: 23097 components: - - pos: 8.5,-9.5 + - pos: -68.5,-34.5 parent: 6747 type: Transform - - uid: 18313 + - uid: 23098 components: - - pos: 9.5,-9.5 + - pos: -68.5,-33.5 parent: 6747 type: Transform - - uid: 18314 + - uid: 23099 components: - - pos: 10.5,-9.5 + - pos: -68.5,-32.5 parent: 6747 type: Transform - - uid: 18315 + - uid: 23100 components: - - pos: 11.5,-9.5 + - pos: -68.5,-31.5 parent: 6747 type: Transform - - uid: 18316 + - uid: 23101 components: - - pos: 12.5,-9.5 + - pos: -68.5,-30.5 parent: 6747 type: Transform - - uid: 18317 + - uid: 23102 components: - - pos: 13.5,-9.5 + - pos: -68.5,-29.5 parent: 6747 type: Transform - - uid: 18318 + - uid: 23103 components: - - pos: 14.5,-9.5 + - pos: -69.5,-29.5 parent: 6747 type: Transform - - uid: 18319 + - uid: 23104 components: - - pos: 15.5,-9.5 + - pos: -69.5,-28.5 parent: 6747 type: Transform - - uid: 18320 + - uid: 23105 components: - - pos: 16.5,-9.5 + - pos: -69.5,-27.5 parent: 6747 type: Transform - - uid: 18321 + - uid: 23106 components: - - pos: 17.5,-9.5 + - pos: -68.5,-27.5 parent: 6747 type: Transform - - uid: 18322 + - uid: 23107 components: - - pos: 18.5,-9.5 + - pos: -67.5,-27.5 parent: 6747 type: Transform - - uid: 18323 + - uid: 23108 components: - - pos: 18.5,-10.5 + - pos: -66.5,-27.5 parent: 6747 type: Transform - - uid: 18324 + - uid: 23109 components: - - pos: 18.5,-11.5 + - pos: -64.5,-27.5 parent: 6747 type: Transform - - uid: 18325 + - uid: 23110 components: - - pos: 18.5,-12.5 + - pos: -63.5,-27.5 parent: 6747 type: Transform - - uid: 18326 + - uid: 23111 components: - - pos: 18.5,-13.5 + - pos: -62.5,-27.5 parent: 6747 type: Transform - - uid: 18327 + - uid: 23112 components: - - pos: 18.5,-14.5 + - pos: -52.5,-34.5 parent: 6747 type: Transform - - uid: 18328 + - uid: 23113 components: - - pos: 18.5,-15.5 + - pos: -52.5,-33.5 parent: 6747 type: Transform - - uid: 18329 + - uid: 23114 components: - - pos: 18.5,-16.5 + - pos: -52.5,-32.5 parent: 6747 type: Transform - - uid: 18330 + - uid: 23115 components: - - pos: 18.5,-17.5 + - pos: -52.5,-31.5 parent: 6747 type: Transform - - uid: 18331 + - uid: 23116 components: - - pos: 18.5,-18.5 + - pos: -52.5,-30.5 parent: 6747 type: Transform - - uid: 18332 + - uid: 23117 components: - - pos: 18.5,-19.5 + - pos: -52.5,-29.5 parent: 6747 type: Transform - - uid: 18333 + - uid: 23118 components: - - pos: 18.5,-20.5 + - pos: -54.5,-34.5 parent: 6747 type: Transform - - uid: 18334 + - uid: 23119 components: - - pos: 17.5,-20.5 + - pos: -54.5,-33.5 parent: 6747 type: Transform - - uid: 18335 + - uid: 23120 components: - - pos: 18.5,-21.5 + - pos: -54.5,-32.5 parent: 6747 type: Transform - - uid: 18336 + - uid: 23121 components: - - pos: 18.5,-22.5 + - pos: -54.5,-31.5 parent: 6747 type: Transform - - uid: 18337 + - uid: 23122 components: - - pos: 19.5,-22.5 + - pos: -54.5,-30.5 parent: 6747 type: Transform - - uid: 18338 + - uid: 23123 components: - - pos: 20.5,-22.5 + - pos: -54.5,-29.5 parent: 6747 type: Transform - - uid: 18339 + - uid: 23124 components: - - pos: 21.5,-22.5 + - pos: -53.5,-29.5 parent: 6747 type: Transform - - uid: 18340 + - uid: 23125 components: - - pos: 22.5,-22.5 + - pos: -53.5,-28.5 parent: 6747 type: Transform - - uid: 18341 + - uid: 23126 components: - - pos: 23.5,-22.5 + - pos: -53.5,-27.5 parent: 6747 type: Transform - - uid: 18342 + - uid: 23127 components: - - pos: 23.5,-21.5 + - pos: -54.5,-27.5 parent: 6747 type: Transform - - uid: 18343 + - uid: 23128 components: - - pos: 23.5,-20.5 + - pos: -55.5,-27.5 parent: 6747 type: Transform - - uid: 18344 + - uid: 23129 components: - - pos: 17.5,-22.5 + - pos: -56.5,-27.5 parent: 6747 type: Transform - - uid: 18345 + - uid: 23130 components: - - pos: 16.5,-22.5 + - pos: -57.5,-27.5 parent: 6747 type: Transform - - uid: 18346 + - uid: 23131 components: - - pos: 15.5,-22.5 + - pos: -58.5,-27.5 parent: 6747 type: Transform - - uid: 18347 + - uid: 23132 components: - - pos: 14.5,-22.5 + - pos: -59.5,-27.5 parent: 6747 type: Transform - - uid: 18348 + - uid: 23133 components: - - pos: 13.5,-22.5 + - pos: -60.5,-27.5 parent: 6747 type: Transform - - uid: 18349 + - uid: 23134 components: - - pos: 12.5,-22.5 + - pos: -53.5,-25.5 parent: 6747 type: Transform - - uid: 18350 + - uid: 23135 components: - - pos: 11.5,-22.5 + - pos: -54.5,-25.5 parent: 6747 type: Transform - - uid: 18361 + - uid: 23136 components: - - pos: 11.5,-23.5 + - pos: -54.5,-24.5 parent: 6747 type: Transform - - uid: 18362 + - uid: 23138 components: - - pos: 11.5,-24.5 + - pos: -61.5,-28.5 parent: 6747 type: Transform - - uid: 18363 + - uid: 23139 components: - - pos: 11.5,-25.5 + - pos: -61.5,-29.5 parent: 6747 type: Transform - - uid: 18364 + - uid: 23140 components: - - pos: 11.5,-26.5 + - pos: -62.5,-29.5 parent: 6747 type: Transform - - uid: 18365 + - uid: 23141 components: - - pos: 11.5,-27.5 + - pos: -62.5,-30.5 parent: 6747 type: Transform - - uid: 18366 + - uid: 23142 components: - - pos: 11.5,-28.5 + - pos: -62.5,-31.5 parent: 6747 type: Transform - - uid: 18367 + - uid: 23143 components: - - pos: 16.5,-23.5 + - pos: -62.5,-32.5 parent: 6747 type: Transform - - uid: 18368 + - uid: 23144 components: - - pos: 16.5,-24.5 + - pos: -62.5,-33.5 parent: 6747 type: Transform - - uid: 18369 + - uid: 23145 components: - - pos: 16.5,-25.5 + - pos: -62.5,-34.5 parent: 6747 type: Transform - - uid: 18370 + - uid: 23265 components: - - pos: 16.5,-26.5 + - pos: 40.5,11.5 parent: 6747 type: Transform - - uid: 18371 + - uid: 23270 components: - - pos: 16.5,-27.5 + - pos: 41.5,11.5 parent: 6747 type: Transform - - uid: 18372 + - uid: 23271 components: - - pos: 16.5,-28.5 + - pos: 42.5,11.5 parent: 6747 type: Transform - - uid: 18373 + - uid: 23272 components: - - pos: 16.5,-29.5 + - pos: 43.5,11.5 parent: 6747 type: Transform - - uid: 18374 + - uid: 23273 components: - - pos: 16.5,-30.5 + - pos: 44.5,11.5 parent: 6747 type: Transform - - uid: 18375 + - uid: 23274 components: - - pos: 16.5,-32.5 + - pos: 41.5,54.5 parent: 6747 type: Transform - - uid: 18376 + - uid: 23275 components: - - pos: 16.5,-31.5 + - pos: 42.5,54.5 parent: 6747 type: Transform - - uid: 18377 + - uid: 23276 components: - - pos: 16.5,-33.5 + - pos: 43.5,54.5 parent: 6747 type: Transform - - uid: 18378 + - uid: 23277 components: - - pos: 17.5,-33.5 + - pos: 43.5,55.5 parent: 6747 type: Transform - - uid: 18379 + - uid: 23278 components: - - pos: 18.5,-33.5 + - pos: 44.5,55.5 parent: 6747 type: Transform - - uid: 18380 + - uid: 23279 components: - - pos: 19.5,-33.5 + - pos: 45.5,55.5 parent: 6747 type: Transform - - uid: 18381 + - uid: 23280 components: - - pos: 11.5,-28.5 + - pos: 46.5,55.5 parent: 6747 type: Transform - - uid: 18382 + - uid: 23281 components: - - pos: 20.5,-33.5 + - pos: 34.5,58.5 parent: 6747 type: Transform - - uid: 18383 + - uid: 23282 components: - - pos: 20.5,-32.5 + - pos: 34.5,60.5 parent: 6747 type: Transform - - uid: 18384 + - uid: 23283 components: - - pos: 20.5,-31.5 + - pos: 34.5,56.5 parent: 6747 type: Transform - - uid: 18385 + - uid: 23292 components: - - pos: 21.5,-33.5 + - pos: 34.5,61.5 parent: 6747 type: Transform - - uid: 18386 + - uid: 23293 components: - - pos: 22.5,-33.5 + - pos: 34.5,62.5 parent: 6747 type: Transform - - uid: 18387 + - uid: 23294 components: - - pos: 23.5,-33.5 + - pos: 34.5,64.5 parent: 6747 type: Transform - - uid: 18388 + - uid: 23295 components: - - pos: 23.5,-34.5 + - pos: 34.5,65.5 parent: 6747 type: Transform - - uid: 18399 + - uid: 23296 components: - - pos: 13.5,2.5 + - pos: 34.5,66.5 parent: 6747 type: Transform - - uid: 18400 + - uid: 23297 components: - - pos: 14.5,2.5 + - pos: 34.5,68.5 parent: 6747 type: Transform - - uid: 18401 + - uid: 23298 components: - - pos: 15.5,2.5 + - pos: 34.5,69.5 parent: 6747 type: Transform - - uid: 18402 + - uid: 23299 components: - - pos: 16.5,2.5 + - pos: 34.5,70.5 parent: 6747 type: Transform - - uid: 18403 + - uid: 23300 components: - - pos: 17.5,2.5 + - pos: 34.5,71.5 parent: 6747 type: Transform - - uid: 18404 + - uid: 23962 components: - - pos: 18.5,2.5 + - pos: 44.5,-41.5 parent: 6747 type: Transform - - uid: 18405 + - uid: 23963 components: - - pos: 19.5,2.5 + - pos: 44.5,-42.5 parent: 6747 type: Transform - - uid: 18406 + - uid: 23964 components: - - pos: 19.5,1.5 + - pos: 44.5,-43.5 parent: 6747 type: Transform - - uid: 18407 + - uid: 24019 components: - - pos: 19.5,0.5 + - pos: 75.5,18.5 parent: 6747 type: Transform - - uid: 18466 + - uid: 24020 components: - - pos: 55.5,-33.5 + - pos: 74.5,18.5 parent: 6747 type: Transform - - uid: 18468 + - uid: 24021 components: - - pos: 54.5,-33.5 + - pos: 73.5,18.5 parent: 6747 type: Transform - - uid: 18469 + - uid: 24022 components: - - pos: 55.5,-35.5 + - pos: 72.5,18.5 parent: 6747 type: Transform - - uid: 18470 + - uid: 24023 components: - - pos: 54.5,-35.5 + - pos: 71.5,18.5 parent: 6747 type: Transform - - uid: 18471 + - uid: 24024 components: - - pos: 53.5,-35.5 + - pos: 70.5,18.5 parent: 6747 type: Transform - - uid: 18472 + - uid: 24025 components: - - pos: 52.5,-35.5 + - pos: 69.5,18.5 parent: 6747 type: Transform - - uid: 18473 + - uid: 24026 components: - - pos: 52.5,-34.5 + - pos: 68.5,18.5 parent: 6747 type: Transform - - uid: 18474 + - uid: 24027 components: - - pos: 52.5,-33.5 + - pos: 67.5,18.5 parent: 6747 type: Transform - - uid: 18475 + - uid: 24028 components: - - pos: 52.5,-32.5 + - pos: 66.5,18.5 parent: 6747 type: Transform - - uid: 18476 + - uid: 24227 components: - - pos: 52.5,-31.5 + - pos: 65.5,18.5 parent: 6747 type: Transform - - uid: 18477 + - uid: 24228 components: - - pos: 52.5,-30.5 + - pos: 64.5,18.5 parent: 6747 type: Transform - - uid: 18478 + - uid: 24229 components: - - pos: 52.5,-29.5 + - pos: 63.5,18.5 parent: 6747 type: Transform - - uid: 18479 + - uid: 24230 components: - - pos: 51.5,-29.5 + - pos: 62.5,18.5 parent: 6747 type: Transform - - uid: 18480 + - uid: 24236 components: - - pos: 50.5,-29.5 + - pos: 75.5,17.5 parent: 6747 type: Transform - - uid: 18481 + - uid: 24237 components: - - pos: 49.5,-29.5 + - pos: 76.5,17.5 parent: 6747 type: Transform - - uid: 18482 + - uid: 24238 components: - - pos: 48.5,-29.5 + - pos: 77.5,17.5 parent: 6747 type: Transform - - uid: 18483 + - uid: 24239 components: - - pos: 47.5,-29.5 + - pos: 78.5,17.5 parent: 6747 type: Transform - - uid: 18484 + - uid: 24240 components: - - pos: 47.5,-30.5 + - pos: 79.5,17.5 parent: 6747 type: Transform - - uid: 18485 + - uid: 24241 components: - - pos: 47.5,-31.5 + - pos: 80.5,17.5 parent: 6747 type: Transform - - uid: 18486 + - uid: 24254 components: - - pos: 47.5,-32.5 + - pos: 81.5,17.5 parent: 6747 type: Transform - - uid: 18487 + - uid: 25456 components: - - pos: 46.5,-32.5 + - pos: -25.5,-43.5 parent: 6747 type: Transform - - uid: 18488 + - uid: 25457 components: - - pos: 45.5,-32.5 + - pos: -25.5,-44.5 parent: 6747 type: Transform - - uid: 18489 + - uid: 25458 components: - - pos: 44.5,-32.5 + - pos: -26.5,-44.5 parent: 6747 type: Transform - - uid: 18490 + - uid: 25459 components: - - pos: 44.5,-33.5 + - pos: -27.5,-44.5 parent: 6747 type: Transform - - uid: 18493 + - uid: 25500 components: - - pos: 53.5,-39.5 + - pos: 82.5,17.5 parent: 6747 type: Transform - - uid: 18494 + - uid: 25527 components: - - pos: 53.5,-38.5 + - pos: 83.5,17.5 parent: 6747 type: Transform - - uid: 18495 + - uid: 25528 components: - - pos: 52.5,-38.5 + - pos: 84.5,17.5 parent: 6747 type: Transform - - uid: 18496 + - uid: 25543 components: - - pos: 51.5,-38.5 + - pos: 85.5,17.5 parent: 6747 type: Transform - - uid: 18497 + - uid: 25544 components: - - pos: 50.5,-38.5 + - pos: 86.5,17.5 parent: 6747 type: Transform - - uid: 18498 + - uid: 25546 components: - - pos: 49.5,-38.5 + - pos: 87.5,17.5 parent: 6747 type: Transform - - uid: 18499 + - uid: 25548 components: - - pos: 48.5,-38.5 + - pos: 88.5,17.5 parent: 6747 type: Transform - - uid: 18500 + - uid: 25550 components: - - pos: 47.5,-38.5 + - pos: -34.5,-46.5 parent: 6747 type: Transform - - uid: 18501 + - uid: 25551 components: - - pos: 46.5,-38.5 + - pos: -34.5,-47.5 parent: 6747 type: Transform - - uid: 18502 + - uid: 25552 components: - - pos: 45.5,-38.5 + - pos: -34.5,-45.5 parent: 6747 type: Transform - - uid: 18503 + - uid: 25558 components: - - pos: 45.5,-39.5 + - pos: 89.5,17.5 parent: 6747 type: Transform - - uid: 18504 + - uid: 25559 components: - - pos: 44.5,-39.5 + - pos: 90.5,17.5 parent: 6747 type: Transform - - uid: 18505 + - uid: 25560 components: - - pos: 44.5,-40.5 + - pos: 91.5,17.5 parent: 6747 type: Transform - - uid: 18509 + - uid: 25562 components: - - pos: 43.5,-43.5 + - pos: 92.5,17.5 parent: 6747 type: Transform - - uid: 18510 + - uid: 25563 components: - - pos: 42.5,-43.5 + - pos: 93.5,17.5 parent: 6747 type: Transform - - uid: 18511 + - uid: 25564 components: - - pos: 41.5,-43.5 + - pos: 94.5,17.5 parent: 6747 type: Transform - - uid: 18512 + - uid: 25565 components: - - pos: 40.5,-43.5 + - pos: 95.5,17.5 parent: 6747 type: Transform - - uid: 18513 + - uid: 25566 components: - - pos: 39.5,-43.5 + - pos: 96.5,17.5 parent: 6747 type: Transform - - uid: 18514 + - uid: 25567 components: - - pos: 38.5,-43.5 + - pos: 97.5,17.5 parent: 6747 type: Transform - - uid: 18515 + - uid: 25568 components: - - pos: 37.5,-43.5 + - pos: 98.5,17.5 parent: 6747 type: Transform - - uid: 18516 + - uid: 25569 components: - - pos: 36.5,-43.5 + - pos: 99.5,17.5 parent: 6747 type: Transform - - uid: 18517 + - uid: 25570 components: - - pos: 35.5,-43.5 + - pos: 100.5,17.5 parent: 6747 type: Transform - - uid: 18518 + - uid: 25571 components: - - pos: 35.5,-44.5 + - pos: 101.5,17.5 parent: 6747 type: Transform - - uid: 18519 + - uid: 25572 components: - - pos: 35.5,-45.5 + - pos: 102.5,17.5 parent: 6747 type: Transform - - uid: 18520 + - uid: 25573 components: - - pos: 35.5,-46.5 + - pos: 103.5,17.5 parent: 6747 type: Transform - - uid: 18521 + - uid: 25574 components: - - pos: 35.5,-47.5 + - pos: 103.5,18.5 parent: 6747 type: Transform - - uid: 18522 + - uid: 25633 components: - - pos: 36.5,-47.5 + - pos: 87.5,18.5 parent: 6747 type: Transform - - uid: 18523 + - uid: 25634 components: - - pos: 37.5,-47.5 + - pos: 87.5,19.5 parent: 6747 type: Transform - - uid: 18524 + - uid: 25635 components: - - pos: 38.5,-47.5 + - pos: 87.5,20.5 parent: 6747 type: Transform - - uid: 18525 + - uid: 25636 components: - - pos: 39.5,-47.5 + - pos: 86.5,20.5 parent: 6747 type: Transform - - uid: 18526 + - uid: 25637 components: - - pos: 40.5,-47.5 + - pos: 86.5,21.5 parent: 6747 type: Transform - - uid: 18527 + - uid: 25638 components: - - pos: 41.5,-47.5 + - pos: 86.5,22.5 parent: 6747 type: Transform - - uid: 18528 + - uid: 25639 components: - - pos: 42.5,-47.5 + - pos: 86.5,23.5 parent: 6747 type: Transform - - uid: 18529 + - uid: 25640 components: - - pos: 43.5,-47.5 + - pos: 86.5,24.5 parent: 6747 type: Transform - - uid: 18530 + - uid: 25641 components: - - pos: 44.5,-47.5 + - pos: 86.5,25.5 parent: 6747 type: Transform - - uid: 18531 + - uid: 25642 components: - - pos: 44.5,-48.5 + - pos: 88.5,25.5 parent: 6747 type: Transform - - uid: 18532 + - uid: 25643 components: - - pos: 44.5,-49.5 + - pos: 88.5,24.5 parent: 6747 type: Transform - - uid: 18533 + - uid: 25644 components: - - pos: 44.5,-50.5 + - pos: 88.5,23.5 parent: 6747 type: Transform - - uid: 18534 + - uid: 25645 components: - - pos: 44.5,-51.5 + - pos: 88.5,22.5 parent: 6747 type: Transform - - uid: 18535 + - uid: 25646 components: - - pos: 44.5,-52.5 + - pos: 88.5,21.5 parent: 6747 type: Transform - - uid: 18536 + - uid: 25647 components: - - pos: 44.5,-53.5 + - pos: 88.5,20.5 parent: 6747 type: Transform - - uid: 18537 + - uid: 25648 components: - - pos: 43.5,-53.5 + - pos: 91.5,16.5 parent: 6747 type: Transform - - uid: 18538 + - uid: 25649 components: - - pos: 42.5,-53.5 + - pos: 91.5,15.5 parent: 6747 type: Transform - - uid: 18539 + - uid: 25650 components: - - pos: 41.5,-53.5 + - pos: 92.5,15.5 parent: 6747 type: Transform - - uid: 18540 + - uid: 25651 components: - - pos: 40.5,-53.5 + - pos: 92.5,14.5 parent: 6747 type: Transform - - uid: 18541 + - uid: 25652 components: - - pos: 39.5,-53.5 + - pos: 92.5,13.5 parent: 6747 type: Transform - - uid: 18542 + - uid: 25653 components: - - pos: 38.5,-53.5 + - pos: 92.5,12.5 parent: 6747 type: Transform - - uid: 18543 + - uid: 25654 components: - - pos: 37.5,-53.5 + - pos: 92.5,11.5 parent: 6747 type: Transform - - uid: 18544 + - uid: 25655 components: - - pos: 37.5,-54.5 + - pos: 92.5,10.5 parent: 6747 type: Transform - - uid: 18545 + - uid: 25656 components: - - pos: 37.5,-55.5 + - pos: 90.5,15.5 parent: 6747 type: Transform - - uid: 18546 + - uid: 25657 components: - - pos: 37.5,-56.5 + - pos: 90.5,14.5 parent: 6747 type: Transform - - uid: 18547 + - uid: 25658 components: - - pos: 37.5,-57.5 + - pos: 90.5,13.5 parent: 6747 type: Transform - - uid: 18548 + - uid: 25659 components: - - pos: 37.5,-58.5 + - pos: 90.5,12.5 parent: 6747 type: Transform - - uid: 18549 + - uid: 25660 components: - - pos: 37.5,-59.5 + - pos: 90.5,11.5 parent: 6747 type: Transform - - uid: 18550 + - uid: 25661 components: - - pos: 37.5,-60.5 + - pos: 90.5,10.5 parent: 6747 type: Transform - - uid: 18551 + - uid: 26485 components: - - pos: 37.5,-61.5 + - pos: 52.5,7.5 parent: 6747 type: Transform - - uid: 18552 + - uid: 26486 components: - - pos: 36.5,-61.5 + - pos: 53.5,7.5 parent: 6747 type: Transform - - uid: 18553 + - uid: 26487 components: - - pos: 36.5,-62.5 + - pos: 54.5,7.5 parent: 6747 type: Transform - - uid: 18554 + - uid: 26488 components: - - pos: 36.5,-63.5 + - pos: 55.5,7.5 parent: 6747 type: Transform - - uid: 18555 + - uid: 26489 components: - - pos: 36.5,-64.5 + - pos: 56.5,7.5 parent: 6747 type: Transform - - uid: 18556 + - uid: 26490 components: - - pos: 36.5,-65.5 + - pos: 57.5,7.5 parent: 6747 type: Transform - - uid: 18566 + - uid: 26491 components: - - pos: 16.5,-75.5 + - pos: 57.5,8.5 parent: 6747 type: Transform - - uid: 18567 + - uid: 26492 components: - - pos: 16.5,-74.5 + - pos: 58.5,8.5 parent: 6747 type: Transform - - uid: 18568 + - uid: 26493 components: - - pos: 16.5,-73.5 + - pos: 59.5,8.5 parent: 6747 type: Transform - - uid: 18569 + - uid: 26494 components: - - pos: 17.5,-75.5 + - pos: 60.5,8.5 parent: 6747 type: Transform - - uid: 18570 + - uid: 26495 components: - - pos: 18.5,-75.5 + - pos: 61.5,8.5 parent: 6747 type: Transform - - uid: 18571 + - uid: 26496 components: - - pos: 18.5,-74.5 + - pos: 62.5,8.5 parent: 6747 type: Transform - - uid: 18572 + - uid: 26497 components: - - pos: 18.5,-73.5 + - pos: 63.5,8.5 parent: 6747 type: Transform - - uid: 18573 + - uid: 26498 components: - - pos: 18.5,-72.5 + - pos: 64.5,8.5 parent: 6747 type: Transform - - uid: 18574 + - uid: 26499 components: - - pos: 19.5,-72.5 + - pos: 64.5,9.5 parent: 6747 type: Transform - - uid: 18575 +- proto: CableHVStack + entities: + - uid: 4142 components: - - pos: 20.5,-72.5 + - rot: -1.5707963267948966 rad + pos: -20.99921,-55.415997 parent: 6747 type: Transform - - uid: 18576 + - uid: 6915 components: - - pos: 21.5,-72.5 + - pos: 54.459545,-23.356133 parent: 6747 type: Transform - - uid: 18577 +- proto: CableMV + entities: + - uid: 342 components: - - pos: 22.5,-72.5 + - pos: 29.5,29.5 parent: 6747 type: Transform - - uid: 18578 + - uid: 393 components: - - pos: 23.5,-72.5 + - pos: -42.5,-20.5 parent: 6747 type: Transform - - uid: 18579 + - uid: 819 components: - - pos: 24.5,-72.5 + - pos: 29.5,32.5 parent: 6747 type: Transform - - uid: 18580 + - uid: 1328 components: - - pos: 25.5,-72.5 + - pos: -27.5,-44.5 parent: 6747 type: Transform - - uid: 18581 + - uid: 1334 components: - - pos: 26.5,-72.5 + - pos: -27.5,-45.5 parent: 6747 type: Transform - - uid: 18582 + - uid: 1869 components: - - pos: 27.5,-72.5 + - pos: 22.5,-55.5 parent: 6747 type: Transform - - uid: 18583 + - uid: 1898 components: - - pos: 28.5,-72.5 + - pos: 21.5,-55.5 parent: 6747 type: Transform - - uid: 18584 + - uid: 1899 components: - - pos: 29.5,-72.5 + - pos: 20.5,-55.5 parent: 6747 type: Transform - - uid: 18585 + - uid: 1904 components: - - pos: 30.5,-72.5 + - pos: 22.5,-54.5 parent: 6747 type: Transform - - uid: 18586 + - uid: 2774 components: - - pos: 31.5,-72.5 + - pos: -42.5,-17.5 parent: 6747 type: Transform - - uid: 18587 + - uid: 2775 components: - - pos: 31.5,-71.5 + - pos: -41.5,-17.5 parent: 6747 type: Transform - - uid: 18588 + - uid: 2782 components: - - pos: 31.5,-70.5 + - pos: -41.5,-19.5 parent: 6747 type: Transform - - uid: 18589 + - uid: 2783 components: - - pos: 31.5,-69.5 + - pos: -42.5,-19.5 parent: 6747 type: Transform - - uid: 18590 + - uid: 2975 components: - - pos: 31.5,-68.5 + - pos: -42.5,-16.5 parent: 6747 type: Transform - - uid: 18591 + - uid: 4501 components: - - pos: 31.5,-67.5 + - pos: -15.5,-57.5 parent: 6747 type: Transform - - uid: 18592 + - uid: 5085 components: - - pos: 31.5,-66.5 + - pos: 14.5,-72.5 parent: 6747 type: Transform - - uid: 18593 + - uid: 5098 components: - - pos: 31.5,-65.5 + - pos: 18.5,-71.5 parent: 6747 type: Transform - - uid: 18594 + - uid: 5099 components: - - pos: 31.5,-64.5 + - pos: 16.5,-71.5 parent: 6747 type: Transform - - uid: 18595 + - uid: 5253 components: - - pos: 31.5,-63.5 + - pos: 18.5,-76.5 parent: 6747 type: Transform - - uid: 18596 + - uid: 6291 components: - - pos: 30.5,-63.5 + - pos: 73.5,-6.5 parent: 6747 type: Transform - - uid: 18598 + - uid: 6292 components: - - pos: 28.5,-63.5 + - pos: 72.5,-6.5 parent: 6747 type: Transform - - uid: 18599 + - uid: 6293 components: - - pos: 28.5,-64.5 + - pos: 71.5,-6.5 parent: 6747 type: Transform - - uid: 18600 + - uid: 6294 components: - - pos: 27.5,-64.5 + - pos: 70.5,-6.5 parent: 6747 type: Transform - - uid: 18601 + - uid: 6295 components: - - pos: 26.5,-64.5 + - pos: 69.5,-6.5 parent: 6747 type: Transform - - uid: 18602 + - uid: 6296 components: - - pos: 25.5,-64.5 + - pos: 68.5,-6.5 parent: 6747 type: Transform - - uid: 18603 + - uid: 10369 components: - - pos: 24.5,-64.5 + - pos: 12.5,4.5 parent: 6747 type: Transform - - uid: 18604 + - uid: 10370 components: - - pos: 23.5,-64.5 + - pos: 13.5,4.5 parent: 6747 type: Transform - - uid: 18605 + - uid: 12492 components: - - pos: 24.5,-65.5 + - pos: -6.5,-10.5 parent: 6747 type: Transform - - uid: 18606 + - uid: 12495 components: - - pos: 24.5,-66.5 + - pos: 8.5,-7.5 parent: 6747 type: Transform - - uid: 18607 + - uid: 12496 components: - - pos: 23.5,-66.5 + - pos: 8.5,-6.5 parent: 6747 type: Transform - - uid: 18608 + - uid: 12497 components: - - pos: 22.5,-66.5 + - pos: 7.5,-6.5 parent: 6747 type: Transform - - uid: 18609 + - uid: 12788 components: - - pos: 23.5,-63.5 + - pos: 7.5,-5.5 parent: 6747 type: Transform - - uid: 18610 + - uid: 12789 components: - - pos: 22.5,-63.5 + - pos: 7.5,-4.5 parent: 6747 type: Transform - - uid: 18611 + - uid: 12892 components: - - pos: 21.5,-63.5 + - pos: 60.5,13.5 parent: 6747 type: Transform - - uid: 18612 + - uid: 12961 components: - - pos: 20.5,-63.5 + - pos: 7.5,-3.5 parent: 6747 type: Transform - - uid: 18613 + - uid: 12962 components: - - pos: 19.5,-63.5 + - pos: 7.5,-2.5 parent: 6747 type: Transform - - uid: 18614 + - uid: 12968 components: - - pos: 19.5,-62.5 + - pos: 7.5,-1.5 parent: 6747 type: Transform - - uid: 18615 + - uid: 12969 components: - - pos: 19.5,-61.5 + - pos: 7.5,-0.5 parent: 6747 type: Transform - - uid: 18616 + - uid: 12970 components: - - pos: 19.5,-60.5 + - pos: 7.5,0.5 parent: 6747 type: Transform - - uid: 18617 + - uid: 12971 components: - - pos: 19.5,-59.5 + - pos: 7.5,1.5 parent: 6747 type: Transform - - uid: 18618 + - uid: 12972 components: - - pos: 19.5,-58.5 + - pos: 7.5,2.5 parent: 6747 type: Transform - - uid: 18619 + - uid: 12973 components: - - pos: 19.5,-57.5 + - pos: 8.5,2.5 parent: 6747 type: Transform - - uid: 18620 + - uid: 12974 components: - - pos: 19.5,-56.5 + - pos: 9.5,2.5 parent: 6747 type: Transform - - uid: 18621 + - uid: 12975 components: - - pos: 19.5,-55.5 + - pos: 10.5,2.5 parent: 6747 type: Transform - - uid: 18622 + - uid: 12976 components: - - pos: 22.5,-53.5 + - pos: 11.5,2.5 parent: 6747 type: Transform - - uid: 18624 + - uid: 13003 components: - - pos: 18.5,-55.5 + - pos: 61.5,13.5 parent: 6747 type: Transform - - uid: 18625 + - uid: 13379 components: - - pos: 17.5,-55.5 + - pos: 59.5,13.5 parent: 6747 type: Transform - - uid: 18626 + - uid: 13380 components: - - pos: 16.5,-55.5 + - pos: 58.5,13.5 parent: 6747 type: Transform - - uid: 18627 + - uid: 14644 components: - - pos: 15.5,-55.5 + - pos: 15.5,-71.5 parent: 6747 type: Transform - - uid: 18628 + - uid: 14645 components: - - pos: 14.5,-55.5 + - pos: 17.5,-71.5 parent: 6747 type: Transform - - uid: 18629 + - uid: 14649 components: - - pos: 13.5,-55.5 + - pos: 15.5,-72.5 parent: 6747 type: Transform - - uid: 18630 + - uid: 14655 components: - - pos: 13.5,-56.5 + - pos: 29.5,-63.5 parent: 6747 type: Transform - - uid: 18631 + - uid: 14668 components: - - pos: 13.5,-57.5 + - pos: 12.5,2.5 parent: 6747 type: Transform - - uid: 18641 + - uid: 15639 components: - - pos: 9.5,-63.5 + - pos: -17.5,-7.5 parent: 6747 type: Transform - - uid: 18642 + - uid: 15640 components: - - pos: 8.5,-63.5 + - pos: -17.5,-8.5 parent: 6747 type: Transform - - uid: 18643 + - uid: 15641 components: - - pos: 7.5,-63.5 + - pos: -17.5,-9.5 parent: 6747 type: Transform - - uid: 18644 + - uid: 15647 components: - - pos: 6.5,-63.5 + - pos: -17.5,-10.5 parent: 6747 type: Transform - - uid: 18645 + - uid: 15651 components: - - pos: 5.5,-63.5 + - pos: -16.5,-10.5 parent: 6747 type: Transform - - uid: 18646 + - uid: 15652 components: - - pos: 4.5,-63.5 + - pos: -15.5,-10.5 parent: 6747 type: Transform - - uid: 18647 + - uid: 15653 components: - - pos: 3.5,-63.5 + - pos: -14.5,-10.5 parent: 6747 type: Transform - - uid: 18648 + - uid: 15654 components: - - pos: 3.5,-62.5 + - pos: -13.5,-10.5 parent: 6747 type: Transform - - uid: 18649 + - uid: 15655 components: - - pos: 3.5,-61.5 + - pos: -12.5,-10.5 parent: 6747 type: Transform - - uid: 18650 + - uid: 15656 components: - - pos: 3.5,-60.5 + - pos: -11.5,-10.5 parent: 6747 type: Transform - - uid: 18651 + - uid: 15657 components: - - pos: 3.5,-59.5 + - pos: -10.5,-10.5 parent: 6747 type: Transform - - uid: 18652 + - uid: 15658 components: - - pos: 9.5,-64.5 + - pos: -9.5,-10.5 parent: 6747 type: Transform - - uid: 18653 + - uid: 15659 components: - - pos: 9.5,-65.5 + - pos: -7.5,-10.5 parent: 6747 type: Transform - - uid: 18654 + - uid: 15660 components: - - pos: 9.5,-66.5 + - pos: -5.5,-10.5 parent: 6747 type: Transform - - uid: 18655 + - uid: 15661 components: - - pos: 9.5,-67.5 + - pos: -8.5,-10.5 parent: 6747 type: Transform - - uid: 18656 + - uid: 15939 components: - - pos: 9.5,-68.5 + - pos: -49.5,-42.5 parent: 6747 type: Transform - - uid: 18657 + - uid: 15944 components: - - pos: 9.5,-69.5 + - pos: -49.5,-41.5 parent: 6747 type: Transform - - uid: 18658 + - uid: 15945 components: - - pos: 9.5,-70.5 + - pos: -48.5,-41.5 parent: 6747 type: Transform - - uid: 18659 + - uid: 15946 components: - - pos: 9.5,-71.5 + - pos: -47.5,-41.5 parent: 6747 type: Transform - - uid: 18660 + - uid: 15947 components: - - pos: 9.5,-72.5 + - pos: -46.5,-41.5 parent: 6747 type: Transform - - uid: 18661 + - uid: 15948 components: - - pos: -7.5,-82.5 + - pos: -45.5,-41.5 parent: 6747 type: Transform - - uid: 18662 + - uid: 15949 components: - - pos: -7.5,-83.5 + - pos: -44.5,-41.5 parent: 6747 type: Transform - - uid: 18663 + - uid: 15950 components: - - pos: -6.5,-83.5 + - pos: -43.5,-41.5 parent: 6747 type: Transform - - uid: 18664 + - uid: 15951 components: - - pos: -5.5,-83.5 + - pos: -36.5,-41.5 parent: 6747 type: Transform - - uid: 18665 + - uid: 15952 components: - - pos: -4.5,-83.5 + - pos: -37.5,-41.5 parent: 6747 type: Transform - - uid: 18666 + - uid: 15953 components: - - pos: -4.5,-82.5 + - pos: -38.5,-41.5 parent: 6747 type: Transform - - uid: 18667 + - uid: 15954 components: - - pos: -4.5,-81.5 + - pos: -36.5,-42.5 parent: 6747 type: Transform - - uid: 18668 + - uid: 15955 components: - - pos: -3.5,-81.5 + - pos: -35.5,-42.5 parent: 6747 type: Transform - - uid: 18669 + - uid: 15956 components: - - pos: -3.5,-80.5 + - pos: -34.5,-42.5 parent: 6747 type: Transform - - uid: 18670 + - uid: 15957 components: - - pos: -2.5,-80.5 + - pos: -33.5,-42.5 parent: 6747 type: Transform - - uid: 18671 + - uid: 15958 components: - - pos: -2.5,-79.5 + - pos: -32.5,-42.5 parent: 6747 type: Transform - - uid: 18672 + - uid: 15959 components: - - pos: -2.5,-78.5 + - pos: -31.5,-42.5 parent: 6747 type: Transform - - uid: 18673 + - uid: 15960 components: - - pos: -2.5,-77.5 + - pos: -30.5,-42.5 parent: 6747 type: Transform - - uid: 18674 + - uid: 15961 components: - - pos: -2.5,-76.5 + - pos: -29.5,-42.5 parent: 6747 type: Transform - - uid: 18675 + - uid: 15962 components: - - pos: -2.5,-75.5 + - pos: -28.5,-42.5 parent: 6747 type: Transform - - uid: 18676 + - uid: 15991 components: - - pos: -1.5,-75.5 + - pos: -27.5,-42.5 parent: 6747 type: Transform - - uid: 18677 + - uid: 15992 components: - - pos: -1.5,-74.5 + - pos: -26.5,-42.5 parent: 6747 type: Transform - - uid: 18678 + - uid: 15993 components: - - pos: -1.5,-73.5 + - pos: -25.5,-42.5 parent: 6747 type: Transform - - uid: 18679 + - uid: 15994 components: - - pos: -1.5,-72.5 + - pos: -24.5,-42.5 parent: 6747 type: Transform - - uid: 18680 + - uid: 15995 components: - - pos: -0.5,-72.5 + - pos: -23.5,-42.5 parent: 6747 type: Transform - - uid: 18681 + - uid: 15996 components: - - pos: 0.5,-72.5 + - pos: -22.5,-42.5 parent: 6747 type: Transform - - uid: 18682 + - uid: 15997 components: - - pos: 1.5,-72.5 + - pos: -22.5,-41.5 parent: 6747 type: Transform - - uid: 18683 + - uid: 15998 components: - - pos: 2.5,-72.5 + - pos: -22.5,-40.5 parent: 6747 type: Transform - - uid: 18684 + - uid: 15999 components: - - pos: 3.5,-72.5 + - pos: -22.5,-39.5 parent: 6747 type: Transform - - uid: 18685 + - uid: 16000 components: - - pos: 4.5,-72.5 + - pos: -21.5,-39.5 parent: 6747 type: Transform - - uid: 18686 + - uid: 16001 components: - - pos: 5.5,-72.5 + - pos: -20.5,-39.5 parent: 6747 type: Transform - - uid: 18687 + - uid: 16003 components: - - pos: 6.5,-72.5 + - pos: -19.5,-39.5 parent: 6747 type: Transform - - uid: 18688 + - uid: 16004 components: - - pos: 7.5,-72.5 + - pos: -18.5,-39.5 parent: 6747 type: Transform - - uid: 18689 + - uid: 16005 components: - - pos: 8.5,-72.5 + - pos: -17.5,-39.5 parent: 6747 type: Transform - - uid: 18690 + - uid: 16006 components: - - pos: 5.5,-83.5 + - pos: -16.5,-39.5 parent: 6747 type: Transform - - uid: 18691 + - uid: 16007 components: - - pos: 4.5,-83.5 + - pos: -15.5,-39.5 parent: 6747 type: Transform - - uid: 18692 + - uid: 16008 components: - - pos: 3.5,-83.5 + - pos: -14.5,-39.5 parent: 6747 type: Transform - - uid: 18693 + - uid: 16126 components: - - pos: 2.5,-83.5 + - pos: 13.5,-72.5 parent: 6747 type: Transform - - uid: 18694 + - uid: 16477 components: - - pos: 1.5,-83.5 + - pos: -13.5,-39.5 parent: 6747 type: Transform - - uid: 18695 + - uid: 16478 components: - - pos: 1.5,-82.5 + - pos: -13.5,-37.5 parent: 6747 type: Transform - - uid: 18696 + - uid: 16479 components: - - pos: 1.5,-81.5 + - pos: -13.5,-38.5 parent: 6747 type: Transform - - uid: 18697 + - uid: 16480 components: - - pos: 1.5,-80.5 + - pos: -13.5,-36.5 parent: 6747 type: Transform - - uid: 18698 + - uid: 16481 components: - - pos: 2.5,-80.5 + - pos: -12.5,-36.5 parent: 6747 type: Transform - - uid: 18699 + - uid: 16482 components: - - pos: 3.5,-80.5 + - pos: -11.5,-36.5 parent: 6747 type: Transform - - uid: 18700 + - uid: 16483 components: - - pos: 4.5,-80.5 + - pos: -10.5,-36.5 parent: 6747 type: Transform - - uid: 18701 + - uid: 16484 components: - - pos: 4.5,-79.5 + - pos: -9.5,-36.5 parent: 6747 type: Transform - - uid: 18702 + - uid: 16490 components: - - pos: 4.5,-78.5 + - pos: -8.5,-36.5 parent: 6747 type: Transform - - uid: 18703 + - uid: 16491 components: - - pos: 4.5,-77.5 + - pos: -7.5,-36.5 parent: 6747 type: Transform - - uid: 18704 + - uid: 16492 components: - - pos: 4.5,-76.5 + - pos: -6.5,-36.5 parent: 6747 type: Transform - - uid: 18705 + - uid: 16493 components: - - pos: 4.5,-75.5 + - pos: -5.5,-36.5 parent: 6747 type: Transform - - uid: 18706 + - uid: 16494 components: - - pos: 4.5,-74.5 + - pos: -4.5,-36.5 parent: 6747 type: Transform - - uid: 18707 + - uid: 16545 components: - - pos: 4.5,-73.5 + - pos: -3.5,-36.5 parent: 6747 type: Transform - - uid: 20062 + - uid: 16546 components: - - pos: -40.5,-17.5 + - pos: -2.5,-36.5 parent: 6747 type: Transform - - uid: 20063 + - uid: 16547 components: - - pos: -39.5,-17.5 + - pos: -1.5,-36.5 parent: 6747 type: Transform - - uid: 20064 + - uid: 16548 components: - - pos: -38.5,-17.5 + - pos: -0.5,-36.5 parent: 6747 type: Transform - - uid: 20065 + - uid: 16549 components: - - pos: -38.5,-18.5 + - pos: 0.5,-36.5 parent: 6747 type: Transform - - uid: 20066 + - uid: 16550 components: - - pos: -38.5,-19.5 + - pos: 1.5,-36.5 parent: 6747 type: Transform - - uid: 20067 + - uid: 16551 components: - - pos: -38.5,-20.5 + - pos: 2.5,-36.5 parent: 6747 type: Transform - - uid: 20068 + - uid: 16552 components: - - pos: -38.5,-21.5 + - pos: 2.5,-35.5 parent: 6747 type: Transform - - uid: 20069 + - uid: 16556 components: - - pos: -38.5,-22.5 + - pos: -10.5,-35.5 parent: 6747 type: Transform - - uid: 20070 + - uid: 16557 components: - - pos: -38.5,-23.5 + - pos: -10.5,-34.5 parent: 6747 type: Transform - - uid: 20071 + - uid: 16558 components: - - pos: -38.5,-24.5 + - pos: -9.5,-34.5 parent: 6747 type: Transform - - uid: 20072 + - uid: 16665 components: - - pos: -39.5,-24.5 + - pos: -8.5,-34.5 parent: 6747 type: Transform - - uid: 20073 + - uid: 16666 components: - - pos: -40.5,-24.5 + - pos: -7.5,-34.5 parent: 6747 type: Transform - - uid: 20074 + - uid: 16687 components: - - pos: -40.5,-25.5 + - pos: -6.5,-34.5 parent: 6747 type: Transform - - uid: 20075 + - uid: 16688 components: - - pos: -40.5,-26.5 + - pos: -5.5,-34.5 parent: 6747 type: Transform - - uid: 20076 + - uid: 16689 components: - - pos: -39.5,-26.5 + - pos: -4.5,-34.5 parent: 6747 type: Transform - - uid: 20077 + - uid: 16690 components: - - pos: -38.5,-26.5 + - pos: -3.5,-34.5 parent: 6747 type: Transform - - uid: 20078 + - uid: 16691 components: - - pos: -38.5,-27.5 + - pos: -10.5,-33.5 parent: 6747 type: Transform - - uid: 20079 + - uid: 16692 components: - - pos: -38.5,-28.5 + - pos: -10.5,-32.5 parent: 6747 type: Transform - - uid: 20080 + - uid: 16693 components: - - pos: -38.5,-29.5 + - pos: -10.5,-31.5 parent: 6747 type: Transform - - uid: 20081 + - uid: 16694 components: - - pos: -38.5,-30.5 + - pos: -10.5,-30.5 parent: 6747 type: Transform - - uid: 20082 + - uid: 16695 components: - - pos: -38.5,-31.5 + - pos: -10.5,-29.5 parent: 6747 type: Transform - - uid: 20083 + - uid: 16697 components: - - pos: -38.5,-32.5 + - pos: -10.5,-28.5 parent: 6747 type: Transform - - uid: 20084 + - uid: 16698 components: - - pos: -38.5,-33.5 + - pos: -10.5,-27.5 parent: 6747 type: Transform - - uid: 20085 + - uid: 16699 components: - - pos: -38.5,-34.5 + - pos: -10.5,-26.5 parent: 6747 type: Transform - - uid: 20086 + - uid: 16710 components: - - pos: -38.5,-35.5 + - pos: -9.5,-26.5 parent: 6747 type: Transform - - uid: 20087 + - uid: 16729 components: - - pos: -38.5,-36.5 + - pos: 7.5,-12.5 parent: 6747 type: Transform - - uid: 20088 + - uid: 16730 components: - - pos: -37.5,-36.5 + - pos: 7.5,-11.5 parent: 6747 type: Transform - - uid: 20089 + - uid: 16731 components: - - pos: -36.5,-36.5 + - pos: 7.5,-10.5 parent: 6747 type: Transform - - uid: 20090 + - uid: 16732 components: - - pos: -35.5,-36.5 + - pos: 5.5,-12.5 parent: 6747 type: Transform - - uid: 20091 + - uid: 16733 components: - - pos: -34.5,-36.5 + - pos: 5.5,-13.5 parent: 6747 type: Transform - - uid: 20092 + - uid: 16734 components: - - pos: -33.5,-36.5 + - pos: 4.5,-13.5 parent: 6747 type: Transform - - uid: 20093 + - uid: 16735 components: - - pos: -32.5,-36.5 + - pos: 3.5,-13.5 parent: 6747 type: Transform - - uid: 20094 + - uid: 16736 components: - - pos: -31.5,-36.5 + - pos: 2.5,-13.5 parent: 6747 type: Transform - - uid: 20095 + - uid: 16737 components: - - pos: -30.5,-36.5 + - pos: 2.5,-12.5 parent: 6747 type: Transform - - uid: 20096 + - uid: 16738 components: - - pos: -29.5,-36.5 + - pos: 2.5,-11.5 parent: 6747 type: Transform - - uid: 20097 + - uid: 16745 components: - - pos: -28.5,-36.5 + - pos: -8.5,-26.5 parent: 6747 type: Transform - - uid: 20098 + - uid: 16746 components: - - pos: -27.5,-36.5 + - pos: -7.5,-26.5 parent: 6747 type: Transform - - uid: 20099 + - uid: 16749 components: - - pos: -27.5,-35.5 + - pos: -6.5,-26.5 parent: 6747 type: Transform - - uid: 20100 + - uid: 16750 components: - - pos: -27.5,-34.5 + - pos: -5.5,-26.5 parent: 6747 type: Transform - - uid: 20263 + - uid: 16751 components: - - pos: -43.5,-15.5 + - pos: -4.5,-26.5 parent: 6747 type: Transform - - uid: 20264 + - uid: 16752 components: - - pos: -42.5,-15.5 + - pos: -3.5,-26.5 parent: 6747 type: Transform - - uid: 20265 + - uid: 16753 components: - - pos: -41.5,-15.5 + - pos: -2.5,-26.5 parent: 6747 type: Transform - - uid: 20466 + - uid: 16754 components: - - pos: 19.5,3.5 + - pos: -1.5,-26.5 parent: 6747 type: Transform - - uid: 20467 + - uid: 16755 components: - - pos: 20.5,3.5 + - pos: -0.5,-26.5 parent: 6747 type: Transform - - uid: 20468 + - uid: 16756 components: - - pos: 20.5,4.5 + - pos: 0.5,-26.5 parent: 6747 type: Transform - - uid: 20469 + - uid: 16757 components: - - pos: 20.5,5.5 + - pos: 1.5,-26.5 parent: 6747 type: Transform - - uid: 20470 + - uid: 16758 components: - - pos: 20.5,6.5 + - pos: -10.5,-25.5 parent: 6747 type: Transform - - uid: 20471 + - uid: 16759 components: - - pos: 20.5,7.5 + - pos: -10.5,-24.5 parent: 6747 type: Transform - - uid: 20472 + - uid: 16760 components: - - pos: 20.5,8.5 + - pos: -10.5,-23.5 parent: 6747 type: Transform - - uid: 20473 + - uid: 16761 components: - - pos: 19.5,8.5 + - pos: -10.5,-22.5 parent: 6747 type: Transform - - uid: 20474 + - uid: 16762 components: - - pos: 18.5,8.5 + - pos: -10.5,-21.5 parent: 6747 type: Transform - - uid: 20475 + - uid: 16763 components: - - pos: -4.5,-10.5 + - pos: -10.5,-20.5 parent: 6747 type: Transform - - uid: 20476 + - uid: 16764 components: - - pos: -3.5,-10.5 + - pos: -11.5,-20.5 parent: 6747 type: Transform - - uid: 20477 + - uid: 16765 components: - - pos: -2.5,-10.5 + - pos: -12.5,-20.5 parent: 6747 type: Transform - - uid: 20478 + - uid: 16766 components: - - pos: -1.5,-10.5 + - pos: -13.5,-20.5 parent: 6747 type: Transform - - uid: 20479 + - uid: 16767 components: - - pos: -0.5,-10.5 + - pos: -14.5,-20.5 parent: 6747 type: Transform - - uid: 20480 + - uid: 16775 components: - - pos: 0.5,-10.5 + - pos: -15.5,-20.5 parent: 6747 type: Transform - - uid: 20481 + - uid: 16776 components: - - pos: 1.5,-10.5 + - pos: -16.5,-20.5 parent: 6747 type: Transform - - uid: 20482 + - uid: 16778 components: - - pos: 2.5,-10.5 + - pos: -17.5,-20.5 parent: 6747 type: Transform - - uid: 20511 + - uid: 16779 components: - - pos: -0.5,-9.5 + - pos: -18.5,-20.5 parent: 6747 type: Transform - - uid: 20512 + - uid: 16780 components: - - pos: -0.5,-8.5 + - pos: -19.5,-20.5 parent: 6747 type: Transform - - uid: 20513 + - uid: 16781 components: - - pos: -0.5,-7.5 + - pos: -19.5,-19.5 parent: 6747 type: Transform - - uid: 20514 + - uid: 16782 components: - - pos: -0.5,-6.5 + - pos: -19.5,-18.5 parent: 6747 type: Transform - - uid: 20515 + - uid: 16783 components: - - pos: -0.5,-5.5 + - pos: 12.5,-72.5 parent: 6747 type: Transform - - uid: 20516 + - uid: 16784 components: - - pos: -0.5,-4.5 + - pos: 11.5,-72.5 parent: 6747 type: Transform - - uid: 20539 + - uid: 16785 components: - - pos: -0.5,-3.5 + - pos: 10.5,-72.5 parent: 6747 type: Transform - - uid: 20540 + - uid: 16795 components: - - pos: -0.5,-2.5 + - pos: -19.5,-17.5 parent: 6747 type: Transform - - uid: 20541 + - uid: 16800 components: - - pos: -0.5,-1.5 + - pos: -19.5,-16.5 parent: 6747 type: Transform - - uid: 20542 + - uid: 16850 components: - - pos: -0.5,-0.5 + - pos: -20.5,-16.5 parent: 6747 type: Transform - - uid: 20543 + - uid: 16862 components: - - pos: -0.5,0.5 + - pos: -21.5,-16.5 parent: 6747 type: Transform - - uid: 20544 + - uid: 17177 components: - - pos: -0.5,1.5 + - pos: 13.5,5.5 parent: 6747 type: Transform - - uid: 20545 + - uid: 17537 components: - - pos: 0.5,1.5 + - pos: -11.5,-25.5 parent: 6747 type: Transform - - uid: 20546 + - uid: 17538 components: - - pos: 1.5,1.5 + - pos: -12.5,-25.5 parent: 6747 type: Transform - - uid: 20547 + - uid: 17543 components: - - pos: -1.5,1.5 + - pos: -13.5,-25.5 parent: 6747 type: Transform - - uid: 20548 + - uid: 17546 components: - - pos: -2.5,1.5 + - pos: -14.5,-25.5 parent: 6747 type: Transform - - uid: 20549 + - uid: 17579 components: - - pos: -3.5,1.5 + - pos: -15.5,-25.5 parent: 6747 type: Transform - - uid: 20550 + - uid: 17592 components: - - pos: -4.5,1.5 + - pos: -16.5,-25.5 parent: 6747 type: Transform - - uid: 20551 + - uid: 17593 components: - - pos: -5.5,1.5 + - pos: -17.5,-25.5 parent: 6747 type: Transform - - uid: 20552 + - uid: 17654 components: - - pos: -6.5,1.5 + - pos: 12.5,32.5 parent: 6747 type: Transform - - uid: 20553 + - uid: 17655 components: - - pos: -7.5,1.5 + - pos: 11.5,32.5 parent: 6747 type: Transform - - uid: 20554 + - uid: 17656 components: - - pos: -8.5,1.5 + - pos: 10.5,32.5 parent: 6747 type: Transform - - uid: 20555 + - uid: 17657 components: - - pos: -8.5,2.5 + - pos: 9.5,32.5 parent: 6747 type: Transform - - uid: 20556 + - uid: 17658 components: - - pos: -8.5,3.5 + - pos: 8.5,32.5 parent: 6747 type: Transform - - uid: 20557 + - uid: 17659 components: - - pos: -9.5,1.5 + - pos: 7.5,32.5 parent: 6747 type: Transform - - uid: 20558 + - uid: 17660 components: - - pos: -10.5,1.5 + - pos: 6.5,32.5 parent: 6747 type: Transform - - uid: 20559 + - uid: 17661 components: - - pos: -11.5,1.5 + - pos: 5.5,32.5 parent: 6747 type: Transform - - uid: 20560 + - uid: 17662 components: - - pos: -11.5,0.5 + - pos: 4.5,32.5 parent: 6747 type: Transform - - uid: 20561 + - uid: 17663 components: - - pos: -11.5,-0.5 + - pos: 3.5,32.5 parent: 6747 type: Transform - - uid: 20562 + - uid: 17664 components: - - pos: -11.5,-1.5 + - pos: 2.5,32.5 parent: 6747 type: Transform - - uid: 20563 + - uid: 17665 components: - - pos: -11.5,-2.5 + - pos: 1.5,32.5 parent: 6747 type: Transform - - uid: 20564 + - uid: 17666 components: - - pos: -11.5,-3.5 + - pos: 0.5,32.5 parent: 6747 type: Transform - - uid: 20565 + - uid: 17667 components: - - pos: -11.5,-4.5 + - pos: -0.5,32.5 parent: 6747 type: Transform - - uid: 20566 + - uid: 17668 components: - - pos: -12.5,-4.5 + - pos: -1.5,32.5 parent: 6747 type: Transform - - uid: 20567 + - uid: 17672 components: - - pos: -13.5,-4.5 + - pos: -2.5,32.5 parent: 6747 type: Transform - - uid: 20568 + - uid: 17673 components: - - pos: -14.5,-4.5 + - pos: -3.5,32.5 parent: 6747 type: Transform - - uid: 20569 + - uid: 17674 components: - - pos: -12.5,1.5 + - pos: -4.5,32.5 parent: 6747 type: Transform - - uid: 20570 + - uid: 17675 components: - - pos: -13.5,1.5 + - pos: -5.5,32.5 parent: 6747 type: Transform - - uid: 20571 + - uid: 17676 components: - - pos: -14.5,1.5 + - pos: -5.5,31.5 parent: 6747 type: Transform - - uid: 20572 + - uid: 17723 components: - - pos: -15.5,1.5 + - pos: 54.5,15.5 parent: 6747 type: Transform - - uid: 20573 + - uid: 17725 components: - - pos: -16.5,1.5 + - pos: 55.5,15.5 parent: 6747 type: Transform - - uid: 20574 + - uid: 17726 components: - - pos: -16.5,0.5 + - pos: 40.5,21.5 parent: 6747 type: Transform - - uid: 20575 + - uid: 17727 components: - - pos: -16.5,-0.5 + - pos: 40.5,22.5 parent: 6747 type: Transform - - uid: 20576 + - uid: 17728 components: - - pos: -16.5,-1.5 + - pos: 40.5,23.5 parent: 6747 type: Transform - - uid: 20577 + - uid: 17729 components: - - pos: -17.5,-1.5 + - pos: 40.5,24.5 parent: 6747 type: Transform - - uid: 20578 + - uid: 17730 components: - - pos: -18.5,-1.5 + - pos: 40.5,25.5 parent: 6747 type: Transform - - uid: 20579 + - uid: 17731 components: - - pos: -19.5,-1.5 + - pos: 40.5,26.5 parent: 6747 type: Transform - - uid: 20580 + - uid: 17732 components: - - pos: -20.5,-1.5 + - pos: 40.5,27.5 parent: 6747 type: Transform - - uid: 20581 + - uid: 17733 components: - - pos: -21.5,-1.5 + - pos: 40.5,28.5 parent: 6747 type: Transform - - uid: 20582 + - uid: 17734 components: - - pos: -22.5,-1.5 + - pos: 40.5,29.5 parent: 6747 type: Transform - - uid: 20583 + - uid: 17735 components: - - pos: -23.5,-1.5 + - pos: 39.5,29.5 parent: 6747 type: Transform - - uid: 20584 + - uid: 17773 components: - - pos: -24.5,-1.5 + - pos: 29.5,35.5 parent: 6747 type: Transform - - uid: 20585 + - uid: 17786 components: - - pos: -25.5,-1.5 + - pos: 47.5,21.5 parent: 6747 type: Transform - - uid: 20586 + - uid: 17787 components: - - pos: -26.5,-1.5 + - pos: 46.5,21.5 parent: 6747 type: Transform - - uid: 20587 + - uid: 17788 components: - - pos: -27.5,-1.5 + - pos: 45.5,21.5 parent: 6747 type: Transform - - uid: 20588 + - uid: 17789 components: - - pos: -28.5,-1.5 + - pos: 44.5,21.5 parent: 6747 type: Transform - - uid: 20589 + - uid: 17790 components: - - pos: -28.5,-0.5 + - pos: 43.5,21.5 parent: 6747 type: Transform - - uid: 20590 + - uid: 17791 components: - - pos: -28.5,0.5 + - pos: 41.5,21.5 parent: 6747 type: Transform - - uid: 20591 + - uid: 17792 components: - - pos: -29.5,-1.5 + - pos: 42.5,21.5 parent: 6747 type: Transform - - uid: 20592 + - uid: 17798 components: - - pos: -30.5,-1.5 + - pos: 48.5,13.5 parent: 6747 type: Transform - - uid: 20593 + - uid: 17799 components: - - pos: -31.5,-1.5 + - pos: 48.5,14.5 parent: 6747 type: Transform - - uid: 20594 + - uid: 17800 components: - - pos: -32.5,-1.5 + - pos: 73.5,11.5 parent: 6747 type: Transform - - uid: 20595 + - uid: 17801 components: - - pos: -33.5,-1.5 + - pos: 74.5,11.5 parent: 6747 type: Transform - - uid: 20596 + - uid: 17802 components: - - pos: -34.5,-1.5 + - pos: 75.5,11.5 parent: 6747 type: Transform - - uid: 20597 + - uid: 17803 components: - - pos: -35.5,-1.5 + - pos: 76.5,11.5 parent: 6747 type: Transform - - uid: 20598 + - uid: 18050 components: - - pos: -36.5,-1.5 + - pos: -18.5,-25.5 parent: 6747 type: Transform - - uid: 20635 + - uid: 18051 components: - - pos: -15.5,-56.5 + - pos: -19.5,-25.5 parent: 6747 type: Transform - - uid: 20647 + - uid: 18052 components: - - pos: -37.5,-1.5 + - pos: -20.5,-25.5 parent: 6747 type: Transform - - uid: 20651 + - uid: 18175 components: - - pos: -38.5,-1.5 + - pos: -21.5,-25.5 parent: 6747 type: Transform - - uid: 20652 + - uid: 18176 components: - - pos: -39.5,-1.5 + - pos: -21.5,-26.5 parent: 6747 type: Transform - - uid: 20653 + - uid: 18181 components: - - pos: -39.5,-0.5 + - pos: 58.5,-15.5 parent: 6747 type: Transform - - uid: 20654 + - uid: 18182 components: - - pos: -39.5,0.5 + - pos: 57.5,-15.5 parent: 6747 type: Transform - - uid: 20655 + - uid: 18183 components: - - pos: -39.5,1.5 + - pos: 57.5,-14.5 parent: 6747 type: Transform - - uid: 20656 + - uid: 18184 components: - - pos: -33.5,-2.5 + - pos: 56.5,-15.5 parent: 6747 type: Transform - - uid: 20657 + - uid: 18185 components: - - pos: -33.5,-3.5 + - pos: 55.5,-15.5 parent: 6747 type: Transform - - uid: 20658 + - uid: 18186 components: - - pos: -34.5,-3.5 + - pos: 54.5,-15.5 parent: 6747 type: Transform - - uid: 20659 + - uid: 18187 components: - - pos: -33.5,-48.5 + - pos: 54.5,-14.5 parent: 6747 type: Transform - - uid: 20660 + - uid: 18188 components: - - pos: -33.5,-47.5 + - pos: 54.5,-13.5 parent: 6747 type: Transform - - uid: 20661 + - uid: 18189 components: - - pos: -33.5,-46.5 + - pos: 54.5,-12.5 parent: 6747 type: Transform - - uid: 20662 + - uid: 18190 components: - - pos: -31.5,-46.5 + - pos: 54.5,-11.5 parent: 6747 type: Transform - - uid: 21048 + - uid: 18191 components: - - pos: -32.5,-46.5 + - pos: 54.5,-10.5 parent: 6747 type: Transform - - uid: 21049 + - uid: 18192 components: - - pos: -30.5,-46.5 + - pos: 54.5,-9.5 parent: 6747 type: Transform - - uid: 21050 + - uid: 18193 components: - - pos: -30.5,-47.5 + - pos: 54.5,-8.5 parent: 6747 type: Transform - - uid: 21051 + - uid: 18194 components: - - pos: -30.5,-48.5 + - pos: 54.5,-7.5 parent: 6747 type: Transform - - uid: 21053 + - uid: 18195 components: - - pos: -30.5,-49.5 + - pos: 54.5,-6.5 parent: 6747 type: Transform - - uid: 21054 + - uid: 18196 components: - - pos: -30.5,-50.5 + - pos: 54.5,-5.5 parent: 6747 type: Transform - - uid: 21055 + - uid: 18197 components: - - pos: -30.5,-51.5 + - pos: 54.5,-4.5 parent: 6747 type: Transform - - uid: 21056 + - uid: 18198 components: - - pos: -30.5,-52.5 + - pos: 54.5,-3.5 parent: 6747 type: Transform - - uid: 21057 + - uid: 18199 components: - - pos: -29.5,-52.5 + - pos: 54.5,-2.5 parent: 6747 type: Transform - - uid: 21058 + - uid: 18200 components: - - pos: -28.5,-52.5 + - pos: 53.5,-2.5 parent: 6747 type: Transform - - uid: 21059 + - uid: 18201 components: - - pos: -29.5,-46.5 + - pos: 52.5,-2.5 parent: 6747 type: Transform - - uid: 21060 + - uid: 18202 components: - - pos: -28.5,-46.5 + - pos: 51.5,-2.5 parent: 6747 type: Transform - - uid: 21061 + - uid: 18203 components: - - pos: -27.5,-46.5 + - pos: 50.5,-2.5 parent: 6747 type: Transform - - uid: 21062 + - uid: 18204 components: - - pos: -27.5,-47.5 + - pos: 49.5,-2.5 parent: 6747 type: Transform - - uid: 21063 + - uid: 18205 components: - - pos: -27.5,-48.5 + - pos: 48.5,-2.5 parent: 6747 type: Transform - - uid: 21064 + - uid: 18206 components: - - pos: -26.5,-48.5 + - pos: 47.5,-2.5 parent: 6747 type: Transform - - uid: 21065 + - uid: 18207 components: - - pos: -25.5,-48.5 + - pos: 46.5,-2.5 parent: 6747 type: Transform - - uid: 21066 + - uid: 18208 components: - - pos: -24.5,-48.5 + - pos: 45.5,-2.5 parent: 6747 type: Transform - - uid: 21067 + - uid: 18209 components: - - pos: -23.5,-48.5 + - pos: 44.5,-2.5 parent: 6747 type: Transform - - uid: 21068 + - uid: 18210 components: - - pos: -23.5,-49.5 + - pos: 43.5,-2.5 parent: 6747 type: Transform - - uid: 21069 + - uid: 18211 components: - - pos: -23.5,-50.5 + - pos: 42.5,-2.5 parent: 6747 type: Transform - - uid: 21070 + - uid: 18212 components: - - pos: -23.5,-51.5 + - pos: 41.5,-2.5 parent: 6747 type: Transform - - uid: 21071 + - uid: 18213 components: - - pos: -23.5,-52.5 + - pos: 40.5,-2.5 parent: 6747 type: Transform - - uid: 21072 + - uid: 18214 components: - - pos: -23.5,-53.5 + - pos: 39.5,-2.5 parent: 6747 type: Transform - - uid: 21073 + - uid: 18215 components: - - pos: -23.5,-54.5 + - pos: 38.5,-2.5 parent: 6747 type: Transform - - uid: 21074 + - uid: 18216 components: - - pos: -23.5,-55.5 + - pos: 37.5,-2.5 parent: 6747 type: Transform - - uid: 21075 + - uid: 18217 components: - - pos: -23.5,-56.5 + - pos: 36.5,-2.5 parent: 6747 type: Transform - - uid: 21076 + - uid: 18218 components: - - pos: -23.5,-57.5 + - pos: 35.5,-2.5 parent: 6747 type: Transform - - uid: 21077 + - uid: 18219 components: - - pos: -22.5,-57.5 + - pos: 34.5,-2.5 parent: 6747 type: Transform - - uid: 21078 + - uid: 18220 components: - - pos: -21.5,-57.5 + - pos: 33.5,-2.5 parent: 6747 type: Transform - - uid: 21079 + - uid: 18221 components: - - pos: -20.5,-57.5 + - pos: 32.5,-2.5 parent: 6747 type: Transform - - uid: 21080 + - uid: 18222 components: - - pos: -19.5,-57.5 + - pos: 32.5,-1.5 parent: 6747 type: Transform - - uid: 21081 + - uid: 18223 components: - - pos: -18.5,-57.5 + - pos: 32.5,-0.5 parent: 6747 type: Transform - - uid: 21082 + - uid: 18224 components: - - pos: -17.5,-57.5 + - pos: 32.5,0.5 parent: 6747 type: Transform - - uid: 21083 + - uid: 18225 components: - - pos: -16.5,-57.5 + - pos: 32.5,1.5 parent: 6747 type: Transform - - uid: 21087 + - uid: 18226 components: - - pos: -44.5,-15.5 + - pos: 32.5,2.5 parent: 6747 type: Transform - - uid: 21088 + - uid: 18227 components: - - pos: -45.5,-15.5 + - pos: 33.5,2.5 parent: 6747 type: Transform - - uid: 21117 + - uid: 18228 components: - - pos: -42.5,-41.5 + - pos: 34.5,2.5 parent: 6747 type: Transform - - uid: 21118 + - uid: 18247 components: - - pos: -41.5,-41.5 + - pos: 58.5,-17.5 parent: 6747 type: Transform - - uid: 21119 + - uid: 18248 components: - - pos: -40.5,-41.5 + - pos: 57.5,-17.5 parent: 6747 type: Transform - - uid: 21120 + - uid: 18249 components: - - pos: -39.5,-41.5 + - pos: 57.5,-18.5 parent: 6747 type: Transform - - uid: 21121 + - uid: 18250 components: - - pos: -39.5,-42.5 + - pos: 56.5,-17.5 parent: 6747 type: Transform - - uid: 21122 + - uid: 18251 components: - - pos: -39.5,-43.5 + - pos: 55.5,-17.5 parent: 6747 type: Transform - - uid: 21123 + - uid: 18252 components: - - pos: -39.5,-44.5 + - pos: 54.5,-17.5 parent: 6747 type: Transform - - uid: 21124 + - uid: 18253 components: - - pos: -39.5,-45.5 + - pos: 54.5,-18.5 parent: 6747 type: Transform - - uid: 21125 + - uid: 18254 components: - - pos: -39.5,-46.5 + - pos: 54.5,-19.5 parent: 6747 type: Transform - - uid: 21126 + - uid: 18255 components: - - pos: -39.5,-47.5 + - pos: 54.5,-20.5 parent: 6747 type: Transform - - uid: 21127 + - uid: 18256 components: - - pos: -39.5,-48.5 + - pos: 54.5,-21.5 parent: 6747 type: Transform - - uid: 21128 + - uid: 18257 components: - - pos: -39.5,-49.5 + - pos: 53.5,-21.5 parent: 6747 type: Transform - - uid: 21129 + - uid: 18258 components: - - pos: -39.5,-50.5 + - pos: 52.5,-21.5 parent: 6747 type: Transform - - uid: 21130 + - uid: 18259 components: - - pos: -39.5,-51.5 + - pos: 51.5,-21.5 parent: 6747 type: Transform - - uid: 21131 + - uid: 18260 components: - - pos: -39.5,-52.5 + - pos: 50.5,-21.5 parent: 6747 type: Transform - - uid: 21132 + - uid: 18261 components: - - pos: -38.5,-52.5 + - pos: 49.5,-21.5 parent: 6747 type: Transform - - uid: 21133 + - uid: 18262 components: - - pos: -37.5,-52.5 + - pos: 48.5,-21.5 parent: 6747 type: Transform - - uid: 21134 + - uid: 18263 components: - - pos: -36.5,-52.5 + - pos: 47.5,-21.5 parent: 6747 type: Transform - - uid: 21135 + - uid: 18264 components: - - pos: -35.5,-52.5 + - pos: 46.5,-21.5 parent: 6747 type: Transform - - uid: 21136 + - uid: 18265 components: - - pos: -35.5,-53.5 + - pos: 45.5,-21.5 parent: 6747 type: Transform - - uid: 21137 + - uid: 18266 components: - - pos: -35.5,-54.5 + - pos: 44.5,-21.5 parent: 6747 type: Transform - - uid: 21138 + - uid: 18267 components: - - pos: -35.5,-55.5 + - pos: 43.5,-21.5 parent: 6747 type: Transform - - uid: 21139 + - uid: 18268 components: - - pos: -35.5,-56.5 + - pos: 42.5,-21.5 parent: 6747 type: Transform - - uid: 21140 + - uid: 18269 components: - - pos: -34.5,-56.5 + - pos: 41.5,-21.5 parent: 6747 type: Transform - - uid: 21141 + - uid: 18270 components: - - pos: -34.5,-57.5 + - pos: 40.5,-21.5 parent: 6747 type: Transform - - uid: 21142 + - uid: 18271 components: - - pos: -34.5,-58.5 + - pos: 39.5,-21.5 parent: 6747 type: Transform - - uid: 21143 + - uid: 18272 components: - - pos: -34.5,-59.5 + - pos: 38.5,-21.5 parent: 6747 type: Transform - - uid: 21144 + - uid: 18273 components: - - pos: -34.5,-60.5 + - pos: 37.5,-21.5 parent: 6747 type: Transform - - uid: 21145 + - uid: 18274 components: - - pos: -34.5,-61.5 + - pos: 36.5,-21.5 parent: 6747 type: Transform - - uid: 21146 + - uid: 18275 components: - - pos: -33.5,-61.5 + - pos: 35.5,-21.5 parent: 6747 type: Transform - - uid: 21147 + - uid: 18276 components: - - pos: -32.5,-61.5 + - pos: 34.5,-21.5 parent: 6747 type: Transform - - uid: 21148 + - uid: 18277 components: - - pos: -31.5,-61.5 + - pos: 33.5,-21.5 parent: 6747 type: Transform - - uid: 21149 + - uid: 18278 components: - - pos: -30.5,-61.5 + - pos: 32.5,-21.5 parent: 6747 type: Transform - - uid: 21150 + - uid: 18279 components: - - pos: -29.5,-61.5 + - pos: 31.5,-21.5 parent: 6747 type: Transform - - uid: 21151 + - uid: 18280 components: - - pos: -28.5,-61.5 + - pos: 30.5,-21.5 parent: 6747 type: Transform - - uid: 21152 + - uid: 18281 components: - - pos: -27.5,-61.5 + - pos: 29.5,-21.5 parent: 6747 type: Transform - - uid: 21153 + - uid: 18282 components: - - pos: -26.5,-61.5 + - pos: 29.5,-20.5 parent: 6747 type: Transform - - uid: 21154 + - uid: 18283 components: - - pos: -25.5,-61.5 + - pos: 29.5,-19.5 parent: 6747 type: Transform - - uid: 21155 + - uid: 18284 components: - - pos: -24.5,-61.5 + - pos: 29.5,-18.5 parent: 6747 type: Transform - - uid: 21156 + - uid: 18285 components: - - pos: -23.5,-61.5 + - pos: 29.5,-17.5 parent: 6747 type: Transform - - uid: 21157 + - uid: 18286 components: - - pos: -22.5,-61.5 + - pos: 29.5,-16.5 parent: 6747 type: Transform - - uid: 21158 + - uid: 18287 components: - - pos: -22.5,-62.5 + - pos: 29.5,-15.5 parent: 6747 type: Transform - - uid: 21159 + - uid: 18288 components: - - pos: -21.5,-62.5 + - pos: 29.5,-14.5 parent: 6747 type: Transform - - uid: 21160 + - uid: 18289 components: - - pos: -20.5,-62.5 + - pos: 29.5,-13.5 parent: 6747 type: Transform - - uid: 21161 + - uid: 18290 components: - - pos: -19.5,-62.5 + - pos: 29.5,-12.5 parent: 6747 type: Transform - - uid: 21162 + - uid: 18291 components: - - pos: -18.5,-62.5 + - pos: 29.5,-11.5 parent: 6747 type: Transform - - uid: 21163 + - uid: 18293 components: - - pos: -17.5,-62.5 + - pos: 51.5,-20.5 parent: 6747 type: Transform - - uid: 21164 + - uid: 18294 components: - - pos: -16.5,-62.5 + - pos: 51.5,-19.5 parent: 6747 type: Transform - - uid: 21165 + - uid: 18295 components: - - pos: -15.5,-62.5 + - pos: 51.5,-18.5 parent: 6747 type: Transform - - uid: 21166 + - uid: 18296 components: - - pos: -14.5,-62.5 + - pos: 50.5,-18.5 parent: 6747 type: Transform - - uid: 21167 + - uid: 18297 components: - - pos: -13.5,-62.5 + - pos: 49.5,-18.5 parent: 6747 type: Transform - - uid: 21169 + - uid: 18298 components: - - pos: -13.5,-63.5 + - pos: 49.5,-17.5 parent: 6747 type: Transform - - uid: 21170 + - uid: 18299 components: - - pos: -13.5,-64.5 + - pos: 49.5,-16.5 parent: 6747 type: Transform - - uid: 21171 + - uid: 18300 components: - - pos: -13.5,-65.5 + - pos: 49.5,-15.5 parent: 6747 type: Transform - - uid: 21172 + - uid: 18301 components: - - pos: -13.5,-66.5 + - pos: 49.5,-14.5 parent: 6747 type: Transform - - uid: 21173 + - uid: 18302 components: - - pos: -13.5,-67.5 + - pos: 49.5,-13.5 parent: 6747 type: Transform - - uid: 21174 + - uid: 18303 components: - - pos: -13.5,-68.5 + - pos: 49.5,-12.5 parent: 6747 type: Transform - - uid: 21175 + - uid: 18304 components: - - pos: -12.5,-68.5 + - pos: 49.5,-11.5 parent: 6747 type: Transform - - uid: 21176 + - uid: 18311 components: - - pos: -11.5,-68.5 + - pos: 7.5,-9.5 parent: 6747 type: Transform - - uid: 21177 + - uid: 18312 components: - - pos: -10.5,-68.5 + - pos: 8.5,-9.5 parent: 6747 type: Transform - - uid: 21178 + - uid: 18313 components: - - pos: -9.5,-68.5 + - pos: 9.5,-9.5 parent: 6747 type: Transform - - uid: 21179 + - uid: 18314 components: - - pos: -8.5,-68.5 + - pos: 10.5,-9.5 parent: 6747 type: Transform - - uid: 21180 + - uid: 18315 components: - - pos: -7.5,-68.5 + - pos: 11.5,-9.5 parent: 6747 type: Transform - - uid: 21181 + - uid: 18316 components: - - pos: -6.5,-68.5 + - pos: 12.5,-9.5 parent: 6747 type: Transform - - uid: 21182 + - uid: 18317 components: - - pos: -5.5,-68.5 + - pos: 13.5,-9.5 parent: 6747 type: Transform - - uid: 21183 + - uid: 18318 components: - - pos: -4.5,-68.5 + - pos: 14.5,-9.5 parent: 6747 type: Transform - - uid: 21184 + - uid: 18319 components: - - pos: -3.5,-68.5 + - pos: 15.5,-9.5 parent: 6747 type: Transform - - uid: 21185 + - uid: 18320 components: - - pos: -3.5,-67.5 + - pos: 16.5,-9.5 parent: 6747 type: Transform - - uid: 21186 + - uid: 18321 components: - - pos: -3.5,-66.5 + - pos: 17.5,-9.5 parent: 6747 type: Transform - - uid: 21187 + - uid: 18322 components: - - pos: -3.5,-65.5 + - pos: 18.5,-9.5 parent: 6747 type: Transform - - uid: 21188 + - uid: 18323 components: - - pos: -3.5,-64.5 + - pos: 18.5,-10.5 parent: 6747 type: Transform - - uid: 21189 + - uid: 18324 components: - - pos: -3.5,-63.5 + - pos: 18.5,-11.5 parent: 6747 type: Transform - - uid: 21190 + - uid: 18325 components: - - pos: -3.5,-62.5 + - pos: 18.5,-12.5 parent: 6747 type: Transform - - uid: 21191 + - uid: 18326 components: - - pos: -3.5,-61.5 + - pos: 18.5,-13.5 parent: 6747 type: Transform - - uid: 21192 + - uid: 18327 components: - - pos: -3.5,-60.5 + - pos: 18.5,-14.5 parent: 6747 type: Transform - - uid: 21193 + - uid: 18328 components: - - pos: -3.5,-59.5 + - pos: 18.5,-15.5 parent: 6747 type: Transform - - uid: 21194 + - uid: 18329 components: - - pos: -3.5,-58.5 + - pos: 18.5,-16.5 parent: 6747 type: Transform - - uid: 21195 + - uid: 18330 components: - - pos: -3.5,-57.5 + - pos: 18.5,-17.5 parent: 6747 type: Transform - - uid: 21196 + - uid: 18331 components: - - pos: -3.5,-56.5 + - pos: 18.5,-18.5 parent: 6747 type: Transform - - uid: 21197 + - uid: 18332 components: - - pos: -3.5,-55.5 + - pos: 18.5,-19.5 parent: 6747 type: Transform - - uid: 21198 + - uid: 18333 components: - - pos: -3.5,-54.5 + - pos: 18.5,-20.5 parent: 6747 type: Transform - - uid: 21199 + - uid: 18334 components: - - pos: -3.5,-53.5 + - pos: 17.5,-20.5 parent: 6747 type: Transform - - uid: 21200 + - uid: 18335 components: - - pos: -3.5,-52.5 + - pos: 18.5,-21.5 parent: 6747 type: Transform - - uid: 21201 + - uid: 18336 components: - - pos: -3.5,-51.5 + - pos: 18.5,-22.5 parent: 6747 type: Transform - - uid: 21202 + - uid: 18337 components: - - pos: -3.5,-50.5 + - pos: 19.5,-22.5 parent: 6747 type: Transform - - uid: 21203 + - uid: 18338 components: - - pos: -3.5,-49.5 + - pos: 20.5,-22.5 parent: 6747 type: Transform - - uid: 21204 + - uid: 18339 components: - - pos: -3.5,-48.5 + - pos: 21.5,-22.5 parent: 6747 type: Transform - - uid: 21205 + - uid: 18340 components: - - pos: -4.5,-54.5 + - pos: 22.5,-22.5 parent: 6747 type: Transform - - uid: 21206 + - uid: 18341 components: - - pos: -5.5,-54.5 + - pos: 23.5,-22.5 parent: 6747 type: Transform - - uid: 21207 + - uid: 18342 components: - - pos: -6.5,-54.5 + - pos: 23.5,-21.5 parent: 6747 type: Transform - - uid: 21208 + - uid: 18343 components: - - pos: -7.5,-54.5 + - pos: 23.5,-20.5 parent: 6747 type: Transform - - uid: 21209 + - uid: 18344 components: - - pos: -7.5,-55.5 + - pos: 17.5,-22.5 parent: 6747 type: Transform - - uid: 21210 + - uid: 18345 components: - - pos: -7.5,-56.5 + - pos: 16.5,-22.5 parent: 6747 type: Transform - - uid: 21211 + - uid: 18346 components: - - pos: -7.5,-57.5 + - pos: 15.5,-22.5 parent: 6747 type: Transform - - uid: 21212 + - uid: 18347 components: - - pos: -7.5,-58.5 + - pos: 14.5,-22.5 parent: 6747 type: Transform - - uid: 21213 + - uid: 18348 components: - - pos: -7.5,-59.5 + - pos: 13.5,-22.5 parent: 6747 type: Transform - - uid: 21214 + - uid: 18349 components: - - pos: -8.5,-59.5 + - pos: 12.5,-22.5 parent: 6747 type: Transform - - uid: 21215 + - uid: 18350 components: - - pos: -8.5,-60.5 + - pos: 11.5,-22.5 parent: 6747 type: Transform - - uid: 21216 + - uid: 18361 components: - - pos: -8.5,-61.5 + - pos: 11.5,-23.5 parent: 6747 type: Transform - - uid: 21217 + - uid: 18362 components: - - pos: -8.5,-62.5 + - pos: 11.5,-24.5 parent: 6747 type: Transform - - uid: 21218 + - uid: 18363 components: - - pos: -8.5,-63.5 + - pos: 11.5,-25.5 parent: 6747 type: Transform - - uid: 21979 + - uid: 18364 components: - - pos: 19.5,-76.5 + - pos: 11.5,-26.5 parent: 6747 type: Transform - - uid: 22383 + - uid: 18365 components: - - pos: 13.5,3.5 + - pos: 11.5,-27.5 parent: 6747 type: Transform - - uid: 23965 + - uid: 18366 components: - - pos: 44.5,-41.5 + - pos: 11.5,-28.5 parent: 6747 type: Transform - - uid: 23966 + - uid: 18367 components: - - pos: 44.5,-42.5 + - pos: 16.5,-23.5 parent: 6747 type: Transform - - uid: 23967 + - uid: 18368 components: - - pos: 44.5,-43.5 + - pos: 16.5,-24.5 parent: 6747 type: Transform - - uid: 24712 + - uid: 18369 components: - - pos: -45.5,-5.5 + - pos: 16.5,-25.5 parent: 6747 type: Transform - - uid: 24714 + - uid: 18370 components: - - pos: -61.5,7.5 + - pos: 16.5,-26.5 parent: 6747 type: Transform - - uid: 24715 + - uid: 18371 components: - - pos: -61.5,6.5 + - pos: 16.5,-27.5 parent: 6747 type: Transform - - uid: 24716 + - uid: 18372 components: - - pos: -61.5,5.5 + - pos: 16.5,-28.5 parent: 6747 type: Transform - - uid: 24717 + - uid: 18373 components: - - pos: -61.5,4.5 + - pos: 16.5,-29.5 parent: 6747 type: Transform - - uid: 24718 + - uid: 18374 components: - - pos: -61.5,3.5 + - pos: 16.5,-30.5 parent: 6747 type: Transform - - uid: 24719 + - uid: 18375 components: - - pos: -61.5,2.5 + - pos: 16.5,-32.5 parent: 6747 type: Transform - - uid: 24720 + - uid: 18376 components: - - pos: -60.5,2.5 + - pos: 16.5,-31.5 parent: 6747 type: Transform - - uid: 24721 + - uid: 18377 components: - - pos: -59.5,2.5 + - pos: 16.5,-33.5 parent: 6747 type: Transform - - uid: 24722 + - uid: 18378 components: - - pos: -58.5,2.5 + - pos: 17.5,-33.5 parent: 6747 type: Transform - - uid: 24723 + - uid: 18379 components: - - pos: -57.5,2.5 + - pos: 18.5,-33.5 parent: 6747 type: Transform - - uid: 24724 + - uid: 18380 components: - - pos: -56.5,2.5 + - pos: 19.5,-33.5 parent: 6747 type: Transform - - uid: 24725 + - uid: 18381 components: - - pos: -55.5,2.5 + - pos: 11.5,-28.5 parent: 6747 type: Transform - - uid: 24726 + - uid: 18382 components: - - pos: -54.5,2.5 + - pos: 20.5,-33.5 parent: 6747 type: Transform - - uid: 24727 + - uid: 18383 components: - - pos: -54.5,1.5 + - pos: 20.5,-32.5 parent: 6747 type: Transform - - uid: 24728 + - uid: 18384 components: - - pos: -54.5,0.5 + - pos: 20.5,-31.5 parent: 6747 type: Transform - - uid: 24729 + - uid: 18385 components: - - pos: -54.5,-0.5 + - pos: 21.5,-33.5 parent: 6747 type: Transform - - uid: 24730 + - uid: 18386 components: - - pos: -54.5,-1.5 + - pos: 22.5,-33.5 parent: 6747 type: Transform - - uid: 24731 + - uid: 18387 components: - - pos: -54.5,-2.5 + - pos: 23.5,-33.5 parent: 6747 type: Transform - - uid: 24732 + - uid: 18388 components: - - pos: -54.5,-3.5 + - pos: 23.5,-34.5 parent: 6747 type: Transform - - uid: 24733 + - uid: 18399 components: - - pos: -54.5,-4.5 + - pos: 13.5,2.5 parent: 6747 type: Transform - - uid: 24734 + - uid: 18400 components: - - pos: -53.5,-4.5 + - pos: 14.5,2.5 parent: 6747 type: Transform - - uid: 24735 + - uid: 18401 components: - - pos: -52.5,-4.5 + - pos: 15.5,2.5 parent: 6747 type: Transform - - uid: 24736 + - uid: 18402 components: - - pos: -51.5,-4.5 + - pos: 16.5,2.5 parent: 6747 type: Transform - - uid: 24737 + - uid: 18403 components: - - pos: -50.5,-4.5 + - pos: 17.5,2.5 parent: 6747 type: Transform - - uid: 24738 + - uid: 18404 components: - - pos: -49.5,-4.5 + - pos: 18.5,2.5 parent: 6747 type: Transform - - uid: 24739 + - uid: 18405 components: - - pos: -48.5,-4.5 + - pos: 19.5,2.5 parent: 6747 type: Transform - - uid: 24740 + - uid: 18406 components: - - pos: -47.5,-4.5 + - pos: 19.5,1.5 parent: 6747 type: Transform - - uid: 24741 + - uid: 18407 components: - - pos: -46.5,-4.5 + - pos: 19.5,0.5 parent: 6747 type: Transform - - uid: 24742 + - uid: 18466 components: - - pos: -45.5,-4.5 + - pos: 55.5,-33.5 parent: 6747 type: Transform - - uid: 24743 + - uid: 18468 components: - - pos: -45.5,-6.5 + - pos: 54.5,-33.5 parent: 6747 type: Transform - - uid: 24744 + - uid: 18469 components: - - pos: -45.5,-7.5 + - pos: 55.5,-35.5 parent: 6747 type: Transform - - uid: 24745 + - uid: 18470 components: - - pos: -45.5,-8.5 + - pos: 54.5,-35.5 parent: 6747 type: Transform - - uid: 24746 + - uid: 18471 components: - - pos: -45.5,-9.5 + - pos: 53.5,-35.5 parent: 6747 type: Transform - - uid: 24747 + - uid: 18472 components: - - pos: -45.5,-10.5 + - pos: 52.5,-35.5 parent: 6747 type: Transform - - uid: 24748 + - uid: 18473 components: - - pos: -45.5,-11.5 + - pos: 52.5,-34.5 parent: 6747 type: Transform - - uid: 24749 + - uid: 18474 components: - - pos: -45.5,-12.5 + - pos: 52.5,-33.5 parent: 6747 type: Transform - - uid: 24750 + - uid: 18475 components: - - pos: -45.5,-13.5 + - pos: 52.5,-32.5 parent: 6747 type: Transform - - uid: 24751 + - uid: 18476 components: - - pos: -45.5,-14.5 + - pos: 52.5,-31.5 parent: 6747 type: Transform - - uid: 25504 + - uid: 18477 components: - - pos: -8.5,-40.5 + - pos: 52.5,-30.5 parent: 6747 type: Transform - - uid: 25505 + - uid: 18478 components: - - pos: -8.5,-39.5 + - pos: 52.5,-29.5 parent: 6747 type: Transform - - uid: 25506 + - uid: 18479 components: - - pos: -8.5,-38.5 + - pos: 51.5,-29.5 parent: 6747 type: Transform - - uid: 25507 + - uid: 18480 components: - - pos: -8.5,-37.5 + - pos: 50.5,-29.5 parent: 6747 type: Transform -- proto: CableMVStack - entities: - - uid: 1271 + - uid: 18481 components: - - pos: 5.587764,-14.476616 + - pos: 49.5,-29.5 parent: 6747 type: Transform - - uid: 4144 + - uid: 18482 components: - - rot: -1.5707963267948966 rad - pos: -21.165874,-55.47854 + - pos: 48.5,-29.5 parent: 6747 type: Transform - - uid: 22508 + - uid: 18483 components: - - pos: 55.526478,-24.288816 + - pos: 47.5,-29.5 parent: 6747 type: Transform -- proto: CableMVStack1 - entities: - - uid: 7174 + - uid: 18484 components: - - rot: -1.5707963267948966 rad - pos: 23.303978,-66.12061 + - pos: 47.5,-30.5 parent: 6747 type: Transform - - uid: 7714 + - uid: 18485 components: - - pos: 29.706268,34.448215 + - pos: 47.5,-31.5 parent: 6747 type: Transform - - uid: 23585 + - uid: 18486 components: - - rot: 1.5707963267948966 rad - pos: 23.501896,-65.9851 + - pos: 47.5,-32.5 parent: 6747 type: Transform -- proto: CableTerminal - entities: - - uid: 3014 + - uid: 18487 components: - - pos: -43.5,-19.5 + - pos: 46.5,-32.5 parent: 6747 type: Transform - - uid: 6283 + - uid: 18488 components: - - rot: 1.5707963267948966 rad - pos: 72.5,-7.5 + - pos: 45.5,-32.5 parent: 6747 type: Transform - - uid: 8461 + - uid: 18489 components: - - pos: 28.5,22.5 + - pos: 44.5,-32.5 parent: 6747 type: Transform - - uid: 8463 + - uid: 18490 components: - - pos: 19.5,22.5 + - pos: 44.5,-33.5 parent: 6747 type: Transform - - uid: 8468 + - uid: 18493 components: - - pos: 27.5,22.5 + - pos: 53.5,-39.5 parent: 6747 type: Transform - - uid: 8470 + - uid: 18494 components: - - pos: 20.5,22.5 + - pos: 53.5,-38.5 parent: 6747 type: Transform - - uid: 11546 + - uid: 18495 components: - - rot: -1.5707963267948966 rad - pos: 6.5,-15.5 + - pos: 52.5,-38.5 parent: 6747 type: Transform - - uid: 21975 + - uid: 18496 components: - - rot: 3.141592653589793 rad - pos: 15.5,-77.5 + - pos: 51.5,-38.5 parent: 6747 type: Transform - - uid: 21976 + - uid: 18497 components: - - rot: 3.141592653589793 rad - pos: 16.5,-77.5 + - pos: 50.5,-38.5 parent: 6747 type: Transform - - uid: 23049 + - uid: 18498 components: - - rot: 3.141592653589793 rad - pos: -54.5,-24.5 + - pos: 49.5,-38.5 parent: 6747 type: Transform - - uid: 23588 + - uid: 18499 components: - - pos: -34.5,-47.5 + - pos: 48.5,-38.5 parent: 6747 type: Transform -- proto: CannabisSeeds - entities: - - uid: 9309 + - uid: 18500 components: - - pos: -27.333271,17.559776 + - pos: 47.5,-38.5 parent: 6747 type: Transform -- proto: CapacitorStockPart - entities: - - uid: 5111 + - uid: 18501 components: - - pos: 23.606064,-65.59942 + - pos: 46.5,-38.5 parent: 6747 type: Transform - - uid: 6038 + - uid: 18502 components: - - pos: -36.743046,-86.49415 + - pos: 45.5,-38.5 parent: 6747 type: Transform - - uid: 9125 + - uid: 18503 components: - - pos: 17.71593,-67.865944 + - pos: 45.5,-39.5 parent: 6747 type: Transform - - uid: 11535 + - uid: 18504 components: - - pos: 23.397728,-65.33882 + - pos: 44.5,-39.5 parent: 6747 type: Transform - - uid: 11536 + - uid: 18505 components: - - pos: 12.323707,-74.60915 + - pos: 44.5,-40.5 parent: 6747 type: Transform - - uid: 11758 + - uid: 18509 components: - - pos: -3.836021,-84.46469 + - pos: 43.5,-43.5 parent: 6747 type: Transform -- proto: CarbonDioxideCanister - entities: - - uid: 11257 + - uid: 18510 components: - - pos: 4.5,-82.5 + - pos: 42.5,-43.5 parent: 6747 type: Transform -- proto: CargoRequestComputerCircuitboard - entities: - - uid: 21981 + - uid: 18511 components: - - pos: 50.54535,17.561974 + - pos: 41.5,-43.5 parent: 6747 type: Transform -- proto: Carpet - entities: - - uid: 98 + - uid: 18512 components: - - pos: -24.5,-5.5 + - pos: 40.5,-43.5 parent: 6747 type: Transform - - uid: 418 + - uid: 18513 components: - - pos: -25.5,-4.5 + - pos: 39.5,-43.5 parent: 6747 type: Transform - - uid: 521 + - uid: 18514 components: - - pos: -26.5,-6.5 + - pos: 38.5,-43.5 parent: 6747 type: Transform - - uid: 555 + - uid: 18515 components: - - pos: -26.5,-4.5 + - pos: 37.5,-43.5 parent: 6747 type: Transform - - uid: 603 + - uid: 18516 components: - - pos: -25.5,-6.5 + - pos: 36.5,-43.5 parent: 6747 type: Transform - - uid: 632 + - uid: 18517 components: - - pos: -26.5,-5.5 + - pos: 35.5,-43.5 parent: 6747 type: Transform - - uid: 728 + - uid: 18518 components: - - pos: -25.5,-5.5 + - pos: 35.5,-44.5 parent: 6747 type: Transform - - uid: 1262 + - uid: 18519 components: - - pos: -24.5,-6.5 + - pos: 35.5,-45.5 parent: 6747 type: Transform - - uid: 1381 + - uid: 18520 components: - - pos: -24.5,-4.5 + - pos: 35.5,-46.5 parent: 6747 type: Transform -- proto: CarpetBlack - entities: - - uid: 8718 + - uid: 18521 components: - - pos: 15.5,-51.5 + - pos: 35.5,-47.5 parent: 6747 type: Transform - - uid: 8720 + - uid: 18522 components: - - pos: 15.5,-50.5 + - pos: 36.5,-47.5 parent: 6747 type: Transform - - uid: 8722 + - uid: 18523 components: - - pos: 13.5,-50.5 + - pos: 37.5,-47.5 parent: 6747 type: Transform - - uid: 8723 + - uid: 18524 components: - - pos: 14.5,-50.5 + - pos: 38.5,-47.5 parent: 6747 type: Transform - - uid: 8837 + - uid: 18525 components: - - pos: 14.5,-52.5 + - pos: 39.5,-47.5 parent: 6747 type: Transform - - uid: 8840 + - uid: 18526 components: - - pos: 14.5,-51.5 + - pos: 40.5,-47.5 parent: 6747 type: Transform - - uid: 8844 + - uid: 18527 components: - - pos: 14.5,-53.5 + - pos: 41.5,-47.5 parent: 6747 type: Transform - - uid: 8853 + - uid: 18528 components: - - pos: 13.5,-53.5 + - pos: 42.5,-47.5 parent: 6747 type: Transform - - uid: 8856 + - uid: 18529 components: - - pos: 13.5,-51.5 + - pos: 43.5,-47.5 parent: 6747 type: Transform - - uid: 8857 + - uid: 18530 components: - - pos: 15.5,-52.5 + - pos: 44.5,-47.5 parent: 6747 type: Transform - - uid: 8876 + - uid: 18531 components: - - pos: 13.5,-52.5 + - pos: 44.5,-48.5 parent: 6747 type: Transform - - uid: 8877 + - uid: 18532 components: - - pos: 15.5,-53.5 + - pos: 44.5,-49.5 parent: 6747 type: Transform -- proto: CarpetBlue - entities: - - uid: 11191 + - uid: 18533 components: - - pos: 39.5,-84.5 + - pos: 44.5,-50.5 parent: 6747 type: Transform - - uid: 11192 + - uid: 18534 components: - - pos: 39.5,-85.5 + - pos: 44.5,-51.5 parent: 6747 type: Transform - - uid: 11390 + - uid: 18535 components: - - pos: 3.5,-65.5 + - pos: 44.5,-52.5 parent: 6747 type: Transform - - uid: 11391 + - uid: 18536 components: - - pos: 3.5,-66.5 + - pos: 44.5,-53.5 parent: 6747 type: Transform - - uid: 11392 + - uid: 18537 components: - - pos: 2.5,-65.5 + - pos: 43.5,-53.5 parent: 6747 type: Transform - - uid: 11393 + - uid: 18538 components: - - pos: 2.5,-66.5 + - pos: 42.5,-53.5 parent: 6747 type: Transform - - uid: 11394 + - uid: 18539 components: - - pos: 1.5,-65.5 + - pos: 41.5,-53.5 parent: 6747 type: Transform - - uid: 11395 + - uid: 18540 components: - - pos: 1.5,-66.5 + - pos: 40.5,-53.5 parent: 6747 type: Transform -- proto: CarpetChapel - entities: - - uid: 8873 + - uid: 18541 components: - - rot: 3.141592653589793 rad - pos: 8.5,-50.5 + - pos: 39.5,-53.5 parent: 6747 type: Transform - - uid: 8878 + - uid: 18542 components: - - rot: 1.5707963267948966 rad - pos: 8.5,-49.5 + - pos: 38.5,-53.5 parent: 6747 type: Transform - - uid: 8879 + - uid: 18543 components: - - pos: 9.5,-49.5 + - pos: 37.5,-53.5 parent: 6747 type: Transform - - uid: 8880 + - uid: 18544 components: - - rot: -1.5707963267948966 rad - pos: 9.5,-50.5 + - pos: 37.5,-54.5 parent: 6747 type: Transform - - uid: 15032 + - uid: 18545 components: - - rot: 1.5707963267948966 rad - pos: 10.5,-49.5 + - pos: 37.5,-55.5 parent: 6747 type: Transform - - uid: 15033 + - uid: 18546 components: - - pos: 11.5,-49.5 + - pos: 37.5,-56.5 parent: 6747 type: Transform - - uid: 15034 + - uid: 18547 components: - - rot: -1.5707963267948966 rad - pos: 11.5,-50.5 + - pos: 37.5,-57.5 parent: 6747 type: Transform - - uid: 15035 + - uid: 18548 components: - - rot: 3.141592653589793 rad - pos: 10.5,-50.5 + - pos: 37.5,-58.5 parent: 6747 type: Transform - - uid: 15088 + - uid: 18549 components: - - rot: 1.5707963267948966 rad - pos: 12.5,-49.5 + - pos: 37.5,-59.5 parent: 6747 type: Transform - - uid: 15089 + - uid: 18550 components: - - pos: 13.5,-49.5 + - pos: 37.5,-60.5 parent: 6747 type: Transform - - uid: 15090 + - uid: 18551 components: - - rot: 3.141592653589793 rad - pos: 12.5,-50.5 + - pos: 37.5,-61.5 parent: 6747 type: Transform - - uid: 15091 + - uid: 18552 components: - - rot: 1.5707963267948966 rad - pos: 12.5,-51.5 + - pos: 36.5,-61.5 parent: 6747 type: Transform - - uid: 15092 + - uid: 18553 components: - - pos: 11.5,-51.5 + - pos: 36.5,-62.5 parent: 6747 type: Transform - - uid: 15093 + - uid: 18554 components: - - rot: -1.5707963267948966 rad - pos: 11.5,-52.5 + - pos: 36.5,-63.5 parent: 6747 type: Transform - - uid: 15094 + - uid: 18555 components: - - rot: 3.141592653589793 rad - pos: 12.5,-52.5 + - pos: 36.5,-64.5 parent: 6747 type: Transform - - uid: 15095 + - uid: 18556 components: - - rot: 1.5707963267948966 rad - pos: 12.5,-53.5 + - pos: 36.5,-65.5 parent: 6747 type: Transform - - uid: 15096 + - uid: 18559 components: - - pos: 11.5,-53.5 + - pos: 77.5,11.5 parent: 6747 type: Transform - - uid: 15097 + - uid: 18566 components: - - rot: 1.5707963267948966 rad - pos: 14.5,-49.5 + - pos: 16.5,-75.5 parent: 6747 type: Transform - - uid: 15098 + - uid: 18567 components: - - pos: 15.5,-49.5 + - pos: 16.5,-74.5 parent: 6747 type: Transform - - uid: 15099 + - uid: 18568 components: - - rot: 1.5707963267948966 rad - pos: 16.5,-49.5 + - pos: 16.5,-73.5 parent: 6747 type: Transform - - uid: 15100 + - uid: 18569 components: - - rot: 3.141592653589793 rad - pos: 16.5,-50.5 + - pos: 17.5,-75.5 parent: 6747 type: Transform - - uid: 15101 + - uid: 18570 components: - - rot: 1.5707963267948966 rad - pos: 16.5,-51.5 + - pos: 18.5,-75.5 parent: 6747 type: Transform - - uid: 15102 + - uid: 18571 components: - - rot: 3.141592653589793 rad - pos: 16.5,-52.5 + - pos: 18.5,-74.5 parent: 6747 type: Transform - - uid: 15103 + - uid: 18572 components: - - rot: 1.5707963267948966 rad - pos: 16.5,-53.5 + - pos: 18.5,-73.5 parent: 6747 type: Transform -- proto: CarpetGreen - entities: - - uid: 9262 + - uid: 18573 components: - - pos: -4.5,-44.5 + - pos: 18.5,-72.5 parent: 6747 type: Transform - - uid: 9263 + - uid: 18574 components: - - pos: -5.5,-44.5 + - pos: 19.5,-72.5 parent: 6747 type: Transform - - uid: 9264 + - uid: 18575 components: - - pos: -6.5,-44.5 + - pos: 20.5,-72.5 parent: 6747 type: Transform - - uid: 9265 + - uid: 18576 components: - - pos: -7.5,-44.5 + - pos: 21.5,-72.5 parent: 6747 type: Transform - - uid: 9266 + - uid: 18577 components: - - pos: -8.5,-44.5 + - pos: 22.5,-72.5 parent: 6747 type: Transform - - uid: 9267 + - uid: 18578 components: - - pos: -8.5,-43.5 + - pos: 23.5,-72.5 parent: 6747 type: Transform - - uid: 9268 + - uid: 18579 components: - - pos: -8.5,-42.5 + - pos: 24.5,-72.5 parent: 6747 type: Transform - - uid: 9269 + - uid: 18580 components: - - pos: -8.5,-41.5 + - pos: 25.5,-72.5 parent: 6747 type: Transform - - uid: 9270 + - uid: 18581 components: - - pos: -8.5,-45.5 + - pos: 26.5,-72.5 parent: 6747 type: Transform - - uid: 9271 + - uid: 18582 components: - - pos: -8.5,-46.5 + - pos: 27.5,-72.5 parent: 6747 type: Transform - - uid: 9272 + - uid: 18583 components: - - pos: -8.5,-47.5 + - pos: 28.5,-72.5 parent: 6747 type: Transform - - uid: 9273 + - uid: 18584 components: - - pos: -9.5,-44.5 + - pos: 29.5,-72.5 parent: 6747 type: Transform - - uid: 9274 + - uid: 18585 components: - - pos: -10.5,-44.5 + - pos: 30.5,-72.5 parent: 6747 type: Transform - - uid: 9275 + - uid: 18586 components: - - pos: -11.5,-44.5 + - pos: 31.5,-72.5 parent: 6747 type: Transform - - uid: 9276 + - uid: 18587 components: - - pos: -12.5,-44.5 + - pos: 31.5,-71.5 parent: 6747 type: Transform - - uid: 9277 + - uid: 18588 components: - - pos: -13.5,-44.5 + - pos: 31.5,-70.5 parent: 6747 type: Transform - - uid: 9278 + - uid: 18589 components: - - pos: -14.5,-42.5 + - pos: 31.5,-69.5 parent: 6747 type: Transform - - uid: 9279 + - uid: 18590 components: - - pos: -14.5,-43.5 + - pos: 31.5,-68.5 parent: 6747 type: Transform - - uid: 9280 + - uid: 18591 components: - - pos: -14.5,-44.5 + - pos: 31.5,-67.5 parent: 6747 type: Transform - - uid: 9281 + - uid: 18592 components: - - pos: -14.5,-45.5 + - pos: 31.5,-66.5 parent: 6747 type: Transform - - uid: 9282 + - uid: 18593 components: - - pos: -14.5,-46.5 + - pos: 31.5,-65.5 parent: 6747 type: Transform - - uid: 9283 + - uid: 18594 components: - - pos: -13.5,-42.5 + - pos: 31.5,-64.5 parent: 6747 type: Transform - - uid: 9284 + - uid: 18595 components: - - pos: -13.5,-43.5 + - pos: 31.5,-63.5 parent: 6747 type: Transform - - uid: 9285 + - uid: 18596 components: - - pos: -13.5,-44.5 + - pos: 30.5,-63.5 parent: 6747 type: Transform - - uid: 9286 + - uid: 18598 components: - - pos: -13.5,-45.5 + - pos: 28.5,-63.5 parent: 6747 type: Transform - - uid: 9287 + - uid: 18599 components: - - pos: -13.5,-46.5 + - pos: 28.5,-64.5 parent: 6747 type: Transform - - uid: 9288 + - uid: 18600 components: - - pos: -15.5,-46.5 + - pos: 27.5,-64.5 parent: 6747 type: Transform - - uid: 9289 + - uid: 18601 components: - - pos: -16.5,-46.5 + - pos: 26.5,-64.5 parent: 6747 type: Transform - - uid: 9290 + - uid: 18602 components: - - pos: -13.5,-41.5 + - pos: 25.5,-64.5 parent: 6747 type: Transform - - uid: 9291 + - uid: 18603 components: - - pos: -14.5,-41.5 + - pos: 24.5,-64.5 parent: 6747 type: Transform - - uid: 9292 + - uid: 18604 components: - - pos: -15.5,-41.5 + - pos: 23.5,-64.5 parent: 6747 type: Transform - - uid: 9293 + - uid: 18605 components: - - pos: -16.5,-41.5 + - pos: 24.5,-65.5 parent: 6747 type: Transform - - uid: 11065 + - uid: 18606 components: - - pos: 65.5,-39.5 + - pos: 24.5,-66.5 parent: 6747 type: Transform - - uid: 11066 + - uid: 18607 components: - - pos: 65.5,-40.5 + - pos: 23.5,-66.5 parent: 6747 type: Transform - - uid: 11067 + - uid: 18608 components: - - pos: 65.5,-41.5 + - pos: 22.5,-66.5 parent: 6747 type: Transform - - uid: 11068 + - uid: 18609 components: - - pos: 65.5,-42.5 + - pos: 23.5,-63.5 parent: 6747 type: Transform - - uid: 11069 + - uid: 18610 components: - - pos: 65.5,-43.5 + - pos: 22.5,-63.5 parent: 6747 type: Transform - - uid: 11070 + - uid: 18611 components: - - pos: 65.5,-44.5 + - pos: 21.5,-63.5 parent: 6747 type: Transform - - uid: 11071 + - uid: 18612 components: - - pos: 66.5,-39.5 + - pos: 20.5,-63.5 parent: 6747 type: Transform - - uid: 11072 + - uid: 18613 components: - - pos: 66.5,-40.5 + - pos: 19.5,-63.5 parent: 6747 type: Transform - - uid: 11073 + - uid: 18614 components: - - pos: 66.5,-41.5 + - pos: 19.5,-62.5 parent: 6747 type: Transform - - uid: 11074 + - uid: 18615 components: - - pos: 66.5,-42.5 + - pos: 19.5,-61.5 parent: 6747 type: Transform - - uid: 11075 + - uid: 18616 components: - - pos: 66.5,-43.5 + - pos: 19.5,-60.5 parent: 6747 type: Transform - - uid: 11076 + - uid: 18617 components: - - pos: 66.5,-44.5 + - pos: 19.5,-59.5 parent: 6747 type: Transform - - uid: 11077 + - uid: 18618 components: - - pos: 67.5,-39.5 + - pos: 19.5,-58.5 parent: 6747 type: Transform - - uid: 11078 + - uid: 18619 components: - - pos: 67.5,-40.5 + - pos: 19.5,-57.5 parent: 6747 type: Transform - - uid: 11079 + - uid: 18620 components: - - pos: 67.5,-41.5 + - pos: 19.5,-56.5 parent: 6747 type: Transform - - uid: 11080 + - uid: 18621 components: - - pos: 67.5,-42.5 + - pos: 19.5,-55.5 parent: 6747 type: Transform - - uid: 11081 + - uid: 18622 components: - - pos: 67.5,-43.5 + - pos: 22.5,-53.5 parent: 6747 type: Transform - - uid: 11082 + - uid: 18624 components: - - pos: 67.5,-44.5 + - pos: 18.5,-55.5 parent: 6747 type: Transform - - uid: 11852 + - uid: 18625 components: - - pos: 18.5,17.5 + - pos: 17.5,-55.5 parent: 6747 type: Transform - - uid: 11853 + - uid: 18626 components: - - pos: 18.5,18.5 + - pos: 16.5,-55.5 parent: 6747 type: Transform - - uid: 11854 + - uid: 18627 components: - - pos: 17.5,18.5 + - pos: 15.5,-55.5 parent: 6747 type: Transform - - uid: 11855 + - uid: 18628 components: - - pos: 17.5,17.5 + - pos: 14.5,-55.5 parent: 6747 type: Transform - - uid: 11856 + - uid: 18629 components: - - pos: 16.5,17.5 + - pos: 13.5,-55.5 parent: 6747 type: Transform - - uid: 11857 + - uid: 18630 components: - - pos: 16.5,18.5 + - pos: 13.5,-56.5 parent: 6747 type: Transform - - uid: 17385 + - uid: 18631 components: - - pos: 51.5,-52.5 + - pos: 13.5,-57.5 parent: 6747 type: Transform - - uid: 17386 + - uid: 18641 components: - - pos: 51.5,-53.5 + - pos: 9.5,-63.5 parent: 6747 type: Transform - - uid: 17388 + - uid: 18642 components: - - pos: 52.5,-52.5 + - pos: 8.5,-63.5 parent: 6747 type: Transform - - uid: 17389 + - uid: 18643 components: - - pos: 52.5,-53.5 + - pos: 7.5,-63.5 parent: 6747 type: Transform - - uid: 17391 + - uid: 18644 components: - - pos: 53.5,-52.5 + - pos: 6.5,-63.5 parent: 6747 type: Transform - - uid: 17392 + - uid: 18645 components: - - pos: 53.5,-53.5 + - pos: 5.5,-63.5 parent: 6747 type: Transform - - uid: 22514 + - uid: 18646 components: - - pos: -27.5,-82.5 + - pos: 4.5,-63.5 parent: 6747 type: Transform - - uid: 22515 + - uid: 18647 components: - - pos: -26.5,-82.5 + - pos: 3.5,-63.5 parent: 6747 type: Transform - - uid: 22516 + - uid: 18648 components: - - pos: -26.5,-81.5 + - pos: 3.5,-62.5 parent: 6747 type: Transform - - uid: 22517 + - uid: 18649 components: - - pos: -27.5,-81.5 + - pos: 3.5,-61.5 parent: 6747 type: Transform - - uid: 23458 + - uid: 18650 components: - - pos: -69.5,8.5 + - pos: 3.5,-60.5 parent: 6747 type: Transform - - uid: 23498 + - uid: 18651 components: - - pos: -69.5,7.5 + - pos: 3.5,-59.5 parent: 6747 type: Transform - - uid: 23499 + - uid: 18652 components: - - pos: -69.5,6.5 + - pos: 9.5,-64.5 parent: 6747 type: Transform - - uid: 23500 + - uid: 18653 components: - - pos: -68.5,8.5 + - pos: 9.5,-65.5 parent: 6747 type: Transform - - uid: 23501 + - uid: 18654 components: - - pos: -68.5,7.5 + - pos: 9.5,-66.5 parent: 6747 type: Transform - - uid: 23502 + - uid: 18655 components: - - pos: -68.5,6.5 + - pos: 9.5,-67.5 parent: 6747 type: Transform - - uid: 23503 + - uid: 18656 components: - - pos: -67.5,8.5 + - pos: 9.5,-68.5 parent: 6747 type: Transform - - uid: 23504 + - uid: 18657 components: - - pos: -67.5,7.5 + - pos: 9.5,-69.5 parent: 6747 type: Transform - - uid: 23505 + - uid: 18658 components: - - pos: -67.5,6.5 + - pos: 9.5,-70.5 parent: 6747 type: Transform -- proto: CarpetOrange - entities: - - uid: 11808 + - uid: 18659 components: - - pos: -47.5,-35.5 + - pos: 9.5,-71.5 parent: 6747 type: Transform - - uid: 11810 + - uid: 18660 components: - - pos: -47.5,-36.5 + - pos: 9.5,-72.5 parent: 6747 type: Transform - - uid: 11811 + - uid: 18661 components: - - pos: -46.5,-36.5 + - pos: -7.5,-82.5 parent: 6747 type: Transform - - uid: 11812 + - uid: 18662 components: - - pos: -45.5,-36.5 + - pos: -7.5,-83.5 parent: 6747 type: Transform - - uid: 11813 + - uid: 18663 components: - - pos: -45.5,-35.5 + - pos: -6.5,-83.5 parent: 6747 type: Transform - - uid: 11814 + - uid: 18664 components: - - pos: -46.5,-35.5 + - pos: -5.5,-83.5 parent: 6747 type: Transform -- proto: CarpetPink - entities: - - uid: 11157 + - uid: 18665 components: - - rot: 1.5707963267948966 rad - pos: 30.5,-82.5 + - pos: -4.5,-83.5 parent: 6747 type: Transform - - uid: 11162 + - uid: 18666 components: - - rot: 1.5707963267948966 rad - pos: 31.5,-84.5 + - pos: -4.5,-82.5 parent: 6747 type: Transform - - uid: 11164 + - uid: 18667 components: - - rot: 1.5707963267948966 rad - pos: 29.5,-81.5 + - pos: -4.5,-81.5 parent: 6747 type: Transform - - uid: 11166 + - uid: 18668 components: - - pos: 31.5,-83.5 + - pos: -3.5,-81.5 parent: 6747 type: Transform - - uid: 11167 + - uid: 18669 components: - - rot: 1.5707963267948966 rad - pos: 30.5,-84.5 + - pos: -3.5,-80.5 parent: 6747 type: Transform - - uid: 11562 + - uid: 18670 components: - - rot: 1.5707963267948966 rad - pos: 31.5,-81.5 + - pos: -2.5,-80.5 parent: 6747 type: Transform - - uid: 11563 + - uid: 18671 components: - - rot: 1.5707963267948966 rad - pos: 29.5,-83.5 + - pos: -2.5,-79.5 parent: 6747 type: Transform - - uid: 11564 + - uid: 18672 components: - - rot: 1.5707963267948966 rad - pos: 29.5,-84.5 + - pos: -2.5,-78.5 parent: 6747 type: Transform - - uid: 17455 + - uid: 18673 components: - - pos: 30.5,-81.5 + - pos: -2.5,-77.5 parent: 6747 type: Transform - - uid: 17464 + - uid: 18674 components: - - rot: 1.5707963267948966 rad - pos: 29.5,-82.5 + - pos: -2.5,-76.5 parent: 6747 type: Transform - - uid: 17466 + - uid: 18675 components: - - rot: 1.5707963267948966 rad - pos: 31.5,-82.5 + - pos: -2.5,-75.5 parent: 6747 type: Transform - - uid: 17467 + - uid: 18676 components: - - rot: 1.5707963267948966 rad - pos: 30.5,-83.5 + - pos: -1.5,-75.5 parent: 6747 type: Transform -- proto: CarpetPurple - entities: - - uid: 8835 + - uid: 18677 components: - - pos: -31.5,-57.5 + - pos: -1.5,-74.5 parent: 6747 type: Transform - - uid: 8839 + - uid: 18678 components: - - pos: -30.5,-57.5 + - pos: -1.5,-73.5 parent: 6747 type: Transform - - uid: 8841 + - uid: 18679 components: - - pos: -29.5,-57.5 + - pos: -1.5,-72.5 parent: 6747 type: Transform - - uid: 8848 + - uid: 18680 components: - - pos: -31.5,-58.5 + - pos: -0.5,-72.5 parent: 6747 type: Transform - - uid: 8851 + - uid: 18681 components: - - pos: -30.5,-58.5 + - pos: 0.5,-72.5 parent: 6747 type: Transform - - uid: 8854 + - uid: 18682 components: - - pos: -29.5,-58.5 + - pos: 1.5,-72.5 parent: 6747 type: Transform - - uid: 8868 + - uid: 18683 components: - - pos: -31.5,-59.5 + - pos: 2.5,-72.5 parent: 6747 type: Transform - - uid: 8871 + - uid: 18684 components: - - pos: -30.5,-59.5 + - pos: 3.5,-72.5 parent: 6747 type: Transform - - uid: 8874 + - uid: 18685 components: - - pos: -29.5,-59.5 + - pos: 4.5,-72.5 parent: 6747 type: Transform - - uid: 8881 + - uid: 18686 components: - - rot: -1.5707963267948966 rad - pos: 10.5,-55.5 + - pos: 5.5,-72.5 parent: 6747 type: Transform - - uid: 8882 + - uid: 18687 components: - - rot: -1.5707963267948966 rad - pos: 10.5,-56.5 + - pos: 6.5,-72.5 parent: 6747 type: Transform - - uid: 8883 + - uid: 18688 components: - - rot: -1.5707963267948966 rad - pos: 9.5,-56.5 + - pos: 7.5,-72.5 parent: 6747 type: Transform - - uid: 8884 + - uid: 18689 components: - - rot: -1.5707963267948966 rad - pos: 9.5,-55.5 + - pos: 8.5,-72.5 parent: 6747 type: Transform - - uid: 8885 + - uid: 18690 components: - - rot: -1.5707963267948966 rad - pos: 8.5,-56.5 + - pos: 5.5,-83.5 parent: 6747 type: Transform - - uid: 8886 + - uid: 18691 components: - - rot: -1.5707963267948966 rad - pos: 8.5,-55.5 + - pos: 4.5,-83.5 parent: 6747 type: Transform - - uid: 8891 + - uid: 18692 components: - - rot: 3.141592653589793 rad - pos: 37.5,-40.5 + - pos: 3.5,-83.5 parent: 6747 type: Transform - - uid: 8892 + - uid: 18693 components: - - rot: 3.141592653589793 rad - pos: 37.5,-39.5 + - pos: 2.5,-83.5 parent: 6747 type: Transform - - uid: 8893 + - uid: 18694 components: - - rot: 3.141592653589793 rad - pos: 37.5,-38.5 + - pos: 1.5,-83.5 parent: 6747 type: Transform - - uid: 8894 + - uid: 18695 components: - - rot: 3.141592653589793 rad - pos: 38.5,-40.5 + - pos: 1.5,-82.5 parent: 6747 type: Transform - - uid: 8895 + - uid: 18696 components: - - rot: 3.141592653589793 rad - pos: 38.5,-39.5 + - pos: 1.5,-81.5 parent: 6747 type: Transform - - uid: 8896 + - uid: 18697 components: - - rot: 3.141592653589793 rad - pos: 38.5,-38.5 + - pos: 1.5,-80.5 parent: 6747 type: Transform - - uid: 8897 + - uid: 18698 components: - - rot: 3.141592653589793 rad - pos: 39.5,-40.5 + - pos: 2.5,-80.5 parent: 6747 type: Transform - - uid: 8898 + - uid: 18699 components: - - rot: 3.141592653589793 rad - pos: 39.5,-39.5 + - pos: 3.5,-80.5 parent: 6747 type: Transform - - uid: 8899 + - uid: 18700 components: - - rot: 3.141592653589793 rad - pos: 39.5,-38.5 + - pos: 4.5,-80.5 parent: 6747 type: Transform - - uid: 9294 + - uid: 18701 components: - - pos: 26.5,-38.5 + - pos: 4.5,-79.5 parent: 6747 type: Transform - - uid: 9295 + - uid: 18702 components: - - pos: 26.5,-37.5 + - pos: 4.5,-78.5 parent: 6747 type: Transform - - uid: 9296 + - uid: 18703 components: - - pos: 25.5,-37.5 + - pos: 4.5,-77.5 parent: 6747 type: Transform - - uid: 9297 + - uid: 18704 components: - - pos: 25.5,-38.5 + - pos: 4.5,-76.5 parent: 6747 type: Transform - - uid: 9298 + - uid: 18705 components: - - pos: 24.5,-38.5 + - pos: 4.5,-75.5 parent: 6747 type: Transform - - uid: 9299 + - uid: 18706 components: - - pos: 24.5,-37.5 + - pos: 4.5,-74.5 parent: 6747 type: Transform - - uid: 10897 + - uid: 18707 components: - - rot: 3.141592653589793 rad - pos: -57.5,-42.5 + - pos: 4.5,-73.5 parent: 6747 type: Transform - - uid: 10898 + - uid: 18805 components: - - rot: 3.141592653589793 rad - pos: -56.5,-41.5 + - pos: 77.5,10.5 parent: 6747 type: Transform - - uid: 10899 + - uid: 18806 components: - - rot: 3.141592653589793 rad - pos: -57.5,-39.5 + - pos: 77.5,9.5 parent: 6747 type: Transform - - uid: 10902 + - uid: 18807 components: - - rot: 3.141592653589793 rad - pos: -58.5,-41.5 + - pos: 77.5,8.5 parent: 6747 type: Transform - - uid: 10903 + - uid: 18808 components: - - rot: 3.141592653589793 rad - pos: -56.5,-39.5 + - pos: 77.5,7.5 parent: 6747 type: Transform - - uid: 10910 + - uid: 18809 components: - - rot: 3.141592653589793 rad - pos: -56.5,-42.5 + - pos: 77.5,6.5 parent: 6747 type: Transform - - uid: 10913 + - uid: 18810 components: - - rot: 3.141592653589793 rad - pos: -58.5,-42.5 + - pos: 77.5,5.5 parent: 6747 type: Transform - - uid: 10914 + - uid: 18811 components: - - rot: 3.141592653589793 rad - pos: -56.5,-40.5 + - pos: 77.5,4.5 parent: 6747 type: Transform - - uid: 10918 + - uid: 18812 components: - - rot: 3.141592653589793 rad - pos: -58.5,-39.5 + - pos: 77.5,3.5 parent: 6747 type: Transform - - uid: 10920 + - uid: 18813 components: - - rot: -1.5707963267948966 rad - pos: -58.5,-40.5 + - pos: 56.5,15.5 parent: 6747 type: Transform - - uid: 17384 + - uid: 18817 components: - - pos: 48.5,-49.5 + - pos: 76.5,3.5 parent: 6747 type: Transform - - uid: 17387 + - uid: 18818 components: - - pos: 49.5,-50.5 + - pos: 75.5,3.5 parent: 6747 type: Transform - - uid: 17390 + - uid: 18819 components: - - pos: 49.5,-49.5 + - pos: 74.5,3.5 parent: 6747 type: Transform - - uid: 17393 + - uid: 18820 components: - - pos: 48.5,-50.5 + - pos: 73.5,3.5 parent: 6747 type: Transform -- proto: CarpetSBlue - entities: - - uid: 5397 + - uid: 18821 components: - - pos: -29.5,-52.5 + - pos: 72.5,3.5 parent: 6747 type: Transform - - uid: 7360 + - uid: 18822 components: - - pos: -29.5,-50.5 + - pos: 71.5,3.5 parent: 6747 type: Transform - - uid: 7361 + - uid: 18823 components: - - pos: -30.5,-52.5 + - pos: 70.5,3.5 parent: 6747 type: Transform - - uid: 7364 + - uid: 18824 components: - - pos: -29.5,-54.5 + - pos: 69.5,3.5 parent: 6747 type: Transform - - uid: 8721 + - uid: 18825 components: - - pos: -30.5,-54.5 + - pos: 68.5,3.5 parent: 6747 type: Transform - - uid: 8831 + - uid: 18826 components: - - pos: -30.5,-50.5 + - pos: 67.5,3.5 parent: 6747 type: Transform - - uid: 8833 + - uid: 18827 components: - - pos: -31.5,-55.5 + - pos: 66.5,3.5 parent: 6747 type: Transform - - uid: 8834 + - uid: 18828 components: - - pos: -32.5,-52.5 + - pos: 65.5,3.5 parent: 6747 type: Transform - - uid: 8838 + - uid: 18829 components: - - pos: -32.5,-50.5 + - pos: 64.5,3.5 parent: 6747 type: Transform - - uid: 8843 + - uid: 18830 components: - - pos: -31.5,-52.5 + - pos: 63.5,3.5 parent: 6747 type: Transform - - uid: 8845 + - uid: 18831 components: - - pos: -32.5,-55.5 + - pos: 62.5,3.5 parent: 6747 type: Transform - - uid: 8846 + - uid: 18832 components: - - pos: -32.5,-51.5 + - pos: 61.5,3.5 parent: 6747 type: Transform - - uid: 8852 + - uid: 18833 components: - - pos: -32.5,-54.5 + - pos: 64.5,4.5 parent: 6747 type: Transform - - uid: 8855 + - uid: 18834 components: - - pos: -31.5,-51.5 + - pos: 64.5,5.5 parent: 6747 type: Transform - - uid: 8858 + - uid: 18835 components: - - pos: -30.5,-53.5 + - pos: 64.5,6.5 parent: 6747 type: Transform - - uid: 8859 + - uid: 18837 components: - - pos: -30.5,-55.5 + - pos: 68.5,10.5 parent: 6747 type: Transform - - uid: 8860 + - uid: 18838 components: - - pos: -30.5,-51.5 + - pos: 68.5,11.5 parent: 6747 type: Transform - - uid: 8861 + - uid: 18839 components: - - pos: -29.5,-51.5 + - pos: 69.5,11.5 parent: 6747 type: Transform - - uid: 8862 + - uid: 18840 components: - - pos: -31.5,-54.5 + - pos: 70.5,11.5 parent: 6747 type: Transform - - uid: 8863 + - uid: 18841 components: - - pos: -29.5,-53.5 + - pos: 71.5,11.5 parent: 6747 type: Transform - - uid: 8864 + - uid: 18842 components: - - pos: -31.5,-53.5 + - pos: 72.5,11.5 parent: 6747 type: Transform - - uid: 8865 + - uid: 18843 components: - - pos: -29.5,-55.5 + - pos: 64.5,7.5 parent: 6747 type: Transform - - uid: 8872 + - uid: 18844 components: - - pos: -32.5,-53.5 + - pos: 64.5,8.5 parent: 6747 type: Transform - - uid: 8875 + - uid: 18845 components: - - pos: -31.5,-50.5 + - pos: 64.5,9.5 parent: 6747 type: Transform - - uid: 10993 + - uid: 18846 components: - - pos: 67.5,-25.5 + - pos: 65.5,9.5 parent: 6747 type: Transform - - uid: 10994 + - uid: 18847 components: - - pos: 67.5,-24.5 + - pos: 66.5,9.5 parent: 6747 type: Transform - - uid: 10995 + - uid: 18848 components: - - pos: 67.5,-23.5 + - pos: 67.5,9.5 parent: 6747 type: Transform - - uid: 10996 + - uid: 18849 components: - - pos: 67.5,-22.5 + - pos: 68.5,9.5 parent: 6747 type: Transform - - uid: 10997 + - uid: 19013 components: - - pos: 67.5,-21.5 + - pos: 57.5,15.5 parent: 6747 type: Transform - - uid: 10998 + - uid: 19016 components: - - pos: 68.5,-25.5 + - pos: 30.5,35.5 parent: 6747 type: Transform - - uid: 10999 + - uid: 19017 components: - - pos: 68.5,-24.5 + - pos: 29.5,34.5 parent: 6747 type: Transform - - uid: 11000 + - uid: 19018 components: - - pos: 68.5,-23.5 + - pos: 29.5,33.5 parent: 6747 type: Transform - - uid: 11001 + - uid: 19020 components: - - pos: 68.5,-22.5 + - pos: 30.5,36.5 parent: 6747 type: Transform - - uid: 11002 + - uid: 19021 components: - - pos: 68.5,-21.5 + - pos: 29.5,31.5 parent: 6747 type: Transform - - uid: 11003 + - uid: 19022 components: - - pos: 69.5,-25.5 + - pos: 52.5,15.5 parent: 6747 type: Transform - - uid: 11004 + - uid: 19023 components: - - pos: 69.5,-24.5 + - pos: 53.5,15.5 parent: 6747 type: Transform - - uid: 11005 + - uid: 19024 components: - - pos: 69.5,-23.5 + - pos: 52.5,14.5 parent: 6747 type: Transform - - uid: 11006 + - uid: 19025 components: - - pos: 69.5,-22.5 + - pos: 52.5,13.5 parent: 6747 type: Transform - - uid: 11007 + - uid: 19026 components: - - pos: 69.5,-21.5 + - pos: 51.5,13.5 parent: 6747 type: Transform - - uid: 11008 + - uid: 19040 components: - - pos: 70.5,-25.5 + - pos: 50.5,13.5 parent: 6747 type: Transform - - uid: 11009 + - uid: 19041 components: - - pos: 70.5,-24.5 + - pos: 49.5,13.5 parent: 6747 type: Transform - - uid: 11010 + - uid: 20062 components: - - pos: 70.5,-23.5 + - pos: -40.5,-17.5 parent: 6747 type: Transform - - uid: 11011 + - uid: 20063 components: - - pos: 70.5,-22.5 + - pos: -39.5,-17.5 parent: 6747 type: Transform - - uid: 11012 + - uid: 20064 components: - - pos: 70.5,-21.5 + - pos: -38.5,-17.5 parent: 6747 type: Transform - - uid: 11013 + - uid: 20065 components: - - pos: 71.5,-25.5 + - pos: -38.5,-18.5 parent: 6747 type: Transform - - uid: 11014 + - uid: 20066 components: - - pos: 71.5,-24.5 + - pos: -38.5,-19.5 parent: 6747 type: Transform - - uid: 11015 + - uid: 20067 components: - - pos: 71.5,-23.5 + - pos: -38.5,-20.5 parent: 6747 type: Transform - - uid: 11016 + - uid: 20068 components: - - pos: 71.5,-22.5 + - pos: -38.5,-21.5 parent: 6747 type: Transform - - uid: 11017 + - uid: 20069 components: - - pos: 71.5,-21.5 + - pos: -38.5,-22.5 parent: 6747 type: Transform - - uid: 11018 + - uid: 20070 components: - - pos: 72.5,-25.5 + - pos: -38.5,-23.5 parent: 6747 type: Transform - - uid: 11019 + - uid: 20071 components: - - pos: 72.5,-24.5 + - pos: -38.5,-24.5 parent: 6747 type: Transform - - uid: 11020 + - uid: 20072 components: - - pos: 72.5,-23.5 + - pos: -39.5,-24.5 parent: 6747 type: Transform - - uid: 11021 + - uid: 20073 components: - - pos: 72.5,-22.5 + - pos: -40.5,-24.5 parent: 6747 type: Transform - - uid: 11022 + - uid: 20074 components: - - pos: 72.5,-21.5 + - pos: -40.5,-25.5 parent: 6747 type: Transform - - uid: 11023 + - uid: 20075 components: - - pos: 70.5,-18.5 + - pos: -40.5,-26.5 parent: 6747 type: Transform - - uid: 11024 + - uid: 20076 components: - - pos: 70.5,-19.5 + - pos: -39.5,-26.5 parent: 6747 type: Transform - - uid: 11025 + - uid: 20077 components: - - pos: 70.5,-20.5 + - pos: -38.5,-26.5 parent: 6747 type: Transform - - uid: 11026 + - uid: 20078 components: - - pos: 71.5,-18.5 + - pos: -38.5,-27.5 parent: 6747 type: Transform - - uid: 11027 + - uid: 20079 components: - - pos: 71.5,-19.5 + - pos: -38.5,-28.5 parent: 6747 type: Transform - - uid: 11028 + - uid: 20080 components: - - pos: 71.5,-20.5 + - pos: -38.5,-29.5 parent: 6747 type: Transform - - uid: 11041 + - uid: 20081 components: - - pos: 72.5,-44.5 + - pos: -38.5,-30.5 parent: 6747 type: Transform - - uid: 11042 + - uid: 20082 components: - - pos: 72.5,-43.5 + - pos: -38.5,-31.5 parent: 6747 type: Transform - - uid: 11043 + - uid: 20083 components: - - pos: 71.5,-44.5 + - pos: -38.5,-32.5 parent: 6747 type: Transform - - uid: 11044 + - uid: 20084 components: - - pos: 71.5,-43.5 + - pos: -38.5,-33.5 parent: 6747 type: Transform - - uid: 11045 + - uid: 20085 components: - - pos: 70.5,-44.5 + - pos: -38.5,-34.5 parent: 6747 type: Transform - - uid: 11046 + - uid: 20086 components: - - pos: 70.5,-43.5 + - pos: -38.5,-35.5 parent: 6747 type: Transform - - uid: 11047 + - uid: 20087 components: - - pos: 69.5,-44.5 + - pos: -38.5,-36.5 parent: 6747 type: Transform - - uid: 11048 + - uid: 20088 components: - - pos: 69.5,-43.5 + - pos: -37.5,-36.5 parent: 6747 type: Transform - - uid: 11049 + - uid: 20089 components: - - pos: 72.5,-42.5 + - pos: -36.5,-36.5 parent: 6747 type: Transform - - uid: 11050 + - uid: 20090 components: - - pos: 72.5,-41.5 + - pos: -35.5,-36.5 parent: 6747 type: Transform - - uid: 11051 + - uid: 20091 components: - - pos: 72.5,-40.5 + - pos: -34.5,-36.5 parent: 6747 type: Transform - - uid: 11052 + - uid: 20092 components: - - pos: 72.5,-39.5 + - pos: -33.5,-36.5 parent: 6747 type: Transform - - uid: 11053 + - uid: 20093 components: - - pos: 71.5,-42.5 + - pos: -32.5,-36.5 parent: 6747 type: Transform - - uid: 11054 + - uid: 20094 components: - - pos: 71.5,-41.5 + - pos: -31.5,-36.5 parent: 6747 type: Transform - - uid: 11055 + - uid: 20095 components: - - pos: 71.5,-40.5 + - pos: -30.5,-36.5 parent: 6747 type: Transform - - uid: 11056 + - uid: 20096 components: - - pos: 71.5,-39.5 + - pos: -29.5,-36.5 parent: 6747 type: Transform - - uid: 11057 + - uid: 20097 components: - - pos: 70.5,-42.5 + - pos: -28.5,-36.5 parent: 6747 type: Transform - - uid: 11058 + - uid: 20098 components: - - pos: 70.5,-41.5 + - pos: -27.5,-36.5 parent: 6747 type: Transform - - uid: 11059 + - uid: 20099 components: - - pos: 70.5,-40.5 + - pos: -27.5,-35.5 parent: 6747 type: Transform - - uid: 11060 + - uid: 20100 components: - - pos: 70.5,-39.5 + - pos: -27.5,-34.5 parent: 6747 type: Transform - - uid: 11061 + - uid: 20263 components: - - pos: 69.5,-42.5 + - pos: -43.5,-15.5 parent: 6747 type: Transform - - uid: 11062 + - uid: 20264 components: - - pos: 69.5,-41.5 + - pos: -42.5,-15.5 parent: 6747 type: Transform - - uid: 11063 + - uid: 20265 components: - - pos: 69.5,-40.5 + - pos: -41.5,-15.5 parent: 6747 type: Transform - - uid: 11064 + - uid: 20466 components: - - pos: 69.5,-39.5 + - pos: 19.5,3.5 parent: 6747 type: Transform - - uid: 11083 + - uid: 20467 components: - - pos: 63.5,-39.5 + - pos: 20.5,3.5 parent: 6747 type: Transform - - uid: 11084 + - uid: 20468 components: - - pos: 63.5,-40.5 + - pos: 20.5,4.5 parent: 6747 type: Transform - - uid: 11085 + - uid: 20469 components: - - pos: 63.5,-41.5 + - pos: 20.5,5.5 parent: 6747 type: Transform - - uid: 11086 + - uid: 20470 components: - - pos: 63.5,-42.5 + - pos: 20.5,6.5 parent: 6747 type: Transform - - uid: 11087 + - uid: 20471 components: - - pos: 63.5,-43.5 + - pos: 20.5,7.5 parent: 6747 type: Transform - - uid: 11088 + - uid: 20472 components: - - pos: 63.5,-44.5 + - pos: 20.5,8.5 parent: 6747 type: Transform - - uid: 11089 + - uid: 20473 components: - - pos: 62.5,-39.5 + - pos: 19.5,8.5 parent: 6747 type: Transform - - uid: 11090 + - uid: 20474 components: - - pos: 62.5,-40.5 + - pos: 18.5,8.5 parent: 6747 type: Transform - - uid: 11091 + - uid: 20475 components: - - pos: 62.5,-41.5 + - pos: -4.5,-10.5 parent: 6747 type: Transform - - uid: 11092 + - uid: 20476 components: - - pos: 62.5,-42.5 + - pos: -3.5,-10.5 parent: 6747 type: Transform - - uid: 11093 + - uid: 20477 components: - - pos: 62.5,-43.5 + - pos: -2.5,-10.5 parent: 6747 type: Transform - - uid: 11094 + - uid: 20478 components: - - pos: 62.5,-44.5 + - pos: -1.5,-10.5 parent: 6747 type: Transform - - uid: 11095 + - uid: 20479 components: - - pos: 61.5,-39.5 + - pos: -0.5,-10.5 parent: 6747 type: Transform - - uid: 11096 + - uid: 20480 components: - - pos: 61.5,-40.5 + - pos: 0.5,-10.5 parent: 6747 type: Transform - - uid: 11097 + - uid: 20481 components: - - pos: 61.5,-41.5 + - pos: 1.5,-10.5 parent: 6747 type: Transform - - uid: 11098 + - uid: 20482 components: - - pos: 61.5,-42.5 + - pos: 2.5,-10.5 parent: 6747 type: Transform - - uid: 11099 + - uid: 20511 components: - - pos: 61.5,-43.5 + - pos: -0.5,-9.5 parent: 6747 type: Transform - - uid: 11100 + - uid: 20512 components: - - pos: 61.5,-44.5 + - pos: -0.5,-8.5 parent: 6747 type: Transform - - uid: 11101 + - uid: 20513 components: - - pos: 60.5,-39.5 + - pos: -0.5,-7.5 parent: 6747 type: Transform - - uid: 11102 + - uid: 20514 components: - - pos: 60.5,-40.5 + - pos: -0.5,-6.5 parent: 6747 type: Transform - - uid: 11103 + - uid: 20515 components: - - pos: 60.5,-41.5 + - pos: -0.5,-5.5 parent: 6747 type: Transform - - uid: 11104 + - uid: 20516 components: - - pos: 60.5,-42.5 + - pos: -0.5,-4.5 parent: 6747 type: Transform - - uid: 11105 + - uid: 20539 components: - - pos: 60.5,-43.5 + - pos: -0.5,-3.5 parent: 6747 type: Transform - - uid: 11106 + - uid: 20540 components: - - pos: 60.5,-44.5 + - pos: -0.5,-2.5 parent: 6747 type: Transform - - uid: 11107 + - uid: 20541 components: - - pos: 59.5,-39.5 + - pos: -0.5,-1.5 parent: 6747 type: Transform - - uid: 11108 + - uid: 20542 components: - - pos: 59.5,-40.5 + - pos: -0.5,-0.5 parent: 6747 type: Transform - - uid: 11109 + - uid: 20543 components: - - pos: 59.5,-41.5 + - pos: -0.5,0.5 parent: 6747 type: Transform - - uid: 11110 + - uid: 20544 components: - - pos: 59.5,-42.5 + - pos: -0.5,1.5 parent: 6747 type: Transform - - uid: 11111 + - uid: 20545 components: - - pos: 59.5,-43.5 + - pos: 0.5,1.5 parent: 6747 type: Transform - - uid: 11112 + - uid: 20546 components: - - pos: 59.5,-44.5 + - pos: 1.5,1.5 parent: 6747 type: Transform -- proto: CarpSpawnerMundane - entities: - - uid: 3644 + - uid: 20547 components: - - pos: -35.5,-9.5 + - pos: -1.5,1.5 parent: 6747 type: Transform - - uid: 3645 + - uid: 20548 components: - - pos: -35.5,-13.5 + - pos: -2.5,1.5 parent: 6747 type: Transform - - uid: 3679 + - uid: 20549 components: - - pos: -35.5,-8.5 + - pos: -3.5,1.5 parent: 6747 type: Transform - - uid: 6175 + - uid: 20550 components: - - pos: -36.5,-8.5 + - pos: -4.5,1.5 parent: 6747 type: Transform - - uid: 6395 + - uid: 20551 components: - - pos: -36.5,-9.5 + - pos: -5.5,1.5 parent: 6747 type: Transform -- proto: CartridgeMinigun - entities: - - uid: 2427 + - uid: 20552 components: - - rot: -1.5707963267948966 rad - pos: 49.160793,-16.08039 + - pos: -6.5,1.5 parent: 6747 type: Transform -- proto: Catwalk - entities: - - uid: 612 + - uid: 20553 components: - - pos: -49.5,-41.5 + - pos: -7.5,1.5 parent: 6747 type: Transform - - uid: 1139 + - uid: 20554 components: - - pos: 7.5,-7.5 + - pos: -8.5,1.5 parent: 6747 type: Transform - - uid: 1202 + - uid: 20555 components: - - pos: 7.5,-6.5 + - pos: -8.5,2.5 parent: 6747 type: Transform - - uid: 2784 + - uid: 20556 components: - - pos: -43.5,-19.5 + - pos: -8.5,3.5 parent: 6747 type: Transform - - uid: 2882 + - uid: 20557 components: - - pos: -42.5,-19.5 + - pos: -9.5,1.5 parent: 6747 type: Transform - - uid: 2884 + - uid: 20558 components: - - pos: -43.5,-18.5 + - pos: -10.5,1.5 parent: 6747 type: Transform - - uid: 2904 + - uid: 20559 components: - - pos: -44.5,-41.5 + - pos: -11.5,1.5 parent: 6747 type: Transform - - uid: 2940 + - uid: 20560 components: - - pos: -42.5,-15.5 + - pos: -11.5,0.5 parent: 6747 type: Transform - - uid: 2976 + - uid: 20561 components: - - pos: -46.5,-41.5 + - pos: -11.5,-0.5 parent: 6747 type: Transform - - uid: 3017 + - uid: 20562 components: - - pos: -47.5,-41.5 + - pos: -11.5,-1.5 parent: 6747 type: Transform - - uid: 3061 + - uid: 20563 components: - - pos: -48.5,-41.5 + - pos: -11.5,-2.5 parent: 6747 type: Transform - - uid: 3248 + - uid: 20564 components: - - pos: 44.5,-48.5 + - pos: -11.5,-3.5 parent: 6747 type: Transform - - uid: 3249 + - uid: 20565 components: - - pos: 35.5,-44.5 + - pos: -11.5,-4.5 parent: 6747 type: Transform - - uid: 3250 + - uid: 20566 components: - - pos: 52.5,-30.5 + - pos: -12.5,-4.5 parent: 6747 type: Transform - - uid: 3251 + - uid: 20567 components: - - pos: -3.5,-55.5 + - pos: -13.5,-4.5 parent: 6747 type: Transform - - uid: 3253 + - uid: 20568 components: - - pos: 3.5,-11.5 + - pos: -14.5,-4.5 parent: 6747 type: Transform - - uid: 3254 + - uid: 20569 components: - - pos: 29.5,6.5 + - pos: -12.5,1.5 parent: 6747 type: Transform - - uid: 3255 + - uid: 20570 components: - - pos: 53.5,-21.5 + - pos: -13.5,1.5 parent: 6747 type: Transform - - uid: 7384 + - uid: 20571 components: - - pos: -49.5,-13.5 + - pos: -14.5,1.5 parent: 6747 type: Transform - - uid: 7385 + - uid: 20572 components: - - pos: -49.5,-16.5 + - pos: -15.5,1.5 parent: 6747 type: Transform - - uid: 10485 + - uid: 20573 components: - - pos: -40.5,-41.5 + - pos: -16.5,1.5 parent: 6747 type: Transform - - uid: 10490 + - uid: 20574 components: - - pos: -45.5,-41.5 + - pos: -16.5,0.5 parent: 6747 type: Transform - - uid: 11469 + - uid: 20575 components: - - pos: -41.5,-41.5 + - pos: -16.5,-0.5 parent: 6747 type: Transform - - uid: 11557 + - uid: 20576 components: - - pos: 6.5,-12.5 + - pos: -16.5,-1.5 parent: 6747 type: Transform - - uid: 11558 + - uid: 20577 components: - - pos: 5.5,-13.5 + - pos: -17.5,-1.5 parent: 6747 type: Transform - - uid: 11559 + - uid: 20578 components: - - pos: 4.5,-13.5 + - pos: -18.5,-1.5 parent: 6747 type: Transform - - uid: 11560 + - uid: 20579 components: - - pos: 3.5,-13.5 + - pos: -19.5,-1.5 parent: 6747 type: Transform - - uid: 11561 + - uid: 20580 components: - - pos: 3.5,-12.5 + - pos: -20.5,-1.5 parent: 6747 type: Transform - - uid: 14661 + - uid: 20581 components: - - pos: -42.5,-41.5 + - pos: -21.5,-1.5 parent: 6747 type: Transform - - uid: 14662 + - uid: 20582 components: - - pos: -43.5,-41.5 + - pos: -22.5,-1.5 parent: 6747 type: Transform - - uid: 14791 + - uid: 20583 components: - - pos: -39.5,-41.5 + - pos: -23.5,-1.5 parent: 6747 type: Transform - - uid: 14796 + - uid: 20584 components: - - pos: -49.5,-40.5 + - pos: -24.5,-1.5 parent: 6747 type: Transform - - uid: 16038 + - uid: 20585 components: - - pos: 7.5,-5.5 + - pos: -25.5,-1.5 parent: 6747 type: Transform - - uid: 16039 + - uid: 20586 components: - - pos: 7.5,-4.5 + - pos: -26.5,-1.5 parent: 6747 type: Transform - - uid: 16040 + - uid: 20587 components: - - pos: 7.5,-3.5 + - pos: -27.5,-1.5 parent: 6747 type: Transform - - uid: 16041 + - uid: 20588 components: - - pos: 7.5,-2.5 + - pos: -28.5,-1.5 parent: 6747 type: Transform - - uid: 16042 + - uid: 20589 components: - - pos: 7.5,-1.5 + - pos: -28.5,-0.5 parent: 6747 type: Transform - - uid: 16043 + - uid: 20590 components: - - pos: 7.5,-0.5 + - pos: -28.5,0.5 parent: 6747 type: Transform - - uid: 16044 + - uid: 20591 components: - - pos: 7.5,0.5 + - pos: -29.5,-1.5 parent: 6747 type: Transform - - uid: 16045 + - uid: 20592 components: - - pos: 7.5,1.5 + - pos: -30.5,-1.5 parent: 6747 type: Transform - - uid: 16131 + - uid: 20593 components: - - pos: -16.5,-39.5 + - pos: -31.5,-1.5 parent: 6747 type: Transform - - uid: 16132 + - uid: 20594 components: - - pos: -17.5,-39.5 + - pos: -32.5,-1.5 parent: 6747 type: Transform - - uid: 16133 + - uid: 20595 components: - - pos: -18.5,-39.5 + - pos: -33.5,-1.5 parent: 6747 type: Transform - - uid: 16134 + - uid: 20596 components: - - pos: -19.5,-39.5 + - pos: -34.5,-1.5 parent: 6747 type: Transform - - uid: 16135 + - uid: 20597 components: - - pos: -20.5,-39.5 + - pos: -35.5,-1.5 parent: 6747 type: Transform - - uid: 16136 + - uid: 20598 components: - - pos: -21.5,-39.5 + - pos: -36.5,-1.5 parent: 6747 type: Transform - - uid: 16137 + - uid: 20635 components: - - pos: -22.5,-39.5 + - pos: -15.5,-56.5 parent: 6747 type: Transform - - uid: 16138 + - uid: 20647 components: - - pos: -22.5,-40.5 + - pos: -37.5,-1.5 parent: 6747 type: Transform - - uid: 16139 + - uid: 20651 components: - - pos: -22.5,-41.5 + - pos: -38.5,-1.5 parent: 6747 type: Transform - - uid: 16140 + - uid: 20652 components: - - pos: -22.5,-42.5 + - pos: -39.5,-1.5 parent: 6747 type: Transform - - uid: 16141 + - uid: 20653 components: - - pos: -23.5,-42.5 + - pos: -39.5,-0.5 parent: 6747 type: Transform - - uid: 16142 + - uid: 20654 components: - - pos: -24.5,-42.5 + - pos: -39.5,0.5 parent: 6747 type: Transform - - uid: 16149 + - uid: 20655 components: - - pos: -25.5,-42.5 + - pos: -39.5,1.5 parent: 6747 type: Transform - - uid: 16150 + - uid: 20656 components: - - pos: -26.5,-42.5 + - pos: -33.5,-2.5 parent: 6747 type: Transform - - uid: 16151 + - uid: 20657 components: - - pos: -27.5,-42.5 + - pos: -33.5,-3.5 parent: 6747 type: Transform - - uid: 16152 + - uid: 20658 components: - - pos: -28.5,-42.5 + - pos: -34.5,-3.5 parent: 6747 type: Transform - - uid: 16153 + - uid: 20659 components: - - pos: -29.5,-42.5 + - pos: -33.5,-48.5 parent: 6747 type: Transform - - uid: 16154 + - uid: 20660 components: - - pos: -30.5,-42.5 + - pos: -33.5,-47.5 parent: 6747 type: Transform - - uid: 16155 + - uid: 20661 components: - - pos: -31.5,-42.5 + - pos: -33.5,-46.5 parent: 6747 type: Transform - - uid: 16156 + - uid: 20662 components: - - pos: -32.5,-42.5 + - pos: -31.5,-46.5 parent: 6747 type: Transform - - uid: 16157 + - uid: 21048 components: - - pos: -33.5,-42.5 + - pos: -32.5,-46.5 parent: 6747 type: Transform - - uid: 16158 + - uid: 21049 components: - - pos: -34.5,-42.5 + - pos: -30.5,-46.5 parent: 6747 type: Transform - - uid: 16159 + - uid: 21050 components: - - pos: -35.5,-42.5 + - pos: -30.5,-47.5 parent: 6747 type: Transform - - uid: 16160 + - uid: 21051 components: - - pos: -36.5,-41.5 + - pos: -30.5,-48.5 parent: 6747 type: Transform - - uid: 16161 + - uid: 21053 components: - - pos: -37.5,-41.5 + - pos: -30.5,-49.5 parent: 6747 type: Transform - - uid: 18455 + - uid: 21054 components: - - pos: -17.5,4.5 + - pos: -30.5,-50.5 parent: 6747 type: Transform - - uid: 18456 + - uid: 21055 components: - - pos: -18.5,4.5 + - pos: -30.5,-51.5 parent: 6747 type: Transform - - uid: 21454 + - uid: 21056 components: - - pos: 30.5,6.5 + - pos: -30.5,-52.5 parent: 6747 type: Transform - - uid: 21455 + - uid: 21057 components: - - pos: 31.5,6.5 + - pos: -29.5,-52.5 parent: 6747 type: Transform - - uid: 21456 + - uid: 21058 components: - - pos: 32.5,6.5 + - pos: -28.5,-52.5 parent: 6747 type: Transform - - uid: 21457 + - uid: 21059 components: - - pos: 33.5,6.5 + - pos: -29.5,-46.5 parent: 6747 type: Transform - - uid: 21458 + - uid: 21060 components: - - pos: 34.5,6.5 + - pos: -28.5,-46.5 parent: 6747 type: Transform - - uid: 21459 + - uid: 21061 components: - - pos: 35.5,6.5 + - pos: -27.5,-46.5 parent: 6747 type: Transform - - uid: 21460 + - uid: 21062 components: - - pos: 35.5,5.5 + - pos: -27.5,-47.5 parent: 6747 type: Transform - - uid: 21461 + - uid: 21063 components: - - pos: 35.5,4.5 + - pos: -27.5,-48.5 parent: 6747 type: Transform - - uid: 21462 + - uid: 21064 components: - - pos: 36.5,4.5 + - pos: -26.5,-48.5 parent: 6747 type: Transform - - uid: 21463 + - uid: 21065 components: - - pos: 37.5,4.5 + - pos: -25.5,-48.5 parent: 6747 type: Transform - - uid: 21464 + - uid: 21066 components: - - pos: 38.5,4.5 + - pos: -24.5,-48.5 parent: 6747 type: Transform - - uid: 21465 + - uid: 21067 components: - - pos: 39.5,4.5 + - pos: -23.5,-48.5 parent: 6747 type: Transform - - uid: 21466 + - uid: 21068 components: - - pos: 40.5,4.5 + - pos: -23.5,-49.5 parent: 6747 type: Transform - - uid: 21467 + - uid: 21069 components: - - pos: 41.5,4.5 + - pos: -23.5,-50.5 parent: 6747 type: Transform - - uid: 21468 + - uid: 21070 components: - - pos: 42.5,4.5 + - pos: -23.5,-51.5 parent: 6747 type: Transform - - uid: 21469 + - uid: 21071 components: - - pos: 43.5,4.5 + - pos: -23.5,-52.5 parent: 6747 type: Transform - - uid: 21470 + - uid: 21072 components: - - pos: 44.5,4.5 + - pos: -23.5,-53.5 parent: 6747 type: Transform - - uid: 21471 + - uid: 21073 components: - - pos: 45.5,4.5 + - pos: -23.5,-54.5 parent: 6747 type: Transform - - uid: 21472 + - uid: 21074 components: - - pos: 46.5,4.5 + - pos: -23.5,-55.5 parent: 6747 type: Transform - - uid: 21473 + - uid: 21075 components: - - pos: 47.5,4.5 + - pos: -23.5,-56.5 parent: 6747 type: Transform - - uid: 21474 + - uid: 21076 components: - - pos: 48.5,4.5 + - pos: -23.5,-57.5 parent: 6747 type: Transform - - uid: 21475 + - uid: 21077 components: - - pos: 49.5,4.5 + - pos: -22.5,-57.5 parent: 6747 type: Transform - - uid: 21476 + - uid: 21078 components: - - pos: 50.5,4.5 + - pos: -21.5,-57.5 parent: 6747 type: Transform - - uid: 21477 + - uid: 21079 components: - - pos: 50.5,3.5 + - pos: -20.5,-57.5 parent: 6747 type: Transform - - uid: 21478 + - uid: 21080 components: - - pos: 50.5,2.5 + - pos: -19.5,-57.5 parent: 6747 type: Transform - - uid: 21479 + - uid: 21081 components: - - pos: 50.5,1.5 + - pos: -18.5,-57.5 parent: 6747 type: Transform - - uid: 21480 + - uid: 21082 components: - - pos: 50.5,0.5 + - pos: -17.5,-57.5 parent: 6747 type: Transform - - uid: 21481 + - uid: 21083 components: - - pos: 50.5,-0.5 + - pos: -16.5,-57.5 parent: 6747 type: Transform - - uid: 21482 + - uid: 21087 components: - - pos: 50.5,-1.5 + - pos: -44.5,-15.5 parent: 6747 type: Transform - - uid: 21483 + - uid: 21088 components: - - pos: 50.5,-2.5 + - pos: -45.5,-15.5 parent: 6747 type: Transform - - uid: 21484 + - uid: 21117 components: - - pos: 50.5,-3.5 + - pos: -42.5,-41.5 parent: 6747 type: Transform - - uid: 21485 + - uid: 21118 components: - - pos: 51.5,-3.5 + - pos: -41.5,-41.5 parent: 6747 type: Transform - - uid: 21486 + - uid: 21119 components: - - pos: 52.5,-3.5 + - pos: -40.5,-41.5 parent: 6747 type: Transform - - uid: 21487 + - uid: 21120 components: - - pos: 53.5,-3.5 + - pos: -39.5,-41.5 parent: 6747 type: Transform - - uid: 21488 + - uid: 21121 components: - - pos: 54.5,-3.5 + - pos: -39.5,-42.5 parent: 6747 type: Transform - - uid: 21489 + - uid: 21122 components: - - pos: 54.5,-4.5 + - pos: -39.5,-43.5 parent: 6747 type: Transform - - uid: 21490 + - uid: 21123 components: - - pos: 54.5,-5.5 + - pos: -39.5,-44.5 parent: 6747 type: Transform - - uid: 21491 + - uid: 21124 components: - - pos: 54.5,-6.5 + - pos: -39.5,-45.5 parent: 6747 type: Transform - - uid: 21492 + - uid: 21125 components: - - pos: 54.5,-7.5 + - pos: -39.5,-46.5 parent: 6747 type: Transform - - uid: 21493 + - uid: 21126 components: - - pos: 54.5,-8.5 + - pos: -39.5,-47.5 parent: 6747 type: Transform - - uid: 21494 + - uid: 21127 components: - - pos: 54.5,-9.5 + - pos: -39.5,-48.5 parent: 6747 type: Transform - - uid: 21495 + - uid: 21128 components: - - pos: 54.5,-10.5 + - pos: -39.5,-49.5 parent: 6747 type: Transform - - uid: 21496 + - uid: 21129 components: - - pos: 54.5,-11.5 + - pos: -39.5,-50.5 parent: 6747 type: Transform - - uid: 21497 + - uid: 21130 components: - - pos: 54.5,-12.5 + - pos: -39.5,-51.5 parent: 6747 type: Transform - - uid: 21498 + - uid: 21131 components: - - pos: 54.5,-13.5 + - pos: -39.5,-52.5 parent: 6747 type: Transform - - uid: 21499 + - uid: 21132 components: - - pos: 54.5,-14.5 + - pos: -38.5,-52.5 parent: 6747 type: Transform - - uid: 21500 + - uid: 21133 components: - - pos: 54.5,-15.5 + - pos: -37.5,-52.5 parent: 6747 type: Transform - - uid: 21501 + - uid: 21134 components: - - pos: 54.5,-16.5 + - pos: -36.5,-52.5 parent: 6747 type: Transform - - uid: 21502 + - uid: 21135 components: - - pos: 54.5,-17.5 + - pos: -35.5,-52.5 parent: 6747 type: Transform - - uid: 21503 + - uid: 21136 components: - - pos: 54.5,-18.5 + - pos: -35.5,-53.5 parent: 6747 type: Transform - - uid: 21504 + - uid: 21137 components: - - pos: 54.5,-19.5 + - pos: -35.5,-54.5 parent: 6747 type: Transform - - uid: 21505 + - uid: 21138 components: - - pos: 54.5,-20.5 + - pos: -35.5,-55.5 parent: 6747 type: Transform - - uid: 21506 + - uid: 21139 components: - - pos: 54.5,-21.5 + - pos: -35.5,-56.5 parent: 6747 type: Transform - - uid: 21507 + - uid: 21140 components: - - pos: 55.5,-16.5 + - pos: -34.5,-56.5 parent: 6747 type: Transform - - uid: 21508 + - uid: 21141 components: - - pos: 56.5,-16.5 + - pos: -34.5,-57.5 parent: 6747 type: Transform - - uid: 21509 + - uid: 21142 components: - - pos: 57.5,-16.5 + - pos: -34.5,-58.5 parent: 6747 type: Transform - - uid: 21510 + - uid: 21143 components: - - pos: 58.5,-16.5 + - pos: -34.5,-59.5 parent: 6747 type: Transform - - uid: 21511 + - uid: 21144 components: - - pos: 52.5,-31.5 + - pos: -34.5,-60.5 parent: 6747 type: Transform - - uid: 21512 + - uid: 21145 components: - - pos: 52.5,-32.5 + - pos: -34.5,-61.5 parent: 6747 type: Transform - - uid: 21513 + - uid: 21146 components: - - pos: 52.5,-33.5 + - pos: -33.5,-61.5 parent: 6747 type: Transform - - uid: 21514 + - uid: 21147 components: - - pos: 52.5,-34.5 + - pos: -32.5,-61.5 parent: 6747 type: Transform - - uid: 21515 + - uid: 21148 components: - - pos: 52.5,-35.5 + - pos: -31.5,-61.5 parent: 6747 type: Transform - - uid: 21516 + - uid: 21149 components: - - pos: 52.5,-36.5 + - pos: -30.5,-61.5 parent: 6747 type: Transform - - uid: 21517 + - uid: 21150 components: - - pos: 52.5,-37.5 + - pos: -29.5,-61.5 parent: 6747 type: Transform - - uid: 21518 + - uid: 21151 components: - - pos: 53.5,-34.5 + - pos: -28.5,-61.5 parent: 6747 type: Transform - - uid: 21519 + - uid: 21152 components: - - pos: 54.5,-34.5 + - pos: -27.5,-61.5 parent: 6747 type: Transform - - uid: 21520 + - uid: 21153 components: - - pos: 55.5,-34.5 + - pos: -26.5,-61.5 parent: 6747 type: Transform - - uid: 21521 + - uid: 21154 components: - - pos: 53.5,-37.5 + - pos: -25.5,-61.5 parent: 6747 type: Transform - - uid: 21522 + - uid: 21155 components: - - pos: 53.5,-38.5 + - pos: -24.5,-61.5 parent: 6747 type: Transform - - uid: 21523 + - uid: 21156 components: - - pos: 51.5,-37.5 + - pos: -23.5,-61.5 parent: 6747 type: Transform - - uid: 21524 + - uid: 21157 components: - - pos: 51.5,-38.5 + - pos: -22.5,-61.5 parent: 6747 type: Transform - - uid: 21525 + - uid: 21158 components: - - pos: 50.5,-38.5 + - pos: -22.5,-62.5 parent: 6747 type: Transform - - uid: 21526 + - uid: 21159 components: - - pos: 49.5,-38.5 + - pos: -21.5,-62.5 parent: 6747 type: Transform - - uid: 21527 + - uid: 21160 components: - - pos: 48.5,-38.5 + - pos: -20.5,-62.5 parent: 6747 type: Transform - - uid: 21528 + - uid: 21161 components: - - pos: 47.5,-38.5 + - pos: -19.5,-62.5 parent: 6747 type: Transform - - uid: 21529 + - uid: 21162 components: - - pos: 46.5,-38.5 + - pos: -18.5,-62.5 parent: 6747 type: Transform - - uid: 21530 + - uid: 21163 components: - - pos: 45.5,-38.5 + - pos: -17.5,-62.5 parent: 6747 type: Transform - - uid: 21531 + - uid: 21164 components: - - pos: 45.5,-39.5 + - pos: -16.5,-62.5 parent: 6747 type: Transform - - uid: 21532 + - uid: 21165 components: - - pos: 44.5,-39.5 + - pos: -15.5,-62.5 parent: 6747 type: Transform - - uid: 21537 + - uid: 21166 components: - - pos: 43.5,-43.5 + - pos: -14.5,-62.5 parent: 6747 type: Transform - - uid: 21538 + - uid: 21167 components: - - pos: 42.5,-43.5 + - pos: -13.5,-62.5 parent: 6747 type: Transform - - uid: 21539 + - uid: 21169 components: - - pos: 41.5,-43.5 + - pos: -13.5,-63.5 parent: 6747 type: Transform - - uid: 21540 + - uid: 21170 components: - - pos: 40.5,-43.5 + - pos: -13.5,-64.5 parent: 6747 type: Transform - - uid: 21541 + - uid: 21171 components: - - pos: 39.5,-43.5 + - pos: -13.5,-65.5 parent: 6747 type: Transform - - uid: 21542 + - uid: 21172 components: - - pos: 38.5,-43.5 + - pos: -13.5,-66.5 parent: 6747 type: Transform - - uid: 21543 + - uid: 21173 components: - - pos: 37.5,-43.5 + - pos: -13.5,-67.5 parent: 6747 type: Transform - - uid: 21544 + - uid: 21174 components: - - pos: 36.5,-43.5 + - pos: -13.5,-68.5 parent: 6747 type: Transform - - uid: 21545 + - uid: 21175 components: - - pos: 35.5,-43.5 + - pos: -12.5,-68.5 parent: 6747 type: Transform - - uid: 21570 + - uid: 21176 components: - - pos: -45.5,-13.5 + - pos: -11.5,-68.5 parent: 6747 type: Transform - - uid: 21571 + - uid: 21177 components: - - pos: -45.5,-14.5 + - pos: -10.5,-68.5 parent: 6747 type: Transform - - uid: 21572 + - uid: 21178 components: - - pos: -45.5,-15.5 + - pos: -9.5,-68.5 parent: 6747 type: Transform - - uid: 21573 + - uid: 21179 components: - - pos: -44.5,-15.5 + - pos: -8.5,-68.5 parent: 6747 type: Transform - - uid: 21574 + - uid: 21180 components: - - pos: -43.5,-15.5 + - pos: -7.5,-68.5 parent: 6747 type: Transform - - uid: 21578 + - uid: 21181 components: - - pos: -38.5,-41.5 + - pos: -6.5,-68.5 parent: 6747 type: Transform - - uid: 21579 + - uid: 21182 components: - - pos: -38.5,-42.5 + - pos: -5.5,-68.5 parent: 6747 type: Transform - - uid: 21580 + - uid: 21183 components: - - pos: -38.5,-43.5 + - pos: -4.5,-68.5 parent: 6747 type: Transform - - uid: 21581 + - uid: 21184 components: - - pos: -38.5,-44.5 + - pos: -3.5,-68.5 parent: 6747 type: Transform - - uid: 21582 + - uid: 21185 components: - - pos: -38.5,-45.5 + - pos: -3.5,-67.5 parent: 6747 type: Transform - - uid: 21583 + - uid: 21186 components: - - pos: -38.5,-46.5 + - pos: -3.5,-66.5 parent: 6747 type: Transform - - uid: 21584 + - uid: 21187 components: - - pos: -38.5,-47.5 + - pos: -3.5,-65.5 parent: 6747 type: Transform - - uid: 21585 + - uid: 21188 components: - - pos: -38.5,-48.5 + - pos: -3.5,-64.5 parent: 6747 type: Transform - - uid: 21586 + - uid: 21189 components: - - pos: -38.5,-49.5 + - pos: -3.5,-63.5 parent: 6747 type: Transform - - uid: 21587 + - uid: 21190 components: - - pos: -38.5,-50.5 + - pos: -3.5,-62.5 parent: 6747 type: Transform - - uid: 21588 + - uid: 21191 components: - - pos: -38.5,-51.5 + - pos: -3.5,-61.5 parent: 6747 type: Transform - - uid: 21589 + - uid: 21192 components: - - pos: -38.5,-52.5 + - pos: -3.5,-60.5 parent: 6747 type: Transform - - uid: 21590 + - uid: 21193 components: - - pos: -37.5,-52.5 + - pos: -3.5,-59.5 parent: 6747 type: Transform - - uid: 21591 + - uid: 21194 components: - - pos: -36.5,-52.5 + - pos: -3.5,-58.5 parent: 6747 type: Transform - - uid: 21592 + - uid: 21195 components: - - pos: -35.5,-52.5 + - pos: -3.5,-57.5 parent: 6747 type: Transform - - uid: 21593 + - uid: 21196 components: - - pos: -34.5,-52.5 + - pos: -3.5,-56.5 parent: 6747 type: Transform - - uid: 21594 + - uid: 21197 components: - - pos: -34.5,-53.5 + - pos: -3.5,-55.5 parent: 6747 type: Transform - - uid: 21595 + - uid: 21198 components: - - pos: -34.5,-54.5 + - pos: -3.5,-54.5 parent: 6747 type: Transform - - uid: 21596 + - uid: 21199 components: - - pos: -34.5,-55.5 + - pos: -3.5,-53.5 parent: 6747 type: Transform - - uid: 21597 + - uid: 21200 components: - - pos: -34.5,-56.5 + - pos: -3.5,-52.5 parent: 6747 type: Transform - - uid: 21598 + - uid: 21201 components: - - pos: -34.5,-57.5 + - pos: -3.5,-51.5 parent: 6747 type: Transform - - uid: 21599 + - uid: 21202 components: - - pos: -34.5,-58.5 + - pos: -3.5,-50.5 parent: 6747 type: Transform - - uid: 21600 + - uid: 21203 components: - - pos: -34.5,-59.5 + - pos: -3.5,-49.5 parent: 6747 type: Transform - - uid: 21601 + - uid: 21204 components: - - pos: -34.5,-60.5 + - pos: -3.5,-48.5 parent: 6747 type: Transform - - uid: 21602 + - uid: 21205 components: - - pos: -34.5,-61.5 + - pos: -4.5,-54.5 parent: 6747 type: Transform - - uid: 21614 + - uid: 21206 components: - - pos: -22.5,-61.5 + - pos: -5.5,-54.5 parent: 6747 type: Transform - - uid: 21615 + - uid: 21207 components: - - pos: -22.5,-62.5 + - pos: -6.5,-54.5 parent: 6747 type: Transform - - uid: 21616 + - uid: 21208 components: - - pos: -21.5,-62.5 + - pos: -7.5,-54.5 parent: 6747 type: Transform - - uid: 21617 + - uid: 21209 components: - - pos: -20.5,-62.5 + - pos: -7.5,-55.5 parent: 6747 type: Transform - - uid: 21618 + - uid: 21210 components: - - pos: -19.5,-62.5 + - pos: -7.5,-56.5 parent: 6747 type: Transform - - uid: 21619 + - uid: 21211 components: - - pos: -18.5,-62.5 + - pos: -7.5,-57.5 parent: 6747 type: Transform - - uid: 21620 + - uid: 21212 components: - - pos: -17.5,-62.5 + - pos: -7.5,-58.5 parent: 6747 type: Transform - - uid: 21621 + - uid: 21213 components: - - pos: -16.5,-62.5 + - pos: -7.5,-59.5 parent: 6747 type: Transform - - uid: 21622 + - uid: 21214 components: - - pos: -15.5,-62.5 + - pos: -8.5,-59.5 parent: 6747 type: Transform - - uid: 21623 + - uid: 21215 components: - - pos: -14.5,-62.5 + - pos: -8.5,-60.5 parent: 6747 type: Transform - - uid: 21624 + - uid: 21216 components: - - pos: -13.5,-62.5 + - pos: -8.5,-61.5 parent: 6747 type: Transform - - uid: 21625 + - uid: 21217 components: - - pos: -13.5,-63.5 + - pos: -8.5,-62.5 parent: 6747 type: Transform - - uid: 21626 + - uid: 21218 components: - - pos: -13.5,-64.5 + - pos: -8.5,-63.5 parent: 6747 type: Transform - - uid: 21627 + - uid: 21979 components: - - pos: -13.5,-65.5 + - pos: 19.5,-76.5 parent: 6747 type: Transform - - uid: 21628 + - uid: 22383 components: - - pos: -13.5,-66.5 + - pos: 13.5,3.5 parent: 6747 type: Transform - - uid: 21629 + - uid: 22734 components: - - pos: -13.5,-67.5 + - pos: 50.5,21.5 parent: 6747 type: Transform - - uid: 21630 + - uid: 22735 components: - - pos: -13.5,-68.5 + - pos: 53.5,21.5 parent: 6747 type: Transform - - uid: 21631 + - uid: 23835 components: - - pos: -12.5,-68.5 + - pos: 48.5,21.5 parent: 6747 type: Transform - - uid: 21632 + - uid: 23836 components: - - pos: -11.5,-68.5 + - pos: 49.5,21.5 parent: 6747 type: Transform - - uid: 21633 + - uid: 23840 components: - - pos: -10.5,-68.5 + - pos: 51.5,21.5 parent: 6747 type: Transform - - uid: 21634 + - uid: 23841 components: - - pos: -9.5,-68.5 + - pos: 54.5,21.5 parent: 6747 type: Transform - - uid: 21635 + - uid: 23901 components: - - pos: -8.5,-68.5 + - pos: 54.5,20.5 parent: 6747 type: Transform - - uid: 21636 + - uid: 23902 components: - - pos: -7.5,-68.5 + - pos: 55.5,20.5 parent: 6747 type: Transform - - uid: 21637 + - uid: 23965 components: - - pos: -6.5,-68.5 + - pos: 44.5,-41.5 parent: 6747 type: Transform - - uid: 21638 + - uid: 23966 components: - - pos: -5.5,-68.5 + - pos: 44.5,-42.5 parent: 6747 type: Transform - - uid: 21639 + - uid: 23967 components: - - pos: -4.5,-68.5 + - pos: 44.5,-43.5 parent: 6747 type: Transform - - uid: 21640 + - uid: 24193 components: - - pos: -3.5,-68.5 + - pos: 56.5,20.5 parent: 6747 type: Transform - - uid: 21641 + - uid: 24712 components: - - pos: -3.5,-67.5 + - pos: -45.5,-5.5 parent: 6747 type: Transform - - uid: 21642 + - uid: 24714 components: - - pos: -3.5,-66.5 + - pos: -61.5,7.5 parent: 6747 type: Transform - - uid: 21643 + - uid: 24715 components: - - pos: -3.5,-65.5 + - pos: -61.5,6.5 parent: 6747 type: Transform - - uid: 21644 + - uid: 24716 components: - - pos: -3.5,-64.5 + - pos: -61.5,5.5 parent: 6747 type: Transform - - uid: 21645 + - uid: 24717 components: - - pos: -3.5,-63.5 + - pos: -61.5,4.5 parent: 6747 type: Transform - - uid: 21646 + - uid: 24718 components: - - pos: -3.5,-62.5 + - pos: -61.5,3.5 parent: 6747 type: Transform - - uid: 21647 + - uid: 24719 components: - - pos: -3.5,-61.5 + - pos: -61.5,2.5 parent: 6747 type: Transform - - uid: 21648 + - uid: 24720 components: - - pos: -3.5,-60.5 + - pos: -60.5,2.5 parent: 6747 type: Transform - - uid: 21649 + - uid: 24721 components: - - pos: -3.5,-59.5 + - pos: -59.5,2.5 parent: 6747 type: Transform - - uid: 21650 + - uid: 24722 components: - - pos: -3.5,-58.5 + - pos: -58.5,2.5 parent: 6747 type: Transform - - uid: 21651 + - uid: 24723 components: - - pos: -3.5,-57.5 + - pos: -57.5,2.5 parent: 6747 type: Transform - - uid: 21652 + - uid: 24724 components: - - pos: -3.5,-56.5 + - pos: -56.5,2.5 parent: 6747 type: Transform - - uid: 21653 + - uid: 24725 components: - - pos: -19.5,4.5 + - pos: -55.5,2.5 parent: 6747 type: Transform - - uid: 21660 + - uid: 24726 components: - - pos: -13.5,5.5 + - pos: -54.5,2.5 parent: 6747 type: Transform - - uid: 21661 + - uid: 24727 components: - - pos: -12.5,5.5 + - pos: -54.5,1.5 parent: 6747 type: Transform - - uid: 21662 + - uid: 24728 components: - - pos: -11.5,5.5 + - pos: -54.5,0.5 parent: 6747 type: Transform - - uid: 21663 + - uid: 24729 components: - - pos: -10.5,5.5 + - pos: -54.5,-0.5 parent: 6747 type: Transform - - uid: 21664 + - uid: 24730 components: - - pos: -9.5,5.5 + - pos: -54.5,-1.5 parent: 6747 type: Transform - - uid: 21665 + - uid: 24731 components: - - pos: -8.5,5.5 + - pos: -54.5,-2.5 parent: 6747 type: Transform - - uid: 21666 + - uid: 24732 components: - - pos: -7.5,5.5 + - pos: -54.5,-3.5 parent: 6747 type: Transform - - uid: 21667 + - uid: 24733 components: - - pos: -6.5,5.5 + - pos: -54.5,-4.5 parent: 6747 type: Transform - - uid: 21668 + - uid: 24734 components: - - pos: -5.5,5.5 + - pos: -53.5,-4.5 parent: 6747 type: Transform - - uid: 21669 + - uid: 24735 components: - - pos: -4.5,5.5 + - pos: -52.5,-4.5 parent: 6747 type: Transform - - uid: 21670 + - uid: 24736 components: - - pos: -3.5,5.5 + - pos: -51.5,-4.5 parent: 6747 type: Transform - - uid: 21671 + - uid: 24737 components: - - pos: -2.5,5.5 + - pos: -50.5,-4.5 parent: 6747 type: Transform - - uid: 21672 + - uid: 24738 components: - - pos: -1.5,5.5 + - pos: -49.5,-4.5 parent: 6747 type: Transform - - uid: 21673 + - uid: 24739 components: - - pos: -0.5,5.5 + - pos: -48.5,-4.5 parent: 6747 type: Transform - - uid: 21674 + - uid: 24740 components: - - pos: 0.5,5.5 + - pos: -47.5,-4.5 parent: 6747 type: Transform - - uid: 21675 + - uid: 24741 components: - - pos: 1.5,5.5 + - pos: -46.5,-4.5 parent: 6747 type: Transform - - uid: 21676 + - uid: 24742 components: - - pos: 2.5,5.5 + - pos: -45.5,-4.5 parent: 6747 type: Transform - - uid: 21677 + - uid: 24743 components: - - pos: 2.5,4.5 + - pos: -45.5,-6.5 parent: 6747 type: Transform - - uid: 21678 + - uid: 24744 components: - - pos: 2.5,3.5 + - pos: -45.5,-7.5 parent: 6747 type: Transform - - uid: 21679 + - uid: 24745 components: - - pos: 2.5,2.5 + - pos: -45.5,-8.5 parent: 6747 type: Transform - - uid: 21680 + - uid: 24746 components: - - pos: 3.5,2.5 + - pos: -45.5,-9.5 parent: 6747 type: Transform - - uid: 21681 + - uid: 24747 components: - - pos: 4.5,2.5 + - pos: -45.5,-10.5 parent: 6747 type: Transform - - uid: 21682 + - uid: 24748 components: - - pos: 5.5,2.5 + - pos: -45.5,-11.5 parent: 6747 type: Transform - - uid: 21683 + - uid: 24749 components: - - pos: 6.5,2.5 + - pos: -45.5,-12.5 parent: 6747 type: Transform - - uid: 21684 + - uid: 24750 components: - - pos: 7.5,2.5 + - pos: -45.5,-13.5 parent: 6747 type: Transform - - uid: 21685 + - uid: 24751 components: - - pos: 8.5,2.5 + - pos: -45.5,-14.5 parent: 6747 type: Transform - - uid: 21686 + - uid: 25504 components: - - pos: 9.5,2.5 + - pos: -8.5,-40.5 parent: 6747 type: Transform - - uid: 21687 + - uid: 25505 components: - - pos: 10.5,2.5 + - pos: -8.5,-39.5 parent: 6747 type: Transform - - uid: 21688 + - uid: 25506 components: - - pos: 11.5,2.5 + - pos: -8.5,-38.5 parent: 6747 type: Transform - - uid: 21689 + - uid: 25507 components: - - pos: 12.5,2.5 + - pos: -8.5,-37.5 parent: 6747 type: Transform - - uid: 21690 + - uid: 26192 components: - - pos: 13.5,2.5 + - pos: 29.5,30.5 parent: 6747 type: Transform - - uid: 21691 + - uid: 26193 components: - - pos: 13.5,3.5 + - pos: 52.5,21.5 parent: 6747 type: Transform - - uid: 21692 + - uid: 26368 components: - - pos: 13.5,4.5 + - pos: 57.5,20.5 parent: 6747 type: Transform - - uid: 21693 + - uid: 26369 components: - - pos: 14.5,2.5 + - pos: 57.5,21.5 parent: 6747 type: Transform - - uid: 21694 + - uid: 26370 components: - - pos: 15.5,2.5 + - pos: 57.5,22.5 parent: 6747 type: Transform - - uid: 21695 + - uid: 26371 components: - - pos: 16.5,2.5 + - pos: 57.5,23.5 parent: 6747 type: Transform - - uid: 21696 + - uid: 26415 components: - - pos: 17.5,2.5 + - pos: 29.5,37.5 parent: 6747 type: Transform - - uid: 21697 + - uid: 26416 components: - - pos: 18.5,2.5 + - pos: 30.5,37.5 parent: 6747 type: Transform - - uid: 21698 + - uid: 26417 components: - - pos: 19.5,2.5 + - pos: 31.5,37.5 parent: 6747 type: Transform - - uid: 21699 + - uid: 26418 components: - - pos: 19.5,3.5 + - pos: 32.5,37.5 parent: 6747 type: Transform - - uid: 21700 + - uid: 26419 components: - - pos: 20.5,3.5 + - pos: 33.5,37.5 parent: 6747 type: Transform - - uid: 21982 + - uid: 26457 components: - - pos: 18.5,-74.5 + - pos: 57.5,24.5 parent: 6747 type: Transform - - uid: 21983 + - uid: 26458 components: - - pos: 18.5,-75.5 + - pos: 57.5,25.5 parent: 6747 type: Transform - - uid: 21984 + - uid: 26459 components: - - pos: 44.5,-49.5 + - pos: 57.5,26.5 parent: 6747 type: Transform - - uid: 21985 + - uid: 26460 components: - - pos: 18.5,-76.5 + - pos: 57.5,27.5 parent: 6747 type: Transform - - uid: 21986 + - uid: 26461 components: - - pos: 44.5,-50.5 + - pos: 57.5,28.5 parent: 6747 type: Transform - - uid: 21987 + - uid: 26462 components: - - pos: 44.5,-51.5 + - pos: 57.5,29.5 parent: 6747 type: Transform - - uid: 21988 + - uid: 26463 components: - - pos: 44.5,-52.5 + - pos: 57.5,30.5 parent: 6747 type: Transform - - uid: 21989 + - uid: 26464 components: - - pos: 44.5,-53.5 + - pos: 57.5,31.5 parent: 6747 type: Transform - - uid: 21990 + - uid: 26465 components: - - pos: 43.5,-53.5 + - pos: 57.5,32.5 parent: 6747 type: Transform - - uid: 21991 + - uid: 26466 components: - - pos: 42.5,-53.5 + - pos: 57.5,33.5 parent: 6747 type: Transform - - uid: 21992 + - uid: 26467 components: - - pos: 41.5,-53.5 + - pos: 57.5,34.5 parent: 6747 type: Transform - - uid: 21993 + - uid: 26468 components: - - pos: 40.5,-53.5 + - pos: 57.5,35.5 parent: 6747 type: Transform - - uid: 21994 + - uid: 26470 components: - - pos: 39.5,-53.5 + - pos: 57.5,36.5 parent: 6747 type: Transform - - uid: 21995 + - uid: 26472 components: - - pos: 38.5,-53.5 + - pos: 29.5,28.5 parent: 6747 type: Transform - - uid: 21996 + - uid: 26473 components: - - pos: 37.5,-53.5 + - pos: 29.5,27.5 parent: 6747 type: Transform - - uid: 21997 + - uid: 26474 components: - - pos: 37.5,-54.5 + - pos: 29.5,26.5 parent: 6747 type: Transform - - uid: 21998 + - uid: 26475 components: - - pos: 37.5,-55.5 + - pos: 29.5,25.5 parent: 6747 type: Transform - - uid: 21999 + - uid: 26476 components: - - pos: 37.5,-56.5 + - pos: 29.5,24.5 parent: 6747 type: Transform - - uid: 22000 + - uid: 26477 components: - - pos: 37.5,-57.5 + - pos: 29.5,23.5 parent: 6747 type: Transform - - uid: 22001 + - uid: 26478 components: - - pos: 37.5,-58.5 + - pos: 29.5,22.5 parent: 6747 type: Transform - - uid: 22002 + - uid: 26479 components: - - pos: 37.5,-59.5 + - pos: 29.5,21.5 parent: 6747 type: Transform - - uid: 22003 + - uid: 26480 components: - - pos: 37.5,-60.5 + - pos: 29.5,20.5 parent: 6747 type: Transform - - uid: 22004 + - uid: 26481 components: - - pos: 37.5,-61.5 + - pos: 28.5,20.5 parent: 6747 type: Transform - - uid: 22005 + - uid: 26593 components: - - pos: 36.5,-61.5 + - pos: 57.5,13.5 parent: 6747 type: Transform - - uid: 22006 + - uid: 26594 components: - - pos: 35.5,-61.5 + - pos: 57.5,14.5 parent: 6747 type: Transform - - uid: 22007 + - uid: 26599 components: - - pos: 35.5,-62.5 + - pos: 63.5,14.5 parent: 6747 type: Transform - - uid: 22008 + - uid: 26600 components: - - pos: 35.5,-63.5 + - pos: 64.5,14.5 parent: 6747 type: Transform - - uid: 22009 + - uid: 26755 components: - - pos: 34.5,-63.5 + - pos: 27.5,20.5 parent: 6747 type: Transform - - uid: 22010 + - uid: 26756 components: - - pos: 33.5,-63.5 + - pos: 26.5,20.5 parent: 6747 type: Transform - - uid: 22011 + - uid: 26757 components: - - pos: 32.5,-63.5 + - pos: 25.5,20.5 parent: 6747 type: Transform - - uid: 22012 + - uid: 26758 components: - - pos: 31.5,-63.5 + - pos: 24.5,20.5 parent: 6747 type: Transform - - uid: 22013 + - uid: 26759 components: - - pos: 31.5,-64.5 + - pos: 23.5,20.5 parent: 6747 type: Transform - - uid: 22014 + - uid: 26760 components: - - pos: 31.5,-65.5 + - pos: 22.5,20.5 parent: 6747 type: Transform - - uid: 22015 + - uid: 26761 components: - - pos: 31.5,-66.5 + - pos: 22.5,21.5 parent: 6747 type: Transform - - uid: 22016 + - uid: 26762 components: - - pos: 31.5,-67.5 + - pos: 22.5,22.5 parent: 6747 type: Transform - - uid: 22017 + - uid: 26763 components: - - pos: 31.5,-68.5 + - pos: 22.5,23.5 parent: 6747 type: Transform - - uid: 22018 + - uid: 26764 components: - - pos: 31.5,-69.5 + - pos: 22.5,24.5 parent: 6747 type: Transform - - uid: 22019 + - uid: 26765 components: - - pos: 31.5,-70.5 + - pos: 22.5,25.5 parent: 6747 type: Transform - - uid: 22020 + - uid: 26766 components: - - pos: 31.5,-71.5 + - pos: 22.5,26.5 parent: 6747 type: Transform - - uid: 22021 + - uid: 26767 components: - - pos: 31.5,-72.5 + - pos: 22.5,27.5 parent: 6747 type: Transform - - uid: 22022 + - uid: 26768 components: - - pos: 30.5,-72.5 + - pos: 22.5,28.5 parent: 6747 type: Transform - - uid: 22023 + - uid: 26769 components: - - pos: 29.5,-72.5 + - pos: 22.5,29.5 parent: 6747 type: Transform - - uid: 22024 + - uid: 26770 components: - - pos: 28.5,-72.5 + - pos: 22.5,30.5 parent: 6747 type: Transform - - uid: 22025 + - uid: 26771 components: - - pos: 27.5,-72.5 + - pos: 22.5,31.5 parent: 6747 type: Transform - - uid: 22026 + - uid: 26772 components: - - pos: 26.5,-72.5 + - pos: 21.5,31.5 parent: 6747 type: Transform - - uid: 22027 + - uid: 26773 components: - - pos: 25.5,-72.5 + - pos: 20.5,31.5 parent: 6747 type: Transform - - uid: 22028 + - uid: 26774 components: - - pos: 24.5,-72.5 + - pos: 20.5,30.5 parent: 6747 type: Transform - - uid: 22029 + - uid: 26775 components: - - pos: 23.5,-72.5 + - pos: 17.5,16.5 parent: 6747 type: Transform - - uid: 22030 + - uid: 26776 components: - - pos: 22.5,-72.5 + - pos: 17.5,17.5 parent: 6747 type: Transform - - uid: 22031 + - uid: 26777 components: - - pos: 21.5,-72.5 + - pos: 17.5,18.5 parent: 6747 type: Transform - - uid: 22032 + - uid: 26778 components: - - pos: 20.5,-72.5 + - pos: 18.5,18.5 parent: 6747 type: Transform - - uid: 22033 + - uid: 26779 components: - - pos: 19.5,-72.5 + - pos: 19.5,18.5 parent: 6747 type: Transform - - uid: 22034 + - uid: 26780 components: - - pos: 18.5,-72.5 + - pos: 20.5,18.5 parent: 6747 type: Transform - - uid: 22170 + - uid: 26781 components: - - pos: -44.5,13.5 + - pos: 21.5,18.5 parent: 6747 type: Transform - - uid: 22171 + - uid: 26782 components: - - pos: -45.5,13.5 + - pos: 22.5,18.5 parent: 6747 type: Transform - - uid: 22172 + - uid: 26783 components: - - pos: -46.5,13.5 + - pos: 22.5,19.5 parent: 6747 type: Transform - - uid: 22207 + - uid: 26784 components: - - pos: -47.5,13.5 + - pos: 20.5,32.5 parent: 6747 type: Transform - - uid: 22208 + - uid: 26785 components: - - pos: -48.5,13.5 + - pos: 19.5,32.5 parent: 6747 type: Transform - - uid: 22212 + - uid: 26786 components: - - pos: -45.5,-10.5 + - pos: 18.5,32.5 parent: 6747 type: Transform - - uid: 22213 + - uid: 26787 components: - - pos: -45.5,-9.5 + - pos: 17.5,32.5 parent: 6747 type: Transform - - uid: 22214 + - uid: 26788 components: - - pos: -45.5,-8.5 + - pos: 16.5,32.5 parent: 6747 type: Transform - - uid: 22215 + - uid: 26789 components: - - pos: -45.5,-7.5 + - pos: 15.5,32.5 parent: 6747 type: Transform - - uid: 22216 + - uid: 26790 components: - - pos: -45.5,-6.5 + - pos: 14.5,32.5 parent: 6747 type: Transform - - uid: 22217 + - uid: 26791 components: - - pos: -45.5,-5.5 + - pos: 13.5,32.5 parent: 6747 type: Transform - - uid: 22218 + - uid: 27046 components: - - pos: -45.5,-4.5 + - pos: 62.5,13.5 parent: 6747 type: Transform - - uid: 22219 + - uid: 27047 components: - - pos: -46.5,-4.5 + - pos: 63.5,13.5 parent: 6747 type: Transform - - uid: 22220 +- proto: CableMVStack + entities: + - uid: 1271 components: - - pos: -47.5,-4.5 + - pos: 5.587764,-14.476616 parent: 6747 type: Transform - - uid: 22221 + - uid: 2262 components: - - pos: -48.5,-4.5 + - pos: 54.584545,-23.460371 parent: 6747 type: Transform - - uid: 22222 + - uid: 4144 components: - - pos: -49.5,-4.5 + - rot: -1.5707963267948966 rad + pos: -21.165874,-55.47854 parent: 6747 type: Transform - - uid: 22247 +- proto: CableMVStack1 + entities: + - uid: 7174 components: - - pos: -50.5,-4.5 + - rot: -1.5707963267948966 rad + pos: 23.303978,-66.12061 parent: 6747 type: Transform - - uid: 22248 + - uid: 23585 components: - - pos: -51.5,-4.5 + - rot: 1.5707963267948966 rad + pos: 23.501896,-65.9851 parent: 6747 type: Transform - - uid: 22251 +- proto: CableTerminal + entities: + - uid: 3014 components: - - pos: -52.5,-4.5 + - pos: -43.5,-19.5 parent: 6747 type: Transform - - uid: 22252 + - uid: 6283 components: - - pos: -53.5,-4.5 + - rot: 1.5707963267948966 rad + pos: 72.5,-7.5 parent: 6747 type: Transform - - uid: 22253 + - uid: 7423 components: - - pos: -54.5,-4.5 + - rot: -1.5707963267948966 rad + pos: 33.5,46.5 parent: 6747 type: Transform - - uid: 22254 + - uid: 11546 components: - - pos: -54.5,-3.5 + - rot: -1.5707963267948966 rad + pos: 6.5,-15.5 parent: 6747 type: Transform - - uid: 22255 + - uid: 13441 components: - - pos: -54.5,-2.5 + - rot: -1.5707963267948966 rad + pos: 60.5,15.5 parent: 6747 type: Transform - - uid: 22256 + - uid: 13442 components: - - pos: -54.5,-1.5 + - rot: -1.5707963267948966 rad + pos: 60.5,16.5 parent: 6747 type: Transform - - uid: 22257 + - uid: 13448 components: - - pos: -54.5,-0.5 + - rot: -1.5707963267948966 rad + pos: 60.5,23.5 parent: 6747 type: Transform - - uid: 22258 + - uid: 13449 components: - - pos: -54.5,0.5 + - rot: -1.5707963267948966 rad + pos: 60.5,22.5 parent: 6747 type: Transform - - uid: 22259 + - uid: 21975 components: - - pos: -54.5,1.5 + - rot: 3.141592653589793 rad + pos: 15.5,-77.5 parent: 6747 type: Transform - - uid: 22260 + - uid: 21976 components: - - pos: -54.5,2.5 + - rot: 3.141592653589793 rad + pos: 16.5,-77.5 parent: 6747 type: Transform - - uid: 22261 + - uid: 23049 components: - - pos: -54.5,3.5 + - rot: 3.141592653589793 rad + pos: -54.5,-24.5 parent: 6747 type: Transform - - uid: 22285 + - uid: 23588 components: - - pos: -54.5,4.5 + - pos: -34.5,-47.5 parent: 6747 type: Transform - - uid: 22286 + - uid: 24018 components: - - pos: -48.5,10.5 + - rot: 3.141592653589793 rad + pos: 75.5,17.5 parent: 6747 type: Transform - - uid: 22287 +- proto: CannabisSeeds + entities: + - uid: 9309 components: - - pos: -48.5,11.5 + - pos: -27.333271,17.559776 parent: 6747 type: Transform - - uid: 22334 +- proto: CapacitorStockPart + entities: + - uid: 5111 components: - - pos: -48.5,12.5 + - pos: 23.606064,-65.59942 parent: 6747 type: Transform - - uid: 23071 + - uid: 6038 components: - - pos: -46.5,-11.5 + - pos: -36.743046,-86.49415 parent: 6747 type: Transform - - uid: 23072 + - uid: 9125 components: - - pos: -47.5,-11.5 + - pos: 17.71593,-67.865944 parent: 6747 type: Transform - - uid: 23073 + - uid: 11535 components: - - pos: -48.5,-11.5 + - pos: 23.397728,-65.33882 parent: 6747 type: Transform - - uid: 23074 + - uid: 11536 components: - - pos: -49.5,-11.5 + - pos: 12.323707,-74.60915 parent: 6747 type: Transform - - uid: 23075 + - uid: 11758 components: - - pos: -49.5,-14.5 + - pos: -3.836021,-84.46469 parent: 6747 type: Transform - - uid: 23076 +- proto: CarbonDioxideCanister + entities: + - uid: 11257 components: - - pos: -49.5,-15.5 + - pos: 4.5,-82.5 parent: 6747 type: Transform - - uid: 23218 +- proto: CargoPallet + entities: + - uid: 4595 components: - - pos: 10.5,-82.5 + - pos: 13.5,35.5 parent: 6747 type: Transform - - uid: 23220 + - uid: 7795 components: - - pos: 18.5,-73.5 + - pos: 13.5,34.5 parent: 6747 type: Transform - - uid: 23221 + - uid: 8159 components: - - pos: 10.5,-81.5 + - pos: 15.5,34.5 parent: 6747 type: Transform - - uid: 23222 + - uid: 8292 components: - - pos: 10.5,-80.5 + - pos: 13.5,33.5 parent: 6747 type: Transform - - uid: 23224 + - uid: 8293 components: - - pos: 10.5,-79.5 + - pos: 14.5,35.5 parent: 6747 type: Transform - - uid: 23225 + - uid: 8312 components: - - pos: 10.5,-78.5 + - pos: 14.5,34.5 parent: 6747 type: Transform - - uid: 23226 + - uid: 8313 components: - - pos: 11.5,-78.5 + - pos: 14.5,33.5 parent: 6747 type: Transform - - uid: 23227 + - uid: 8314 components: - - pos: 12.5,-78.5 + - pos: 15.5,35.5 parent: 6747 type: Transform - - uid: 23228 + - uid: 8326 components: - - pos: 13.5,-78.5 + - pos: 15.5,33.5 parent: 6747 type: Transform - - uid: 23229 +- proto: CargoRequestComputerCircuitboard + entities: + - uid: 7519 components: - - pos: -52.5,-18.5 + - pos: 28.50401,18.699598 parent: 6747 type: Transform - - uid: 23230 + - uid: 17717 components: - - pos: -52.5,-19.5 + - rot: 1.5707963267948966 rad + pos: 70.40644,7.6277475 parent: 6747 type: Transform - - uid: 23231 +- proto: CargoShuttleComputerCircuitboard + entities: + - uid: 17746 components: - - pos: -52.5,-20.5 + - rot: -1.5707963267948966 rad + pos: 72.61478,7.5690546 parent: 6747 type: Transform - - uid: 23232 +- proto: CargoShuttleConsoleCircuitboard + entities: + - uid: 17747 components: - - pos: -52.5,-21.5 + - rot: -1.5707963267948966 rad + pos: 72.40644,7.579479 parent: 6747 type: Transform - - uid: 23233 +- proto: Carpet + entities: + - uid: 98 components: - - pos: -52.5,-22.5 + - pos: -24.5,-5.5 parent: 6747 type: Transform - - uid: 23234 + - uid: 418 components: - - pos: -52.5,-23.5 + - pos: -25.5,-4.5 parent: 6747 type: Transform - - uid: 23235 + - uid: 521 components: - - pos: -53.5,-23.5 + - pos: -26.5,-6.5 parent: 6747 type: Transform - - uid: 23236 + - uid: 555 components: - - pos: -53.5,-27.5 + - pos: -26.5,-4.5 parent: 6747 type: Transform - - uid: 23237 + - uid: 603 components: - - pos: -54.5,-25.5 + - pos: -25.5,-6.5 parent: 6747 type: Transform - - uid: 23238 + - uid: 632 components: - - pos: -53.5,-25.5 + - pos: -26.5,-5.5 parent: 6747 type: Transform - - uid: 23239 + - uid: 728 components: - - pos: -53.5,-26.5 + - pos: -25.5,-5.5 parent: 6747 type: Transform - - uid: 23240 + - uid: 1262 components: - - pos: -54.5,-27.5 + - pos: -24.5,-6.5 parent: 6747 type: Transform - - uid: 23241 + - uid: 1381 components: - - pos: -55.5,-27.5 + - pos: -24.5,-4.5 parent: 6747 type: Transform - - uid: 23242 + - uid: 19101 components: - - pos: -53.5,-28.5 + - pos: -16.5,6.5 parent: 6747 type: Transform - - uid: 23243 + - uid: 19109 components: - - pos: -56.5,-27.5 + - pos: -16.5,5.5 parent: 6747 type: Transform - - uid: 23244 + - uid: 19110 components: - - pos: -57.5,-27.5 + - pos: -16.5,4.5 parent: 6747 type: Transform - - uid: 23245 + - uid: 19111 components: - - pos: -58.5,-27.5 + - pos: -15.5,6.5 parent: 6747 type: Transform - - uid: 23246 + - uid: 19112 components: - - pos: -59.5,-27.5 + - pos: -15.5,5.5 parent: 6747 type: Transform - - uid: 23247 + - uid: 19113 components: - - pos: -60.5,-27.5 + - pos: -15.5,4.5 parent: 6747 type: Transform - - uid: 23248 +- proto: CarpetBlack + entities: + - uid: 4376 components: - - pos: -61.5,-27.5 + - pos: 57.5,8.5 parent: 6747 type: Transform - - uid: 23249 + - uid: 4377 components: - - pos: -62.5,-27.5 + - pos: 57.5,7.5 parent: 6747 type: Transform - - uid: 23250 + - uid: 8718 components: - - pos: -63.5,-27.5 + - pos: 15.5,-51.5 parent: 6747 type: Transform - - uid: 23251 + - uid: 8720 components: - - pos: -64.5,-27.5 + - pos: 15.5,-50.5 parent: 6747 type: Transform - - uid: 23252 + - uid: 8722 components: - - pos: -65.5,-27.5 + - pos: 13.5,-50.5 parent: 6747 type: Transform - - uid: 23253 + - uid: 8723 components: - - pos: -66.5,-27.5 + - pos: 14.5,-50.5 parent: 6747 type: Transform - - uid: 23254 + - uid: 8837 components: - - pos: -67.5,-27.5 + - pos: 14.5,-52.5 parent: 6747 type: Transform - - uid: 23255 + - uid: 8840 components: - - pos: -68.5,-27.5 + - pos: 14.5,-51.5 parent: 6747 type: Transform - - uid: 23256 + - uid: 8844 components: - - pos: -69.5,-27.5 + - pos: 14.5,-53.5 parent: 6747 type: Transform - - uid: 23257 + - uid: 8853 components: - - pos: -69.5,-28.5 + - pos: 13.5,-53.5 parent: 6747 type: Transform - - uid: 23258 + - uid: 8856 components: - - pos: -65.5,-28.5 + - pos: 13.5,-51.5 parent: 6747 type: Transform - - uid: 23259 + - uid: 8857 components: - - pos: -61.5,-28.5 + - pos: 15.5,-52.5 parent: 6747 type: Transform - - uid: 23260 + - uid: 8876 components: - - pos: -61.5,-26.5 + - pos: 13.5,-52.5 parent: 6747 type: Transform - - uid: 23261 + - uid: 8877 components: - - pos: -52.5,-17.5 + - pos: 15.5,-53.5 parent: 6747 type: Transform - - uid: 23262 + - uid: 16593 components: - - pos: -51.5,-17.5 + - pos: -20.5,6.5 parent: 6747 type: Transform - - uid: 23263 + - uid: 16718 components: - - pos: -50.5,-17.5 + - pos: -20.5,5.5 parent: 6747 type: Transform - - uid: 23264 + - uid: 16831 components: - - pos: -49.5,-17.5 + - pos: -20.5,4.5 parent: 6747 type: Transform - - uid: 23265 + - uid: 16832 components: - - pos: 30.5,41.5 + - pos: -19.5,6.5 parent: 6747 type: Transform - - uid: 23266 + - uid: 18455 components: - - pos: 31.5,41.5 + - pos: -19.5,5.5 parent: 6747 type: Transform - - uid: 23267 + - uid: 18456 components: - - pos: 31.5,42.5 + - pos: -19.5,4.5 parent: 6747 type: Transform - - uid: 23268 + - uid: 19098 components: - - pos: 31.5,43.5 + - pos: -18.5,6.5 parent: 6747 type: Transform - - uid: 23269 + - uid: 19099 components: - - pos: 31.5,44.5 + - pos: -18.5,5.5 parent: 6747 type: Transform - - uid: 23270 + - uid: 19100 components: - - pos: 31.5,45.5 + - pos: -18.5,4.5 parent: 6747 type: Transform - - uid: 23271 + - uid: 22337 components: - - pos: 23.5,46.5 + - pos: 56.5,7.5 parent: 6747 type: Transform - - uid: 23272 + - uid: 22338 components: - - pos: 23.5,45.5 + - pos: 56.5,8.5 parent: 6747 type: Transform - - uid: 23273 +- proto: CarpetBlue + entities: + - uid: 11191 components: - - pos: 24.5,45.5 + - pos: 39.5,-84.5 parent: 6747 type: Transform - - uid: 23274 + - uid: 11192 components: - - pos: 25.5,45.5 + - pos: 39.5,-85.5 parent: 6747 type: Transform - - uid: 23275 + - uid: 11390 components: - - pos: 26.5,45.5 + - pos: 3.5,-65.5 parent: 6747 type: Transform - - uid: 23276 + - uid: 11391 components: - - pos: 27.5,45.5 + - pos: 3.5,-66.5 parent: 6747 type: Transform - - uid: 23277 + - uid: 11392 components: - - pos: 28.5,45.5 + - pos: 2.5,-65.5 parent: 6747 type: Transform - - uid: 23278 + - uid: 11393 components: - - pos: 29.5,45.5 + - pos: 2.5,-66.5 parent: 6747 type: Transform - - uid: 23279 + - uid: 11394 components: - - pos: 30.5,45.5 + - pos: 1.5,-65.5 parent: 6747 type: Transform - - uid: 23280 + - uid: 11395 components: - - pos: 27.5,46.5 + - pos: 1.5,-66.5 parent: 6747 type: Transform - - uid: 23281 +- proto: CarpetChapel + entities: + - uid: 8873 components: - - pos: 32.5,45.5 + - rot: 3.141592653589793 rad + pos: 8.5,-50.5 parent: 6747 type: Transform - - uid: 23282 + - uid: 8878 components: - - pos: 32.5,46.5 + - rot: 1.5707963267948966 rad + pos: 8.5,-49.5 parent: 6747 type: Transform - - uid: 23283 + - uid: 8879 components: - - pos: 33.5,45.5 + - pos: 9.5,-49.5 parent: 6747 type: Transform - - uid: 23284 + - uid: 8880 components: - - pos: 34.5,45.5 + - rot: -1.5707963267948966 rad + pos: 9.5,-50.5 parent: 6747 type: Transform - - uid: 23285 + - uid: 15032 components: - - pos: 35.5,45.5 + - rot: 1.5707963267948966 rad + pos: 10.5,-49.5 parent: 6747 type: Transform - - uid: 23286 + - uid: 15033 components: - - pos: 36.5,45.5 + - pos: 11.5,-49.5 parent: 6747 type: Transform - - uid: 23287 + - uid: 15034 components: - - pos: 37.5,45.5 + - rot: -1.5707963267948966 rad + pos: 11.5,-50.5 parent: 6747 type: Transform - - uid: 23288 + - uid: 15035 components: - - pos: 38.5,45.5 + - rot: 3.141592653589793 rad + pos: 10.5,-50.5 parent: 6747 type: Transform - - uid: 23289 + - uid: 15088 components: - - pos: 39.5,45.5 + - rot: 1.5707963267948966 rad + pos: 12.5,-49.5 parent: 6747 type: Transform - - uid: 23290 + - uid: 15089 components: - - pos: 40.5,45.5 + - pos: 13.5,-49.5 parent: 6747 type: Transform - - uid: 23291 + - uid: 15090 components: - - pos: 41.5,45.5 + - rot: 3.141592653589793 rad + pos: 12.5,-50.5 parent: 6747 type: Transform - - uid: 23292 + - uid: 15091 components: - - pos: 41.5,46.5 + - rot: 1.5707963267948966 rad + pos: 12.5,-51.5 parent: 6747 type: Transform - - uid: 23293 + - uid: 15092 components: - - pos: 37.5,46.5 + - pos: 11.5,-51.5 parent: 6747 type: Transform - - uid: 23294 + - uid: 15093 components: - - pos: 27.5,41.5 + - rot: -1.5707963267948966 rad + pos: 11.5,-52.5 parent: 6747 type: Transform - - uid: 23295 + - uid: 15094 components: - - pos: 27.5,40.5 + - rot: 3.141592653589793 rad + pos: 12.5,-52.5 parent: 6747 type: Transform - - uid: 23296 + - uid: 15095 components: - - pos: 27.5,39.5 + - rot: 1.5707963267948966 rad + pos: 12.5,-53.5 parent: 6747 type: Transform - - uid: 23297 + - uid: 15096 components: - - pos: 27.5,38.5 + - pos: 11.5,-53.5 parent: 6747 type: Transform - - uid: 23298 + - uid: 15097 components: - - pos: 26.5,38.5 + - rot: 1.5707963267948966 rad + pos: 14.5,-49.5 parent: 6747 type: Transform - - uid: 23299 + - uid: 15098 components: - - pos: 25.5,38.5 + - pos: 15.5,-49.5 parent: 6747 type: Transform - - uid: 23300 + - uid: 15099 components: - - pos: 19.5,20.5 + - rot: 1.5707963267948966 rad + pos: 16.5,-49.5 parent: 6747 type: Transform - - uid: 23301 + - uid: 15100 components: - - pos: 20.5,20.5 + - rot: 3.141592653589793 rad + pos: 16.5,-50.5 parent: 6747 type: Transform - - uid: 23302 + - uid: 15101 components: - - pos: 21.5,20.5 + - rot: 1.5707963267948966 rad + pos: 16.5,-51.5 parent: 6747 type: Transform - - uid: 23303 + - uid: 15102 components: - - pos: 21.5,22.5 + - rot: 3.141592653589793 rad + pos: 16.5,-52.5 parent: 6747 type: Transform - - uid: 23304 + - uid: 15103 components: - - pos: 26.5,22.5 + - rot: 1.5707963267948966 rad + pos: 16.5,-53.5 parent: 6747 type: Transform - - uid: 23305 +- proto: CarpetGreen + entities: + - uid: 9262 components: - - pos: 26.5,20.5 + - pos: -4.5,-44.5 parent: 6747 type: Transform - - uid: 23306 + - uid: 9263 components: - - pos: 27.5,20.5 + - pos: -5.5,-44.5 parent: 6747 type: Transform - - uid: 23307 + - uid: 9264 components: - - pos: 28.5,20.5 + - pos: -6.5,-44.5 parent: 6747 type: Transform - - uid: 23308 + - uid: 9265 components: - - pos: 29.5,20.5 + - pos: -7.5,-44.5 parent: 6747 type: Transform - - uid: 23309 + - uid: 9266 components: - - pos: 30.5,21.5 + - pos: -8.5,-44.5 parent: 6747 type: Transform - - uid: 23310 + - uid: 9267 components: - - pos: 32.5,21.5 + - pos: -8.5,-43.5 parent: 6747 type: Transform - - uid: 23311 + - uid: 9268 components: - - pos: 31.5,21.5 + - pos: -8.5,-42.5 parent: 6747 type: Transform - - uid: 23312 + - uid: 9269 components: - - pos: 12.5,-82.5 + - pos: -8.5,-41.5 parent: 6747 type: Transform - - uid: 23313 + - uid: 9270 components: - - pos: 11.5,-82.5 + - pos: -8.5,-45.5 parent: 6747 type: Transform - - uid: 23314 + - uid: 9271 components: - - pos: 11.5,-83.5 + - pos: -8.5,-46.5 parent: 6747 type: Transform - - uid: 23315 + - uid: 9272 components: - - pos: 11.5,-84.5 + - pos: -8.5,-47.5 parent: 6747 type: Transform - - uid: 23316 + - uid: 9273 components: - - pos: 11.5,-85.5 + - pos: -9.5,-44.5 parent: 6747 type: Transform - - uid: 23317 + - uid: 9274 components: - - pos: 11.5,-86.5 + - pos: -10.5,-44.5 parent: 6747 type: Transform - - uid: 23318 + - uid: 9275 components: - - pos: 11.5,-87.5 + - pos: -11.5,-44.5 parent: 6747 type: Transform - - uid: 23319 + - uid: 9276 components: - - pos: 11.5,-88.5 + - pos: -12.5,-44.5 parent: 6747 type: Transform - - uid: 23320 + - uid: 9277 components: - - pos: 11.5,-89.5 + - pos: -13.5,-44.5 parent: 6747 type: Transform - - uid: 23321 + - uid: 9278 components: - - pos: 11.5,-90.5 + - pos: -14.5,-42.5 parent: 6747 type: Transform - - uid: 23322 + - uid: 9279 components: - - pos: 11.5,-91.5 + - pos: -14.5,-43.5 parent: 6747 type: Transform - - uid: 23323 + - uid: 9280 components: - - pos: 11.5,-92.5 + - pos: -14.5,-44.5 parent: 6747 type: Transform - - uid: 23324 + - uid: 9281 components: - - pos: 11.5,-93.5 + - pos: -14.5,-45.5 + parent: 6747 + type: Transform + - uid: 9282 + components: + - pos: -14.5,-46.5 + parent: 6747 + type: Transform + - uid: 9283 + components: + - pos: -13.5,-42.5 + parent: 6747 + type: Transform + - uid: 9284 + components: + - pos: -13.5,-43.5 + parent: 6747 + type: Transform + - uid: 9285 + components: + - pos: -13.5,-44.5 + parent: 6747 + type: Transform + - uid: 9286 + components: + - pos: -13.5,-45.5 + parent: 6747 + type: Transform + - uid: 9287 + components: + - pos: -13.5,-46.5 + parent: 6747 + type: Transform + - uid: 9288 + components: + - pos: -15.5,-46.5 + parent: 6747 + type: Transform + - uid: 9289 + components: + - pos: -16.5,-46.5 + parent: 6747 + type: Transform + - uid: 9290 + components: + - pos: -13.5,-41.5 + parent: 6747 + type: Transform + - uid: 9291 + components: + - pos: -14.5,-41.5 + parent: 6747 + type: Transform + - uid: 9292 + components: + - pos: -15.5,-41.5 + parent: 6747 + type: Transform + - uid: 9293 + components: + - pos: -16.5,-41.5 + parent: 6747 + type: Transform + - uid: 11065 + components: + - pos: 65.5,-39.5 + parent: 6747 + type: Transform + - uid: 11066 + components: + - pos: 65.5,-40.5 + parent: 6747 + type: Transform + - uid: 11067 + components: + - pos: 65.5,-41.5 + parent: 6747 + type: Transform + - uid: 11068 + components: + - pos: 65.5,-42.5 + parent: 6747 + type: Transform + - uid: 11069 + components: + - pos: 65.5,-43.5 + parent: 6747 + type: Transform + - uid: 11070 + components: + - pos: 65.5,-44.5 + parent: 6747 + type: Transform + - uid: 11071 + components: + - pos: 66.5,-39.5 + parent: 6747 + type: Transform + - uid: 11072 + components: + - pos: 66.5,-40.5 + parent: 6747 + type: Transform + - uid: 11073 + components: + - pos: 66.5,-41.5 + parent: 6747 + type: Transform + - uid: 11074 + components: + - pos: 66.5,-42.5 + parent: 6747 + type: Transform + - uid: 11075 + components: + - pos: 66.5,-43.5 + parent: 6747 + type: Transform + - uid: 11076 + components: + - pos: 66.5,-44.5 + parent: 6747 + type: Transform + - uid: 11077 + components: + - pos: 67.5,-39.5 + parent: 6747 + type: Transform + - uid: 11078 + components: + - pos: 67.5,-40.5 + parent: 6747 + type: Transform + - uid: 11079 + components: + - pos: 67.5,-41.5 + parent: 6747 + type: Transform + - uid: 11080 + components: + - pos: 67.5,-42.5 + parent: 6747 + type: Transform + - uid: 11081 + components: + - pos: 67.5,-43.5 + parent: 6747 + type: Transform + - uid: 11082 + components: + - pos: 67.5,-44.5 + parent: 6747 + type: Transform + - uid: 17385 + components: + - pos: 51.5,-52.5 + parent: 6747 + type: Transform + - uid: 17386 + components: + - pos: 51.5,-53.5 + parent: 6747 + type: Transform + - uid: 17388 + components: + - pos: 52.5,-52.5 + parent: 6747 + type: Transform + - uid: 17389 + components: + - pos: 52.5,-53.5 + parent: 6747 + type: Transform + - uid: 17391 + components: + - pos: 53.5,-52.5 + parent: 6747 + type: Transform + - uid: 17392 + components: + - pos: 53.5,-53.5 + parent: 6747 + type: Transform + - uid: 22514 + components: + - pos: -27.5,-82.5 + parent: 6747 + type: Transform + - uid: 22515 + components: + - pos: -26.5,-82.5 + parent: 6747 + type: Transform + - uid: 22516 + components: + - pos: -26.5,-81.5 + parent: 6747 + type: Transform + - uid: 22517 + components: + - pos: -27.5,-81.5 + parent: 6747 + type: Transform + - uid: 23458 + components: + - pos: -69.5,8.5 + parent: 6747 + type: Transform + - uid: 23498 + components: + - pos: -69.5,7.5 + parent: 6747 + type: Transform + - uid: 23499 + components: + - pos: -69.5,6.5 + parent: 6747 + type: Transform + - uid: 23500 + components: + - pos: -68.5,8.5 + parent: 6747 + type: Transform + - uid: 23501 + components: + - pos: -68.5,7.5 + parent: 6747 + type: Transform + - uid: 23502 + components: + - pos: -68.5,6.5 + parent: 6747 + type: Transform + - uid: 23503 + components: + - pos: -67.5,8.5 + parent: 6747 + type: Transform + - uid: 23504 + components: + - pos: -67.5,7.5 + parent: 6747 + type: Transform + - uid: 23505 + components: + - pos: -67.5,6.5 + parent: 6747 + type: Transform +- proto: CarpetOrange + entities: + - uid: 799 + components: + - pos: 16.5,22.5 + parent: 6747 + type: Transform + - uid: 8297 + components: + - pos: 17.5,21.5 + parent: 6747 + type: Transform + - uid: 8488 + components: + - pos: 17.5,22.5 + parent: 6747 + type: Transform + - uid: 8489 + components: + - pos: 16.5,21.5 + parent: 6747 + type: Transform + - uid: 8548 + components: + - pos: 15.5,21.5 + parent: 6747 + type: Transform + - uid: 8549 + components: + - pos: 15.5,22.5 + parent: 6747 + type: Transform + - uid: 11808 + components: + - pos: -47.5,-35.5 + parent: 6747 + type: Transform + - uid: 11810 + components: + - pos: -47.5,-36.5 + parent: 6747 + type: Transform + - uid: 11811 + components: + - pos: -46.5,-36.5 + parent: 6747 + type: Transform + - uid: 11812 + components: + - pos: -45.5,-36.5 + parent: 6747 + type: Transform + - uid: 11813 + components: + - pos: -45.5,-35.5 + parent: 6747 + type: Transform + - uid: 11814 + components: + - pos: -46.5,-35.5 + parent: 6747 + type: Transform +- proto: CarpetPink + entities: + - uid: 11157 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,-82.5 + parent: 6747 + type: Transform + - uid: 11162 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,-84.5 + parent: 6747 + type: Transform + - uid: 11164 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-81.5 + parent: 6747 + type: Transform + - uid: 11166 + components: + - pos: 31.5,-83.5 + parent: 6747 + type: Transform + - uid: 11167 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,-84.5 + parent: 6747 + type: Transform + - uid: 11562 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,-81.5 + parent: 6747 + type: Transform + - uid: 11563 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-83.5 + parent: 6747 + type: Transform + - uid: 11564 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-84.5 + parent: 6747 + type: Transform + - uid: 17455 + components: + - pos: 30.5,-81.5 + parent: 6747 + type: Transform + - uid: 17464 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-82.5 + parent: 6747 + type: Transform + - uid: 17466 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,-82.5 + parent: 6747 + type: Transform + - uid: 17467 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,-83.5 + parent: 6747 + type: Transform +- proto: CarpetPurple + entities: + - uid: 8835 + components: + - pos: -31.5,-57.5 + parent: 6747 + type: Transform + - uid: 8839 + components: + - pos: -30.5,-57.5 + parent: 6747 + type: Transform + - uid: 8841 + components: + - pos: -29.5,-57.5 + parent: 6747 + type: Transform + - uid: 8848 + components: + - pos: -31.5,-58.5 + parent: 6747 + type: Transform + - uid: 8851 + components: + - pos: -30.5,-58.5 + parent: 6747 + type: Transform + - uid: 8854 + components: + - pos: -29.5,-58.5 + parent: 6747 + type: Transform + - uid: 8868 + components: + - pos: -31.5,-59.5 + parent: 6747 + type: Transform + - uid: 8871 + components: + - pos: -30.5,-59.5 + parent: 6747 + type: Transform + - uid: 8874 + components: + - pos: -29.5,-59.5 + parent: 6747 + type: Transform + - uid: 8881 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-55.5 + parent: 6747 + type: Transform + - uid: 8882 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-56.5 + parent: 6747 + type: Transform + - uid: 8883 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-56.5 + parent: 6747 + type: Transform + - uid: 8884 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-55.5 + parent: 6747 + type: Transform + - uid: 8885 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-56.5 + parent: 6747 + type: Transform + - uid: 8886 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-55.5 + parent: 6747 + type: Transform + - uid: 8891 + components: + - rot: 3.141592653589793 rad + pos: 37.5,-40.5 + parent: 6747 + type: Transform + - uid: 8892 + components: + - rot: 3.141592653589793 rad + pos: 37.5,-39.5 + parent: 6747 + type: Transform + - uid: 8893 + components: + - rot: 3.141592653589793 rad + pos: 37.5,-38.5 + parent: 6747 + type: Transform + - uid: 8894 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-40.5 + parent: 6747 + type: Transform + - uid: 8895 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-39.5 + parent: 6747 + type: Transform + - uid: 8896 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-38.5 + parent: 6747 + type: Transform + - uid: 8897 + components: + - rot: 3.141592653589793 rad + pos: 39.5,-40.5 + parent: 6747 + type: Transform + - uid: 8898 + components: + - rot: 3.141592653589793 rad + pos: 39.5,-39.5 + parent: 6747 + type: Transform + - uid: 8899 + components: + - rot: 3.141592653589793 rad + pos: 39.5,-38.5 + parent: 6747 + type: Transform + - uid: 9294 + components: + - pos: 26.5,-38.5 + parent: 6747 + type: Transform + - uid: 9295 + components: + - pos: 26.5,-37.5 + parent: 6747 + type: Transform + - uid: 9296 + components: + - pos: 25.5,-37.5 + parent: 6747 + type: Transform + - uid: 9297 + components: + - pos: 25.5,-38.5 + parent: 6747 + type: Transform + - uid: 9298 + components: + - pos: 24.5,-38.5 + parent: 6747 + type: Transform + - uid: 9299 + components: + - pos: 24.5,-37.5 + parent: 6747 + type: Transform + - uid: 10897 + components: + - rot: 3.141592653589793 rad + pos: -57.5,-42.5 + parent: 6747 + type: Transform + - uid: 10898 + components: + - rot: 3.141592653589793 rad + pos: -56.5,-41.5 + parent: 6747 + type: Transform + - uid: 10899 + components: + - rot: 3.141592653589793 rad + pos: -57.5,-39.5 + parent: 6747 + type: Transform + - uid: 10902 + components: + - rot: 3.141592653589793 rad + pos: -58.5,-41.5 + parent: 6747 + type: Transform + - uid: 10903 + components: + - rot: 3.141592653589793 rad + pos: -56.5,-39.5 + parent: 6747 + type: Transform + - uid: 10910 + components: + - rot: 3.141592653589793 rad + pos: -56.5,-42.5 + parent: 6747 + type: Transform + - uid: 10913 + components: + - rot: 3.141592653589793 rad + pos: -58.5,-42.5 + parent: 6747 + type: Transform + - uid: 10914 + components: + - rot: 3.141592653589793 rad + pos: -56.5,-40.5 + parent: 6747 + type: Transform + - uid: 10918 + components: + - rot: 3.141592653589793 rad + pos: -58.5,-39.5 + parent: 6747 + type: Transform + - uid: 10920 + components: + - rot: -1.5707963267948966 rad + pos: -58.5,-40.5 + parent: 6747 + type: Transform + - uid: 17384 + components: + - pos: 48.5,-49.5 + parent: 6747 + type: Transform + - uid: 17387 + components: + - pos: 49.5,-50.5 + parent: 6747 + type: Transform + - uid: 17390 + components: + - pos: 49.5,-49.5 + parent: 6747 + type: Transform + - uid: 17393 + components: + - pos: 48.5,-50.5 + parent: 6747 + type: Transform +- proto: CarpetSBlue + entities: + - uid: 4482 + components: + - pos: -29.5,-52.5 + parent: 6747 + type: Transform + - uid: 4483 + components: + - pos: -30.5,-52.5 + parent: 6747 + type: Transform + - uid: 5231 + components: + - pos: -30.5,-50.5 + parent: 6747 + type: Transform + - uid: 5232 + components: + - pos: -30.5,-51.5 + parent: 6747 + type: Transform + - uid: 7360 + components: + - pos: -29.5,-50.5 + parent: 6747 + type: Transform + - uid: 7364 + components: + - pos: -29.5,-54.5 + parent: 6747 + type: Transform + - uid: 8721 + components: + - pos: -30.5,-54.5 + parent: 6747 + type: Transform + - uid: 8833 + components: + - pos: -31.5,-55.5 + parent: 6747 + type: Transform + - uid: 8834 + components: + - pos: -32.5,-52.5 + parent: 6747 + type: Transform + - uid: 8838 + components: + - pos: -32.5,-50.5 + parent: 6747 + type: Transform + - uid: 8843 + components: + - pos: -31.5,-52.5 + parent: 6747 + type: Transform + - uid: 8845 + components: + - pos: -32.5,-55.5 + parent: 6747 + type: Transform + - uid: 8846 + components: + - pos: -32.5,-51.5 + parent: 6747 + type: Transform + - uid: 8852 + components: + - pos: -32.5,-54.5 + parent: 6747 + type: Transform + - uid: 8855 + components: + - pos: -31.5,-51.5 + parent: 6747 + type: Transform + - uid: 8858 + components: + - pos: -30.5,-53.5 + parent: 6747 + type: Transform + - uid: 8859 + components: + - pos: -30.5,-55.5 + parent: 6747 + type: Transform + - uid: 8861 + components: + - pos: -29.5,-51.5 + parent: 6747 + type: Transform + - uid: 8862 + components: + - pos: -31.5,-54.5 + parent: 6747 + type: Transform + - uid: 8863 + components: + - pos: -29.5,-53.5 + parent: 6747 + type: Transform + - uid: 8864 + components: + - pos: -31.5,-53.5 + parent: 6747 + type: Transform + - uid: 8865 + components: + - pos: -29.5,-55.5 + parent: 6747 + type: Transform + - uid: 8872 + components: + - pos: -32.5,-53.5 + parent: 6747 + type: Transform + - uid: 8875 + components: + - pos: -31.5,-50.5 + parent: 6747 + type: Transform + - uid: 10993 + components: + - pos: 67.5,-25.5 + parent: 6747 + type: Transform + - uid: 10994 + components: + - pos: 67.5,-24.5 + parent: 6747 + type: Transform + - uid: 10995 + components: + - pos: 67.5,-23.5 + parent: 6747 + type: Transform + - uid: 10996 + components: + - pos: 67.5,-22.5 + parent: 6747 + type: Transform + - uid: 10997 + components: + - pos: 67.5,-21.5 + parent: 6747 + type: Transform + - uid: 10998 + components: + - pos: 68.5,-25.5 + parent: 6747 + type: Transform + - uid: 10999 + components: + - pos: 68.5,-24.5 + parent: 6747 + type: Transform + - uid: 11000 + components: + - pos: 68.5,-23.5 + parent: 6747 + type: Transform + - uid: 11001 + components: + - pos: 68.5,-22.5 + parent: 6747 + type: Transform + - uid: 11002 + components: + - pos: 68.5,-21.5 + parent: 6747 + type: Transform + - uid: 11003 + components: + - pos: 69.5,-25.5 + parent: 6747 + type: Transform + - uid: 11004 + components: + - pos: 69.5,-24.5 + parent: 6747 + type: Transform + - uid: 11005 + components: + - pos: 69.5,-23.5 + parent: 6747 + type: Transform + - uid: 11006 + components: + - pos: 69.5,-22.5 + parent: 6747 + type: Transform + - uid: 11007 + components: + - pos: 69.5,-21.5 + parent: 6747 + type: Transform + - uid: 11008 + components: + - pos: 70.5,-25.5 + parent: 6747 + type: Transform + - uid: 11009 + components: + - pos: 70.5,-24.5 + parent: 6747 + type: Transform + - uid: 11010 + components: + - pos: 70.5,-23.5 + parent: 6747 + type: Transform + - uid: 11011 + components: + - pos: 70.5,-22.5 + parent: 6747 + type: Transform + - uid: 11012 + components: + - pos: 70.5,-21.5 + parent: 6747 + type: Transform + - uid: 11013 + components: + - pos: 71.5,-25.5 + parent: 6747 + type: Transform + - uid: 11014 + components: + - pos: 71.5,-24.5 + parent: 6747 + type: Transform + - uid: 11015 + components: + - pos: 71.5,-23.5 + parent: 6747 + type: Transform + - uid: 11016 + components: + - pos: 71.5,-22.5 + parent: 6747 + type: Transform + - uid: 11017 + components: + - pos: 71.5,-21.5 + parent: 6747 + type: Transform + - uid: 11018 + components: + - pos: 72.5,-25.5 + parent: 6747 + type: Transform + - uid: 11019 + components: + - pos: 72.5,-24.5 + parent: 6747 + type: Transform + - uid: 11020 + components: + - pos: 72.5,-23.5 + parent: 6747 + type: Transform + - uid: 11021 + components: + - pos: 72.5,-22.5 + parent: 6747 + type: Transform + - uid: 11022 + components: + - pos: 72.5,-21.5 + parent: 6747 + type: Transform + - uid: 11023 + components: + - pos: 70.5,-18.5 + parent: 6747 + type: Transform + - uid: 11024 + components: + - pos: 70.5,-19.5 + parent: 6747 + type: Transform + - uid: 11025 + components: + - pos: 70.5,-20.5 + parent: 6747 + type: Transform + - uid: 11026 + components: + - pos: 71.5,-18.5 + parent: 6747 + type: Transform + - uid: 11027 + components: + - pos: 71.5,-19.5 + parent: 6747 + type: Transform + - uid: 11028 + components: + - pos: 71.5,-20.5 + parent: 6747 + type: Transform + - uid: 11041 + components: + - pos: 72.5,-44.5 + parent: 6747 + type: Transform + - uid: 11042 + components: + - pos: 72.5,-43.5 + parent: 6747 + type: Transform + - uid: 11043 + components: + - pos: 71.5,-44.5 + parent: 6747 + type: Transform + - uid: 11044 + components: + - pos: 71.5,-43.5 + parent: 6747 + type: Transform + - uid: 11045 + components: + - pos: 70.5,-44.5 + parent: 6747 + type: Transform + - uid: 11046 + components: + - pos: 70.5,-43.5 + parent: 6747 + type: Transform + - uid: 11047 + components: + - pos: 69.5,-44.5 + parent: 6747 + type: Transform + - uid: 11048 + components: + - pos: 69.5,-43.5 + parent: 6747 + type: Transform + - uid: 11049 + components: + - pos: 72.5,-42.5 + parent: 6747 + type: Transform + - uid: 11050 + components: + - pos: 72.5,-41.5 + parent: 6747 + type: Transform + - uid: 11051 + components: + - pos: 72.5,-40.5 + parent: 6747 + type: Transform + - uid: 11052 + components: + - pos: 72.5,-39.5 + parent: 6747 + type: Transform + - uid: 11053 + components: + - pos: 71.5,-42.5 + parent: 6747 + type: Transform + - uid: 11054 + components: + - pos: 71.5,-41.5 + parent: 6747 + type: Transform + - uid: 11055 + components: + - pos: 71.5,-40.5 + parent: 6747 + type: Transform + - uid: 11056 + components: + - pos: 71.5,-39.5 + parent: 6747 + type: Transform + - uid: 11057 + components: + - pos: 70.5,-42.5 + parent: 6747 + type: Transform + - uid: 11058 + components: + - pos: 70.5,-41.5 + parent: 6747 + type: Transform + - uid: 11059 + components: + - pos: 70.5,-40.5 + parent: 6747 + type: Transform + - uid: 11060 + components: + - pos: 70.5,-39.5 + parent: 6747 + type: Transform + - uid: 11061 + components: + - pos: 69.5,-42.5 + parent: 6747 + type: Transform + - uid: 11062 + components: + - pos: 69.5,-41.5 + parent: 6747 + type: Transform + - uid: 11063 + components: + - pos: 69.5,-40.5 + parent: 6747 + type: Transform + - uid: 11064 + components: + - pos: 69.5,-39.5 + parent: 6747 + type: Transform + - uid: 11083 + components: + - pos: 63.5,-39.5 + parent: 6747 + type: Transform + - uid: 11084 + components: + - pos: 63.5,-40.5 + parent: 6747 + type: Transform + - uid: 11085 + components: + - pos: 63.5,-41.5 + parent: 6747 + type: Transform + - uid: 11086 + components: + - pos: 63.5,-42.5 + parent: 6747 + type: Transform + - uid: 11087 + components: + - pos: 63.5,-43.5 + parent: 6747 + type: Transform + - uid: 11088 + components: + - pos: 63.5,-44.5 + parent: 6747 + type: Transform + - uid: 11089 + components: + - pos: 62.5,-39.5 + parent: 6747 + type: Transform + - uid: 11090 + components: + - pos: 62.5,-40.5 + parent: 6747 + type: Transform + - uid: 11091 + components: + - pos: 62.5,-41.5 + parent: 6747 + type: Transform + - uid: 11092 + components: + - pos: 62.5,-42.5 + parent: 6747 + type: Transform + - uid: 11093 + components: + - pos: 62.5,-43.5 + parent: 6747 + type: Transform + - uid: 11094 + components: + - pos: 62.5,-44.5 + parent: 6747 + type: Transform + - uid: 11095 + components: + - pos: 61.5,-39.5 + parent: 6747 + type: Transform + - uid: 11096 + components: + - pos: 61.5,-40.5 + parent: 6747 + type: Transform + - uid: 11097 + components: + - pos: 61.5,-41.5 + parent: 6747 + type: Transform + - uid: 11098 + components: + - pos: 61.5,-42.5 + parent: 6747 + type: Transform + - uid: 11099 + components: + - pos: 61.5,-43.5 + parent: 6747 + type: Transform + - uid: 11100 + components: + - pos: 61.5,-44.5 + parent: 6747 + type: Transform + - uid: 11101 + components: + - pos: 60.5,-39.5 + parent: 6747 + type: Transform + - uid: 11102 + components: + - pos: 60.5,-40.5 + parent: 6747 + type: Transform + - uid: 11103 + components: + - pos: 60.5,-41.5 + parent: 6747 + type: Transform + - uid: 11104 + components: + - pos: 60.5,-42.5 + parent: 6747 + type: Transform + - uid: 11105 + components: + - pos: 60.5,-43.5 + parent: 6747 + type: Transform + - uid: 11106 + components: + - pos: 60.5,-44.5 + parent: 6747 + type: Transform + - uid: 11107 + components: + - pos: 59.5,-39.5 + parent: 6747 + type: Transform + - uid: 11108 + components: + - pos: 59.5,-40.5 + parent: 6747 + type: Transform + - uid: 11109 + components: + - pos: 59.5,-41.5 + parent: 6747 + type: Transform + - uid: 11110 + components: + - pos: 59.5,-42.5 + parent: 6747 + type: Transform + - uid: 11111 + components: + - pos: 59.5,-43.5 + parent: 6747 + type: Transform + - uid: 11112 + components: + - pos: 59.5,-44.5 + parent: 6747 + type: Transform +- proto: CarpSpawnerMundane + entities: + - uid: 3644 + components: + - pos: -35.5,-9.5 + parent: 6747 + type: Transform + - uid: 3645 + components: + - pos: -35.5,-13.5 + parent: 6747 + type: Transform + - uid: 3679 + components: + - pos: -35.5,-8.5 + parent: 6747 + type: Transform + - uid: 6175 + components: + - pos: -36.5,-8.5 + parent: 6747 + type: Transform + - uid: 6395 + components: + - pos: -36.5,-9.5 + parent: 6747 + type: Transform +- proto: CartridgeMinigun + entities: + - uid: 2427 + components: + - rot: -1.5707963267948966 rad + pos: 49.160793,-16.08039 + parent: 6747 + type: Transform +- proto: Catwalk + entities: + - uid: 612 + components: + - pos: -49.5,-41.5 + parent: 6747 + type: Transform + - uid: 1067 + components: + - pos: 54.5,20.5 + parent: 6747 + type: Transform + - uid: 1139 + components: + - pos: 7.5,-7.5 + parent: 6747 + type: Transform + - uid: 1202 + components: + - pos: 7.5,-6.5 + parent: 6747 + type: Transform + - uid: 2422 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-21.5 + parent: 6747 + type: Transform + - uid: 2784 + components: + - pos: -43.5,-19.5 + parent: 6747 + type: Transform + - uid: 2882 + components: + - pos: -42.5,-19.5 + parent: 6747 + type: Transform + - uid: 2884 + components: + - pos: -43.5,-18.5 + parent: 6747 + type: Transform + - uid: 2904 + components: + - pos: -44.5,-41.5 + parent: 6747 + type: Transform + - uid: 2940 + components: + - pos: -42.5,-15.5 + parent: 6747 + type: Transform + - uid: 2976 + components: + - pos: -46.5,-41.5 + parent: 6747 + type: Transform + - uid: 3017 + components: + - pos: -47.5,-41.5 + parent: 6747 + type: Transform + - uid: 3061 + components: + - pos: -48.5,-41.5 + parent: 6747 + type: Transform + - uid: 3248 + components: + - pos: 44.5,-48.5 + parent: 6747 + type: Transform + - uid: 3249 + components: + - pos: 35.5,-44.5 + parent: 6747 + type: Transform + - uid: 3250 + components: + - pos: 52.5,-30.5 + parent: 6747 + type: Transform + - uid: 3251 + components: + - pos: -3.5,-55.5 + parent: 6747 + type: Transform + - uid: 3253 + components: + - pos: 3.5,-11.5 + parent: 6747 + type: Transform + - uid: 3254 + components: + - pos: 29.5,6.5 + parent: 6747 + type: Transform + - uid: 3255 + components: + - pos: 53.5,-21.5 + parent: 6747 + type: Transform + - uid: 3293 + components: + - pos: 53.5,20.5 + parent: 6747 + type: Transform + - uid: 3510 + components: + - pos: 52.5,20.5 + parent: 6747 + type: Transform + - uid: 3729 + components: + - pos: 51.5,20.5 + parent: 6747 + type: Transform + - uid: 3758 + components: + - pos: 50.5,20.5 + parent: 6747 + type: Transform + - uid: 5397 + components: + - pos: 13.5,-18.5 + parent: 6747 + type: Transform + - uid: 5547 + components: + - pos: 49.5,20.5 + parent: 6747 + type: Transform + - uid: 5587 + components: + - pos: 48.5,20.5 + parent: 6747 + type: Transform + - uid: 5590 + components: + - pos: 47.5,20.5 + parent: 6747 + type: Transform + - uid: 5617 + components: + - pos: 46.5,20.5 + parent: 6747 + type: Transform + - uid: 6187 + components: + - pos: 45.5,20.5 + parent: 6747 + type: Transform + - uid: 6624 + components: + - pos: 44.5,20.5 + parent: 6747 + type: Transform + - uid: 6667 + components: + - pos: 59.5,30.5 + parent: 6747 + type: Transform + - uid: 6669 + components: + - pos: 43.5,20.5 + parent: 6747 + type: Transform + - uid: 6685 + components: + - pos: 42.5,20.5 + parent: 6747 + type: Transform + - uid: 6728 + components: + - pos: 59.5,29.5 + parent: 6747 + type: Transform + - uid: 6766 + components: + - pos: 59.5,27.5 + parent: 6747 + type: Transform + - uid: 6774 + components: + - pos: 61.5,27.5 + parent: 6747 + type: Transform + - uid: 6775 + components: + - pos: 62.5,26.5 + parent: 6747 + type: Transform + - uid: 6776 + components: + - pos: 62.5,25.5 + parent: 6747 + type: Transform + - uid: 7073 + components: + - pos: 31.5,45.5 + parent: 6747 + type: Transform + - uid: 7074 + components: + - pos: 33.5,45.5 + parent: 6747 + type: Transform + - uid: 7384 + components: + - pos: -49.5,-13.5 + parent: 6747 + type: Transform + - uid: 7385 + components: + - pos: -49.5,-16.5 + parent: 6747 + type: Transform + - uid: 8185 + components: + - pos: 62.5,27.5 + parent: 6747 + type: Transform + - uid: 8190 + components: + - pos: 60.5,27.5 + parent: 6747 + type: Transform + - uid: 8208 + components: + - pos: 59.5,28.5 + parent: 6747 + type: Transform + - uid: 8209 + components: + - pos: 61.5,30.5 + parent: 6747 + type: Transform + - uid: 8267 + components: + - pos: 60.5,30.5 + parent: 6747 + type: Transform + - uid: 10485 + components: + - pos: -40.5,-41.5 + parent: 6747 + type: Transform + - uid: 10490 + components: + - pos: -45.5,-41.5 + parent: 6747 + type: Transform + - uid: 11469 + components: + - pos: -41.5,-41.5 + parent: 6747 + type: Transform + - uid: 11557 + components: + - pos: 6.5,-12.5 + parent: 6747 + type: Transform + - uid: 11558 + components: + - pos: 5.5,-13.5 + parent: 6747 + type: Transform + - uid: 11559 + components: + - pos: 4.5,-13.5 + parent: 6747 + type: Transform + - uid: 11560 + components: + - pos: 3.5,-13.5 + parent: 6747 + type: Transform + - uid: 11561 + components: + - pos: 3.5,-12.5 + parent: 6747 + type: Transform + - uid: 13405 + components: + - pos: 64.5,37.5 + parent: 6747 + type: Transform + - uid: 13406 + components: + - pos: 65.5,37.5 + parent: 6747 + type: Transform + - uid: 13407 + components: + - pos: 66.5,37.5 + parent: 6747 + type: Transform + - uid: 13408 + components: + - pos: 67.5,37.5 + parent: 6747 + type: Transform + - uid: 13409 + components: + - pos: 68.5,37.5 + parent: 6747 + type: Transform + - uid: 13410 + components: + - pos: 69.5,37.5 + parent: 6747 + type: Transform + - uid: 13457 + components: + - pos: 68.5,15.5 + parent: 6747 + type: Transform + - uid: 13475 + components: + - pos: 62.5,24.5 + parent: 6747 + type: Transform + - uid: 13476 + components: + - pos: 62.5,23.5 + parent: 6747 + type: Transform + - uid: 13477 + components: + - pos: 61.5,23.5 + parent: 6747 + type: Transform + - uid: 13478 + components: + - pos: 61.5,22.5 + parent: 6747 + type: Transform + - uid: 13479 + components: + - pos: 61.5,21.5 + parent: 6747 + type: Transform + - uid: 13480 + components: + - pos: 61.5,20.5 + parent: 6747 + type: Transform + - uid: 13481 + components: + - pos: 61.5,19.5 + parent: 6747 + type: Transform + - uid: 13482 + components: + - pos: 61.5,18.5 + parent: 6747 + type: Transform + - uid: 13483 + components: + - pos: 61.5,17.5 + parent: 6747 + type: Transform + - uid: 14055 + components: + - pos: 61.5,16.5 + parent: 6747 + type: Transform + - uid: 14661 + components: + - pos: -42.5,-41.5 + parent: 6747 + type: Transform + - uid: 14662 + components: + - pos: -43.5,-41.5 + parent: 6747 + type: Transform + - uid: 14791 + components: + - pos: -39.5,-41.5 + parent: 6747 + type: Transform + - uid: 14796 + components: + - pos: -49.5,-40.5 + parent: 6747 + type: Transform + - uid: 14974 + components: + - pos: 61.5,15.5 + parent: 6747 + type: Transform + - uid: 15443 + components: + - pos: 67.5,15.5 + parent: 6747 + type: Transform + - uid: 16038 + components: + - pos: 7.5,-5.5 + parent: 6747 + type: Transform + - uid: 16039 + components: + - pos: 7.5,-4.5 + parent: 6747 + type: Transform + - uid: 16040 + components: + - pos: 7.5,-3.5 + parent: 6747 + type: Transform + - uid: 16041 + components: + - pos: 7.5,-2.5 + parent: 6747 + type: Transform + - uid: 16042 + components: + - pos: 7.5,-1.5 + parent: 6747 + type: Transform + - uid: 16043 + components: + - pos: 7.5,-0.5 + parent: 6747 + type: Transform + - uid: 16044 + components: + - pos: 7.5,0.5 + parent: 6747 + type: Transform + - uid: 16045 + components: + - pos: 7.5,1.5 + parent: 6747 + type: Transform + - uid: 16131 + components: + - pos: -16.5,-39.5 + parent: 6747 + type: Transform + - uid: 16132 + components: + - pos: -17.5,-39.5 + parent: 6747 + type: Transform + - uid: 16133 + components: + - pos: -18.5,-39.5 + parent: 6747 + type: Transform + - uid: 16134 + components: + - pos: -19.5,-39.5 + parent: 6747 + type: Transform + - uid: 16135 + components: + - pos: -20.5,-39.5 + parent: 6747 + type: Transform + - uid: 16136 + components: + - pos: -21.5,-39.5 + parent: 6747 + type: Transform + - uid: 16137 + components: + - pos: -22.5,-39.5 + parent: 6747 + type: Transform + - uid: 16138 + components: + - pos: -22.5,-40.5 + parent: 6747 + type: Transform + - uid: 16139 + components: + - pos: -22.5,-41.5 + parent: 6747 + type: Transform + - uid: 16140 + components: + - pos: -22.5,-42.5 + parent: 6747 + type: Transform + - uid: 16141 + components: + - pos: -23.5,-42.5 + parent: 6747 + type: Transform + - uid: 16142 + components: + - pos: -24.5,-42.5 + parent: 6747 + type: Transform + - uid: 16149 + components: + - pos: -25.5,-42.5 + parent: 6747 + type: Transform + - uid: 16150 + components: + - pos: -26.5,-42.5 + parent: 6747 + type: Transform + - uid: 16151 + components: + - pos: -27.5,-42.5 + parent: 6747 + type: Transform + - uid: 16152 + components: + - pos: -28.5,-42.5 + parent: 6747 + type: Transform + - uid: 16153 + components: + - pos: -29.5,-42.5 + parent: 6747 + type: Transform + - uid: 16154 + components: + - pos: -30.5,-42.5 + parent: 6747 + type: Transform + - uid: 16155 + components: + - pos: -31.5,-42.5 + parent: 6747 + type: Transform + - uid: 16156 + components: + - pos: -32.5,-42.5 + parent: 6747 + type: Transform + - uid: 16157 + components: + - pos: -33.5,-42.5 + parent: 6747 + type: Transform + - uid: 16158 + components: + - pos: -34.5,-42.5 + parent: 6747 + type: Transform + - uid: 16159 + components: + - pos: -35.5,-42.5 + parent: 6747 + type: Transform + - uid: 16160 + components: + - pos: -36.5,-41.5 + parent: 6747 + type: Transform + - uid: 16161 + components: + - pos: -37.5,-41.5 + parent: 6747 + type: Transform + - uid: 16208 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-18.5 + parent: 6747 + type: Transform + - uid: 16397 + components: + - pos: 62.5,15.5 + parent: 6747 + type: Transform + - uid: 16399 + components: + - pos: 66.5,15.5 + parent: 6747 + type: Transform + - uid: 16629 + components: + - pos: 65.5,15.5 + parent: 6747 + type: Transform + - uid: 16740 + components: + - pos: 63.5,15.5 + parent: 6747 + type: Transform + - uid: 19001 + components: + - pos: 58.5,15.5 + parent: 6747 + type: Transform + - uid: 19002 + components: + - pos: 58.5,16.5 + parent: 6747 + type: Transform + - uid: 19003 + components: + - pos: 58.5,17.5 + parent: 6747 + type: Transform + - uid: 19004 + components: + - pos: 58.5,18.5 + parent: 6747 + type: Transform + - uid: 19005 + components: + - pos: 58.5,19.5 + parent: 6747 + type: Transform + - uid: 19008 + components: + - pos: 58.5,20.5 + parent: 6747 + type: Transform + - uid: 19009 + components: + - pos: 58.5,21.5 + parent: 6747 + type: Transform + - uid: 19010 + components: + - pos: 58.5,22.5 + parent: 6747 + type: Transform + - uid: 19011 + components: + - pos: 58.5,23.5 + parent: 6747 + type: Transform + - uid: 19027 + components: + - pos: 57.5,20.5 + parent: 6747 + type: Transform + - uid: 19028 + components: + - pos: 56.5,20.5 + parent: 6747 + type: Transform + - uid: 19029 + components: + - pos: 55.5,20.5 + parent: 6747 + type: Transform + - uid: 19030 + components: + - pos: 57.5,16.5 + parent: 6747 + type: Transform + - uid: 21454 + components: + - pos: 30.5,6.5 + parent: 6747 + type: Transform + - uid: 21455 + components: + - pos: 31.5,6.5 + parent: 6747 + type: Transform + - uid: 21456 + components: + - pos: 32.5,6.5 + parent: 6747 + type: Transform + - uid: 21457 + components: + - pos: 33.5,6.5 + parent: 6747 + type: Transform + - uid: 21458 + components: + - pos: 34.5,6.5 + parent: 6747 + type: Transform + - uid: 21459 + components: + - pos: 35.5,6.5 + parent: 6747 + type: Transform + - uid: 21460 + components: + - pos: 35.5,5.5 + parent: 6747 + type: Transform + - uid: 21461 + components: + - pos: 35.5,4.5 + parent: 6747 + type: Transform + - uid: 21462 + components: + - pos: 36.5,4.5 + parent: 6747 + type: Transform + - uid: 21463 + components: + - pos: 37.5,4.5 + parent: 6747 + type: Transform + - uid: 21464 + components: + - pos: 38.5,4.5 + parent: 6747 + type: Transform + - uid: 21465 + components: + - pos: 39.5,4.5 + parent: 6747 + type: Transform + - uid: 21466 + components: + - pos: 40.5,4.5 + parent: 6747 + type: Transform + - uid: 21467 + components: + - pos: 41.5,4.5 + parent: 6747 + type: Transform + - uid: 21468 + components: + - pos: 42.5,4.5 + parent: 6747 + type: Transform + - uid: 21469 + components: + - pos: 43.5,4.5 + parent: 6747 + type: Transform + - uid: 21470 + components: + - pos: 44.5,4.5 + parent: 6747 + type: Transform + - uid: 21471 + components: + - pos: 45.5,4.5 + parent: 6747 + type: Transform + - uid: 21472 + components: + - pos: 46.5,4.5 + parent: 6747 + type: Transform + - uid: 21473 + components: + - pos: 47.5,4.5 + parent: 6747 + type: Transform + - uid: 21474 + components: + - pos: 48.5,4.5 + parent: 6747 + type: Transform + - uid: 21475 + components: + - pos: 49.5,4.5 + parent: 6747 + type: Transform + - uid: 21476 + components: + - pos: 50.5,4.5 + parent: 6747 + type: Transform + - uid: 21477 + components: + - pos: 50.5,3.5 + parent: 6747 + type: Transform + - uid: 21478 + components: + - pos: 50.5,2.5 + parent: 6747 + type: Transform + - uid: 21479 + components: + - pos: 50.5,1.5 + parent: 6747 + type: Transform + - uid: 21480 + components: + - pos: 50.5,0.5 + parent: 6747 + type: Transform + - uid: 21481 + components: + - pos: 50.5,-0.5 + parent: 6747 + type: Transform + - uid: 21482 + components: + - pos: 50.5,-1.5 + parent: 6747 + type: Transform + - uid: 21483 + components: + - pos: 50.5,-2.5 + parent: 6747 + type: Transform + - uid: 21484 + components: + - pos: 50.5,-3.5 + parent: 6747 + type: Transform + - uid: 21485 + components: + - pos: 51.5,-3.5 + parent: 6747 + type: Transform + - uid: 21486 + components: + - pos: 52.5,-3.5 + parent: 6747 + type: Transform + - uid: 21487 + components: + - pos: 53.5,-3.5 + parent: 6747 + type: Transform + - uid: 21488 + components: + - pos: 54.5,-3.5 + parent: 6747 + type: Transform + - uid: 21489 + components: + - pos: 54.5,-4.5 + parent: 6747 + type: Transform + - uid: 21490 + components: + - pos: 54.5,-5.5 + parent: 6747 + type: Transform + - uid: 21491 + components: + - pos: 54.5,-6.5 + parent: 6747 + type: Transform + - uid: 21492 + components: + - pos: 54.5,-7.5 + parent: 6747 + type: Transform + - uid: 21493 + components: + - pos: 54.5,-8.5 + parent: 6747 + type: Transform + - uid: 21494 + components: + - pos: 54.5,-9.5 + parent: 6747 + type: Transform + - uid: 21495 + components: + - pos: 54.5,-10.5 + parent: 6747 + type: Transform + - uid: 21496 + components: + - pos: 54.5,-11.5 + parent: 6747 + type: Transform + - uid: 21497 + components: + - pos: 54.5,-12.5 + parent: 6747 + type: Transform + - uid: 21498 + components: + - pos: 54.5,-13.5 + parent: 6747 + type: Transform + - uid: 21499 + components: + - pos: 54.5,-14.5 + parent: 6747 + type: Transform + - uid: 21500 + components: + - pos: 54.5,-15.5 + parent: 6747 + type: Transform + - uid: 21501 + components: + - pos: 54.5,-16.5 + parent: 6747 + type: Transform + - uid: 21502 + components: + - pos: 54.5,-17.5 + parent: 6747 + type: Transform + - uid: 21503 + components: + - pos: 54.5,-18.5 + parent: 6747 + type: Transform + - uid: 21504 + components: + - pos: 54.5,-19.5 + parent: 6747 + type: Transform + - uid: 21505 + components: + - pos: 54.5,-20.5 + parent: 6747 + type: Transform + - uid: 21506 + components: + - pos: 54.5,-21.5 + parent: 6747 + type: Transform + - uid: 21507 + components: + - pos: 55.5,-16.5 + parent: 6747 + type: Transform + - uid: 21508 + components: + - pos: 56.5,-16.5 + parent: 6747 + type: Transform + - uid: 21509 + components: + - pos: 57.5,-16.5 + parent: 6747 + type: Transform + - uid: 21510 + components: + - pos: 58.5,-16.5 + parent: 6747 + type: Transform + - uid: 21511 + components: + - pos: 52.5,-31.5 + parent: 6747 + type: Transform + - uid: 21512 + components: + - pos: 52.5,-32.5 + parent: 6747 + type: Transform + - uid: 21513 + components: + - pos: 52.5,-33.5 + parent: 6747 + type: Transform + - uid: 21514 + components: + - pos: 52.5,-34.5 + parent: 6747 + type: Transform + - uid: 21515 + components: + - pos: 52.5,-35.5 + parent: 6747 + type: Transform + - uid: 21516 + components: + - pos: 52.5,-36.5 + parent: 6747 + type: Transform + - uid: 21517 + components: + - pos: 52.5,-37.5 + parent: 6747 + type: Transform + - uid: 21518 + components: + - pos: 53.5,-34.5 + parent: 6747 + type: Transform + - uid: 21519 + components: + - pos: 54.5,-34.5 + parent: 6747 + type: Transform + - uid: 21520 + components: + - pos: 55.5,-34.5 + parent: 6747 + type: Transform + - uid: 21521 + components: + - pos: 53.5,-37.5 + parent: 6747 + type: Transform + - uid: 21522 + components: + - pos: 53.5,-38.5 + parent: 6747 + type: Transform + - uid: 21523 + components: + - pos: 51.5,-37.5 + parent: 6747 + type: Transform + - uid: 21524 + components: + - pos: 51.5,-38.5 + parent: 6747 + type: Transform + - uid: 21525 + components: + - pos: 50.5,-38.5 + parent: 6747 + type: Transform + - uid: 21526 + components: + - pos: 49.5,-38.5 + parent: 6747 + type: Transform + - uid: 21527 + components: + - pos: 48.5,-38.5 + parent: 6747 + type: Transform + - uid: 21528 + components: + - pos: 47.5,-38.5 + parent: 6747 + type: Transform + - uid: 21529 + components: + - pos: 46.5,-38.5 + parent: 6747 + type: Transform + - uid: 21530 + components: + - pos: 45.5,-38.5 + parent: 6747 + type: Transform + - uid: 21531 + components: + - pos: 45.5,-39.5 + parent: 6747 + type: Transform + - uid: 21532 + components: + - pos: 44.5,-39.5 + parent: 6747 + type: Transform + - uid: 21537 + components: + - pos: 43.5,-43.5 + parent: 6747 + type: Transform + - uid: 21538 + components: + - pos: 42.5,-43.5 + parent: 6747 + type: Transform + - uid: 21539 + components: + - pos: 41.5,-43.5 + parent: 6747 + type: Transform + - uid: 21540 + components: + - pos: 40.5,-43.5 + parent: 6747 + type: Transform + - uid: 21541 + components: + - pos: 39.5,-43.5 + parent: 6747 + type: Transform + - uid: 21542 + components: + - pos: 38.5,-43.5 + parent: 6747 + type: Transform + - uid: 21543 + components: + - pos: 37.5,-43.5 + parent: 6747 + type: Transform + - uid: 21544 + components: + - pos: 36.5,-43.5 + parent: 6747 + type: Transform + - uid: 21545 + components: + - pos: 35.5,-43.5 + parent: 6747 + type: Transform + - uid: 21570 + components: + - pos: -45.5,-13.5 + parent: 6747 + type: Transform + - uid: 21571 + components: + - pos: -45.5,-14.5 + parent: 6747 + type: Transform + - uid: 21572 + components: + - pos: -45.5,-15.5 + parent: 6747 + type: Transform + - uid: 21573 + components: + - pos: -44.5,-15.5 + parent: 6747 + type: Transform + - uid: 21574 + components: + - pos: -43.5,-15.5 + parent: 6747 + type: Transform + - uid: 21578 + components: + - pos: -38.5,-41.5 + parent: 6747 + type: Transform + - uid: 21579 + components: + - pos: -38.5,-42.5 + parent: 6747 + type: Transform + - uid: 21580 + components: + - pos: -38.5,-43.5 + parent: 6747 + type: Transform + - uid: 21581 + components: + - pos: -38.5,-44.5 + parent: 6747 + type: Transform + - uid: 21582 + components: + - pos: -38.5,-45.5 + parent: 6747 + type: Transform + - uid: 21583 + components: + - pos: -38.5,-46.5 + parent: 6747 + type: Transform + - uid: 21584 + components: + - pos: -38.5,-47.5 + parent: 6747 + type: Transform + - uid: 21585 + components: + - pos: -38.5,-48.5 + parent: 6747 + type: Transform + - uid: 21586 + components: + - pos: -38.5,-49.5 + parent: 6747 + type: Transform + - uid: 21587 + components: + - pos: -38.5,-50.5 + parent: 6747 + type: Transform + - uid: 21588 + components: + - pos: -38.5,-51.5 + parent: 6747 + type: Transform + - uid: 21589 + components: + - pos: -38.5,-52.5 + parent: 6747 + type: Transform + - uid: 21590 + components: + - pos: -37.5,-52.5 + parent: 6747 + type: Transform + - uid: 21591 + components: + - pos: -36.5,-52.5 + parent: 6747 + type: Transform + - uid: 21592 + components: + - pos: -35.5,-52.5 + parent: 6747 + type: Transform + - uid: 21593 + components: + - pos: -34.5,-52.5 + parent: 6747 + type: Transform + - uid: 21594 + components: + - pos: -34.5,-53.5 + parent: 6747 + type: Transform + - uid: 21595 + components: + - pos: -34.5,-54.5 + parent: 6747 + type: Transform + - uid: 21596 + components: + - pos: -34.5,-55.5 + parent: 6747 + type: Transform + - uid: 21597 + components: + - pos: -34.5,-56.5 + parent: 6747 + type: Transform + - uid: 21598 + components: + - pos: -34.5,-57.5 + parent: 6747 + type: Transform + - uid: 21599 + components: + - pos: -34.5,-58.5 + parent: 6747 + type: Transform + - uid: 21600 + components: + - pos: -34.5,-59.5 + parent: 6747 + type: Transform + - uid: 21601 + components: + - pos: -34.5,-60.5 + parent: 6747 + type: Transform + - uid: 21602 + components: + - pos: -34.5,-61.5 + parent: 6747 + type: Transform + - uid: 21614 + components: + - pos: -22.5,-61.5 + parent: 6747 + type: Transform + - uid: 21615 + components: + - pos: -22.5,-62.5 + parent: 6747 + type: Transform + - uid: 21616 + components: + - pos: -21.5,-62.5 + parent: 6747 + type: Transform + - uid: 21617 + components: + - pos: -20.5,-62.5 + parent: 6747 + type: Transform + - uid: 21618 + components: + - pos: -19.5,-62.5 + parent: 6747 + type: Transform + - uid: 21619 + components: + - pos: -18.5,-62.5 + parent: 6747 + type: Transform + - uid: 21620 + components: + - pos: -17.5,-62.5 + parent: 6747 + type: Transform + - uid: 21621 + components: + - pos: -16.5,-62.5 + parent: 6747 + type: Transform + - uid: 21622 + components: + - pos: -15.5,-62.5 + parent: 6747 + type: Transform + - uid: 21623 + components: + - pos: -14.5,-62.5 + parent: 6747 + type: Transform + - uid: 21624 + components: + - pos: -13.5,-62.5 + parent: 6747 + type: Transform + - uid: 21625 + components: + - pos: -13.5,-63.5 + parent: 6747 + type: Transform + - uid: 21626 + components: + - pos: -13.5,-64.5 + parent: 6747 + type: Transform + - uid: 21627 + components: + - pos: -13.5,-65.5 + parent: 6747 + type: Transform + - uid: 21628 + components: + - pos: -13.5,-66.5 + parent: 6747 + type: Transform + - uid: 21629 + components: + - pos: -13.5,-67.5 + parent: 6747 + type: Transform + - uid: 21630 + components: + - pos: -13.5,-68.5 + parent: 6747 + type: Transform + - uid: 21631 + components: + - pos: -12.5,-68.5 + parent: 6747 + type: Transform + - uid: 21632 + components: + - pos: -11.5,-68.5 + parent: 6747 + type: Transform + - uid: 21633 + components: + - pos: -10.5,-68.5 + parent: 6747 + type: Transform + - uid: 21634 + components: + - pos: -9.5,-68.5 + parent: 6747 + type: Transform + - uid: 21635 + components: + - pos: -8.5,-68.5 + parent: 6747 + type: Transform + - uid: 21636 + components: + - pos: -7.5,-68.5 + parent: 6747 + type: Transform + - uid: 21637 + components: + - pos: -6.5,-68.5 + parent: 6747 + type: Transform + - uid: 21638 + components: + - pos: -5.5,-68.5 + parent: 6747 + type: Transform + - uid: 21639 + components: + - pos: -4.5,-68.5 + parent: 6747 + type: Transform + - uid: 21640 + components: + - pos: -3.5,-68.5 + parent: 6747 + type: Transform + - uid: 21641 + components: + - pos: -3.5,-67.5 + parent: 6747 + type: Transform + - uid: 21642 + components: + - pos: -3.5,-66.5 + parent: 6747 + type: Transform + - uid: 21643 + components: + - pos: -3.5,-65.5 + parent: 6747 + type: Transform + - uid: 21644 + components: + - pos: -3.5,-64.5 + parent: 6747 + type: Transform + - uid: 21645 + components: + - pos: -3.5,-63.5 + parent: 6747 + type: Transform + - uid: 21646 + components: + - pos: -3.5,-62.5 + parent: 6747 + type: Transform + - uid: 21647 + components: + - pos: -3.5,-61.5 + parent: 6747 + type: Transform + - uid: 21648 + components: + - pos: -3.5,-60.5 + parent: 6747 + type: Transform + - uid: 21649 + components: + - pos: -3.5,-59.5 + parent: 6747 + type: Transform + - uid: 21650 + components: + - pos: -3.5,-58.5 + parent: 6747 + type: Transform + - uid: 21651 + components: + - pos: -3.5,-57.5 + parent: 6747 + type: Transform + - uid: 21652 + components: + - pos: -3.5,-56.5 + parent: 6747 + type: Transform + - uid: 21666 + components: + - pos: -7.5,5.5 + parent: 6747 + type: Transform + - uid: 21667 + components: + - pos: -6.5,5.5 + parent: 6747 + type: Transform + - uid: 21668 + components: + - pos: -5.5,5.5 + parent: 6747 + type: Transform + - uid: 21669 + components: + - pos: -4.5,5.5 + parent: 6747 + type: Transform + - uid: 21670 + components: + - pos: -3.5,5.5 + parent: 6747 + type: Transform + - uid: 21671 + components: + - pos: -2.5,5.5 + parent: 6747 + type: Transform + - uid: 21672 + components: + - pos: -1.5,5.5 + parent: 6747 + type: Transform + - uid: 21673 + components: + - pos: -0.5,5.5 + parent: 6747 + type: Transform + - uid: 21674 + components: + - pos: 0.5,5.5 + parent: 6747 + type: Transform + - uid: 21675 + components: + - pos: 1.5,5.5 + parent: 6747 + type: Transform + - uid: 21676 + components: + - pos: 2.5,5.5 + parent: 6747 + type: Transform + - uid: 21677 + components: + - pos: 2.5,4.5 + parent: 6747 + type: Transform + - uid: 21678 + components: + - pos: 2.5,3.5 + parent: 6747 + type: Transform + - uid: 21679 + components: + - pos: 2.5,2.5 + parent: 6747 + type: Transform + - uid: 21680 + components: + - pos: 3.5,2.5 + parent: 6747 + type: Transform + - uid: 21681 + components: + - pos: 4.5,2.5 + parent: 6747 + type: Transform + - uid: 21682 + components: + - pos: 5.5,2.5 + parent: 6747 + type: Transform + - uid: 21683 + components: + - pos: 6.5,2.5 + parent: 6747 + type: Transform + - uid: 21684 + components: + - pos: 7.5,2.5 + parent: 6747 + type: Transform + - uid: 21685 + components: + - pos: 8.5,2.5 + parent: 6747 + type: Transform + - uid: 21686 + components: + - pos: 9.5,2.5 + parent: 6747 + type: Transform + - uid: 21687 + components: + - pos: 10.5,2.5 + parent: 6747 + type: Transform + - uid: 21688 + components: + - pos: 11.5,2.5 + parent: 6747 + type: Transform + - uid: 21689 + components: + - pos: 12.5,2.5 + parent: 6747 + type: Transform + - uid: 21690 + components: + - pos: 13.5,2.5 + parent: 6747 + type: Transform + - uid: 21691 + components: + - pos: 13.5,3.5 + parent: 6747 + type: Transform + - uid: 21692 + components: + - pos: 13.5,4.5 + parent: 6747 + type: Transform + - uid: 21693 + components: + - pos: 14.5,2.5 + parent: 6747 + type: Transform + - uid: 21694 + components: + - pos: 15.5,2.5 + parent: 6747 + type: Transform + - uid: 21695 + components: + - pos: 16.5,2.5 + parent: 6747 + type: Transform + - uid: 21696 + components: + - pos: 17.5,2.5 + parent: 6747 + type: Transform + - uid: 21697 + components: + - pos: 18.5,2.5 + parent: 6747 + type: Transform + - uid: 21698 + components: + - pos: 19.5,2.5 + parent: 6747 + type: Transform + - uid: 21699 + components: + - pos: 19.5,3.5 + parent: 6747 + type: Transform + - uid: 21700 + components: + - pos: 20.5,3.5 + parent: 6747 + type: Transform + - uid: 21754 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,55.5 + parent: 6747 + type: Transform + - uid: 21982 + components: + - pos: 18.5,-74.5 + parent: 6747 + type: Transform + - uid: 21983 + components: + - pos: 18.5,-75.5 + parent: 6747 + type: Transform + - uid: 21984 + components: + - pos: 44.5,-49.5 + parent: 6747 + type: Transform + - uid: 21985 + components: + - pos: 18.5,-76.5 + parent: 6747 + type: Transform + - uid: 21986 + components: + - pos: 44.5,-50.5 + parent: 6747 + type: Transform + - uid: 21987 + components: + - pos: 44.5,-51.5 + parent: 6747 + type: Transform + - uid: 21988 + components: + - pos: 44.5,-52.5 + parent: 6747 + type: Transform + - uid: 21989 + components: + - pos: 44.5,-53.5 + parent: 6747 + type: Transform + - uid: 21990 + components: + - pos: 43.5,-53.5 + parent: 6747 + type: Transform + - uid: 21991 + components: + - pos: 42.5,-53.5 + parent: 6747 + type: Transform + - uid: 21992 + components: + - pos: 41.5,-53.5 + parent: 6747 + type: Transform + - uid: 21993 + components: + - pos: 40.5,-53.5 + parent: 6747 + type: Transform + - uid: 21994 + components: + - pos: 39.5,-53.5 + parent: 6747 + type: Transform + - uid: 21995 + components: + - pos: 38.5,-53.5 + parent: 6747 + type: Transform + - uid: 21996 + components: + - pos: 37.5,-53.5 + parent: 6747 + type: Transform + - uid: 21997 + components: + - pos: 37.5,-54.5 + parent: 6747 + type: Transform + - uid: 21998 + components: + - pos: 37.5,-55.5 + parent: 6747 + type: Transform + - uid: 21999 + components: + - pos: 37.5,-56.5 + parent: 6747 + type: Transform + - uid: 22000 + components: + - pos: 37.5,-57.5 + parent: 6747 + type: Transform + - uid: 22001 + components: + - pos: 37.5,-58.5 + parent: 6747 + type: Transform + - uid: 22002 + components: + - pos: 37.5,-59.5 + parent: 6747 + type: Transform + - uid: 22003 + components: + - pos: 37.5,-60.5 + parent: 6747 + type: Transform + - uid: 22004 + components: + - pos: 37.5,-61.5 + parent: 6747 + type: Transform + - uid: 22005 + components: + - pos: 36.5,-61.5 + parent: 6747 + type: Transform + - uid: 22006 + components: + - pos: 35.5,-61.5 + parent: 6747 + type: Transform + - uid: 22007 + components: + - pos: 35.5,-62.5 + parent: 6747 + type: Transform + - uid: 22008 + components: + - pos: 35.5,-63.5 + parent: 6747 + type: Transform + - uid: 22009 + components: + - pos: 34.5,-63.5 + parent: 6747 + type: Transform + - uid: 22010 + components: + - pos: 33.5,-63.5 + parent: 6747 + type: Transform + - uid: 22011 + components: + - pos: 32.5,-63.5 + parent: 6747 + type: Transform + - uid: 22012 + components: + - pos: 31.5,-63.5 + parent: 6747 + type: Transform + - uid: 22013 + components: + - pos: 31.5,-64.5 + parent: 6747 + type: Transform + - uid: 22014 + components: + - pos: 31.5,-65.5 + parent: 6747 + type: Transform + - uid: 22015 + components: + - pos: 31.5,-66.5 + parent: 6747 + type: Transform + - uid: 22016 + components: + - pos: 31.5,-67.5 + parent: 6747 + type: Transform + - uid: 22017 + components: + - pos: 31.5,-68.5 + parent: 6747 + type: Transform + - uid: 22018 + components: + - pos: 31.5,-69.5 + parent: 6747 + type: Transform + - uid: 22019 + components: + - pos: 31.5,-70.5 + parent: 6747 + type: Transform + - uid: 22020 + components: + - pos: 31.5,-71.5 + parent: 6747 + type: Transform + - uid: 22021 + components: + - pos: 31.5,-72.5 + parent: 6747 + type: Transform + - uid: 22022 + components: + - pos: 30.5,-72.5 + parent: 6747 + type: Transform + - uid: 22023 + components: + - pos: 29.5,-72.5 + parent: 6747 + type: Transform + - uid: 22024 + components: + - pos: 28.5,-72.5 + parent: 6747 + type: Transform + - uid: 22025 + components: + - pos: 27.5,-72.5 + parent: 6747 + type: Transform + - uid: 22026 + components: + - pos: 26.5,-72.5 + parent: 6747 + type: Transform + - uid: 22027 + components: + - pos: 25.5,-72.5 + parent: 6747 + type: Transform + - uid: 22028 + components: + - pos: 24.5,-72.5 + parent: 6747 + type: Transform + - uid: 22029 + components: + - pos: 23.5,-72.5 + parent: 6747 + type: Transform + - uid: 22030 + components: + - pos: 22.5,-72.5 + parent: 6747 + type: Transform + - uid: 22031 + components: + - pos: 21.5,-72.5 + parent: 6747 + type: Transform + - uid: 22032 + components: + - pos: 20.5,-72.5 + parent: 6747 + type: Transform + - uid: 22033 + components: + - pos: 19.5,-72.5 + parent: 6747 + type: Transform + - uid: 22034 + components: + - pos: 18.5,-72.5 + parent: 6747 + type: Transform + - uid: 22170 + components: + - pos: -44.5,13.5 + parent: 6747 + type: Transform + - uid: 22171 + components: + - pos: -45.5,13.5 + parent: 6747 + type: Transform + - uid: 22172 + components: + - pos: -46.5,13.5 + parent: 6747 + type: Transform + - uid: 22207 + components: + - pos: -47.5,13.5 + parent: 6747 + type: Transform + - uid: 22208 + components: + - pos: -48.5,13.5 + parent: 6747 + type: Transform + - uid: 22209 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-18.5 + parent: 6747 + type: Transform + - uid: 22212 + components: + - pos: -45.5,-10.5 + parent: 6747 + type: Transform + - uid: 22213 + components: + - pos: -45.5,-9.5 + parent: 6747 + type: Transform + - uid: 22214 + components: + - pos: -45.5,-8.5 + parent: 6747 + type: Transform + - uid: 22215 + components: + - pos: -45.5,-7.5 + parent: 6747 + type: Transform + - uid: 22216 + components: + - pos: -45.5,-6.5 + parent: 6747 + type: Transform + - uid: 22217 + components: + - pos: -45.5,-5.5 + parent: 6747 + type: Transform + - uid: 22218 + components: + - pos: -45.5,-4.5 + parent: 6747 + type: Transform + - uid: 22219 + components: + - pos: -46.5,-4.5 + parent: 6747 + type: Transform + - uid: 22220 + components: + - pos: -47.5,-4.5 + parent: 6747 + type: Transform + - uid: 22221 + components: + - pos: -48.5,-4.5 + parent: 6747 + type: Transform + - uid: 22222 + components: + - pos: -49.5,-4.5 + parent: 6747 + type: Transform + - uid: 22247 + components: + - pos: -50.5,-4.5 + parent: 6747 + type: Transform + - uid: 22248 + components: + - pos: -51.5,-4.5 + parent: 6747 + type: Transform + - uid: 22251 + components: + - pos: -52.5,-4.5 + parent: 6747 + type: Transform + - uid: 22252 + components: + - pos: -53.5,-4.5 + parent: 6747 + type: Transform + - uid: 22253 + components: + - pos: -54.5,-4.5 + parent: 6747 + type: Transform + - uid: 22254 + components: + - pos: -54.5,-3.5 + parent: 6747 + type: Transform + - uid: 22255 + components: + - pos: -54.5,-2.5 + parent: 6747 + type: Transform + - uid: 22256 + components: + - pos: -54.5,-1.5 + parent: 6747 + type: Transform + - uid: 22257 + components: + - pos: -54.5,-0.5 + parent: 6747 + type: Transform + - uid: 22258 + components: + - pos: -54.5,0.5 + parent: 6747 + type: Transform + - uid: 22259 + components: + - pos: -54.5,1.5 + parent: 6747 + type: Transform + - uid: 22260 + components: + - pos: -54.5,2.5 + parent: 6747 + type: Transform + - uid: 22261 + components: + - pos: -54.5,3.5 + parent: 6747 + type: Transform + - uid: 22285 + components: + - pos: -54.5,4.5 + parent: 6747 + type: Transform + - uid: 22286 + components: + - pos: -48.5,10.5 + parent: 6747 + type: Transform + - uid: 22287 + components: + - pos: -48.5,11.5 + parent: 6747 + type: Transform + - uid: 22332 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-20.5 + parent: 6747 + type: Transform + - uid: 22334 + components: + - pos: -48.5,12.5 + parent: 6747 + type: Transform + - uid: 22710 + components: + - pos: 31.5,40.5 + parent: 6747 + type: Transform + - uid: 22711 + components: + - pos: 31.5,39.5 + parent: 6747 + type: Transform + - uid: 22712 + components: + - pos: 31.5,38.5 + parent: 6747 + type: Transform + - uid: 22713 + components: + - pos: 31.5,37.5 + parent: 6747 + type: Transform + - uid: 22714 + components: + - pos: 32.5,37.5 + parent: 6747 + type: Transform + - uid: 22715 + components: + - pos: 30.5,37.5 + parent: 6747 + type: Transform + - uid: 22716 + components: + - pos: 30.5,36.5 + parent: 6747 + type: Transform + - uid: 22717 + components: + - pos: 30.5,35.5 + parent: 6747 + type: Transform + - uid: 22718 + components: + - pos: 29.5,35.5 + parent: 6747 + type: Transform + - uid: 22719 + components: + - pos: 29.5,33.5 + parent: 6747 + type: Transform + - uid: 22720 + components: + - pos: 29.5,31.5 + parent: 6747 + type: Transform + - uid: 22721 + components: + - pos: 29.5,22.5 + parent: 6747 + type: Transform + - uid: 22722 + components: + - pos: 29.5,21.5 + parent: 6747 + type: Transform + - uid: 22723 + components: + - pos: 30.5,21.5 + parent: 6747 + type: Transform + - uid: 22724 + components: + - pos: 31.5,21.5 + parent: 6747 + type: Transform + - uid: 22725 + components: + - pos: 32.5,21.5 + parent: 6747 + type: Transform + - uid: 22726 + components: + - pos: 33.5,21.5 + parent: 6747 + type: Transform + - uid: 22727 + components: + - pos: 34.5,21.5 + parent: 6747 + type: Transform + - uid: 22728 + components: + - pos: 35.5,21.5 + parent: 6747 + type: Transform + - uid: 22729 + components: + - pos: 36.5,21.5 + parent: 6747 + type: Transform + - uid: 22730 + components: + - pos: 37.5,21.5 + parent: 6747 + type: Transform + - uid: 22731 + components: + - pos: 38.5,21.5 + parent: 6747 + type: Transform + - uid: 22736 + components: + - pos: 40.5,20.5 + parent: 6747 + type: Transform + - uid: 22737 + components: + - pos: 38.5,20.5 + parent: 6747 + type: Transform + - uid: 22739 + components: + - pos: 41.5,20.5 + parent: 6747 + type: Transform + - uid: 23071 + components: + - pos: -46.5,-11.5 + parent: 6747 + type: Transform + - uid: 23072 + components: + - pos: -47.5,-11.5 + parent: 6747 + type: Transform + - uid: 23073 + components: + - pos: -48.5,-11.5 + parent: 6747 + type: Transform + - uid: 23074 + components: + - pos: -49.5,-11.5 + parent: 6747 + type: Transform + - uid: 23075 + components: + - pos: -49.5,-14.5 + parent: 6747 + type: Transform + - uid: 23076 + components: + - pos: -49.5,-15.5 + parent: 6747 + type: Transform + - uid: 23218 + components: + - pos: 10.5,-82.5 + parent: 6747 + type: Transform + - uid: 23220 + components: + - pos: 18.5,-73.5 + parent: 6747 + type: Transform + - uid: 23221 + components: + - pos: 10.5,-81.5 + parent: 6747 + type: Transform + - uid: 23222 + components: + - pos: 10.5,-80.5 + parent: 6747 + type: Transform + - uid: 23224 + components: + - pos: 10.5,-79.5 + parent: 6747 + type: Transform + - uid: 23225 + components: + - pos: 10.5,-78.5 + parent: 6747 + type: Transform + - uid: 23226 + components: + - pos: 11.5,-78.5 + parent: 6747 + type: Transform + - uid: 23227 + components: + - pos: 12.5,-78.5 + parent: 6747 + type: Transform + - uid: 23228 + components: + - pos: 13.5,-78.5 + parent: 6747 + type: Transform + - uid: 23229 + components: + - pos: -52.5,-18.5 + parent: 6747 + type: Transform + - uid: 23230 + components: + - pos: -52.5,-19.5 + parent: 6747 + type: Transform + - uid: 23231 + components: + - pos: -52.5,-20.5 + parent: 6747 + type: Transform + - uid: 23232 + components: + - pos: -52.5,-21.5 + parent: 6747 + type: Transform + - uid: 23233 + components: + - pos: -52.5,-22.5 + parent: 6747 + type: Transform + - uid: 23234 + components: + - pos: -52.5,-23.5 + parent: 6747 + type: Transform + - uid: 23235 + components: + - pos: -53.5,-23.5 + parent: 6747 + type: Transform + - uid: 23236 + components: + - pos: -53.5,-27.5 + parent: 6747 + type: Transform + - uid: 23237 + components: + - pos: -54.5,-25.5 + parent: 6747 + type: Transform + - uid: 23238 + components: + - pos: -53.5,-25.5 + parent: 6747 + type: Transform + - uid: 23239 + components: + - pos: -53.5,-26.5 + parent: 6747 + type: Transform + - uid: 23240 + components: + - pos: -54.5,-27.5 + parent: 6747 + type: Transform + - uid: 23241 + components: + - pos: -55.5,-27.5 + parent: 6747 + type: Transform + - uid: 23242 + components: + - pos: -53.5,-28.5 + parent: 6747 + type: Transform + - uid: 23243 + components: + - pos: -56.5,-27.5 + parent: 6747 + type: Transform + - uid: 23244 + components: + - pos: -57.5,-27.5 + parent: 6747 + type: Transform + - uid: 23245 + components: + - pos: -58.5,-27.5 + parent: 6747 + type: Transform + - uid: 23246 + components: + - pos: -59.5,-27.5 + parent: 6747 + type: Transform + - uid: 23247 + components: + - pos: -60.5,-27.5 + parent: 6747 + type: Transform + - uid: 23248 + components: + - pos: -61.5,-27.5 + parent: 6747 + type: Transform + - uid: 23249 + components: + - pos: -62.5,-27.5 + parent: 6747 + type: Transform + - uid: 23250 + components: + - pos: -63.5,-27.5 + parent: 6747 + type: Transform + - uid: 23251 + components: + - pos: -64.5,-27.5 + parent: 6747 + type: Transform + - uid: 23252 + components: + - pos: -65.5,-27.5 + parent: 6747 + type: Transform + - uid: 23253 + components: + - pos: -66.5,-27.5 + parent: 6747 + type: Transform + - uid: 23254 + components: + - pos: -67.5,-27.5 + parent: 6747 + type: Transform + - uid: 23255 + components: + - pos: -68.5,-27.5 + parent: 6747 + type: Transform + - uid: 23256 + components: + - pos: -69.5,-27.5 + parent: 6747 + type: Transform + - uid: 23257 + components: + - pos: -69.5,-28.5 + parent: 6747 + type: Transform + - uid: 23258 + components: + - pos: -65.5,-28.5 + parent: 6747 + type: Transform + - uid: 23259 + components: + - pos: -61.5,-28.5 + parent: 6747 + type: Transform + - uid: 23260 + components: + - pos: -61.5,-26.5 + parent: 6747 + type: Transform + - uid: 23261 + components: + - pos: -52.5,-17.5 + parent: 6747 + type: Transform + - uid: 23262 + components: + - pos: -51.5,-17.5 + parent: 6747 + type: Transform + - uid: 23263 + components: + - pos: -50.5,-17.5 + parent: 6747 + type: Transform + - uid: 23264 + components: + - pos: -49.5,-17.5 + parent: 6747 + type: Transform + - uid: 23266 + components: + - pos: 31.5,41.5 + parent: 6747 + type: Transform + - uid: 23267 + components: + - pos: 31.5,42.5 + parent: 6747 + type: Transform + - uid: 23268 + components: + - pos: 31.5,43.5 + parent: 6747 + type: Transform + - uid: 23269 + components: + - pos: 31.5,44.5 + parent: 6747 + type: Transform + - uid: 23284 + components: + - pos: 34.5,45.5 + parent: 6747 + type: Transform + - uid: 23285 + components: + - pos: 35.5,45.5 + parent: 6747 + type: Transform + - uid: 23286 + components: + - pos: 36.5,45.5 + parent: 6747 + type: Transform + - uid: 23287 + components: + - pos: 37.5,45.5 + parent: 6747 + type: Transform + - uid: 23288 + components: + - pos: 38.5,45.5 + parent: 6747 + type: Transform + - uid: 23289 + components: + - pos: 39.5,45.5 + parent: 6747 + type: Transform + - uid: 23290 + components: + - pos: 40.5,45.5 + parent: 6747 + type: Transform + - uid: 23291 + components: + - pos: 41.5,45.5 + parent: 6747 + type: Transform + - uid: 23303 + components: + - pos: 34.5,71.5 + parent: 6747 + type: Transform + - uid: 23305 + components: + - pos: 47.5,71.5 + parent: 6747 + type: Transform + - uid: 23306 + components: + - pos: 47.5,67.5 + parent: 6747 + type: Transform + - uid: 23307 + components: + - pos: 47.5,66.5 + parent: 6747 + type: Transform + - uid: 23308 + components: + - pos: 47.5,65.5 + parent: 6747 + type: Transform + - uid: 23309 + components: + - pos: 47.5,64.5 + parent: 6747 + type: Transform + - uid: 23310 + components: + - pos: 47.5,63.5 + parent: 6747 + type: Transform + - uid: 23311 + components: + - pos: 47.5,62.5 + parent: 6747 + type: Transform + - uid: 23312 + components: + - pos: 12.5,-82.5 + parent: 6747 + type: Transform + - uid: 23313 + components: + - pos: 11.5,-82.5 + parent: 6747 + type: Transform + - uid: 23314 + components: + - pos: 11.5,-83.5 + parent: 6747 + type: Transform + - uid: 23315 + components: + - pos: 11.5,-84.5 + parent: 6747 + type: Transform + - uid: 23316 + components: + - pos: 11.5,-85.5 + parent: 6747 + type: Transform + - uid: 23317 + components: + - pos: 11.5,-86.5 + parent: 6747 + type: Transform + - uid: 23318 + components: + - pos: 11.5,-87.5 + parent: 6747 + type: Transform + - uid: 23319 + components: + - pos: 11.5,-88.5 + parent: 6747 + type: Transform + - uid: 23320 + components: + - pos: 11.5,-89.5 + parent: 6747 + type: Transform + - uid: 23321 + components: + - pos: 11.5,-90.5 + parent: 6747 + type: Transform + - uid: 23322 + components: + - pos: 11.5,-91.5 + parent: 6747 + type: Transform + - uid: 23323 + components: + - pos: 11.5,-92.5 + parent: 6747 + type: Transform + - uid: 23324 + components: + - pos: 11.5,-93.5 parent: 6747 type: Transform - uid: 23325 @@ -47582,11 +51808,56 @@ entities: - pos: 10.5,-88.5 parent: 6747 type: Transform + - uid: 23366 + components: + - pos: 47.5,61.5 + parent: 6747 + type: Transform + - uid: 23469 + components: + - pos: 47.5,60.5 + parent: 6747 + type: Transform + - uid: 23470 + components: + - pos: 47.5,59.5 + parent: 6747 + type: Transform - uid: 23471 components: - pos: 35.5,0.5 parent: 6747 type: Transform + - uid: 23492 + components: + - pos: 47.5,58.5 + parent: 6747 + type: Transform + - uid: 23493 + components: + - pos: 47.5,57.5 + parent: 6747 + type: Transform + - uid: 23494 + components: + - pos: 47.5,56.5 + parent: 6747 + type: Transform + - uid: 23495 + components: + - pos: 47.5,55.5 + parent: 6747 + type: Transform + - uid: 23496 + components: + - pos: 47.5,54.5 + parent: 6747 + type: Transform + - uid: 23497 + components: + - pos: 47.5,53.5 + parent: 6747 + type: Transform - uid: 23524 components: - pos: 36.5,0.5 @@ -47597,259 +51868,294 @@ entities: - pos: 37.5,0.5 parent: 6747 type: Transform - - uid: 23775 + - uid: 23575 components: - - pos: 59.5,57.5 + - pos: 47.5,52.5 parent: 6747 type: Transform - - uid: 23782 + - uid: 23576 components: - - pos: 46.5,57.5 + - pos: 47.5,51.5 parent: 6747 type: Transform - - uid: 23783 + - uid: 23577 components: - - pos: 58.5,57.5 + - pos: 47.5,50.5 parent: 6747 type: Transform - - uid: 23784 + - uid: 23578 components: - - pos: 58.5,55.5 + - pos: 47.5,49.5 parent: 6747 type: Transform - - uid: 23785 + - uid: 23591 components: - - pos: 57.5,55.5 + - pos: 47.5,48.5 parent: 6747 type: Transform - - uid: 23786 + - uid: 23622 components: - - pos: 56.5,55.5 + - pos: 47.5,47.5 parent: 6747 type: Transform - - uid: 23787 + - uid: 23623 components: - - pos: 55.5,55.5 + - pos: 47.5,46.5 parent: 6747 type: Transform - - uid: 23788 + - uid: 23624 components: - - pos: 54.5,55.5 + - pos: 47.5,45.5 parent: 6747 type: Transform - - uid: 23789 + - uid: 23625 components: - - pos: 53.5,55.5 + - pos: 46.5,45.5 parent: 6747 type: Transform - - uid: 23790 + - uid: 23626 components: - - pos: 52.5,55.5 + - pos: 45.5,45.5 parent: 6747 type: Transform - - uid: 23791 + - uid: 23627 components: - - pos: 51.5,55.5 + - pos: 44.5,45.5 parent: 6747 type: Transform - - uid: 23792 + - uid: 23628 components: - - pos: 50.5,55.5 + - pos: 43.5,45.5 parent: 6747 type: Transform - - uid: 23793 + - uid: 23629 components: - - pos: 49.5,55.5 + - pos: 42.5,45.5 parent: 6747 type: Transform - - uid: 23794 + - uid: 23630 components: - - pos: 48.5,55.5 + - pos: 47.5,68.5 parent: 6747 type: Transform - - uid: 23795 + - uid: 23647 components: - - pos: 47.5,55.5 + - pos: 34.5,70.5 parent: 6747 type: Transform - - uid: 23796 + - uid: 23650 components: - - pos: 46.5,55.5 + - pos: 34.5,69.5 parent: 6747 type: Transform - - uid: 23797 + - uid: 23673 components: - - pos: 45.5,55.5 + - pos: 34.5,68.5 parent: 6747 type: Transform - - uid: 23798 + - uid: 23675 components: - - pos: 45.5,54.5 + - pos: 34.5,67.5 parent: 6747 type: Transform - - uid: 23799 + - uid: 23678 components: - - pos: 44.5,54.5 + - pos: 34.5,66.5 parent: 6747 type: Transform - - uid: 23800 + - uid: 23679 components: - - pos: 43.5,54.5 + - pos: 34.5,65.5 parent: 6747 type: Transform - - uid: 23801 + - uid: 23755 components: - - pos: 42.5,54.5 + - pos: 34.5,64.5 parent: 6747 type: Transform - - uid: 23802 + - uid: 23760 components: - - pos: 41.5,54.5 + - pos: 34.5,63.5 parent: 6747 type: Transform - - uid: 23803 + - uid: 23761 components: - - pos: 40.5,54.5 + - pos: 34.5,62.5 parent: 6747 type: Transform - - uid: 23804 + - uid: 23762 components: - - pos: 39.5,54.5 + - pos: 34.5,61.5 parent: 6747 type: Transform - - uid: 23805 + - uid: 23763 components: - - pos: 38.5,54.5 + - pos: 34.5,60.5 parent: 6747 type: Transform - - uid: 23806 + - uid: 23764 components: - - pos: 37.5,54.5 + - pos: 34.5,59.5 parent: 6747 type: Transform - - uid: 23807 + - uid: 23765 components: - - pos: 36.5,54.5 + - pos: 34.5,58.5 parent: 6747 type: Transform - - uid: 23808 + - uid: 23766 components: - - pos: 35.5,54.5 + - pos: 34.5,57.5 parent: 6747 type: Transform - - uid: 23809 + - uid: 23767 components: - - pos: 34.5,54.5 + - pos: 34.5,56.5 parent: 6747 type: Transform - - uid: 23810 + - uid: 23768 components: - - pos: 33.5,54.5 + - pos: 34.5,55.5 parent: 6747 type: Transform - - uid: 23811 + - uid: 23769 components: - - pos: 32.5,54.5 + - pos: 33.5,55.5 parent: 6747 type: Transform - - uid: 23812 + - uid: 23770 components: - - pos: 31.5,54.5 + - pos: 47.5,69.5 parent: 6747 type: Transform - - uid: 23813 + - uid: 23771 components: - - pos: 30.5,54.5 + - pos: 47.5,70.5 parent: 6747 type: Transform - - uid: 23814 + - uid: 23775 components: - - pos: 29.5,54.5 + - pos: 59.5,57.5 parent: 6747 type: Transform - - uid: 23815 + - uid: 23778 components: - - pos: 28.5,54.5 + - pos: 46.5,71.5 parent: 6747 type: Transform - - uid: 23816 + - uid: 23779 components: - - pos: 27.5,54.5 + - pos: 45.5,71.5 parent: 6747 type: Transform - - uid: 23817 + - uid: 23781 components: - - pos: 26.5,54.5 + - pos: 44.5,71.5 parent: 6747 type: Transform - - uid: 23818 + - uid: 23782 components: - - pos: 25.5,54.5 + - pos: 43.5,71.5 parent: 6747 type: Transform - - uid: 23819 + - uid: 23783 components: - - pos: 24.5,54.5 + - pos: 58.5,57.5 parent: 6747 type: Transform - - uid: 23820 + - uid: 23784 components: - - pos: 23.5,54.5 + - pos: 58.5,55.5 parent: 6747 type: Transform - - uid: 23821 + - uid: 23785 components: - - pos: 22.5,54.5 + - pos: 57.5,55.5 parent: 6747 type: Transform - - uid: 23822 + - uid: 23786 components: - - pos: 21.5,54.5 + - pos: 56.5,55.5 parent: 6747 type: Transform - - uid: 23823 + - uid: 23787 components: - - pos: 20.5,54.5 + - pos: 55.5,55.5 parent: 6747 type: Transform - - uid: 23824 + - uid: 23788 components: - - pos: 19.5,54.5 + - pos: 54.5,55.5 parent: 6747 type: Transform - - uid: 23825 + - uid: 23789 components: - - pos: 18.5,54.5 + - pos: 53.5,55.5 parent: 6747 type: Transform - - uid: 23826 + - uid: 23790 components: - - pos: 17.5,54.5 + - pos: 52.5,55.5 parent: 6747 type: Transform - - uid: 23827 + - uid: 23791 components: - - pos: 16.5,54.5 + - pos: 51.5,55.5 parent: 6747 type: Transform - - uid: 23828 + - uid: 23792 components: - - pos: 15.5,54.5 + - pos: 50.5,55.5 parent: 6747 type: Transform - - uid: 23829 + - uid: 23793 components: - - pos: 15.5,55.5 + - pos: 49.5,55.5 parent: 6747 type: Transform - - uid: 23830 + - uid: 23794 components: - - pos: 14.5,57.5 + - pos: 48.5,55.5 parent: 6747 type: Transform - - uid: 23831 + - uid: 23795 + components: + - pos: 42.5,71.5 + parent: 6747 + type: Transform + - uid: 23796 + components: + - pos: 41.5,71.5 + parent: 6747 + type: Transform + - uid: 23797 + components: + - pos: 40.5,71.5 + parent: 6747 + type: Transform + - uid: 23798 + components: + - pos: 39.5,71.5 + parent: 6747 + type: Transform + - uid: 23799 + components: + - pos: 38.5,71.5 + parent: 6747 + type: Transform + - uid: 23800 + components: + - pos: 37.5,71.5 + parent: 6747 + type: Transform + - uid: 23801 + components: + - pos: 36.5,71.5 + parent: 6747 + type: Transform + - uid: 23802 components: - - pos: 26.5,57.5 + - pos: 35.5,71.5 parent: 6747 type: Transform - uid: 23837 @@ -47862,9 +52168,9 @@ entities: - pos: 59.5,55.5 parent: 6747 type: Transform - - uid: 23889 + - uid: 23842 components: - - pos: 26.5,55.5 + - pos: 39.5,20.5 parent: 6747 type: Transform - uid: 23971 @@ -47887,6 +52193,16 @@ entities: - pos: 44.5,-43.5 parent: 6747 type: Transform + - uid: 24233 + components: + - pos: 62.5,18.5 + parent: 6747 + type: Transform + - uid: 24234 + components: + - pos: 63.5,18.5 + parent: 6747 + type: Transform - uid: 24365 components: - pos: -31.5,9.5 @@ -47972,593 +52288,758 @@ entities: - pos: -64.5,-11.5 parent: 6747 type: Transform -- proto: Chair - entities: - - uid: 108 + - uid: 25686 components: - - pos: -11.5,-3.5 + - pos: 103.5,17.5 parent: 6747 type: Transform - - uid: 110 + - uid: 25687 components: - - pos: -10.5,-3.5 + - pos: 102.5,17.5 parent: 6747 type: Transform - - uid: 504 + - uid: 25688 components: - - rot: 1.5707963267948966 rad - pos: -2.5,-5.5 + - pos: 101.5,17.5 parent: 6747 type: Transform - - uid: 629 + - uid: 25689 components: - - rot: 1.5707963267948966 rad - pos: -2.5,-4.5 + - pos: 100.5,17.5 parent: 6747 type: Transform - - uid: 1765 + - uid: 25690 components: - - rot: -1.5707963267948966 rad - pos: -11.5,-42.5 + - pos: 99.5,17.5 parent: 6747 type: Transform - - uid: 1772 + - uid: 25691 components: - - rot: -1.5707963267948966 rad - pos: -1.5,-39.5 + - pos: 98.5,17.5 parent: 6747 type: Transform - - uid: 1774 + - uid: 25692 components: - - rot: 1.5707963267948966 rad - pos: -3.5,-39.5 + - pos: 97.5,17.5 parent: 6747 type: Transform - - uid: 1825 + - uid: 25693 components: - - rot: -1.5707963267948966 rad - pos: -11.5,-43.5 + - pos: 96.5,17.5 parent: 6747 type: Transform - - uid: 1843 + - uid: 25694 components: - - rot: -1.5707963267948966 rad - pos: -11.5,-45.5 + - pos: 95.5,17.5 parent: 6747 type: Transform - - uid: 1844 + - uid: 25695 components: - - rot: -1.5707963267948966 rad - pos: -11.5,-46.5 + - pos: 94.5,17.5 parent: 6747 type: Transform - - uid: 1845 + - uid: 25696 components: - - rot: 3.141592653589793 rad - pos: -16.5,-47.5 + - pos: 93.5,17.5 parent: 6747 type: Transform - - uid: 1846 + - uid: 25697 components: - - rot: 3.141592653589793 rad - pos: -15.5,-47.5 + - pos: 92.5,17.5 parent: 6747 type: Transform - - uid: 1847 + - uid: 25698 components: - - rot: 3.141592653589793 rad - pos: -14.5,-47.5 + - pos: 91.5,17.5 parent: 6747 type: Transform - - uid: 1848 + - uid: 25699 components: - - rot: 3.141592653589793 rad - pos: -14.5,-48.5 + - pos: 90.5,17.5 parent: 6747 type: Transform - - uid: 1849 + - uid: 25700 components: - - rot: 3.141592653589793 rad - pos: -15.5,-48.5 + - pos: 89.5,17.5 parent: 6747 type: Transform - - uid: 1850 + - uid: 25701 components: - - rot: 3.141592653589793 rad - pos: -16.5,-48.5 + - pos: 88.5,17.5 parent: 6747 type: Transform - - uid: 1870 + - uid: 25702 components: - - rot: -1.5707963267948966 rad - pos: -7.5,-41.5 + - pos: 87.5,17.5 parent: 6747 type: Transform - - uid: 1871 + - uid: 25703 components: - - rot: -1.5707963267948966 rad - pos: -7.5,-42.5 + - pos: 86.5,17.5 parent: 6747 type: Transform - - uid: 1872 + - uid: 25704 components: - - rot: -1.5707963267948966 rad - pos: -7.5,-43.5 + - pos: 85.5,17.5 parent: 6747 type: Transform - - uid: 1873 + - uid: 25705 components: - - rot: -1.5707963267948966 rad - pos: -7.5,-45.5 + - pos: 84.5,17.5 parent: 6747 type: Transform - - uid: 1874 + - uid: 25706 components: - - rot: -1.5707963267948966 rad - pos: -7.5,-46.5 + - pos: 83.5,17.5 parent: 6747 type: Transform - - uid: 1875 + - uid: 25707 components: - - rot: -1.5707963267948966 rad - pos: -7.5,-47.5 + - pos: 82.5,17.5 parent: 6747 type: Transform - - uid: 1876 + - uid: 25708 components: - - rot: -1.5707963267948966 rad - pos: -6.5,-47.5 + - pos: 81.5,17.5 parent: 6747 type: Transform - - uid: 1877 + - uid: 25709 components: - - rot: -1.5707963267948966 rad - pos: -6.5,-46.5 + - pos: 80.5,17.5 parent: 6747 type: Transform - - uid: 1878 + - uid: 25710 components: - - rot: -1.5707963267948966 rad - pos: -6.5,-45.5 + - pos: 79.5,17.5 parent: 6747 type: Transform - - uid: 1879 + - uid: 25711 components: - - rot: -1.5707963267948966 rad - pos: -5.5,-47.5 + - pos: 78.5,17.5 parent: 6747 type: Transform - - uid: 1880 + - uid: 25712 components: - - rot: -1.5707963267948966 rad - pos: -5.5,-46.5 + - pos: 77.5,17.5 parent: 6747 type: Transform - - uid: 1881 + - uid: 25713 components: - - rot: -1.5707963267948966 rad - pos: -5.5,-45.5 + - pos: 76.5,17.5 parent: 6747 type: Transform - - uid: 1882 + - uid: 25714 components: - - rot: -1.5707963267948966 rad - pos: -6.5,-41.5 + - pos: 87.5,18.5 parent: 6747 type: Transform - - uid: 1883 + - uid: 25715 components: - - rot: -1.5707963267948966 rad - pos: -6.5,-42.5 + - pos: 91.5,16.5 parent: 6747 type: Transform - - uid: 1884 + - uid: 25716 components: - - rot: -1.5707963267948966 rad - pos: -6.5,-43.5 + - pos: 87.5,19.5 parent: 6747 type: Transform - - uid: 1885 + - uid: 25749 components: - - rot: -1.5707963267948966 rad - pos: -5.5,-41.5 + - pos: 93.5,-25.5 parent: 6747 type: Transform - - uid: 1886 + - uid: 25750 components: - - rot: -1.5707963267948966 rad - pos: -5.5,-42.5 + - pos: 93.5,-24.5 parent: 6747 type: Transform - - uid: 1887 + - uid: 25751 components: - - rot: -1.5707963267948966 rad - pos: -5.5,-43.5 + - pos: 93.5,-23.5 parent: 6747 type: Transform - - uid: 2165 + - uid: 25752 components: - - rot: 3.141592653589793 rad - pos: 26.5,-30.5 + - pos: 93.5,-22.5 parent: 6747 type: Transform - - uid: 2166 + - uid: 25753 components: - - rot: 3.141592653589793 rad - pos: 25.5,-30.5 + - pos: 93.5,-21.5 parent: 6747 type: Transform - - uid: 2167 + - uid: 25754 components: - - rot: 3.141592653589793 rad - pos: 24.5,-30.5 + - pos: 93.5,-20.5 parent: 6747 type: Transform - - uid: 2168 + - uid: 25755 components: - - pos: 24.5,-28.5 + - pos: 93.5,-19.5 parent: 6747 type: Transform - - uid: 2169 + - uid: 25756 components: - - pos: 25.5,-28.5 + - pos: 93.5,-18.5 parent: 6747 type: Transform - - uid: 2170 + - uid: 25757 components: - - pos: 26.5,-28.5 + - pos: 93.5,-17.5 parent: 6747 type: Transform - - uid: 2171 + - uid: 25758 components: - - rot: 3.141592653589793 rad - pos: 24.5,-27.5 + - pos: 93.5,-16.5 parent: 6747 type: Transform - - uid: 2172 + - uid: 25759 components: - - rot: 3.141592653589793 rad - pos: 25.5,-27.5 + - pos: 93.5,-15.5 parent: 6747 type: Transform - - uid: 2173 + - uid: 25760 components: - - rot: 3.141592653589793 rad - pos: 26.5,-27.5 + - pos: 93.5,-14.5 parent: 6747 type: Transform - - uid: 2485 + - uid: 25761 components: - - rot: -1.5707963267948966 rad - pos: 5.5,-36.5 + - pos: 93.5,-13.5 parent: 6747 type: Transform - - uid: 2486 + - uid: 25762 components: - - rot: 3.141592653589793 rad - pos: 4.5,-37.5 + - pos: 93.5,-12.5 parent: 6747 type: Transform - - uid: 2487 + - uid: 25763 components: - - rot: 1.5707963267948966 rad - pos: 6.5,-36.5 + - pos: 93.5,-11.5 parent: 6747 type: Transform - - uid: 2488 + - uid: 25764 components: - - rot: -1.5707963267948966 rad - pos: 8.5,-36.5 + - pos: 93.5,-10.5 parent: 6747 type: Transform - - uid: 2656 + - uid: 25765 components: - - rot: 3.141592653589793 rad - pos: 2.5,-39.5 + - pos: 93.5,-9.5 parent: 6747 type: Transform - - uid: 2658 + - uid: 25766 components: - - pos: 2.5,-37.5 + - pos: 93.5,-8.5 parent: 6747 type: Transform - - uid: 2756 + - uid: 25767 components: - - rot: 3.141592653589793 rad - pos: -38.5,2.5 + - pos: 93.5,-7.5 parent: 6747 type: Transform - - uid: 5867 + - uid: 25768 components: - - rot: 1.5707963267948966 rad - pos: 69.5,-21.5 + - pos: 93.5,-6.5 parent: 6747 type: Transform - - uid: 6333 + - uid: 25769 components: - - rot: 1.5707963267948966 rad - pos: 69.5,-23.5 + - pos: 93.5,-5.5 parent: 6747 type: Transform - - uid: 6352 + - uid: 25770 components: - - pos: 60.5,-41.5 + - pos: 93.5,-4.5 parent: 6747 type: Transform - - uid: 6353 + - uid: 25771 components: - - rot: 3.141592653589793 rad - pos: 63.5,-40.5 + - pos: 93.5,-3.5 parent: 6747 type: Transform - - uid: 6378 + - uid: 25772 components: - - pos: 61.5,-41.5 + - pos: 93.5,-2.5 parent: 6747 type: Transform - - uid: 6379 + - uid: 25773 components: - - pos: 63.5,-41.5 + - pos: 93.5,-1.5 parent: 6747 type: Transform - - uid: 6380 + - uid: 25774 components: - - rot: 3.141592653589793 rad - pos: 61.5,-40.5 + - pos: 92.5,-25.5 parent: 6747 type: Transform - - uid: 6381 + - uid: 25775 components: - - rot: 3.141592653589793 rad - pos: 62.5,-40.5 + - pos: 92.5,-24.5 parent: 6747 type: Transform - - uid: 6382 + - uid: 25776 components: - - rot: 3.141592653589793 rad - pos: 60.5,-40.5 + - pos: 92.5,-23.5 parent: 6747 type: Transform - - uid: 6383 + - uid: 25777 components: - - pos: 62.5,-41.5 + - pos: 92.5,-22.5 parent: 6747 type: Transform - - uid: 6386 + - uid: 25778 components: - - rot: 3.141592653589793 rad - pos: 63.5,-43.5 + - pos: 92.5,-21.5 parent: 6747 type: Transform - - uid: 6387 + - uid: 25779 components: - - rot: 3.141592653589793 rad - pos: 60.5,-43.5 + - pos: 92.5,-20.5 parent: 6747 type: Transform - - uid: 6388 + - uid: 25780 components: - - rot: 3.141592653589793 rad - pos: 61.5,-43.5 + - pos: 92.5,-19.5 parent: 6747 type: Transform - - uid: 6389 + - uid: 25781 components: - - rot: 3.141592653589793 rad - pos: 62.5,-43.5 + - pos: 92.5,-18.5 parent: 6747 type: Transform - - uid: 6390 + - uid: 25782 components: - - pos: 63.5,-44.5 + - pos: 92.5,-17.5 parent: 6747 type: Transform - - uid: 6391 + - uid: 25783 components: - - pos: 62.5,-44.5 + - pos: 92.5,-16.5 parent: 6747 type: Transform - - uid: 6392 + - uid: 25784 components: - - rot: 3.141592653589793 rad - pos: 69.5,-40.5 + - pos: 92.5,-15.5 parent: 6747 type: Transform - - uid: 6393 + - uid: 25785 components: - - pos: 61.5,-44.5 + - pos: 92.5,-14.5 parent: 6747 type: Transform - - uid: 6394 + - uid: 25786 components: - - pos: 60.5,-44.5 + - pos: 92.5,-13.5 parent: 6747 type: Transform - - uid: 6397 + - uid: 25787 components: - - rot: 3.141592653589793 rad - pos: 70.5,-40.5 + - pos: 92.5,-12.5 parent: 6747 type: Transform - - uid: 6398 + - uid: 25788 components: - - rot: 3.141592653589793 rad - pos: 71.5,-40.5 + - pos: 92.5,-11.5 parent: 6747 type: Transform - - uid: 6399 + - uid: 25789 components: - - rot: 3.141592653589793 rad - pos: 72.5,-40.5 + - pos: 92.5,-10.5 parent: 6747 type: Transform - - uid: 6400 + - uid: 25790 components: - - pos: 72.5,-41.5 + - pos: 92.5,-9.5 parent: 6747 type: Transform - - uid: 6401 + - uid: 25791 components: - - pos: 71.5,-41.5 + - pos: 92.5,-8.5 parent: 6747 type: Transform - - uid: 6402 + - uid: 25792 components: - - pos: 70.5,-41.5 + - pos: 92.5,-7.5 parent: 6747 type: Transform - - uid: 6403 + - uid: 25793 components: - - pos: 69.5,-41.5 + - pos: 92.5,-6.5 parent: 6747 type: Transform - - uid: 6404 + - uid: 25794 components: - - pos: 69.5,-44.5 + - pos: 92.5,-5.5 parent: 6747 type: Transform - - uid: 6405 + - uid: 25795 components: - - pos: 70.5,-44.5 + - pos: 92.5,-4.5 parent: 6747 type: Transform - - uid: 6406 + - uid: 25796 components: - - pos: 71.5,-44.5 + - pos: 92.5,-3.5 parent: 6747 type: Transform - - uid: 6407 + - uid: 25797 components: - - pos: 72.5,-44.5 + - pos: 92.5,-2.5 parent: 6747 type: Transform - - uid: 6408 + - uid: 25798 + components: + - pos: 92.5,-1.5 + parent: 6747 + type: Transform + - uid: 26075 + components: + - pos: 58.5,8.5 + parent: 6747 + type: Transform + - uid: 26076 + components: + - pos: 59.5,8.5 + parent: 6747 + type: Transform + - uid: 26077 + components: + - pos: 60.5,8.5 + parent: 6747 + type: Transform + - uid: 26078 + components: + - pos: 61.5,8.5 + parent: 6747 + type: Transform + - uid: 26079 + components: + - pos: 62.5,8.5 + parent: 6747 + type: Transform + - uid: 26080 + components: + - pos: 63.5,8.5 + parent: 6747 + type: Transform + - uid: 26332 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-19.5 + parent: 6747 + type: Transform + - uid: 26650 + components: + - pos: 68.5,17.5 + parent: 6747 + type: Transform + - uid: 26651 + components: + - pos: 69.5,17.5 + parent: 6747 + type: Transform + - uid: 26652 + components: + - pos: 70.5,17.5 + parent: 6747 + type: Transform + - uid: 26653 + components: + - pos: 71.5,17.5 + parent: 6747 + type: Transform + - uid: 26654 + components: + - pos: 72.5,17.5 + parent: 6747 + type: Transform + - uid: 26655 + components: + - pos: 68.5,12.5 + parent: 6747 + type: Transform + - uid: 26656 + components: + - pos: 69.5,12.5 + parent: 6747 + type: Transform + - uid: 26657 + components: + - pos: 70.5,12.5 + parent: 6747 + type: Transform + - uid: 26658 + components: + - pos: 71.5,12.5 + parent: 6747 + type: Transform + - uid: 26659 + components: + - pos: 72.5,12.5 + parent: 6747 + type: Transform + - uid: 26660 + components: + - pos: 68.5,13.5 + parent: 6747 + type: Transform + - uid: 26887 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,-18.5 + parent: 6747 + type: Transform +- proto: Cautery + entities: + - uid: 23896 + components: + - rot: -1.5707963267948966 rad + pos: 3.28434,-70.43751 + parent: 6747 + type: Transform +- proto: Chair + entities: + - uid: 108 + components: + - pos: -11.5,-3.5 + parent: 6747 + type: Transform + - uid: 110 + components: + - pos: -10.5,-3.5 + parent: 6747 + type: Transform + - uid: 1765 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-42.5 + parent: 6747 + type: Transform + - uid: 1772 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-39.5 + parent: 6747 + type: Transform + - uid: 1774 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-39.5 + parent: 6747 + type: Transform + - uid: 1825 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-43.5 + parent: 6747 + type: Transform + - uid: 1843 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-45.5 + parent: 6747 + type: Transform + - uid: 1844 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-46.5 + parent: 6747 + type: Transform + - uid: 1845 components: - rot: 3.141592653589793 rad - pos: 72.5,-43.5 + pos: -16.5,-47.5 parent: 6747 type: Transform - - uid: 6409 + - uid: 1846 components: - rot: 3.141592653589793 rad - pos: 71.5,-43.5 + pos: -15.5,-47.5 parent: 6747 type: Transform - - uid: 6410 + - uid: 1847 components: - rot: 3.141592653589793 rad - pos: 70.5,-43.5 + pos: -14.5,-47.5 parent: 6747 type: Transform - - uid: 6411 + - uid: 1848 components: - rot: 3.141592653589793 rad - pos: 69.5,-43.5 + pos: -14.5,-48.5 parent: 6747 type: Transform - - uid: 6422 + - uid: 1849 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-48.5 + parent: 6747 + type: Transform + - uid: 1850 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-48.5 + parent: 6747 + type: Transform + - uid: 1870 components: - rot: -1.5707963267948966 rad - pos: 68.5,-22.5 + pos: -7.5,-41.5 parent: 6747 type: Transform - - uid: 6423 + - uid: 1871 components: - rot: -1.5707963267948966 rad - pos: 71.5,-23.5 + pos: -7.5,-42.5 parent: 6747 type: Transform - - uid: 6428 + - uid: 1872 components: - rot: -1.5707963267948966 rad - pos: 68.5,-21.5 + pos: -7.5,-43.5 parent: 6747 type: Transform - - uid: 6429 + - uid: 1873 components: - - rot: 1.5707963267948966 rad - pos: 69.5,-22.5 + - rot: -1.5707963267948966 rad + pos: -7.5,-45.5 parent: 6747 type: Transform - - uid: 6430 + - uid: 1874 components: - - rot: 1.5707963267948966 rad - pos: 69.5,-24.5 + - rot: -1.5707963267948966 rad + pos: -7.5,-46.5 parent: 6747 type: Transform - - uid: 6441 + - uid: 1875 components: - rot: -1.5707963267948966 rad - pos: 68.5,-23.5 + pos: -7.5,-47.5 parent: 6747 type: Transform - - uid: 6442 + - uid: 1876 components: - rot: -1.5707963267948966 rad - pos: 68.5,-24.5 + pos: -6.5,-47.5 parent: 6747 type: Transform - - uid: 6452 + - uid: 1877 components: - rot: -1.5707963267948966 rad - pos: 71.5,-22.5 + pos: -6.5,-46.5 parent: 6747 type: Transform - - uid: 6454 + - uid: 1878 components: - - rot: 1.5707963267948966 rad - pos: 72.5,-21.5 + - rot: -1.5707963267948966 rad + pos: -6.5,-45.5 parent: 6747 type: Transform - - uid: 6455 + - uid: 1879 components: - - rot: 1.5707963267948966 rad - pos: 72.5,-23.5 + - rot: -1.5707963267948966 rad + pos: -5.5,-47.5 parent: 6747 type: Transform - - uid: 6456 + - uid: 1880 components: - rot: -1.5707963267948966 rad - pos: 71.5,-24.5 + pos: -5.5,-46.5 parent: 6747 type: Transform - - uid: 6467 + - uid: 1881 components: - rot: -1.5707963267948966 rad - pos: 71.5,-21.5 + pos: -5.5,-45.5 parent: 6747 type: Transform - - uid: 6468 + - uid: 1882 components: - - rot: 1.5707963267948966 rad - pos: 72.5,-22.5 + - rot: -1.5707963267948966 rad + pos: -6.5,-41.5 parent: 6747 type: Transform - - uid: 6469 + - uid: 1883 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-42.5 + parent: 6747 + type: Transform + - uid: 1884 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-43.5 + parent: 6747 + type: Transform + - uid: 1885 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-41.5 + parent: 6747 + type: Transform + - uid: 1886 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-42.5 + parent: 6747 + type: Transform + - uid: 1887 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-43.5 + parent: 6747 + type: Transform + - uid: 2485 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-36.5 + parent: 6747 + type: Transform + - uid: 2486 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-37.5 + parent: 6747 + type: Transform + - uid: 2487 components: - rot: 1.5707963267948966 rad - pos: 72.5,-24.5 + pos: 6.5,-36.5 parent: 6747 type: Transform - - uid: 8714 + - uid: 2488 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-36.5 + parent: 6747 + type: Transform + - uid: 2656 components: - rot: 3.141592653589793 rad - pos: 25.5,-3.5 + pos: 2.5,-39.5 parent: 6747 type: Transform - - uid: 8715 + - uid: 2658 components: - - pos: 25.5,-1.5 + - pos: 2.5,-37.5 parent: 6747 type: Transform - - uid: 8813 + - uid: 2756 components: - - pos: 23.5,7.5 + - rot: 3.141592653589793 rad + pos: -38.5,2.5 parent: 6747 type: Transform - - uid: 8814 + - uid: 8714 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-3.5 + parent: 6747 + type: Transform + - uid: 8715 components: - - pos: 24.5,7.5 + - pos: 25.5,-1.5 parent: 6747 type: Transform - uid: 8818 @@ -48668,6 +53149,18 @@ entities: pos: 22.5,1.5 parent: 6747 type: Transform + - uid: 22202 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,13.5 + parent: 6747 + type: Transform + - uid: 22203 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,12.5 + parent: 6747 + type: Transform - uid: 23438 components: - rot: -1.5707963267948966 rad @@ -48768,6 +53261,12 @@ entities: pos: 2.5,-24.5 parent: 6747 type: Transform + - uid: 860 + components: + - rot: -1.5707963267948966 rad + pos: 54.3152,24.882553 + parent: 6747 + type: Transform - uid: 1889 components: - rot: 3.141592653589793 rad @@ -48825,39 +53324,26 @@ entities: pos: -6.5316653,-4.1555533 parent: 6747 type: Transform - - uid: 7487 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,24.5 - parent: 6747 - type: Transform - - uid: 7488 - components: - - rot: 1.5707963267948966 rad - pos: 32.5,25.5 - parent: 6747 - type: Transform - - uid: 7489 + - uid: 6353 components: - rot: -1.5707963267948966 rad - pos: 35.5,24.5 + pos: 14.278722,27.728453 parent: 6747 type: Transform - - uid: 7490 + - uid: 6378 components: - - rot: -1.5707963267948966 rad - pos: 35.5,25.5 + - rot: 1.5707963267948966 rad + pos: 12.674554,26.936235 parent: 6747 type: Transform - - uid: 8209 + - uid: 6689 components: - - pos: 48.5,28.5 + - pos: 13.507888,28.489399 parent: 6747 type: Transform - - uid: 8210 + - uid: 7643 components: - - rot: 3.141592653589793 rad - pos: 48.5,26.5 + - pos: 52.856865,27.467682 parent: 6747 type: Transform - uid: 8637 @@ -49068,6 +53554,12 @@ entities: pos: 26.5,-76.5 parent: 6747 type: Transform + - uid: 11140 + components: + - rot: -1.5707963267948966 rad + pos: 54.231865,26.237661 + parent: 6747 + type: Transform - uid: 11218 components: - rot: -1.5707963267948966 rad @@ -49122,6 +53614,12 @@ entities: pos: -25.5,-20.5 parent: 6747 type: Transform + - uid: 11945 + components: + - rot: 1.5707963267948966 rad + pos: 51.700615,26.41318 + parent: 6747 + type: Transform - uid: 12084 components: - rot: -1.5707963267948966 rad @@ -49146,6 +53644,12 @@ entities: pos: -35.30771,-25.433441 parent: 6747 type: Transform + - uid: 12903 + components: + - rot: 1.5707963267948966 rad + pos: 51.763115,24.840858 + parent: 6747 + type: Transform - uid: 14672 components: - pos: 4.5,-31.5 @@ -49157,6 +53661,11 @@ entities: pos: 42.5,-59.5 parent: 6747 type: Transform + - uid: 17770 + components: + - pos: 51.086426,9.452867 + parent: 6747 + type: Transform - uid: 23562 components: - pos: -64.5,-7.5 @@ -49174,14 +53683,21 @@ entities: type: Transform - proto: ChairFoldingSpawnFolded entities: - - uid: 7787 + - uid: 6087 components: - - pos: 9.466928,27.91014 + - rot: 1.5707963267948966 rad + pos: 10.424554,28.708298 parent: 6747 type: Transform - - uid: 8648 + - uid: 6091 components: - - pos: 9.503598,27.49483 + - rot: 1.5707963267948966 rad + pos: 10.414138,29.010593 + parent: 6747 + type: Transform + - uid: 7642 + components: + - pos: 52.450615,23.954826 parent: 6747 type: Transform - uid: 12140 @@ -49209,16 +53725,6 @@ entities: - pos: 40.462757,-60.460217 parent: 6747 type: Transform - - uid: 23366 - components: - - pos: 9.466928,27.91014 - parent: 6747 - type: Transform - - uid: 23470 - components: - - pos: 9.503598,27.49483 - parent: 6747 - type: Transform - proto: ChairOfficeDark entities: - uid: 104 @@ -49239,18 +53745,6 @@ entities: pos: -10.4854355,-5.2156286 parent: 6747 type: Transform - - uid: 846 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,14.5 - parent: 6747 - type: Transform - - uid: 847 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,15.5 - parent: 6747 - type: Transform - uid: 1131 components: - rot: -1.5707963267948966 rad @@ -49292,28 +53786,28 @@ entities: pos: -6.5,-59.5 parent: 6747 type: Transform - - uid: 6727 + - uid: 6018 components: - - rot: -1.5707963267948966 rad - pos: 43.5,11.5 + - rot: 1.5707963267948966 rad + pos: -20.496162,6.910717 parent: 6747 type: Transform - - uid: 7464 + - uid: 6337 components: - rot: 1.5707963267948966 rad - pos: 37.5,-49.5 + pos: 15.590116,18.911701 parent: 6747 type: Transform - - uid: 8244 + - uid: 6727 components: - rot: -1.5707963267948966 rad - pos: 16.5,14.5 + pos: 43.5,11.5 parent: 6747 type: Transform - - uid: 9056 + - uid: 7464 components: - - rot: -1.5707963267948966 rad - pos: 58.49546,17.79145 + - rot: 1.5707963267948966 rad + pos: 37.5,-49.5 parent: 6747 type: Transform - uid: 10151 @@ -49332,6 +53826,12 @@ entities: - pos: 54.5,0.5 parent: 6747 type: Transform + - uid: 17613 + components: + - rot: 3.141592653589793 rad + pos: 51.431114,7.7900763 + parent: 6747 + type: Transform - uid: 22749 components: - rot: 3.141592653589793 rad @@ -49351,10 +53851,10 @@ entities: pos: 11.279746,-26.094278 parent: 6747 type: Transform - - uid: 842 + - uid: 806 components: - - rot: 1.5707963267948966 rad - pos: 27.5,14.5 + - rot: 3.141592653589793 rad + pos: 31.612217,13.718894 parent: 6747 type: Transform - uid: 1447 @@ -49385,16 +53885,16 @@ entities: - pos: 25.5,-33.5 parent: 6747 type: Transform - - uid: 2574 + - uid: 3203 components: - rot: -1.5707963267948966 rad - pos: 57.754566,11.703479 + pos: -20.66547,-11.328393 parent: 6747 type: Transform - - uid: 3203 + - uid: 3297 components: - - rot: -1.5707963267948966 rad - pos: -20.66547,-11.328393 + - rot: 3.141592653589793 rad + pos: 24.5,34.5 parent: 6747 type: Transform - uid: 3313 @@ -49448,15 +53948,9 @@ entities: pos: 16.5,-68.5 parent: 6747 type: Transform - - uid: 6631 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,15.5 - parent: 6747 - type: Transform - - uid: 6632 + - uid: 6651 components: - - pos: 38.5,15.5 + - pos: 27.5,15.5 parent: 6747 type: Transform - uid: 6923 @@ -49509,6 +54003,12 @@ entities: pos: 48.5,-52.5 parent: 6747 type: Transform + - uid: 17604 + components: + - rot: -1.5707963267948966 rad + pos: 66.44531,18.02592 + parent: 6747 + type: Transform - uid: 18508 components: - pos: 46.5,-42.5 @@ -49638,6 +54138,12 @@ entities: type: Transform - proto: ChairWood entities: + - uid: 473 + components: + - rot: 1.5707963267948966 rad + pos: 10.583816,22.596329 + parent: 6747 + type: Transform - uid: 785 components: - rot: 1.5707963267948966 rad @@ -49650,6 +54156,11 @@ entities: pos: -9.5,-29.5 parent: 6747 type: Transform + - uid: 1122 + components: + - pos: 15.170955,20.426716 + parent: 6747 + type: Transform - uid: 1357 components: - rot: -1.5707963267948966 rad @@ -49820,51 +54331,6 @@ entities: pos: 16.5,-54.5 parent: 6747 type: Transform - - uid: 4256 - components: - - pos: 14.5,-52.5 - parent: 6747 - type: Transform - - uid: 4257 - components: - - pos: 13.5,-52.5 - parent: 6747 - type: Transform - - uid: 4258 - components: - - pos: 15.5,-52.5 - parent: 6747 - type: Transform - - uid: 4259 - components: - - pos: 15.5,-51.5 - parent: 6747 - type: Transform - - uid: 4260 - components: - - pos: 14.5,-51.5 - parent: 6747 - type: Transform - - uid: 4261 - components: - - pos: 13.5,-51.5 - parent: 6747 - type: Transform - - uid: 4262 - components: - - pos: 13.5,-50.5 - parent: 6747 - type: Transform - - uid: 4263 - components: - - pos: 14.5,-50.5 - parent: 6747 - type: Transform - - uid: 4264 - components: - - pos: 15.5,-50.5 - parent: 6747 - type: Transform - uid: 4310 components: - rot: 1.5707963267948966 rad @@ -49918,6 +54384,12 @@ entities: - pos: 16.5,-66.5 parent: 6747 type: Transform + - uid: 6778 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,15.5 + parent: 6747 + type: Transform - uid: 7180 components: - rot: -1.5707963267948966 rad @@ -50002,10 +54474,21 @@ entities: pos: 26.5,-38.5 parent: 6747 type: Transform - - uid: 8275 + - uid: 8377 components: - rot: -1.5707963267948966 rad - pos: 14.5,17.5 + pos: 17.348038,19.10288 + parent: 6747 + type: Transform + - uid: 8452 + components: + - pos: 15.678313,22.690145 + parent: 6747 + type: Transform + - uid: 8551 + components: + - rot: -1.5707963267948966 rad + pos: 17.303314,22.648449 parent: 6747 type: Transform - uid: 8752 @@ -50180,12 +54663,6 @@ entities: type: Transform - proto: CheapLighter entities: - - uid: 2161 - components: - - rot: -1.5707963267948966 rad - pos: 33.23369,25.554493 - parent: 6747 - type: Transform - uid: 6810 components: - rot: -1.5707963267948966 rad @@ -50389,6 +54866,12 @@ entities: - pos: -10.348142,-65.29694 parent: 6747 type: Transform + - uid: 15706 + components: + - rot: 3.141592653589793 rad + pos: -19.719887,5.5155725 + parent: 6747 + type: Transform - proto: CigPackBlue entities: - uid: 16186 @@ -50402,10 +54885,10 @@ entities: - type: InsideEntityStorage - proto: CigPackGreen entities: - - uid: 8266 + - uid: 7646 components: - rot: -1.5707963267948966 rad - pos: 33.41077,25.731699 + pos: 52.47506,26.50877 parent: 6747 type: Transform - proto: CigPackRed @@ -50436,6 +54919,14 @@ entities: - pos: -16.520905,-64.49839 parent: 6747 type: Transform +- proto: CloningConsoleComputerCircuitboard + entities: + - uid: 17742 + components: + - rot: -1.5707963267948966 rad + pos: 74.64603,8.559326 + parent: 6747 + type: Transform - proto: CloningPod entities: - uid: 2148 @@ -50443,6 +54934,14 @@ entities: - pos: 20.5,-34.5 parent: 6747 type: Transform +- proto: CloningPodMachineCircuitboard + entities: + - uid: 17741 + components: + - rot: 1.5707963267948966 rad + pos: 74.354355,8.632294 + parent: 6747 + type: Transform - proto: ClosetBase entities: - uid: 707 @@ -50623,6 +55122,11 @@ entities: - pos: -44.5,-9.5 parent: 6747 type: Transform + - uid: 22503 + components: + - pos: 56.5,39.5 + parent: 6747 + type: Transform - uid: 23565 components: - pos: -62.5,-5.5 @@ -50784,14 +55288,14 @@ entities: type: Transform - proto: ClosetL3VirologyFilled entities: - - uid: 3701 + - uid: 26942 components: - - pos: 13.5,-29.5 + - pos: 14.5,-29.5 parent: 6747 type: Transform - - uid: 3702 + - uid: 26943 components: - - pos: 14.5,-29.5 + - pos: 13.5,-29.5 parent: 6747 type: Transform - proto: ClosetMaintenanceFilledRandom @@ -50831,11 +55335,6 @@ entities: - pos: 55.5,21.5 parent: 6747 type: Transform - - uid: 11375 - components: - - pos: 55.5,20.5 - parent: 6747 - type: Transform - uid: 11381 components: - pos: 45.5,-37.5 @@ -50873,26 +55372,16 @@ entities: - pos: -6.5,-72.5 parent: 6747 type: Transform - - uid: 11823 - components: - - pos: 19.5,37.5 - parent: 6747 - type: Transform - - uid: 11824 - components: - - pos: 20.5,37.5 - parent: 6747 - type: Transform - proto: ClosetToolFilled entities: - - uid: 5227 + - uid: 7614 components: - pos: 51.5,18.5 parent: 6747 type: Transform - - uid: 8377 + - uid: 8416 components: - - pos: 21.5,29.5 + - pos: 21.5,24.5 parent: 6747 type: Transform - proto: ClosetWallEmergencyFilledRandom @@ -50917,6 +55406,11 @@ entities: - pos: 6.5,-71.5 parent: 6747 type: Transform + - uid: 5532 + components: + - pos: -11.5,7.5 + parent: 6747 + type: Transform - uid: 6537 components: - pos: 64.5,-44.5 @@ -50927,6 +55421,11 @@ entities: - pos: 68.5,-44.5 parent: 6747 type: Transform + - uid: 6622 + components: + - pos: 20.5,23.5 + parent: 6747 + type: Transform - uid: 6770 components: - pos: 35.5,2.5 @@ -50947,16 +55446,6 @@ entities: - pos: 52.5,36.5 parent: 6747 type: Transform - - uid: 8316 - components: - - pos: 26.5,19.5 - parent: 6747 - type: Transform - - uid: 11341 - components: - - pos: -19.5,6.5 - parent: 6747 - type: Transform - uid: 17396 components: - pos: 45.5,-48.5 @@ -50979,19 +55468,24 @@ entities: - pos: -20.5,-49.5 parent: 6747 type: Transform + - uid: 4497 + components: + - pos: -10.5,7.5 + parent: 6747 + type: Transform - uid: 4894 components: - pos: -8.5,-82.5 parent: 6747 type: Transform - - uid: 6904 + - uid: 6621 components: - - pos: 44.5,14.5 + - pos: 21.5,23.5 parent: 6747 type: Transform - - uid: 8315 + - uid: 6904 components: - - pos: 26.5,29.5 + - pos: 44.5,14.5 parent: 6747 type: Transform - uid: 8697 @@ -50999,11 +55493,6 @@ entities: - pos: 2.5,36.5 parent: 6747 type: Transform - - uid: 11342 - components: - - pos: -18.5,6.5 - parent: 6747 - type: Transform - proto: ClosetWallGrey entities: - uid: 14673 @@ -51116,9 +55605,11 @@ entities: - pos: 5.558774,-78.43972 parent: 6747 type: Transform - - uid: 8530 +- proto: ClothingHandsGlovesColorBlue + entities: + - uid: 26929 components: - - pos: 32.511757,18.286886 + - pos: 10.9505625,-17.516945 parent: 6747 type: Transform - proto: ClothingHandsGlovesColorYellow @@ -51213,13 +55704,6 @@ entities: - pos: 27.357456,2.6870053 parent: 6747 type: Transform -- proto: ClothingHeadHatAnimalHeadslime - entities: - - uid: 22422 - components: - - pos: 13.490375,38.57098 - parent: 6747 - type: Transform - proto: ClothingHeadHatBluesoft entities: - uid: 7329 @@ -51267,6 +55751,11 @@ entities: type: Transform - proto: ClothingHeadHatCone entities: + - uid: 2504 + components: + - pos: -8.578399,6.562401 + parent: 6747 + type: Transform - uid: 3426 components: - pos: 29.222435,-5.076309 @@ -51277,6 +55766,11 @@ entities: - pos: 26.722435,-5.1388526 parent: 6747 type: Transform + - uid: 5514 + components: + - pos: -7.238111,6.5874186 + parent: 6747 + type: Transform - uid: 5734 components: - pos: -22.983795,-61.383205 @@ -51292,16 +55786,6 @@ entities: - pos: -33.087963,-61.205997 parent: 6747 type: Transform - - uid: 6018 - components: - - pos: -15.23875,5.8792706 - parent: 6747 - type: Transform - - uid: 6589 - components: - - pos: -17.009583,5.2538347 - parent: 6747 - type: Transform - uid: 7560 components: - pos: -37.238667,12.509706 @@ -51367,6 +55851,23 @@ entities: - pos: 7.6773615,-73.33882 parent: 6747 type: Transform +- proto: ClothingHeadHatHardhatYellow + entities: + - uid: 2173 + components: + - pos: 47.610016,18.818916 + parent: 6747 + type: Transform + - uid: 6675 + components: + - pos: 47.599598,18.975275 + parent: 6747 + type: Transform + - uid: 8241 + components: + - pos: 47.599598,18.631287 + parent: 6747 + type: Transform - proto: ClothingHeadHatPlaguedoctor entities: - uid: 8809 @@ -51609,13 +56110,6 @@ entities: pos: 32.49557,-72.42215 parent: 6747 type: Transform -- proto: ClothingMaskGasAtmos - entities: - - uid: 7520 - components: - - pos: 31.542835,18.590687 - parent: 6747 - type: Transform - proto: ClothingMaskGasExplorer entities: - uid: 9576 @@ -51909,18 +56403,11 @@ entities: - pos: -43.54488,-1.2388966 parent: 6747 type: Transform -- proto: ClothingShoesFlippers - entities: - - uid: 16718 - components: - - pos: -25.429562,8.777159 - parent: 6747 - type: Transform - proto: ClothingShoesGaloshes entities: - - uid: 16717 + - uid: 19120 components: - - pos: 23.493439,7.454315 + - pos: 23.601154,8.461665 parent: 6747 type: Transform - uid: 23894 @@ -52039,13 +56526,6 @@ entities: - pos: 34.480408,-90.75346 parent: 6747 type: Transform -- proto: ClothingUnderSocksCoder - entities: - - uid: 8339 - components: - - pos: 16.154087,31.14056 - parent: 6747 - type: Transform - proto: ClothingUniformColorRainbow entities: - uid: 17318 @@ -52143,18 +56623,11 @@ entities: - pos: -7.4721985,-70.61425 parent: 6747 type: Transform -- proto: CombatKnife +- proto: Cobweb1 entities: - - uid: 8668 - components: - - rot: -1.5707963267948966 rad - pos: 10.512833,24.559597 - parent: 6747 - type: Transform - - uid: 8669 + - uid: 11972 components: - - rot: 3.141592653589793 rad - pos: 10.564916,24.538748 + - pos: 32.5,28.5 parent: 6747 type: Transform - proto: ComfyChair @@ -52283,12 +56756,6 @@ entities: pos: 16.5,-1.5 parent: 6747 type: Transform - - uid: 4076 - components: - - rot: 3.141592653589793 rad - pos: -32.5,-51.5 - parent: 6747 - type: Transform - uid: 4091 components: - rot: -1.5707963267948966 rad @@ -52336,16 +56803,6 @@ entities: pos: 9.5,-60.5 parent: 6747 type: Transform - - uid: 4326 - components: - - pos: 1.5,-53.5 - parent: 6747 - type: Transform - - uid: 4333 - components: - - pos: 0.5,-53.5 - parent: 6747 - type: Transform - uid: 5122 components: - rot: 1.5707963267948966 rad @@ -52394,30 +56851,6 @@ entities: pos: 53.5,-52.5 parent: 6747 type: Transform - - uid: 6340 - components: - - rot: 1.5707963267948966 rad - pos: 65.5,-41.5 - parent: 6747 - type: Transform - - uid: 6510 - components: - - rot: 1.5707963267948966 rad - pos: 65.5,-42.5 - parent: 6747 - type: Transform - - uid: 6535 - components: - - rot: -1.5707963267948966 rad - pos: 67.5,-41.5 - parent: 6747 - type: Transform - - uid: 6536 - components: - - rot: -1.5707963267948966 rad - pos: 67.5,-42.5 - parent: 6747 - type: Transform - uid: 7215 components: - pos: 35.5,-6.5 @@ -52434,16 +56867,6 @@ entities: - pos: 47.5,-24.5 parent: 6747 type: Transform - - uid: 7581 - components: - - pos: 38.5,25.5 - parent: 6747 - type: Transform - - uid: 8735 - components: - - pos: 36.5,25.5 - parent: 6747 - type: Transform - uid: 8791 components: - rot: 3.141592653589793 rad @@ -52526,6 +56949,12 @@ entities: pos: 49.5,-49.5 parent: 6747 type: Transform + - uid: 17764 + components: + - rot: 1.5707963267948966 rad + pos: 56.5,7.5 + parent: 6747 + type: Transform - uid: 18506 components: - rot: 3.141592653589793 rad @@ -52586,6 +57015,14 @@ entities: pos: 50.5,-43.5 parent: 6747 type: Transform +- proto: CommsComputerCircuitboard + entities: + - uid: 17712 + components: + - rot: 1.5707963267948966 rad + pos: 70.354355,9.60829 + parent: 6747 + type: Transform - proto: ComputerAlert entities: - uid: 3950 @@ -52598,16 +57035,16 @@ entities: - pos: -24.5,-46.5 parent: 6747 type: Transform - - uid: 8241 + - uid: 8447 components: - - rot: 1.5707963267948966 rad - pos: 15.5,15.5 + - rot: 3.141592653589793 rad + pos: 43.5,9.5 parent: 6747 type: Transform - - uid: 17501 + - uid: 17614 components: - rot: 1.5707963267948966 rad - pos: 24.5,14.5 + pos: 50.5,6.5 parent: 6747 type: Transform - proto: ComputerAnalysisConsole @@ -52620,6 +57057,12 @@ entities: type: Transform - proto: ComputerBroken entities: + - uid: 3924 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,28.5 + parent: 6747 + type: Transform - uid: 3959 components: - rot: 1.5707963267948966 rad @@ -52631,31 +57074,38 @@ entities: - pos: 52.5,-7.5 parent: 6747 type: Transform - - uid: 11139 - components: - - pos: 54.5,28.5 - parent: 6747 - type: Transform - uid: 17429 components: - rot: -1.5707963267948966 rad pos: 37.5,-42.5 parent: 6747 type: Transform +- proto: ComputerCargoBounty + entities: + - uid: 8458 + components: + - pos: 25.5,35.5 + parent: 6747 + type: Transform - proto: ComputerCargoOrders entities: - - uid: 5974 + - uid: 1126 components: - - rot: 3.141592653589793 rad - pos: 43.5,10.5 + - rot: 1.5707963267948966 rad + pos: 14.5,18.5 + parent: 6747 + type: Transform + - uid: 6649 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,15.5 parent: 6747 type: Transform - proto: ComputerCargoShuttle entities: - - uid: 4029 + - uid: 821 components: - - rot: 1.5707963267948966 rad - pos: 56.5,11.5 + - pos: 24.5,35.5 parent: 6747 type: Transform - proto: ComputerCloningConsole @@ -52715,10 +57165,9 @@ entities: pos: -12.5,-5.5 parent: 6747 type: Transform - - uid: 13256 + - uid: 5556 components: - - rot: 1.5707963267948966 rad - pos: -0.5,-60.5 + - pos: -20.5,7.5 parent: 6747 type: Transform - proto: ComputerFrame @@ -52733,6 +57182,12 @@ entities: - pos: 71.5,-6.5 parent: 6747 type: Transform + - uid: 7652 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,28.5 + parent: 6747 + type: Transform - uid: 10143 components: - pos: -36.5,-82.5 @@ -52746,6 +57201,12 @@ entities: type: Transform - proto: ComputerId entities: + - uid: 1123 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,17.5 + parent: 6747 + type: Transform - uid: 3312 components: - rot: 3.141592653589793 rad @@ -52763,22 +57224,11 @@ entities: pos: -22.5,-49.5 parent: 6747 type: Transform - - uid: 5225 - components: - - rot: -1.5707963267948966 rad - pos: 59.5,17.5 - parent: 6747 - type: Transform - uid: 6033 components: - pos: 26.5,-32.5 parent: 6747 type: Transform - - uid: 6487 - components: - - pos: 17.5,15.5 - parent: 6747 - type: Transform - uid: 8867 components: - rot: 1.5707963267948966 rad @@ -52838,16 +57288,22 @@ entities: pos: -22.5,-48.5 parent: 6747 type: Transform - - uid: 8245 + - uid: 8477 + components: + - rot: 3.141592653589793 rad + pos: 45.5,9.5 + parent: 6747 + type: Transform + - uid: 8737 components: - rot: 1.5707963267948966 rad - pos: 15.5,14.5 + pos: 59.5,19.5 parent: 6747 type: Transform - - uid: 16996 + - uid: 17612 components: - rot: 1.5707963267948966 rad - pos: 24.5,15.5 + pos: 50.5,7.5 parent: 6747 type: Transform - proto: ComputerRadar @@ -52879,10 +57335,9 @@ entities: type: Transform - proto: ComputerShuttleCargo entities: - - uid: 2810 + - uid: 9420 components: - - rot: -1.5707963267948966 rad - pos: 59.5,11.5 + - pos: 23.5,35.5 parent: 6747 type: Transform - proto: ComputerShuttleSalvage @@ -52894,10 +57349,10 @@ entities: type: Transform - proto: ComputerSolarControl entities: - - uid: 871 + - uid: 8359 components: - - rot: -1.5707963267948966 rad - pos: 28.5,14.5 + - rot: 3.141592653589793 rad + pos: 44.5,9.5 parent: 6747 type: Transform - uid: 22748 @@ -52917,13 +57372,29 @@ entities: pos: -55.5,-25.5 parent: 6747 type: Transform + - uid: 25683 + components: + - pos: 76.5,18.5 + parent: 6747 + type: Transform - proto: ComputerStationRecords entities: + - uid: 5555 + components: + - pos: -19.5,7.5 + parent: 6747 + type: Transform - uid: 11168 components: - pos: -27.5,-50.5 parent: 6747 type: Transform + - uid: 19121 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-60.5 + parent: 6747 + type: Transform - proto: ComputerSurveillanceCameraMonitor entities: - uid: 1500 @@ -53030,11 +57501,6 @@ entities: - pos: 43.5,-5.5 parent: 6747 type: Transform - - uid: 8239 - components: - - pos: 18.5,17.5 - parent: 6747 - type: Transform - uid: 8790 components: - pos: -47.5,6.5 @@ -53045,14 +57511,14 @@ entities: - pos: 28.5,-78.5 parent: 6747 type: Transform - - uid: 21386 + - uid: 17765 components: - - pos: 16.5,7.5 + - pos: 57.5,7.5 parent: 6747 type: Transform - - uid: 22461 + - uid: 21386 components: - - pos: 57.5,15.5 + - pos: 16.5,7.5 parent: 6747 type: Transform - uid: 22462 @@ -53107,23 +57573,14 @@ entities: - links: - 18562 type: DeviceLinkSink - - uid: 1122 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,9.5 - parent: 6747 - type: Transform - - links: - - 7372 - type: DeviceLinkSink - - uid: 1123 + - uid: 1077 components: - - rot: -1.5707963267948966 rad - pos: 42.5,9.5 + - rot: 3.141592653589793 rad + pos: 18.5,35.5 parent: 6747 type: Transform - links: - - 7372 + - 8459 type: DeviceLinkSink - uid: 2277 components: @@ -53178,140 +57635,305 @@ entities: - links: - 8237 type: DeviceLinkSink - - uid: 6004 + - uid: 3189 + components: + - pos: 24.5,28.5 + parent: 6747 + type: Transform + - links: + - 24 + type: DeviceLinkSink + - uid: 3263 + components: + - pos: 24.5,25.5 + parent: 6747 + type: Transform + - links: + - 24 + type: DeviceLinkSink + - uid: 6176 + components: + - rot: 3.141592653589793 rad + pos: 18.5,36.5 + parent: 6747 + type: Transform + - links: + - 8459 + type: DeviceLinkSink + - uid: 6408 + components: + - pos: 22.5,35.5 + parent: 6747 + type: Transform + - links: + - 8459 + type: DeviceLinkSink + - uid: 6422 + components: + - pos: 24.5,30.5 + parent: 6747 + type: Transform + - links: + - 24 + type: DeviceLinkSink + - uid: 6615 components: - rot: -1.5707963267948966 rad - pos: 55.5,13.5 + pos: 3.5,45.5 parent: 6747 type: Transform - links: - - 8666 + - 6910 type: DeviceLinkSink - - uid: 6005 + - uid: 6616 components: - rot: -1.5707963267948966 rad - pos: 58.5,13.5 + pos: 5.5,45.5 parent: 6747 type: Transform - links: - - 8666 + - 6910 type: DeviceLinkSink - - uid: 6022 + - uid: 6617 + components: + - rot: 3.141592653589793 rad + pos: 25.5,30.5 + parent: 6747 + type: Transform + - links: + - 24 + type: DeviceLinkSink + - uid: 6618 + components: + - rot: 3.141592653589793 rad + pos: 25.5,27.5 + parent: 6747 + type: Transform + - links: + - 24 + type: DeviceLinkSink + - uid: 6699 components: - rot: -1.5707963267948966 rad - pos: 60.5,13.5 + pos: 3.5,41.5 parent: 6747 type: Transform - links: - - 8666 + - 6910 type: DeviceLinkSink - - uid: 6023 + - uid: 6700 + components: + - pos: 24.5,26.5 + parent: 6747 + type: Transform + - links: + - 24 + type: DeviceLinkSink + - uid: 6901 + components: + - rot: 3.141592653589793 rad + pos: 25.5,28.5 + parent: 6747 + type: Transform + - links: + - 24 + type: DeviceLinkSink + - uid: 6902 components: - rot: -1.5707963267948966 rad - pos: 59.5,13.5 + pos: 4.5,45.5 parent: 6747 type: Transform - links: - - 8666 + - 6910 type: DeviceLinkSink - - uid: 6025 + - uid: 6906 components: - rot: -1.5707963267948966 rad - pos: 56.5,13.5 + pos: 4.5,41.5 parent: 6747 type: Transform - links: - - 8666 + - 6910 type: DeviceLinkSink - - uid: 6029 + - uid: 6907 components: - rot: -1.5707963267948966 rad - pos: 57.5,13.5 + pos: 5.5,41.5 parent: 6747 type: Transform - links: - - 8666 + - 6910 type: DeviceLinkSink - - uid: 6082 + - uid: 6911 components: - - rot: 1.5707963267948966 rad - pos: 56.5,9.5 + - rot: 3.141592653589793 rad + pos: 25.5,22.5 parent: 6747 type: Transform - links: - - 8666 + - 24 type: DeviceLinkSink - - uid: 6086 + - uid: 6912 components: - - rot: 1.5707963267948966 rad - pos: 58.5,9.5 + - pos: 24.5,22.5 parent: 6747 type: Transform - links: - - 8666 + - 24 type: DeviceLinkSink - - uid: 6091 + - uid: 7059 components: - - rot: 1.5707963267948966 rad - pos: 60.5,9.5 + - pos: 22.5,34.5 parent: 6747 type: Transform - links: - - 8666 + - 8459 type: DeviceLinkSink - - uid: 6599 + - uid: 7060 components: - - rot: -1.5707963267948966 rad - pos: 43.5,9.5 + - pos: 24.5,29.5 parent: 6747 type: Transform - links: - - 7372 + - 24 type: DeviceLinkSink - - uid: 6600 + - uid: 7061 components: - - rot: -1.5707963267948966 rad - pos: 44.5,9.5 + - pos: 24.5,27.5 parent: 6747 type: Transform - links: - - 7372 + - 24 type: DeviceLinkSink - - uid: 6601 + - uid: 7063 components: - - rot: -1.5707963267948966 rad - pos: 45.5,9.5 + - rot: 3.141592653589793 rad + pos: 25.5,23.5 parent: 6747 type: Transform - links: - - 7372 + - 24 type: DeviceLinkSink - - uid: 6602 + - uid: 7064 components: - - rot: -1.5707963267948966 rad - pos: 46.5,9.5 + - rot: 3.141592653589793 rad + pos: 25.5,24.5 parent: 6747 type: Transform - links: - - 7372 + - 24 type: DeviceLinkSink - - uid: 8308 + - uid: 7065 components: - - rot: 1.5707963267948966 rad - pos: 59.5,9.5 + - rot: 3.141592653589793 rad + pos: 25.5,25.5 parent: 6747 type: Transform - links: - - 8666 + - 24 type: DeviceLinkSink - - uid: 8310 + - uid: 7066 components: - - rot: 1.5707963267948966 rad - pos: 57.5,9.5 + - rot: 3.141592653589793 rad + pos: 25.5,26.5 + parent: 6747 + type: Transform + - links: + - 24 + type: DeviceLinkSink + - uid: 7071 + components: + - rot: 3.141592653589793 rad + pos: 25.5,29.5 + parent: 6747 + type: Transform + - links: + - 24 + type: DeviceLinkSink + - uid: 7623 + components: + - pos: 24.5,23.5 + parent: 6747 + type: Transform + - links: + - 24 + type: DeviceLinkSink + - uid: 7699 + components: + - pos: 24.5,24.5 + parent: 6747 + type: Transform + - links: + - 24 + type: DeviceLinkSink + - uid: 8252 + components: + - pos: 22.5,36.5 + parent: 6747 + type: Transform + - links: + - 8459 + type: DeviceLinkSink + - uid: 8253 + components: + - rot: 3.141592653589793 rad + pos: 18.5,34.5 + parent: 6747 + type: Transform + - links: + - 8459 + type: DeviceLinkSink + - uid: 8274 + components: + - pos: 25.5,14.5 + parent: 6747 + type: Transform + - links: + - 8661 + type: DeviceLinkSink + - uid: 8275 + components: + - pos: 25.5,13.5 + parent: 6747 + type: Transform + - links: + - 8661 + type: DeviceLinkSink + - uid: 8471 + components: + - rot: 3.141592653589793 rad + pos: 24.5,13.5 + parent: 6747 + type: Transform + - links: + - 8661 + type: DeviceLinkSink + - uid: 8472 + components: + - pos: 25.5,15.5 + parent: 6747 + type: Transform + - links: + - 8661 + type: DeviceLinkSink + - uid: 8486 + components: + - rot: 3.141592653589793 rad + pos: 24.5,14.5 parent: 6747 type: Transform - links: - - 8666 + - 8661 + type: DeviceLinkSink + - uid: 8490 + components: + - rot: 3.141592653589793 rad + pos: 24.5,15.5 + parent: 6747 + type: Transform + - links: + - 8661 type: DeviceLinkSink - uid: 8556 components: @@ -53573,40 +58195,13 @@ entities: - links: - 5357 type: DeviceLinkSink - - uid: 18559 - components: - - rot: 1.5707963267948966 rad - pos: 55.5,9.5 - parent: 6747 - type: Transform - - links: - - 8666 - type: DeviceLinkSink - proto: CrateArtifactContainer entities: - - uid: 7688 + - uid: 8418 components: - - pos: 17.5,29.5 + - pos: 17.5,28.5 parent: 6747 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 4.6948643 - - 17.661633 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 11733 components: - pos: -4.5,-78.5 @@ -53677,9 +58272,14 @@ entities: type: Transform - proto: CrateEmptySpawner entities: - - uid: 6915 + - uid: 6918 components: - - pos: 48.5,6.5 + - pos: 20.5,20.5 + parent: 6747 + type: Transform + - uid: 8444 + components: + - pos: 20.5,19.5 parent: 6747 type: Transform - uid: 10990 @@ -53697,11 +58297,6 @@ entities: - pos: -44.5,11.5 parent: 6747 type: Transform - - uid: 23917 - components: - - pos: 14.5,32.5 - parent: 6747 - type: Transform - uid: 23918 components: - pos: 13.5,35.5 @@ -53709,173 +58304,47 @@ entities: type: Transform - proto: CrateEngineeringAMEJar entities: - - uid: 8456 + - uid: 17474 components: - - pos: 28.5,36.5 + - pos: 68.5,14.5 parent: 6747 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 4.6948643 - - 17.661633 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - proto: CrateEngineeringAMEShielding entities: - - uid: 8454 + - uid: 17262 components: - - pos: 27.5,37.5 + - pos: 68.5,16.5 parent: 6747 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 4.6948643 - - 17.661633 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 8455 + - uid: 27065 components: - - pos: 27.5,36.5 + - pos: 70.5,18.5 parent: 6747 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 4.6948643 - - 17.661633 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - proto: CrateEngineeringCableBulk entities: - - uid: 8459 + - uid: 17501 components: - - pos: 28.5,37.5 + - pos: 69.5,18.5 parent: 6747 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 4.6948643 - - 17.661633 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - proto: CrateEngineeringSolar entities: - - uid: 18983 + - uid: 22634 components: - pos: 34.5,43.5 parent: 6747 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 4.6948643 - - 17.661633 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 18984 + - uid: 22635 components: - pos: 34.5,42.5 parent: 6747 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 4.6948643 - - 17.661633 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - - uid: 19009 + - uid: 22636 components: - pos: 34.5,41.5 parent: 6747 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 4.6948643 - - 17.661633 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - uid: 22848 components: - pos: 13.5,-82.5 @@ -54014,36 +58483,36 @@ entities: - 0 - 0 type: EntityStorage -- proto: CrateFilledSpawner - entities: - - uid: 6913 + - uid: 25681 components: - - pos: 53.5,6.5 + - pos: 95.5,20.5 parent: 6747 type: Transform - - uid: 6914 + - uid: 25682 components: - - pos: 49.5,6.5 + - pos: 79.5,19.5 parent: 6747 type: Transform - - uid: 7689 + - uid: 25684 components: - - pos: 19.5,29.5 + - pos: 99.5,20.5 parent: 6747 type: Transform - - uid: 11132 + - uid: 25685 components: - - pos: 55.5,23.5 + - pos: 99.5,15.5 parent: 6747 type: Transform - - uid: 11133 +- proto: CrateFilledSpawner + entities: + - uid: 6893 components: - - pos: 55.5,24.5 + - pos: 25.5,18.5 parent: 6747 type: Transform - - uid: 11134 + - uid: 7941 components: - - pos: 52.5,24.5 + - pos: 19.5,28.5 parent: 6747 type: Transform - uid: 11267 @@ -54056,6 +58525,16 @@ entities: - pos: 53.5,-14.5 parent: 6747 type: Transform + - uid: 11973 + components: + - pos: 38.5,24.5 + parent: 6747 + type: Transform + - uid: 12617 + components: + - pos: 37.5,28.5 + parent: 6747 + type: Transform - uid: 15866 components: - pos: -47.5,11.5 @@ -54212,84 +58691,30 @@ entities: type: Transform - proto: CrateMaterialPlastic entities: - - uid: 6916 + - uid: 6620 components: - - pos: 49.73844,11.182986 + - pos: 20.5,22.5 parent: 6747 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 4.6948643 - - 17.661633 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - proto: CrateMaterialSteel entities: - uid: 6917 components: - - pos: 52.23844,12.44428 + - pos: 20.5,21.5 parent: 6747 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 4.6948643 - - 17.661633 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - proto: CrateMaterialWood entities: - - uid: 6918 + - uid: 6687 components: - - pos: 50.728024,9.942542 + - pos: 21.5,20.5 parent: 6747 type: Transform - - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 4.6948643 - - 17.661633 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - proto: CrateMedicalSurgery entities: - - uid: 23897 + - uid: 26891 components: - - pos: 20.5,-60.5 + - pos: 1.5,-70.5 parent: 6747 type: Transform - proto: CrateNPCDuck @@ -54302,31 +58727,6 @@ entities: - open: True removedMasks: 28 type: EntityStorage -- proto: CrateNPCGoose - entities: - - uid: 11826 - components: - - pos: 17.5,41.5 - parent: 6747 - type: Transform - - air: - volume: 800 - immutable: False - temperature: 293.1499 - moles: - - 14.962439 - - 56.28727 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage - proto: CratePlastic entities: - uid: 2715 @@ -54398,6 +58798,52 @@ entities: - pos: -39.5,8.5 parent: 6747 type: Transform +- proto: CrateTrashCart + entities: + - uid: 8339 + components: + - pos: -33.5,-35.5 + parent: 6747 + type: Transform + - uid: 8341 + components: + - pos: -40.5,1.5 + parent: 6747 + type: Transform + - uid: 8342 + components: + - pos: 20.5,1.5 + parent: 6747 + type: Transform +- proto: CrateTrashCartFilled + entities: + - uid: 8340 + components: + - pos: -39.5,-11.5 + parent: 6747 + type: Transform + - uid: 8343 + components: + - pos: 50.5,-18.5 + parent: 6747 + type: Transform + - uid: 22648 + components: + - pos: 28.5,24.5 + parent: 6747 + type: Transform +- proto: CrateTrashCartJani + entities: + - uid: 8336 + components: + - pos: 2.5,-34.5 + parent: 6747 + type: Transform + - uid: 8344 + components: + - pos: 34.5,-78.5 + parent: 6747 + type: Transform - proto: CrayonBox entities: - uid: 2177 @@ -54436,6 +58882,14 @@ entities: - 0 - 0 type: EntityStorage +- proto: CrewMonitoringComputerCircuitboard + entities: + - uid: 17745 + components: + - rot: -1.5707963267948966 rad + pos: 70.61478,6.610055 + parent: 6747 + type: Transform - proto: CrewMonitoringServer entities: - uid: 18724 @@ -54443,8 +58897,22 @@ entities: - pos: -15.5,-59.5 parent: 6747 type: Transform +- proto: CriminalRecordsComputerCircuitboard + entities: + - uid: 17737 + components: + - rot: 1.5707963267948966 rad + pos: 70.62519,7.617324 + parent: 6747 + type: Transform - proto: Crowbar entities: + - uid: 3294 + components: + - rot: -1.5707963267948966 rad + pos: 16.412704,15.57108 + parent: 6747 + type: Transform - uid: 3431 components: - pos: 29.482853,3.4710925 @@ -54455,15 +58923,9 @@ entities: - pos: -48.5598,-7.459899 parent: 6747 type: Transform - - uid: 6921 - components: - - pos: 47.5743,18.447416 - parent: 6747 - type: Transform - - uid: 7065 + - uid: 8374 components: - - rot: 3.141592653589793 rad - pos: 46.43002,10.861542 + - pos: 31.494598,18.535248 parent: 6747 type: Transform - uid: 15855 @@ -54510,24 +58972,32 @@ entities: - pos: -2.4227295,-20.47916 parent: 6747 type: Transform - - uid: 21755 + - uid: 27025 + components: + - pos: 3.361577,27.5596 + parent: 6747 + type: Transform +- proto: CryoPod + entities: + - uid: 22345 components: - - pos: 52.476864,26.193464 + - pos: 12.5,-17.5 parent: 6747 type: Transform - proto: CryoPodMachineCircuitboard entities: - - uid: 21824 + - uid: 17743 components: - - pos: 13.500451,18.00357 + - rot: -1.5707963267948966 rad + pos: 74.416855,7.5690546 parent: 6747 type: Transform - proto: d4Dice entities: - - uid: 7083 + - uid: 11145 components: - - rot: 1.5707963267948966 rad - pos: 34.13994,25.606613 + - rot: -1.5707963267948966 rad + pos: 53.573055,26.008423 parent: 6747 type: Transform - proto: d6Dice @@ -54597,16 +59067,16 @@ entities: - pos: 42.691925,-58.166958 parent: 6747 type: Transform - - uid: 7485 + - uid: 6082 components: - rot: 1.5707963267948966 rad - pos: 33.54619,25.43983 + pos: 13.384236,26.779726 parent: 6747 type: Transform - - uid: 7612 + - uid: 6086 components: - rot: 1.5707963267948966 rad - pos: 33.369106,24.803972 + pos: 13.571736,26.529552 parent: 6747 type: Transform - uid: 8643 @@ -54619,6 +59089,18 @@ entities: - pos: -1.0229301,44.724037 parent: 6747 type: Transform + - uid: 11132 + components: + - rot: -1.5707963267948966 rad + pos: 52.604305,25.007727 + parent: 6747 + type: Transform + - uid: 11142 + components: + - rot: -1.5707963267948966 rad + pos: 52.68764,25.643585 + parent: 6747 + type: Transform - uid: 11173 components: - rot: 3.141592653589793 rad @@ -54725,11 +59207,6 @@ entities: - pos: 21.361435,-48.51263 parent: 6747 type: Transform - - uid: 6034 - components: - - pos: 38.61302,14.536147 - parent: 6747 - type: Transform - uid: 6174 components: - pos: -5.8779354,-58.151703 @@ -54750,11 +59227,12 @@ entities: - pos: 42.404686,11.679997 parent: 6747 type: Transform - - uid: 6558 + - uid: 8395 components: - - pos: 26.383373,12.6942835 + - pos: 27.436352,14.644862 parent: 6747 type: Transform + - type: Anchorable - uid: 12910 components: - pos: -19.399654,-11.328654 @@ -54782,6 +59260,16 @@ entities: pos: 58.484673,-21.734835 parent: 6747 type: Transform + - uid: 16561 + components: + - pos: -18.574055,7.5065384 + parent: 6747 + type: Transform + - uid: 16562 + components: + - pos: -18.417805,7.454419 + parent: 6747 + type: Transform - uid: 22415 components: - rot: 3.141592653589793 rad @@ -54820,6 +59308,12 @@ entities: pos: -4.5,-8.5 parent: 6747 type: Transform + - uid: 1075 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,17.5 + parent: 6747 + type: Transform - uid: 1431 components: - rot: 3.141592653589793 rad @@ -54855,6 +59349,18 @@ entities: pos: 0.5,-1.5 parent: 6747 type: Transform + - uid: 6595 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,10.5 + parent: 6747 + type: Transform + - uid: 6607 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,16.5 + parent: 6747 + type: Transform - uid: 9473 components: - rot: 3.141592653589793 rad @@ -55086,33 +59592,41 @@ entities: pos: 31.5,-0.5 parent: 6747 type: Transform - - uid: 11907 + - uid: 11905 components: - - rot: 1.5707963267948966 rad - pos: 13.5,26.5 + - pos: 65.5,12.5 parent: 6747 type: Transform - - uid: 11919 + - uid: 11910 components: - - pos: 55.5,31.5 + - pos: 23.5,31.5 parent: 6747 type: Transform - - uid: 11939 + - uid: 11911 + components: + - pos: 21.5,18.5 + parent: 6747 + type: Transform + - uid: 11912 components: - rot: 1.5707963267948966 rad - pos: 35.5,31.5 + pos: 18.5,18.5 parent: 6747 type: Transform - - uid: 11969 + - uid: 11919 components: - - rot: -1.5707963267948966 rad - pos: 30.5,17.5 + - pos: 55.5,31.5 parent: 6747 type: Transform - - uid: 11977 + - uid: 11933 components: - rot: 1.5707963267948966 rad - pos: 21.5,17.5 + pos: 41.5,31.5 + parent: 6747 + type: Transform + - uid: 11936 + components: + - pos: 62.5,25.5 parent: 6747 type: Transform - uid: 11978 @@ -55144,18 +59658,6 @@ entities: pos: 47.5,8.5 parent: 6747 type: Transform - - uid: 11989 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,17.5 - parent: 6747 - type: Transform - - uid: 11993 - components: - - rot: 1.5707963267948966 rad - pos: 40.5,17.5 - parent: 6747 - type: Transform - uid: 11995 components: - rot: 1.5707963267948966 rad @@ -55168,11 +59670,6 @@ entities: pos: 45.5,10.5 parent: 6747 type: Transform - - uid: 12017 - components: - - pos: 45.5,11.5 - parent: 6747 - type: Transform - uid: 12018 components: - pos: 47.5,10.5 @@ -55393,39 +59890,6 @@ entities: pos: 29.5,-40.5 parent: 6747 type: Transform - - uid: 12618 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,10.5 - parent: 6747 - type: Transform - - uid: 12621 - components: - - pos: 12.5,32.5 - parent: 6747 - type: Transform - - uid: 12622 - components: - - rot: 3.141592653589793 rad - pos: 12.5,27.5 - parent: 6747 - type: Transform - - uid: 12623 - components: - - pos: 24.5,27.5 - parent: 6747 - type: Transform - - uid: 12624 - components: - - rot: 3.141592653589793 rad - pos: 24.5,20.5 - parent: 6747 - type: Transform - - uid: 12625 - components: - - pos: 25.5,20.5 - parent: 6747 - type: Transform - uid: 12627 components: - rot: 1.5707963267948966 rad @@ -55725,14 +60189,15 @@ entities: pos: -2.5,-8.5 parent: 6747 type: Transform - - uid: 23760 + - uid: 25496 components: - - pos: 47.5,13.5 + - pos: 0.5,1.5 parent: 6747 type: Transform - - uid: 25496 + - uid: 26001 components: - - pos: 0.5,1.5 + - rot: 1.5707963267948966 rad + pos: 45.5,12.5 parent: 6747 type: Transform - proto: DisposalJunction @@ -55755,12 +60220,6 @@ entities: pos: 32.5,0.5 parent: 6747 type: Transform - - uid: 11940 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,26.5 - parent: 6747 - type: Transform - uid: 11967 components: - rot: -1.5707963267948966 rad @@ -55773,12 +60232,6 @@ entities: pos: 25.5,6.5 parent: 6747 type: Transform - - uid: 11994 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,11.5 - parent: 6747 - type: Transform - uid: 12069 components: - rot: 3.141592653589793 rad @@ -55887,6 +60340,12 @@ entities: pos: -10.5,-11.5 parent: 6747 type: Transform + - uid: 26000 + components: + - rot: -1.5707963267948966 rad + pos: 62.5,12.5 + parent: 6747 + type: Transform - proto: DisposalJunctionFlipped entities: - uid: 3477 @@ -55900,6 +60359,11 @@ entities: - pos: -0.5,-1.5 parent: 6747 type: Transform + - uid: 11906 + components: + - pos: 21.5,17.5 + parent: 6747 + type: Transform - uid: 12183 components: - rot: 1.5707963267948966 rad @@ -55966,12 +60430,6 @@ entities: pos: 29.5,-27.5 parent: 6747 type: Transform - - uid: 12626 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,10.5 - parent: 6747 - type: Transform - uid: 12643 components: - rot: 3.141592653589793 rad @@ -56037,6 +60495,24 @@ entities: pos: -15.5,-16.5 parent: 6747 type: Transform + - uid: 1076 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,17.5 + parent: 6747 + type: Transform + - uid: 1079 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,17.5 + parent: 6747 + type: Transform + - uid: 1084 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,17.5 + parent: 6747 + type: Transform - uid: 3175 components: - rot: -1.5707963267948966 rad @@ -56198,6 +60674,54 @@ entities: pos: 47.5,-46.5 parent: 6747 type: Transform + - uid: 6558 + components: + - rot: 3.141592653589793 rad + pos: 34.5,15.5 + parent: 6747 + type: Transform + - uid: 6594 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,11.5 + parent: 6747 + type: Transform + - uid: 6601 + components: + - rot: 3.141592653589793 rad + pos: 34.5,11.5 + parent: 6747 + type: Transform + - uid: 6602 + components: + - rot: 3.141592653589793 rad + pos: 34.5,12.5 + parent: 6747 + type: Transform + - uid: 6605 + components: + - rot: 3.141592653589793 rad + pos: 34.5,13.5 + parent: 6747 + type: Transform + - uid: 6606 + components: + - rot: 3.141592653589793 rad + pos: 34.5,14.5 + parent: 6747 + type: Transform + - uid: 6614 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,10.5 + parent: 6747 + type: Transform + - uid: 8286 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,31.5 + parent: 6747 + type: Transform - uid: 8828 components: - rot: 1.5707963267948966 rad @@ -58175,60 +62699,6 @@ entities: - pos: 23.5,5.5 parent: 6747 type: Transform - - uid: 11908 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,26.5 - parent: 6747 - type: Transform - - uid: 11909 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,26.5 - parent: 6747 - type: Transform - - uid: 11910 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,26.5 - parent: 6747 - type: Transform - - uid: 11911 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,26.5 - parent: 6747 - type: Transform - - uid: 11912 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,26.5 - parent: 6747 - type: Transform - - uid: 11913 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,26.5 - parent: 6747 - type: Transform - - uid: 11914 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,26.5 - parent: 6747 - type: Transform - - uid: 11915 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,26.5 - parent: 6747 - type: Transform - - uid: 11916 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,26.5 - parent: 6747 - type: Transform - uid: 11921 components: - rot: -1.5707963267948966 rad @@ -58301,138 +62771,10 @@ entities: pos: 42.5,31.5 parent: 6747 type: Transform - - uid: 11933 - components: - - rot: -1.5707963267948966 rad - pos: 41.5,31.5 - parent: 6747 - type: Transform - - uid: 11934 - components: - - rot: -1.5707963267948966 rad - pos: 40.5,31.5 - parent: 6747 - type: Transform - - uid: 11935 - components: - - rot: -1.5707963267948966 rad - pos: 39.5,31.5 - parent: 6747 - type: Transform - - uid: 11936 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,31.5 - parent: 6747 - type: Transform - - uid: 11937 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,31.5 - parent: 6747 - type: Transform - - uid: 11938 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,31.5 - parent: 6747 - type: Transform - - uid: 11942 - components: - - pos: 35.5,30.5 - parent: 6747 - type: Transform - - uid: 11943 - components: - - pos: 35.5,29.5 - parent: 6747 - type: Transform - - uid: 11944 - components: - - pos: 35.5,28.5 - parent: 6747 - type: Transform - - uid: 11945 - components: - - pos: 35.5,27.5 - parent: 6747 - type: Transform - - uid: 11946 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,26.5 - parent: 6747 - type: Transform - - uid: 11947 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,26.5 - parent: 6747 - type: Transform - - uid: 11948 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,26.5 - parent: 6747 - type: Transform - - uid: 11949 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,26.5 - parent: 6747 - type: Transform - - uid: 11950 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,26.5 - parent: 6747 - type: Transform - - uid: 11951 - components: - - rot: -1.5707963267948966 rad - pos: 31.5,26.5 - parent: 6747 - type: Transform - - uid: 11952 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,26.5 - parent: 6747 - type: Transform - - uid: 11953 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,26.5 - parent: 6747 - type: Transform - - uid: 11954 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,26.5 - parent: 6747 - type: Transform - - uid: 11955 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,26.5 - parent: 6747 - type: Transform - - uid: 11956 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,26.5 - parent: 6747 - type: Transform - - uid: 11957 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,26.5 - parent: 6747 - type: Transform - - uid: 11958 + - uid: 11939 components: - - rot: -1.5707963267948966 rad - pos: 24.5,26.5 + - rot: 1.5707963267948966 rad + pos: 12.5,31.5 parent: 6747 type: Transform - uid: 11959 @@ -58483,34 +62825,10 @@ entities: pos: 23.5,18.5 parent: 6747 type: Transform - - uid: 11971 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,17.5 - parent: 6747 - type: Transform - - uid: 11972 - components: - - rot: -1.5707963267948966 rad - pos: 27.5,17.5 - parent: 6747 - type: Transform - - uid: 11973 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,17.5 - parent: 6747 - type: Transform - - uid: 11974 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,17.5 - parent: 6747 - type: Transform - - uid: 11975 + - uid: 11977 components: - - rot: -1.5707963267948966 rad - pos: 24.5,17.5 + - rot: 1.5707963267948966 rad + pos: 13.5,31.5 parent: 6747 type: Transform - uid: 11992 @@ -58636,36 +62954,6 @@ entities: pos: 44.5,11.5 parent: 6747 type: Transform - - uid: 12019 - components: - - rot: 3.141592653589793 rad - pos: 40.5,16.5 - parent: 6747 - type: Transform - - uid: 12020 - components: - - rot: 3.141592653589793 rad - pos: 40.5,15.5 - parent: 6747 - type: Transform - - uid: 12021 - components: - - rot: 3.141592653589793 rad - pos: 40.5,14.5 - parent: 6747 - type: Transform - - uid: 12022 - components: - - rot: 3.141592653589793 rad - pos: 40.5,13.5 - parent: 6747 - type: Transform - - uid: 12023 - components: - - rot: 3.141592653589793 rad - pos: 40.5,12.5 - parent: 6747 - type: Transform - uid: 12035 components: - rot: -1.5707963267948966 rad @@ -61678,314 +65966,6 @@ entities: pos: 33.5,10.5 parent: 6747 type: Transform - - uid: 12854 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,10.5 - parent: 6747 - type: Transform - - uid: 12855 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,10.5 - parent: 6747 - type: Transform - - uid: 12856 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,10.5 - parent: 6747 - type: Transform - - uid: 12857 - components: - - rot: -1.5707963267948966 rad - pos: 37.5,10.5 - parent: 6747 - type: Transform - - uid: 12858 - components: - - rot: 3.141592653589793 rad - pos: 38.5,11.5 - parent: 6747 - type: Transform - - uid: 12859 - components: - - rot: 3.141592653589793 rad - pos: 38.5,12.5 - parent: 6747 - type: Transform - - uid: 12861 - components: - - rot: 3.141592653589793 rad - pos: 38.5,14.5 - parent: 6747 - type: Transform - - uid: 12862 - components: - - rot: 3.141592653589793 rad - pos: 38.5,15.5 - parent: 6747 - type: Transform - - uid: 12863 - components: - - rot: 3.141592653589793 rad - pos: 38.5,16.5 - parent: 6747 - type: Transform - - uid: 12864 - components: - - rot: 3.141592653589793 rad - pos: 38.5,17.5 - parent: 6747 - type: Transform - - uid: 12865 - components: - - rot: 3.141592653589793 rad - pos: 25.5,11.5 - parent: 6747 - type: Transform - - uid: 12866 - components: - - rot: 3.141592653589793 rad - pos: 25.5,12.5 - parent: 6747 - type: Transform - - uid: 12867 - components: - - rot: 3.141592653589793 rad - pos: 25.5,13.5 - parent: 6747 - type: Transform - - uid: 12868 - components: - - rot: 3.141592653589793 rad - pos: 25.5,14.5 - parent: 6747 - type: Transform - - uid: 12869 - components: - - rot: 3.141592653589793 rad - pos: 25.5,15.5 - parent: 6747 - type: Transform - - uid: 12870 - components: - - rot: 3.141592653589793 rad - pos: 25.5,16.5 - parent: 6747 - type: Transform - - uid: 12871 - components: - - rot: 3.141592653589793 rad - pos: 25.5,17.5 - parent: 6747 - type: Transform - - uid: 12872 - components: - - rot: 3.141592653589793 rad - pos: 25.5,18.5 - parent: 6747 - type: Transform - - uid: 12873 - components: - - rot: 3.141592653589793 rad - pos: 25.5,19.5 - parent: 6747 - type: Transform - - uid: 12874 - components: - - rot: 3.141592653589793 rad - pos: 24.5,21.5 - parent: 6747 - type: Transform - - uid: 12875 - components: - - rot: 3.141592653589793 rad - pos: 24.5,22.5 - parent: 6747 - type: Transform - - uid: 12876 - components: - - rot: 3.141592653589793 rad - pos: 24.5,23.5 - parent: 6747 - type: Transform - - uid: 12877 - components: - - rot: 3.141592653589793 rad - pos: 24.5,24.5 - parent: 6747 - type: Transform - - uid: 12878 - components: - - rot: 3.141592653589793 rad - pos: 24.5,25.5 - parent: 6747 - type: Transform - - uid: 12879 - components: - - rot: 3.141592653589793 rad - pos: 24.5,26.5 - parent: 6747 - type: Transform - - uid: 12880 - components: - - rot: 1.5707963267948966 rad - pos: 23.5,27.5 - parent: 6747 - type: Transform - - uid: 12881 - components: - - rot: 1.5707963267948966 rad - pos: 22.5,27.5 - parent: 6747 - type: Transform - - uid: 12882 - components: - - rot: 1.5707963267948966 rad - pos: 21.5,27.5 - parent: 6747 - type: Transform - - uid: 12883 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,27.5 - parent: 6747 - type: Transform - - uid: 12884 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,27.5 - parent: 6747 - type: Transform - - uid: 12885 - components: - - rot: 1.5707963267948966 rad - pos: 18.5,27.5 - parent: 6747 - type: Transform - - uid: 12886 - components: - - rot: 1.5707963267948966 rad - pos: 17.5,27.5 - parent: 6747 - type: Transform - - uid: 12887 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,27.5 - parent: 6747 - type: Transform - - uid: 12888 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,27.5 - parent: 6747 - type: Transform - - uid: 12889 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,27.5 - parent: 6747 - type: Transform - - uid: 12890 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,27.5 - parent: 6747 - type: Transform - - uid: 12891 - components: - - pos: 12.5,28.5 - parent: 6747 - type: Transform - - uid: 12892 - components: - - pos: 12.5,29.5 - parent: 6747 - type: Transform - - uid: 12893 - components: - - pos: 12.5,30.5 - parent: 6747 - type: Transform - - uid: 12894 - components: - - pos: 12.5,31.5 - parent: 6747 - type: Transform - - uid: 12895 - components: - - rot: -1.5707963267948966 rad - pos: 11.5,32.5 - parent: 6747 - type: Transform - - uid: 12896 - components: - - rot: -1.5707963267948966 rad - pos: 10.5,32.5 - parent: 6747 - type: Transform - - uid: 12897 - components: - - rot: -1.5707963267948966 rad - pos: 9.5,32.5 - parent: 6747 - type: Transform - - uid: 12898 - components: - - rot: -1.5707963267948966 rad - pos: 8.5,32.5 - parent: 6747 - type: Transform - - uid: 12899 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,32.5 - parent: 6747 - type: Transform - - uid: 12900 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,32.5 - parent: 6747 - type: Transform - - uid: 12901 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,32.5 - parent: 6747 - type: Transform - - uid: 12902 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,32.5 - parent: 6747 - type: Transform - - uid: 12903 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,32.5 - parent: 6747 - type: Transform - - uid: 12904 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,32.5 - parent: 6747 - type: Transform - - uid: 12905 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,32.5 - parent: 6747 - type: Transform - - uid: 12906 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,32.5 - parent: 6747 - type: Transform - uid: 12977 components: - rot: 1.5707963267948966 rad @@ -62142,6 +66122,12 @@ entities: pos: -7.5,-12.5 parent: 6747 type: Transform + - uid: 19067 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,18.5 + parent: 6747 + type: Transform - uid: 20169 components: - rot: -1.5707963267948966 rad @@ -63482,58 +67468,63 @@ entities: pos: -30.5,-4.5 parent: 6747 type: Transform - - uid: 23761 + - uid: 23884 components: - - rot: -1.5707963267948966 rad - pos: 39.5,13.5 + - rot: 1.5707963267948966 rad + pos: 14.5,31.5 parent: 6747 type: Transform - - uid: 23762 + - uid: 23885 components: - - rot: -1.5707963267948966 rad - pos: 40.5,13.5 + - rot: 1.5707963267948966 rad + pos: 15.5,31.5 parent: 6747 type: Transform - - uid: 23763 + - uid: 23886 components: - - rot: -1.5707963267948966 rad - pos: 41.5,13.5 + - rot: 1.5707963267948966 rad + pos: 16.5,31.5 parent: 6747 type: Transform - - uid: 23764 + - uid: 23887 components: - - rot: -1.5707963267948966 rad - pos: 42.5,13.5 + - rot: 1.5707963267948966 rad + pos: 17.5,31.5 parent: 6747 type: Transform - - uid: 23765 + - uid: 23888 components: - - rot: -1.5707963267948966 rad - pos: 43.5,13.5 + - rot: 1.5707963267948966 rad + pos: 18.5,31.5 parent: 6747 type: Transform - - uid: 23766 + - uid: 23889 components: - - rot: -1.5707963267948966 rad - pos: 44.5,13.5 + - rot: 1.5707963267948966 rad + pos: 19.5,31.5 parent: 6747 type: Transform - - uid: 23767 + - uid: 23890 components: - - rot: -1.5707963267948966 rad - pos: 45.5,13.5 + - rot: 1.5707963267948966 rad + pos: 20.5,31.5 parent: 6747 type: Transform - - uid: 23768 + - uid: 23891 components: - - rot: -1.5707963267948966 rad - pos: 46.5,13.5 + - rot: 1.5707963267948966 rad + pos: 21.5,31.5 parent: 6747 type: Transform - - uid: 23769 + - uid: 23908 components: - - rot: 3.141592653589793 rad - pos: 47.5,12.5 + - rot: 1.5707963267948966 rad + pos: 22.5,31.5 + parent: 6747 + type: Transform + - uid: 23917 + components: + - pos: 23.5,30.5 parent: 6747 type: Transform - uid: 23940 @@ -63542,6 +67533,26 @@ entities: pos: 49.5,-46.5 parent: 6747 type: Transform + - uid: 23975 + components: + - pos: 23.5,29.5 + parent: 6747 + type: Transform + - uid: 23986 + components: + - pos: 23.5,28.5 + parent: 6747 + type: Transform + - uid: 23987 + components: + - pos: 23.5,27.5 + parent: 6747 + type: Transform + - uid: 23988 + components: + - pos: 23.5,26.5 + parent: 6747 + type: Transform - uid: 25512 components: - rot: 3.141592653589793 rad @@ -63577,17 +67588,180 @@ entities: pos: -3.5,-8.5 parent: 6747 type: Transform -- proto: DisposalRouter - entities: - - uid: 12860 + - uid: 25988 components: - rot: 3.141592653589793 rad - pos: 38.5,13.5 + pos: 62.5,24.5 + parent: 6747 + type: Transform + - uid: 25989 + components: + - rot: 3.141592653589793 rad + pos: 62.5,23.5 + parent: 6747 + type: Transform + - uid: 25990 + components: + - rot: 3.141592653589793 rad + pos: 62.5,22.5 + parent: 6747 + type: Transform + - uid: 25991 + components: + - rot: 3.141592653589793 rad + pos: 62.5,21.5 + parent: 6747 + type: Transform + - uid: 25992 + components: + - rot: 3.141592653589793 rad + pos: 62.5,20.5 + parent: 6747 + type: Transform + - uid: 25993 + components: + - rot: 3.141592653589793 rad + pos: 62.5,19.5 + parent: 6747 + type: Transform + - uid: 25994 + components: + - rot: 3.141592653589793 rad + pos: 62.5,18.5 + parent: 6747 + type: Transform + - uid: 25995 + components: + - rot: 3.141592653589793 rad + pos: 62.5,17.5 + parent: 6747 + type: Transform + - uid: 25996 + components: + - rot: 3.141592653589793 rad + pos: 62.5,16.5 + parent: 6747 + type: Transform + - uid: 25997 + components: + - rot: 3.141592653589793 rad + pos: 62.5,15.5 + parent: 6747 + type: Transform + - uid: 25998 + components: + - rot: 3.141592653589793 rad + pos: 62.5,14.5 + parent: 6747 + type: Transform + - uid: 25999 + components: + - rot: 3.141592653589793 rad + pos: 62.5,13.5 + parent: 6747 + type: Transform + - uid: 26002 + components: + - rot: 1.5707963267948966 rad + pos: 63.5,12.5 + parent: 6747 + type: Transform + - uid: 26003 + components: + - rot: 1.5707963267948966 rad + pos: 61.5,12.5 + parent: 6747 + type: Transform + - uid: 26004 + components: + - rot: 1.5707963267948966 rad + pos: 60.5,12.5 + parent: 6747 + type: Transform + - uid: 26005 + components: + - rot: 1.5707963267948966 rad + pos: 59.5,12.5 + parent: 6747 + type: Transform + - uid: 26006 + components: + - rot: 1.5707963267948966 rad + pos: 58.5,12.5 + parent: 6747 + type: Transform + - uid: 26007 + components: + - rot: 1.5707963267948966 rad + pos: 57.5,12.5 + parent: 6747 + type: Transform + - uid: 26008 + components: + - rot: 1.5707963267948966 rad + pos: 56.5,12.5 + parent: 6747 + type: Transform + - uid: 26009 + components: + - rot: 1.5707963267948966 rad + pos: 55.5,12.5 + parent: 6747 + type: Transform + - uid: 26010 + components: + - rot: 1.5707963267948966 rad + pos: 54.5,12.5 + parent: 6747 + type: Transform + - uid: 26011 + components: + - rot: 1.5707963267948966 rad + pos: 53.5,12.5 + parent: 6747 + type: Transform + - uid: 26012 + components: + - rot: 1.5707963267948966 rad + pos: 52.5,12.5 + parent: 6747 + type: Transform + - uid: 26013 + components: + - rot: 1.5707963267948966 rad + pos: 51.5,12.5 + parent: 6747 + type: Transform + - uid: 26014 + components: + - rot: 1.5707963267948966 rad + pos: 50.5,12.5 + parent: 6747 + type: Transform + - uid: 26015 + components: + - rot: 1.5707963267948966 rad + pos: 49.5,12.5 + parent: 6747 + type: Transform + - uid: 26016 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,12.5 + parent: 6747 + type: Transform + - uid: 26017 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,12.5 + parent: 6747 + type: Transform + - uid: 26018 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,12.5 parent: 6747 type: Transform - - tags: - - Cargo - type: DisposalRouter - proto: DisposalRouterFlipped entities: - uid: 23521 @@ -63643,16 +67817,21 @@ entities: type: DisposalRouter - proto: DisposalTagger entities: + - uid: 823 + components: + - pos: 27.5,18.5 + parent: 6747 + type: Transform - uid: 11874 components: - rot: 1.5707963267948966 rad pos: 31.5,0.5 parent: 6747 type: Transform - - uid: 11906 + - uid: 11914 components: - - rot: 3.141592653589793 rad - pos: 13.5,25.5 + - rot: -1.5707963267948966 rad + pos: 10.5,31.5 parent: 6747 type: Transform - uid: 11920 @@ -63661,22 +67840,22 @@ entities: pos: 54.5,31.5 parent: 6747 type: Transform - - uid: 11970 + - uid: 11935 components: - - rot: -1.5707963267948966 rad - pos: 29.5,17.5 + - rot: 1.5707963267948966 rad + pos: 58.5,25.5 parent: 6747 type: Transform - - uid: 11981 + - uid: 11938 components: - rot: -1.5707963267948966 rad - pos: 26.5,6.5 + pos: 64.5,12.5 parent: 6747 type: Transform - - uid: 11990 + - uid: 11981 components: - rot: -1.5707963267948966 rad - pos: 41.5,17.5 + pos: 26.5,6.5 parent: 6747 type: Transform - uid: 11991 @@ -63808,6 +67987,12 @@ entities: - pos: 48.5,-44.5 parent: 6747 type: Transform + - uid: 17094 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,18.5 + parent: 6747 + type: Transform - uid: 20245 components: - pos: -43.5,-27.5 @@ -63866,6 +68051,11 @@ entities: type: Transform - proto: DisposalTrunk entities: + - uid: 1071 + components: + - pos: 27.5,19.5 + parent: 6747 + type: Transform - uid: 3173 components: - rot: 1.5707963267948966 rad @@ -63884,6 +68074,12 @@ entities: pos: 0.5,-51.5 parent: 6747 type: Transform + - uid: 6609 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,16.5 + parent: 6747 + type: Transform - uid: 10587 components: - rot: -1.5707963267948966 rad @@ -63930,16 +68126,16 @@ entities: pos: 30.5,-0.5 parent: 6747 type: Transform - - uid: 11905 + - uid: 11908 components: - - rot: 3.141592653589793 rad - pos: 13.5,24.5 + - rot: 1.5707963267948966 rad + pos: 9.5,31.5 parent: 6747 type: Transform - - uid: 11917 + - uid: 11909 components: - - rot: -1.5707963267948966 rad - pos: 38.5,26.5 + - rot: 3.141592653589793 rad + pos: 18.5,17.5 parent: 6747 type: Transform - uid: 11918 @@ -63948,9 +68144,10 @@ entities: pos: 55.5,30.5 parent: 6747 type: Transform - - uid: 11968 + - uid: 11934 components: - - pos: 30.5,18.5 + - rot: 1.5707963267948966 rad + pos: 57.5,25.5 parent: 6747 type: Transform - uid: 11979 @@ -63959,11 +68156,6 @@ entities: pos: 27.5,5.5 parent: 6747 type: Transform - - uid: 11986 - components: - - pos: 42.5,18.5 - parent: 6747 - type: Transform - uid: 11987 components: - rot: 1.5707963267948966 rad @@ -64086,17 +68278,6 @@ entities: pos: 27.5,-28.5 parent: 6747 type: Transform - - uid: 12617 - components: - - pos: 38.5,18.5 - parent: 6747 - type: Transform - - uid: 12620 - components: - - rot: 1.5707963267948966 rad - pos: -0.5,32.5 - parent: 6747 - type: Transform - uid: 12629 components: - rot: 3.141592653589793 rad @@ -64223,10 +68404,10 @@ entities: - pos: 37.5,1.5 parent: 6747 type: Transform - - uid: 23770 + - uid: 25987 components: - rot: 3.141592653589793 rad - pos: 47.5,11.5 + pos: 65.5,11.5 parent: 6747 type: Transform - proto: DisposalUnit @@ -64236,11 +68417,6 @@ entities: - pos: -21.5,-31.5 parent: 6747 type: Transform - - uid: 2268 - components: - - pos: 30.5,18.5 - parent: 6747 - type: Transform - uid: 2473 components: - pos: 13.5,-36.5 @@ -64296,14 +68472,19 @@ entities: - pos: 57.5,-42.5 parent: 6747 type: Transform + - uid: 6734 + components: + - pos: 27.5,19.5 + parent: 6747 + type: Transform - uid: 7075 components: - pos: 46.5,8.5 parent: 6747 type: Transform - - uid: 7856 + - uid: 7645 components: - - pos: 38.5,26.5 + - pos: 57.5,25.5 parent: 6747 type: Transform - uid: 8204 @@ -64346,14 +68527,19 @@ entities: - pos: -6.5,-84.5 parent: 6747 type: Transform - - uid: 11904 + - uid: 11913 components: - - pos: 13.5,24.5 + - pos: 18.5,17.5 parent: 6747 type: Transform - - uid: 11985 + - uid: 11915 components: - - pos: 42.5,18.5 + - pos: 9.5,31.5 + parent: 6747 + type: Transform + - uid: 11937 + components: + - pos: 65.5,11.5 parent: 6747 type: Transform - uid: 12048 @@ -64461,9 +68647,10 @@ entities: pos: 23.5,-6.5 parent: 6747 type: Transform - - uid: 11941 + - uid: 11907 components: - - pos: 23.5,26.5 + - rot: -1.5707963267948966 rad + pos: 45.5,11.5 parent: 6747 type: Transform - uid: 11976 @@ -64516,25 +68703,19 @@ entities: pos: -17.5,1.5 parent: 6747 type: Transform - - uid: 6901 - components: - - rot: -1.5707963267948966 rad - pos: 57.5,17.5 - parent: 6747 - type: Transform - uid: 7357 components: - pos: 49.5,-5.5 parent: 6747 type: Transform - - uid: 7853 + - uid: 8650 components: - - pos: 38.5,28.5 + - pos: 9.5,26.5 parent: 6747 type: Transform - - uid: 8650 + - uid: 12875 components: - - pos: 9.5,26.5 + - pos: 52.5,24.5 parent: 6747 type: Transform - uid: 23552 @@ -64557,16 +68738,9 @@ entities: pos: 27.632107,31.578167 parent: 6747 type: Transform - - uid: 8255 - components: - - rot: 3.141592653589793 rad - pos: 17.581203,13.688579 - parent: 6747 - type: Transform - - uid: 8256 + - uid: 8182 components: - - rot: 3.141592653589793 rad - pos: 17.57079,13.584338 + - pos: 73.51586,20.586037 parent: 6747 type: Transform - proto: DoubleEmergencyOxygenTankFilled @@ -64690,6 +68864,23 @@ entities: - pos: -66.5,8.5 parent: 6747 type: Transform +- proto: DresserFilled + entities: + - uid: 136 + components: + - pos: -15.5,6.5 + parent: 6747 + type: Transform + - uid: 367 + components: + - pos: 9.5,21.5 + parent: 6747 + type: Transform + - uid: 17756 + components: + - pos: 55.5,9.5 + parent: 6747 + type: Transform - proto: Drill entities: - uid: 8694 @@ -64702,6 +68893,33 @@ entities: - pos: 41.633835,-88.31695 parent: 6747 type: Transform +- proto: DrinkBeerBottleFull + entities: + - uid: 8254 + components: + - pos: 10.675904,24.726215 + parent: 6747 + type: Transform + - uid: 8439 + components: + - pos: 10.675904,24.903421 + parent: 6747 + type: Transform +- proto: DrinkBottleBeer + entities: + - uid: 8440 + components: + - rot: -1.5707963267948966 rad + pos: 11.196736,24.538586 + parent: 6747 + type: Transform +- proto: DrinkCarrotJuice + entities: + - uid: 26941 + components: + - pos: 15.256839,-12.346749 + parent: 6747 + type: Transform - proto: DrinkChampagneBottleFull entities: - uid: 8227 @@ -64916,11 +69134,22 @@ entities: type: Transform - proto: DrinkMugBlue entities: - - uid: 6710 + - uid: 8503 components: - - pos: 41.322536,15.782561 + - pos: 31.829967,14.480348 parent: 6747 type: Transform + - solutions: + drink: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 20 + reagents: + - data: null + ReagentId: Coffee + Quantity: 17 + type: SolutionContainerManager - proto: DrinkMugDog entities: - uid: 4126 @@ -65183,11 +69412,6 @@ entities: - pos: 11.467074,24.688238 parent: 6747 type: Transform - - uid: 8653 - components: - - pos: 11.78999,24.865444 - parent: 6747 - type: Transform - uid: 8654 components: - pos: 11.654574,24.583998 @@ -65916,23 +70140,6 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 17238 - components: - - pos: 22.5,7.5 - parent: 6747 - type: Transform - - enabled: True - type: PointLight - - type: ActiveEmergencyLight - - uid: 17239 - components: - - rot: 3.141592653589793 rad - pos: 25.5,9.5 - parent: 6747 - type: Transform - - enabled: True - type: PointLight - - type: ActiveEmergencyLight - uid: 17240 components: - pos: 36.5,11.5 @@ -65941,41 +70148,6 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 17241 - components: - - pos: 43.5,18.5 - parent: 6747 - type: Transform - - enabled: True - type: PointLight - - type: ActiveEmergencyLight - - uid: 17242 - components: - - rot: 1.5707963267948966 rad - pos: 57.5,18.5 - parent: 6747 - type: Transform - - enabled: True - type: PointLight - - type: ActiveEmergencyLight - - uid: 17243 - components: - - rot: 1.5707963267948966 rad - pos: 50.5,15.5 - parent: 6747 - type: Transform - - enabled: True - type: PointLight - - type: ActiveEmergencyLight - - uid: 17244 - components: - - rot: 1.5707963267948966 rad - pos: 46.5,8.5 - parent: 6747 - type: Transform - - enabled: True - type: PointLight - - type: ActiveEmergencyLight - uid: 17245 components: - rot: 3.141592653589793 rad @@ -65993,41 +70165,6 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 17248 - components: - - rot: 3.141592653589793 rad - pos: 15.5,17.5 - parent: 6747 - type: Transform - - enabled: True - type: PointLight - - type: ActiveEmergencyLight - - uid: 17249 - components: - - rot: 3.141592653589793 rad - pos: 23.5,17.5 - parent: 6747 - type: Transform - - enabled: True - type: PointLight - - type: ActiveEmergencyLight - - uid: 17251 - components: - - rot: 3.141592653589793 rad - pos: 24.5,20.5 - parent: 6747 - type: Transform - - enabled: True - type: PointLight - - type: ActiveEmergencyLight - - uid: 17252 - components: - - pos: 26.5,28.5 - parent: 6747 - type: Transform - - enabled: True - type: PointLight - - type: ActiveEmergencyLight - uid: 17253 components: - rot: -1.5707963267948966 rad @@ -66064,76 +70201,63 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 17258 + - uid: 17371 components: - - pos: 28.5,34.5 + - rot: 1.5707963267948966 rad + pos: 47.5,-52.5 parent: 6747 type: Transform - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 17259 + - uid: 17441 components: - - rot: -1.5707963267948966 rad - pos: 25.5,32.5 + - pos: -7.5,-83.5 parent: 6747 type: Transform - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 17260 + - uid: 19122 components: - - rot: 1.5707963267948966 rad - pos: 15.5,43.5 + - rot: 3.141592653589793 rad + pos: 25.5,9.5 parent: 6747 type: Transform - - enabled: True - type: PointLight - - type: ActiveEmergencyLight - - uid: 17261 + - uid: 19123 components: - - rot: 1.5707963267948966 rad - pos: 21.5,43.5 + - pos: 22.5,7.5 parent: 6747 type: Transform - - enabled: True - type: PointLight - - type: ActiveEmergencyLight - - uid: 17262 + - uid: 19124 components: - - rot: 3.141592653589793 rad - pos: 34.5,41.5 + - pos: 43.5,18.5 parent: 6747 type: Transform - - enabled: True - type: PointLight - - type: ActiveEmergencyLight - - uid: 17371 + - uid: 19125 components: - rot: 1.5707963267948966 rad - pos: 47.5,-52.5 + pos: 50.5,15.5 parent: 6747 type: Transform - - enabled: True - type: PointLight - - type: ActiveEmergencyLight - - uid: 17441 + - uid: 19126 components: - - pos: -7.5,-83.5 + - rot: 1.5707963267948966 rad + pos: 46.5,8.5 parent: 6747 type: Transform - - enabled: True - type: PointLight - - type: ActiveEmergencyLight - - uid: 23991 + - uid: 19127 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,30.5 + parent: 6747 + type: Transform + - uid: 19128 components: - rot: 3.141592653589793 rad pos: 7.5,32.5 parent: 6747 type: Transform - - enabled: True - type: PointLight - - type: ActiveEmergencyLight - uid: 23992 components: - rot: 1.5707963267948966 rad @@ -66143,15 +70267,6 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 23996 - components: - - rot: 3.141592653589793 rad - pos: 15.5,21.5 - parent: 6747 - type: Transform - - enabled: True - type: PointLight - - type: ActiveEmergencyLight - proto: EmergencyMedipen entities: - uid: 8754 @@ -66174,101 +70289,111 @@ entities: - pos: -49.542934,-7.462412 parent: 6747 type: Transform +- proto: EncryptionKeyBinary + entities: + - uid: 27057 + components: + - flags: InContainer + type: MetaData + - parent: 6181 + type: Transform + - canCollide: False + type: Physics - proto: EncryptionKeyCargo entities: - - uid: 23990 + - uid: 27063 components: - flags: InContainer type: MetaData - - parent: 22385 + - parent: 8466 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyCommand entities: - - uid: 20767 + - uid: 27055 components: - flags: InContainer type: MetaData - - parent: 19874 + - parent: 6155 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyCommon entities: - - uid: 17605 + - uid: 27060 components: - flags: InContainer type: MetaData - - parent: 17474 + - parent: 8368 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyEngineering entities: - - uid: 18988 + - uid: 27058 components: - flags: InContainer type: MetaData - - parent: 18987 + - parent: 6738 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyMedical entities: - - uid: 926 + - uid: 27062 components: - flags: InContainer type: MetaData - - parent: 315 + - parent: 8463 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyRobo entities: - - uid: 18989 + - uid: 27056 components: - flags: InContainer type: MetaData - - parent: 18987 + - parent: 6181 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyScience entities: - - uid: 4132 + - uid: 27061 components: - flags: InContainer type: MetaData - - parent: 3368 + - parent: 8388 type: Transform - canCollide: False type: Physics - proto: EncryptionKeySecurity entities: - - uid: 20769 + - uid: 27064 components: - flags: InContainer type: MetaData - - parent: 20768 + - parent: 11958 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyService entities: - - uid: 23993 + - uid: 27059 components: - flags: InContainer type: MetaData - - parent: 22385 + - parent: 8368 type: Transform - canCollide: False type: Physics - proto: ExosuitFabricator entities: - - uid: 9063 + - uid: 27043 components: - - pos: 18.5,-59.5 + - pos: 1.5,-69.5 parent: 6747 type: Transform - proto: ExtendedEmergencyOxygenTankFilled @@ -66303,6 +70428,11 @@ entities: - pos: 49.5,14.5 parent: 6747 type: Transform + - uid: 7851 + components: + - pos: 64.5,27.5 + parent: 6747 + type: Transform - uid: 8317 components: - pos: 19.5,16.5 @@ -66411,13 +70541,6 @@ entities: type: Transform - name: Cargo type: FaxMachine - - uid: 23469 - components: - - pos: 27.5,15.5 - parent: 6747 - type: Transform - - name: Engineering - type: FaxMachine - uid: 23472 components: - pos: 9.5,28.5 @@ -66593,6 +70716,183 @@ entities: type: Transform - proto: FireAlarm entities: + - uid: 73 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,7.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 26984 + - 9416 + - 9417 + - 9418 + - 1958 + - 22206 + - 21916 + - 8994 + - 8995 + - 22316 + - 22189 + - 21920 + - 954 + - 955 + - 956 + - 26969 + - 22190 + - 26976 + - 26977 + - 26978 + - 26979 + - 26980 + - 26981 + - 26982 + - 26983 + type: DeviceNetwork + - devices: + - 26984 + - 9416 + - 9417 + - 9418 + - 1958 + - 22206 + - 21916 + - 8994 + - 8995 + - 22316 + - 22189 + - 21920 + - 954 + - 955 + - 956 + - 26969 + - 22190 + - 26976 + - 26977 + - 26978 + - 26979 + - 26980 + - 26981 + - 26982 + - 26983 + type: DeviceList + - uid: 295 + components: + - pos: 46.5,14.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 21751 + - 21750 + - 21749 + - 21748 + - 21920 + - 21752 + - 26962 + - 26961 + - 26954 + - 26957 + - 26953 + - 26960 + - 26951 + - 26950 + - 26946 + type: DeviceNetwork + - devices: + - 26946 + - 26950 + - 26951 + - 26960 + - 26953 + - 26957 + - 26954 + - 26961 + - 26962 + - 21752 + - 21920 + - 21748 + - 21749 + - 21750 + - 21751 + type: DeviceList + - uid: 767 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-11.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 25213 + - 25203 + - 25204 + - 25202 + - 25201 + - 1958 + - 21390 + - 21916 + - 857 + - 865 + - 114 + - 25254 + - 21391 + - 25260 + - 25270 + - 25269 + - 25262 + - 15912 + - 15913 + - 25266 + - 25268 + type: DeviceNetwork + - devices: + - 25213 + - 25203 + - 25204 + - 25202 + - 25201 + - 1958 + - 21390 + - 21916 + - 857 + - 865 + - 114 + - 25254 + - 21391 + - 25260 + - 25270 + - 25269 + - 25262 + - 15912 + - 15913 + - 25266 + - 25268 + type: DeviceList + - uid: 1781 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-2.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 1958 + - 25206 + type: DeviceNetwork + - devices: + - 1745 + - 27035 + - 25213 + - 25205 + - 25214 + - 25207 + - 25215 + - 25208 + - 25219 + - 25211 + - 25210 + - 25209 + - 1958 + - 25206 + type: DeviceList - uid: 3693 components: - pos: 18.5,-35.5 @@ -66636,6 +70936,66 @@ entities: - 7445 - 7444 type: DeviceList + - uid: 13176 + components: + - rot: 3.141592653589793 rad + pos: 51.5,29.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 26967 + - 22191 + - 22192 + - 26985 + - 26988 + - 1959 + - 2421 + type: DeviceNetwork + - devices: + - 26967 + - 22191 + - 22192 + - 26985 + - 26988 + - 1959 + - 2421 + type: DeviceList + - uid: 13869 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,7.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 21919 + - 954 + - 955 + - 956 + - 26967 + - 26966 + - 26962 + - 26968 + - 21921 + - 21748 + - 21749 + - 21750 + - 21751 + type: DeviceNetwork + - devices: + - 21919 + - 954 + - 955 + - 956 + - 26967 + - 26966 + - 26962 + - 26968 + - 21921 + - 21748 + - 21749 + - 21750 + - 21751 + type: DeviceList - uid: 22035 components: - rot: -1.5707963267948966 rad @@ -66723,186 +71083,6 @@ entities: - 21916 - 21389 type: DeviceList - - uid: 22046 - components: - - rot: -1.5707963267948966 rad - pos: 29.5,7.5 - parent: 6747 - type: Transform - - devices: - - 22189 - - 860 - - 858 - - 868 - - 21761 - - 21762 - - 21765 - - 21764 - - 21919 - - 9416 - - 9417 - - 9418 - - 22206 - - 22329 - - 8995 - - 8994 - type: DeviceList - - uid: 22048 - components: - - pos: 42.5,19.5 - parent: 6747 - type: Transform - - devices: - - 21752 - - 21747 - - 21746 - - 22336 - - 21922 - type: DeviceList - - uid: 22049 - components: - - pos: 46.5,14.5 - parent: 6747 - type: Transform - - devices: - - 21748 - - 21749 - - 21750 - - 21751 - - 21921 - - 21752 - - 22333 - - 22186 - type: DeviceList - - uid: 22052 - components: - - pos: 51.5,29.5 - parent: 6747 - type: Transform - - devices: - - 21757 - - 21758 - - 21927 - - 22192 - - 22191 - - 21756 - type: DeviceList - - uid: 22053 - components: - - pos: 26.5,23.5 - parent: 6747 - type: Transform - - devices: - - 22205 - - 22200 - - 22199 - - 22203 - - 22202 - - 22201 - - 22342 - type: DeviceList - - uid: 22056 - components: - - pos: 17.5,19.5 - parent: 6747 - type: Transform - - devices: - - 21764 - - 21765 - - 22204 - - 22202 - - 22201 - - 22343 - - 21924 - - 22344 - type: DeviceList - - uid: 22058 - components: - - pos: 28.5,19.5 - parent: 6747 - type: Transform - - devices: - - 21762 - - 21761 - - 21923 - - 22204 - - 22203 - type: DeviceList - - uid: 22060 - components: - - pos: 8.5,36.5 - parent: 6747 - type: Transform - - devices: - - 22349 - - 22350 - - 21929 - - 21760 - - 21759 - type: DeviceList - - uid: 22062 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,37.5 - parent: 6747 - type: Transform - - devices: - - 21930 - - 22352 - - 22353 - - 22497 - - 22496 - - 21760 - - 21759 - type: DeviceList - - uid: 22064 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,40.5 - parent: 6747 - type: Transform - - devices: - - 22195 - - 22194 - - 22340 - - 22341 - - 22791 - - 22792 - type: DeviceList - - uid: 22072 - components: - - rot: 3.141592653589793 rad - pos: 5.5,-11.5 - parent: 6747 - type: Transform - - ShutdownSubscribers: - - 25260 - - 25269 - - 25270 - type: DeviceNetwork - - devices: - - 21916 - - 22209 - - 114 - - 865 - - 857 - - 21390 - - 25213 - - 25201 - - 25202 - - 25203 - - 25204 - - 25266 - - 25268 - - 25262 - - 15913 - - 15912 - - 25260 - - 25269 - - 25270 - - 25254 - - 21391 - type: DeviceList - uid: 22088 components: - pos: -13.5,-40.5 @@ -67267,15 +71447,6 @@ entities: - 21415 - 22246 type: DeviceList - - uid: 22211 - components: - - pos: -12.5,7.5 - parent: 6747 - type: Transform - - devices: - - 22209 - - 21820 - type: DeviceList - uid: 22224 components: - pos: 46.5,-44.5 @@ -67405,58 +71576,6 @@ entities: - 21819 - 22186 type: DeviceList - - uid: 22332 - components: - - pos: 36.5,12.5 - parent: 6747 - type: Transform - - devices: - - 860 - - 858 - - 868 - - 22190 - - 21751 - - 21750 - - 21749 - - 21748 - - 21747 - - 21746 - - 21920 - type: DeviceList - - uid: 22337 - components: - - rot: -1.5707963267948966 rad - pos: 26.5,31.5 - parent: 6747 - type: Transform - - devices: - - 21756 - - 21926 - - 21925 - - 22200 - - 22199 - - 22196 - - 22197 - - 22198 - - 22195 - - 22194 - - 22339 - - 22338 - type: DeviceList - - uid: 22348 - components: - - pos: 19.5,30.5 - parent: 6747 - type: Transform - - devices: - - 22196 - - 22197 - - 22198 - - 21928 - - 22351 - - 22349 - - 22350 - type: DeviceList - uid: 25272 components: - rot: 1.5707963267948966 rad @@ -67481,30 +71600,6 @@ entities: - 25212 - 25205 type: DeviceList - - uid: 25274 - components: - - rot: -1.5707963267948966 rad - pos: -15.5,-2.5 - parent: 6747 - type: Transform - - ShutdownSubscribers: - - 25277 - type: DeviceNetwork - - devices: - - 25213 - - 25205 - - 22209 - - 25206 - - 25214 - - 25207 - - 25215 - - 25208 - - 25219 - - 25209 - - 25210 - - 25211 - - 25277 - type: DeviceList - uid: 25276 components: - rot: -1.5707963267948966 rad @@ -67998,12 +72093,233 @@ entities: - 15915 - 15914 type: DeviceList + - uid: 26947 + components: + - pos: 73.5,19.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 26946 + - 21921 + - 26953 + - 26952 + type: DeviceNetwork + - devices: + - 26946 + - 21921 + - 26953 + - 26952 + type: DeviceList + - uid: 26959 + components: + - rot: 3.141592653589793 rad + pos: 51.5,5.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 21921 + - 26954 + type: DeviceNetwork + - devices: + - 21921 + - 26954 + type: DeviceList + - uid: 26964 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,15.5 + parent: 6747 + type: Transform + - uid: 26971 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,16.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 21919 + - 26983 + - 26982 + - 26981 + - 26980 + - 26979 + - 26978 + - 26977 + - 26976 + - 22190 + - 26967 + - 26975 + - 1820 + - 26973 + - 26972 + - 22433 + - 26974 + type: DeviceNetwork + - devices: + - 21919 + - 26983 + - 26982 + - 26981 + - 26980 + - 26979 + - 26978 + - 26977 + - 26976 + - 22190 + - 26967 + - 26975 + - 1820 + - 26973 + - 26972 + - 22433 + - 26974 + type: DeviceList + - uid: 26990 + components: + - pos: 59.5,36.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 1784 + - 1959 + - 2421 + - 26988 + - 26946 + - 26948 + - 26949 + type: DeviceNetwork + - devices: + - 1784 + - 1959 + - 2421 + - 26988 + - 26946 + - 26948 + - 26949 + type: DeviceList + - uid: 26992 + components: + - rot: 1.5707963267948966 rad + pos: 56.5,17.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 26985 + - 26948 + - 26949 + - 26967 + - 26987 + - 21921 + - 26961 + - 26950 + - 26951 + - 26960 + - 26952 + type: DeviceNetwork + - devices: + - 26985 + - 26948 + - 26949 + - 26967 + - 26987 + - 21921 + - 26961 + - 26950 + - 26951 + - 26960 + - 26952 + type: DeviceList + - uid: 27004 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,24.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 22433 + - 27010 + - 1820 + - 27002 + - 27001 + type: DeviceNetwork + - devices: + - 22433 + - 27010 + - 1820 + - 27002 + - 27001 + type: DeviceList + - uid: 27006 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,33.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 21930 + - 27007 + - 21759 + - 21760 + - 21928 + - 27002 + - 27001 + - 26969 + - 26972 + - 26973 + type: DeviceNetwork + - devices: + - 21930 + - 27007 + - 21759 + - 21760 + - 21928 + - 27002 + - 27001 + - 26969 + - 26972 + - 26973 + type: DeviceList + - uid: 27008 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,22.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 26969 + - 26974 + - 21928 + - 27010 + type: DeviceNetwork + - devices: + - 26969 + - 26974 + - 21928 + - 27010 + type: DeviceList + - uid: 27037 + components: + - rot: 3.141592653589793 rad + pos: -17.5,3.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 1958 + - 27034 + - 25212 + - 27035 + type: DeviceNetwork + - devices: + - 1958 + - 27034 + - 25212 + - 27035 + type: DeviceList - proto: FireAlarmElectronics entities: - - uid: 8257 + - uid: 7654 components: - - rot: 3.141592653589793 rad - pos: 17.091621,13.459252 + - pos: 73.44295,21.545034 parent: 6747 type: Transform - proto: FireAxe @@ -68055,21 +72371,19 @@ entities: - pos: 7.5,-7.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 767 + - 13485 + type: DeviceNetwork - uid: 21391 components: - pos: 3.5,-11.5 parent: 6747 type: Transform - - uid: 21753 - components: - - pos: 53.5,22.5 - parent: 6747 - type: Transform - - uid: 21754 - components: - - pos: 54.5,22.5 - parent: 6747 - type: Transform + - ShutdownSubscribers: + - 767 + - 13485 + type: DeviceNetwork - uid: 21808 components: - pos: -42.5,-34.5 @@ -68215,41 +72529,57 @@ entities: - pos: 29.5,6.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 73 + - 8860 + type: DeviceNetwork - uid: 22190 components: - pos: 34.5,12.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 73 + - 8860 + - 26971 + - 26970 + type: DeviceNetwork - uid: 22191 components: - pos: 40.5,28.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 13176 + - 304 + type: DeviceNetwork - uid: 22192 components: - pos: 41.5,28.5 parent: 6747 type: Transform - - uid: 22205 - components: - - pos: 33.5,21.5 - parent: 6747 - type: Transform + - ShutdownSubscribers: + - 13176 + - 304 + type: DeviceNetwork - uid: 22206 components: - pos: 20.5,4.5 parent: 6747 type: Transform - - uid: 22336 - components: - - pos: 40.5,19.5 - parent: 6747 - type: Transform + - ShutdownSubscribers: + - 73 + - 8860 + type: DeviceNetwork - uid: 25206 components: - pos: -6.5,3.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 1781 + - 13930 + type: DeviceNetwork - uid: 25224 components: - pos: -40.5,-10.5 @@ -68357,8 +72687,60 @@ entities: - 25326 - 25325 type: DeviceNetwork + - uid: 26965 + components: + - pos: 39.5,17.5 + parent: 6747 + type: Transform + - uid: 26966 + components: + - pos: 38.5,14.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 13869 + - 1755 + type: DeviceNetwork + - uid: 26975 + components: + - pos: 28.5,21.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 26971 + - 26970 + type: DeviceNetwork + - uid: 26986 + components: + - pos: 54.5,22.5 + parent: 6747 + type: Transform + - uid: 26987 + components: + - pos: 56.5,20.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 26992 + - 26991 + type: DeviceNetwork + - uid: 27034 + components: + - pos: -14.5,5.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 27037 + - 27036 + type: DeviceNetwork - proto: FirelockEdge entities: + - uid: 8054 + components: + - rot: 3.141592653589793 rad + pos: 31.5,43.5 + parent: 6747 + type: Transform - uid: 8963 components: - rot: 1.5707963267948966 rad @@ -68393,6 +72775,36 @@ entities: pos: 13.5,-43.5 parent: 6747 type: Transform + - uid: 19087 + components: + - rot: 1.5707963267948966 rad + pos: 63.5,25.5 + parent: 6747 + type: Transform + - uid: 19088 + components: + - rot: 1.5707963267948966 rad + pos: 63.5,26.5 + parent: 6747 + type: Transform + - uid: 19089 + components: + - rot: 3.141592653589793 rad + pos: 58.5,35.5 + parent: 6747 + type: Transform + - uid: 19090 + components: + - rot: 3.141592653589793 rad + pos: 54.5,35.5 + parent: 6747 + type: Transform + - uid: 19091 + components: + - rot: 3.141592653589793 rad + pos: 53.5,35.5 + parent: 6747 + type: Transform - uid: 22159 components: - pos: -24.5,-49.5 @@ -68415,6 +72827,25 @@ entities: - 25300 - 25299 type: DeviceNetwork + - uid: 26194 + components: + - rot: 1.5707963267948966 rad + pos: 73.5,17.5 + parent: 6747 + type: Transform + - uid: 26456 + components: + - rot: 3.141592653589793 rad + pos: 71.5,18.5 + parent: 6747 + type: Transform +- proto: FirelockElectronics + entities: + - uid: 6661 + components: + - pos: 73.557526,21.55546 + parent: 6747 + type: Transform - proto: FirelockGlass entities: - uid: 114 @@ -68422,6 +72853,10 @@ entities: - pos: 14.5,-10.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 767 + - 13485 + type: DeviceNetwork - uid: 438 components: - pos: -5.5,-73.5 @@ -68432,26 +72867,74 @@ entities: - pos: 14.5,-8.5 parent: 6747 type: Transform - - uid: 858 + - ShutdownSubscribers: + - 767 + - 13485 + type: DeviceNetwork + - uid: 865 components: - - pos: 30.5,10.5 + - pos: 14.5,-9.5 parent: 6747 type: Transform - - uid: 860 + - ShutdownSubscribers: + - 767 + - 13485 + type: DeviceNetwork + - uid: 954 components: - - pos: 30.5,9.5 + - pos: 36.5,9.5 parent: 6747 type: Transform - - uid: 865 + - ShutdownSubscribers: + - 13869 + - 1755 + - 73 + - 8860 + type: DeviceNetwork + - uid: 955 components: - - pos: 14.5,-9.5 + - pos: 36.5,10.5 parent: 6747 type: Transform - - uid: 868 + - ShutdownSubscribers: + - 13869 + - 1755 + - 73 + - 8860 + type: DeviceNetwork + - uid: 956 components: - - pos: 30.5,11.5 + - pos: 36.5,11.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 13869 + - 1755 + - 73 + - 8860 + type: DeviceNetwork + - uid: 1959 + components: + - pos: 56.5,32.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 26990 + - 26989 + - 13176 + - 304 + type: DeviceNetwork + - uid: 2421 + components: + - pos: 56.5,33.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 26990 + - 26989 + - 13176 + - 304 + type: DeviceNetwork - uid: 5324 components: - pos: 56.5,-45.5 @@ -68612,11 +73095,19 @@ entities: - pos: 24.5,-4.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 73 + - 8860 + type: DeviceNetwork - uid: 8995 components: - pos: 23.5,-4.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 73 + - 8860 + type: DeviceNetwork - uid: 9007 components: - pos: 51.5,-26.5 @@ -68627,16 +73118,28 @@ entities: - pos: 16.5,11.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 73 + - 8860 + type: DeviceNetwork - uid: 9417 components: - pos: 16.5,10.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 73 + - 8860 + type: DeviceNetwork - uid: 9418 components: - pos: 16.5,9.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 73 + - 8860 + type: DeviceNetwork - uid: 15905 components: - pos: -9.5,-26.5 @@ -68711,6 +73214,8 @@ entities: - ShutdownSubscribers: - 25310 - 25309 + - 767 + - 13485 type: DeviceNetwork - uid: 15913 components: @@ -68720,6 +73225,8 @@ entities: - ShutdownSubscribers: - 25310 - 25309 + - 767 + - 13485 type: DeviceNetwork - uid: 15914 components: @@ -68876,91 +73383,82 @@ entities: - pos: 24.5,-16.5 parent: 6747 type: Transform - - uid: 21746 - components: - - pos: 38.5,14.5 - parent: 6747 - type: Transform - - uid: 21747 - components: - - pos: 40.5,14.5 - parent: 6747 - type: Transform - uid: 21748 components: - pos: 42.5,13.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 9063 + - 295 + - 13869 + - 1755 + type: DeviceNetwork - uid: 21749 components: - pos: 42.5,11.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 9063 + - 295 + - 13869 + - 1755 + type: DeviceNetwork - uid: 21750 components: - pos: 42.5,7.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 9063 + - 295 + - 13869 + - 1755 + type: DeviceNetwork - uid: 21751 components: - pos: 42.5,6.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 9063 + - 295 + - 13869 + - 1755 + type: DeviceNetwork - uid: 21752 components: - pos: 47.5,14.5 parent: 6747 type: Transform - - uid: 21756 - components: - - pos: 35.5,29.5 - parent: 6747 - type: Transform - - uid: 21757 - components: - - pos: 54.5,36.5 - parent: 6747 - type: Transform - - uid: 21758 - components: - - pos: 53.5,36.5 - parent: 6747 - type: Transform + - ShutdownSubscribers: + - 9063 + - 295 + type: DeviceNetwork - uid: 21759 components: - pos: 3.5,33.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 27006 + - 27005 + type: DeviceNetwork - uid: 21760 components: - pos: 3.5,32.5 parent: 6747 type: Transform - - uid: 21761 - components: - - pos: 29.5,12.5 - parent: 6747 - type: Transform - - uid: 21762 - components: - - pos: 26.5,12.5 - parent: 6747 - type: Transform + - ShutdownSubscribers: + - 27006 + - 27005 + type: DeviceNetwork - uid: 21763 components: - pos: 31.5,-4.5 parent: 6747 type: Transform - - uid: 21764 - components: - - pos: 20.5,12.5 - parent: 6747 - type: Transform - - uid: 21765 - components: - - pos: 21.5,12.5 - parent: 6747 - type: Transform - uid: 21766 components: - pos: 28.5,-3.5 @@ -69206,61 +73704,6 @@ entities: - pos: 25.5,-20.5 parent: 6747 type: Transform - - uid: 22194 - components: - - pos: 24.5,35.5 - parent: 6747 - type: Transform - - uid: 22195 - components: - - pos: 23.5,35.5 - parent: 6747 - type: Transform - - uid: 22196 - components: - - pos: 20.5,24.5 - parent: 6747 - type: Transform - - uid: 22197 - components: - - pos: 20.5,26.5 - parent: 6747 - type: Transform - - uid: 22198 - components: - - pos: 20.5,27.5 - parent: 6747 - type: Transform - - uid: 22199 - components: - - pos: 23.5,23.5 - parent: 6747 - type: Transform - - uid: 22200 - components: - - pos: 24.5,23.5 - parent: 6747 - type: Transform - - uid: 22201 - components: - - pos: 22.5,19.5 - parent: 6747 - type: Transform - - uid: 22202 - components: - - pos: 23.5,19.5 - parent: 6747 - type: Transform - - uid: 22203 - components: - - pos: 25.5,19.5 - parent: 6747 - type: Transform - - uid: 22204 - components: - - pos: 24.5,17.5 - parent: 6747 - type: Transform - uid: 22228 components: - pos: 23.5,-55.5 @@ -69292,16 +73735,6 @@ entities: - pos: 18.5,-6.5 parent: 6747 type: Transform - - uid: 22349 - components: - - pos: 11.5,29.5 - parent: 6747 - type: Transform - - uid: 22350 - components: - - pos: 12.5,29.5 - parent: 6747 - type: Transform - uid: 22352 components: - pos: -4.5,36.5 @@ -69322,16 +73755,6 @@ entities: - pos: -3.5,31.5 parent: 6747 type: Transform - - uid: 22791 - components: - - pos: 29.5,42.5 - parent: 6747 - type: Transform - - uid: 22792 - components: - - pos: 29.5,41.5 - parent: 6747 - type: Transform - uid: 23041 components: - pos: 11.5,-78.5 @@ -69349,7 +73772,8 @@ entities: type: Transform - ShutdownSubscribers: - 25272 - - 25271 + - 767 + - 13485 type: DeviceNetwork - uid: 25202 components: @@ -69358,7 +73782,8 @@ entities: type: Transform - ShutdownSubscribers: - 25272 - - 25271 + - 767 + - 13485 type: DeviceNetwork - uid: 25203 components: @@ -69367,7 +73792,8 @@ entities: type: Transform - ShutdownSubscribers: - 25272 - - 25271 + - 767 + - 13485 type: DeviceNetwork - uid: 25204 components: @@ -69376,7 +73802,8 @@ entities: type: Transform - ShutdownSubscribers: - 25272 - - 25271 + - 767 + - 13485 type: DeviceNetwork - uid: 25205 components: @@ -69385,7 +73812,7 @@ entities: type: Transform - ShutdownSubscribers: - 25272 - - 25271 + - 13930 type: DeviceNetwork - uid: 25207 components: @@ -69395,6 +73822,7 @@ entities: - ShutdownSubscribers: - 25276 - 25275 + - 13930 type: DeviceNetwork - uid: 25208 components: @@ -69404,6 +73832,7 @@ entities: - ShutdownSubscribers: - 25279 - 25278 + - 13930 type: DeviceNetwork - uid: 25209 components: @@ -69413,6 +73842,7 @@ entities: - ShutdownSubscribers: - 25282 - 25281 + - 13930 type: DeviceNetwork - uid: 25210 components: @@ -69422,6 +73852,7 @@ entities: - ShutdownSubscribers: - 25282 - 25281 + - 13930 type: DeviceNetwork - uid: 25211 components: @@ -69431,6 +73862,7 @@ entities: - ShutdownSubscribers: - 25282 - 25281 + - 13930 type: DeviceNetwork - uid: 25216 components: @@ -69630,6 +74062,8 @@ entities: - ShutdownSubscribers: - 25323 - 25324 + - 767 + - 13485 type: DeviceNetwork - uid: 25269 components: @@ -69637,8 +74071,8 @@ entities: parent: 6747 type: Transform - ShutdownSubscribers: - - 22072 - - 22071 + - 767 + - 13485 - 25320 - 25319 type: DeviceNetwork @@ -69648,8 +74082,8 @@ entities: parent: 6747 type: Transform - ShutdownSubscribers: - - 22072 - - 22071 + - 767 + - 13485 - 25320 - 25319 type: DeviceNetwork @@ -69659,8 +74093,6 @@ entities: parent: 6747 type: Transform - ShutdownSubscribers: - - 25273 - - 25274 - 25276 - 25275 type: DeviceNetwork @@ -69741,6 +74173,288 @@ entities: - 25315 - 25386 type: DeviceNetwork + - uid: 26948 + components: + - pos: 62.5,24.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 26990 + - 26989 + - 26992 + - 26991 + type: DeviceNetwork + - uid: 26949 + components: + - pos: 63.5,24.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 26990 + - 26989 + - 26992 + - 26991 + type: DeviceNetwork + - uid: 26950 + components: + - pos: 62.5,14.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 9063 + - 295 + - 26992 + - 26991 + type: DeviceNetwork + - uid: 26951 + components: + - pos: 63.5,14.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 9063 + - 295 + - 26992 + - 26991 + type: DeviceNetwork + - uid: 26952 + components: + - pos: 64.5,16.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 26947 + - 26945 + - 26992 + - 26991 + type: DeviceNetwork + - uid: 26953 + components: + - pos: 64.5,12.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 26947 + - 26945 + - 9063 + - 295 + type: DeviceNetwork + - uid: 26954 + components: + - pos: 51.5,10.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 26959 + - 26958 + - 9063 + - 295 + type: DeviceNetwork + - uid: 26961 + components: + - rot: 3.141592653589793 rad + pos: 56.5,16.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 9063 + - 295 + - 26992 + - 26991 + type: DeviceNetwork + - uid: 26968 + components: + - pos: 40.5,14.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 13869 + - 1755 + type: DeviceNetwork + - uid: 26972 + components: + - pos: 22.5,23.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 26971 + - 26970 + - 27006 + - 27005 + type: DeviceNetwork + - uid: 26973 + components: + - pos: 23.5,23.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 26971 + - 26970 + - 27006 + - 27005 + type: DeviceNetwork + - uid: 26974 + components: + - pos: 19.5,18.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 26971 + - 26970 + - 27008 + - 27009 + type: DeviceNetwork + - uid: 26976 + components: + - pos: 30.5,13.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 73 + - 8860 + - 26971 + - 26970 + type: DeviceNetwork + - uid: 26977 + components: + - pos: 27.5,14.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 73 + - 8860 + - 26971 + - 26970 + type: DeviceNetwork + - uid: 26978 + components: + - pos: 25.5,14.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 73 + - 8860 + - 26971 + - 26970 + type: DeviceNetwork + - uid: 26979 + components: + - pos: 24.5,14.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 73 + - 8860 + - 26971 + - 26970 + type: DeviceNetwork + - uid: 26980 + components: + - pos: 22.5,12.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 73 + - 8860 + - 26971 + - 26970 + type: DeviceNetwork + - uid: 26981 + components: + - pos: 21.5,12.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 73 + - 8860 + - 26971 + - 26970 + type: DeviceNetwork + - uid: 26982 + components: + - pos: 19.5,12.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 73 + - 8860 + - 26971 + - 26970 + type: DeviceNetwork + - uid: 26983 + components: + - pos: 18.5,12.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 73 + - 8860 + - 26971 + - 26970 + type: DeviceNetwork + - uid: 26988 + components: + - pos: 56.5,26.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 26990 + - 26989 + - 13176 + - 304 + type: DeviceNetwork + - uid: 27001 + components: + - pos: 5.5,31.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 27004 + - 27003 + - 27006 + - 27005 + type: DeviceNetwork + - uid: 27002 + components: + - pos: 11.5,29.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 27004 + - 27003 + - 27006 + - 27005 + type: DeviceNetwork + - uid: 27007 + components: + - pos: 3.5,34.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 27006 + - 27005 + type: DeviceNetwork + - uid: 27010 + components: + - pos: 13.5,23.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 27008 + - 27009 + - 27004 + - 27003 + type: DeviceNetwork + - uid: 27035 + components: + - pos: -19.5,2.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 27037 + - 27036 + - 13930 + type: DeviceNetwork - proto: Fireplace entities: - uid: 3332 @@ -69801,14 +74515,14 @@ entities: - pos: 35.517498,-0.38211083 parent: 6747 type: Transform - - uid: 8286 + - uid: 6597 components: - - pos: 32.449085,17.683807 + - pos: 40.479782,18.581118 parent: 6747 type: Transform - - uid: 8287 + - uid: 11941 components: - - pos: 32.511585,17.892284 + - pos: 40.469364,18.789597 parent: 6747 type: Transform - uid: 12986 @@ -69942,6 +74656,14 @@ entities: type: Transform - fixtures: {} type: Fixtures + - uid: 1868 + components: + - rot: 3.141592653589793 rad + pos: 4.5,23.5 + parent: 6747 + type: Transform + - fixtures: {} + type: Fixtures - uid: 1913 components: - pos: -18.5,-27.5 @@ -69949,6 +74671,14 @@ entities: type: Transform - fixtures: {} type: Fixtures + - uid: 2065 + components: + - rot: 3.141592653589793 rad + pos: 6.5,23.5 + parent: 6747 + type: Transform + - fixtures: {} + type: Fixtures - uid: 2475 components: - pos: 16.5,-38.5 @@ -70013,31 +74743,31 @@ entities: - pos: -10.896896,-79.37598 parent: 6747 type: Transform - - uid: 16721 + - uid: 16727 components: - - pos: 10.076895,-15.749676 + - pos: -3.978651,-93.81445 parent: 6747 type: Transform - - uid: 16724 + - uid: 25611 components: - - pos: 4.154319,-69.57805 + - pos: 5.6380444,-69.885994 parent: 6747 type: Transform - - uid: 16727 + - uid: 26901 components: - - pos: -3.978651,-93.81445 + - pos: 10.162697,-15.308032 parent: 6747 type: Transform - proto: FloraRockSolid02 entities: - - uid: 7088 + - uid: 2506 components: - - pos: -8.876062,-78.69842 + - pos: -9.880507,9.9272585 parent: 6747 type: Transform - - uid: 14918 + - uid: 7088 components: - - pos: 5.463004,-69.04346 + - pos: -8.876062,-78.69842 parent: 6747 type: Transform - uid: 16725 @@ -70045,21 +74775,26 @@ entities: - pos: -6.436984,-95.66991 parent: 6747 type: Transform + - uid: 26108 + components: + - pos: 5.5026274,-66.86306 + parent: 6747 + type: Transform - proto: FloraRockSolid03 entities: - - uid: 7566 + - uid: 292 components: - - pos: -34.005993,13.659516 + - pos: -8.5598955,-80.57455 parent: 6747 type: Transform - - uid: 8726 + - uid: 7566 components: - - pos: -8.355228,-81.0438 + - pos: -34.005993,13.659516 parent: 6747 type: Transform - - uid: 16723 + - uid: 14855 components: - - pos: 4.803542,-68.20696 + - pos: 5.464761,-68.26528 parent: 6747 type: Transform - uid: 16726 @@ -70190,6 +74925,11 @@ entities: - pos: -62.468723,-83.3815 parent: 6747 type: Transform + - uid: 22647 + components: + - pos: 28.188343,26.843317 + parent: 6747 + type: Transform - proto: FoodBowlFancy entities: - uid: 15895 @@ -70251,6 +74991,11 @@ entities: - pos: 20.336006,-0.89600253 parent: 6747 type: Transform + - uid: 25799 + components: + - pos: 110.47042,36.19293 + parent: 6747 + type: Transform - proto: FoodChili entities: - uid: 3862 @@ -70341,9 +75086,9 @@ entities: type: Transform - proto: FoodDonkpocketDink entities: - - uid: 10492 + - uid: 4034 components: - - pos: -0.45717716,-40.036194 + - pos: -0.4918747,-41.099037 parent: 6747 type: Transform - proto: FoodDonutPlain @@ -70691,11 +75436,11 @@ entities: type: Transform - proto: FoodSnackCheesie entities: - - uid: 16187 + - uid: 200 components: - flags: InContainer type: MetaData - - parent: 9402 + - parent: 199 type: Transform - canCollide: False type: Physics @@ -70770,13 +75515,6 @@ entities: pos: 3.5971003,-56.893925 parent: 6747 type: Transform -- proto: ForensicScanner - entities: - - uid: 4365 - components: - - pos: -0.51685333,-59.342857 - parent: 6747 - type: Transform - proto: ForkPlastic entities: - uid: 15043 @@ -70812,10 +75550,15 @@ entities: pos: -0.47951174,-76.40862 parent: 6747 type: Transform - - uid: 8254 + - uid: 12894 components: - - rot: 3.141592653589793 rad - pos: 15.59162,13.605187 + - rot: 1.5707963267948966 rad + pos: 57.456432,27.569693 + parent: 6747 + type: Transform + - uid: 26925 + components: + - pos: 11.5889635,-17.454758 parent: 6747 type: Transform - proto: GasCanisterBrokenBase @@ -70832,6 +75575,13 @@ entities: type: Transform - proto: GasFilter entities: + - uid: 7361 + components: + - pos: 11.5,-20.5 + parent: 6747 + type: Transform + - color: '#99FFFFFF' + type: AtmosPipeColor - uid: 7925 components: - rot: 1.5707963267948966 rad @@ -70848,6 +75598,50 @@ entities: type: Transform - color: '#66FF66FF' type: AtmosPipeColor + - uid: 11971 + components: + - rot: 3.141592653589793 rad + pos: 58.5,38.5 + parent: 6747 + type: Transform + - color: '#00FFFFFF' + type: AtmosPipeColor + - uid: 13117 + components: + - rot: -1.5707963267948966 rad + pos: 60.5,31.5 + parent: 6747 + type: Transform + - uid: 13152 + components: + - rot: -1.5707963267948966 rad + pos: 59.5,31.5 + parent: 6747 + type: Transform + - color: '#CC6600FF' + type: AtmosPipeColor + - uid: 13364 + components: + - pos: 60.5,35.5 + parent: 6747 + type: Transform + - color: '#00FFFFFF' + type: AtmosPipeColor + - uid: 13369 + components: + - rot: 3.141592653589793 rad + pos: 62.5,35.5 + parent: 6747 + type: Transform + - color: '#00FFFFFF' + type: AtmosPipeColor + - uid: 26913 + components: + - pos: 11.5,-19.5 + parent: 6747 + type: Transform + - color: '#99FFFFFF' + type: AtmosPipeColor - proto: GasFilterFlipped entities: - uid: 7867 @@ -70905,16 +75699,16 @@ entities: type: Transform - color: '#CC6600FF' type: AtmosPipeColor -- proto: GasMinerNitrogen +- proto: GasMinerNitrogenStation entities: - - uid: 7942 + - uid: 6692 components: - pos: 38.5,41.5 parent: 6747 type: Transform -- proto: GasMinerOxygen +- proto: GasMinerOxygenStation entities: - - uid: 7941 + - uid: 6693 components: - pos: 36.5,41.5 parent: 6747 @@ -70955,6 +75749,12 @@ entities: type: Transform - proto: GasOutletInjector entities: + - uid: 250 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,9.5 + parent: 6747 + type: Transform - uid: 7259 components: - pos: 42.5,40.5 @@ -71026,6 +75826,18 @@ entities: pos: 1.5,-90.5 parent: 6747 type: Transform + - uid: 13284 + components: + - rot: -1.5707963267948966 rad + pos: 65.5,28.5 + parent: 6747 + type: Transform + - uid: 13370 + components: + - rot: -1.5707963267948966 rad + pos: 65.5,35.5 + parent: 6747 + type: Transform - uid: 15078 components: - rot: 1.5707963267948966 rad @@ -71075,12 +75887,6 @@ entities: - pos: -26.5,15.5 parent: 6747 type: Transform - - uid: 16593 - components: - - rot: -1.5707963267948966 rad - pos: -19.5,10.5 - parent: 6747 - type: Transform - proto: GasPassiveGate entities: - uid: 7933 @@ -71089,7 +75895,7 @@ entities: pos: 46.5,31.5 parent: 6747 type: Transform - - color: '#CC6600FF' + - color: '#66FF66FF' type: AtmosPipeColor - uid: 23527 components: @@ -71174,6 +75980,8 @@ entities: - pos: 51.5,38.5 parent: 6747 type: Transform + - color: '#CC6600FF' + type: AtmosPipeColor - uid: 8151 components: - pos: 53.5,44.5 @@ -71185,8 +75993,20 @@ entities: pos: 2.5,-89.5 parent: 6747 type: Transform + - uid: 13272 + components: + - pos: 57.5,41.5 + parent: 6747 + type: Transform - proto: GasPipeBend entities: + - uid: 344 + components: + - pos: -23.5,7.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor - uid: 455 components: - rot: 3.141592653589793 rad @@ -71195,6 +76015,36 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor + - uid: 476 + components: + - pos: -8.5,9.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 510 + components: + - rot: 3.141592653589793 rad + pos: -8.5,5.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 755 + components: + - pos: -18.5,10.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1489 + components: + - rot: 3.141592653589793 rad + pos: -21.5,10.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor - uid: 3226 components: - rot: -1.5707963267948966 rad @@ -71211,6 +76061,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor + - uid: 6183 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-21.5 + parent: 6747 + type: Transform + - color: '#99FFFFFF' + type: AtmosPipeColor - uid: 6750 components: - rot: 3.141592653589793 rad @@ -71344,14 +76202,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 8110 - components: - - rot: -1.5707963267948966 rad - pos: 53.5,35.5 - parent: 6747 - type: Transform - - color: '#CC6600FF' - type: AtmosPipeColor - uid: 8119 components: - rot: -1.5707963267948966 rad @@ -71400,6 +76250,13 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor + - uid: 8802 + components: + - pos: 55.5,35.5 + parent: 6747 + type: Transform + - color: '#CC6600FF' + type: AtmosPipeColor - uid: 11197 components: - rot: -1.5707963267948966 rad @@ -71446,45 +76303,137 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 12994 + - uid: 11943 components: - - rot: -1.5707963267948966 rad - pos: 53.5,21.5 + - rot: 3.141592653589793 rad + pos: 55.5,33.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#CC6600FF' type: AtmosPipeColor - - uid: 12995 + - uid: 12866 + components: + - rot: 3.141592653589793 rad + pos: 57.5,29.5 + parent: 6747 + type: Transform + - color: '#CC6600FF' + type: AtmosPipeColor + - uid: 13051 components: - rot: -1.5707963267948966 rad - pos: 54.5,20.5 + pos: 68.5,29.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#FF5500FF' type: AtmosPipeColor - - uid: 13055 + - uid: 13052 + components: + - pos: 68.5,30.5 + parent: 6747 + type: Transform + - color: '#FF5500FF' + type: AtmosPipeColor + - uid: 13053 components: - rot: 3.141592653589793 rad - pos: 41.5,17.5 + pos: 65.5,30.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF5500FF' type: AtmosPipeColor - - uid: 13056 + - uid: 13054 components: - rot: 3.141592653589793 rad - pos: 40.5,13.5 + pos: 65.5,32.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#FF5500FF' + type: AtmosPipeColor + - uid: 13055 + components: + - rot: -1.5707963267948966 rad + pos: 68.5,31.5 + parent: 6747 + type: Transform + - color: '#FF5500FF' + type: AtmosPipeColor + - uid: 13056 + components: + - rot: -1.5707963267948966 rad + pos: 68.5,33.5 + parent: 6747 + type: Transform + - color: '#FF5500FF' + type: AtmosPipeColor + - uid: 13057 + components: + - pos: 68.5,34.5 + parent: 6747 + type: Transform + - color: '#FF5500FF' + type: AtmosPipeColor + - uid: 13058 + components: + - rot: 1.5707963267948966 rad + pos: 63.5,34.5 + parent: 6747 + type: Transform + - color: '#FF5500FF' + type: AtmosPipeColor + - uid: 13060 + components: + - rot: -1.5707963267948966 rad + pos: 63.5,31.5 + parent: 6747 + type: Transform + - color: '#FF5500FF' type: AtmosPipeColor - uid: 13063 + components: + - pos: 54.5,23.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13066 components: - rot: -1.5707963267948966 rad - pos: 53.5,13.5 + pos: 62.5,33.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#00FFFFFF' + type: AtmosPipeColor + - uid: 13073 + components: + - rot: 3.141592653589793 rad + pos: 51.5,23.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13085 + components: + - rot: 1.5707963267948966 rad + pos: 65.5,31.5 + parent: 6747 + type: Transform + - color: '#FF5500FF' + type: AtmosPipeColor + - uid: 13086 + components: + - pos: 68.5,32.5 + parent: 6747 + type: Transform + - color: '#FF5500FF' + type: AtmosPipeColor + - uid: 13087 + components: + - rot: 1.5707963267948966 rad + pos: 65.5,33.5 + parent: 6747 + type: Transform + - color: '#FF5500FF' type: AtmosPipeColor - uid: 13098 components: @@ -71501,36 +76450,33 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13100 + - uid: 13119 components: - - pos: 48.5,12.5 + - rot: 1.5707963267948966 rad + pos: 58.5,31.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#CC6600FF' type: AtmosPipeColor - - uid: 13102 + - uid: 13137 components: - rot: -1.5707963267948966 rad - pos: 54.5,8.5 + pos: 41.5,21.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13127 + - uid: 13142 components: - - rot: 1.5707963267948966 rad - pos: 34.5,21.5 + - pos: 59.5,32.5 parent: 6747 type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 13128 + - uid: 13146 components: - - rot: 1.5707963267948966 rad - pos: 35.5,20.5 + - pos: 57.5,33.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#CC6600FF' type: AtmosPipeColor - uid: 13188 components: @@ -71547,6 +76493,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor + - uid: 13225 + components: + - rot: 3.141592653589793 rad + pos: 30.5,20.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor - uid: 13261 components: - rot: -1.5707963267948966 rad @@ -71555,6 +76509,12 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor + - uid: 13273 + components: + - rot: 3.141592653589793 rad + pos: 58.5,32.5 + parent: 6747 + type: Transform - uid: 13275 components: - rot: 3.141592653589793 rad @@ -71563,21 +76523,124 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13322 + - uid: 13297 + components: + - pos: 58.5,39.5 + parent: 6747 + type: Transform + - uid: 13298 components: - rot: 3.141592653589793 rad - pos: 17.5,36.5 + pos: 57.5,39.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - uid: 13303 + components: + - rot: 1.5707963267948966 rad + pos: 60.5,43.5 + parent: 6747 + type: Transform + - color: '#00FFFFFF' type: AtmosPipeColor - - uid: 13323 + - uid: 13304 + components: + - pos: 63.5,43.5 + parent: 6747 + type: Transform + - color: '#00FFFFFF' + type: AtmosPipeColor + - uid: 13305 + components: + - rot: -1.5707963267948966 rad + pos: 63.5,42.5 + parent: 6747 + type: Transform + - color: '#00FFFFFF' + type: AtmosPipeColor + - uid: 13306 + components: + - rot: 1.5707963267948966 rad + pos: 61.5,42.5 + parent: 6747 + type: Transform + - color: '#00FFFFFF' + type: AtmosPipeColor + - uid: 13308 components: - rot: 3.141592653589793 rad - pos: 18.5,37.5 + pos: 61.5,41.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#00FFFFFF' + type: AtmosPipeColor + - uid: 13309 + components: + - pos: 63.5,41.5 + parent: 6747 + type: Transform + - color: '#00FFFFFF' + type: AtmosPipeColor + - uid: 13310 + components: + - rot: -1.5707963267948966 rad + pos: 63.5,40.5 + parent: 6747 + type: Transform + - color: '#00FFFFFF' + type: AtmosPipeColor + - uid: 13311 + components: + - rot: 1.5707963267948966 rad + pos: 61.5,40.5 + parent: 6747 + type: Transform + - color: '#00FFFFFF' + type: AtmosPipeColor + - uid: 13312 + components: + - rot: 3.141592653589793 rad + pos: 61.5,39.5 + parent: 6747 + type: Transform + - color: '#00FFFFFF' + type: AtmosPipeColor + - uid: 13313 + components: + - pos: 63.5,39.5 + parent: 6747 + type: Transform + - color: '#00FFFFFF' + type: AtmosPipeColor + - uid: 13314 + components: + - rot: -1.5707963267948966 rad + pos: 63.5,38.5 + parent: 6747 + type: Transform + - color: '#00FFFFFF' + type: AtmosPipeColor + - uid: 13315 + components: + - rot: 1.5707963267948966 rad + pos: 61.5,38.5 + parent: 6747 + type: Transform + - color: '#00FFFFFF' + type: AtmosPipeColor + - uid: 13316 + components: + - rot: 3.141592653589793 rad + pos: 61.5,37.5 + parent: 6747 + type: Transform + - color: '#00FFFFFF' + type: AtmosPipeColor + - uid: 13317 + components: + - pos: 62.5,37.5 + parent: 6747 + type: Transform + - color: '#00FFFFFF' type: AtmosPipeColor - uid: 13342 components: @@ -72290,14 +77353,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 16562 - components: - - rot: 3.141592653589793 rad - pos: -21.5,7.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - uid: 16563 components: - pos: -21.5,11.5 @@ -72418,6 +77473,29 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor + - uid: 22045 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-22.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22046 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-21.5 + parent: 6747 + type: Transform + - color: '#99FFFFFF' + type: AtmosPipeColor + - uid: 22049 + components: + - pos: 7.5,29.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor - uid: 22557 components: - rot: 1.5707963267948966 rad @@ -72434,39 +77512,46 @@ entities: type: Transform - color: '#CC6600FF' type: AtmosPipeColor - - uid: 23619 + - uid: 22750 components: - - pos: 7.5,2.5 + - pos: 17.5,20.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23620 + - uid: 22752 components: - - rot: 3.141592653589793 rad - pos: 2.5,2.5 + - pos: 14.5,27.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 23621 + - uid: 22754 components: - - pos: 2.5,5.5 + - rot: -1.5707963267948966 rad + pos: 19.5,24.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23619 + components: + - pos: 7.5,2.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 23622 + - uid: 23620 components: - rot: 3.141592653589793 rad - pos: -16.5,5.5 + pos: 2.5,2.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 23623 + - uid: 23621 components: - - pos: -16.5,7.5 + - pos: 2.5,5.5 parent: 6747 type: Transform - color: '#0335FCFF' @@ -72507,29 +77592,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24003 - components: - - rot: 3.141592653589793 rad - pos: 17.5,20.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 24004 - components: - - pos: 17.5,21.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 24016 - components: - - rot: 1.5707963267948966 rad - pos: 10.5,22.5 - parent: 6747 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - uid: 24081 components: - rot: 1.5707963267948966 rad @@ -73066,144 +78128,256 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25183 + - uid: 25183 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-20.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25427 + components: + - pos: -52.5,-9.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25437 + components: + - rot: 3.141592653589793 rad + pos: -54.5,-11.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25438 + components: + - rot: 1.5707963267948966 rad + pos: -54.5,-7.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 26024 + components: + - rot: -1.5707963267948966 rad + pos: 57.5,16.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 26048 + components: + - pos: 63.5,26.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 26060 + components: + - pos: 67.5,13.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 26061 + components: + - rot: 3.141592653589793 rad + pos: 67.5,11.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 26062 + components: + - pos: 71.5,11.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 26073 + components: + - pos: 60.5,9.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 26109 + components: + - pos: 73.5,18.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 26171 + components: + - pos: 29.5,32.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 26225 + components: + - rot: -1.5707963267948966 rad + pos: 61.5,7.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 26277 + components: + - pos: 34.5,14.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 26327 components: - - rot: 3.141592653589793 rad - pos: -18.5,-20.5 + - pos: 13.5,26.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25427 + - uid: 26330 components: - - pos: -52.5,-9.5 + - rot: 1.5707963267948966 rad + pos: 4.5,26.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25437 + - uid: 26819 components: - - rot: 3.141592653589793 rad - pos: -54.5,-11.5 + - pos: -22.5,8.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25438 + - uid: 26822 components: - rot: 1.5707963267948966 rad - pos: -54.5,-7.5 + pos: -19.5,4.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25600 + - uid: 26823 components: - rot: 1.5707963267948966 rad - pos: 7.5,26.5 + pos: -20.5,6.5 parent: 6747 type: Transform -- proto: GasPipeFourway - entities: - - uid: 360 + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 26912 components: - - pos: 11.5,26.5 + - rot: 1.5707963267948966 rad + pos: 11.5,-18.5 parent: 6747 type: Transform - - uid: 5993 + - color: '#99FFFFFF' + type: AtmosPipeColor + - uid: 26919 components: - - pos: -46.5,-11.5 + - pos: 11.5,-22.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 7928 + - uid: 26920 components: - - pos: 51.5,35.5 + - rot: 3.141592653589793 rad + pos: 11.5,-23.5 parent: 6747 type: Transform - - color: '#CC6600FF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 10078 + - uid: 26993 components: - - pos: 48.5,-46.5 + - pos: 20.5,11.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 11410 + - uid: 26994 components: - - pos: 43.5,32.5 + - rot: 3.141592653589793 rad + pos: 19.5,11.5 parent: 6747 type: Transform - - color: '#66FF66FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 12992 + - uid: 26995 components: - - pos: 41.5,21.5 + - pos: 19.5,13.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 12993 + - uid: 26996 components: - - pos: 40.5,20.5 + - rot: 3.141592653589793 rad + pos: 16.5,13.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13174 + - uid: 27013 components: - - pos: 26.5,9.5 + - pos: 6.5,27.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13245 + - uid: 27014 components: - - pos: 26.5,6.5 + - rot: 1.5707963267948966 rad + pos: 3.5,27.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13315 +- proto: GasPipeFourway + entities: + - uid: 360 components: - - pos: 22.5,26.5 + - pos: 11.5,26.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13316 + - uid: 5993 components: - - pos: 23.5,27.5 + - pos: -46.5,-11.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13320 + - uid: 7928 components: - - pos: 22.5,32.5 + - pos: 51.5,35.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#CC6600FF' type: AtmosPipeColor - - uid: 13321 + - uid: 10078 components: - - pos: 23.5,31.5 + - pos: 48.5,-46.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13324 + - uid: 11410 components: - - pos: 28.5,27.5 + - pos: 43.5,32.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#66FF66FF' type: AtmosPipeColor - - uid: 13325 + - uid: 13245 components: - - pos: 29.5,26.5 + - pos: 26.5,6.5 parent: 6747 type: Transform - color: '#FF1212FF' @@ -73432,6 +78606,27 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor + - uid: 22052 + components: + - pos: 12.5,-18.5 + parent: 6747 + type: Transform + - color: '#99FFFFFF' + type: AtmosPipeColor + - uid: 22061 + components: + - pos: 20.5,10.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 22071 + components: + - pos: 7.5,26.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor - uid: 23681 components: - pos: -1.5,-1.5 @@ -73532,12 +78727,110 @@ entities: type: AtmosPipeColor - proto: GasPipeStraight entities: - - uid: 365 + - uid: 241 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,10.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 243 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,10.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 254 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,9.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 265 + components: + - rot: 3.141592653589793 rad + pos: -8.5,7.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 266 + components: + - rot: 3.141592653589793 rad + pos: -8.5,8.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 267 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,9.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 269 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,9.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 272 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,9.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 335 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,9.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 381 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,9.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 437 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,9.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 444 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,9.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 3126 components: - rot: 3.141592653589793 rad - pos: 5.5,24.5 + pos: -8.5,6.5 parent: 6747 type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor - uid: 3669 components: - rot: 1.5707963267948966 rad @@ -73593,6 +78886,12 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor + - uid: 7485 + components: + - rot: -1.5707963267948966 rad + pos: 64.5,28.5 + parent: 6747 + type: Transform - uid: 7541 components: - rot: 1.5707963267948966 rad @@ -74323,18 +79622,18 @@ entities: type: Transform - color: '#CC6600FF' type: AtmosPipeColor - - uid: 8111 + - uid: 8061 components: - - rot: 3.141592653589793 rad - pos: 53.5,36.5 + - rot: -1.5707963267948966 rad + pos: 52.5,35.5 parent: 6747 type: Transform - color: '#CC6600FF' type: AtmosPipeColor - - uid: 8112 + - uid: 8111 components: - rot: 3.141592653589793 rad - pos: 53.5,37.5 + pos: 53.5,36.5 parent: 6747 type: Transform - color: '#CC6600FF' @@ -74466,6 +79765,22 @@ entities: type: Transform - color: '#CC6600FF' type: AtmosPipeColor + - uid: 8726 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,9.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 8803 + components: + - rot: 1.5707963267948966 rad + pos: 54.5,35.5 + parent: 6747 + type: Transform + - color: '#CC6600FF' + type: AtmosPipeColor - uid: 10105 components: - rot: 1.5707963267948966 rad @@ -74574,22639 +79889,23537 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 11778 + - uid: 11778 + components: + - pos: 40.5,-49.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11779 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-46.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11780 + components: + - pos: 40.5,-48.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11781 + components: + - pos: 40.5,-47.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11782 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-46.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11783 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,-46.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11784 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,-46.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11802 + components: + - rot: 3.141592653589793 rad + pos: 62.5,-47.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11815 + components: + - rot: 3.141592653589793 rad + pos: 62.5,-48.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 11817 + components: + - rot: 3.141592653589793 rad + pos: 62.5,-49.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12988 + components: + - pos: 40.5,28.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12989 + components: + - pos: 41.5,28.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12990 + components: + - pos: 41.5,27.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 12991 + components: + - pos: 40.5,27.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 12998 + components: + - pos: 57.5,32.5 + parent: 6747 + type: Transform + - color: '#CC6600FF' + type: AtmosPipeColor + - uid: 13005 + components: + - rot: -1.5707963267948966 rad + pos: 53.5,20.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13006 + components: + - rot: -1.5707963267948966 rad + pos: 52.5,20.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13007 + components: + - rot: -1.5707963267948966 rad + pos: 51.5,20.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13008 + components: + - rot: -1.5707963267948966 rad + pos: 50.5,20.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13009 + components: + - rot: -1.5707963267948966 rad + pos: 49.5,20.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13010 + components: + - rot: -1.5707963267948966 rad + pos: 48.5,20.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13011 + components: + - rot: -1.5707963267948966 rad + pos: 47.5,20.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13012 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,20.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13013 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,20.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13014 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,20.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13015 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,20.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13016 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,20.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13017 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,20.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13019 + components: + - rot: -1.5707963267948966 rad + pos: 56.5,20.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13020 + components: + - rot: 3.141592653589793 rad + pos: 60.5,19.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13024 + components: + - rot: 3.141592653589793 rad + pos: 54.5,21.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13025 + components: + - rot: -1.5707963267948966 rad + pos: 53.5,23.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13026 + components: + - rot: 3.141592653589793 rad + pos: 54.5,22.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13027 + components: + - rot: -1.5707963267948966 rad + pos: 52.5,23.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13028 + components: + - pos: 51.5,24.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13029 + components: + - rot: 3.141592653589793 rad + pos: 41.5,26.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13030 + components: + - rot: 3.141592653589793 rad + pos: 41.5,25.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13031 + components: + - rot: 3.141592653589793 rad + pos: 41.5,24.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13032 + components: + - rot: 3.141592653589793 rad + pos: 41.5,23.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13033 + components: + - rot: 3.141592653589793 rad + pos: 41.5,22.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13034 + components: + - rot: 3.141592653589793 rad + pos: 40.5,26.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13035 + components: + - rot: 3.141592653589793 rad + pos: 40.5,25.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13036 + components: + - rot: 3.141592653589793 rad + pos: 40.5,24.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13037 + components: + - rot: 3.141592653589793 rad + pos: 40.5,23.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13038 + components: + - rot: 3.141592653589793 rad + pos: 40.5,22.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13039 + components: + - rot: 3.141592653589793 rad + pos: 40.5,21.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13067 + components: + - rot: 1.5707963267948966 rad + pos: 55.5,16.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13068 + components: + - rot: 1.5707963267948966 rad + pos: 54.5,16.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13069 + components: + - pos: 53.5,15.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13070 + components: + - pos: 53.5,14.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13071 + components: + - rot: -1.5707963267948966 rad + pos: 52.5,13.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13072 + components: + - rot: -1.5707963267948966 rad + pos: 51.5,13.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13074 + components: + - rot: -1.5707963267948966 rad + pos: 49.5,13.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13075 + components: + - rot: -1.5707963267948966 rad + pos: 48.5,13.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13076 + components: + - rot: 3.141592653589793 rad + pos: 47.5,12.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13078 + components: + - rot: 3.141592653589793 rad + pos: 47.5,10.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13079 + components: + - rot: 3.141592653589793 rad + pos: 47.5,9.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13081 + components: + - rot: 3.141592653589793 rad + pos: 47.5,14.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13082 + components: + - rot: 3.141592653589793 rad + pos: 47.5,15.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13083 + components: + - rot: 3.141592653589793 rad + pos: 47.5,16.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13092 + components: + - rot: 1.5707963267948966 rad + pos: 67.5,33.5 + parent: 6747 + type: Transform + - color: '#FF5500FF' + type: AtmosPipeColor + - uid: 13093 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,13.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13094 + components: + - rot: -1.5707963267948966 rad + pos: 42.5,13.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13095 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,13.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13096 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,13.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13097 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,13.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13101 + components: + - rot: 1.5707963267948966 rad + pos: 66.5,32.5 + parent: 6747 + type: Transform + - color: '#FF5500FF' + type: AtmosPipeColor + - uid: 13102 + components: + - rot: 1.5707963267948966 rad + pos: 66.5,31.5 + parent: 6747 + type: Transform + - color: '#FF5500FF' + type: AtmosPipeColor + - uid: 13103 + components: + - rot: 1.5707963267948966 rad + pos: 67.5,30.5 + parent: 6747 + type: Transform + - color: '#FF5500FF' + type: AtmosPipeColor + - uid: 13104 + components: + - rot: 1.5707963267948966 rad + pos: 67.5,34.5 + parent: 6747 + type: Transform + - color: '#FF5500FF' + type: AtmosPipeColor + - uid: 13106 + components: + - rot: 1.5707963267948966 rad + pos: 66.5,34.5 + parent: 6747 + type: Transform + - color: '#FF5500FF' + type: AtmosPipeColor + - uid: 13108 + components: + - rot: 1.5707963267948966 rad + pos: 65.5,34.5 + parent: 6747 + type: Transform + - color: '#FF5500FF' + type: AtmosPipeColor + - uid: 13109 + components: + - rot: 1.5707963267948966 rad + pos: 64.5,34.5 + parent: 6747 + type: Transform + - color: '#FF5500FF' + type: AtmosPipeColor + - uid: 13110 + components: + - pos: 63.5,33.5 + parent: 6747 + type: Transform + - color: '#FF5500FF' + type: AtmosPipeColor + - uid: 13111 + components: + - pos: 63.5,32.5 + parent: 6747 + type: Transform + - color: '#FF5500FF' + type: AtmosPipeColor + - uid: 13112 + components: + - rot: -1.5707963267948966 rad + pos: 67.5,29.5 + parent: 6747 + type: Transform + - color: '#FF5500FF' + type: AtmosPipeColor + - uid: 13113 + components: + - rot: -1.5707963267948966 rad + pos: 66.5,29.5 + parent: 6747 + type: Transform + - color: '#FF5500FF' + type: AtmosPipeColor + - uid: 13114 + components: + - rot: -1.5707963267948966 rad + pos: 65.5,29.5 + parent: 6747 + type: Transform + - color: '#FF5500FF' + type: AtmosPipeColor + - uid: 13115 + components: + - rot: -1.5707963267948966 rad + pos: 64.5,29.5 + parent: 6747 + type: Transform + - color: '#FF5500FF' + type: AtmosPipeColor + - uid: 13118 + components: + - rot: 3.141592653589793 rad + pos: 58.5,30.5 + parent: 6747 + type: Transform + - color: '#CC6600FF' + type: AtmosPipeColor + - uid: 13120 + components: + - rot: 1.5707963267948966 rad + pos: 59.5,29.5 + parent: 6747 + type: Transform + - color: '#CC6600FF' + type: AtmosPipeColor + - uid: 13122 + components: + - rot: 3.141592653589793 rad + pos: 48.5,9.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13123 + components: + - rot: 3.141592653589793 rad + pos: 48.5,10.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13124 + components: + - rot: 3.141592653589793 rad + pos: 48.5,11.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13125 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,12.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13127 + components: + - pos: 52.5,16.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13129 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,21.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13130 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,21.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13131 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,21.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13133 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,21.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13134 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,21.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13135 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,20.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13136 + components: + - pos: 38.5,19.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13138 + components: + - rot: -1.5707963267948966 rad + pos: 58.5,20.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13139 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,21.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13140 + components: + - rot: -1.5707963267948966 rad + pos: 62.5,29.5 + parent: 6747 + type: Transform + - color: '#CC6600FF' + type: AtmosPipeColor + - uid: 13143 + components: + - pos: 57.5,31.5 + parent: 6747 + type: Transform + - color: '#CC6600FF' + type: AtmosPipeColor + - uid: 13144 + components: + - pos: 57.5,30.5 + parent: 6747 + type: Transform + - color: '#CC6600FF' + type: AtmosPipeColor + - uid: 13147 + components: + - pos: 34.5,12.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13148 + components: + - pos: 34.5,11.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 13149 + components: + - rot: -1.5707963267948966 rad + pos: 56.5,33.5 + parent: 6747 + type: Transform + - color: '#CC6600FF' + type: AtmosPipeColor + - uid: 13155 + components: + - rot: 3.141592653589793 rad + pos: 58.5,36.5 + parent: 6747 + type: Transform + - uid: 13156 + components: + - pos: 35.5,12.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13161 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,32.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13164 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,9.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13165 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,9.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13166 components: - - pos: 40.5,-49.5 + - rot: -1.5707963267948966 rad + pos: 38.5,10.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 11779 + - uid: 13168 components: - - rot: 1.5707963267948966 rad - pos: 33.5,-46.5 + - rot: -1.5707963267948966 rad + pos: 36.5,10.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 11780 + - uid: 13169 components: - - pos: 40.5,-48.5 + - rot: -1.5707963267948966 rad + pos: 35.5,10.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 11781 + - uid: 13170 components: - - pos: 40.5,-47.5 + - rot: 1.5707963267948966 rad + pos: 3.5,32.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 11782 + - uid: 13171 components: - rot: 1.5707963267948966 rad - pos: 29.5,-46.5 + pos: 5.5,32.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 11783 + - uid: 13172 components: - rot: 1.5707963267948966 rad - pos: 31.5,-46.5 + pos: 6.5,32.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 11784 + - uid: 13173 components: - rot: 1.5707963267948966 rad - pos: 32.5,-46.5 + pos: 4.5,32.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 11802 + - uid: 13177 components: - - rot: 3.141592653589793 rad - pos: 62.5,-47.5 + - pos: 24.5,-1.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 11815 + - uid: 13178 components: - - rot: 3.141592653589793 rad - pos: 62.5,-48.5 + - pos: 24.5,-0.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 11817 + - uid: 13179 components: - - rot: 3.141592653589793 rad - pos: 62.5,-49.5 + - pos: 24.5,0.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 12988 + - uid: 13180 components: - - pos: 40.5,28.5 + - pos: 24.5,1.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 12989 + - uid: 13181 components: - - pos: 41.5,28.5 + - pos: 24.5,2.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 12990 + - uid: 13182 components: - - pos: 41.5,27.5 + - pos: 24.5,3.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 12991 + - uid: 13183 components: - - pos: 40.5,27.5 + - pos: 24.5,4.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 12998 + - uid: 13184 components: - - pos: 53.5,24.5 + - pos: 20.5,9.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 12999 + - uid: 13185 components: - - pos: 53.5,23.5 + - pos: 20.5,8.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13000 + - uid: 13186 components: - - pos: 53.5,22.5 + - pos: 20.5,7.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13001 + - uid: 13187 components: - - pos: 54.5,24.5 + - pos: 20.5,6.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13002 + - uid: 13190 components: - - pos: 54.5,23.5 + - rot: 1.5707963267948966 rad + pos: 21.5,5.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13003 + - uid: 13191 components: - - pos: 54.5,22.5 + - rot: 1.5707963267948966 rad + pos: 22.5,5.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13004 + - uid: 13192 components: - - pos: 54.5,21.5 + - rot: 1.5707963267948966 rad + pos: 23.5,5.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13005 + - uid: 13193 components: - - rot: -1.5707963267948966 rad - pos: 53.5,20.5 + - rot: 1.5707963267948966 rad + pos: 33.5,10.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13006 + - uid: 13194 components: - - rot: -1.5707963267948966 rad - pos: 52.5,20.5 + - rot: 1.5707963267948966 rad + pos: 32.5,10.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13007 + - uid: 13195 components: - - rot: -1.5707963267948966 rad - pos: 51.5,20.5 + - rot: 1.5707963267948966 rad + pos: 31.5,10.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13008 + - uid: 13196 components: - - rot: -1.5707963267948966 rad - pos: 50.5,20.5 + - rot: 1.5707963267948966 rad + pos: 30.5,10.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13009 + - uid: 13197 components: - - rot: -1.5707963267948966 rad - pos: 49.5,20.5 + - rot: 1.5707963267948966 rad + pos: 34.5,9.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13010 + - uid: 13198 components: - - rot: -1.5707963267948966 rad - pos: 48.5,20.5 + - rot: 1.5707963267948966 rad + pos: 33.5,9.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13011 + - uid: 13199 components: - - rot: -1.5707963267948966 rad - pos: 47.5,20.5 + - rot: 1.5707963267948966 rad + pos: 32.5,9.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13012 + - uid: 13200 components: - - rot: -1.5707963267948966 rad - pos: 46.5,20.5 + - rot: 1.5707963267948966 rad + pos: 31.5,9.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13013 + - uid: 13201 components: - - rot: -1.5707963267948966 rad - pos: 45.5,20.5 + - rot: 1.5707963267948966 rad + pos: 30.5,9.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13014 + - uid: 13202 components: - - rot: -1.5707963267948966 rad - pos: 44.5,20.5 + - rot: 1.5707963267948966 rad + pos: 29.5,9.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13015 + - uid: 13203 components: - - rot: -1.5707963267948966 rad - pos: 43.5,20.5 + - rot: 1.5707963267948966 rad + pos: 28.5,9.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13016 + - uid: 13204 components: - - rot: -1.5707963267948966 rad - pos: 42.5,20.5 + - rot: 1.5707963267948966 rad + pos: 27.5,9.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13017 + - uid: 13207 components: - rot: -1.5707963267948966 rad - pos: 41.5,20.5 + pos: 21.5,9.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13018 + - uid: 13212 components: - - rot: -1.5707963267948966 rad - pos: 52.5,21.5 + - rot: 3.141592653589793 rad + pos: 58.5,34.5 parent: 6747 type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 13019 + - uid: 13213 components: - - rot: -1.5707963267948966 rad - pos: 51.5,21.5 + - rot: 1.5707963267948966 rad + pos: 2.5,32.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13020 + - uid: 13214 components: - - rot: -1.5707963267948966 rad - pos: 50.5,21.5 + - rot: 3.141592653589793 rad + pos: -1.5,34.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13021 + - uid: 13215 components: - - rot: -1.5707963267948966 rad - pos: 49.5,21.5 + - rot: 1.5707963267948966 rad + pos: -0.5,32.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13022 + - uid: 13216 components: - rot: -1.5707963267948966 rad - pos: 48.5,21.5 + pos: 28.5,10.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13023 + - uid: 13218 components: - rot: -1.5707963267948966 rad - pos: 47.5,21.5 + pos: 26.5,10.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13024 + - uid: 13219 components: - rot: -1.5707963267948966 rad - pos: 46.5,21.5 + pos: 25.5,10.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13025 + - uid: 13220 components: - rot: -1.5707963267948966 rad - pos: 45.5,21.5 + pos: 24.5,10.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13026 + - uid: 13221 components: - rot: -1.5707963267948966 rad - pos: 44.5,21.5 + pos: 23.5,10.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13027 + - uid: 13222 components: - rot: -1.5707963267948966 rad - pos: 43.5,21.5 + pos: 22.5,10.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13028 + - uid: 13223 components: - rot: -1.5707963267948966 rad - pos: 42.5,21.5 + pos: 21.5,10.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13029 + - uid: 13224 components: - - rot: 3.141592653589793 rad - pos: 41.5,26.5 + - rot: -1.5707963267948966 rad + pos: 20.5,9.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13030 + - uid: 13226 components: - - rot: 3.141592653589793 rad - pos: 41.5,25.5 + - rot: -1.5707963267948966 rad + pos: 23.5,9.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13031 + - uid: 13227 components: - - rot: 3.141592653589793 rad - pos: 41.5,24.5 + - rot: -1.5707963267948966 rad + pos: 24.5,9.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13032 + - uid: 13228 components: - - rot: 3.141592653589793 rad - pos: 41.5,23.5 + - rot: -1.5707963267948966 rad + pos: 25.5,9.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13033 + - uid: 13229 components: - - rot: 3.141592653589793 rad - pos: 41.5,22.5 + - rot: 1.5707963267948966 rad + pos: 35.5,9.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13034 + - uid: 13230 components: - - rot: 3.141592653589793 rad - pos: 40.5,26.5 + - rot: 1.5707963267948966 rad + pos: 29.5,10.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13035 + - uid: 13243 components: - rot: 3.141592653589793 rad - pos: 40.5,25.5 + pos: 26.5,8.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13036 + - uid: 13244 components: - rot: 3.141592653589793 rad - pos: 40.5,24.5 + pos: 26.5,7.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13037 + - uid: 13247 components: - - rot: 3.141592653589793 rad - pos: 40.5,23.5 + - rot: 1.5707963267948966 rad + pos: 24.5,-1.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13038 + - uid: 13248 components: - - rot: 3.141592653589793 rad - pos: 40.5,22.5 + - pos: 25.5,4.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13039 + - uid: 13249 components: - - rot: 3.141592653589793 rad - pos: 40.5,21.5 + - pos: 25.5,3.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13040 + - uid: 13250 components: - - pos: 41.5,20.5 + - pos: 25.5,2.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13041 + - uid: 13251 components: - - pos: 41.5,19.5 + - pos: 25.5,1.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13051 + - uid: 13252 components: - - pos: 41.5,18.5 + - pos: 25.5,0.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13052 + - uid: 13253 components: - - pos: 40.5,19.5 + - pos: 25.5,-0.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13053 + - uid: 13262 components: - - pos: 40.5,18.5 + - rot: -1.5707963267948966 rad + pos: 25.5,6.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13065 + - uid: 13266 components: - rot: 1.5707963267948966 rad - pos: 57.5,16.5 + pos: 1.5,32.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13066 + - uid: 13268 components: - - rot: 1.5707963267948966 rad - pos: 56.5,16.5 + - rot: 3.141592653589793 rad + pos: 58.5,35.5 parent: 6747 type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 13067 + - uid: 13274 components: - - rot: 1.5707963267948966 rad - pos: 55.5,16.5 + - rot: 3.141592653589793 rad + pos: 58.5,33.5 parent: 6747 type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 13068 + - uid: 13276 components: - - rot: 1.5707963267948966 rad - pos: 54.5,16.5 + - rot: 3.141592653589793 rad + pos: -1.5,33.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13069 + - uid: 13277 components: - - pos: 53.5,15.5 + - rot: -1.5707963267948966 rad + pos: 62.5,31.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF5500FF' type: AtmosPipeColor - - uid: 13070 + - uid: 13279 components: - - pos: 53.5,14.5 + - rot: 1.5707963267948966 rad + pos: 0.5,32.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13071 + - uid: 13291 components: - - rot: -1.5707963267948966 rad - pos: 52.5,13.5 + - pos: 57.5,40.5 parent: 6747 type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 13072 + - uid: 13321 components: - rot: -1.5707963267948966 rad - pos: 51.5,13.5 + pos: 62.5,38.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#00FFFFFF' type: AtmosPipeColor - - uid: 13073 + - uid: 13322 components: - rot: -1.5707963267948966 rad - pos: 50.5,13.5 + pos: 62.5,43.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#00FFFFFF' type: AtmosPipeColor - - uid: 13074 + - uid: 13323 components: - rot: -1.5707963267948966 rad - pos: 49.5,13.5 + pos: 61.5,43.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#00FFFFFF' type: AtmosPipeColor - - uid: 13075 + - uid: 13324 components: - - rot: -1.5707963267948966 rad - pos: 48.5,13.5 + - rot: 3.141592653589793 rad + pos: 60.5,42.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#00FFFFFF' type: AtmosPipeColor - - uid: 13076 + - uid: 13325 components: - rot: 3.141592653589793 rad - pos: 47.5,12.5 + pos: 60.5,41.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#00FFFFFF' type: AtmosPipeColor - - uid: 13077 + - uid: 13326 components: - rot: 3.141592653589793 rad - pos: 47.5,11.5 + pos: 60.5,40.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#00FFFFFF' type: AtmosPipeColor - - uid: 13078 + - uid: 13327 components: - rot: 3.141592653589793 rad - pos: 47.5,10.5 + pos: 60.5,39.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#00FFFFFF' type: AtmosPipeColor - - uid: 13079 + - uid: 13337 components: - rot: 3.141592653589793 rad - pos: 47.5,9.5 + pos: 60.5,37.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#00FFFFFF' type: AtmosPipeColor - - uid: 13080 + - uid: 13338 components: - rot: 3.141592653589793 rad - pos: 47.5,8.5 + pos: 60.5,36.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#00FFFFFF' type: AtmosPipeColor - - uid: 13081 + - uid: 13339 components: - rot: 3.141592653589793 rad - pos: 47.5,14.5 + pos: 62.5,36.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#00FFFFFF' type: AtmosPipeColor - - uid: 13082 + - uid: 13343 components: - rot: 3.141592653589793 rad - pos: 47.5,15.5 + pos: -0.5,34.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13083 + - uid: 13344 components: - - rot: 3.141592653589793 rad - pos: 47.5,16.5 + - rot: 1.5707963267948966 rad + pos: 0.5,33.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13084 + - uid: 13345 components: - rot: 1.5707963267948966 rad - pos: 46.5,17.5 + pos: 1.5,33.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13085 + - uid: 13346 components: - rot: 1.5707963267948966 rad - pos: 45.5,17.5 + pos: 2.5,33.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13086 + - uid: 13347 components: - rot: 1.5707963267948966 rad - pos: 44.5,17.5 + pos: 3.5,33.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13087 + - uid: 13348 components: - rot: 1.5707963267948966 rad - pos: 43.5,17.5 + pos: 4.5,33.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13088 + - uid: 13350 components: - rot: 1.5707963267948966 rad - pos: 42.5,17.5 + pos: 6.5,33.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13090 + - uid: 13351 components: - - pos: 40.5,16.5 + - rot: 1.5707963267948966 rad + pos: 7.5,33.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13091 + - uid: 13352 components: - - pos: 40.5,15.5 + - rot: 1.5707963267948966 rad + pos: 8.5,33.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13092 + - uid: 13353 components: - - pos: 40.5,14.5 + - rot: 1.5707963267948966 rad + pos: 9.5,33.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13093 + - uid: 13354 components: - - rot: -1.5707963267948966 rad - pos: 41.5,13.5 + - rot: 1.5707963267948966 rad + pos: 10.5,33.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13094 + - uid: 13355 components: - - rot: -1.5707963267948966 rad - pos: 42.5,13.5 + - rot: 1.5707963267948966 rad + pos: 11.5,33.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13095 + - uid: 13356 components: - - rot: -1.5707963267948966 rad - pos: 43.5,13.5 + - pos: 12.5,32.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13096 + - uid: 13357 components: - - rot: -1.5707963267948966 rad - pos: 44.5,13.5 + - pos: 12.5,31.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13097 + - uid: 13358 components: - - rot: -1.5707963267948966 rad - pos: 45.5,13.5 + - pos: 12.5,30.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13107 + - uid: 13359 components: - - rot: 3.141592653589793 rad - pos: 54.5,16.5 + - pos: 12.5,29.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13108 + - uid: 13360 components: - - rot: 1.5707963267948966 rad - pos: 57.5,15.5 + - pos: 12.5,28.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13109 + - uid: 13361 components: - - rot: 1.5707963267948966 rad - pos: 56.5,15.5 + - rot: -1.5707963267948966 rad + pos: 11.5,27.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13110 + - uid: 13362 components: - - rot: 1.5707963267948966 rad - pos: 55.5,15.5 + - rot: -1.5707963267948966 rad + pos: 13.5,27.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13111 + - uid: 13367 components: - - pos: 54.5,14.5 + - pos: 58.5,37.5 parent: 6747 type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 13112 + - uid: 13368 components: - - pos: 54.5,13.5 + - rot: -1.5707963267948966 rad + pos: 59.5,38.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#00FFFFFF' type: AtmosPipeColor - - uid: 13113 + - uid: 13371 components: - - pos: 54.5,12.5 + - rot: -1.5707963267948966 rad + pos: 64.5,35.5 parent: 6747 type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 13114 + - uid: 13372 components: - - pos: 54.5,11.5 + - rot: -1.5707963267948966 rad + pos: 63.5,35.5 parent: 6747 type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 13115 + - uid: 13374 components: - - pos: 54.5,10.5 + - rot: 1.5707963267948966 rad + pos: 62.5,41.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#00FFFFFF' type: AtmosPipeColor - - uid: 13116 + - uid: 13389 components: - - pos: 54.5,9.5 + - rot: 1.5707963267948966 rad + pos: 8.5,32.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13117 + - uid: 13390 components: - - rot: -1.5707963267948966 rad - pos: 53.5,8.5 + - rot: 1.5707963267948966 rad + pos: 9.5,32.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13118 + - uid: 13391 components: - - rot: -1.5707963267948966 rad - pos: 52.5,8.5 + - rot: 1.5707963267948966 rad + pos: 10.5,32.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13119 + - uid: 13392 components: - - rot: -1.5707963267948966 rad - pos: 51.5,8.5 + - rot: 1.5707963267948966 rad + pos: 12.5,32.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13120 + - uid: 13393 components: - - rot: -1.5707963267948966 rad - pos: 50.5,8.5 + - pos: 11.5,31.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13121 + - uid: 13394 components: - - rot: -1.5707963267948966 rad - pos: 49.5,8.5 + - pos: 11.5,30.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13122 + - uid: 13395 components: - - rot: 3.141592653589793 rad - pos: 48.5,9.5 + - pos: 11.5,29.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13123 + - uid: 13396 components: - - rot: 3.141592653589793 rad - pos: 48.5,10.5 + - pos: 11.5,28.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13124 + - uid: 13397 components: - - rot: 3.141592653589793 rad - pos: 48.5,11.5 + - pos: 11.5,27.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13125 + - uid: 13398 components: - - rot: 1.5707963267948966 rad - pos: 47.5,12.5 + - rot: -1.5707963267948966 rad + pos: 12.5,26.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13129 + - uid: 13488 components: - rot: 1.5707963267948966 rad - pos: 40.5,21.5 + pos: -50.5,-41.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13130 + - uid: 13490 components: - rot: 1.5707963267948966 rad - pos: 39.5,21.5 + pos: -51.5,-41.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13131 + - uid: 13491 components: - rot: 1.5707963267948966 rad - pos: 38.5,21.5 + pos: -52.5,-41.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13132 + - uid: 13492 components: - rot: 1.5707963267948966 rad - pos: 37.5,21.5 + pos: -53.5,-41.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13133 + - uid: 13493 components: - rot: 1.5707963267948966 rad - pos: 36.5,21.5 + pos: -54.5,-41.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13134 + - uid: 13494 components: - rot: 1.5707963267948966 rad - pos: 35.5,21.5 + pos: -55.5,-41.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13135 + - uid: 13495 components: - rot: 1.5707963267948966 rad - pos: 39.5,20.5 + pos: 17.5,-69.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13136 + - uid: 13502 components: - rot: 1.5707963267948966 rad - pos: 38.5,20.5 + pos: 31.5,0.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13137 + - uid: 13503 components: - rot: 1.5707963267948966 rad - pos: 37.5,20.5 + pos: 32.5,0.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13138 + - uid: 13504 components: - rot: 1.5707963267948966 rad - pos: 36.5,20.5 + pos: 33.5,0.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13139 + - uid: 13505 components: - - pos: 34.5,20.5 + - rot: 1.5707963267948966 rad + pos: 34.5,0.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13140 + - uid: 13506 components: - - pos: 34.5,19.5 + - rot: 1.5707963267948966 rad + pos: 35.5,0.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13141 + - uid: 13508 components: - - pos: 34.5,18.5 + - rot: 1.5707963267948966 rad + pos: 36.5,-0.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13142 + - uid: 13509 components: - - pos: 34.5,17.5 + - rot: 1.5707963267948966 rad + pos: 35.5,-0.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13143 + - uid: 13510 components: - - pos: 34.5,16.5 + - rot: 1.5707963267948966 rad + pos: 34.5,-0.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13144 + - uid: 13511 components: - - pos: 34.5,15.5 + - rot: 1.5707963267948966 rad + pos: 33.5,-0.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13145 + - uid: 13513 components: - - pos: 34.5,14.5 + - rot: 3.141592653589793 rad + pos: 32.5,0.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13146 + - uid: 13514 components: - - pos: 34.5,13.5 + - rot: 3.141592653589793 rad + pos: 32.5,-1.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13147 + - uid: 13516 components: - - pos: 34.5,12.5 + - rot: 3.141592653589793 rad + pos: 32.5,-3.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13148 + - uid: 13517 components: - - pos: 34.5,11.5 + - rot: 3.141592653589793 rad + pos: 32.5,-4.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13149 - components: - - pos: 35.5,19.5 - parent: 6747 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 13150 + - uid: 13518 components: - - pos: 35.5,18.5 + - rot: 3.141592653589793 rad + pos: 32.5,-5.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13151 + - uid: 13519 components: - - pos: 35.5,17.5 + - rot: 3.141592653589793 rad + pos: 30.5,-0.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13152 + - uid: 13520 components: - - pos: 35.5,16.5 + - rot: 3.141592653589793 rad + pos: 30.5,-1.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13153 + - uid: 13521 components: - - pos: 35.5,15.5 + - rot: 3.141592653589793 rad + pos: 30.5,-2.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13154 + - uid: 13522 components: - - pos: 35.5,14.5 + - rot: 3.141592653589793 rad + pos: 30.5,-3.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13155 + - uid: 13523 components: - - pos: 35.5,13.5 + - rot: 3.141592653589793 rad + pos: 30.5,-4.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13156 + - uid: 13524 components: - - pos: 35.5,12.5 + - rot: 1.5707963267948966 rad + pos: 29.5,-5.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13157 + - uid: 13525 components: - - pos: 35.5,11.5 + - rot: 1.5707963267948966 rad + pos: 28.5,-5.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13158 + - uid: 13526 components: - - pos: 35.5,10.5 + - rot: 1.5707963267948966 rad + pos: 27.5,-5.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13161 + - uid: 13527 components: - rot: 1.5707963267948966 rad - pos: 7.5,32.5 + pos: 26.5,-5.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13163 + - uid: 13528 components: - - rot: -1.5707963267948966 rad - pos: 38.5,9.5 + - pos: 25.5,-2.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13164 + - uid: 13529 components: - - rot: -1.5707963267948966 rad - pos: 37.5,9.5 + - pos: 25.5,-3.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13165 + - uid: 13530 components: - - rot: -1.5707963267948966 rad - pos: 36.5,9.5 + - pos: 25.5,-4.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13166 + - uid: 13531 components: - - rot: -1.5707963267948966 rad - pos: 38.5,10.5 + - pos: 24.5,-3.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13167 + - uid: 13532 components: - - rot: -1.5707963267948966 rad - pos: 37.5,10.5 + - pos: 24.5,-4.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13168 + - uid: 13533 components: - - rot: -1.5707963267948966 rad - pos: 36.5,10.5 + - pos: 24.5,-5.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13169 + - uid: 13534 components: - rot: -1.5707963267948966 rad - pos: 35.5,10.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 13170 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,32.5 - parent: 6747 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 13171 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,32.5 - parent: 6747 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 13172 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,32.5 - parent: 6747 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 13173 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,32.5 - parent: 6747 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 13177 - components: - - pos: 24.5,-1.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 13178 - components: - - pos: 24.5,-0.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 13179 - components: - - pos: 24.5,0.5 + pos: 25.5,-6.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13180 + - uid: 13535 components: - - pos: 24.5,1.5 + - rot: -1.5707963267948966 rad + pos: 26.5,-6.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13181 + - uid: 13536 components: - - pos: 24.5,2.5 + - rot: -1.5707963267948966 rad + pos: 27.5,-6.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13182 + - uid: 13537 components: - - pos: 24.5,3.5 + - rot: -1.5707963267948966 rad + pos: 28.5,-6.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13183 + - uid: 13538 components: - - pos: 24.5,4.5 + - rot: -1.5707963267948966 rad + pos: 29.5,-6.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13184 + - uid: 13539 components: - - pos: 20.5,9.5 + - rot: -1.5707963267948966 rad + pos: 30.5,-6.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13185 + - uid: 13540 components: - - pos: 20.5,8.5 + - rot: -1.5707963267948966 rad + pos: 31.5,-6.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13186 + - uid: 13550 components: - - pos: 20.5,7.5 + - rot: -1.5707963267948966 rad + pos: 31.5,-5.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13187 + - uid: 13551 components: - - pos: 20.5,6.5 + - rot: -1.5707963267948966 rad + pos: 32.5,-5.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13190 + - uid: 13552 components: - - rot: 1.5707963267948966 rad - pos: 21.5,5.5 + - rot: 3.141592653589793 rad + pos: 33.5,-6.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13191 + - uid: 13553 components: - - rot: 1.5707963267948966 rad - pos: 22.5,5.5 + - rot: 3.141592653589793 rad + pos: 33.5,-7.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13192 + - uid: 13554 components: - - rot: 1.5707963267948966 rad - pos: 23.5,5.5 + - rot: 3.141592653589793 rad + pos: 33.5,-8.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13193 + - uid: 13555 components: - rot: 1.5707963267948966 rad - pos: 33.5,10.5 + pos: 34.5,-9.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13194 + - uid: 13556 components: - rot: 1.5707963267948966 rad - pos: 32.5,10.5 + pos: 35.5,-9.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13195 + - uid: 13557 components: - rot: 1.5707963267948966 rad - pos: 31.5,10.5 + pos: 36.5,-9.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13196 + - uid: 13558 components: - - rot: 1.5707963267948966 rad - pos: 30.5,10.5 + - pos: 37.5,-8.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13197 + - uid: 13559 components: - - rot: 1.5707963267948966 rad - pos: 34.5,9.5 + - pos: 37.5,-7.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13198 + - uid: 13562 components: - rot: 1.5707963267948966 rad - pos: 33.5,9.5 + pos: 39.5,-9.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13199 + - uid: 13563 components: - rot: 1.5707963267948966 rad - pos: 32.5,9.5 + pos: 40.5,-9.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13200 + - uid: 13564 components: - rot: 1.5707963267948966 rad - pos: 31.5,9.5 + pos: 41.5,-9.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13201 + - uid: 13565 components: - - rot: 1.5707963267948966 rad - pos: 30.5,9.5 + - pos: 42.5,-8.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13202 + - uid: 13566 components: - - rot: 1.5707963267948966 rad - pos: 29.5,9.5 + - pos: 42.5,-7.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13203 + - uid: 13567 components: - - rot: 1.5707963267948966 rad - pos: 28.5,9.5 + - rot: -1.5707963267948966 rad + pos: 43.5,-9.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13204 + - uid: 13568 components: - - rot: 1.5707963267948966 rad - pos: 27.5,9.5 + - rot: -1.5707963267948966 rad + pos: 44.5,-9.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13207 + - uid: 13569 components: - rot: -1.5707963267948966 rad - pos: 21.5,9.5 + pos: 45.5,-9.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13209 + - uid: 13570 components: - - pos: 29.5,11.5 + - rot: -1.5707963267948966 rad + pos: 46.5,-9.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13210 + - uid: 13571 components: - - pos: 29.5,12.5 + - rot: 3.141592653589793 rad + pos: 47.5,-8.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13211 + - uid: 13572 components: - - pos: 29.5,13.5 + - rot: 3.141592653589793 rad + pos: 47.5,-7.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13213 + - uid: 13573 components: - rot: 1.5707963267948966 rad - pos: 2.5,32.5 + pos: 48.5,-9.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13214 + - uid: 13574 components: - - rot: 3.141592653589793 rad - pos: -1.5,34.5 + - rot: 1.5707963267948966 rad + pos: 49.5,-9.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13215 + - uid: 13575 components: - rot: 1.5707963267948966 rad - pos: -0.5,32.5 + pos: 50.5,-9.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13216 + - uid: 13581 components: - - rot: -1.5707963267948966 rad - pos: 28.5,10.5 + - rot: 3.141592653589793 rad + pos: 42.5,-10.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13217 + - uid: 13582 components: - - rot: -1.5707963267948966 rad - pos: 27.5,10.5 + - rot: 3.141592653589793 rad + pos: 42.5,-11.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13218 + - uid: 13598 components: - - rot: -1.5707963267948966 rad - pos: 26.5,10.5 + - rot: 3.141592653589793 rad + pos: 30.5,-10.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13219 + - uid: 13599 components: - - rot: -1.5707963267948966 rad - pos: 25.5,10.5 + - rot: 3.141592653589793 rad + pos: 30.5,-11.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13220 + - uid: 13600 components: - - rot: -1.5707963267948966 rad - pos: 24.5,10.5 + - rot: 3.141592653589793 rad + pos: 30.5,-12.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13221 + - uid: 13601 components: - - rot: -1.5707963267948966 rad - pos: 23.5,10.5 + - rot: 3.141592653589793 rad + pos: 30.5,-14.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13222 + - uid: 13602 components: - - rot: -1.5707963267948966 rad - pos: 22.5,10.5 + - rot: 3.141592653589793 rad + pos: 30.5,-15.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13223 + - uid: 13603 components: - - rot: -1.5707963267948966 rad - pos: 21.5,10.5 + - rot: 3.141592653589793 rad + pos: 30.5,-16.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13224 + - uid: 13604 components: - - rot: -1.5707963267948966 rad - pos: 20.5,9.5 + - rot: 1.5707963267948966 rad + pos: 31.5,-17.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13225 + - uid: 13605 components: - - rot: -1.5707963267948966 rad - pos: 22.5,9.5 + - rot: 1.5707963267948966 rad + pos: 32.5,-17.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13226 + - uid: 13606 components: - - rot: -1.5707963267948966 rad - pos: 23.5,9.5 + - pos: 33.5,-16.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13227 + - uid: 13608 components: - - rot: -1.5707963267948966 rad - pos: 24.5,9.5 + - pos: 33.5,-14.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13228 + - uid: 13609 components: - - rot: -1.5707963267948966 rad - pos: 25.5,9.5 + - pos: 33.5,-13.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13229 + - uid: 13610 components: - - rot: 3.141592653589793 rad - pos: 26.5,10.5 + - pos: 33.5,-12.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13230 + - uid: 13611 components: - - rot: 3.141592653589793 rad - pos: 26.5,11.5 + - pos: 33.5,-11.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13231 + - uid: 13612 components: - - rot: 3.141592653589793 rad - pos: 26.5,12.5 + - pos: 33.5,-10.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13232 + - uid: 13613 components: - - rot: 3.141592653589793 rad - pos: 26.5,13.5 + - rot: -1.5707963267948966 rad + pos: 43.5,-12.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13233 + - uid: 13614 components: - - rot: 3.141592653589793 rad - pos: 26.5,14.5 + - rot: -1.5707963267948966 rad + pos: 44.5,-12.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13243 + - uid: 13615 components: - rot: 3.141592653589793 rad - pos: 26.5,8.5 + pos: 42.5,-13.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13244 + - uid: 13616 components: - rot: 3.141592653589793 rad - pos: 26.5,7.5 + pos: 42.5,-14.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13247 + - uid: 13617 components: - - rot: 1.5707963267948966 rad - pos: 24.5,-1.5 + - rot: 3.141592653589793 rad + pos: 42.5,-15.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13248 + - uid: 13618 components: - - pos: 25.5,4.5 + - rot: 1.5707963267948966 rad + pos: 43.5,-16.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13249 + - uid: 13619 components: - - pos: 25.5,3.5 + - rot: 1.5707963267948966 rad + pos: 44.5,-16.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13250 + - uid: 13620 components: - - pos: 25.5,2.5 + - pos: 42.5,-17.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13251 + - uid: 13621 components: - - pos: 25.5,1.5 + - pos: 42.5,-18.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13252 + - uid: 13622 components: - - pos: 25.5,0.5 + - pos: 42.5,-19.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13253 + - uid: 13623 components: - - pos: 25.5,-0.5 + - rot: -1.5707963267948966 rad + pos: 43.5,-20.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13262 + - uid: 13624 components: - rot: -1.5707963267948966 rad - pos: 25.5,6.5 + pos: 44.5,-20.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13265 - components: - - pos: 17.5,16.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 13266 + - uid: 13625 components: - - rot: 1.5707963267948966 rad - pos: 1.5,32.5 + - rot: -1.5707963267948966 rad + pos: 45.5,-20.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13267 + - uid: 13626 components: - rot: -1.5707963267948966 rad - pos: 25.5,15.5 + pos: 46.5,-20.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13268 + - uid: 13628 components: - rot: -1.5707963267948966 rad - pos: 24.5,15.5 + pos: 48.5,-20.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13269 + - uid: 13629 components: - rot: -1.5707963267948966 rad - pos: 23.5,15.5 + pos: 49.5,-20.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13271 + - uid: 13630 components: - rot: -1.5707963267948966 rad - pos: 21.5,15.5 + pos: 41.5,-20.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13272 + - uid: 13631 components: - rot: -1.5707963267948966 rad - pos: 19.5,15.5 + pos: 40.5,-20.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13276 + - uid: 13633 components: - - rot: 3.141592653589793 rad - pos: -1.5,33.5 + - rot: -1.5707963267948966 rad + pos: 38.5,-20.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13277 + - uid: 13640 components: - - pos: 16.5,16.5 + - pos: 37.5,-18.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13279 + - uid: 13641 components: - - rot: 1.5707963267948966 rad - pos: 0.5,32.5 + - pos: 37.5,-19.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13280 + - uid: 13642 components: - rot: -1.5707963267948966 rad - pos: 18.5,15.5 + pos: 36.5,-20.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13281 + - uid: 13643 components: - rot: -1.5707963267948966 rad - pos: 17.5,15.5 + pos: 34.5,-20.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13282 + - uid: 13644 components: - - pos: 17.5,15.5 + - rot: 3.141592653589793 rad + pos: 33.5,-18.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13283 + - uid: 13645 components: - - rot: 1.5707963267948966 rad - pos: 18.5,14.5 + - rot: 3.141592653589793 rad + pos: 33.5,-19.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13284 + - uid: 13646 components: - - rot: 1.5707963267948966 rad - pos: 19.5,14.5 + - rot: 3.141592653589793 rad + pos: 35.5,-21.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13286 + - uid: 13647 components: - - rot: 1.5707963267948966 rad - pos: 21.5,14.5 + - rot: 3.141592653589793 rad + pos: 35.5,-22.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13287 + - uid: 13648 components: - - rot: 1.5707963267948966 rad - pos: 22.5,14.5 + - rot: 3.141592653589793 rad + pos: 35.5,-23.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13289 + - uid: 13649 components: - - rot: 1.5707963267948966 rad - pos: 24.5,14.5 + - rot: 3.141592653589793 rad + pos: 39.5,-21.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13290 + - uid: 13650 components: - - rot: 1.5707963267948966 rad - pos: 25.5,14.5 + - rot: 3.141592653589793 rad + pos: 39.5,-22.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13291 + - uid: 13651 components: - - rot: 1.5707963267948966 rad - pos: 26.5,14.5 + - rot: 3.141592653589793 rad + pos: 39.5,-23.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13292 + - uid: 13652 components: - - rot: 1.5707963267948966 rad - pos: 27.5,14.5 + - rot: 3.141592653589793 rad + pos: 42.5,-21.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13293 + - uid: 13653 components: - - rot: 1.5707963267948966 rad - pos: 28.5,14.5 + - rot: 3.141592653589793 rad + pos: 42.5,-22.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13294 + - uid: 13654 components: - rot: 3.141592653589793 rad - pos: 22.5,16.5 + pos: 42.5,-23.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13295 + - uid: 13655 components: - rot: 3.141592653589793 rad - pos: 22.5,17.5 + pos: 47.5,-21.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13296 + - uid: 13656 components: - rot: 3.141592653589793 rad - pos: 22.5,18.5 + pos: 47.5,-22.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13297 + - uid: 13657 components: - rot: 3.141592653589793 rad - pos: 22.5,19.5 + pos: 47.5,-23.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13298 + - uid: 13663 components: - - rot: 3.141592653589793 rad - pos: 23.5,15.5 + - rot: -1.5707963267948966 rad + pos: 49.5,-21.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13299 + - uid: 13684 components: - - rot: 3.141592653589793 rad - pos: 23.5,16.5 + - rot: -1.5707963267948966 rad + pos: 48.5,-21.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13300 + - uid: 13685 components: - - rot: 3.141592653589793 rad - pos: 23.5,17.5 + - rot: -1.5707963267948966 rad + pos: 47.5,-21.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13301 + - uid: 13686 components: - rot: 3.141592653589793 rad - pos: 23.5,18.5 + pos: 46.5,-23.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13302 + - uid: 13687 components: - rot: 3.141592653589793 rad - pos: 23.5,19.5 + pos: 46.5,-22.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13303 + - uid: 13688 components: - - rot: 3.141592653589793 rad - pos: 22.5,20.5 + - rot: 1.5707963267948966 rad + pos: 45.5,-21.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13308 + - uid: 13689 components: - - pos: 22.5,23.5 + - rot: 1.5707963267948966 rad + pos: 44.5,-21.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13309 + - uid: 13690 components: - - pos: 22.5,24.5 + - rot: 1.5707963267948966 rad + pos: 43.5,-21.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13310 + - uid: 13691 components: - - pos: 22.5,25.5 + - rot: 1.5707963267948966 rad + pos: 42.5,-21.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13311 + - uid: 13692 components: - - pos: 23.5,22.5 + - pos: 41.5,-22.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13312 + - uid: 13693 components: - - pos: 23.5,23.5 + - pos: 41.5,-23.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13313 + - uid: 13694 components: - - pos: 23.5,24.5 + - rot: -1.5707963267948966 rad + pos: 40.5,-21.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13314 + - uid: 13695 components: - - pos: 23.5,25.5 + - rot: -1.5707963267948966 rad + pos: 39.5,-21.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13317 + - uid: 13696 components: - - pos: 23.5,26.5 + - rot: 3.141592653589793 rad + pos: 38.5,-22.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13343 + - uid: 13697 components: - rot: 3.141592653589793 rad - pos: -0.5,34.5 + pos: 38.5,-23.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13344 + - uid: 13698 components: - rot: 1.5707963267948966 rad - pos: 0.5,33.5 + pos: 37.5,-21.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13345 + - uid: 13699 components: - - rot: 1.5707963267948966 rad - pos: 1.5,33.5 + - pos: 36.5,-22.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13346 + - uid: 13700 components: - - rot: 1.5707963267948966 rad - pos: 2.5,33.5 + - pos: 36.5,-23.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13347 + - uid: 13701 components: - - rot: 1.5707963267948966 rad - pos: 3.5,33.5 + - pos: 36.5,-20.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13348 + - uid: 13702 components: - - rot: 1.5707963267948966 rad - pos: 4.5,33.5 + - pos: 36.5,-19.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13350 + - uid: 13703 components: - - rot: 1.5707963267948966 rad - pos: 6.5,33.5 + - pos: 36.5,-18.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13351 + - uid: 13704 components: - - rot: 1.5707963267948966 rad - pos: 7.5,33.5 + - rot: -1.5707963267948966 rad + pos: 35.5,-21.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13352 + - uid: 13705 components: - - rot: 1.5707963267948966 rad - pos: 8.5,33.5 + - rot: -1.5707963267948966 rad + pos: 34.5,-21.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13353 + - uid: 13706 components: - - rot: 1.5707963267948966 rad - pos: 9.5,33.5 + - rot: -1.5707963267948966 rad + pos: 33.5,-21.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13354 + - uid: 13710 components: - - rot: 1.5707963267948966 rad - pos: 10.5,33.5 + - pos: 28.5,-10.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13355 + - uid: 13711 components: - - rot: 1.5707963267948966 rad - pos: 11.5,33.5 + - pos: 28.5,-11.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13356 + - uid: 13712 components: - - pos: 12.5,32.5 + - pos: 28.5,-12.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13357 + - uid: 13713 components: - - pos: 12.5,31.5 + - pos: 28.5,-13.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13358 + - uid: 13714 components: - - pos: 12.5,30.5 + - pos: 28.5,-15.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13359 + - uid: 13715 components: - - pos: 12.5,29.5 + - pos: 28.5,-16.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13360 + - uid: 13716 components: - - pos: 12.5,28.5 + - pos: 28.5,-17.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13361 + - uid: 13717 components: - rot: -1.5707963267948966 rad - pos: 11.5,27.5 + pos: 29.5,-18.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13362 + - uid: 13718 components: - rot: -1.5707963267948966 rad - pos: 13.5,27.5 + pos: 30.5,-18.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13363 + - uid: 13719 components: - rot: -1.5707963267948966 rad - pos: 14.5,27.5 + pos: 31.5,-18.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13364 + - uid: 13720 components: - - rot: -1.5707963267948966 rad - pos: 15.5,27.5 + - rot: 3.141592653589793 rad + pos: 32.5,-20.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13365 + - uid: 13721 components: - - rot: -1.5707963267948966 rad - pos: 16.5,27.5 + - rot: 3.141592653589793 rad + pos: 32.5,-19.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13366 + - uid: 13722 components: - - rot: -1.5707963267948966 rad - pos: 18.5,27.5 + - rot: 3.141592653589793 rad + pos: 32.5,-17.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13367 + - uid: 13723 components: - - rot: -1.5707963267948966 rad - pos: 19.5,27.5 + - rot: 3.141592653589793 rad + pos: 32.5,-16.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13368 + - uid: 13724 components: - - rot: -1.5707963267948966 rad - pos: 20.5,27.5 + - rot: 3.141592653589793 rad + pos: 32.5,-15.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13369 + - uid: 13726 components: - - rot: -1.5707963267948966 rad - pos: 21.5,27.5 + - rot: 3.141592653589793 rad + pos: 32.5,-13.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13370 + - uid: 13727 components: - - rot: -1.5707963267948966 rad - pos: 22.5,27.5 + - rot: 3.141592653589793 rad + pos: 32.5,-12.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13371 + - uid: 13728 components: - rot: 3.141592653589793 rad - pos: 23.5,28.5 + pos: 32.5,-11.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13372 + - uid: 13729 components: - rot: 3.141592653589793 rad - pos: 23.5,29.5 + pos: 32.5,-9.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13373 + - uid: 13730 components: - rot: 3.141592653589793 rad - pos: 23.5,30.5 + pos: 32.5,-8.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13374 + - uid: 13731 components: - - rot: 1.5707963267948966 rad - pos: 22.5,31.5 + - rot: 3.141592653589793 rad + pos: 32.5,-7.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13375 + - uid: 13732 components: - rot: 1.5707963267948966 rad - pos: 21.5,31.5 + pos: 33.5,-10.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13377 + - uid: 13733 components: - rot: 1.5707963267948966 rad - pos: 24.5,31.5 + pos: 34.5,-10.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13378 + - uid: 13734 components: - - pos: 23.5,32.5 + - rot: 1.5707963267948966 rad + pos: 35.5,-10.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13379 + - uid: 13735 components: - - pos: 23.5,33.5 + - rot: 1.5707963267948966 rad + pos: 37.5,-10.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13380 + - uid: 13736 components: - - pos: 23.5,34.5 + - rot: 1.5707963267948966 rad + pos: 38.5,-10.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13381 + - uid: 13737 components: - - pos: 23.5,35.5 + - rot: 1.5707963267948966 rad + pos: 40.5,-10.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13382 + - uid: 13738 components: - - pos: 23.5,36.5 + - rot: 1.5707963267948966 rad + pos: 42.5,-10.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13383 + - uid: 13739 components: - - rot: -1.5707963267948966 rad - pos: 22.5,37.5 + - rot: 1.5707963267948966 rad + pos: 43.5,-10.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13384 + - uid: 13740 components: - - rot: -1.5707963267948966 rad - pos: 21.5,37.5 + - rot: 1.5707963267948966 rad + pos: 44.5,-10.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13385 + - uid: 13741 components: - - rot: -1.5707963267948966 rad - pos: 20.5,37.5 + - rot: 1.5707963267948966 rad + pos: 45.5,-10.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13386 + - uid: 13742 components: - - rot: -1.5707963267948966 rad - pos: 19.5,37.5 + - rot: 1.5707963267948966 rad + pos: 46.5,-10.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13387 + - uid: 13743 components: - - rot: 3.141592653589793 rad - pos: 18.5,39.5 + - rot: 1.5707963267948966 rad + pos: 47.5,-10.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13388 + - uid: 13744 components: - - rot: 3.141592653589793 rad - pos: 18.5,38.5 + - rot: 1.5707963267948966 rad + pos: 49.5,-10.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13389 + - uid: 13745 components: - rot: 1.5707963267948966 rad - pos: 8.5,32.5 + pos: 50.5,-10.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13390 + - uid: 13746 components: - - rot: 1.5707963267948966 rad - pos: 9.5,32.5 + - pos: 48.5,-9.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13391 + - uid: 13747 components: - - rot: 1.5707963267948966 rad - pos: 10.5,32.5 + - pos: 48.5,-8.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13392 + - uid: 13748 components: - - rot: 1.5707963267948966 rad - pos: 12.5,32.5 + - pos: 48.5,-7.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13393 + - uid: 13749 components: - - pos: 11.5,31.5 + - pos: 41.5,-9.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13394 + - uid: 13750 components: - - pos: 11.5,30.5 + - pos: 41.5,-8.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13395 + - uid: 13751 components: - - pos: 11.5,29.5 + - pos: 41.5,-7.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13396 + - uid: 13752 components: - - pos: 11.5,28.5 + - pos: 41.5,-11.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13397 + - uid: 13753 components: - - pos: 11.5,27.5 + - pos: 41.5,-12.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13398 + - uid: 13754 components: - rot: -1.5707963267948966 rad - pos: 12.5,26.5 + pos: 42.5,-13.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13399 + - uid: 13755 components: - rot: -1.5707963267948966 rad - pos: 13.5,26.5 + pos: 43.5,-13.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13400 + - uid: 13756 components: - rot: -1.5707963267948966 rad - pos: 14.5,26.5 + pos: 44.5,-13.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13401 + - uid: 13757 components: - - rot: -1.5707963267948966 rad - pos: 15.5,26.5 + - rot: 3.141592653589793 rad + pos: 37.5,-10.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13402 + - uid: 13758 components: - - rot: -1.5707963267948966 rad - pos: 16.5,26.5 + - rot: 3.141592653589793 rad + pos: 37.5,-11.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13403 + - uid: 13759 components: - - rot: -1.5707963267948966 rad - pos: 18.5,26.5 + - rot: 3.141592653589793 rad + pos: 37.5,-12.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13404 + - uid: 13760 components: - - rot: -1.5707963267948966 rad - pos: 19.5,26.5 + - rot: 3.141592653589793 rad + pos: 36.5,-12.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13405 + - uid: 13761 components: - - rot: -1.5707963267948966 rad - pos: 20.5,26.5 + - rot: 3.141592653589793 rad + pos: 36.5,-11.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13406 + - uid: 13762 components: - - rot: -1.5707963267948966 rad - pos: 21.5,26.5 + - rot: 3.141592653589793 rad + pos: 36.5,-9.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13407 + - uid: 13763 components: - - rot: -1.5707963267948966 rad - pos: 23.5,26.5 + - rot: 3.141592653589793 rad + pos: 36.5,-8.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13408 + - uid: 13764 components: - - rot: -1.5707963267948966 rad - pos: 24.5,26.5 + - rot: 3.141592653589793 rad + pos: 36.5,-7.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13409 + - uid: 13765 components: - - rot: -1.5707963267948966 rad - pos: 25.5,26.5 + - rot: 1.5707963267948966 rad + pos: 44.5,-17.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13410 + - uid: 13766 components: - - rot: -1.5707963267948966 rad - pos: 26.5,26.5 + - rot: 1.5707963267948966 rad + pos: 43.5,-17.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13411 + - uid: 13767 components: - - rot: -1.5707963267948966 rad - pos: 27.5,26.5 + - rot: 1.5707963267948966 rad + pos: 42.5,-17.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13412 + - uid: 13768 components: - - rot: -1.5707963267948966 rad - pos: 28.5,26.5 + - pos: 41.5,-14.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13413 + - uid: 13769 components: - - rot: -1.5707963267948966 rad - pos: 30.5,26.5 + - pos: 41.5,-15.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13414 + - uid: 13770 components: - - rot: -1.5707963267948966 rad - pos: 31.5,26.5 + - pos: 41.5,-16.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13415 + - uid: 13771 components: - - rot: -1.5707963267948966 rad - pos: 32.5,26.5 + - pos: 41.5,-18.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13416 + - uid: 13772 components: - - rot: -1.5707963267948966 rad - pos: 33.5,26.5 + - pos: 41.5,-19.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13417 + - uid: 13773 components: - - rot: -1.5707963267948966 rad - pos: 34.5,26.5 + - pos: 41.5,-20.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13418 + - uid: 13777 components: - - rot: -1.5707963267948966 rad - pos: 35.5,26.5 + - rot: 3.141592653589793 rad + pos: 24.5,-7.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13422 + - uid: 13778 components: - - pos: 29.5,31.5 + - rot: 3.141592653589793 rad + pos: 24.5,-8.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13423 + - uid: 13779 components: - - pos: 29.5,30.5 + - rot: 1.5707963267948966 rad + pos: 25.5,-9.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13424 + - uid: 13780 components: - - pos: 29.5,29.5 + - pos: 25.5,-6.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13425 + - uid: 13781 components: - - pos: 29.5,28.5 + - pos: 25.5,-7.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13426 + - uid: 13782 components: - - pos: 29.5,27.5 + - pos: 33.5,-21.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13431 + - uid: 13806 components: - - pos: 17.5,39.5 + - rot: 1.5707963267948966 rad + pos: 32.5,-20.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13432 + - uid: 13807 components: - - pos: 17.5,38.5 + - rot: 1.5707963267948966 rad + pos: 31.5,-20.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13433 + - uid: 13808 components: - - pos: 17.5,37.5 + - rot: 1.5707963267948966 rad + pos: 30.5,-20.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13434 + - uid: 13809 components: - - rot: -1.5707963267948966 rad - pos: 18.5,36.5 + - rot: 1.5707963267948966 rad + pos: 29.5,-20.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13435 + - uid: 13810 components: - - rot: -1.5707963267948966 rad - pos: 19.5,36.5 + - pos: 28.5,-21.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13436 + - uid: 13811 components: - - rot: -1.5707963267948966 rad - pos: 20.5,36.5 + - pos: 28.5,-22.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13437 + - uid: 13812 components: - - rot: -1.5707963267948966 rad - pos: 21.5,36.5 + - pos: 28.5,-23.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13438 + - uid: 13813 components: - - rot: -1.5707963267948966 rad - pos: 23.5,36.5 + - pos: 28.5,-24.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13439 + - uid: 13814 components: - rot: -1.5707963267948966 rad - pos: 24.5,36.5 + pos: 27.5,-25.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13440 + - uid: 13815 components: - - rot: 3.141592653589793 rad - pos: 22.5,35.5 + - rot: -1.5707963267948966 rad + pos: 26.5,-25.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13441 + - uid: 13816 components: - - rot: 3.141592653589793 rad - pos: 22.5,34.5 + - rot: -1.5707963267948966 rad + pos: 25.5,-25.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13442 + - uid: 13817 components: - rot: 3.141592653589793 rad - pos: 22.5,33.5 + pos: 24.5,-26.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13443 + - uid: 13818 components: - - rot: 1.5707963267948966 rad - pos: 21.5,32.5 + - rot: 3.141592653589793 rad + pos: 24.5,-27.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13444 + - uid: 13819 components: - - rot: 1.5707963267948966 rad - pos: 23.5,32.5 + - rot: 3.141592653589793 rad + pos: 24.5,-28.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13445 + - uid: 13820 components: - - rot: 1.5707963267948966 rad - pos: 24.5,32.5 + - rot: 3.141592653589793 rad + pos: 24.5,-29.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13446 + - uid: 13821 components: - - pos: 22.5,31.5 + - rot: 1.5707963267948966 rad + pos: 23.5,-30.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13447 + - uid: 13822 components: - - pos: 22.5,30.5 + - pos: 24.5,-24.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13448 + - uid: 13823 components: - - pos: 22.5,29.5 + - pos: 24.5,-23.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13449 + - uid: 13824 components: - - pos: 22.5,28.5 + - rot: -1.5707963267948966 rad + pos: 23.5,-25.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13450 + - uid: 13825 components: - - pos: 22.5,27.5 + - rot: -1.5707963267948966 rad + pos: 22.5,-25.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13463 + - uid: 13826 components: - rot: -1.5707963267948966 rad - pos: 24.5,37.5 + pos: 21.5,-25.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13464 + - uid: 13827 components: - rot: -1.5707963267948966 rad - pos: 24.5,27.5 + pos: 20.5,-25.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13465 + - uid: 13829 components: - - rot: -1.5707963267948966 rad - pos: 25.5,27.5 + - rot: 3.141592653589793 rad + pos: 19.5,-24.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13466 + - uid: 13830 components: - - rot: -1.5707963267948966 rad - pos: 26.5,27.5 + - rot: 3.141592653589793 rad + pos: 19.5,-22.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13467 + - uid: 13831 components: - - rot: -1.5707963267948966 rad - pos: 27.5,27.5 + - rot: 3.141592653589793 rad + pos: 19.5,-21.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13468 + - uid: 13832 components: - - rot: -1.5707963267948966 rad - pos: 29.5,27.5 + - rot: 3.141592653589793 rad + pos: 19.5,-20.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13469 + - uid: 13833 components: - - rot: -1.5707963267948966 rad - pos: 30.5,27.5 + - rot: 3.141592653589793 rad + pos: 19.5,-19.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13470 + - uid: 13834 components: - - rot: -1.5707963267948966 rad - pos: 31.5,27.5 + - rot: 3.141592653589793 rad + pos: 19.5,-18.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13471 + - uid: 13835 components: - - rot: -1.5707963267948966 rad - pos: 32.5,27.5 + - rot: 3.141592653589793 rad + pos: 19.5,-17.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13472 + - uid: 13836 components: - - rot: -1.5707963267948966 rad - pos: 33.5,27.5 + - rot: 3.141592653589793 rad + pos: 19.5,-16.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13473 + - uid: 13838 components: - - rot: -1.5707963267948966 rad - pos: 34.5,27.5 + - rot: 3.141592653589793 rad + pos: 19.5,-14.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13474 + - uid: 13839 components: - - rot: -1.5707963267948966 rad - pos: 35.5,27.5 + - rot: 1.5707963267948966 rad + pos: 18.5,-23.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13475 + - uid: 13840 components: - - rot: 3.141592653589793 rad - pos: 28.5,26.5 + - rot: 1.5707963267948966 rad + pos: 16.5,-23.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13476 + - uid: 13841 components: - - rot: 3.141592653589793 rad - pos: 28.5,28.5 + - rot: 1.5707963267948966 rad + pos: 14.5,-23.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13477 + - uid: 13843 components: - - rot: 3.141592653589793 rad - pos: 28.5,29.5 + - pos: 15.5,-24.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13478 + - uid: 13844 components: - - rot: 3.141592653589793 rad - pos: 28.5,30.5 + - pos: 15.5,-25.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13479 + - uid: 13845 components: - - rot: 3.141592653589793 rad - pos: 28.5,31.5 + - pos: 15.5,-26.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13488 + - uid: 13846 components: - - rot: 1.5707963267948966 rad - pos: -50.5,-41.5 + - pos: 15.5,-27.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13490 + - uid: 13847 components: - - rot: 1.5707963267948966 rad - pos: -51.5,-41.5 + - pos: 15.5,-28.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13491 + - uid: 13848 components: - - rot: 1.5707963267948966 rad - pos: -52.5,-41.5 + - pos: 15.5,-29.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13492 + - uid: 13849 components: - - rot: 1.5707963267948966 rad - pos: -53.5,-41.5 + - pos: 15.5,-31.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13493 + - uid: 13850 components: - - rot: 1.5707963267948966 rad - pos: -54.5,-41.5 + - pos: 15.5,-32.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13494 + - uid: 13851 components: - - rot: 1.5707963267948966 rad - pos: -55.5,-41.5 + - pos: 15.5,-33.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13495 + - uid: 13852 components: - - rot: 1.5707963267948966 rad - pos: 17.5,-69.5 + - pos: 15.5,-34.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13502 + - uid: 13853 components: - - rot: 1.5707963267948966 rad - pos: 31.5,0.5 + - pos: 15.5,-35.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13503 + - uid: 13854 components: - - rot: 1.5707963267948966 rad - pos: 32.5,0.5 + - pos: 15.5,-36.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13504 + - uid: 13855 components: - - rot: 1.5707963267948966 rad - pos: 33.5,0.5 + - pos: 15.5,-37.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13505 + - uid: 13856 components: - - rot: 1.5707963267948966 rad - pos: 34.5,0.5 + - rot: -1.5707963267948966 rad + pos: 16.5,-38.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13506 + - uid: 13857 components: - - rot: 1.5707963267948966 rad - pos: 35.5,0.5 + - rot: -1.5707963267948966 rad + pos: 14.5,-38.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13508 + - uid: 13858 components: - - rot: 1.5707963267948966 rad - pos: 36.5,-0.5 + - rot: -1.5707963267948966 rad + pos: 13.5,-38.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13509 + - uid: 13859 components: - - rot: 1.5707963267948966 rad - pos: 35.5,-0.5 + - rot: -1.5707963267948966 rad + pos: 12.5,-38.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13510 + - uid: 13860 components: - - rot: 1.5707963267948966 rad - pos: 34.5,-0.5 + - rot: -1.5707963267948966 rad + pos: 11.5,-38.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13511 + - uid: 13861 components: - - rot: 1.5707963267948966 rad - pos: 33.5,-0.5 + - rot: -1.5707963267948966 rad + pos: 10.5,-38.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13513 + - uid: 13862 components: - - rot: 3.141592653589793 rad - pos: 32.5,0.5 + - rot: -1.5707963267948966 rad + pos: 9.5,-38.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13514 + - uid: 13863 components: - - rot: 3.141592653589793 rad - pos: 32.5,-1.5 + - rot: -1.5707963267948966 rad + pos: 8.5,-38.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13516 + - uid: 13864 components: - - rot: 3.141592653589793 rad - pos: 32.5,-3.5 + - rot: -1.5707963267948966 rad + pos: 7.5,-38.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13517 + - uid: 13865 components: - - rot: 3.141592653589793 rad - pos: 32.5,-4.5 + - rot: -1.5707963267948966 rad + pos: 6.5,-38.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13518 + - uid: 13876 components: - rot: 3.141592653589793 rad - pos: 32.5,-5.5 + pos: 22.5,-32.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13519 + - uid: 13877 components: - rot: 3.141592653589793 rad - pos: 30.5,-0.5 + pos: 22.5,-31.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13520 + - uid: 13878 components: - rot: 3.141592653589793 rad - pos: 30.5,-1.5 + pos: 24.5,-31.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13521 + - uid: 13879 components: - rot: 3.141592653589793 rad - pos: 30.5,-2.5 + pos: 24.5,-32.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13522 + - uid: 13880 components: - rot: 3.141592653589793 rad - pos: 30.5,-3.5 + pos: 24.5,-33.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13523 + - uid: 13881 components: - rot: 3.141592653589793 rad - pos: 30.5,-4.5 + pos: 24.5,-34.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13524 + - uid: 13883 components: - rot: 1.5707963267948966 rad - pos: 29.5,-5.5 + pos: 31.5,-21.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13525 + - uid: 13884 components: - rot: 1.5707963267948966 rad - pos: 28.5,-5.5 + pos: 30.5,-21.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13526 + - uid: 13885 components: - - rot: 1.5707963267948966 rad - pos: 27.5,-5.5 + - pos: 29.5,-22.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13527 + - uid: 13886 components: - - rot: 1.5707963267948966 rad - pos: 26.5,-5.5 + - pos: 29.5,-23.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13528 + - uid: 13887 components: - - pos: 25.5,-2.5 + - pos: 29.5,-24.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13529 + - uid: 13888 components: - - pos: 25.5,-3.5 + - pos: 29.5,-25.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13530 + - uid: 13889 components: - - pos: 25.5,-4.5 + - rot: -1.5707963267948966 rad + pos: 28.5,-26.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13531 + - uid: 13890 components: - - pos: 24.5,-3.5 + - rot: -1.5707963267948966 rad + pos: 27.5,-26.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13532 + - uid: 13892 components: - - pos: 24.5,-4.5 + - rot: 3.141592653589793 rad + pos: 25.5,-25.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13533 + - uid: 13893 components: - - pos: 24.5,-5.5 + - rot: 3.141592653589793 rad + pos: 25.5,-24.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13534 + - uid: 13894 components: - - rot: -1.5707963267948966 rad - pos: 25.5,-6.5 + - rot: 3.141592653589793 rad + pos: 25.5,-23.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13535 + - uid: 13895 components: - - rot: -1.5707963267948966 rad - pos: 26.5,-6.5 + - pos: 25.5,-27.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13536 + - uid: 13896 components: - - rot: -1.5707963267948966 rad - pos: 27.5,-6.5 + - pos: 25.5,-28.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13537 + - uid: 13897 components: - - rot: -1.5707963267948966 rad - pos: 28.5,-6.5 + - pos: 26.5,-30.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13538 + - uid: 13898 components: - - rot: -1.5707963267948966 rad - pos: 29.5,-6.5 + - pos: 26.5,-31.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13539 + - uid: 13899 components: - - rot: -1.5707963267948966 rad - pos: 30.5,-6.5 + - pos: 26.5,-32.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13540 + - uid: 13900 components: - - rot: -1.5707963267948966 rad - pos: 31.5,-6.5 + - pos: 26.5,-33.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13550 + - uid: 13901 components: - - rot: -1.5707963267948966 rad - pos: 31.5,-5.5 + - pos: 26.5,-34.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13551 + - uid: 13902 components: - rot: -1.5707963267948966 rad - pos: 32.5,-5.5 + pos: 24.5,-29.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13552 + - uid: 13903 components: - - rot: 3.141592653589793 rad - pos: 33.5,-6.5 + - rot: -1.5707963267948966 rad + pos: 23.5,-29.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13553 + - uid: 13904 components: - - rot: 3.141592653589793 rad - pos: 33.5,-7.5 + - rot: -1.5707963267948966 rad + pos: 22.5,-29.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13554 + - uid: 13905 components: - rot: 3.141592653589793 rad - pos: 33.5,-8.5 + pos: 21.5,-30.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13555 + - uid: 13906 components: - - rot: 1.5707963267948966 rad - pos: 34.5,-9.5 + - rot: 3.141592653589793 rad + pos: 21.5,-31.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13556 + - uid: 13907 components: - - rot: 1.5707963267948966 rad - pos: 35.5,-9.5 + - rot: 3.141592653589793 rad + pos: 21.5,-32.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13557 + - uid: 13909 components: - rot: 1.5707963267948966 rad - pos: 36.5,-9.5 + pos: 24.5,-26.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13558 + - uid: 13910 components: - - pos: 37.5,-8.5 + - rot: 1.5707963267948966 rad + pos: 23.5,-26.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13559 + - uid: 13911 components: - - pos: 37.5,-7.5 + - rot: 1.5707963267948966 rad + pos: 22.5,-26.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13562 + - uid: 13912 components: - rot: 1.5707963267948966 rad - pos: 39.5,-9.5 + pos: 21.5,-26.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13563 + - uid: 13913 components: - rot: 1.5707963267948966 rad - pos: 40.5,-9.5 + pos: 20.5,-26.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13564 + - uid: 13914 components: - rot: 1.5707963267948966 rad - pos: 41.5,-9.5 + pos: 19.5,-26.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13565 + - uid: 13915 components: - - pos: 42.5,-8.5 + - pos: 18.5,-25.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13566 + - uid: 13916 components: - - pos: 42.5,-7.5 + - pos: 18.5,-24.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13567 + - uid: 13917 components: - - rot: -1.5707963267948966 rad - pos: 43.5,-9.5 + - pos: 18.5,-23.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13568 + - uid: 13918 components: - - rot: -1.5707963267948966 rad - pos: 44.5,-9.5 + - pos: 18.5,-22.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13569 + - uid: 13919 components: - - rot: -1.5707963267948966 rad - pos: 45.5,-9.5 + - pos: 18.5,-21.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13570 + - uid: 13920 components: - - rot: -1.5707963267948966 rad - pos: 46.5,-9.5 + - pos: 18.5,-20.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13571 + - uid: 13921 components: - rot: 3.141592653589793 rad - pos: 47.5,-8.5 + pos: 18.5,-16.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13572 + - uid: 13922 components: - rot: 3.141592653589793 rad - pos: 47.5,-7.5 + pos: 18.5,-19.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13573 + - uid: 13923 components: - - rot: 1.5707963267948966 rad - pos: 48.5,-9.5 + - pos: 18.5,-17.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13574 + - uid: 13925 components: - - rot: 1.5707963267948966 rad - pos: 49.5,-9.5 + - pos: 18.5,-15.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13575 + - uid: 13926 components: - - rot: 1.5707963267948966 rad - pos: 50.5,-9.5 + - pos: 18.5,-14.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13581 + - uid: 13928 components: - - rot: 3.141592653589793 rad - pos: 42.5,-10.5 + - rot: -1.5707963267948966 rad + pos: 15.5,-26.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13582 + - uid: 13929 components: - - rot: 3.141592653589793 rad - pos: 42.5,-11.5 + - rot: -1.5707963267948966 rad + pos: 14.5,-26.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13598 + - uid: 13931 components: - rot: 3.141592653589793 rad - pos: 30.5,-10.5 + pos: 16.5,-27.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13599 + - uid: 13932 components: - rot: 3.141592653589793 rad - pos: 30.5,-11.5 + pos: 16.5,-28.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13600 + - uid: 13933 components: - rot: 3.141592653589793 rad - pos: 30.5,-12.5 + pos: 16.5,-29.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13601 + - uid: 13934 components: - rot: 3.141592653589793 rad - pos: 30.5,-14.5 + pos: 16.5,-30.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13602 + - uid: 13935 components: - rot: 3.141592653589793 rad - pos: 30.5,-15.5 + pos: 16.5,-31.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13603 + - uid: 13936 components: - rot: 3.141592653589793 rad - pos: 30.5,-16.5 + pos: 16.5,-32.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13604 + - uid: 13937 components: - - rot: 1.5707963267948966 rad - pos: 31.5,-17.5 + - rot: 3.141592653589793 rad + pos: 16.5,-33.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13605 + - uid: 13938 components: - rot: 1.5707963267948966 rad - pos: 32.5,-17.5 + pos: 15.5,-34.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13606 + - uid: 13939 components: - - pos: 33.5,-16.5 + - pos: 16.5,-35.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13608 + - uid: 13940 components: - - pos: 33.5,-14.5 + - pos: 16.5,-36.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13609 + - uid: 13941 components: - - pos: 33.5,-13.5 + - rot: -1.5707963267948966 rad + pos: 15.5,-37.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13610 + - uid: 13942 components: - - pos: 33.5,-12.5 + - rot: -1.5707963267948966 rad + pos: 14.5,-37.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13611 + - uid: 13943 components: - - pos: 33.5,-11.5 + - rot: -1.5707963267948966 rad + pos: 13.5,-37.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13612 + - uid: 13944 components: - - pos: 33.5,-10.5 + - rot: -1.5707963267948966 rad + pos: 12.5,-37.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13613 + - uid: 13945 components: - rot: -1.5707963267948966 rad - pos: 43.5,-12.5 + pos: 11.5,-37.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13614 + - uid: 13946 components: - rot: -1.5707963267948966 rad - pos: 44.5,-12.5 + pos: 10.5,-37.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13615 + - uid: 13947 components: - - rot: 3.141592653589793 rad - pos: 42.5,-13.5 + - rot: -1.5707963267948966 rad + pos: 9.5,-37.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13616 + - uid: 13948 components: - - rot: 3.141592653589793 rad - pos: 42.5,-14.5 + - rot: -1.5707963267948966 rad + pos: 8.5,-37.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13617 + - uid: 13949 components: - - rot: 3.141592653589793 rad - pos: 42.5,-15.5 + - rot: -1.5707963267948966 rad + pos: 7.5,-37.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13618 + - uid: 13950 components: - - rot: 1.5707963267948966 rad - pos: 43.5,-16.5 + - rot: -1.5707963267948966 rad + pos: 6.5,-37.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13619 + - uid: 13961 components: - - rot: 1.5707963267948966 rad - pos: 44.5,-16.5 + - rot: 3.141592653589793 rad + pos: 28.5,-26.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13620 + - uid: 13962 components: - - pos: 42.5,-17.5 + - rot: 3.141592653589793 rad + pos: 28.5,-27.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13621 + - uid: 13968 components: - - pos: 42.5,-18.5 + - rot: -1.5707963267948966 rad + pos: 72.5,-28.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13622 + - uid: 13971 components: - - pos: 42.5,-19.5 + - rot: -1.5707963267948966 rad + pos: 29.5,-28.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13623 + - uid: 13972 components: - rot: -1.5707963267948966 rad - pos: 43.5,-20.5 + pos: 30.5,-28.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13624 + - uid: 13973 components: - rot: -1.5707963267948966 rad - pos: 44.5,-20.5 + pos: 31.5,-28.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13625 + - uid: 13974 components: - rot: -1.5707963267948966 rad - pos: 45.5,-20.5 + pos: 32.5,-28.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13626 + - uid: 13975 components: - rot: -1.5707963267948966 rad - pos: 46.5,-20.5 + pos: 33.5,-28.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13628 + - uid: 13976 components: - rot: -1.5707963267948966 rad - pos: 48.5,-20.5 + pos: 34.5,-28.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13629 + - uid: 13977 components: - rot: -1.5707963267948966 rad - pos: 49.5,-20.5 + pos: 35.5,-28.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13630 + - uid: 13979 components: - rot: -1.5707963267948966 rad - pos: 41.5,-20.5 + pos: 37.5,-28.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13631 + - uid: 13980 components: - rot: -1.5707963267948966 rad - pos: 40.5,-20.5 + pos: 39.5,-28.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13633 + - uid: 13981 components: - rot: -1.5707963267948966 rad - pos: 38.5,-20.5 + pos: 40.5,-28.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13640 + - uid: 13982 components: - - pos: 37.5,-18.5 + - rot: -1.5707963267948966 rad + pos: 41.5,-28.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13641 + - uid: 13983 components: - - pos: 37.5,-19.5 + - rot: -1.5707963267948966 rad + pos: 42.5,-28.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13642 + - uid: 13984 components: - rot: -1.5707963267948966 rad - pos: 36.5,-20.5 + pos: 43.5,-28.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13643 + - uid: 13985 components: - rot: -1.5707963267948966 rad - pos: 34.5,-20.5 + pos: 44.5,-28.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13644 + - uid: 13986 components: - - rot: 3.141592653589793 rad - pos: 33.5,-18.5 + - rot: -1.5707963267948966 rad + pos: 45.5,-28.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13645 + - uid: 13987 components: - - rot: 3.141592653589793 rad - pos: 33.5,-19.5 + - rot: -1.5707963267948966 rad + pos: 46.5,-28.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13646 + - uid: 13989 components: - - rot: 3.141592653589793 rad - pos: 35.5,-21.5 + - rot: -1.5707963267948966 rad + pos: 48.5,-28.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13647 + - uid: 13990 components: - - rot: 3.141592653589793 rad - pos: 35.5,-22.5 + - rot: -1.5707963267948966 rad + pos: 49.5,-28.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13648 + - uid: 13991 components: - - rot: 3.141592653589793 rad - pos: 35.5,-23.5 + - rot: -1.5707963267948966 rad + pos: 50.5,-28.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13649 + - uid: 13992 components: - - rot: 3.141592653589793 rad - pos: 39.5,-21.5 + - rot: -1.5707963267948966 rad + pos: 51.5,-28.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13650 + - uid: 13993 components: - - rot: 3.141592653589793 rad - pos: 39.5,-22.5 + - rot: -1.5707963267948966 rad + pos: 52.5,-28.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13651 + - uid: 13994 components: - - rot: 3.141592653589793 rad - pos: 39.5,-23.5 + - rot: -1.5707963267948966 rad + pos: 53.5,-28.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13652 + - uid: 13995 components: - - rot: 3.141592653589793 rad - pos: 42.5,-21.5 + - rot: -1.5707963267948966 rad + pos: 55.5,-28.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13653 + - uid: 13996 components: - - rot: 3.141592653589793 rad - pos: 42.5,-22.5 + - rot: -1.5707963267948966 rad + pos: 56.5,-28.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13654 + - uid: 13997 components: - - rot: 3.141592653589793 rad - pos: 42.5,-23.5 + - rot: -1.5707963267948966 rad + pos: 57.5,-28.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13655 + - uid: 13998 components: - - rot: 3.141592653589793 rad - pos: 47.5,-21.5 + - rot: -1.5707963267948966 rad + pos: 58.5,-28.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13656 + - uid: 14000 components: - - rot: 3.141592653589793 rad - pos: 47.5,-22.5 + - rot: -1.5707963267948966 rad + pos: 60.5,-28.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13657 + - uid: 14001 components: - - rot: 3.141592653589793 rad - pos: 47.5,-23.5 + - rot: -1.5707963267948966 rad + pos: 61.5,-28.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13663 + - uid: 14002 components: - rot: -1.5707963267948966 rad - pos: 49.5,-21.5 + pos: 62.5,-28.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13684 + - uid: 14003 components: - rot: -1.5707963267948966 rad - pos: 48.5,-21.5 + pos: 63.5,-28.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13685 + - uid: 14004 components: - rot: -1.5707963267948966 rad - pos: 47.5,-21.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 13686 - components: - - rot: 3.141592653589793 rad - pos: 46.5,-23.5 + pos: 64.5,-28.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13687 + - uid: 14005 components: - - rot: 3.141592653589793 rad - pos: 46.5,-22.5 + - rot: -1.5707963267948966 rad + pos: 65.5,-28.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13688 + - uid: 14006 components: - - rot: 1.5707963267948966 rad - pos: 45.5,-21.5 + - rot: -1.5707963267948966 rad + pos: 66.5,-28.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13689 + - uid: 14007 components: - - rot: 1.5707963267948966 rad - pos: 44.5,-21.5 + - rot: -1.5707963267948966 rad + pos: 67.5,-28.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13690 + - uid: 14008 components: - - rot: 1.5707963267948966 rad - pos: 43.5,-21.5 + - rot: -1.5707963267948966 rad + pos: 68.5,-28.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13691 + - uid: 14009 components: - - rot: 1.5707963267948966 rad - pos: 42.5,-21.5 + - rot: -1.5707963267948966 rad + pos: 69.5,-28.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13692 + - uid: 14010 components: - - pos: 41.5,-22.5 + - rot: -1.5707963267948966 rad + pos: 70.5,-28.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13693 + - uid: 14011 components: - - pos: 41.5,-23.5 + - rot: -1.5707963267948966 rad + pos: 71.5,-28.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13694 + - uid: 14012 components: - rot: -1.5707963267948966 rad - pos: 40.5,-21.5 + pos: 73.5,-28.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13695 + - uid: 14013 components: - rot: -1.5707963267948966 rad - pos: 39.5,-21.5 + pos: 74.5,-28.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13696 + - uid: 14014 components: - rot: 3.141592653589793 rad - pos: 38.5,-22.5 + pos: 75.5,-29.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13697 + - uid: 14015 components: - rot: 3.141592653589793 rad - pos: 38.5,-23.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 13698 - components: - - rot: 1.5707963267948966 rad - pos: 37.5,-21.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 13699 - components: - - pos: 36.5,-22.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 13700 - components: - - pos: 36.5,-23.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 13701 - components: - - pos: 36.5,-20.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 13702 - components: - - pos: 36.5,-19.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 13703 - components: - - pos: 36.5,-18.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 13704 - components: - - rot: -1.5707963267948966 rad - pos: 35.5,-21.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 13705 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,-21.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 13706 - components: - - rot: -1.5707963267948966 rad - pos: 33.5,-21.5 + pos: 75.5,-30.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13710 + - uid: 14016 components: - - pos: 28.5,-10.5 + - rot: 3.141592653589793 rad + pos: 75.5,-31.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13711 + - uid: 14017 components: - - pos: 28.5,-11.5 + - rot: 3.141592653589793 rad + pos: 75.5,-32.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13712 + - uid: 14018 components: - - pos: 28.5,-12.5 + - rot: 3.141592653589793 rad + pos: 75.5,-33.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13713 + - uid: 14019 components: - - pos: 28.5,-13.5 + - rot: 3.141592653589793 rad + pos: 75.5,-34.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13714 + - uid: 14020 components: - - pos: 28.5,-15.5 + - rot: 3.141592653589793 rad + pos: 75.5,-35.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13715 + - uid: 14023 components: - - pos: 28.5,-16.5 + - pos: 75.5,-21.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13716 + - uid: 14024 components: - - pos: 28.5,-17.5 + - pos: 75.5,-22.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13717 + - uid: 14025 components: - - rot: -1.5707963267948966 rad - pos: 29.5,-18.5 + - pos: 75.5,-23.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13718 + - uid: 14026 components: - - rot: -1.5707963267948966 rad - pos: 30.5,-18.5 + - pos: 75.5,-24.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13719 + - uid: 14027 components: - - rot: -1.5707963267948966 rad - pos: 31.5,-18.5 + - pos: 75.5,-25.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13720 + - uid: 14028 components: - - rot: 3.141592653589793 rad - pos: 32.5,-20.5 + - pos: 75.5,-26.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13721 + - uid: 14029 components: - - rot: 3.141592653589793 rad - pos: 32.5,-19.5 + - pos: 75.5,-27.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13722 + - uid: 14035 components: - - rot: 3.141592653589793 rad - pos: 32.5,-17.5 + - pos: 54.5,-25.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13723 + - uid: 14036 components: - - rot: 3.141592653589793 rad - pos: 32.5,-16.5 + - pos: 54.5,-26.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13724 + - uid: 14037 components: - - rot: 3.141592653589793 rad - pos: 32.5,-15.5 + - pos: 54.5,-27.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13726 + - uid: 14038 components: - - rot: 3.141592653589793 rad - pos: 32.5,-13.5 + - pos: 47.5,-29.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13727 + - uid: 14039 components: - - rot: 3.141592653589793 rad - pos: 32.5,-12.5 + - pos: 47.5,-30.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13728 + - uid: 14040 components: - - rot: 3.141592653589793 rad - pos: 32.5,-11.5 + - pos: 47.5,-31.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13729 + - uid: 14044 components: - - rot: 3.141592653589793 rad - pos: 32.5,-9.5 + - rot: 1.5707963267948966 rad + pos: 27.5,6.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13730 + - uid: 14045 components: - - rot: 3.141592653589793 rad - pos: 32.5,-8.5 + - rot: 1.5707963267948966 rad + pos: 28.5,6.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13731 + - uid: 14046 components: - - rot: 3.141592653589793 rad - pos: 32.5,-7.5 + - rot: 1.5707963267948966 rad + pos: 29.5,6.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13732 + - uid: 14047 components: - rot: 1.5707963267948966 rad - pos: 33.5,-10.5 + pos: 30.5,6.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13733 + - uid: 14048 components: - rot: 1.5707963267948966 rad - pos: 34.5,-10.5 + pos: 31.5,6.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13734 + - uid: 14049 components: - rot: 1.5707963267948966 rad - pos: 35.5,-10.5 + pos: 32.5,6.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13735 + - uid: 14050 components: - rot: 1.5707963267948966 rad - pos: 37.5,-10.5 + pos: 33.5,6.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13736 + - uid: 14051 components: - rot: 1.5707963267948966 rad - pos: 38.5,-10.5 + pos: 34.5,6.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13737 + - uid: 14052 components: - - rot: 1.5707963267948966 rad - pos: 40.5,-10.5 + - pos: 35.5,5.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13738 + - uid: 14058 components: - - rot: 1.5707963267948966 rad - pos: 42.5,-10.5 + - rot: -1.5707963267948966 rad + pos: 40.5,3.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13739 + - uid: 14059 components: - - rot: 1.5707963267948966 rad - pos: 43.5,-10.5 + - rot: -1.5707963267948966 rad + pos: 41.5,3.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13740 + - uid: 14060 components: - - rot: 1.5707963267948966 rad - pos: 44.5,-10.5 + - rot: -1.5707963267948966 rad + pos: 42.5,3.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13741 + - uid: 14061 components: - - rot: 1.5707963267948966 rad - pos: 45.5,-10.5 + - rot: -1.5707963267948966 rad + pos: 43.5,3.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13742 + - uid: 14062 components: - - rot: 1.5707963267948966 rad - pos: 46.5,-10.5 + - rot: -1.5707963267948966 rad + pos: 44.5,3.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13743 + - uid: 14063 components: - - rot: 1.5707963267948966 rad - pos: 47.5,-10.5 + - rot: -1.5707963267948966 rad + pos: 45.5,3.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13744 + - uid: 14064 components: - - rot: 1.5707963267948966 rad - pos: 49.5,-10.5 + - rot: -1.5707963267948966 rad + pos: 46.5,3.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13745 + - uid: 14065 components: - - rot: 1.5707963267948966 rad - pos: 50.5,-10.5 + - rot: -1.5707963267948966 rad + pos: 47.5,3.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13746 + - uid: 14066 components: - - pos: 48.5,-9.5 + - rot: -1.5707963267948966 rad + pos: 48.5,3.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13747 + - uid: 14067 components: - - pos: 48.5,-8.5 + - rot: -1.5707963267948966 rad + pos: 49.5,3.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13748 + - uid: 14068 components: - - pos: 48.5,-7.5 + - rot: -1.5707963267948966 rad + pos: 50.5,3.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13749 + - uid: 14069 components: - - pos: 41.5,-9.5 + - rot: -1.5707963267948966 rad + pos: 51.5,3.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13750 + - uid: 14070 components: - - pos: 41.5,-8.5 + - rot: -1.5707963267948966 rad + pos: 52.5,3.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13751 + - uid: 14071 components: - - pos: 41.5,-7.5 + - rot: -1.5707963267948966 rad + pos: 53.5,3.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13752 + - uid: 14072 components: - - pos: 41.5,-11.5 + - rot: -1.5707963267948966 rad + pos: 54.5,3.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13753 + - uid: 14075 components: - - pos: 41.5,-12.5 + - rot: 3.141592653589793 rad + pos: 57.5,2.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13754 + - uid: 14076 components: - - rot: -1.5707963267948966 rad - pos: 42.5,-13.5 + - rot: 3.141592653589793 rad + pos: 57.5,1.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13755 + - uid: 14077 components: - - rot: -1.5707963267948966 rad - pos: 43.5,-13.5 + - rot: 3.141592653589793 rad + pos: 57.5,0.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13756 + - uid: 14078 components: - - rot: -1.5707963267948966 rad - pos: 44.5,-13.5 + - rot: 3.141592653589793 rad + pos: 57.5,-0.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13757 + - uid: 14079 components: - rot: 3.141592653589793 rad - pos: 37.5,-10.5 + pos: 57.5,-1.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13758 + - uid: 14080 components: - rot: 3.141592653589793 rad - pos: 37.5,-11.5 + pos: 57.5,-2.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13759 + - uid: 14081 components: - rot: 3.141592653589793 rad - pos: 37.5,-12.5 + pos: 57.5,-3.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13760 + - uid: 14082 components: - rot: 3.141592653589793 rad - pos: 36.5,-12.5 + pos: 57.5,-4.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13761 + - uid: 14084 components: - rot: 3.141592653589793 rad - pos: 36.5,-11.5 + pos: 57.5,-6.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13762 + - uid: 14085 components: - rot: 3.141592653589793 rad - pos: 36.5,-9.5 + pos: 57.5,-7.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13763 + - uid: 14086 components: - rot: 3.141592653589793 rad - pos: 36.5,-8.5 + pos: 57.5,-8.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13764 + - uid: 14087 components: - rot: 3.141592653589793 rad - pos: 36.5,-7.5 + pos: 57.5,-9.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14089 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-2.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13765 + - uid: 14090 components: - - rot: 1.5707963267948966 rad - pos: 44.5,-17.5 + - rot: -1.5707963267948966 rad + pos: 34.5,-2.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13766 + - uid: 14091 components: - - rot: 1.5707963267948966 rad - pos: 43.5,-17.5 + - rot: -1.5707963267948966 rad + pos: 35.5,-2.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13767 + - uid: 14092 components: - - rot: 1.5707963267948966 rad - pos: 42.5,-17.5 + - rot: -1.5707963267948966 rad + pos: 36.5,-2.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13768 + - uid: 14093 components: - - pos: 41.5,-14.5 + - rot: -1.5707963267948966 rad + pos: 37.5,-2.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13769 + - uid: 14094 components: - - pos: 41.5,-15.5 + - rot: -1.5707963267948966 rad + pos: 38.5,-2.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13770 + - uid: 14095 components: - - pos: 41.5,-16.5 + - rot: -1.5707963267948966 rad + pos: 39.5,-2.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13771 + - uid: 14096 components: - - pos: 41.5,-18.5 + - rot: -1.5707963267948966 rad + pos: 40.5,-2.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13772 + - uid: 14097 components: - - pos: 41.5,-19.5 + - rot: -1.5707963267948966 rad + pos: 41.5,-2.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13773 + - uid: 14098 components: - - pos: 41.5,-20.5 + - rot: -1.5707963267948966 rad + pos: 42.5,-2.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13777 + - uid: 14099 components: - - rot: 3.141592653589793 rad - pos: 24.5,-7.5 + - rot: -1.5707963267948966 rad + pos: 43.5,-2.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13778 + - uid: 14100 components: - - rot: 3.141592653589793 rad - pos: 24.5,-8.5 + - rot: -1.5707963267948966 rad + pos: 44.5,-2.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13779 + - uid: 14101 components: - - rot: 1.5707963267948966 rad - pos: 25.5,-9.5 + - rot: -1.5707963267948966 rad + pos: 45.5,-2.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13780 + - uid: 14102 components: - - pos: 25.5,-6.5 + - rot: -1.5707963267948966 rad + pos: 46.5,-2.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13781 + - uid: 14103 components: - - pos: 25.5,-7.5 + - rot: -1.5707963267948966 rad + pos: 47.5,-2.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13782 + - uid: 14104 components: - - pos: 33.5,-21.5 + - rot: -1.5707963267948966 rad + pos: 48.5,-2.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13806 + - uid: 14105 components: - - rot: 1.5707963267948966 rad - pos: 32.5,-20.5 + - rot: -1.5707963267948966 rad + pos: 49.5,-2.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13807 + - uid: 14106 components: - - rot: 1.5707963267948966 rad - pos: 31.5,-20.5 + - rot: -1.5707963267948966 rad + pos: 50.5,-2.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13808 + - uid: 14107 components: - - rot: 1.5707963267948966 rad - pos: 30.5,-20.5 + - rot: -1.5707963267948966 rad + pos: 51.5,-2.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13809 + - uid: 14108 components: - - rot: 1.5707963267948966 rad - pos: 29.5,-20.5 + - rot: -1.5707963267948966 rad + pos: 52.5,-2.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13810 + - uid: 14109 components: - - pos: 28.5,-21.5 + - rot: -1.5707963267948966 rad + pos: 53.5,-2.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13811 + - uid: 14110 components: - - pos: 28.5,-22.5 + - rot: -1.5707963267948966 rad + pos: 54.5,-2.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13812 + - uid: 14111 components: - - pos: 28.5,-23.5 + - rot: -1.5707963267948966 rad + pos: 55.5,-2.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13813 + - uid: 14112 components: - - pos: 28.5,-24.5 + - rot: -1.5707963267948966 rad + pos: 56.5,-2.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13814 + - uid: 14113 components: - rot: -1.5707963267948966 rad - pos: 27.5,-25.5 + pos: 57.5,-2.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13815 + - uid: 14116 components: - rot: -1.5707963267948966 rad - pos: 26.5,-25.5 + pos: 55.5,3.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13816 + - uid: 14117 components: - rot: -1.5707963267948966 rad - pos: 25.5,-25.5 + pos: 56.5,3.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13817 + - uid: 14118 components: - rot: 3.141592653589793 rad - pos: 24.5,-26.5 + pos: 58.5,-3.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13818 + - uid: 14119 components: - rot: 3.141592653589793 rad - pos: 24.5,-27.5 + pos: 58.5,-4.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13819 + - uid: 14120 components: - rot: 3.141592653589793 rad - pos: 24.5,-28.5 + pos: 58.5,-5.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13820 + - uid: 14122 components: - rot: 3.141592653589793 rad - pos: 24.5,-29.5 + pos: 58.5,-7.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13821 + - uid: 14123 components: - - rot: 1.5707963267948966 rad - pos: 23.5,-30.5 + - rot: 3.141592653589793 rad + pos: 58.5,-8.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13822 + - uid: 14124 components: - - pos: 24.5,-24.5 + - rot: 3.141592653589793 rad + pos: 58.5,-9.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13823 + - uid: 14132 components: - - pos: 24.5,-23.5 + - rot: -1.5707963267948966 rad + pos: 57.5,-20.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13824 + - uid: 14133 components: - rot: -1.5707963267948966 rad - pos: 23.5,-25.5 + pos: 56.5,-20.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13825 + - uid: 14134 components: - rot: -1.5707963267948966 rad - pos: 22.5,-25.5 + pos: 55.5,-20.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13826 + - uid: 14135 components: - - rot: -1.5707963267948966 rad - pos: 21.5,-25.5 + - rot: 3.141592653589793 rad + pos: 54.5,-19.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13827 + - uid: 14136 components: - - rot: -1.5707963267948966 rad - pos: 20.5,-25.5 + - rot: 3.141592653589793 rad + pos: 54.5,-18.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13829 + - uid: 14137 components: - rot: 3.141592653589793 rad - pos: 19.5,-24.5 + pos: 54.5,-17.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13830 + - uid: 14138 components: - rot: 3.141592653589793 rad - pos: 19.5,-22.5 + pos: 54.5,-16.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13831 + - uid: 14139 components: - rot: 3.141592653589793 rad - pos: 19.5,-21.5 + pos: 54.5,-15.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13832 + - uid: 14140 components: - rot: 3.141592653589793 rad - pos: 19.5,-20.5 + pos: 54.5,-14.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13833 + - uid: 14141 components: - rot: 3.141592653589793 rad - pos: 19.5,-19.5 + pos: 54.5,-13.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13834 + - uid: 14142 components: - rot: 3.141592653589793 rad - pos: 19.5,-18.5 + pos: 54.5,-12.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13835 + - uid: 14143 components: - rot: 3.141592653589793 rad - pos: 19.5,-17.5 + pos: 54.5,-11.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13836 + - uid: 14144 components: - rot: 3.141592653589793 rad - pos: 19.5,-16.5 + pos: 54.5,-10.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13838 + - uid: 14145 components: - rot: 3.141592653589793 rad - pos: 19.5,-14.5 + pos: 54.5,-9.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13839 + - uid: 14146 components: - - rot: 1.5707963267948966 rad - pos: 18.5,-23.5 + - rot: 3.141592653589793 rad + pos: 54.5,-8.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13840 + - uid: 14147 components: - - rot: 1.5707963267948966 rad - pos: 16.5,-23.5 + - rot: 3.141592653589793 rad + pos: 54.5,-7.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13841 + - uid: 14148 components: - - rot: 1.5707963267948966 rad - pos: 14.5,-23.5 + - rot: 3.141592653589793 rad + pos: 54.5,-6.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13842 + - uid: 14149 components: - rot: 1.5707963267948966 rad - pos: 13.5,-23.5 + pos: 55.5,-5.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13843 + - uid: 14150 components: - - pos: 15.5,-24.5 + - rot: 1.5707963267948966 rad + pos: 56.5,-5.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13844 + - uid: 14151 components: - - pos: 15.5,-25.5 + - rot: 1.5707963267948966 rad + pos: 57.5,-6.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13845 + - uid: 14152 components: - - pos: 15.5,-26.5 + - rot: 1.5707963267948966 rad + pos: 56.5,-6.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13846 + - uid: 14153 components: - - pos: 15.5,-27.5 + - pos: 55.5,-7.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13847 + - uid: 14154 components: - - pos: 15.5,-28.5 + - pos: 55.5,-8.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13848 + - uid: 14155 components: - - pos: 15.5,-29.5 + - pos: 55.5,-9.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13849 + - uid: 14156 components: - - pos: 15.5,-31.5 + - pos: 55.5,-10.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13850 + - uid: 14157 components: - - pos: 15.5,-32.5 + - pos: 55.5,-11.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13851 + - uid: 14158 components: - - pos: 15.5,-33.5 + - pos: 55.5,-12.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13852 + - uid: 14159 components: - - pos: 15.5,-34.5 + - pos: 55.5,-13.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13853 + - uid: 14160 components: - - pos: 15.5,-35.5 + - pos: 55.5,-14.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13854 + - uid: 14161 components: - - pos: 15.5,-36.5 + - pos: 55.5,-15.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13855 + - uid: 14162 components: - - pos: 15.5,-37.5 + - pos: 55.5,-16.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13856 + - uid: 14163 components: - - rot: -1.5707963267948966 rad - pos: 16.5,-38.5 + - pos: 55.5,-17.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13857 + - uid: 14164 components: - - rot: -1.5707963267948966 rad - pos: 14.5,-38.5 + - pos: 55.5,-18.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13858 + - uid: 14165 components: - rot: -1.5707963267948966 rad - pos: 13.5,-38.5 + pos: 56.5,-19.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13859 + - uid: 14166 components: - rot: -1.5707963267948966 rad - pos: 12.5,-38.5 + pos: 57.5,-19.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13860 + - uid: 14167 components: - - rot: -1.5707963267948966 rad - pos: 11.5,-38.5 + - rot: 3.141592653589793 rad + pos: 74.5,-26.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13861 + - uid: 14168 components: - - rot: -1.5707963267948966 rad - pos: 10.5,-38.5 + - rot: 3.141592653589793 rad + pos: 74.5,-25.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13862 + - uid: 14169 components: - - rot: -1.5707963267948966 rad - pos: 9.5,-38.5 + - rot: 3.141592653589793 rad + pos: 74.5,-24.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13863 + - uid: 14170 components: - - rot: -1.5707963267948966 rad - pos: 8.5,-38.5 + - rot: 3.141592653589793 rad + pos: 74.5,-23.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13864 + - uid: 14171 components: - - rot: -1.5707963267948966 rad - pos: 7.5,-38.5 + - rot: 3.141592653589793 rad + pos: 74.5,-22.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13865 + - uid: 14172 components: - - rot: -1.5707963267948966 rad - pos: 6.5,-38.5 + - rot: 3.141592653589793 rad + pos: 74.5,-21.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13876 + - uid: 14173 components: - - rot: 3.141592653589793 rad - pos: 22.5,-32.5 + - pos: 74.5,-28.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13877 + - uid: 14174 components: - - rot: 3.141592653589793 rad - pos: 22.5,-31.5 + - pos: 74.5,-29.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13878 + - uid: 14175 components: - - rot: 3.141592653589793 rad - pos: 24.5,-31.5 + - pos: 74.5,-30.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13879 + - uid: 14176 components: - - rot: 3.141592653589793 rad - pos: 24.5,-32.5 + - pos: 74.5,-31.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13880 + - uid: 14177 components: - - rot: 3.141592653589793 rad - pos: 24.5,-33.5 + - pos: 74.5,-32.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13881 + - uid: 14178 components: - - rot: 3.141592653589793 rad - pos: 24.5,-34.5 + - pos: 74.5,-33.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13883 + - uid: 14179 components: - - rot: 1.5707963267948966 rad - pos: 31.5,-21.5 + - pos: 74.5,-34.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13884 + - uid: 14180 components: - - rot: 1.5707963267948966 rad - pos: 30.5,-21.5 + - pos: 74.5,-35.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13885 + - uid: 14181 components: - - pos: 29.5,-22.5 + - rot: -1.5707963267948966 rad + pos: 73.5,-27.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13886 + - uid: 14182 components: - - pos: 29.5,-23.5 + - rot: -1.5707963267948966 rad + pos: 72.5,-27.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13887 + - uid: 14183 components: - - pos: 29.5,-24.5 + - rot: -1.5707963267948966 rad + pos: 71.5,-27.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13888 + - uid: 14184 components: - - pos: 29.5,-25.5 + - rot: -1.5707963267948966 rad + pos: 70.5,-27.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13889 + - uid: 14185 components: - rot: -1.5707963267948966 rad - pos: 28.5,-26.5 + pos: 69.5,-27.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13890 + - uid: 14186 components: - rot: -1.5707963267948966 rad - pos: 27.5,-26.5 + pos: 68.5,-27.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13892 + - uid: 14187 components: - - rot: 3.141592653589793 rad - pos: 25.5,-25.5 + - rot: -1.5707963267948966 rad + pos: 67.5,-27.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13893 + - uid: 14188 components: - - rot: 3.141592653589793 rad - pos: 25.5,-24.5 + - rot: -1.5707963267948966 rad + pos: 66.5,-27.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13894 + - uid: 14189 components: - - rot: 3.141592653589793 rad - pos: 25.5,-23.5 + - rot: -1.5707963267948966 rad + pos: 65.5,-27.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13895 + - uid: 14190 components: - - pos: 25.5,-27.5 + - rot: -1.5707963267948966 rad + pos: 64.5,-27.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13896 + - uid: 14191 components: - - pos: 25.5,-28.5 + - rot: -1.5707963267948966 rad + pos: 63.5,-27.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13897 + - uid: 14192 components: - - pos: 26.5,-30.5 + - rot: -1.5707963267948966 rad + pos: 62.5,-27.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13898 + - uid: 14193 components: - - pos: 26.5,-31.5 + - rot: -1.5707963267948966 rad + pos: 61.5,-27.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13899 + - uid: 14194 components: - - pos: 26.5,-32.5 + - rot: 3.141592653589793 rad + pos: 60.5,-28.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13900 + - uid: 14195 components: - - pos: 26.5,-33.5 + - rot: 1.5707963267948966 rad + pos: 59.5,-27.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13901 + - uid: 14196 components: - - pos: 26.5,-34.5 + - rot: 1.5707963267948966 rad + pos: 58.5,-27.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13902 + - uid: 14197 components: - - rot: -1.5707963267948966 rad - pos: 24.5,-29.5 + - rot: 1.5707963267948966 rad + pos: 57.5,-27.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13903 + - uid: 14198 components: - - rot: -1.5707963267948966 rad - pos: 23.5,-29.5 + - rot: 1.5707963267948966 rad + pos: 56.5,-27.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13904 + - uid: 14199 components: - - rot: -1.5707963267948966 rad - pos: 22.5,-29.5 + - rot: 1.5707963267948966 rad + pos: 55.5,-27.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13905 + - uid: 14200 components: - - rot: 3.141592653589793 rad - pos: 21.5,-30.5 + - rot: 1.5707963267948966 rad + pos: 54.5,-27.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13906 + - uid: 14201 components: - - rot: 3.141592653589793 rad - pos: 21.5,-31.5 + - pos: 53.5,-26.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13907 + - uid: 14202 components: - - rot: 3.141592653589793 rad - pos: 21.5,-32.5 + - pos: 53.5,-25.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13909 + - uid: 14203 components: - - rot: 1.5707963267948966 rad - pos: 24.5,-26.5 + - pos: 53.5,-28.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13910 + - uid: 14204 components: - - rot: 1.5707963267948966 rad - pos: 23.5,-26.5 + - rot: -1.5707963267948966 rad + pos: 52.5,-27.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13911 + - uid: 14205 components: - - rot: 1.5707963267948966 rad - pos: 22.5,-26.5 + - rot: -1.5707963267948966 rad + pos: 51.5,-27.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13912 + - uid: 14206 components: - - rot: 1.5707963267948966 rad - pos: 21.5,-26.5 + - rot: -1.5707963267948966 rad + pos: 50.5,-27.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13913 + - uid: 14207 components: - - rot: 1.5707963267948966 rad - pos: 20.5,-26.5 + - rot: -1.5707963267948966 rad + pos: 49.5,-27.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13914 + - uid: 14208 components: - - rot: 1.5707963267948966 rad - pos: 19.5,-26.5 + - rot: -1.5707963267948966 rad + pos: 48.5,-27.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13915 + - uid: 14209 components: - - pos: 18.5,-25.5 + - rot: -1.5707963267948966 rad + pos: 47.5,-27.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13916 + - uid: 14210 components: - - pos: 18.5,-24.5 + - rot: 3.141592653589793 rad + pos: 46.5,-28.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13917 + - uid: 14211 components: - - pos: 18.5,-23.5 + - rot: 3.141592653589793 rad + pos: 46.5,-29.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13918 + - uid: 14212 components: - - pos: 18.5,-22.5 + - rot: 3.141592653589793 rad + pos: 46.5,-30.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13919 + - uid: 14213 components: - - pos: 18.5,-21.5 + - rot: 3.141592653589793 rad + pos: 46.5,-31.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13920 + - uid: 14214 components: - - pos: 18.5,-20.5 + - rot: 1.5707963267948966 rad + pos: 45.5,-27.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13921 + - uid: 14215 components: - - rot: 3.141592653589793 rad - pos: 18.5,-16.5 + - rot: 1.5707963267948966 rad + pos: 44.5,-27.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13922 + - uid: 14216 components: - - rot: 3.141592653589793 rad - pos: 18.5,-19.5 + - rot: 1.5707963267948966 rad + pos: 43.5,-27.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13923 + - uid: 14217 components: - - pos: 18.5,-17.5 + - rot: 1.5707963267948966 rad + pos: 42.5,-27.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13925 + - uid: 14218 components: - - pos: 18.5,-15.5 + - rot: 1.5707963267948966 rad + pos: 41.5,-27.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13926 + - uid: 14219 components: - - pos: 18.5,-14.5 + - rot: 1.5707963267948966 rad + pos: 40.5,-27.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13928 + - uid: 14220 components: - - rot: -1.5707963267948966 rad - pos: 15.5,-26.5 + - rot: 1.5707963267948966 rad + pos: 39.5,-27.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13929 + - uid: 14221 components: - - rot: -1.5707963267948966 rad - pos: 14.5,-26.5 + - rot: 1.5707963267948966 rad + pos: 38.5,-27.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13930 + - uid: 14222 + components: + - pos: 37.5,-28.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14223 components: - rot: -1.5707963267948966 rad - pos: 13.5,-26.5 + pos: 36.5,-27.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13931 + - uid: 14224 components: - - rot: 3.141592653589793 rad - pos: 16.5,-27.5 + - rot: -1.5707963267948966 rad + pos: 35.5,-27.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13932 + - uid: 14225 components: - - rot: 3.141592653589793 rad - pos: 16.5,-28.5 + - rot: -1.5707963267948966 rad + pos: 34.5,-27.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13933 + - uid: 14226 components: - - rot: 3.141592653589793 rad - pos: 16.5,-29.5 + - rot: -1.5707963267948966 rad + pos: 33.5,-27.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13934 + - uid: 14227 components: - - rot: 3.141592653589793 rad - pos: 16.5,-30.5 + - rot: -1.5707963267948966 rad + pos: 32.5,-27.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13935 + - uid: 14228 components: - - rot: 3.141592653589793 rad - pos: 16.5,-31.5 + - rot: -1.5707963267948966 rad + pos: 31.5,-27.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13936 + - uid: 14229 components: - - rot: 3.141592653589793 rad - pos: 16.5,-32.5 + - rot: -1.5707963267948966 rad + pos: 30.5,-27.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14243 + components: + - pos: 28.5,-29.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13937 + - uid: 14244 components: - - rot: 3.141592653589793 rad - pos: 16.5,-33.5 + - pos: 28.5,-30.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13938 + - uid: 14245 components: - - rot: 1.5707963267948966 rad - pos: 15.5,-34.5 + - pos: 28.5,-31.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13939 + - uid: 14246 components: - - pos: 16.5,-35.5 + - pos: 28.5,-32.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13940 + - uid: 14247 components: - - pos: 16.5,-36.5 + - rot: -1.5707963267948966 rad + pos: 29.5,-33.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13941 + - uid: 14248 components: - rot: -1.5707963267948966 rad - pos: 15.5,-37.5 + pos: 30.5,-33.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13942 + - uid: 14249 components: - rot: -1.5707963267948966 rad - pos: 14.5,-37.5 + pos: 31.5,-33.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13943 + - uid: 14250 components: - rot: -1.5707963267948966 rad - pos: 13.5,-37.5 + pos: 32.5,-33.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13944 + - uid: 14251 components: - rot: -1.5707963267948966 rad - pos: 12.5,-37.5 + pos: 33.5,-33.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13945 + - uid: 14252 components: - rot: -1.5707963267948966 rad - pos: 11.5,-37.5 + pos: 34.5,-33.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13946 + - uid: 14253 components: - rot: -1.5707963267948966 rad - pos: 10.5,-37.5 + pos: 35.5,-33.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13947 + - uid: 14254 components: - rot: -1.5707963267948966 rad - pos: 9.5,-37.5 + pos: 36.5,-33.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13948 + - uid: 14255 components: - rot: -1.5707963267948966 rad - pos: 8.5,-37.5 + pos: 37.5,-33.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13949 + - uid: 14256 components: - rot: -1.5707963267948966 rad - pos: 7.5,-37.5 + pos: 38.5,-33.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13950 + - uid: 14257 components: - rot: -1.5707963267948966 rad - pos: 6.5,-37.5 + pos: 39.5,-33.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13961 + - uid: 14258 components: - rot: 3.141592653589793 rad - pos: 28.5,-26.5 + pos: 40.5,-34.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13962 + - uid: 14259 components: - rot: 3.141592653589793 rad - pos: 28.5,-27.5 + pos: 40.5,-35.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13968 + - uid: 14260 components: - - rot: -1.5707963267948966 rad - pos: 72.5,-28.5 + - rot: 3.141592653589793 rad + pos: 40.5,-36.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13971 + - uid: 14261 components: - - rot: -1.5707963267948966 rad - pos: 29.5,-28.5 + - rot: 3.141592653589793 rad + pos: 40.5,-37.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13972 + - uid: 14262 components: - - rot: -1.5707963267948966 rad - pos: 30.5,-28.5 + - rot: 3.141592653589793 rad + pos: 40.5,-38.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13973 + - uid: 14265 components: - - rot: -1.5707963267948966 rad - pos: 31.5,-28.5 + - rot: 1.5707963267948966 rad + pos: 37.5,-39.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13974 + - uid: 14266 components: - - rot: -1.5707963267948966 rad - pos: 32.5,-28.5 + - rot: 1.5707963267948966 rad + pos: 38.5,-39.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13975 + - uid: 14267 components: - - rot: -1.5707963267948966 rad - pos: 33.5,-28.5 + - pos: 39.5,-38.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13976 + - uid: 14268 components: - - rot: -1.5707963267948966 rad - pos: 34.5,-28.5 + - pos: 39.5,-37.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13977 + - uid: 14269 components: - - rot: -1.5707963267948966 rad - pos: 35.5,-28.5 + - pos: 39.5,-36.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13979 + - uid: 14270 components: - - rot: -1.5707963267948966 rad - pos: 37.5,-28.5 + - pos: 39.5,-35.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13980 + - uid: 14271 components: - - rot: -1.5707963267948966 rad - pos: 39.5,-28.5 + - pos: 39.5,-34.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13981 + - uid: 14272 components: - - rot: -1.5707963267948966 rad - pos: 40.5,-28.5 + - pos: 39.5,-33.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13982 + - uid: 14273 components: - - rot: -1.5707963267948966 rad - pos: 41.5,-28.5 + - pos: 28.5,-34.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13983 + - uid: 14274 components: - - rot: -1.5707963267948966 rad - pos: 42.5,-28.5 + - pos: 28.5,-35.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13984 + - uid: 14275 components: - - rot: -1.5707963267948966 rad - pos: 43.5,-28.5 + - pos: 28.5,-36.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13985 + - uid: 14276 components: - rot: -1.5707963267948966 rad - pos: 44.5,-28.5 + pos: 29.5,-37.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13986 + - uid: 14280 components: - - rot: -1.5707963267948966 rad - pos: 45.5,-28.5 + - rot: 1.5707963267948966 rad + pos: 40.5,-32.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13987 + - uid: 14281 components: - - rot: -1.5707963267948966 rad - pos: 46.5,-28.5 + - rot: 1.5707963267948966 rad + pos: 38.5,-32.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13989 + - uid: 14282 components: - - rot: -1.5707963267948966 rad - pos: 48.5,-28.5 + - rot: 1.5707963267948966 rad + pos: 37.5,-32.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13990 + - uid: 14283 components: - - rot: -1.5707963267948966 rad - pos: 49.5,-28.5 + - rot: 1.5707963267948966 rad + pos: 36.5,-32.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13991 + - uid: 14284 components: - - rot: -1.5707963267948966 rad - pos: 50.5,-28.5 + - rot: 1.5707963267948966 rad + pos: 35.5,-32.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13992 + - uid: 14285 components: - - rot: -1.5707963267948966 rad - pos: 51.5,-28.5 + - rot: 1.5707963267948966 rad + pos: 34.5,-32.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13993 + - uid: 14286 components: - - rot: -1.5707963267948966 rad - pos: 52.5,-28.5 + - rot: 1.5707963267948966 rad + pos: 33.5,-32.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13994 + - uid: 14287 components: - - rot: -1.5707963267948966 rad - pos: 53.5,-28.5 + - rot: 1.5707963267948966 rad + pos: 32.5,-32.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13995 + - uid: 14288 components: - - rot: -1.5707963267948966 rad - pos: 55.5,-28.5 + - rot: 1.5707963267948966 rad + pos: 31.5,-32.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13996 + - uid: 14289 components: - - rot: -1.5707963267948966 rad - pos: 56.5,-28.5 + - rot: 1.5707963267948966 rad + pos: 30.5,-32.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13997 + - uid: 14290 components: - - rot: -1.5707963267948966 rad - pos: 57.5,-28.5 + - pos: 29.5,-33.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13998 + - uid: 14291 components: - - rot: -1.5707963267948966 rad - pos: 58.5,-28.5 + - pos: 29.5,-34.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14000 + - uid: 14292 components: - - rot: -1.5707963267948966 rad - pos: 60.5,-28.5 + - pos: 29.5,-35.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14001 + - uid: 14297 components: - - rot: -1.5707963267948966 rad - pos: 61.5,-28.5 + - rot: 3.141592653589793 rad + pos: 28.5,-38.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14002 + - uid: 14298 components: - - rot: -1.5707963267948966 rad - pos: 62.5,-28.5 + - rot: 3.141592653589793 rad + pos: 28.5,-39.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14003 + - uid: 14299 components: - - rot: -1.5707963267948966 rad - pos: 63.5,-28.5 + - rot: 3.141592653589793 rad + pos: 28.5,-40.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14004 + - uid: 14301 components: - - rot: -1.5707963267948966 rad - pos: 64.5,-28.5 + - rot: 3.141592653589793 rad + pos: 28.5,-42.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14005 + - uid: 14302 components: - - rot: -1.5707963267948966 rad - pos: 65.5,-28.5 + - rot: 3.141592653589793 rad + pos: 28.5,-43.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14006 + - uid: 14303 components: - - rot: -1.5707963267948966 rad - pos: 66.5,-28.5 + - rot: 3.141592653589793 rad + pos: 28.5,-44.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14007 + - uid: 14304 components: - - rot: -1.5707963267948966 rad - pos: 67.5,-28.5 + - rot: 3.141592653589793 rad + pos: 28.5,-45.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14008 + - uid: 14312 components: - - rot: -1.5707963267948966 rad - pos: 68.5,-28.5 + - rot: 3.141592653589793 rad + pos: 29.5,-39.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14009 + - uid: 14313 components: - - rot: -1.5707963267948966 rad - pos: 69.5,-28.5 + - rot: 3.141592653589793 rad + pos: 29.5,-38.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14010 + - uid: 14314 components: - - rot: -1.5707963267948966 rad - pos: 70.5,-28.5 + - rot: 3.141592653589793 rad + pos: 29.5,-37.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14011 + - uid: 14315 components: - rot: -1.5707963267948966 rad - pos: 71.5,-28.5 + pos: 73.5,-46.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14012 + - uid: 14317 components: - - rot: -1.5707963267948966 rad - pos: 73.5,-28.5 + - rot: 3.141592653589793 rad + pos: 69.5,-45.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14013 + - uid: 14318 components: - - rot: -1.5707963267948966 rad - pos: 74.5,-28.5 + - rot: 3.141592653589793 rad + pos: 69.5,-44.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14014 + - uid: 14319 components: - rot: 3.141592653589793 rad - pos: 75.5,-29.5 + pos: 69.5,-43.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14015 + - uid: 14320 components: - rot: 3.141592653589793 rad - pos: 75.5,-30.5 + pos: 69.5,-42.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14016 + - uid: 14321 components: - rot: 3.141592653589793 rad - pos: 75.5,-31.5 + pos: 65.5,-45.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14017 + - uid: 14322 components: - rot: 3.141592653589793 rad - pos: 75.5,-32.5 + pos: 65.5,-44.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14018 + - uid: 14323 components: - rot: 3.141592653589793 rad - pos: 75.5,-33.5 + pos: 65.5,-43.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14019 + - uid: 14325 components: - rot: 3.141592653589793 rad - pos: 75.5,-34.5 + pos: 58.5,-45.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14020 + - uid: 14326 components: - rot: 3.141592653589793 rad - pos: 75.5,-35.5 + pos: 58.5,-44.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14023 + - uid: 14327 components: - - pos: 75.5,-21.5 + - rot: 3.141592653589793 rad + pos: 58.5,-43.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14024 + - uid: 14328 components: - - pos: 75.5,-22.5 + - rot: 3.141592653589793 rad + pos: 58.5,-42.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14025 + - uid: 14329 components: - - pos: 75.5,-23.5 + - rot: 3.141592653589793 rad + pos: 58.5,-41.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14026 + - uid: 14330 components: - - pos: 75.5,-24.5 + - rot: 1.5707963267948966 rad + pos: 72.5,-46.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14027 + - uid: 14331 components: - - pos: 75.5,-25.5 + - rot: 1.5707963267948966 rad + pos: 71.5,-46.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14028 + - uid: 14332 components: - - pos: 75.5,-26.5 + - rot: 1.5707963267948966 rad + pos: 70.5,-46.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14029 + - uid: 14333 components: - - pos: 75.5,-27.5 + - rot: 1.5707963267948966 rad + pos: 68.5,-46.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14035 + - uid: 14334 components: - - pos: 54.5,-25.5 + - rot: 1.5707963267948966 rad + pos: 67.5,-46.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14036 + - uid: 14335 components: - - pos: 54.5,-26.5 + - rot: 1.5707963267948966 rad + pos: 66.5,-46.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14037 + - uid: 14336 components: - - pos: 54.5,-27.5 + - rot: 1.5707963267948966 rad + pos: 64.5,-46.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14038 + - uid: 14337 components: - - pos: 47.5,-29.5 + - rot: 1.5707963267948966 rad + pos: 63.5,-46.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14039 + - uid: 14339 components: - - pos: 47.5,-30.5 + - rot: 1.5707963267948966 rad + pos: 61.5,-46.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14040 + - uid: 14340 components: - - pos: 47.5,-31.5 + - rot: 1.5707963267948966 rad + pos: 60.5,-46.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14044 + - uid: 14341 components: - rot: 1.5707963267948966 rad - pos: 27.5,6.5 + pos: 59.5,-46.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14045 + - uid: 14342 components: - rot: 1.5707963267948966 rad - pos: 28.5,6.5 + pos: 57.5,-46.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14046 + - uid: 14343 components: - rot: 1.5707963267948966 rad - pos: 29.5,6.5 + pos: 56.5,-46.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14047 + - uid: 14344 components: - rot: 1.5707963267948966 rad - pos: 30.5,6.5 + pos: 55.5,-46.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14048 + - uid: 14345 components: - rot: 1.5707963267948966 rad - pos: 31.5,6.5 + pos: 54.5,-46.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14049 + - uid: 14346 components: - rot: 1.5707963267948966 rad - pos: 32.5,6.5 + pos: 52.5,-46.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14050 + - uid: 14347 components: - rot: 1.5707963267948966 rad - pos: 33.5,6.5 + pos: 51.5,-46.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14051 + - uid: 14348 components: - rot: 1.5707963267948966 rad - pos: 34.5,6.5 + pos: 50.5,-46.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14052 + - uid: 14349 components: - - pos: 35.5,5.5 + - rot: 1.5707963267948966 rad + pos: 49.5,-46.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14058 + - uid: 14350 components: - - rot: -1.5707963267948966 rad - pos: 40.5,3.5 + - rot: 3.141592653589793 rad + pos: 61.5,-49.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14059 + - uid: 14351 components: - - rot: -1.5707963267948966 rad - pos: 41.5,3.5 + - rot: 1.5707963267948966 rad + pos: 47.5,-46.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14060 + - uid: 14352 components: - - rot: -1.5707963267948966 rad - pos: 42.5,3.5 + - rot: 1.5707963267948966 rad + pos: 46.5,-46.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14061 + - uid: 14353 components: - - rot: -1.5707963267948966 rad - pos: 43.5,3.5 + - rot: 1.5707963267948966 rad + pos: 45.5,-46.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14062 + - uid: 14354 components: - - rot: -1.5707963267948966 rad - pos: 44.5,3.5 + - rot: 1.5707963267948966 rad + pos: 44.5,-46.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14063 + - uid: 14355 components: - - rot: -1.5707963267948966 rad - pos: 45.5,3.5 + - rot: 1.5707963267948966 rad + pos: 43.5,-46.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14064 + - uid: 14356 components: - - rot: -1.5707963267948966 rad - pos: 46.5,3.5 + - rot: 1.5707963267948966 rad + pos: 42.5,-46.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14065 + - uid: 14357 components: - - rot: -1.5707963267948966 rad - pos: 47.5,3.5 + - rot: 1.5707963267948966 rad + pos: 41.5,-46.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14066 + - uid: 14358 components: - - rot: -1.5707963267948966 rad - pos: 48.5,3.5 + - rot: 1.5707963267948966 rad + pos: 39.5,-46.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14067 + - uid: 14359 components: - - rot: -1.5707963267948966 rad - pos: 49.5,3.5 + - rot: 1.5707963267948966 rad + pos: 38.5,-46.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14068 + - uid: 14360 components: - - rot: -1.5707963267948966 rad - pos: 50.5,3.5 + - rot: 1.5707963267948966 rad + pos: 37.5,-46.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14069 + - uid: 14361 components: - - rot: -1.5707963267948966 rad - pos: 51.5,3.5 + - rot: 1.5707963267948966 rad + pos: 36.5,-46.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14070 + - uid: 14362 components: - - rot: -1.5707963267948966 rad - pos: 52.5,3.5 + - pos: 40.5,-50.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14071 + - uid: 14366 components: - - rot: -1.5707963267948966 rad - pos: 53.5,3.5 + - rot: 3.141592653589793 rad + pos: 29.5,-60.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14072 + - uid: 14367 components: - - rot: -1.5707963267948966 rad - pos: 54.5,3.5 + - rot: 3.141592653589793 rad + pos: 29.5,-59.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14075 + - uid: 14368 components: - rot: 3.141592653589793 rad - pos: 57.5,2.5 + pos: 29.5,-58.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14076 + - uid: 14369 components: - rot: 3.141592653589793 rad - pos: 57.5,1.5 + pos: 29.5,-57.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14077 + - uid: 14370 components: - rot: 3.141592653589793 rad - pos: 57.5,0.5 + pos: 29.5,-56.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14078 + - uid: 14371 components: - rot: 3.141592653589793 rad - pos: 57.5,-0.5 + pos: 29.5,-55.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14079 + - uid: 14372 components: - rot: 3.141592653589793 rad - pos: 57.5,-1.5 + pos: 29.5,-54.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14080 + - uid: 14373 components: - rot: 3.141592653589793 rad - pos: 57.5,-2.5 + pos: 29.5,-53.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14081 + - uid: 14374 components: - rot: 3.141592653589793 rad - pos: 57.5,-3.5 + pos: 29.5,-52.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14082 + - uid: 14375 components: - rot: 3.141592653589793 rad - pos: 57.5,-4.5 + pos: 29.5,-51.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14376 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-49.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14377 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-48.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14378 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-47.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14084 + - uid: 14379 components: - rot: 3.141592653589793 rad - pos: 57.5,-6.5 + pos: 30.5,-48.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14085 + - uid: 14380 components: - rot: 3.141592653589793 rad - pos: 57.5,-7.5 + pos: 30.5,-49.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14086 + - uid: 14381 components: - rot: 3.141592653589793 rad - pos: 57.5,-8.5 + pos: 30.5,-51.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14087 + - uid: 14382 components: - rot: 3.141592653589793 rad - pos: 57.5,-9.5 + pos: 30.5,-52.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14089 + - uid: 14383 components: - - rot: -1.5707963267948966 rad - pos: 33.5,-2.5 + - rot: 3.141592653589793 rad + pos: 30.5,-53.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14090 + - uid: 14384 components: - - rot: -1.5707963267948966 rad - pos: 34.5,-2.5 + - rot: 3.141592653589793 rad + pos: 30.5,-54.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14091 + - uid: 14385 components: - - rot: -1.5707963267948966 rad - pos: 35.5,-2.5 + - rot: 3.141592653589793 rad + pos: 30.5,-55.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14092 + - uid: 14386 components: - - rot: -1.5707963267948966 rad - pos: 36.5,-2.5 + - rot: 3.141592653589793 rad + pos: 30.5,-56.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14093 + - uid: 14387 components: - - rot: -1.5707963267948966 rad - pos: 37.5,-2.5 + - rot: 3.141592653589793 rad + pos: 30.5,-57.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14094 + - uid: 14388 components: - - rot: -1.5707963267948966 rad - pos: 38.5,-2.5 + - rot: 3.141592653589793 rad + pos: 30.5,-58.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14095 + - uid: 14389 components: - - rot: -1.5707963267948966 rad - pos: 39.5,-2.5 + - rot: 3.141592653589793 rad + pos: 30.5,-59.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14096 + - uid: 14390 components: - - rot: -1.5707963267948966 rad - pos: 40.5,-2.5 + - rot: 3.141592653589793 rad + pos: 30.5,-60.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14097 + - uid: 14391 components: - - rot: -1.5707963267948966 rad - pos: 41.5,-2.5 + - rot: 1.5707963267948966 rad + pos: 31.5,-50.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14098 + - uid: 14399 components: - - rot: -1.5707963267948966 rad - pos: 42.5,-2.5 + - rot: 3.141592653589793 rad + pos: 29.5,-40.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14099 + - uid: 14400 components: - - rot: -1.5707963267948966 rad - pos: 43.5,-2.5 + - rot: 3.141592653589793 rad + pos: 29.5,-41.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14100 + - uid: 14401 components: - - rot: -1.5707963267948966 rad - pos: 44.5,-2.5 + - rot: 3.141592653589793 rad + pos: 29.5,-42.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14101 + - uid: 14402 components: - - rot: -1.5707963267948966 rad - pos: 45.5,-2.5 + - rot: 3.141592653589793 rad + pos: 29.5,-43.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14102 + - uid: 14403 components: - - rot: -1.5707963267948966 rad - pos: 46.5,-2.5 + - rot: 3.141592653589793 rad + pos: 29.5,-44.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14103 + - uid: 14404 components: - - rot: -1.5707963267948966 rad - pos: 47.5,-2.5 + - rot: 3.141592653589793 rad + pos: 29.5,-45.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14104 + - uid: 14405 components: - - rot: -1.5707963267948966 rad - pos: 48.5,-2.5 + - rot: 3.141592653589793 rad + pos: 29.5,-46.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14105 + - uid: 14411 components: - - rot: -1.5707963267948966 rad - pos: 49.5,-2.5 + - rot: 1.5707963267948966 rad + pos: 73.5,-47.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14106 + - uid: 14412 components: - - rot: -1.5707963267948966 rad - pos: 50.5,-2.5 + - pos: 72.5,-46.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14107 + - uid: 14413 components: - - rot: -1.5707963267948966 rad - pos: 51.5,-2.5 + - pos: 72.5,-45.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14108 + - uid: 14414 components: - - rot: -1.5707963267948966 rad - pos: 52.5,-2.5 + - pos: 72.5,-44.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14109 + - uid: 14415 components: - - rot: -1.5707963267948966 rad - pos: 53.5,-2.5 + - pos: 72.5,-43.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14110 + - uid: 14416 components: - - rot: -1.5707963267948966 rad - pos: 54.5,-2.5 + - pos: 72.5,-42.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14111 + - uid: 14417 components: - rot: -1.5707963267948966 rad - pos: 55.5,-2.5 + pos: 71.5,-47.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14112 + - uid: 14418 components: - rot: -1.5707963267948966 rad - pos: 56.5,-2.5 + pos: 70.5,-47.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14113 + - uid: 14419 components: - rot: -1.5707963267948966 rad - pos: 57.5,-2.5 + pos: 69.5,-47.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14116 + - uid: 14420 components: - rot: -1.5707963267948966 rad - pos: 55.5,3.5 + pos: 68.5,-47.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14117 + - uid: 14421 components: - - rot: -1.5707963267948966 rad - pos: 56.5,3.5 + - rot: 3.141592653589793 rad + pos: 67.5,-46.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14118 + - uid: 14422 components: - rot: 3.141592653589793 rad - pos: 58.5,-3.5 + pos: 67.5,-45.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14119 + - uid: 14423 components: - rot: 3.141592653589793 rad - pos: 58.5,-4.5 + pos: 67.5,-44.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14120 + - uid: 14424 components: - rot: 3.141592653589793 rad - pos: 58.5,-5.5 + pos: 67.5,-43.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14122 + - uid: 14425 components: - rot: 3.141592653589793 rad - pos: 58.5,-7.5 + pos: 67.5,-42.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14123 + - uid: 14426 components: - - rot: 3.141592653589793 rad - pos: 58.5,-8.5 + - rot: -1.5707963267948966 rad + pos: 66.5,-47.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14124 + - uid: 14427 components: - - rot: 3.141592653589793 rad - pos: 58.5,-9.5 + - rot: -1.5707963267948966 rad + pos: 65.5,-47.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14132 + - uid: 14428 components: - rot: -1.5707963267948966 rad - pos: 57.5,-20.5 + pos: 64.5,-47.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14133 + - uid: 14429 components: - rot: -1.5707963267948966 rad - pos: 56.5,-20.5 + pos: 63.5,-47.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14134 + - uid: 14430 components: - rot: -1.5707963267948966 rad - pos: 55.5,-20.5 + pos: 62.5,-47.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14135 + - uid: 14431 components: - rot: 3.141592653589793 rad - pos: 54.5,-19.5 + pos: 61.5,-48.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14136 + - uid: 14432 components: - - rot: 3.141592653589793 rad - pos: 54.5,-18.5 + - rot: -1.5707963267948966 rad + pos: 60.5,-47.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14137 + - uid: 14433 components: - rot: 3.141592653589793 rad - pos: 54.5,-17.5 + pos: 59.5,-46.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14138 + - uid: 14434 components: - rot: 3.141592653589793 rad - pos: 54.5,-16.5 + pos: 59.5,-45.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14139 + - uid: 14435 components: - rot: 3.141592653589793 rad - pos: 54.5,-15.5 + pos: 59.5,-44.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14140 + - uid: 14436 components: - rot: 3.141592653589793 rad - pos: 54.5,-14.5 + pos: 59.5,-43.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14141 + - uid: 14437 components: - rot: 3.141592653589793 rad - pos: 54.5,-13.5 + pos: 59.5,-42.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14142 + - uid: 14440 components: - - rot: 3.141592653589793 rad - pos: 54.5,-12.5 + - pos: 54.5,-46.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14143 + - uid: 14441 components: - - rot: 3.141592653589793 rad - pos: 54.5,-11.5 + - rot: -1.5707963267948966 rad + pos: 58.5,-47.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14144 + - uid: 14442 components: - - rot: 3.141592653589793 rad - pos: 54.5,-10.5 + - rot: -1.5707963267948966 rad + pos: 57.5,-47.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14145 + - uid: 14443 components: - - rot: 3.141592653589793 rad - pos: 54.5,-9.5 + - rot: -1.5707963267948966 rad + pos: 56.5,-47.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14146 + - uid: 14444 components: - - rot: 3.141592653589793 rad - pos: 54.5,-8.5 + - rot: -1.5707963267948966 rad + pos: 55.5,-47.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14147 + - uid: 14445 components: - - rot: 3.141592653589793 rad - pos: 54.5,-7.5 + - rot: -1.5707963267948966 rad + pos: 53.5,-47.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14148 + - uid: 14446 components: - - rot: 3.141592653589793 rad - pos: 54.5,-6.5 + - rot: -1.5707963267948966 rad + pos: 52.5,-47.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14149 + - uid: 14447 components: - - rot: 1.5707963267948966 rad - pos: 55.5,-5.5 + - rot: -1.5707963267948966 rad + pos: 51.5,-47.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14150 + - uid: 14449 components: - - rot: 1.5707963267948966 rad - pos: 56.5,-5.5 + - rot: -1.5707963267948966 rad + pos: 49.5,-47.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14450 + components: + - rot: -1.5707963267948966 rad + pos: 48.5,-47.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14151 + - uid: 14452 components: - - rot: 1.5707963267948966 rad - pos: 57.5,-6.5 + - rot: -1.5707963267948966 rad + pos: 46.5,-47.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14152 + - uid: 14453 components: - - rot: 1.5707963267948966 rad - pos: 56.5,-6.5 + - rot: -1.5707963267948966 rad + pos: 45.5,-47.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14153 + - uid: 14455 components: - - pos: 55.5,-7.5 + - rot: -1.5707963267948966 rad + pos: 43.5,-47.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14154 + - uid: 14456 components: - - pos: 55.5,-8.5 + - rot: -1.5707963267948966 rad + pos: 42.5,-47.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14155 + - uid: 14457 components: - - pos: 55.5,-9.5 + - rot: -1.5707963267948966 rad + pos: 41.5,-47.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14156 + - uid: 14458 components: - - pos: 55.5,-10.5 + - rot: -1.5707963267948966 rad + pos: 40.5,-47.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14157 + - uid: 14459 components: - - pos: 55.5,-11.5 + - rot: -1.5707963267948966 rad + pos: 39.5,-47.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14158 + - uid: 14460 components: - - pos: 55.5,-12.5 + - rot: -1.5707963267948966 rad + pos: 38.5,-47.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14159 + - uid: 14461 components: - - pos: 55.5,-13.5 + - rot: -1.5707963267948966 rad + pos: 37.5,-47.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14160 + - uid: 14462 components: - - pos: 55.5,-14.5 + - rot: 3.141592653589793 rad + pos: 36.5,-46.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14161 + - uid: 14463 components: - - pos: 55.5,-15.5 + - rot: 1.5707963267948966 rad + pos: 35.5,-47.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14162 + - uid: 14464 components: - - pos: 55.5,-16.5 + - rot: 1.5707963267948966 rad + pos: 30.5,-47.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14163 + - uid: 14475 components: - - pos: 55.5,-17.5 + - rot: 3.141592653589793 rad + pos: -12.5,-48.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14164 + - uid: 14476 components: - - pos: 55.5,-18.5 + - rot: 3.141592653589793 rad + pos: -12.5,-47.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14165 + - uid: 14477 components: - - rot: -1.5707963267948966 rad - pos: 56.5,-19.5 + - rot: 1.5707963267948966 rad + pos: -11.5,-46.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14166 + - uid: 14479 components: - - rot: -1.5707963267948966 rad - pos: 57.5,-19.5 + - rot: 1.5707963267948966 rad + pos: -9.5,-46.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14167 + - uid: 14480 components: - - rot: 3.141592653589793 rad - pos: 74.5,-26.5 + - rot: 1.5707963267948966 rad + pos: -8.5,-46.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14168 + - uid: 14481 components: - - rot: 3.141592653589793 rad - pos: 74.5,-25.5 + - rot: 1.5707963267948966 rad + pos: -7.5,-46.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14169 + - uid: 14482 components: - - rot: 3.141592653589793 rad - pos: 74.5,-24.5 + - rot: 1.5707963267948966 rad + pos: -6.5,-46.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14170 + - uid: 14483 components: - - rot: 3.141592653589793 rad - pos: 74.5,-23.5 + - rot: 1.5707963267948966 rad + pos: -5.5,-46.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14171 + - uid: 14484 components: - rot: 3.141592653589793 rad - pos: 74.5,-22.5 + pos: -10.5,-45.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14172 + - uid: 14485 components: - rot: 3.141592653589793 rad - pos: 74.5,-21.5 + pos: -10.5,-44.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14173 + - uid: 14486 components: - - pos: 74.5,-28.5 + - rot: 3.141592653589793 rad + pos: -10.5,-43.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14174 + - uid: 14487 components: - - pos: 74.5,-29.5 + - rot: 1.5707963267948966 rad + pos: -3.5,-46.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14175 + - uid: 14488 components: - - pos: 74.5,-30.5 + - rot: 1.5707963267948966 rad + pos: -2.5,-46.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14176 + - uid: 14489 components: - - pos: 74.5,-31.5 + - rot: 1.5707963267948966 rad + pos: -1.5,-46.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14177 + - uid: 14490 components: - - pos: 74.5,-32.5 + - rot: 1.5707963267948966 rad + pos: -0.5,-46.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14178 + - uid: 14491 components: - - pos: 74.5,-33.5 + - rot: 1.5707963267948966 rad + pos: 1.5,-46.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14179 + - uid: 14492 components: - - pos: 74.5,-34.5 + - rot: 1.5707963267948966 rad + pos: 2.5,-46.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14180 + - uid: 14493 components: - - pos: 74.5,-35.5 + - rot: 1.5707963267948966 rad + pos: 3.5,-46.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14181 + - uid: 14494 components: - - rot: -1.5707963267948966 rad - pos: 73.5,-27.5 + - rot: 1.5707963267948966 rad + pos: 5.5,-46.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14182 + - uid: 14495 components: - - rot: -1.5707963267948966 rad - pos: 72.5,-27.5 + - rot: 1.5707963267948966 rad + pos: 6.5,-46.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14183 + - uid: 14496 components: - - rot: -1.5707963267948966 rad - pos: 71.5,-27.5 + - rot: 1.5707963267948966 rad + pos: 7.5,-46.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14184 + - uid: 14497 components: - - rot: -1.5707963267948966 rad - pos: 70.5,-27.5 + - rot: 1.5707963267948966 rad + pos: 8.5,-46.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14185 + - uid: 14498 components: - - rot: -1.5707963267948966 rad - pos: 69.5,-27.5 + - rot: 1.5707963267948966 rad + pos: 9.5,-46.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14186 + - uid: 14499 components: - - rot: -1.5707963267948966 rad - pos: 68.5,-27.5 + - rot: 1.5707963267948966 rad + pos: 10.5,-46.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14187 + - uid: 14500 components: - - rot: -1.5707963267948966 rad - pos: 67.5,-27.5 + - rot: 1.5707963267948966 rad + pos: 11.5,-46.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14188 + - uid: 14501 components: - - rot: -1.5707963267948966 rad - pos: 66.5,-27.5 + - rot: 1.5707963267948966 rad + pos: 12.5,-46.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14189 + - uid: 14502 components: - - rot: -1.5707963267948966 rad - pos: 65.5,-27.5 + - rot: 1.5707963267948966 rad + pos: 14.5,-46.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14190 + - uid: 14503 components: - - rot: -1.5707963267948966 rad - pos: 64.5,-27.5 + - rot: 1.5707963267948966 rad + pos: 15.5,-46.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14191 + - uid: 14504 components: - - rot: -1.5707963267948966 rad - pos: 63.5,-27.5 + - rot: 1.5707963267948966 rad + pos: 16.5,-46.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14192 + - uid: 14505 components: - - rot: -1.5707963267948966 rad - pos: 62.5,-27.5 + - rot: 1.5707963267948966 rad + pos: 17.5,-46.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14193 + - uid: 14506 components: - - rot: -1.5707963267948966 rad - pos: 61.5,-27.5 + - rot: 1.5707963267948966 rad + pos: 18.5,-46.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14194 + - uid: 14507 components: - - rot: 3.141592653589793 rad - pos: 60.5,-28.5 + - rot: 1.5707963267948966 rad + pos: 19.5,-46.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14195 + - uid: 14508 components: - rot: 1.5707963267948966 rad - pos: 59.5,-27.5 + pos: 20.5,-46.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14196 + - uid: 14509 components: - rot: 1.5707963267948966 rad - pos: 58.5,-27.5 + pos: 22.5,-46.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14197 + - uid: 14510 components: - rot: 1.5707963267948966 rad - pos: 57.5,-27.5 + pos: 23.5,-46.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14198 + - uid: 14511 components: - rot: 1.5707963267948966 rad - pos: 56.5,-27.5 + pos: 25.5,-46.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14199 + - uid: 14512 components: - rot: 1.5707963267948966 rad - pos: 55.5,-27.5 + pos: 26.5,-46.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14200 + - uid: 14513 components: - rot: 1.5707963267948966 rad - pos: 54.5,-27.5 + pos: 27.5,-46.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14201 + - uid: 14516 components: - - pos: 53.5,-26.5 + - rot: 3.141592653589793 rad + pos: 25.5,-42.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14202 + - uid: 14517 components: - - pos: 53.5,-25.5 + - rot: 1.5707963267948966 rad + pos: 26.5,-41.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14203 + - uid: 14518 components: - - pos: 53.5,-28.5 + - rot: 1.5707963267948966 rad + pos: 27.5,-41.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14204 + - uid: 14520 components: - - rot: -1.5707963267948966 rad - pos: 52.5,-27.5 + - rot: 1.5707963267948966 rad + pos: 25.5,-50.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14205 + - uid: 14521 components: - - rot: -1.5707963267948966 rad - pos: 51.5,-27.5 + - pos: 24.5,-51.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14206 + - uid: 14522 components: - - rot: -1.5707963267948966 rad - pos: 50.5,-27.5 + - pos: 24.5,-52.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14207 + - uid: 14523 components: - - rot: -1.5707963267948966 rad - pos: 49.5,-27.5 + - pos: 24.5,-53.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14208 + - uid: 14527 components: - - rot: -1.5707963267948966 rad - pos: 48.5,-27.5 + - rot: 1.5707963267948966 rad + pos: 20.5,-50.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14209 + - uid: 14533 components: - - rot: -1.5707963267948966 rad - pos: 47.5,-27.5 + - rot: 1.5707963267948966 rad + pos: -45.5,-41.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14210 + - uid: 14534 components: - - rot: 3.141592653589793 rad - pos: 46.5,-28.5 + - rot: 1.5707963267948966 rad + pos: -46.5,-41.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14211 + - uid: 14535 components: - - rot: 3.141592653589793 rad - pos: 46.5,-29.5 + - rot: 1.5707963267948966 rad + pos: -47.5,-41.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14212 + - uid: 14536 components: - - rot: 3.141592653589793 rad - pos: 46.5,-30.5 + - rot: 1.5707963267948966 rad + pos: -48.5,-41.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14213 + - uid: 14537 components: - - rot: 3.141592653589793 rad - pos: 46.5,-31.5 + - rot: 1.5707963267948966 rad + pos: -49.5,-41.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14214 + - uid: 14557 components: - rot: 1.5707963267948966 rad - pos: 45.5,-27.5 + pos: -4.5,-84.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14215 + - uid: 14560 components: - - rot: 1.5707963267948966 rad - pos: 44.5,-27.5 + - pos: 24.5,-47.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14216 + - uid: 14561 components: - - rot: 1.5707963267948966 rad - pos: 43.5,-27.5 + - pos: 24.5,-48.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14217 + - uid: 14562 components: - - rot: 1.5707963267948966 rad - pos: 42.5,-27.5 + - pos: 24.5,-49.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14218 + - uid: 14563 components: - - rot: 1.5707963267948966 rad - pos: 41.5,-27.5 + - pos: 21.5,-47.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14219 + - uid: 14564 components: - - rot: 1.5707963267948966 rad - pos: 40.5,-27.5 + - pos: 21.5,-48.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14220 + - uid: 14565 components: - - rot: 1.5707963267948966 rad - pos: 39.5,-27.5 + - pos: 21.5,-49.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14221 + - uid: 14566 components: - - rot: 1.5707963267948966 rad - pos: 38.5,-27.5 + - pos: 21.5,-51.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14222 + - uid: 14567 components: - - pos: 37.5,-28.5 + - pos: 21.5,-52.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14223 + - uid: 14568 components: - - rot: -1.5707963267948966 rad - pos: 36.5,-27.5 + - pos: 21.5,-53.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14224 + - uid: 14569 components: - - rot: -1.5707963267948966 rad - pos: 35.5,-27.5 + - pos: 21.5,-54.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14225 + - uid: 14570 components: - - rot: -1.5707963267948966 rad - pos: 34.5,-27.5 + - pos: 21.5,-55.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14226 + - uid: 14571 components: - - rot: -1.5707963267948966 rad - pos: 33.5,-27.5 + - pos: 21.5,-56.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14227 + - uid: 14572 components: - - rot: -1.5707963267948966 rad - pos: 32.5,-27.5 + - pos: 21.5,-58.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14228 + - uid: 14573 components: - - rot: -1.5707963267948966 rad - pos: 31.5,-27.5 + - pos: 21.5,-59.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14229 + - uid: 14574 components: - - rot: -1.5707963267948966 rad - pos: 30.5,-27.5 + - pos: 21.5,-60.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14243 + - uid: 14575 components: - - pos: 28.5,-29.5 + - pos: 21.5,-61.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14244 + - uid: 14576 components: - - pos: 28.5,-30.5 + - pos: 21.5,-62.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14245 + - uid: 14577 components: - - pos: 28.5,-31.5 + - pos: 21.5,-64.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14246 + - uid: 14578 components: - - pos: 28.5,-32.5 + - pos: 21.5,-65.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14247 + - uid: 14579 components: - - rot: -1.5707963267948966 rad - pos: 29.5,-33.5 + - rot: 1.5707963267948966 rad + pos: 20.5,-63.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14248 + - uid: 14580 components: - - rot: -1.5707963267948966 rad - pos: 30.5,-33.5 + - rot: 1.5707963267948966 rad + pos: 19.5,-63.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14249 + - uid: 14581 components: - - rot: -1.5707963267948966 rad - pos: 31.5,-33.5 + - rot: 1.5707963267948966 rad + pos: 18.5,-63.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14250 + - uid: 14582 components: - - rot: -1.5707963267948966 rad - pos: 32.5,-33.5 + - rot: 1.5707963267948966 rad + pos: 17.5,-63.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14251 + - uid: 14583 components: - - rot: -1.5707963267948966 rad - pos: 33.5,-33.5 + - pos: 16.5,-64.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14252 + - uid: 14584 components: - - rot: -1.5707963267948966 rad - pos: 34.5,-33.5 + - pos: 16.5,-65.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14253 + - uid: 14585 + components: + - pos: 16.5,-66.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 14586 components: - rot: -1.5707963267948966 rad - pos: 35.5,-33.5 + pos: 15.5,-63.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14254 + - uid: 14587 components: - rot: -1.5707963267948966 rad - pos: 36.5,-33.5 + pos: 14.5,-63.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14255 + - uid: 14588 components: - rot: -1.5707963267948966 rad - pos: 37.5,-33.5 + pos: 13.5,-63.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14256 + - uid: 14589 components: - rot: -1.5707963267948966 rad - pos: 38.5,-33.5 + pos: 12.5,-63.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14257 + - uid: 14590 components: - rot: -1.5707963267948966 rad - pos: 39.5,-33.5 + pos: 11.5,-63.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14258 + - uid: 14591 components: - rot: 3.141592653589793 rad - pos: 40.5,-34.5 + pos: 10.5,-64.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14259 + - uid: 14592 components: - rot: 3.141592653589793 rad - pos: 40.5,-35.5 + pos: 10.5,-65.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14260 + - uid: 14593 components: - rot: 3.141592653589793 rad - pos: 40.5,-36.5 + pos: 10.5,-66.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14261 + - uid: 14594 components: - rot: 3.141592653589793 rad - pos: 40.5,-37.5 + pos: 10.5,-67.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14262 + - uid: 14596 components: - rot: 3.141592653589793 rad - pos: 40.5,-38.5 + pos: 10.5,-69.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14265 + - uid: 14597 components: - - rot: 1.5707963267948966 rad - pos: 37.5,-39.5 + - rot: 3.141592653589793 rad + pos: 10.5,-70.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14266 + - uid: 14598 components: - - rot: 1.5707963267948966 rad - pos: 38.5,-39.5 + - rot: 3.141592653589793 rad + pos: 10.5,-71.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14267 + - uid: 14599 components: - - pos: 39.5,-38.5 + - rot: 1.5707963267948966 rad + pos: 9.5,-72.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14268 + - uid: 14600 components: - - pos: 39.5,-37.5 + - rot: 1.5707963267948966 rad + pos: 8.5,-72.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14269 + - uid: 14601 components: - - pos: 39.5,-36.5 + - rot: -1.5707963267948966 rad + pos: 6.5,-72.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14270 + - uid: 14602 components: - - pos: 39.5,-35.5 + - rot: 3.141592653589793 rad + pos: 5.5,-73.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14271 + - uid: 14603 components: - - pos: 39.5,-34.5 + - rot: 3.141592653589793 rad + pos: 5.5,-74.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14272 + - uid: 14604 components: - - pos: 39.5,-33.5 + - rot: 3.141592653589793 rad + pos: 5.5,-75.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14273 + - uid: 14605 components: - - pos: 28.5,-34.5 + - rot: 3.141592653589793 rad + pos: 5.5,-76.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14274 + - uid: 14606 components: - - pos: 28.5,-35.5 + - rot: 3.141592653589793 rad + pos: 4.5,-78.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14275 + - uid: 14607 components: - - pos: 28.5,-36.5 + - rot: 3.141592653589793 rad + pos: 2.5,-81.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14276 + - uid: 14608 components: - - rot: -1.5707963267948966 rad - pos: 29.5,-37.5 + - rot: 1.5707963267948966 rad + pos: 4.5,-72.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14280 + - uid: 14609 components: - rot: 1.5707963267948966 rad - pos: 40.5,-32.5 + pos: 3.5,-72.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14281 + - uid: 14610 components: - rot: 1.5707963267948966 rad - pos: 38.5,-32.5 + pos: 2.5,-72.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14282 + - uid: 14612 components: - rot: 1.5707963267948966 rad - pos: 37.5,-32.5 + pos: 0.5,-72.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14283 + - uid: 14613 components: - - rot: 1.5707963267948966 rad - pos: 36.5,-32.5 + - pos: -0.5,-73.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14284 + - uid: 14614 components: - - rot: 1.5707963267948966 rad - pos: 35.5,-32.5 + - pos: -0.5,-74.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14285 + - uid: 14615 components: - - rot: 1.5707963267948966 rad - pos: 34.5,-32.5 + - pos: -0.5,-75.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14286 + - uid: 14616 components: - - rot: 1.5707963267948966 rad - pos: 33.5,-32.5 + - pos: -2.5,-78.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14287 + - uid: 14617 components: - - rot: 1.5707963267948966 rad - pos: 32.5,-32.5 + - pos: -2.5,-79.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14288 + - uid: 14618 components: - - rot: 1.5707963267948966 rad - pos: 31.5,-32.5 + - pos: -3.5,-81.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14289 + - uid: 14619 components: - - rot: 1.5707963267948966 rad - pos: 30.5,-32.5 + - pos: -3.5,-82.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14290 + - uid: 14620 components: - - pos: 29.5,-33.5 + - pos: -3.5,-83.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14291 + - uid: 14622 components: - - pos: 29.5,-34.5 + - rot: -1.5707963267948966 rad + pos: -6.5,-84.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14292 + - uid: 14623 components: - - pos: 29.5,-35.5 + - rot: -1.5707963267948966 rad + pos: -7.5,-84.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14297 + - uid: 14624 components: - - rot: 3.141592653589793 rad - pos: 28.5,-38.5 + - rot: -1.5707963267948966 rad + pos: -8.5,-84.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14298 + - uid: 14636 components: - - rot: 3.141592653589793 rad - pos: 28.5,-39.5 + - rot: 1.5707963267948966 rad + pos: 20.5,-57.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14299 + - uid: 14637 components: - - rot: 3.141592653589793 rad - pos: 28.5,-40.5 + - rot: 1.5707963267948966 rad + pos: 22.5,-63.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14301 + - uid: 14638 components: - - rot: 3.141592653589793 rad - pos: 28.5,-42.5 + - rot: 1.5707963267948966 rad + pos: 23.5,-63.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14302 + - uid: 14640 components: - - rot: 3.141592653589793 rad - pos: 28.5,-43.5 + - pos: 24.5,-64.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14303 + - uid: 14641 components: - - rot: 3.141592653589793 rad - pos: 28.5,-44.5 + - pos: 24.5,-65.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14304 + - uid: 14642 components: - - rot: 3.141592653589793 rad - pos: 28.5,-45.5 + - pos: 24.5,-66.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14312 + - uid: 14648 components: - rot: 3.141592653589793 rad - pos: 29.5,-39.5 + pos: 17.5,-73.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14313 + - uid: 14650 components: - - rot: 3.141592653589793 rad - pos: 29.5,-38.5 + - rot: 1.5707963267948966 rad + pos: 18.5,-71.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14314 + - uid: 14651 components: - - rot: 3.141592653589793 rad - pos: 29.5,-37.5 + - rot: 1.5707963267948966 rad + pos: 19.5,-71.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14315 + - uid: 14652 components: - - rot: -1.5707963267948966 rad - pos: 73.5,-46.5 + - rot: 1.5707963267948966 rad + pos: 20.5,-71.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14317 + - uid: 14653 components: - - rot: 3.141592653589793 rad - pos: 69.5,-45.5 + - rot: 1.5707963267948966 rad + pos: 21.5,-71.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14318 + - uid: 14654 components: - - rot: 3.141592653589793 rad - pos: 69.5,-44.5 + - rot: 1.5707963267948966 rad + pos: 22.5,-71.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14319 + - uid: 14667 components: - rot: 3.141592653589793 rad - pos: 69.5,-43.5 + pos: 61.5,-50.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14681 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-88.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14320 + - uid: 14683 components: - - rot: 3.141592653589793 rad - pos: 69.5,-42.5 + - rot: -1.5707963267948966 rad + pos: 34.5,-88.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14321 + - uid: 14684 components: - - rot: 3.141592653589793 rad - pos: 65.5,-45.5 + - rot: -1.5707963267948966 rad + pos: 33.5,-88.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14322 + - uid: 14685 components: - - rot: 3.141592653589793 rad - pos: 65.5,-44.5 + - rot: -1.5707963267948966 rad + pos: 32.5,-88.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14323 + - uid: 14686 components: - - rot: 3.141592653589793 rad - pos: 65.5,-43.5 + - rot: -1.5707963267948966 rad + pos: 31.5,-88.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14325 + - uid: 14687 components: - - rot: 3.141592653589793 rad - pos: 58.5,-45.5 + - rot: -1.5707963267948966 rad + pos: 30.5,-88.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14326 + - uid: 14688 components: - - rot: 3.141592653589793 rad - pos: 58.5,-44.5 + - rot: -1.5707963267948966 rad + pos: 29.5,-88.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14327 + - uid: 14689 components: - - rot: 3.141592653589793 rad - pos: 58.5,-43.5 + - rot: -1.5707963267948966 rad + pos: 28.5,-88.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14328 + - uid: 14690 components: - - rot: 3.141592653589793 rad - pos: 58.5,-42.5 + - rot: -1.5707963267948966 rad + pos: 27.5,-88.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14329 + - uid: 14691 components: - rot: 3.141592653589793 rad - pos: 58.5,-41.5 + pos: 26.5,-87.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14330 + - uid: 14692 components: - - rot: 1.5707963267948966 rad - pos: 72.5,-46.5 + - rot: 3.141592653589793 rad + pos: 26.5,-86.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14331 + - uid: 14693 components: - rot: 1.5707963267948966 rad - pos: 71.5,-46.5 + pos: 25.5,-85.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14332 + - uid: 14694 components: - rot: 1.5707963267948966 rad - pos: 70.5,-46.5 + pos: 27.5,-84.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14333 + - uid: 14695 components: - rot: 1.5707963267948966 rad - pos: 68.5,-46.5 + pos: 28.5,-84.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14334 + - uid: 14696 components: - - rot: 1.5707963267948966 rad - pos: 67.5,-46.5 + - pos: 26.5,-83.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14335 + - uid: 14697 components: - - rot: 1.5707963267948966 rad - pos: 66.5,-46.5 + - pos: 26.5,-82.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14336 + - uid: 14698 components: - - rot: 1.5707963267948966 rad - pos: 64.5,-46.5 + - rot: -1.5707963267948966 rad + pos: 25.5,-81.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14337 + - uid: 14699 components: - - rot: 1.5707963267948966 rad - pos: 63.5,-46.5 + - rot: -1.5707963267948966 rad + pos: 24.5,-81.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14339 + - uid: 14700 components: - - rot: 1.5707963267948966 rad - pos: 61.5,-46.5 + - rot: 3.141592653589793 rad + pos: 23.5,-80.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14340 + - uid: 14701 components: - - rot: 1.5707963267948966 rad - pos: 60.5,-46.5 + - rot: 3.141592653589793 rad + pos: 23.5,-79.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14341 + - uid: 14702 components: - - rot: 1.5707963267948966 rad - pos: 59.5,-46.5 + - rot: 3.141592653589793 rad + pos: 23.5,-78.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14342 + - uid: 14703 components: - rot: 1.5707963267948966 rad - pos: 57.5,-46.5 + pos: 24.5,-77.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14343 + - uid: 14704 components: - rot: 1.5707963267948966 rad - pos: 56.5,-46.5 + pos: 25.5,-77.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14344 + - uid: 14705 components: - rot: 1.5707963267948966 rad - pos: 55.5,-46.5 + pos: 26.5,-77.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14345 + - uid: 14706 components: - - rot: 1.5707963267948966 rad - pos: 54.5,-46.5 + - pos: 23.5,-76.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14346 + - uid: 14707 components: - - rot: 1.5707963267948966 rad - pos: 52.5,-46.5 + - pos: 23.5,-75.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14347 + - uid: 14708 components: - - rot: 1.5707963267948966 rad - pos: 51.5,-46.5 + - pos: 23.5,-74.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14348 + - uid: 14709 components: - - rot: 1.5707963267948966 rad - pos: 50.5,-46.5 + - pos: 23.5,-73.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14349 + - uid: 14710 components: - - rot: 1.5707963267948966 rad - pos: 49.5,-46.5 + - pos: 23.5,-72.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14350 + - uid: 14714 components: - rot: 3.141592653589793 rad - pos: 61.5,-49.5 + pos: 36.5,-48.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14351 + - uid: 14715 components: - - rot: 1.5707963267948966 rad - pos: 47.5,-46.5 + - rot: 3.141592653589793 rad + pos: 36.5,-49.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14352 + - uid: 14716 components: - - rot: 1.5707963267948966 rad - pos: 46.5,-46.5 + - rot: 3.141592653589793 rad + pos: 36.5,-50.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14353 + - uid: 14722 components: - - rot: 1.5707963267948966 rad - pos: 45.5,-46.5 + - rot: -1.5707963267948966 rad + pos: 34.5,-47.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14354 + - uid: 14723 components: - - rot: 1.5707963267948966 rad - pos: 44.5,-46.5 + - rot: -1.5707963267948966 rad + pos: 33.5,-47.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14355 + - uid: 14724 components: - - rot: 1.5707963267948966 rad - pos: 43.5,-46.5 + - rot: -1.5707963267948966 rad + pos: 32.5,-47.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14356 + - uid: 14725 components: - - rot: 1.5707963267948966 rad - pos: 42.5,-46.5 + - rot: -1.5707963267948966 rad + pos: 31.5,-47.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14357 + - uid: 14728 components: - rot: 1.5707963267948966 rad - pos: 41.5,-46.5 + pos: 28.5,-47.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14358 + - uid: 14729 components: - rot: 1.5707963267948966 rad - pos: 39.5,-46.5 + pos: 27.5,-47.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14359 + - uid: 14730 components: - rot: 1.5707963267948966 rad - pos: 38.5,-46.5 + pos: 26.5,-47.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14360 + - uid: 14731 components: - - rot: 1.5707963267948966 rad - pos: 37.5,-46.5 + - pos: 25.5,-46.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14361 + - uid: 14732 components: - - rot: 1.5707963267948966 rad - pos: 36.5,-46.5 + - pos: 25.5,-45.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14362 + - uid: 14736 components: - - pos: 40.5,-50.5 + - rot: 3.141592653589793 rad + pos: 25.5,-55.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14366 + - uid: 14737 components: - rot: 3.141592653589793 rad - pos: 29.5,-60.5 + pos: 25.5,-54.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14367 + - uid: 14738 components: - rot: 3.141592653589793 rad - pos: 29.5,-59.5 + pos: 25.5,-53.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14368 + - uid: 14739 components: - rot: 3.141592653589793 rad - pos: 29.5,-58.5 + pos: 25.5,-52.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14369 + - uid: 14740 components: - rot: 3.141592653589793 rad - pos: 29.5,-57.5 + pos: 25.5,-51.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14370 + - uid: 14741 components: - rot: 3.141592653589793 rad - pos: 29.5,-56.5 + pos: 25.5,-50.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14371 + - uid: 14742 components: - rot: 3.141592653589793 rad - pos: 29.5,-55.5 + pos: 25.5,-48.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14372 + - uid: 14754 components: - - rot: 3.141592653589793 rad - pos: 29.5,-54.5 + - pos: -9.5,-46.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14373 + - uid: 14755 components: - - rot: 3.141592653589793 rad - pos: 29.5,-53.5 + - pos: -9.5,-45.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14374 + - uid: 14756 components: - - rot: 3.141592653589793 rad - pos: 29.5,-52.5 + - pos: -9.5,-44.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14375 + - uid: 14757 components: - - rot: 3.141592653589793 rad - pos: 29.5,-51.5 + - pos: -9.5,-43.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14376 + - uid: 14758 components: - - rot: 3.141592653589793 rad - pos: 29.5,-49.5 + - pos: -5.5,-46.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14377 + - uid: 14762 components: - - rot: 3.141592653589793 rad - pos: 29.5,-48.5 + - pos: -11.5,-46.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14378 + - uid: 14764 components: - - rot: 3.141592653589793 rad - pos: 30.5,-47.5 + - rot: -1.5707963267948966 rad + pos: -10.5,-47.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14379 + - uid: 14765 components: - - rot: 3.141592653589793 rad - pos: 30.5,-48.5 + - rot: -1.5707963267948966 rad + pos: -8.5,-47.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14380 + - uid: 14766 components: - - rot: 3.141592653589793 rad - pos: 30.5,-49.5 + - rot: -1.5707963267948966 rad + pos: -7.5,-47.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14381 + - uid: 14767 components: - - rot: 3.141592653589793 rad - pos: 30.5,-51.5 + - rot: -1.5707963267948966 rad + pos: -6.5,-47.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14382 + - uid: 14768 components: - - rot: 3.141592653589793 rad - pos: 30.5,-52.5 + - rot: -1.5707963267948966 rad + pos: -4.5,-47.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14383 + - uid: 14769 components: - - rot: 3.141592653589793 rad - pos: 30.5,-53.5 + - rot: -1.5707963267948966 rad + pos: -3.5,-47.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14384 + - uid: 14770 components: - - rot: 3.141592653589793 rad - pos: 30.5,-54.5 + - rot: -1.5707963267948966 rad + pos: -2.5,-47.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14385 + - uid: 14771 components: - - rot: 3.141592653589793 rad - pos: 30.5,-55.5 + - rot: -1.5707963267948966 rad + pos: -1.5,-47.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14386 + - uid: 14772 components: - - rot: 3.141592653589793 rad - pos: 30.5,-56.5 + - rot: -1.5707963267948966 rad + pos: -0.5,-47.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14387 + - uid: 14773 components: - - rot: 3.141592653589793 rad - pos: 30.5,-57.5 + - rot: -1.5707963267948966 rad + pos: 0.5,-47.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14388 + - uid: 14776 components: - - rot: 3.141592653589793 rad - pos: 30.5,-58.5 + - rot: -1.5707963267948966 rad + pos: 2.5,-47.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14389 + - uid: 14777 components: - - rot: 3.141592653589793 rad - pos: 30.5,-59.5 + - rot: -1.5707963267948966 rad + pos: 4.5,-47.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14390 + - uid: 14778 components: - - rot: 3.141592653589793 rad - pos: 30.5,-60.5 + - rot: -1.5707963267948966 rad + pos: 6.5,-47.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14391 + - uid: 14779 components: - - rot: 1.5707963267948966 rad - pos: 31.5,-50.5 + - rot: -1.5707963267948966 rad + pos: 7.5,-47.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14399 + - uid: 14780 components: - - rot: 3.141592653589793 rad - pos: 29.5,-40.5 + - rot: -1.5707963267948966 rad + pos: 8.5,-47.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14400 + - uid: 14781 components: - - rot: 3.141592653589793 rad - pos: 29.5,-41.5 + - rot: -1.5707963267948966 rad + pos: 9.5,-47.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14401 + - uid: 14782 components: - - rot: 3.141592653589793 rad - pos: 29.5,-42.5 + - rot: -1.5707963267948966 rad + pos: 10.5,-47.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14402 + - uid: 14783 components: - - rot: 3.141592653589793 rad - pos: 29.5,-43.5 + - rot: -1.5707963267948966 rad + pos: 11.5,-47.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14403 + - uid: 14784 components: - - rot: 3.141592653589793 rad - pos: 29.5,-44.5 + - rot: -1.5707963267948966 rad + pos: 12.5,-47.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14404 + - uid: 14785 components: - - rot: 3.141592653589793 rad - pos: 29.5,-45.5 + - rot: -1.5707963267948966 rad + pos: 13.5,-47.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14405 + - uid: 14786 components: - - rot: 3.141592653589793 rad - pos: 29.5,-46.5 + - rot: -1.5707963267948966 rad + pos: 16.5,-47.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14411 + - uid: 14787 components: - - rot: 1.5707963267948966 rad - pos: 73.5,-47.5 + - rot: -1.5707963267948966 rad + pos: 17.5,-47.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14412 + - uid: 14788 components: - - pos: 72.5,-46.5 + - rot: -1.5707963267948966 rad + pos: 18.5,-47.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14413 + - uid: 14790 components: - - pos: 72.5,-45.5 + - pos: 2.5,-12.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14414 + - uid: 14792 components: - - pos: 72.5,-44.5 + - pos: 2.5,-11.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14415 + - uid: 14793 components: - - pos: 72.5,-43.5 + - pos: 2.5,-10.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14416 + - uid: 14798 components: - - pos: 72.5,-42.5 + - rot: -1.5707963267948966 rad + pos: 15.5,-47.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14417 + - uid: 14799 components: - rot: -1.5707963267948966 rad - pos: 71.5,-47.5 + pos: 21.5,-47.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14418 + - uid: 14800 components: - rot: -1.5707963267948966 rad - pos: 70.5,-47.5 + pos: 22.5,-47.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14419 + - uid: 14801 components: - rot: -1.5707963267948966 rad - pos: 69.5,-47.5 + pos: 23.5,-47.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14420 + - uid: 14802 components: - rot: -1.5707963267948966 rad - pos: 68.5,-47.5 + pos: 24.5,-47.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14421 + - uid: 14803 components: - rot: 3.141592653589793 rad - pos: 67.5,-46.5 + pos: 19.5,-46.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14422 + - uid: 14804 components: - rot: 3.141592653589793 rad - pos: 67.5,-45.5 + pos: 5.5,-46.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14423 + - uid: 14827 components: - - rot: 3.141592653589793 rad - pos: 67.5,-44.5 + - pos: 1.5,-81.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14424 + - uid: 14828 components: - - rot: 3.141592653589793 rad - pos: 67.5,-43.5 + - pos: 1.5,-80.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14425 + - uid: 14831 components: - - rot: 3.141592653589793 rad - pos: 67.5,-42.5 + - pos: 3.5,-77.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14426 + - uid: 14832 components: - - rot: -1.5707963267948966 rad - pos: 66.5,-47.5 + - pos: 4.5,-75.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14427 + - uid: 14833 components: - - rot: -1.5707963267948966 rad - pos: 65.5,-47.5 + - pos: 4.5,-74.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14428 + - uid: 14840 components: - rot: -1.5707963267948966 rad - pos: 64.5,-47.5 + pos: -6.5,-83.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14429 + - uid: 14843 components: - - rot: -1.5707963267948966 rad - pos: 63.5,-47.5 + - rot: 3.141592653589793 rad + pos: -5.5,-82.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14430 + - uid: 14844 components: - - rot: -1.5707963267948966 rad - pos: 62.5,-47.5 + - rot: 3.141592653589793 rad + pos: -5.5,-80.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14431 + - uid: 14845 components: - rot: 3.141592653589793 rad - pos: 61.5,-48.5 + pos: -5.5,-79.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14432 + - uid: 14846 components: - - rot: -1.5707963267948966 rad - pos: 60.5,-47.5 + - rot: 3.141592653589793 rad + pos: -5.5,-78.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14433 + - uid: 14847 components: - rot: 3.141592653589793 rad - pos: 59.5,-46.5 + pos: -5.5,-77.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14434 + - uid: 14848 components: - - rot: 3.141592653589793 rad - pos: 59.5,-45.5 + - rot: 1.5707963267948966 rad + pos: -4.5,-76.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14435 + - uid: 14849 components: - - rot: 3.141592653589793 rad - pos: 59.5,-44.5 + - rot: 1.5707963267948966 rad + pos: -3.5,-76.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14436 + - uid: 14850 components: - - rot: 3.141592653589793 rad - pos: 59.5,-43.5 + - pos: -1.5,-74.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14437 + - uid: 14851 components: - - rot: 3.141592653589793 rad - pos: 59.5,-42.5 + - rot: -1.5707963267948966 rad + pos: -0.5,-73.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14440 + - uid: 14852 components: - - pos: 54.5,-46.5 + - rot: -1.5707963267948966 rad + pos: 0.5,-73.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14441 + - uid: 14853 components: - rot: -1.5707963267948966 rad - pos: 58.5,-47.5 + pos: 1.5,-73.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14442 + - uid: 14854 components: - rot: -1.5707963267948966 rad - pos: 57.5,-47.5 + pos: 2.5,-73.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14443 + - uid: 14856 components: - rot: -1.5707963267948966 rad - pos: 56.5,-47.5 + pos: 5.5,-73.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14444 + - uid: 14857 components: - rot: -1.5707963267948966 rad - pos: 55.5,-47.5 + pos: 7.5,-73.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14445 + - uid: 14858 components: - rot: -1.5707963267948966 rad - pos: 53.5,-47.5 + pos: 8.5,-73.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14446 + - uid: 14859 components: - - rot: -1.5707963267948966 rad - pos: 52.5,-47.5 + - rot: 3.141592653589793 rad + pos: 9.5,-72.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14447 + - uid: 14860 components: - - rot: -1.5707963267948966 rad - pos: 51.5,-47.5 + - rot: 3.141592653589793 rad + pos: 9.5,-71.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14449 + - uid: 14861 components: - - rot: -1.5707963267948966 rad - pos: 49.5,-47.5 + - rot: 3.141592653589793 rad + pos: 9.5,-70.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14450 + - uid: 14862 components: - - rot: -1.5707963267948966 rad - pos: 48.5,-47.5 + - rot: 3.141592653589793 rad + pos: 9.5,-69.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14452 + - uid: 14863 components: - - rot: -1.5707963267948966 rad - pos: 46.5,-47.5 + - rot: 3.141592653589793 rad + pos: 9.5,-68.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14453 + - uid: 14865 components: - - rot: -1.5707963267948966 rad - pos: 45.5,-47.5 + - rot: 3.141592653589793 rad + pos: 9.5,-66.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14455 + - uid: 14866 components: - - rot: -1.5707963267948966 rad - pos: 43.5,-47.5 + - rot: 3.141592653589793 rad + pos: 9.5,-65.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14456 + - uid: 14867 components: - - rot: -1.5707963267948966 rad - pos: 42.5,-47.5 + - rot: 3.141592653589793 rad + pos: 9.5,-64.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14457 + - uid: 14868 components: - - rot: -1.5707963267948966 rad - pos: 41.5,-47.5 + - rot: 3.141592653589793 rad + pos: 9.5,-63.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14458 + - uid: 14869 components: - - rot: -1.5707963267948966 rad - pos: 40.5,-47.5 + - rot: 1.5707963267948966 rad + pos: 10.5,-62.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14459 + - uid: 14870 components: - - rot: -1.5707963267948966 rad - pos: 39.5,-47.5 + - rot: 1.5707963267948966 rad + pos: 11.5,-62.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14460 + - uid: 14871 components: - - rot: -1.5707963267948966 rad - pos: 38.5,-47.5 + - rot: 1.5707963267948966 rad + pos: 12.5,-62.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14461 + - uid: 14872 components: - - rot: -1.5707963267948966 rad - pos: 37.5,-47.5 + - rot: 1.5707963267948966 rad + pos: 13.5,-62.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14462 + - uid: 14873 components: - - rot: 3.141592653589793 rad - pos: 36.5,-46.5 + - rot: 1.5707963267948966 rad + pos: 14.5,-62.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14463 + - uid: 14874 components: - rot: 1.5707963267948966 rad - pos: 35.5,-47.5 + pos: 16.5,-62.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14464 + - uid: 14875 components: - rot: 1.5707963267948966 rad - pos: 30.5,-47.5 + pos: 17.5,-62.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14475 + - uid: 14876 components: - - rot: 3.141592653589793 rad - pos: -12.5,-48.5 + - rot: 1.5707963267948966 rad + pos: 18.5,-62.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14476 + - uid: 14877 components: - - rot: 3.141592653589793 rad - pos: -12.5,-47.5 + - pos: 20.5,-61.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14477 + - uid: 14878 components: - - rot: 1.5707963267948966 rad - pos: -11.5,-46.5 + - pos: 20.5,-60.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14479 + - uid: 14879 components: - - rot: 1.5707963267948966 rad - pos: -9.5,-46.5 + - pos: 20.5,-59.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14480 + - uid: 14880 components: - - rot: 1.5707963267948966 rad - pos: -8.5,-46.5 + - pos: 20.5,-57.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14481 + - uid: 14881 components: - - rot: 1.5707963267948966 rad - pos: -7.5,-46.5 + - pos: 20.5,-56.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14482 + - uid: 14882 components: - - rot: 1.5707963267948966 rad - pos: -6.5,-46.5 + - pos: 20.5,-55.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14483 + - uid: 14883 components: - - rot: 1.5707963267948966 rad - pos: -5.5,-46.5 + - pos: 20.5,-54.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14484 + - uid: 14884 components: - - rot: 3.141592653589793 rad - pos: -10.5,-45.5 + - pos: 20.5,-53.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14485 + - uid: 14885 components: - - rot: 3.141592653589793 rad - pos: -10.5,-44.5 + - pos: 20.5,-52.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14486 + - uid: 14886 components: - - rot: 3.141592653589793 rad - pos: -10.5,-43.5 + - pos: 20.5,-50.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14487 + - uid: 14887 components: - - rot: 1.5707963267948966 rad - pos: -3.5,-46.5 + - pos: 20.5,-49.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14488 + - uid: 14888 components: - - rot: 1.5707963267948966 rad - pos: -2.5,-46.5 + - pos: 20.5,-48.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14489 + - uid: 14889 components: - - rot: 1.5707963267948966 rad - pos: -1.5,-46.5 + - pos: 19.5,-63.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14490 + - uid: 14890 components: - - rot: 1.5707963267948966 rad - pos: -0.5,-46.5 + - pos: 19.5,-64.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14491 + - uid: 14891 components: - rot: 1.5707963267948966 rad - pos: 1.5,-46.5 + pos: 18.5,-69.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14492 + - uid: 14892 components: - - rot: 1.5707963267948966 rad - pos: 2.5,-46.5 + - pos: 15.5,-63.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14493 + - uid: 14893 components: - - rot: 1.5707963267948966 rad - pos: 3.5,-46.5 + - pos: 15.5,-64.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14494 + - uid: 14894 components: - - rot: 1.5707963267948966 rad - pos: 5.5,-46.5 + - pos: 15.5,-65.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14495 + - uid: 14895 components: - - rot: 1.5707963267948966 rad - pos: 6.5,-46.5 + - pos: 15.5,-66.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14496 + - uid: 14900 components: - rot: 1.5707963267948966 rad - pos: 7.5,-46.5 + pos: 9.5,-68.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14497 + - uid: 14907 components: - rot: 1.5707963267948966 rad - pos: 8.5,-46.5 + pos: 19.5,-69.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14498 + - uid: 14909 components: - - rot: 1.5707963267948966 rad - pos: 9.5,-46.5 + - pos: 20.5,-67.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14499 + - uid: 14911 components: - - rot: 1.5707963267948966 rad - pos: 10.5,-46.5 + - pos: 20.5,-66.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14500 + - uid: 14927 components: - - rot: 1.5707963267948966 rad - pos: 11.5,-46.5 + - rot: 3.141592653589793 rad + pos: 28.5,-65.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14501 + - uid: 14928 components: - rot: 1.5707963267948966 rad - pos: 12.5,-46.5 + pos: 29.5,-64.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14502 + - uid: 14929 components: - rot: 1.5707963267948966 rad - pos: 14.5,-46.5 + pos: 30.5,-64.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14503 + - uid: 14931 components: - rot: 1.5707963267948966 rad - pos: 15.5,-46.5 + pos: 32.5,-64.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14504 + - uid: 14932 components: - rot: 1.5707963267948966 rad - pos: 16.5,-46.5 + pos: 33.5,-64.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14505 + - uid: 14933 components: - rot: 1.5707963267948966 rad - pos: 17.5,-46.5 + pos: 34.5,-64.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14506 + - uid: 14934 components: - rot: 1.5707963267948966 rad - pos: 18.5,-46.5 + pos: 35.5,-64.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14507 + - uid: 14935 components: - rot: 1.5707963267948966 rad - pos: 19.5,-46.5 + pos: 36.5,-64.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14508 + - uid: 14936 components: - - rot: 1.5707963267948966 rad - pos: 20.5,-46.5 + - pos: 38.5,-63.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14509 + - uid: 14937 components: - - rot: 1.5707963267948966 rad - pos: 22.5,-46.5 + - pos: 38.5,-62.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14510 + - uid: 14938 components: - - rot: 1.5707963267948966 rad - pos: 23.5,-46.5 + - pos: 38.5,-61.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14511 + - uid: 14939 components: - - rot: 1.5707963267948966 rad - pos: 25.5,-46.5 + - pos: 38.5,-60.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14512 + - uid: 14940 components: - - rot: 1.5707963267948966 rad - pos: 26.5,-46.5 + - pos: 38.5,-59.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14513 + - uid: 14941 components: - - rot: 1.5707963267948966 rad - pos: 27.5,-46.5 + - pos: 38.5,-58.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14516 + - uid: 14942 components: - - rot: 3.141592653589793 rad - pos: 25.5,-42.5 + - pos: 38.5,-57.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14517 + - uid: 14943 components: - - rot: 1.5707963267948966 rad - pos: 26.5,-41.5 + - pos: 38.5,-56.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14518 + - uid: 14944 components: - - rot: 1.5707963267948966 rad - pos: 27.5,-41.5 + - pos: 38.5,-55.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14520 + - uid: 14945 components: - - rot: 1.5707963267948966 rad - pos: 25.5,-50.5 + - pos: 38.5,-54.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14521 + - uid: 14946 components: - - pos: 24.5,-51.5 + - rot: -1.5707963267948966 rad + pos: 39.5,-53.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14522 + - uid: 14947 components: - - pos: 24.5,-52.5 + - rot: -1.5707963267948966 rad + pos: 40.5,-53.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14523 + - uid: 14949 components: - - pos: 24.5,-53.5 + - rot: -1.5707963267948966 rad + pos: 42.5,-53.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14527 + - uid: 14950 components: - - rot: 1.5707963267948966 rad - pos: 20.5,-50.5 + - rot: -1.5707963267948966 rad + pos: 43.5,-53.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14533 + - uid: 14951 components: - - rot: 1.5707963267948966 rad - pos: -45.5,-41.5 + - rot: 3.141592653589793 rad + pos: 44.5,-52.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14534 + - uid: 14952 components: - - rot: 1.5707963267948966 rad - pos: -46.5,-41.5 + - rot: 3.141592653589793 rad + pos: 44.5,-51.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14535 + - uid: 14953 components: - - rot: 1.5707963267948966 rad - pos: -47.5,-41.5 + - rot: 3.141592653589793 rad + pos: 44.5,-50.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14536 + - uid: 14954 components: - - rot: 1.5707963267948966 rad - pos: -48.5,-41.5 + - rot: 3.141592653589793 rad + pos: 44.5,-49.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14537 + - uid: 14955 components: - - rot: 1.5707963267948966 rad - pos: -49.5,-41.5 + - rot: 3.141592653589793 rad + pos: 44.5,-48.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14557 + - uid: 14956 components: - - rot: 1.5707963267948966 rad - pos: -4.5,-84.5 + - rot: 3.141592653589793 rad + pos: 37.5,-65.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14560 + - uid: 14957 components: - - pos: 24.5,-47.5 + - rot: 3.141592653589793 rad + pos: 37.5,-66.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14561 + - uid: 14958 components: - - pos: 24.5,-48.5 + - rot: 3.141592653589793 rad + pos: 37.5,-67.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14562 + - uid: 14959 components: - - pos: 24.5,-49.5 + - rot: 3.141592653589793 rad + pos: 37.5,-68.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14563 + - uid: 14960 components: - - pos: 21.5,-47.5 + - rot: 3.141592653589793 rad + pos: 37.5,-69.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14564 + - uid: 14961 components: - - pos: 21.5,-48.5 + - rot: 3.141592653589793 rad + pos: 37.5,-70.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14565 + - uid: 14962 components: - - pos: 21.5,-49.5 + - rot: 3.141592653589793 rad + pos: 37.5,-71.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14566 + - uid: 14963 components: - - pos: 21.5,-51.5 + - rot: 3.141592653589793 rad + pos: 37.5,-72.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14567 + - uid: 14964 components: - - pos: 21.5,-52.5 + - rot: 3.141592653589793 rad + pos: 37.5,-73.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14568 + - uid: 14965 components: - - pos: 21.5,-53.5 + - rot: 3.141592653589793 rad + pos: 37.5,-74.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14569 + - uid: 14966 components: - - pos: 21.5,-54.5 + - rot: 3.141592653589793 rad + pos: 37.5,-75.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14570 + - uid: 14967 components: - - pos: 21.5,-55.5 + - rot: 3.141592653589793 rad + pos: 37.5,-76.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14571 + - uid: 14968 components: - - pos: 21.5,-56.5 + - rot: 3.141592653589793 rad + pos: 37.5,-77.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14969 + components: + - rot: 3.141592653589793 rad + pos: 37.5,-78.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14970 + components: + - rot: 3.141592653589793 rad + pos: 37.5,-79.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14971 + components: + - rot: 3.141592653589793 rad + pos: 37.5,-80.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 14980 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-79.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14572 + - uid: 14981 components: - - pos: 21.5,-58.5 + - rot: 3.141592653589793 rad + pos: 27.5,-80.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14573 + - uid: 14982 components: - - pos: 21.5,-59.5 + - rot: 3.141592653589793 rad + pos: 27.5,-81.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14574 + - uid: 14983 components: - - pos: 21.5,-60.5 + - rot: 3.141592653589793 rad + pos: 27.5,-82.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14575 + - uid: 14984 components: - - pos: 21.5,-61.5 + - rot: 3.141592653589793 rad + pos: 27.5,-83.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14576 + - uid: 14985 components: - - pos: 21.5,-62.5 + - rot: 3.141592653589793 rad + pos: 27.5,-84.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14577 + - uid: 14986 components: - - pos: 21.5,-64.5 + - rot: 3.141592653589793 rad + pos: 27.5,-85.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14578 + - uid: 14987 components: - - pos: 21.5,-65.5 + - rot: 3.141592653589793 rad + pos: 27.5,-86.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14579 + - uid: 14988 components: - rot: 1.5707963267948966 rad - pos: 20.5,-63.5 + pos: 26.5,-87.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14580 + - uid: 14989 components: - rot: 1.5707963267948966 rad - pos: 19.5,-63.5 + pos: 25.5,-87.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14581 + - uid: 14990 components: - rot: 1.5707963267948966 rad - pos: 18.5,-63.5 + pos: 28.5,-87.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14582 + - uid: 14991 components: - rot: 1.5707963267948966 rad - pos: 17.5,-63.5 + pos: 29.5,-87.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14583 + - uid: 14992 components: - - pos: 16.5,-64.5 + - rot: 1.5707963267948966 rad + pos: 30.5,-87.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14584 + - uid: 14993 components: - - pos: 16.5,-65.5 + - rot: 1.5707963267948966 rad + pos: 31.5,-87.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14585 + - uid: 14994 components: - - pos: 16.5,-66.5 + - rot: 1.5707963267948966 rad + pos: 32.5,-87.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14586 + - uid: 14995 components: - - rot: -1.5707963267948966 rad - pos: 15.5,-63.5 + - rot: 1.5707963267948966 rad + pos: 33.5,-87.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14587 + - uid: 14996 components: - - rot: -1.5707963267948966 rad - pos: 14.5,-63.5 + - pos: 34.5,-86.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14588 + - uid: 14997 components: - - rot: -1.5707963267948966 rad - pos: 13.5,-63.5 + - pos: 34.5,-85.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14589 + - uid: 14998 components: - - rot: -1.5707963267948966 rad - pos: 12.5,-63.5 + - pos: 34.5,-84.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14590 + - uid: 14999 components: - - rot: -1.5707963267948966 rad - pos: 11.5,-63.5 + - pos: 34.5,-83.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14591 + - uid: 15000 components: - - rot: 3.141592653589793 rad - pos: 10.5,-64.5 + - pos: 34.5,-82.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14592 + - uid: 15001 components: - - rot: 3.141592653589793 rad - pos: 10.5,-65.5 + - rot: -1.5707963267948966 rad + pos: 33.5,-81.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14593 + - uid: 15002 components: - - rot: 3.141592653589793 rad - pos: 10.5,-66.5 + - rot: -1.5707963267948966 rad + pos: 35.5,-81.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14594 + - uid: 15003 components: - - rot: 3.141592653589793 rad - pos: 10.5,-67.5 + - rot: -1.5707963267948966 rad + pos: 36.5,-81.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14596 + - uid: 15008 components: - rot: 3.141592653589793 rad - pos: 10.5,-69.5 + pos: 37.5,-82.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14597 + - uid: 15012 components: - rot: 3.141592653589793 rad - pos: 10.5,-70.5 + pos: 18.5,-73.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14598 + - uid: 15013 components: - - rot: 3.141592653589793 rad - pos: 10.5,-71.5 + - rot: 1.5707963267948966 rad + pos: 19.5,-72.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14599 + - uid: 15014 components: - rot: 1.5707963267948966 rad - pos: 9.5,-72.5 + pos: 20.5,-72.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14600 + - uid: 15015 components: - rot: 1.5707963267948966 rad - pos: 8.5,-72.5 + pos: 21.5,-72.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14601 + - uid: 15016 components: - - rot: -1.5707963267948966 rad - pos: 6.5,-72.5 + - rot: 1.5707963267948966 rad + pos: 22.5,-72.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14602 + - uid: 15017 components: - - rot: 3.141592653589793 rad - pos: 5.5,-73.5 + - rot: 1.5707963267948966 rad + pos: 23.5,-72.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14603 + - uid: 15018 components: - - rot: 3.141592653589793 rad - pos: 5.5,-74.5 + - rot: 1.5707963267948966 rad + pos: 24.5,-72.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14604 + - uid: 15019 components: - - rot: 3.141592653589793 rad - pos: 5.5,-75.5 + - rot: 1.5707963267948966 rad + pos: 25.5,-72.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14605 + - uid: 15020 components: - - rot: 3.141592653589793 rad - pos: 5.5,-76.5 + - rot: 1.5707963267948966 rad + pos: 26.5,-72.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14606 + - uid: 15021 components: - - rot: 3.141592653589793 rad - pos: 4.5,-78.5 + - rot: 1.5707963267948966 rad + pos: 27.5,-72.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14607 + - uid: 15022 components: - - rot: 3.141592653589793 rad - pos: 2.5,-81.5 + - rot: 1.5707963267948966 rad + pos: 28.5,-72.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14608 + - uid: 15023 components: - rot: 1.5707963267948966 rad - pos: 4.5,-72.5 + pos: 29.5,-72.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14609 + - uid: 15024 components: - rot: 1.5707963267948966 rad - pos: 3.5,-72.5 + pos: 30.5,-72.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14610 + - uid: 15025 components: - - rot: 1.5707963267948966 rad - pos: 2.5,-72.5 + - pos: 31.5,-71.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14611 + - uid: 15026 components: - - rot: 1.5707963267948966 rad - pos: 1.5,-72.5 + - pos: 31.5,-70.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14612 + - uid: 15027 components: - - rot: 1.5707963267948966 rad - pos: 0.5,-72.5 + - pos: 31.5,-69.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14613 + - uid: 15028 components: - - pos: -0.5,-73.5 + - pos: 31.5,-68.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14614 + - uid: 15029 components: - - pos: -0.5,-74.5 + - pos: 31.5,-67.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14615 + - uid: 15030 components: - - pos: -0.5,-75.5 + - pos: 31.5,-66.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14616 + - uid: 15031 components: - - pos: -2.5,-78.5 + - pos: 31.5,-65.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14617 + - uid: 15061 components: - - pos: -2.5,-79.5 + - rot: 1.5707963267948966 rad + pos: -1.5,-72.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14618 + - uid: 15062 components: - - pos: -3.5,-81.5 + - rot: 1.5707963267948966 rad + pos: -2.5,-72.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14619 + - uid: 15063 components: - - pos: -3.5,-82.5 + - rot: 1.5707963267948966 rad + pos: -3.5,-72.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14620 + - uid: 15065 components: - - pos: -3.5,-83.5 + - rot: 1.5707963267948966 rad + pos: -2.5,-73.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14622 + - uid: 15066 components: - - rot: -1.5707963267948966 rad - pos: -6.5,-84.5 + - rot: 1.5707963267948966 rad + pos: -3.5,-73.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14623 + - uid: 15067 components: - - rot: -1.5707963267948966 rad - pos: -7.5,-84.5 + - rot: 1.5707963267948966 rad + pos: -4.5,-73.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14624 + - uid: 15068 components: - - rot: -1.5707963267948966 rad - pos: -8.5,-84.5 + - rot: 1.5707963267948966 rad + pos: -5.5,-73.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14636 + - uid: 15069 components: - rot: 1.5707963267948966 rad - pos: 20.5,-57.5 + pos: -6.5,-73.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14637 + - uid: 15070 components: - rot: 1.5707963267948966 rad - pos: 22.5,-63.5 + pos: -7.5,-73.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14638 + - uid: 15073 components: - - rot: 1.5707963267948966 rad - pos: 23.5,-63.5 + - pos: -9.5,-74.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14640 + - uid: 15074 components: - - pos: 24.5,-64.5 + - pos: -9.5,-75.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14641 + - uid: 15075 components: - - pos: 24.5,-65.5 + - pos: -9.5,-76.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14642 + - uid: 15076 components: - - pos: 24.5,-66.5 + - pos: -9.5,-77.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14648 + - uid: 15108 components: - - rot: 3.141592653589793 rad - pos: 17.5,-73.5 + - pos: 14.5,-48.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14650 + - uid: 15109 components: - - rot: 1.5707963267948966 rad - pos: 18.5,-71.5 + - pos: 14.5,-49.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14651 + - uid: 15110 components: - - rot: 1.5707963267948966 rad - pos: 19.5,-71.5 + - pos: 14.5,-50.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14652 + - uid: 15111 components: - - rot: 1.5707963267948966 rad - pos: 20.5,-71.5 + - pos: 14.5,-51.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14653 + - uid: 15112 components: - - rot: 1.5707963267948966 rad - pos: 21.5,-71.5 + - pos: 14.5,-52.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14654 + - uid: 15113 components: - - rot: 1.5707963267948966 rad - pos: 22.5,-71.5 + - pos: 14.5,-53.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14667 + - uid: 15114 components: - - rot: 3.141592653589793 rad - pos: 61.5,-50.5 + - pos: 14.5,-54.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14681 + - uid: 15115 components: - - rot: -1.5707963267948966 rad - pos: 36.5,-88.5 + - pos: 14.5,-55.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14683 + - uid: 15116 components: - - rot: -1.5707963267948966 rad - pos: 34.5,-88.5 + - pos: 13.5,-47.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14684 + - uid: 15117 components: - - rot: -1.5707963267948966 rad - pos: 33.5,-88.5 + - pos: 13.5,-48.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14685 + - uid: 15118 components: - - rot: -1.5707963267948966 rad - pos: 32.5,-88.5 + - pos: 13.5,-49.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14686 + - uid: 15119 components: - - rot: -1.5707963267948966 rad - pos: 31.5,-88.5 + - pos: 13.5,-50.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14687 + - uid: 15120 components: - - rot: -1.5707963267948966 rad - pos: 30.5,-88.5 + - pos: 13.5,-51.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14688 + - uid: 15121 components: - - rot: -1.5707963267948966 rad - pos: 29.5,-88.5 + - pos: 13.5,-52.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14689 + - uid: 15122 components: - - rot: -1.5707963267948966 rad - pos: 28.5,-88.5 + - pos: 13.5,-53.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14690 + - uid: 15123 components: - - rot: -1.5707963267948966 rad - pos: 27.5,-88.5 + - pos: 13.5,-54.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14691 + - uid: 15124 components: - - rot: 3.141592653589793 rad - pos: 26.5,-87.5 + - rot: -1.5707963267948966 rad + pos: 14.5,-55.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14692 + - uid: 15125 components: - - rot: 3.141592653589793 rad - pos: 26.5,-86.5 + - rot: -1.5707963267948966 rad + pos: 13.5,-56.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14693 + - uid: 15126 components: - - rot: 1.5707963267948966 rad - pos: 25.5,-85.5 + - rot: -1.5707963267948966 rad + pos: 12.5,-56.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14694 + - uid: 15127 components: - - rot: 1.5707963267948966 rad - pos: 27.5,-84.5 + - rot: -1.5707963267948966 rad + pos: 11.5,-56.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14695 + - uid: 15128 components: - rot: 1.5707963267948966 rad - pos: 28.5,-84.5 + pos: 12.5,-55.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14696 + - uid: 15129 components: - - pos: 26.5,-83.5 + - rot: 1.5707963267948966 rad + pos: 11.5,-55.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14697 + - uid: 15130 components: - - pos: 26.5,-82.5 + - rot: 1.5707963267948966 rad + pos: 10.5,-55.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14698 + - uid: 15135 components: - - rot: -1.5707963267948966 rad - pos: 25.5,-81.5 + - rot: 3.141592653589793 rad + pos: 8.5,-56.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14699 + - uid: 15136 components: - - rot: -1.5707963267948966 rad - pos: 24.5,-81.5 + - rot: 3.141592653589793 rad + pos: 8.5,-57.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14700 + - uid: 15137 components: - rot: 3.141592653589793 rad - pos: 23.5,-80.5 + pos: 8.5,-58.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14701 + - uid: 15138 components: - rot: 3.141592653589793 rad - pos: 23.5,-79.5 + pos: 10.5,-56.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14702 + - uid: 15139 components: - rot: 3.141592653589793 rad - pos: 23.5,-78.5 + pos: 10.5,-57.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14703 + - uid: 15140 components: - - rot: 1.5707963267948966 rad - pos: 24.5,-77.5 + - rot: 3.141592653589793 rad + pos: 10.5,-58.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14704 + - uid: 15145 components: - - rot: 1.5707963267948966 rad - pos: 25.5,-77.5 + - rot: 3.141592653589793 rad + pos: 13.5,-56.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14705 + - uid: 15146 components: - - rot: 1.5707963267948966 rad - pos: 26.5,-77.5 + - rot: 3.141592653589793 rad + pos: 13.5,-57.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14706 + - uid: 15147 components: - - pos: 23.5,-76.5 + - rot: 3.141592653589793 rad + pos: 14.5,-57.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14707 + - uid: 15148 components: - - pos: 23.5,-75.5 + - rot: 3.141592653589793 rad + pos: 4.5,-47.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14708 + - uid: 15149 components: - - pos: 23.5,-74.5 + - rot: 3.141592653589793 rad + pos: 4.5,-48.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14709 + - uid: 15150 components: - - pos: 23.5,-73.5 + - rot: 3.141592653589793 rad + pos: 4.5,-49.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14710 + - uid: 15151 components: - - pos: 23.5,-72.5 + - rot: 3.141592653589793 rad + pos: 4.5,-50.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14714 + - uid: 15152 components: - rot: 3.141592653589793 rad - pos: 36.5,-48.5 + pos: 4.5,-51.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14715 + - uid: 15153 components: - rot: 3.141592653589793 rad - pos: 36.5,-49.5 + pos: 4.5,-52.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14716 + - uid: 15154 components: - rot: 3.141592653589793 rad - pos: 36.5,-50.5 + pos: 4.5,-53.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14722 + - uid: 15155 components: - - rot: -1.5707963267948966 rad - pos: 34.5,-47.5 + - rot: 3.141592653589793 rad + pos: 4.5,-54.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14723 + - uid: 15156 components: - - rot: -1.5707963267948966 rad - pos: 33.5,-47.5 + - rot: 3.141592653589793 rad + pos: 4.5,-55.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14724 + - uid: 15159 components: - - rot: -1.5707963267948966 rad - pos: 32.5,-47.5 + - rot: 3.141592653589793 rad + pos: 4.5,-58.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14725 + - uid: 15160 components: - - rot: -1.5707963267948966 rad - pos: 31.5,-47.5 + - rot: 3.141592653589793 rad + pos: 4.5,-59.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14728 + - uid: 15164 components: - rot: 1.5707963267948966 rad - pos: 28.5,-47.5 + pos: 0.5,-57.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14729 + - uid: 15165 components: - rot: 1.5707963267948966 rad - pos: 27.5,-47.5 + pos: 1.5,-57.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14730 + - uid: 15166 components: - rot: 1.5707963267948966 rad - pos: 26.5,-47.5 + pos: 2.5,-57.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14731 + - uid: 15167 components: - - pos: 25.5,-46.5 + - rot: 1.5707963267948966 rad + pos: 3.5,-57.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14732 + - uid: 15169 components: - - pos: 25.5,-45.5 + - rot: 3.141592653589793 rad + pos: 0.5,-45.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14736 + - uid: 15171 components: - rot: 3.141592653589793 rad - pos: 25.5,-55.5 + pos: 0.5,-44.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14737 + - uid: 15173 components: - rot: 3.141592653589793 rad - pos: 25.5,-54.5 + pos: 3.5,-59.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14738 + - uid: 15174 components: - - rot: 3.141592653589793 rad - pos: 25.5,-53.5 + - rot: -1.5707963267948966 rad + pos: 0.5,-58.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14739 + - uid: 15175 components: - rot: 3.141592653589793 rad - pos: 25.5,-52.5 + pos: 3.5,-48.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14740 + - uid: 15176 components: - rot: 3.141592653589793 rad - pos: 25.5,-51.5 + pos: 3.5,-49.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14741 + - uid: 15177 components: - rot: 3.141592653589793 rad - pos: 25.5,-50.5 + pos: 3.5,-50.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14742 + - uid: 15178 components: - rot: 3.141592653589793 rad - pos: 25.5,-48.5 + pos: 3.5,-51.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14754 + - uid: 15179 components: - - pos: -9.5,-46.5 + - rot: 3.141592653589793 rad + pos: 3.5,-52.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14755 + - uid: 15180 components: - - pos: -9.5,-45.5 + - rot: 3.141592653589793 rad + pos: 3.5,-53.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14756 + - uid: 15181 components: - - pos: -9.5,-44.5 + - rot: 3.141592653589793 rad + pos: 3.5,-54.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14757 + - uid: 15182 components: - - pos: -9.5,-43.5 + - rot: 3.141592653589793 rad + pos: 3.5,-55.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14758 + - uid: 15184 components: - - pos: -5.5,-46.5 + - rot: 3.141592653589793 rad + pos: 3.5,-57.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14762 + - uid: 15186 components: - - pos: -11.5,-46.5 + - rot: -1.5707963267948966 rad + pos: 2.5,-58.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14764 + - uid: 15187 components: - rot: -1.5707963267948966 rad - pos: -10.5,-47.5 + pos: 1.5,-58.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14765 + - uid: 15188 components: - - rot: -1.5707963267948966 rad - pos: -8.5,-47.5 + - rot: 3.141592653589793 rad + pos: 0.5,-42.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14766 + - uid: 15189 components: - - rot: -1.5707963267948966 rad - pos: -7.5,-47.5 + - rot: 1.5707963267948966 rad + pos: 1.5,-41.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14767 + - uid: 15190 components: - - rot: -1.5707963267948966 rad - pos: -6.5,-47.5 + - rot: 1.5707963267948966 rad + pos: 2.5,-41.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14768 + - uid: 15191 components: - - rot: -1.5707963267948966 rad - pos: -4.5,-47.5 + - rot: 1.5707963267948966 rad + pos: 3.5,-41.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14769 + - uid: 15192 components: - - rot: -1.5707963267948966 rad - pos: -3.5,-47.5 + - rot: 1.5707963267948966 rad + pos: 4.5,-41.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14770 + - uid: 15193 components: - - rot: -1.5707963267948966 rad - pos: -2.5,-47.5 + - rot: 1.5707963267948966 rad + pos: 5.5,-41.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14771 + - uid: 15194 components: - - rot: -1.5707963267948966 rad - pos: -1.5,-47.5 + - rot: 1.5707963267948966 rad + pos: 6.5,-41.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14772 + - uid: 15195 components: - - rot: -1.5707963267948966 rad - pos: -0.5,-47.5 + - rot: 1.5707963267948966 rad + pos: 7.5,-41.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14773 + - uid: 15196 components: - - rot: -1.5707963267948966 rad - pos: 0.5,-47.5 + - rot: 1.5707963267948966 rad + pos: 8.5,-41.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14776 + - uid: 15197 components: - - rot: -1.5707963267948966 rad - pos: 2.5,-47.5 + - pos: 1.5,-46.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14777 + - uid: 15198 components: - - rot: -1.5707963267948966 rad - pos: 4.5,-47.5 + - pos: 1.5,-45.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14778 + - uid: 15199 components: - - rot: -1.5707963267948966 rad - pos: 6.5,-47.5 + - pos: 1.5,-43.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14779 + - uid: 15200 components: - rot: -1.5707963267948966 rad - pos: 7.5,-47.5 + pos: 2.5,-42.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14780 + - uid: 15201 components: - rot: -1.5707963267948966 rad - pos: 8.5,-47.5 + pos: 3.5,-42.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14781 + - uid: 15202 components: - rot: -1.5707963267948966 rad - pos: 9.5,-47.5 + pos: 4.5,-42.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14782 + - uid: 15203 components: - rot: -1.5707963267948966 rad - pos: 10.5,-47.5 + pos: 5.5,-42.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14783 + - uid: 15204 components: - rot: -1.5707963267948966 rad - pos: 11.5,-47.5 + pos: 6.5,-42.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14784 + - uid: 15205 components: - rot: -1.5707963267948966 rad - pos: 12.5,-47.5 + pos: 7.5,-42.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14785 + - uid: 15206 components: - rot: -1.5707963267948966 rad - pos: 13.5,-47.5 + pos: 8.5,-42.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14786 + - uid: 15209 components: - rot: -1.5707963267948966 rad - pos: 16.5,-47.5 + pos: 0.5,-44.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14787 + - uid: 15219 components: - - rot: -1.5707963267948966 rad - pos: 17.5,-47.5 + - rot: 3.141592653589793 rad + pos: 1.5,-48.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14788 + - uid: 15220 components: - - rot: -1.5707963267948966 rad - pos: 18.5,-47.5 + - rot: 3.141592653589793 rad + pos: 1.5,-49.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14790 + - uid: 15221 components: - - pos: 2.5,-12.5 + - rot: 3.141592653589793 rad + pos: 1.5,-50.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14792 + - uid: 15222 components: - - pos: 2.5,-11.5 + - rot: 1.5707963267948966 rad + pos: 0.5,-51.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14793 + - uid: 15223 components: - - pos: 2.5,-10.5 + - rot: 1.5707963267948966 rad + pos: -0.5,-51.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14798 + - uid: 15224 components: - - rot: -1.5707963267948966 rad - pos: 15.5,-47.5 + - rot: 1.5707963267948966 rad + pos: -1.5,-51.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14799 + - uid: 15225 components: - - rot: -1.5707963267948966 rad - pos: 21.5,-47.5 + - pos: -2.5,-52.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14800 + - uid: 15226 components: - rot: -1.5707963267948966 rad - pos: 22.5,-47.5 + pos: -3.5,-53.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14801 + - uid: 15227 components: - rot: -1.5707963267948966 rad - pos: 23.5,-47.5 + pos: -4.5,-53.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14802 + - uid: 15228 components: - rot: -1.5707963267948966 rad - pos: 24.5,-47.5 + pos: -5.5,-53.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14803 + - uid: 15231 components: - rot: 3.141592653589793 rad - pos: 19.5,-46.5 + pos: -2.5,-54.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14804 + - uid: 15232 components: - rot: 3.141592653589793 rad - pos: 5.5,-46.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 14827 - components: - - pos: 1.5,-81.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 14828 - components: - - pos: 1.5,-80.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 14831 - components: - - pos: 3.5,-77.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 14832 - components: - - pos: 4.5,-75.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 14833 - components: - - pos: 4.5,-74.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 14840 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-83.5 + pos: -2.5,-55.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14843 + - uid: 15233 components: - rot: 3.141592653589793 rad - pos: -5.5,-82.5 + pos: -2.5,-56.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14844 + - uid: 15234 components: - rot: 3.141592653589793 rad - pos: -5.5,-80.5 + pos: -2.5,-57.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14845 + - uid: 15235 components: - rot: 3.141592653589793 rad - pos: -5.5,-79.5 + pos: -2.5,-58.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14846 + - uid: 15236 components: - rot: 3.141592653589793 rad - pos: -5.5,-78.5 + pos: -2.5,-59.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14847 + - uid: 15237 components: - rot: 3.141592653589793 rad - pos: -5.5,-77.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 14848 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-76.5 + pos: -2.5,-60.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14849 + - uid: 15238 components: - - rot: 1.5707963267948966 rad - pos: -3.5,-76.5 + - rot: 3.141592653589793 rad + pos: -2.5,-61.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14850 + - uid: 15239 components: - - pos: -1.5,-74.5 + - rot: 3.141592653589793 rad + pos: -2.5,-62.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14851 + - uid: 15240 components: - - rot: -1.5707963267948966 rad - pos: -0.5,-73.5 + - rot: 3.141592653589793 rad + pos: -2.5,-63.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14852 + - uid: 15241 components: - - rot: -1.5707963267948966 rad - pos: 0.5,-73.5 + - rot: 3.141592653589793 rad + pos: -2.5,-64.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14853 + - uid: 15243 components: - - rot: -1.5707963267948966 rad - pos: 1.5,-73.5 + - pos: -3.5,-51.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14854 + - uid: 15244 components: - - rot: -1.5707963267948966 rad - pos: 2.5,-73.5 + - pos: -3.5,-52.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14855 + - uid: 15245 components: - - rot: -1.5707963267948966 rad - pos: 3.5,-73.5 + - pos: -3.5,-53.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14856 + - uid: 15246 components: - - rot: -1.5707963267948966 rad - pos: 5.5,-73.5 + - pos: -3.5,-54.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14857 + - uid: 15247 components: - - rot: -1.5707963267948966 rad - pos: 7.5,-73.5 + - pos: -3.5,-55.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14858 + - uid: 15248 components: - - rot: -1.5707963267948966 rad - pos: 8.5,-73.5 + - pos: -3.5,-56.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14859 + - uid: 15249 components: - - rot: 3.141592653589793 rad - pos: 9.5,-72.5 + - pos: -3.5,-57.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14860 + - uid: 15250 components: - - rot: 3.141592653589793 rad - pos: 9.5,-71.5 + - pos: -3.5,-58.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14861 + - uid: 15251 components: - - rot: 3.141592653589793 rad - pos: 9.5,-70.5 + - pos: -3.5,-59.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14862 + - uid: 15252 components: - - rot: 3.141592653589793 rad - pos: 9.5,-69.5 + - pos: -3.5,-60.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14863 + - uid: 15253 components: - - rot: 3.141592653589793 rad - pos: 9.5,-68.5 + - pos: -3.5,-61.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14865 + - uid: 15254 components: - - rot: 3.141592653589793 rad - pos: 9.5,-66.5 + - pos: -3.5,-62.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14866 + - uid: 15255 components: - - rot: 3.141592653589793 rad - pos: 9.5,-65.5 + - pos: -3.5,-63.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14867 + - uid: 15256 components: - - rot: 3.141592653589793 rad - pos: 9.5,-64.5 + - pos: -3.5,-64.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14868 + - uid: 15257 components: - - rot: 3.141592653589793 rad - pos: 9.5,-63.5 + - pos: -3.5,-65.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14869 + - uid: 15259 components: - rot: 1.5707963267948966 rad - pos: 10.5,-62.5 + pos: -2.5,-66.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14870 + - uid: 15260 components: - rot: 1.5707963267948966 rad - pos: 11.5,-62.5 + pos: -1.5,-66.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14871 + - uid: 15261 components: - rot: 1.5707963267948966 rad - pos: 12.5,-62.5 + pos: -0.5,-66.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14872 + - uid: 15262 components: - rot: 1.5707963267948966 rad - pos: 13.5,-62.5 + pos: 0.5,-66.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14873 + - uid: 15263 components: - rot: 1.5707963267948966 rad - pos: 14.5,-62.5 + pos: 1.5,-66.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14874 + - uid: 15264 components: - rot: 1.5707963267948966 rad - pos: 16.5,-62.5 + pos: 2.5,-66.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14875 + - uid: 15268 components: - - rot: 1.5707963267948966 rad - pos: 17.5,-62.5 + - rot: -1.5707963267948966 rad + pos: -1.5,-65.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14876 + - uid: 15269 components: - - rot: 1.5707963267948966 rad - pos: 18.5,-62.5 + - rot: -1.5707963267948966 rad + pos: -0.5,-65.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14877 + - uid: 15270 components: - - pos: 20.5,-61.5 + - rot: -1.5707963267948966 rad + pos: 0.5,-65.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14878 + - uid: 15271 components: - - pos: 20.5,-60.5 + - rot: 3.141592653589793 rad + pos: 0.5,-47.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14879 + - uid: 15272 components: - - pos: 20.5,-59.5 + - rot: 3.141592653589793 rad + pos: 0.5,-48.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14880 + - uid: 15273 components: - - pos: 20.5,-57.5 + - rot: 3.141592653589793 rad + pos: 0.5,-49.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14881 + - uid: 15274 components: - - pos: 20.5,-56.5 + - rot: 1.5707963267948966 rad + pos: -0.5,-50.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14882 + - uid: 15275 components: - - pos: 20.5,-55.5 + - rot: 1.5707963267948966 rad + pos: -1.5,-50.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14883 + - uid: 15276 components: - - pos: 20.5,-54.5 + - rot: 1.5707963267948966 rad + pos: -2.5,-50.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14884 + - uid: 15277 components: - - pos: 20.5,-53.5 + - rot: 1.5707963267948966 rad + pos: -4.5,-50.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14885 + - uid: 15278 components: - - pos: 20.5,-52.5 + - rot: 1.5707963267948966 rad + pos: -5.5,-50.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14886 + - uid: 15282 components: - - pos: 20.5,-50.5 + - rot: 3.141592653589793 rad + pos: -7.5,-51.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14887 + - uid: 15288 components: - - pos: 20.5,-49.5 + - rot: -1.5707963267948966 rad + pos: -25.5,-53.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14888 + - uid: 15289 components: - - pos: 20.5,-48.5 + - rot: -1.5707963267948966 rad + pos: -8.5,-52.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14889 + - uid: 15290 components: - - pos: 19.5,-63.5 + - rot: -1.5707963267948966 rad + pos: -9.5,-52.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14890 + - uid: 15291 components: - - pos: 19.5,-64.5 + - rot: -1.5707963267948966 rad + pos: -10.5,-52.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14891 + - uid: 15292 components: - - rot: 1.5707963267948966 rad - pos: 18.5,-69.5 + - rot: -1.5707963267948966 rad + pos: -11.5,-52.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14892 + - uid: 15293 components: - - pos: 15.5,-63.5 + - rot: -1.5707963267948966 rad + pos: -13.5,-52.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14893 + - uid: 15294 components: - - pos: 15.5,-64.5 + - rot: -1.5707963267948966 rad + pos: -14.5,-52.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14894 + - uid: 15295 components: - - pos: 15.5,-65.5 + - rot: -1.5707963267948966 rad + pos: -15.5,-52.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14895 + - uid: 15296 components: - - pos: 15.5,-66.5 + - rot: -1.5707963267948966 rad + pos: -17.5,-52.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14900 + - uid: 15297 components: - - rot: 1.5707963267948966 rad - pos: 9.5,-68.5 + - rot: -1.5707963267948966 rad + pos: -18.5,-52.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14907 + - uid: 15298 components: - - rot: 1.5707963267948966 rad - pos: 19.5,-69.5 + - rot: -1.5707963267948966 rad + pos: -19.5,-52.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14909 + - uid: 15299 components: - - pos: 20.5,-67.5 + - rot: -1.5707963267948966 rad + pos: -20.5,-52.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14911 + - uid: 15300 components: - - pos: 20.5,-66.5 + - rot: -1.5707963267948966 rad + pos: -21.5,-52.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14927 + - uid: 15301 components: - - rot: 3.141592653589793 rad - pos: 28.5,-65.5 + - rot: -1.5707963267948966 rad + pos: -22.5,-52.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14928 + - uid: 15303 components: - - rot: 1.5707963267948966 rad - pos: 29.5,-64.5 + - rot: -1.5707963267948966 rad + pos: -24.5,-52.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14929 + - uid: 15305 components: - rot: 1.5707963267948966 rad - pos: 30.5,-64.5 + pos: -26.5,-52.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14931 + - uid: 15309 components: - - rot: 1.5707963267948966 rad - pos: 32.5,-64.5 + - rot: 3.141592653589793 rad + pos: -27.5,-48.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14932 + - uid: 15310 components: - rot: 1.5707963267948966 rad - pos: 33.5,-64.5 + pos: -26.5,-49.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14933 + - uid: 15311 components: - - rot: 1.5707963267948966 rad - pos: 34.5,-64.5 + - pos: -25.5,-50.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14934 + - uid: 15312 components: - - rot: 1.5707963267948966 rad - pos: 35.5,-64.5 + - pos: -25.5,-51.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14935 + - uid: 15316 components: - - rot: 1.5707963267948966 rad - pos: 36.5,-64.5 + - rot: -1.5707963267948966 rad + pos: -30.5,-46.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14936 + - uid: 15318 components: - - pos: 38.5,-63.5 + - rot: -1.5707963267948966 rad + pos: -31.5,-46.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14937 + - uid: 15319 components: - - pos: 38.5,-62.5 + - rot: -1.5707963267948966 rad + pos: -32.5,-46.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14938 + - uid: 15321 components: - - pos: 38.5,-61.5 + - rot: -1.5707963267948966 rad + pos: -28.5,-47.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14939 + - uid: 15322 components: - - pos: 38.5,-60.5 + - rot: 3.141592653589793 rad + pos: -29.5,-48.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14940 + - uid: 15323 components: - - pos: 38.5,-59.5 + - rot: 3.141592653589793 rad + pos: -29.5,-49.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14941 + - uid: 15324 components: - - pos: 38.5,-58.5 + - rot: 3.141592653589793 rad + pos: -29.5,-50.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14942 + - uid: 15326 components: - - pos: 38.5,-57.5 + - rot: -1.5707963267948966 rad + pos: -30.5,-51.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14943 + - uid: 15327 components: - - pos: 38.5,-56.5 + - rot: -1.5707963267948966 rad + pos: -31.5,-51.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14944 + - uid: 15331 components: - - pos: 38.5,-55.5 + - pos: -29.5,-52.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14945 + - uid: 15332 components: - - pos: 38.5,-54.5 + - pos: -29.5,-53.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14946 + - uid: 15333 components: - - rot: -1.5707963267948966 rad - pos: 39.5,-53.5 + - pos: -29.5,-54.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14947 + - uid: 15334 components: - - rot: -1.5707963267948966 rad - pos: 40.5,-53.5 + - pos: -29.5,-55.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14949 + - uid: 15335 components: - - rot: -1.5707963267948966 rad - pos: 42.5,-53.5 + - pos: -29.5,-56.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14950 + - uid: 15337 components: - rot: -1.5707963267948966 rad - pos: 43.5,-53.5 + pos: -28.5,-57.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14951 + - uid: 15343 components: - - rot: 3.141592653589793 rad - pos: 44.5,-52.5 + - pos: -23.5,-53.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14952 + - uid: 15344 components: - - rot: 3.141592653589793 rad - pos: 44.5,-51.5 + - pos: -23.5,-54.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14953 + - uid: 15345 components: - - rot: 3.141592653589793 rad - pos: 44.5,-50.5 + - pos: -23.5,-55.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14954 + - uid: 15346 components: - - rot: 3.141592653589793 rad - pos: 44.5,-49.5 + - pos: -23.5,-56.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14955 + - uid: 15348 components: - - rot: 3.141592653589793 rad - pos: 44.5,-48.5 + - rot: 1.5707963267948966 rad + pos: -22.5,-57.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14956 + - uid: 15349 components: - - rot: 3.141592653589793 rad - pos: 37.5,-65.5 + - rot: 1.5707963267948966 rad + pos: -21.5,-57.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14957 + - uid: 15350 components: - - rot: 3.141592653589793 rad - pos: 37.5,-66.5 + - rot: 1.5707963267948966 rad + pos: -20.5,-57.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14958 + - uid: 15351 components: - - rot: 3.141592653589793 rad - pos: 37.5,-67.5 + - rot: 1.5707963267948966 rad + pos: -18.5,-57.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14959 + - uid: 15352 components: - - rot: 3.141592653589793 rad - pos: 37.5,-68.5 + - rot: 1.5707963267948966 rad + pos: -17.5,-57.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14960 + - uid: 15353 components: - - rot: 3.141592653589793 rad - pos: 37.5,-69.5 + - rot: 1.5707963267948966 rad + pos: -16.5,-57.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14961 + - uid: 15354 components: - - rot: 3.141592653589793 rad - pos: 37.5,-70.5 + - rot: 1.5707963267948966 rad + pos: -15.5,-57.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14962 + - uid: 15355 components: - - rot: 3.141592653589793 rad - pos: 37.5,-71.5 + - rot: 1.5707963267948966 rad + pos: -14.5,-57.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14963 + - uid: 15356 components: - - rot: 3.141592653589793 rad - pos: 37.5,-72.5 + - rot: 1.5707963267948966 rad + pos: -13.5,-57.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14964 + - uid: 15357 components: - - rot: 3.141592653589793 rad - pos: 37.5,-73.5 + - rot: 1.5707963267948966 rad + pos: -12.5,-57.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14965 + - uid: 15361 components: - - rot: 3.141592653589793 rad - pos: 37.5,-74.5 + - rot: -1.5707963267948966 rad + pos: -7.5,-53.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14966 + - uid: 15362 components: - - rot: 3.141592653589793 rad - pos: 37.5,-75.5 + - rot: -1.5707963267948966 rad + pos: -8.5,-53.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14967 + - uid: 15363 components: - - rot: 3.141592653589793 rad - pos: 37.5,-76.5 + - rot: -1.5707963267948966 rad + pos: -9.5,-53.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14968 + - uid: 15364 components: - - rot: 3.141592653589793 rad - pos: 37.5,-77.5 + - rot: -1.5707963267948966 rad + pos: -10.5,-53.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14969 + - uid: 15365 components: - - rot: 3.141592653589793 rad - pos: 37.5,-78.5 + - rot: -1.5707963267948966 rad + pos: -11.5,-53.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14970 + - uid: 15366 components: - - rot: 3.141592653589793 rad - pos: 37.5,-79.5 + - rot: -1.5707963267948966 rad + pos: -13.5,-53.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14971 + - uid: 15367 components: - - rot: 3.141592653589793 rad - pos: 37.5,-80.5 + - rot: -1.5707963267948966 rad + pos: -14.5,-53.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14980 + - uid: 15368 components: - - rot: 3.141592653589793 rad - pos: 27.5,-79.5 + - rot: -1.5707963267948966 rad + pos: -15.5,-53.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14981 + - uid: 15369 components: - - rot: 3.141592653589793 rad - pos: 27.5,-80.5 + - rot: -1.5707963267948966 rad + pos: -17.5,-53.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14982 + - uid: 15370 components: - - rot: 3.141592653589793 rad - pos: 27.5,-81.5 + - rot: -1.5707963267948966 rad + pos: -18.5,-53.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14983 + - uid: 15371 components: - - rot: 3.141592653589793 rad - pos: 27.5,-82.5 + - rot: 1.5707963267948966 rad + pos: -8.5,-8.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 14984 + - uid: 15372 components: - - rot: 3.141592653589793 rad - pos: 27.5,-83.5 + - rot: -1.5707963267948966 rad + pos: -20.5,-53.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14985 + - uid: 15373 components: - - rot: 3.141592653589793 rad - pos: 27.5,-84.5 + - rot: -1.5707963267948966 rad + pos: -21.5,-53.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14986 + - uid: 15374 components: - - rot: 3.141592653589793 rad - pos: 27.5,-85.5 + - rot: -1.5707963267948966 rad + pos: -22.5,-53.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14987 + - uid: 15375 components: - - rot: 3.141592653589793 rad - pos: 27.5,-86.5 + - rot: -1.5707963267948966 rad + pos: -23.5,-53.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14988 + - uid: 15376 components: - - rot: 1.5707963267948966 rad - pos: 26.5,-87.5 + - rot: -1.5707963267948966 rad + pos: -26.5,-53.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14989 + - uid: 15378 components: - - rot: 1.5707963267948966 rad - pos: 25.5,-87.5 + - pos: -24.5,-51.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14990 + - uid: 15379 components: - - rot: 1.5707963267948966 rad - pos: 28.5,-87.5 + - pos: -24.5,-50.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14991 + - uid: 15383 components: - - rot: 1.5707963267948966 rad - pos: 29.5,-87.5 + - rot: -1.5707963267948966 rad + pos: -25.5,-48.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14992 + - uid: 15384 components: - - rot: 1.5707963267948966 rad - pos: 30.5,-87.5 + - rot: -1.5707963267948966 rad + pos: -26.5,-48.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14993 + - uid: 15385 components: - - rot: 1.5707963267948966 rad - pos: 31.5,-87.5 + - rot: -1.5707963267948966 rad + pos: -27.5,-48.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14994 + - uid: 15386 components: - - rot: 1.5707963267948966 rad - pos: 32.5,-87.5 + - rot: -1.5707963267948966 rad + pos: -28.5,-48.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14995 + - uid: 15387 components: - - rot: 1.5707963267948966 rad - pos: 33.5,-87.5 + - rot: -1.5707963267948966 rad + pos: -29.5,-48.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14996 + - uid: 15388 components: - - pos: 34.5,-86.5 + - rot: -1.5707963267948966 rad + pos: -30.5,-48.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14997 + - uid: 15389 components: - - pos: 34.5,-85.5 + - rot: -1.5707963267948966 rad + pos: -32.5,-48.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14998 + - uid: 15397 components: - - pos: 34.5,-84.5 + - rot: 3.141592653589793 rad + pos: -31.5,-49.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 14999 + - uid: 15398 components: - - pos: 34.5,-83.5 + - rot: 3.141592653589793 rad + pos: -31.5,-50.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15000 + - uid: 15399 components: - - pos: 34.5,-82.5 + - rot: 3.141592653589793 rad + pos: -31.5,-51.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15001 + - uid: 15400 components: - - rot: -1.5707963267948966 rad - pos: 33.5,-81.5 + - rot: 3.141592653589793 rad + pos: -31.5,-52.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15002 + - uid: 15401 components: - - rot: -1.5707963267948966 rad - pos: 35.5,-81.5 + - rot: 3.141592653589793 rad + pos: -31.5,-53.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15003 + - uid: 15404 components: - - rot: -1.5707963267948966 rad - pos: 36.5,-81.5 + - pos: -31.5,-55.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15008 + - uid: 15405 components: - - rot: 3.141592653589793 rad - pos: 37.5,-82.5 + - pos: -31.5,-56.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15012 + - uid: 15406 components: - - rot: 3.141592653589793 rad - pos: 18.5,-73.5 + - pos: -31.5,-57.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15013 + - uid: 15408 components: - rot: 1.5707963267948966 rad - pos: 19.5,-72.5 + pos: -30.5,-58.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15014 + - uid: 15409 components: - rot: 1.5707963267948966 rad - pos: 20.5,-72.5 + pos: -29.5,-58.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15015 + - uid: 15410 components: - rot: 1.5707963267948966 rad - pos: 21.5,-72.5 + pos: -28.5,-58.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15016 + - uid: 15413 components: - - rot: 1.5707963267948966 rad - pos: 22.5,-72.5 + - rot: 3.141592653589793 rad + pos: -24.5,-54.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15017 + - uid: 15414 components: - - rot: 1.5707963267948966 rad - pos: 23.5,-72.5 + - rot: 3.141592653589793 rad + pos: -24.5,-55.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15018 + - uid: 15415 components: - - rot: 1.5707963267948966 rad - pos: 24.5,-72.5 + - rot: 3.141592653589793 rad + pos: -24.5,-56.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15019 + - uid: 15416 components: - - rot: 1.5707963267948966 rad - pos: 25.5,-72.5 + - rot: 3.141592653589793 rad + pos: -24.5,-57.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15020 + - uid: 15418 components: - rot: 1.5707963267948966 rad - pos: 26.5,-72.5 + pos: -23.5,-58.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15021 + - uid: 15419 components: - rot: 1.5707963267948966 rad - pos: 27.5,-72.5 + pos: -22.5,-58.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15022 + - uid: 15420 components: - rot: 1.5707963267948966 rad - pos: 28.5,-72.5 + pos: -21.5,-58.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15023 + - uid: 15421 components: - rot: 1.5707963267948966 rad - pos: 29.5,-72.5 + pos: -20.5,-58.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15024 + - uid: 15422 components: - rot: 1.5707963267948966 rad - pos: 30.5,-72.5 + pos: -19.5,-58.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15025 + - uid: 15423 components: - - pos: 31.5,-71.5 + - rot: 1.5707963267948966 rad + pos: -17.5,-58.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15026 + - uid: 15424 components: - - pos: 31.5,-70.5 + - rot: 1.5707963267948966 rad + pos: -16.5,-58.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15027 + - uid: 15425 components: - - pos: 31.5,-69.5 + - rot: 1.5707963267948966 rad + pos: -15.5,-58.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15028 + - uid: 15426 components: - - pos: 31.5,-68.5 + - rot: 1.5707963267948966 rad + pos: -14.5,-58.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15029 + - uid: 15427 components: - - pos: 31.5,-67.5 + - rot: 1.5707963267948966 rad + pos: -13.5,-58.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15030 + - uid: 15428 components: - - pos: 31.5,-66.5 + - rot: 1.5707963267948966 rad + pos: -12.5,-58.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15031 + - uid: 15433 components: - - pos: 31.5,-65.5 + - rot: 3.141592653589793 rad + pos: -2.5,-66.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15061 + - uid: 15434 components: - - rot: 1.5707963267948966 rad - pos: -1.5,-72.5 + - rot: 3.141592653589793 rad + pos: -2.5,-67.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15062 + - uid: 15446 components: - - rot: 1.5707963267948966 rad - pos: -2.5,-72.5 + - rot: -1.5707963267948966 rad + pos: -28.5,-61.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15063 + - uid: 15447 components: - - rot: 1.5707963267948966 rad - pos: -3.5,-72.5 + - rot: -1.5707963267948966 rad + pos: -27.5,-61.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15065 + - uid: 15448 components: - - rot: 1.5707963267948966 rad - pos: -2.5,-73.5 + - rot: -1.5707963267948966 rad + pos: -26.5,-61.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15066 + - uid: 15449 components: - - rot: 1.5707963267948966 rad - pos: -3.5,-73.5 + - rot: -1.5707963267948966 rad + pos: -25.5,-61.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15067 + - uid: 15450 components: - - rot: 1.5707963267948966 rad - pos: -4.5,-73.5 + - rot: -1.5707963267948966 rad + pos: -24.5,-61.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15068 + - uid: 15451 components: - - rot: 1.5707963267948966 rad - pos: -5.5,-73.5 + - rot: -1.5707963267948966 rad + pos: -23.5,-61.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15069 + - uid: 15452 components: - - rot: 1.5707963267948966 rad - pos: -6.5,-73.5 + - rot: -1.5707963267948966 rad + pos: -21.5,-62.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15070 + - uid: 15453 components: - - rot: 1.5707963267948966 rad - pos: -7.5,-73.5 + - rot: -1.5707963267948966 rad + pos: -20.5,-62.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15073 + - uid: 15454 components: - - pos: -9.5,-74.5 + - rot: -1.5707963267948966 rad + pos: -19.5,-62.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15074 + - uid: 15455 components: - - pos: -9.5,-75.5 + - rot: -1.5707963267948966 rad + pos: -18.5,-62.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15075 + - uid: 15456 components: - - pos: -9.5,-76.5 + - rot: -1.5707963267948966 rad + pos: -17.5,-62.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15076 + - uid: 15457 components: - - pos: -9.5,-77.5 + - rot: -1.5707963267948966 rad + pos: -16.5,-62.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15108 + - uid: 15458 components: - - pos: 14.5,-48.5 + - rot: -1.5707963267948966 rad + pos: -15.5,-62.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15109 + - uid: 15459 components: - - pos: 14.5,-49.5 + - rot: -1.5707963267948966 rad + pos: -14.5,-62.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15110 + - uid: 15460 components: - - pos: 14.5,-50.5 + - rot: 3.141592653589793 rad + pos: -13.5,-63.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15111 + - uid: 15461 components: - - pos: 14.5,-51.5 + - rot: 3.141592653589793 rad + pos: -13.5,-64.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15112 + - uid: 15462 components: - - pos: 14.5,-52.5 + - rot: 3.141592653589793 rad + pos: -13.5,-65.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15113 + - uid: 15463 components: - - pos: 14.5,-53.5 + - rot: 3.141592653589793 rad + pos: -13.5,-66.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15114 + - uid: 15464 components: - - pos: 14.5,-54.5 + - rot: 3.141592653589793 rad + pos: -13.5,-67.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15115 + - uid: 15465 components: - - pos: 14.5,-55.5 + - rot: 1.5707963267948966 rad + pos: -12.5,-68.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15116 + - uid: 15466 components: - - pos: 13.5,-47.5 + - rot: 1.5707963267948966 rad + pos: -11.5,-68.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15117 + - uid: 15467 components: - - pos: 13.5,-48.5 + - rot: 1.5707963267948966 rad + pos: -10.5,-68.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15118 + - uid: 15468 components: - - pos: 13.5,-49.5 + - rot: 1.5707963267948966 rad + pos: -9.5,-68.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15119 + - uid: 15469 components: - - pos: 13.5,-50.5 + - rot: 1.5707963267948966 rad + pos: -8.5,-68.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15120 + - uid: 15470 components: - - pos: 13.5,-51.5 + - rot: 1.5707963267948966 rad + pos: -7.5,-68.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15121 + - uid: 15471 components: - - pos: 13.5,-52.5 + - rot: 1.5707963267948966 rad + pos: -6.5,-68.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15122 + - uid: 15472 components: - - pos: 13.5,-53.5 + - rot: 1.5707963267948966 rad + pos: -5.5,-68.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15123 + - uid: 15473 components: - - pos: 13.5,-54.5 + - rot: 1.5707963267948966 rad + pos: -4.5,-68.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15124 + - uid: 15474 components: - - rot: -1.5707963267948966 rad - pos: 14.5,-55.5 + - rot: 1.5707963267948966 rad + pos: -3.5,-68.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15125 + - uid: 15475 components: - - rot: -1.5707963267948966 rad - pos: 13.5,-56.5 + - pos: -29.5,-62.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15126 + - uid: 15476 components: - - rot: -1.5707963267948966 rad - pos: 12.5,-56.5 + - pos: -29.5,-63.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15127 + - uid: 15477 components: - - rot: -1.5707963267948966 rad - pos: 11.5,-56.5 + - pos: -29.5,-64.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15128 + - uid: 15478 components: - - rot: 1.5707963267948966 rad - pos: 12.5,-55.5 + - pos: -29.5,-65.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15129 + - uid: 15479 components: - - rot: 1.5707963267948966 rad - pos: 11.5,-55.5 + - pos: -29.5,-66.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15130 + - uid: 15480 components: - - rot: 1.5707963267948966 rad - pos: 10.5,-55.5 + - pos: -29.5,-67.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15135 + - uid: 15487 components: - rot: 3.141592653589793 rad - pos: 8.5,-56.5 + pos: -48.5,-80.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15136 + - uid: 15488 components: - rot: 3.141592653589793 rad - pos: 8.5,-57.5 + pos: -48.5,-79.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15137 + - uid: 15489 components: - rot: 3.141592653589793 rad - pos: 8.5,-58.5 + pos: -48.5,-78.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15138 + - uid: 15490 components: - rot: 3.141592653589793 rad - pos: 10.5,-56.5 + pos: -48.5,-77.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15139 + - uid: 15491 components: - rot: 3.141592653589793 rad - pos: 10.5,-57.5 + pos: -48.5,-76.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15140 + - uid: 15492 components: - rot: 3.141592653589793 rad - pos: 10.5,-58.5 + pos: -48.5,-75.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15145 + - uid: 15493 components: - rot: 3.141592653589793 rad - pos: 13.5,-56.5 + pos: -48.5,-74.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15146 + - uid: 15494 components: - rot: 3.141592653589793 rad - pos: 13.5,-57.5 + pos: -48.5,-73.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15147 + - uid: 15495 components: - rot: 3.141592653589793 rad - pos: 14.5,-57.5 + pos: -48.5,-72.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15148 + - uid: 15496 components: - rot: 3.141592653589793 rad - pos: 4.5,-47.5 + pos: -48.5,-71.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15149 + - uid: 15497 components: - rot: 3.141592653589793 rad - pos: 4.5,-48.5 + pos: -48.5,-70.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15150 + - uid: 15499 components: - - rot: 3.141592653589793 rad - pos: 4.5,-49.5 + - rot: 1.5707963267948966 rad + pos: -47.5,-69.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15151 + - uid: 15500 components: - - rot: 3.141592653589793 rad - pos: 4.5,-50.5 + - rot: 1.5707963267948966 rad + pos: -46.5,-69.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15152 + - uid: 15501 components: - - rot: 3.141592653589793 rad - pos: 4.5,-51.5 + - rot: 1.5707963267948966 rad + pos: -45.5,-69.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15153 + - uid: 15502 components: - - rot: 3.141592653589793 rad - pos: 4.5,-52.5 + - rot: 1.5707963267948966 rad + pos: -44.5,-69.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15154 + - uid: 15503 components: - - rot: 3.141592653589793 rad - pos: 4.5,-53.5 + - rot: 1.5707963267948966 rad + pos: -43.5,-69.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15155 + - uid: 15504 components: - - rot: 3.141592653589793 rad - pos: 4.5,-54.5 + - rot: 1.5707963267948966 rad + pos: -42.5,-69.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15156 + - uid: 15505 components: - - rot: 3.141592653589793 rad - pos: 4.5,-55.5 + - rot: 1.5707963267948966 rad + pos: -41.5,-69.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15159 + - uid: 15506 components: - - rot: 3.141592653589793 rad - pos: 4.5,-58.5 + - rot: 1.5707963267948966 rad + pos: -40.5,-69.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15160 + - uid: 15507 components: - - rot: 3.141592653589793 rad - pos: 4.5,-59.5 + - rot: 1.5707963267948966 rad + pos: -39.5,-69.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15164 + - uid: 15508 components: - rot: 1.5707963267948966 rad - pos: 0.5,-57.5 + pos: -38.5,-69.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15165 + - uid: 15509 components: - rot: 1.5707963267948966 rad - pos: 1.5,-57.5 + pos: -37.5,-69.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15166 + - uid: 15510 components: - rot: 1.5707963267948966 rad - pos: 2.5,-57.5 + pos: -36.5,-69.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15167 + - uid: 15511 components: - rot: 1.5707963267948966 rad - pos: 3.5,-57.5 + pos: -35.5,-69.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15169 + - uid: 15522 components: - rot: 3.141592653589793 rad - pos: 0.5,-45.5 + pos: -42.5,-55.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15171 + - uid: 15523 components: - rot: 3.141592653589793 rad - pos: 0.5,-44.5 + pos: -41.5,-57.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15173 + - uid: 15524 components: - rot: 3.141592653589793 rad - pos: 3.5,-59.5 + pos: -41.5,-58.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15174 + - uid: 15525 components: - - rot: -1.5707963267948966 rad - pos: 0.5,-58.5 + - rot: 1.5707963267948966 rad + pos: -40.5,-59.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15175 + - uid: 15526 components: - - rot: 3.141592653589793 rad - pos: 3.5,-48.5 + - pos: -39.5,-60.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15176 + - uid: 15527 components: - - rot: 3.141592653589793 rad - pos: 3.5,-49.5 + - pos: -39.5,-61.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15177 + - uid: 15528 components: - - rot: 3.141592653589793 rad - pos: 3.5,-50.5 + - pos: -39.5,-62.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15178 + - uid: 15529 components: - - rot: 3.141592653589793 rad - pos: 3.5,-51.5 + - pos: -39.5,-63.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15179 + - uid: 15530 components: - - rot: 3.141592653589793 rad - pos: 3.5,-52.5 + - pos: -39.5,-64.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15180 + - uid: 15531 components: - - rot: 3.141592653589793 rad - pos: 3.5,-53.5 + - rot: -1.5707963267948966 rad + pos: -38.5,-65.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15181 + - uid: 15532 components: - - rot: 3.141592653589793 rad - pos: 3.5,-54.5 + - rot: -1.5707963267948966 rad + pos: -37.5,-65.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15182 + - uid: 15533 components: - - rot: 3.141592653589793 rad - pos: 3.5,-55.5 + - rot: -1.5707963267948966 rad + pos: -36.5,-65.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15184 + - uid: 15534 components: - - rot: 3.141592653589793 rad - pos: 3.5,-57.5 + - rot: -1.5707963267948966 rad + pos: -35.5,-65.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15186 + - uid: 15535 components: - - rot: -1.5707963267948966 rad - pos: 2.5,-58.5 + - rot: 3.141592653589793 rad + pos: -34.5,-66.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15187 + - uid: 15536 components: - - rot: -1.5707963267948966 rad - pos: 1.5,-58.5 + - rot: 3.141592653589793 rad + pos: -34.5,-67.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15188 + - uid: 15537 components: - rot: 3.141592653589793 rad - pos: 0.5,-42.5 + pos: -34.5,-68.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15189 + - uid: 15539 components: - rot: 1.5707963267948966 rad - pos: 1.5,-41.5 + pos: -33.5,-69.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15190 + - uid: 15540 components: - rot: 1.5707963267948966 rad - pos: 2.5,-41.5 + pos: -31.5,-68.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15191 + - uid: 15541 components: - rot: 1.5707963267948966 rad - pos: 3.5,-41.5 + pos: -30.5,-68.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15192 + - uid: 15542 components: - rot: 1.5707963267948966 rad - pos: 4.5,-41.5 + pos: -28.5,-68.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15193 + - uid: 15543 components: - rot: 1.5707963267948966 rad - pos: 5.5,-41.5 + pos: -27.5,-68.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15194 + - uid: 15544 components: - rot: 1.5707963267948966 rad - pos: 6.5,-41.5 + pos: -26.5,-68.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15195 + - uid: 15545 components: - rot: 1.5707963267948966 rad - pos: 7.5,-41.5 + pos: -25.5,-68.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15196 + - uid: 15556 + components: + - rot: 3.141592653589793 rad + pos: -45.5,-36.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15557 + components: + - rot: 3.141592653589793 rad + pos: -45.5,-35.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15558 + components: + - rot: 3.141592653589793 rad + pos: -45.5,-34.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15559 + components: + - rot: 3.141592653589793 rad + pos: -45.5,-33.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 15560 components: - rot: 1.5707963267948966 rad - pos: 8.5,-41.5 + pos: -44.5,-32.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15197 + - uid: 15562 components: - - pos: 1.5,-46.5 + - rot: 1.5707963267948966 rad + pos: -42.5,-32.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15198 + - uid: 15563 components: - - pos: 1.5,-45.5 + - pos: -41.5,-33.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15199 + - uid: 15564 components: - - pos: 1.5,-43.5 + - pos: -41.5,-34.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15200 + - uid: 15565 components: - - rot: -1.5707963267948966 rad - pos: 2.5,-42.5 + - pos: -41.5,-35.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15201 + - uid: 15566 components: - - rot: -1.5707963267948966 rad - pos: 3.5,-42.5 + - pos: -41.5,-36.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15202 + - uid: 15567 components: - - rot: -1.5707963267948966 rad - pos: 4.5,-42.5 + - pos: -41.5,-37.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15203 + - uid: 15568 components: - - rot: -1.5707963267948966 rad - pos: 5.5,-42.5 + - pos: -41.5,-38.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15204 + - uid: 15569 components: - - rot: -1.5707963267948966 rad - pos: 6.5,-42.5 + - pos: -41.5,-39.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15205 + - uid: 15570 components: - - rot: -1.5707963267948966 rad - pos: 7.5,-42.5 + - pos: -41.5,-40.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15206 + - uid: 15571 components: - rot: -1.5707963267948966 rad - pos: 8.5,-42.5 + pos: -42.5,-41.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15209 + - uid: 15572 components: - rot: -1.5707963267948966 rad - pos: 0.5,-44.5 + pos: -43.5,-41.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15219 + - uid: 15575 components: - - rot: 3.141592653589793 rad - pos: 1.5,-48.5 + - rot: 1.5707963267948966 rad + pos: -40.5,-41.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15220 + - uid: 15576 components: - - rot: 3.141592653589793 rad - pos: 1.5,-49.5 + - pos: -39.5,-42.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15221 + - uid: 15577 components: - - rot: 3.141592653589793 rad - pos: 1.5,-50.5 + - pos: -39.5,-43.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15222 + - uid: 15578 components: - - rot: 1.5707963267948966 rad - pos: 0.5,-51.5 + - pos: -39.5,-44.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15223 + - uid: 15579 components: - - rot: 1.5707963267948966 rad - pos: -0.5,-51.5 + - pos: -39.5,-45.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15224 + - uid: 15580 components: - - rot: 1.5707963267948966 rad - pos: -1.5,-51.5 + - pos: -39.5,-46.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15225 + - uid: 15581 components: - - pos: -2.5,-52.5 + - pos: -39.5,-47.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15226 + - uid: 15582 components: - - rot: -1.5707963267948966 rad - pos: -3.5,-53.5 + - pos: -39.5,-48.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15227 + - uid: 15583 components: - - rot: -1.5707963267948966 rad - pos: -4.5,-53.5 + - pos: -39.5,-49.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15228 + - uid: 15584 components: - - rot: -1.5707963267948966 rad - pos: -5.5,-53.5 + - pos: -39.5,-50.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15231 + - uid: 15585 components: - - rot: 3.141592653589793 rad - pos: -2.5,-54.5 + - rot: -1.5707963267948966 rad + pos: -38.5,-51.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15232 + - uid: 15586 components: - - rot: 3.141592653589793 rad - pos: -2.5,-55.5 + - rot: -1.5707963267948966 rad + pos: -37.5,-51.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15233 + - uid: 15587 components: - - rot: 3.141592653589793 rad - pos: -2.5,-56.5 + - rot: -1.5707963267948966 rad + pos: -36.5,-51.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15234 + - uid: 15588 components: - - rot: 3.141592653589793 rad - pos: -2.5,-57.5 + - rot: -1.5707963267948966 rad + pos: -35.5,-51.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15235 + - uid: 15589 components: - rot: 3.141592653589793 rad - pos: -2.5,-58.5 + pos: -34.5,-52.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15236 + - uid: 15590 components: - rot: 3.141592653589793 rad - pos: -2.5,-59.5 + pos: -34.5,-53.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15237 + - uid: 15591 components: - rot: 3.141592653589793 rad - pos: -2.5,-60.5 + pos: -34.5,-54.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15238 + - uid: 15592 components: - rot: 3.141592653589793 rad - pos: -2.5,-61.5 + pos: -34.5,-55.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15239 + - uid: 15593 components: - rot: 3.141592653589793 rad - pos: -2.5,-62.5 + pos: -34.5,-56.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15240 + - uid: 15594 components: - rot: 3.141592653589793 rad - pos: -2.5,-63.5 + pos: -34.5,-57.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15241 + - uid: 15595 components: - rot: 3.141592653589793 rad - pos: -2.5,-64.5 + pos: -34.5,-58.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15243 + - uid: 15596 components: - - pos: -3.5,-51.5 + - rot: 3.141592653589793 rad + pos: -34.5,-59.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15244 + - uid: 15597 components: - - pos: -3.5,-52.5 + - rot: 3.141592653589793 rad + pos: -34.5,-60.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15245 + - uid: 15598 components: - - pos: -3.5,-53.5 + - rot: 1.5707963267948966 rad + pos: -33.5,-61.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15246 + - uid: 15599 components: - - pos: -3.5,-54.5 + - rot: 1.5707963267948966 rad + pos: -32.5,-61.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15247 + - uid: 15600 components: - - pos: -3.5,-55.5 + - rot: 1.5707963267948966 rad + pos: -31.5,-61.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15248 + - uid: 15601 components: - - pos: -3.5,-56.5 + - rot: 1.5707963267948966 rad + pos: -30.5,-61.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15249 + - uid: 15602 components: - - pos: -3.5,-57.5 + - rot: 1.5707963267948966 rad + pos: 24.5,-8.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15250 + - uid: 15603 components: - - pos: -3.5,-58.5 + - rot: 1.5707963267948966 rad + pos: 23.5,-8.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15251 + - uid: 15604 components: - - pos: -3.5,-59.5 + - rot: 1.5707963267948966 rad + pos: 22.5,-8.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15252 + - uid: 15605 components: - - pos: -3.5,-60.5 + - rot: 1.5707963267948966 rad + pos: 21.5,-8.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15253 + - uid: 15606 components: - - pos: -3.5,-61.5 + - rot: 1.5707963267948966 rad + pos: 20.5,-8.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15254 + - uid: 15607 components: - - pos: -3.5,-62.5 + - pos: 19.5,-7.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15255 + - uid: 15608 components: - - pos: -3.5,-63.5 + - pos: 19.5,-6.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15256 + - uid: 15609 components: - - pos: -3.5,-64.5 + - pos: 19.5,-5.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15257 + - uid: 15610 components: - - pos: -3.5,-65.5 + - pos: 19.5,-4.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15259 + - uid: 15611 components: - - rot: 1.5707963267948966 rad - pos: -2.5,-66.5 + - pos: 19.5,-3.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15260 + - uid: 15612 components: - - rot: 1.5707963267948966 rad - pos: -1.5,-66.5 + - pos: 19.5,-2.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15261 + - uid: 15613 components: - - rot: 1.5707963267948966 rad - pos: -0.5,-66.5 + - rot: -1.5707963267948966 rad + pos: 18.5,-8.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15262 + - uid: 15615 components: - - rot: 1.5707963267948966 rad - pos: 0.5,-66.5 + - rot: -1.5707963267948966 rad + pos: 16.5,-8.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15263 + - uid: 15616 components: - - rot: 1.5707963267948966 rad - pos: 1.5,-66.5 + - rot: -1.5707963267948966 rad + pos: 15.5,-8.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15264 + - uid: 15617 components: - - rot: 1.5707963267948966 rad - pos: 2.5,-66.5 + - rot: -1.5707963267948966 rad + pos: 14.5,-8.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15268 + - uid: 15618 components: - rot: -1.5707963267948966 rad - pos: -1.5,-65.5 + pos: 13.5,-8.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15269 + - uid: 15619 components: - rot: -1.5707963267948966 rad - pos: -0.5,-65.5 + pos: 12.5,-8.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15270 + - uid: 15620 components: - rot: -1.5707963267948966 rad - pos: 0.5,-65.5 + pos: 11.5,-8.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15271 + - uid: 15621 components: - - rot: 3.141592653589793 rad - pos: 0.5,-47.5 + - rot: -1.5707963267948966 rad + pos: 10.5,-8.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15272 + - uid: 15638 components: - - rot: 3.141592653589793 rad - pos: 0.5,-48.5 + - rot: -1.5707963267948966 rad + pos: 7.5,-8.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15273 + - uid: 15642 components: - rot: 3.141592653589793 rad - pos: 0.5,-49.5 + pos: 3.5,-9.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15274 + - uid: 15643 components: - - rot: 1.5707963267948966 rad - pos: -0.5,-50.5 + - rot: 3.141592653589793 rad + pos: 3.5,-10.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15275 + - uid: 15644 components: - - rot: 1.5707963267948966 rad - pos: -1.5,-50.5 + - rot: 3.141592653589793 rad + pos: 3.5,-11.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15276 + - uid: 15645 components: - - rot: 1.5707963267948966 rad - pos: -2.5,-50.5 + - rot: 3.141592653589793 rad + pos: 3.5,-12.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15277 + - uid: 15646 components: - - rot: 1.5707963267948966 rad - pos: -4.5,-50.5 + - rot: 3.141592653589793 rad + pos: 3.5,-13.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15278 + - uid: 15715 components: - - rot: 1.5707963267948966 rad - pos: -5.5,-50.5 + - pos: 9.5,-9.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15282 + - uid: 15963 components: - - rot: 3.141592653589793 rad - pos: -7.5,-51.5 + - pos: 7.5,-8.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15288 + - uid: 15964 components: - rot: -1.5707963267948966 rad - pos: -25.5,-53.5 + pos: 3.5,-9.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15289 + - uid: 15966 components: - rot: -1.5707963267948966 rad - pos: -8.5,-52.5 + pos: 5.5,-9.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15290 + - uid: 15967 components: - rot: -1.5707963267948966 rad - pos: -9.5,-52.5 + pos: 6.5,-9.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15291 + - uid: 15968 components: - rot: -1.5707963267948966 rad - pos: -10.5,-52.5 + pos: 8.5,-9.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15292 + - uid: 15969 components: - rot: -1.5707963267948966 rad - pos: -11.5,-52.5 + pos: 9.5,-9.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15293 + - uid: 15970 components: - rot: -1.5707963267948966 rad - pos: -13.5,-52.5 + pos: 11.5,-9.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15294 + - uid: 15971 components: - rot: -1.5707963267948966 rad - pos: -14.5,-52.5 + pos: 12.5,-9.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15295 + - uid: 15972 components: - rot: -1.5707963267948966 rad - pos: -15.5,-52.5 + pos: 13.5,-9.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15296 + - uid: 15973 components: - rot: -1.5707963267948966 rad - pos: -17.5,-52.5 + pos: 14.5,-9.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15297 + - uid: 15974 components: - rot: -1.5707963267948966 rad - pos: -18.5,-52.5 + pos: 15.5,-9.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15298 + - uid: 15975 components: - - rot: -1.5707963267948966 rad - pos: -19.5,-52.5 + - rot: 3.141592653589793 rad + pos: 16.5,-8.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15299 + - uid: 15976 components: - - rot: -1.5707963267948966 rad - pos: -20.5,-52.5 + - rot: 3.141592653589793 rad + pos: 16.5,-7.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15300 + - uid: 15977 components: - - rot: -1.5707963267948966 rad - pos: -21.5,-52.5 + - rot: 3.141592653589793 rad + pos: 16.5,-6.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15301 + - uid: 15978 components: - - rot: -1.5707963267948966 rad - pos: -22.5,-52.5 + - rot: 3.141592653589793 rad + pos: 16.5,-5.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15303 + - uid: 15979 components: - - rot: -1.5707963267948966 rad - pos: -24.5,-52.5 + - rot: 3.141592653589793 rad + pos: 16.5,-4.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15305 + - uid: 15980 components: - - rot: 1.5707963267948966 rad - pos: -26.5,-52.5 + - rot: 3.141592653589793 rad + pos: 16.5,-3.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15309 + - uid: 15981 components: - rot: 3.141592653589793 rad - pos: -27.5,-48.5 + pos: 16.5,-2.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15310 + - uid: 15982 components: - rot: 1.5707963267948966 rad - pos: -26.5,-49.5 + pos: 17.5,-9.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15311 + - uid: 15984 components: - - pos: -25.5,-50.5 + - rot: 1.5707963267948966 rad + pos: 19.5,-9.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15312 + - uid: 15985 components: - - pos: -25.5,-51.5 + - rot: 1.5707963267948966 rad + pos: 20.5,-9.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15316 + - uid: 15986 components: - - rot: -1.5707963267948966 rad - pos: -30.5,-46.5 + - rot: 1.5707963267948966 rad + pos: 21.5,-9.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15318 + - uid: 15987 components: - - rot: -1.5707963267948966 rad - pos: -31.5,-46.5 + - rot: 1.5707963267948966 rad + pos: 22.5,-9.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15319 + - uid: 15988 components: - - rot: -1.5707963267948966 rad - pos: -32.5,-46.5 + - rot: 1.5707963267948966 rad + pos: 23.5,-9.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15321 + - uid: 16009 components: - - rot: -1.5707963267948966 rad - pos: -28.5,-47.5 + - rot: 3.141592653589793 rad + pos: 61.5,-51.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15322 + - uid: 16018 components: - rot: 3.141592653589793 rad - pos: -29.5,-48.5 + pos: 0.5,-40.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15323 + - uid: 16019 components: - rot: 3.141592653589793 rad - pos: -29.5,-49.5 + pos: 0.5,-39.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15324 + - uid: 16020 components: - rot: 3.141592653589793 rad - pos: -29.5,-50.5 + pos: 0.5,-38.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15326 + - uid: 16022 components: - - rot: -1.5707963267948966 rad - pos: -30.5,-51.5 + - pos: -19.5,-49.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15327 + - uid: 16023 components: - - rot: -1.5707963267948966 rad - pos: -31.5,-51.5 + - rot: 1.5707963267948966 rad + pos: 1.5,-37.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15331 + - uid: 16062 components: - - pos: -29.5,-52.5 + - pos: 1.5,-37.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15332 + - uid: 16063 components: - - pos: -29.5,-53.5 + - pos: 1.5,-38.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15333 + - uid: 16064 components: - - pos: -29.5,-54.5 + - pos: 1.5,-39.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15334 + - uid: 16065 components: - - pos: -29.5,-55.5 + - pos: 1.5,-40.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15335 + - uid: 16066 components: - - pos: -29.5,-56.5 + - pos: 1.5,-41.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15337 + - uid: 16129 components: - rot: -1.5707963267948966 rad - pos: -28.5,-57.5 - parent: 6747 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 15343 - components: - - pos: -23.5,-53.5 + pos: 0.5,-36.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15344 + - uid: 16130 components: - - pos: -23.5,-54.5 + - rot: -1.5707963267948966 rad + pos: -0.5,-36.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15345 + - uid: 16422 components: - - pos: -23.5,-55.5 + - rot: 1.5707963267948966 rad + pos: -0.5,-37.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15346 + - uid: 16464 components: - - pos: -23.5,-56.5 + - pos: -20.5,-42.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15348 + - uid: 16465 components: - - rot: 1.5707963267948966 rad - pos: -22.5,-57.5 + - pos: -20.5,-43.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15349 + - uid: 16466 components: - - rot: 1.5707963267948966 rad - pos: -21.5,-57.5 + - pos: -20.5,-44.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15350 + - uid: 16467 components: - - rot: 1.5707963267948966 rad - pos: -20.5,-57.5 + - pos: -20.5,-45.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15351 + - uid: 16487 components: - - rot: 1.5707963267948966 rad - pos: -18.5,-57.5 + - pos: -19.5,-48.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15352 + - uid: 16488 components: - - rot: 1.5707963267948966 rad - pos: -17.5,-57.5 + - pos: -19.5,-47.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15353 + - uid: 16496 components: - - rot: 1.5707963267948966 rad - pos: -16.5,-57.5 + - pos: -46.5,-12.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15354 + - uid: 16497 components: - - rot: 1.5707963267948966 rad - pos: -15.5,-57.5 + - pos: -46.5,-13.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15355 + - uid: 16498 components: - - rot: 1.5707963267948966 rad - pos: -14.5,-57.5 + - pos: -46.5,-14.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15356 + - uid: 16499 components: - - rot: 1.5707963267948966 rad - pos: -13.5,-57.5 + - pos: -46.5,-15.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15357 + - uid: 16500 components: - - rot: 1.5707963267948966 rad - pos: -12.5,-57.5 + - pos: -46.5,-16.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15361 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-53.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 15362 + - uid: 16501 components: - - rot: -1.5707963267948966 rad - pos: -8.5,-53.5 + - pos: -46.5,-17.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15363 + - uid: 16502 components: - - rot: -1.5707963267948966 rad - pos: -9.5,-53.5 + - pos: -46.5,-18.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15364 + - uid: 16503 components: - - rot: -1.5707963267948966 rad - pos: -10.5,-53.5 + - pos: -46.5,-19.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15365 + - uid: 16504 components: - - rot: -1.5707963267948966 rad - pos: -11.5,-53.5 + - pos: -46.5,-20.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15366 + - uid: 16505 components: - - rot: -1.5707963267948966 rad - pos: -13.5,-53.5 + - pos: -46.5,-21.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15367 + - uid: 16506 components: - - rot: -1.5707963267948966 rad - pos: -14.5,-53.5 + - pos: -46.5,-22.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15368 + - uid: 16507 components: - - rot: -1.5707963267948966 rad - pos: -15.5,-53.5 + - pos: -46.5,-23.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15369 + - uid: 16508 components: - - rot: -1.5707963267948966 rad - pos: -17.5,-53.5 + - pos: -46.5,-24.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15370 + - uid: 16509 components: - - rot: -1.5707963267948966 rad - pos: -18.5,-53.5 + - pos: -46.5,-25.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15371 + - uid: 16510 components: - - rot: 1.5707963267948966 rad - pos: -8.5,-8.5 + - pos: -46.5,-26.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15372 + - uid: 16511 components: - - rot: -1.5707963267948966 rad - pos: -20.5,-53.5 + - pos: -46.5,-27.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15373 + - uid: 16512 components: - - rot: -1.5707963267948966 rad - pos: -21.5,-53.5 + - pos: -46.5,-28.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15374 + - uid: 16513 components: - - rot: -1.5707963267948966 rad - pos: -22.5,-53.5 + - pos: -46.5,-29.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15375 + - uid: 16514 components: - - rot: -1.5707963267948966 rad - pos: -23.5,-53.5 + - pos: -46.5,-30.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15376 + - uid: 16515 components: - - rot: -1.5707963267948966 rad - pos: -26.5,-53.5 + - pos: -46.5,-31.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15378 + - uid: 16516 components: - - pos: -24.5,-51.5 + - pos: -46.5,-32.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15379 + - uid: 16517 components: - - pos: -24.5,-50.5 + - rot: 1.5707963267948966 rad + pos: 4.5,-9.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15383 + - uid: 16518 components: - - rot: -1.5707963267948966 rad - pos: -25.5,-48.5 + - pos: -46.5,-34.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15384 + - uid: 16519 components: - - rot: -1.5707963267948966 rad - pos: -26.5,-48.5 + - pos: -46.5,-35.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15385 + - uid: 16520 components: - - rot: -1.5707963267948966 rad - pos: -27.5,-48.5 + - pos: -46.5,-36.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15386 + - uid: 16524 components: - - rot: -1.5707963267948966 rad - pos: -28.5,-48.5 + - pos: -46.5,-38.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15387 + - uid: 16525 components: - rot: -1.5707963267948966 rad - pos: -29.5,-48.5 + pos: -47.5,-40.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15388 + - uid: 16526 components: - rot: -1.5707963267948966 rad - pos: -30.5,-48.5 + pos: -48.5,-40.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15389 + - uid: 16527 components: - rot: -1.5707963267948966 rad - pos: -32.5,-48.5 + pos: -49.5,-40.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15397 + - uid: 16528 components: - - rot: 3.141592653589793 rad - pos: -31.5,-49.5 + - rot: -1.5707963267948966 rad + pos: -50.5,-40.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15398 + - uid: 16529 components: - - rot: 3.141592653589793 rad - pos: -31.5,-50.5 + - rot: -1.5707963267948966 rad + pos: -51.5,-40.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15399 + - uid: 16530 components: - - rot: 3.141592653589793 rad - pos: -31.5,-51.5 + - rot: -1.5707963267948966 rad + pos: -52.5,-40.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15400 + - uid: 16531 components: - - rot: 3.141592653589793 rad - pos: -31.5,-52.5 + - rot: -1.5707963267948966 rad + pos: -53.5,-40.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15401 + - uid: 16532 components: - - rot: 3.141592653589793 rad - pos: -31.5,-53.5 + - rot: -1.5707963267948966 rad + pos: -54.5,-40.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15404 + - uid: 16533 components: - - pos: -31.5,-55.5 + - rot: -1.5707963267948966 rad + pos: -55.5,-40.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15405 + - uid: 16538 components: - - pos: -31.5,-56.5 + - rot: 1.5707963267948966 rad + pos: -45.5,-11.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15406 + - uid: 16539 components: - - pos: -31.5,-57.5 + - rot: 1.5707963267948966 rad + pos: -44.5,-11.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15408 + - uid: 16574 components: - rot: 1.5707963267948966 rad - pos: -30.5,-58.5 + pos: -28.5,13.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15409 + - uid: 16575 components: - rot: 1.5707963267948966 rad - pos: -29.5,-58.5 + pos: -27.5,13.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15410 + - uid: 16576 components: - - rot: 1.5707963267948966 rad - pos: -28.5,-58.5 + - pos: -25.5,12.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15413 + - uid: 16577 components: - - rot: 3.141592653589793 rad - pos: -24.5,-54.5 + - rot: -1.5707963267948966 rad + pos: -24.5,11.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15414 + - uid: 16578 components: - - rot: 3.141592653589793 rad - pos: -24.5,-55.5 + - rot: -1.5707963267948966 rad + pos: -23.5,11.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15415 + - uid: 16579 components: - - rot: 3.141592653589793 rad - pos: -24.5,-56.5 + - rot: -1.5707963267948966 rad + pos: -22.5,11.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15416 + - uid: 16603 components: - rot: 3.141592653589793 rad - pos: -24.5,-57.5 + pos: 29.5,-28.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15418 + - uid: 16604 components: - - rot: 1.5707963267948966 rad - pos: -23.5,-58.5 + - rot: 3.141592653589793 rad + pos: 29.5,-29.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15419 + - uid: 16605 components: - - rot: 1.5707963267948966 rad - pos: -22.5,-58.5 + - rot: 3.141592653589793 rad + pos: 29.5,-30.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15420 + - uid: 16606 components: - - rot: 1.5707963267948966 rad - pos: -21.5,-58.5 + - rot: 3.141592653589793 rad + pos: 29.5,-31.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15421 + - uid: 16611 components: - - rot: 1.5707963267948966 rad - pos: -20.5,-58.5 + - pos: -6.5,-55.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15422 + - uid: 16612 components: - - rot: 1.5707963267948966 rad - pos: -19.5,-58.5 + - pos: -6.5,-56.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15423 + - uid: 16613 components: - - rot: 1.5707963267948966 rad - pos: -17.5,-58.5 + - pos: -6.5,-57.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15424 + - uid: 16614 components: - - rot: 1.5707963267948966 rad - pos: -16.5,-58.5 + - pos: -7.5,-59.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15425 + - uid: 16615 components: - - rot: 1.5707963267948966 rad - pos: -15.5,-58.5 + - pos: -7.5,-60.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15426 + - uid: 16616 components: - - rot: 1.5707963267948966 rad - pos: -14.5,-58.5 + - rot: -1.5707963267948966 rad + pos: -8.5,-61.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15427 + - uid: 16617 components: - - rot: 1.5707963267948966 rad - pos: -13.5,-58.5 + - rot: 3.141592653589793 rad + pos: -9.5,-62.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15428 + - uid: 16618 components: - - rot: 1.5707963267948966 rad - pos: -12.5,-58.5 + - rot: 3.141592653589793 rad + pos: -9.5,-63.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15433 + - uid: 16619 components: - rot: 3.141592653589793 rad - pos: -2.5,-66.5 + pos: -9.5,-64.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15434 + - uid: 16620 components: - rot: 3.141592653589793 rad - pos: -2.5,-67.5 + pos: -7.5,-62.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15446 + - uid: 16621 components: - - rot: -1.5707963267948966 rad - pos: -28.5,-61.5 + - rot: 3.141592653589793 rad + pos: -7.5,-63.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15447 + - uid: 16622 components: - - rot: -1.5707963267948966 rad - pos: -27.5,-61.5 + - rot: 3.141592653589793 rad + pos: -7.5,-64.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15448 + - uid: 16635 components: - - rot: -1.5707963267948966 rad - pos: -26.5,-61.5 + - rot: 3.141592653589793 rad + pos: -7.5,-53.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15449 + - uid: 16636 components: - - rot: -1.5707963267948966 rad - pos: -25.5,-61.5 + - rot: 3.141592653589793 rad + pos: -7.5,-54.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15450 + - uid: 16637 components: - - rot: -1.5707963267948966 rad - pos: -24.5,-61.5 + - rot: 3.141592653589793 rad + pos: -7.5,-55.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15451 + - uid: 16638 components: - - rot: -1.5707963267948966 rad - pos: -23.5,-61.5 + - rot: 3.141592653589793 rad + pos: -7.5,-56.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15452 + - uid: 16644 components: - rot: -1.5707963267948966 rad - pos: -21.5,-62.5 + pos: -9.5,-62.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15453 + - uid: 16645 components: - rot: -1.5707963267948966 rad - pos: -20.5,-62.5 + pos: -7.5,-62.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15454 + - uid: 16646 components: - - rot: -1.5707963267948966 rad - pos: -19.5,-62.5 + - rot: 3.141592653589793 rad + pos: -6.5,-63.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15455 + - uid: 16647 components: - - rot: -1.5707963267948966 rad - pos: -18.5,-62.5 + - rot: 3.141592653589793 rad + pos: -6.5,-64.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15456 + - uid: 16648 components: - - rot: -1.5707963267948966 rad - pos: -17.5,-62.5 + - rot: 3.141592653589793 rad + pos: -10.5,-63.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15457 + - uid: 16649 components: - - rot: -1.5707963267948966 rad - pos: -16.5,-62.5 + - rot: 3.141592653589793 rad + pos: -10.5,-64.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15458 + - uid: 16650 components: - - rot: -1.5707963267948966 rad - pos: -15.5,-62.5 + - rot: 3.141592653589793 rad + pos: -8.5,-61.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15459 + - uid: 16651 components: - - rot: -1.5707963267948966 rad - pos: -14.5,-62.5 + - rot: 3.141592653589793 rad + pos: -8.5,-60.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15460 + - uid: 16652 components: - rot: 3.141592653589793 rad - pos: -13.5,-63.5 + pos: -8.5,-59.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15461 + - uid: 16653 components: - rot: 3.141592653589793 rad - pos: -13.5,-64.5 + pos: -8.5,-58.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15462 + - uid: 16812 components: - rot: 3.141592653589793 rad - pos: -13.5,-65.5 + pos: 62.5,-51.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15463 + - uid: 16817 components: - rot: 3.141592653589793 rad - pos: -13.5,-66.5 + pos: 62.5,-50.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15464 + - uid: 16828 components: - - rot: 3.141592653589793 rad - pos: -13.5,-67.5 + - rot: -1.5707963267948966 rad + pos: 51.5,-41.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15465 + - uid: 16834 components: - - rot: 1.5707963267948966 rad - pos: -12.5,-68.5 + - rot: -1.5707963267948966 rad + pos: 47.5,-41.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15466 + - uid: 16835 components: - - rot: 1.5707963267948966 rad - pos: -11.5,-68.5 + - rot: -1.5707963267948966 rad + pos: 49.5,-41.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15467 + - uid: 16836 components: - - rot: 1.5707963267948966 rad - pos: -10.5,-68.5 + - rot: -1.5707963267948966 rad + pos: 53.5,-41.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15468 + - uid: 16839 components: - - rot: 1.5707963267948966 rad - pos: -9.5,-68.5 + - pos: 50.5,-45.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15469 + - uid: 16842 components: - - rot: 1.5707963267948966 rad - pos: -8.5,-68.5 + - rot: -1.5707963267948966 rad + pos: 51.5,-42.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15470 + - uid: 16843 components: - - rot: 1.5707963267948966 rad - pos: -7.5,-68.5 + - rot: -1.5707963267948966 rad + pos: 52.5,-42.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15471 + - uid: 16845 components: - - rot: 1.5707963267948966 rad - pos: -6.5,-68.5 + - rot: 3.141592653589793 rad + pos: 48.5,-45.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15472 + - uid: 16849 components: - - rot: 1.5707963267948966 rad - pos: -5.5,-68.5 + - rot: -1.5707963267948966 rad + pos: 50.5,-42.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15473 + - uid: 16851 components: - - rot: 1.5707963267948966 rad - pos: -4.5,-68.5 + - rot: -1.5707963267948966 rad + pos: 49.5,-42.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15474 + - uid: 17050 components: - - rot: 1.5707963267948966 rad - pos: -3.5,-68.5 + - pos: 50.5,-42.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15475 + - uid: 17051 components: - - pos: -29.5,-62.5 + - rot: -1.5707963267948966 rad + pos: 52.5,-41.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15476 + - uid: 17057 components: - - pos: -29.5,-63.5 + - rot: -1.5707963267948966 rad + pos: 48.5,-41.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15477 + - uid: 17058 components: - - pos: -29.5,-64.5 + - pos: 50.5,-46.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15478 + - uid: 17059 components: - - pos: -29.5,-65.5 + - pos: 50.5,-44.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15479 + - uid: 17060 components: - - pos: -29.5,-66.5 + - rot: 3.141592653589793 rad + pos: 48.5,-44.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15480 + - uid: 17066 components: - - pos: -29.5,-67.5 + - rot: -1.5707963267948966 rad + pos: 47.5,-42.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15487 + - uid: 17364 components: - rot: 3.141592653589793 rad - pos: -48.5,-80.5 + pos: 47.5,-50.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15488 + - uid: 17365 components: - rot: 3.141592653589793 rad - pos: -48.5,-79.5 + pos: 47.5,-49.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15489 + - uid: 17366 components: - rot: 3.141592653589793 rad - pos: -48.5,-78.5 + pos: 47.5,-48.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15490 + - uid: 17368 components: - rot: 3.141592653589793 rad - pos: -48.5,-77.5 + pos: 48.5,-49.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15491 + - uid: 17369 components: - rot: 3.141592653589793 rad - pos: -48.5,-76.5 + pos: 48.5,-48.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15492 + - uid: 17370 components: - rot: 3.141592653589793 rad - pos: -48.5,-75.5 + pos: 48.5,-47.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15493 + - uid: 17394 components: - rot: 3.141592653589793 rad - pos: -48.5,-74.5 + pos: 48.5,-51.5 parent: 6747 type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 15494 + - uid: 19130 components: - - rot: 3.141592653589793 rad - pos: -48.5,-73.5 + - rot: -1.5707963267948966 rad + pos: 40.5,31.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15495 + - uid: 20493 components: - - rot: 3.141592653589793 rad - pos: -48.5,-72.5 + - rot: 1.5707963267948966 rad + pos: -10.5,-8.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15496 + - uid: 22050 components: - - rot: 3.141592653589793 rad - pos: -48.5,-71.5 + - pos: 7.5,27.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15497 + - uid: 22072 components: - - rot: 3.141592653589793 rad - pos: -48.5,-70.5 + - pos: 7.5,28.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15499 + - uid: 22210 components: - - rot: 1.5707963267948966 rad - pos: -47.5,-69.5 + - pos: 13.5,-25.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15500 + - uid: 22262 components: - rot: 1.5707963267948966 rad - pos: -46.5,-69.5 + pos: 3.5,-13.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15501 + - uid: 22263 components: - rot: 1.5707963267948966 rad - pos: -45.5,-69.5 + pos: 4.5,-13.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15502 + - uid: 22264 components: - rot: 1.5707963267948966 rad - pos: -44.5,-69.5 + pos: 5.5,-13.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15503 + - uid: 22265 components: - rot: 1.5707963267948966 rad - pos: -43.5,-69.5 + pos: 4.5,-14.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15504 + - uid: 22266 components: - rot: 1.5707963267948966 rad - pos: -42.5,-69.5 + pos: 5.5,-14.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15505 + - uid: 22269 components: - - rot: 1.5707963267948966 rad - pos: -41.5,-69.5 + - rot: -1.5707963267948966 rad + pos: 24.5,6.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15506 + - uid: 22270 components: - - rot: 1.5707963267948966 rad - pos: -40.5,-69.5 + - rot: -1.5707963267948966 rad + pos: 23.5,6.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15507 + - uid: 22271 components: - - rot: 1.5707963267948966 rad - pos: -39.5,-69.5 + - rot: -1.5707963267948966 rad + pos: 22.5,6.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15508 + - uid: 22272 components: - - rot: 1.5707963267948966 rad - pos: -38.5,-69.5 + - rot: -1.5707963267948966 rad + pos: 21.5,6.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15509 + - uid: 22273 components: - - rot: 1.5707963267948966 rad - pos: -37.5,-69.5 + - rot: -1.5707963267948966 rad + pos: 20.5,6.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15510 + - uid: 22274 components: - - rot: 1.5707963267948966 rad - pos: -36.5,-69.5 + - rot: -1.5707963267948966 rad + pos: 19.5,6.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15511 + - uid: 22275 components: - - rot: 1.5707963267948966 rad - pos: -35.5,-69.5 + - rot: -1.5707963267948966 rad + pos: 18.5,6.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15522 + - uid: 22276 components: - - rot: 3.141592653589793 rad - pos: -42.5,-55.5 + - rot: -1.5707963267948966 rad + pos: 17.5,6.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15523 + - uid: 22277 components: - - rot: 3.141592653589793 rad - pos: -41.5,-57.5 + - rot: -1.5707963267948966 rad + pos: 16.5,6.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15524 + - uid: 22279 components: - - rot: 3.141592653589793 rad - pos: -41.5,-58.5 + - rot: 1.5707963267948966 rad + pos: 19.5,5.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15525 + - uid: 22280 components: - rot: 1.5707963267948966 rad - pos: -40.5,-59.5 + pos: 18.5,5.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15526 + - uid: 22281 components: - - pos: -39.5,-60.5 + - rot: 1.5707963267948966 rad + pos: 16.5,5.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15527 + - uid: 22282 components: - - pos: -39.5,-61.5 + - rot: 1.5707963267948966 rad + pos: 17.5,5.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15528 + - uid: 22297 components: - - pos: -39.5,-62.5 + - rot: 1.5707963267948966 rad + pos: 20.5,-15.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15529 + - uid: 22301 components: - - pos: -39.5,-63.5 + - rot: 3.141592653589793 rad + pos: 21.5,-14.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15530 + - uid: 22302 components: - - pos: -39.5,-64.5 + - rot: 3.141592653589793 rad + pos: 21.5,-16.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15531 + - uid: 22303 components: - - rot: -1.5707963267948966 rad - pos: -38.5,-65.5 + - rot: 3.141592653589793 rad + pos: 21.5,-17.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15532 + - uid: 22306 components: - rot: -1.5707963267948966 rad - pos: -37.5,-65.5 + pos: 19.5,-18.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15533 + - uid: 22307 components: - rot: -1.5707963267948966 rad - pos: -36.5,-65.5 + pos: 20.5,-18.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15534 + - uid: 22308 components: - rot: -1.5707963267948966 rad - pos: -35.5,-65.5 + pos: 21.5,-18.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15535 + - uid: 22313 components: - rot: 3.141592653589793 rad - pos: -34.5,-66.5 + pos: 22.5,-17.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15536 + - uid: 22314 components: - rot: 3.141592653589793 rad - pos: -34.5,-67.5 + pos: 22.5,-15.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15537 + - uid: 22315 components: - rot: 3.141592653589793 rad - pos: -34.5,-68.5 + pos: 22.5,-14.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15539 + - uid: 22322 components: - - rot: 1.5707963267948966 rad - pos: -33.5,-69.5 + - rot: 3.141592653589793 rad + pos: 18.5,-8.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15540 + - uid: 22331 components: - - rot: 1.5707963267948966 rad - pos: -31.5,-68.5 + - pos: 12.5,-20.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#99FFFFFF' type: AtmosPipeColor - - uid: 15541 + - uid: 22755 components: - - rot: 1.5707963267948966 rad - pos: -30.5,-68.5 + - rot: -1.5707963267948966 rad + pos: -25.5,-1.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15542 + - uid: 23609 components: - - rot: 1.5707963267948966 rad - pos: -28.5,-68.5 + - pos: 7.5,-0.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15543 + - uid: 23610 components: - - rot: 1.5707963267948966 rad - pos: -27.5,-68.5 + - pos: 7.5,-1.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15544 + - uid: 23611 components: - - rot: 1.5707963267948966 rad - pos: -26.5,-68.5 + - pos: 7.5,-2.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15545 + - uid: 23612 components: - - rot: 1.5707963267948966 rad - pos: -25.5,-68.5 + - pos: 7.5,-3.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15556 + - uid: 23613 components: - - rot: 3.141592653589793 rad - pos: -45.5,-36.5 + - pos: 7.5,-4.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15557 + - uid: 23614 components: - - rot: 3.141592653589793 rad - pos: -45.5,-35.5 + - pos: 7.5,-5.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15558 + - uid: 23615 components: - - rot: 3.141592653589793 rad - pos: -45.5,-34.5 + - pos: 7.5,-6.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15559 + - uid: 23616 components: - - rot: 3.141592653589793 rad - pos: -45.5,-33.5 + - pos: 7.5,-7.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15560 + - uid: 23617 components: - - rot: 1.5707963267948966 rad - pos: -44.5,-32.5 + - pos: 7.5,0.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15562 + - uid: 23618 components: - - rot: 1.5707963267948966 rad - pos: -42.5,-32.5 + - pos: 7.5,1.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15563 + - uid: 23631 components: - - pos: -41.5,-33.5 + - rot: -1.5707963267948966 rad + pos: -7.5,5.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15564 + - uid: 23633 components: - - pos: -41.5,-34.5 + - rot: -1.5707963267948966 rad + pos: -5.5,5.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15565 + - uid: 23634 components: - - pos: -41.5,-35.5 + - rot: -1.5707963267948966 rad + pos: -4.5,5.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15566 + - uid: 23635 components: - - pos: -41.5,-36.5 + - rot: -1.5707963267948966 rad + pos: -3.5,5.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15567 + - uid: 23636 components: - - pos: -41.5,-37.5 + - rot: -1.5707963267948966 rad + pos: -2.5,5.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15568 + - uid: 23637 components: - - pos: -41.5,-38.5 + - rot: -1.5707963267948966 rad + pos: -1.5,5.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15569 + - uid: 23638 components: - - pos: -41.5,-39.5 + - rot: -1.5707963267948966 rad + pos: -0.5,5.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15570 + - uid: 23639 components: - - pos: -41.5,-40.5 + - rot: -1.5707963267948966 rad + pos: 0.5,5.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15571 + - uid: 23640 components: - rot: -1.5707963267948966 rad - pos: -42.5,-41.5 + pos: 1.5,5.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15572 + - uid: 23641 components: - - rot: -1.5707963267948966 rad - pos: -43.5,-41.5 + - rot: 3.141592653589793 rad + pos: 2.5,4.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15575 + - uid: 23642 components: - - rot: 1.5707963267948966 rad - pos: -40.5,-41.5 + - rot: 3.141592653589793 rad + pos: 2.5,3.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15576 + - uid: 23643 components: - - pos: -39.5,-42.5 + - rot: 1.5707963267948966 rad + pos: 3.5,2.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15577 + - uid: 23644 components: - - pos: -39.5,-43.5 + - rot: 1.5707963267948966 rad + pos: 4.5,2.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15578 + - uid: 23645 components: - - pos: -39.5,-44.5 + - rot: 1.5707963267948966 rad + pos: 5.5,2.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15579 + - uid: 23646 components: - - pos: -39.5,-45.5 + - rot: 1.5707963267948966 rad + pos: 6.5,2.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15580 + - uid: 23648 components: - - pos: -39.5,-46.5 + - rot: 1.5707963267948966 rad + pos: -7.5,-8.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15581 + - uid: 23649 components: - - pos: -39.5,-47.5 + - rot: 1.5707963267948966 rad + pos: -9.5,-8.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15582 + - uid: 23658 components: - - pos: -39.5,-48.5 + - rot: 1.5707963267948966 rad + pos: -11.5,-8.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15583 + - uid: 23665 components: - - pos: -39.5,-49.5 + - rot: 3.141592653589793 rad + pos: 3.5,-4.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15584 + - uid: 23666 components: - - pos: -39.5,-50.5 + - rot: 3.141592653589793 rad + pos: 3.5,-3.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15585 + - uid: 23667 components: - - rot: -1.5707963267948966 rad - pos: -38.5,-51.5 + - rot: 3.141592653589793 rad + pos: 3.5,-2.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15586 + - uid: 23668 components: - - rot: -1.5707963267948966 rad - pos: -37.5,-51.5 + - rot: 3.141592653589793 rad + pos: 4.5,-3.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15587 + - uid: 23669 components: - - rot: -1.5707963267948966 rad - pos: -36.5,-51.5 + - rot: 3.141592653589793 rad + pos: 4.5,-2.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15588 + - uid: 23670 components: - - rot: -1.5707963267948966 rad - pos: -35.5,-51.5 + - rot: 3.141592653589793 rad + pos: 4.5,-1.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15589 + - uid: 23674 components: - rot: 3.141592653589793 rad - pos: -34.5,-52.5 + pos: 4.5,-4.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15590 + - uid: 23687 components: - - rot: 3.141592653589793 rad - pos: -34.5,-53.5 + - rot: 1.5707963267948966 rad + pos: -0.5,-1.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15591 + - uid: 23688 components: - - rot: 3.141592653589793 rad - pos: -34.5,-54.5 + - rot: 1.5707963267948966 rad + pos: 0.5,-1.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15592 + - uid: 23689 components: - - rot: 3.141592653589793 rad - pos: -34.5,-55.5 + - rot: 1.5707963267948966 rad + pos: 1.5,-1.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15593 + - uid: 23690 components: - - rot: 3.141592653589793 rad - pos: -34.5,-56.5 + - rot: 1.5707963267948966 rad + pos: 2.5,-1.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15594 + - uid: 23691 components: - - rot: 3.141592653589793 rad - pos: -34.5,-57.5 + - rot: 1.5707963267948966 rad + pos: 3.5,-0.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15595 + - uid: 23692 components: - - rot: 3.141592653589793 rad - pos: -34.5,-58.5 + - rot: 1.5707963267948966 rad + pos: 2.5,-0.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15596 + - uid: 23693 components: - - rot: 3.141592653589793 rad - pos: -34.5,-59.5 + - rot: 1.5707963267948966 rad + pos: 1.5,-0.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15597 + - uid: 23694 components: - - rot: 3.141592653589793 rad - pos: -34.5,-60.5 + - rot: 1.5707963267948966 rad + pos: 0.5,-0.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15598 + - uid: 23695 components: - - rot: 1.5707963267948966 rad - pos: -33.5,-61.5 + - pos: -0.5,-1.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15599 + - uid: 23696 components: - - rot: 1.5707963267948966 rad - pos: -32.5,-61.5 + - pos: -0.5,-2.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15600 + - uid: 23697 components: - - rot: 1.5707963267948966 rad - pos: -31.5,-61.5 + - pos: -0.5,-3.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15601 + - uid: 23698 components: - - rot: 1.5707963267948966 rad - pos: -30.5,-61.5 + - pos: -0.5,-4.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15602 + - uid: 23699 components: - - rot: 1.5707963267948966 rad - pos: 24.5,-8.5 + - pos: -1.5,-4.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15603 + - uid: 23700 components: - - rot: 1.5707963267948966 rad - pos: 23.5,-8.5 + - pos: -1.5,-3.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15604 + - uid: 23701 components: - - rot: 1.5707963267948966 rad - pos: 22.5,-8.5 + - pos: -1.5,-2.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15605 + - uid: 23702 components: - - rot: 1.5707963267948966 rad - pos: 21.5,-8.5 + - rot: -1.5707963267948966 rad + pos: -1.5,-0.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15606 + - uid: 23703 components: - - rot: 1.5707963267948966 rad - pos: 20.5,-8.5 + - rot: 3.141592653589793 rad + pos: -1.5,-0.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15607 + - uid: 23706 components: - - pos: 19.5,-7.5 + - pos: -0.5,0.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15608 + - uid: 23707 components: - - pos: 19.5,-6.5 + - pos: -53.5,-2.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15609 + - uid: 23711 components: - - pos: 19.5,-5.5 + - rot: 1.5707963267948966 rad + pos: 11.5,-72.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15610 + - uid: 23712 components: - - pos: 19.5,-4.5 + - rot: 1.5707963267948966 rad + pos: 12.5,-72.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15611 + - uid: 23713 components: - - pos: 19.5,-3.5 + - rot: 1.5707963267948966 rad + pos: 13.5,-72.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15612 + - uid: 23714 components: - - pos: 19.5,-2.5 + - rot: 1.5707963267948966 rad + pos: 14.5,-72.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15613 + - uid: 23715 components: - - rot: -1.5707963267948966 rad - pos: 18.5,-8.5 + - rot: 1.5707963267948966 rad + pos: 15.5,-72.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15615 + - uid: 23716 components: - - rot: -1.5707963267948966 rad - pos: 16.5,-8.5 + - rot: 1.5707963267948966 rad + pos: 16.5,-72.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15616 + - uid: 23717 components: - - rot: -1.5707963267948966 rad - pos: 15.5,-8.5 + - rot: 1.5707963267948966 rad + pos: -6.5,-8.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15617 + - uid: 23719 components: - - rot: -1.5707963267948966 rad - pos: 14.5,-8.5 + - rot: 1.5707963267948966 rad + pos: -5.5,-8.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15618 + - uid: 23723 components: - - rot: -1.5707963267948966 rad - pos: 13.5,-8.5 + - rot: 1.5707963267948966 rad + pos: -4.5,-8.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15619 + - uid: 23724 components: - - rot: -1.5707963267948966 rad - pos: 12.5,-8.5 + - rot: 1.5707963267948966 rad + pos: -3.5,-8.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15620 + - uid: 23725 components: - - rot: -1.5707963267948966 rad - pos: 11.5,-8.5 + - rot: 1.5707963267948966 rad + pos: -2.5,-8.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15621 + - uid: 23726 components: - - rot: -1.5707963267948966 rad - pos: 10.5,-8.5 + - rot: 1.5707963267948966 rad + pos: -1.5,-8.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15638 + - uid: 23727 components: - - rot: -1.5707963267948966 rad - pos: 7.5,-8.5 + - rot: 1.5707963267948966 rad + pos: -0.5,-8.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15642 + - uid: 23728 components: - - rot: 3.141592653589793 rad - pos: 3.5,-9.5 + - rot: 1.5707963267948966 rad + pos: 0.5,-8.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15643 + - uid: 23729 components: - - rot: 3.141592653589793 rad - pos: 3.5,-10.5 + - rot: 1.5707963267948966 rad + pos: 1.5,-8.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15644 + - uid: 23730 components: - - rot: 3.141592653589793 rad - pos: 3.5,-11.5 + - rot: 1.5707963267948966 rad + pos: 2.5,-8.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15645 + - uid: 23731 components: - - rot: 3.141592653589793 rad - pos: 3.5,-12.5 + - rot: 1.5707963267948966 rad + pos: 1.5,-9.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15646 + - uid: 23732 components: - - rot: 3.141592653589793 rad - pos: 3.5,-13.5 + - rot: 1.5707963267948966 rad + pos: 0.5,-9.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15697 + - uid: 23733 components: - - rot: -1.5707963267948966 rad - pos: -19.5,7.5 + - rot: 1.5707963267948966 rad + pos: -0.5,-9.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15698 + - uid: 23734 components: - - rot: -1.5707963267948966 rad - pos: -15.5,5.5 + - pos: -1.5,-10.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15706 + - uid: 23735 components: - rot: -1.5707963267948966 rad - pos: -17.5,7.5 + pos: -2.5,-11.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15707 + - uid: 23736 components: - rot: -1.5707963267948966 rad - pos: -18.5,7.5 + pos: -3.5,-11.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15715 + - uid: 23737 components: - - pos: 9.5,-9.5 + - rot: -1.5707963267948966 rad + pos: -4.5,-11.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15963 + - uid: 23738 components: - - pos: 7.5,-8.5 + - rot: -1.5707963267948966 rad + pos: -5.5,-11.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15964 + - uid: 23739 components: - rot: -1.5707963267948966 rad - pos: 3.5,-9.5 + pos: -6.5,-11.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15966 + - uid: 23740 components: - rot: -1.5707963267948966 rad - pos: 5.5,-9.5 + pos: -7.5,-11.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15967 + - uid: 23741 components: - rot: -1.5707963267948966 rad - pos: 6.5,-9.5 + pos: -8.5,-11.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15968 + - uid: 23742 components: - rot: -1.5707963267948966 rad - pos: 8.5,-9.5 + pos: -9.5,-11.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15969 + - uid: 23743 components: - rot: -1.5707963267948966 rad - pos: 9.5,-9.5 + pos: -10.5,-11.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15970 + - uid: 23750 components: - rot: -1.5707963267948966 rad - pos: 11.5,-9.5 + pos: -11.5,-11.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15971 + - uid: 23834 components: - rot: -1.5707963267948966 rad - pos: 12.5,-9.5 + pos: 27.5,10.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15972 + - uid: 23893 components: - - rot: -1.5707963267948966 rad - pos: 13.5,-9.5 + - rot: 1.5707963267948966 rad + pos: -17.5,-8.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15973 + - uid: 23909 components: - - rot: -1.5707963267948966 rad - pos: 14.5,-9.5 + - rot: 1.5707963267948966 rad + pos: -16.5,-8.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15974 + - uid: 23945 components: - - rot: -1.5707963267948966 rad - pos: 15.5,-9.5 + - rot: 1.5707963267948966 rad + pos: -15.5,-8.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15975 + - uid: 23948 components: - - rot: 3.141592653589793 rad - pos: 16.5,-8.5 + - rot: 1.5707963267948966 rad + pos: -14.5,-8.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23949 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-8.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 24000 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-11.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15976 + - uid: 24001 components: - - rot: 3.141592653589793 rad - pos: 16.5,-7.5 + - rot: 1.5707963267948966 rad + pos: -14.5,-11.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15977 + - uid: 24002 components: - - rot: 3.141592653589793 rad - pos: 16.5,-6.5 + - rot: 1.5707963267948966 rad + pos: -15.5,-11.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 15978 + - uid: 24034 components: - rot: 3.141592653589793 rad - pos: 16.5,-5.5 + pos: 35.5,-89.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15979 + - uid: 24035 components: - rot: 3.141592653589793 rad - pos: 16.5,-4.5 + pos: 35.5,-90.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15980 + - uid: 24036 components: - rot: 3.141592653589793 rad - pos: 16.5,-3.5 + pos: 35.5,-91.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15981 + - uid: 24037 components: - rot: 3.141592653589793 rad - pos: 16.5,-2.5 + pos: 35.5,-92.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15982 + - uid: 24038 components: - rot: 1.5707963267948966 rad - pos: 17.5,-9.5 + pos: 34.5,-93.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15984 + - uid: 24039 components: - rot: 1.5707963267948966 rad - pos: 19.5,-9.5 + pos: 33.5,-93.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15985 + - uid: 24040 components: - rot: 1.5707963267948966 rad - pos: 20.5,-9.5 + pos: 32.5,-93.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15986 + - uid: 24041 components: - rot: 1.5707963267948966 rad - pos: 21.5,-9.5 + pos: 31.5,-93.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15987 + - uid: 24042 components: - rot: 1.5707963267948966 rad - pos: 22.5,-9.5 + pos: 30.5,-93.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 15988 + - uid: 24043 components: - rot: 1.5707963267948966 rad - pos: 23.5,-9.5 + pos: 29.5,-93.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 16009 + - uid: 24044 components: - - rot: 3.141592653589793 rad - pos: 61.5,-51.5 + - rot: 1.5707963267948966 rad + pos: 28.5,-93.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 16018 + - uid: 24045 components: - - rot: 3.141592653589793 rad - pos: 0.5,-40.5 + - rot: 1.5707963267948966 rad + pos: 27.5,-93.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 16019 + - uid: 24046 components: - - rot: 3.141592653589793 rad - pos: 0.5,-39.5 + - pos: 26.5,-94.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 16020 + - uid: 24047 components: - - rot: 3.141592653589793 rad - pos: 0.5,-38.5 + - pos: 26.5,-92.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 16022 + - uid: 24048 components: - - pos: -19.5,-49.5 + - pos: 26.5,-91.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 16023 + - uid: 24054 components: - - rot: 1.5707963267948966 rad - pos: 1.5,-37.5 + - rot: 3.141592653589793 rad + pos: 34.5,-88.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16062 + - uid: 24055 components: - - pos: 1.5,-37.5 + - rot: 3.141592653589793 rad + pos: 34.5,-89.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16063 + - uid: 24056 components: - - pos: 1.5,-38.5 + - rot: 3.141592653589793 rad + pos: 34.5,-90.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16064 + - uid: 24057 components: - - pos: 1.5,-39.5 + - rot: 3.141592653589793 rad + pos: 34.5,-91.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16065 + - uid: 24058 components: - - pos: 1.5,-40.5 + - rot: 3.141592653589793 rad + pos: 34.5,-93.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16066 + - uid: 24059 components: - - pos: 1.5,-41.5 + - rot: 1.5707963267948966 rad + pos: 33.5,-92.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16129 + - uid: 24060 components: - - rot: -1.5707963267948966 rad - pos: 0.5,-36.5 + - rot: 1.5707963267948966 rad + pos: 32.5,-92.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16130 + - uid: 24061 components: - - rot: -1.5707963267948966 rad - pos: -0.5,-36.5 + - rot: 1.5707963267948966 rad + pos: 31.5,-92.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16422 + - uid: 24062 components: - rot: 1.5707963267948966 rad - pos: -0.5,-37.5 + pos: 30.5,-92.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16464 + - uid: 24063 components: - - pos: -20.5,-42.5 + - rot: 1.5707963267948966 rad + pos: 29.5,-92.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16465 + - uid: 24064 components: - - pos: -20.5,-43.5 + - rot: 1.5707963267948966 rad + pos: 28.5,-92.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16466 + - uid: 24065 components: - - pos: -20.5,-44.5 + - pos: 27.5,-93.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16467 + - uid: 24066 components: - - pos: -20.5,-45.5 + - rot: 1.5707963267948966 rad + pos: -16.5,-11.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16487 + - uid: 24069 components: - - pos: -19.5,-48.5 + - rot: 1.5707963267948966 rad + pos: -17.5,-11.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16488 + - uid: 24090 components: - - pos: -19.5,-47.5 + - rot: -1.5707963267948966 rad + pos: -19.5,-11.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16496 + - uid: 24091 components: - - pos: -46.5,-12.5 + - rot: -1.5707963267948966 rad + pos: -19.5,-8.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 16497 + - uid: 24092 components: - - pos: -46.5,-13.5 + - rot: 3.141592653589793 rad + pos: -21.5,-9.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 16498 + - uid: 24093 components: - - pos: -46.5,-14.5 + - rot: 1.5707963267948966 rad + pos: -21.5,-11.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16499 + - uid: 24094 components: - - pos: -46.5,-15.5 + - rot: 1.5707963267948966 rad + pos: -22.5,-11.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16500 + - uid: 24095 components: - - pos: -46.5,-16.5 + - rot: 1.5707963267948966 rad + pos: -23.5,-11.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16501 + - uid: 24096 components: - - pos: -46.5,-17.5 + - rot: 1.5707963267948966 rad + pos: -24.5,-11.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16502 + - uid: 24097 components: - - pos: -46.5,-18.5 + - rot: 1.5707963267948966 rad + pos: -24.5,-10.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 16503 + - uid: 24098 components: - - pos: -46.5,-19.5 + - rot: 1.5707963267948966 rad + pos: -23.5,-10.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 16504 + - uid: 24099 components: - - pos: -46.5,-20.5 + - rot: 1.5707963267948966 rad + pos: -22.5,-10.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 16505 + - uid: 24111 components: - - pos: -46.5,-21.5 + - rot: 1.5707963267948966 rad + pos: -5.5,1.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16506 + - uid: 24112 components: - - pos: -46.5,-22.5 + - rot: 1.5707963267948966 rad + pos: -4.5,1.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16507 + - uid: 24113 components: - - pos: -46.5,-23.5 + - rot: 1.5707963267948966 rad + pos: -3.5,1.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16508 + - uid: 24114 components: - - pos: -46.5,-24.5 + - rot: 1.5707963267948966 rad + pos: -2.5,1.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16509 + - uid: 24115 components: - - pos: -46.5,-25.5 + - rot: 1.5707963267948966 rad + pos: -1.5,1.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16510 + - uid: 24122 components: - - pos: -46.5,-26.5 + - rot: 3.141592653589793 rad + pos: -7.5,-4.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16511 + - uid: 24123 components: - - pos: -46.5,-27.5 + - rot: 3.141592653589793 rad + pos: -7.5,-3.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16512 + - uid: 24124 components: - - pos: -46.5,-28.5 + - rot: 3.141592653589793 rad + pos: -5.5,-5.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16513 + - uid: 24125 components: - - pos: -46.5,-29.5 + - rot: 3.141592653589793 rad + pos: -5.5,-4.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16514 + - uid: 24126 components: - - pos: -46.5,-30.5 + - rot: 3.141592653589793 rad + pos: -5.5,-3.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16515 + - uid: 24127 components: - - pos: -46.5,-31.5 + - rot: 1.5707963267948966 rad + pos: -6.5,-2.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16516 + - uid: 24128 components: - - pos: -46.5,-32.5 + - pos: -7.5,-1.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16517 + - uid: 24129 components: - - rot: 1.5707963267948966 rad - pos: 4.5,-9.5 + - pos: -7.5,-0.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16518 + - uid: 24130 components: - - pos: -46.5,-34.5 + - pos: -7.5,0.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16519 + - uid: 24139 components: - - pos: -46.5,-35.5 + - rot: 1.5707963267948966 rad + pos: -5.5,-5.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 16520 + - uid: 24140 components: - - pos: -46.5,-36.5 + - pos: -4.5,-4.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 16524 + - uid: 24141 components: - - pos: -46.5,-38.5 + - pos: -4.5,-3.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 16525 + - uid: 24142 components: - - rot: -1.5707963267948966 rad - pos: -47.5,-40.5 + - pos: -4.5,-1.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 16526 + - uid: 24143 components: - - rot: -1.5707963267948966 rad - pos: -48.5,-40.5 + - pos: -4.5,-0.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 16527 + - uid: 24145 components: - - rot: -1.5707963267948966 rad - pos: -49.5,-40.5 + - pos: -4.5,1.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 16528 + - uid: 24146 components: - rot: -1.5707963267948966 rad - pos: -50.5,-40.5 + pos: -3.5,0.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 16529 + - uid: 24147 components: - rot: -1.5707963267948966 rad - pos: -51.5,-40.5 + pos: -2.5,0.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 16530 + - uid: 24148 components: - rot: -1.5707963267948966 rad - pos: -52.5,-40.5 + pos: -5.5,0.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 16531 + - uid: 24149 components: - rot: -1.5707963267948966 rad - pos: -53.5,-40.5 + pos: -6.5,0.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 16532 + - uid: 24150 components: - rot: -1.5707963267948966 rad - pos: -54.5,-40.5 + pos: -7.5,0.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 16533 + - uid: 24151 components: - rot: -1.5707963267948966 rad - pos: -55.5,-40.5 + pos: -8.5,0.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 16538 + - uid: 24152 components: - - rot: 1.5707963267948966 rad - pos: -45.5,-11.5 + - rot: -1.5707963267948966 rad + pos: -9.5,0.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 16539 + - uid: 24153 components: - - rot: 1.5707963267948966 rad - pos: -44.5,-11.5 + - rot: -1.5707963267948966 rad + pos: -10.5,0.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 16574 + - uid: 24155 components: - - rot: 1.5707963267948966 rad - pos: -28.5,13.5 + - rot: -1.5707963267948966 rad + pos: -12.5,0.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 16575 + - uid: 24156 components: - - rot: 1.5707963267948966 rad - pos: -27.5,13.5 + - rot: -1.5707963267948966 rad + pos: -13.5,0.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 16576 + - uid: 24157 components: - - pos: -25.5,12.5 + - rot: -1.5707963267948966 rad + pos: -14.5,0.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 16577 + - uid: 24158 components: - rot: -1.5707963267948966 rad - pos: -24.5,11.5 + pos: -15.5,0.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 16578 + - uid: 24159 components: - rot: -1.5707963267948966 rad - pos: -23.5,11.5 + pos: -8.5,1.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16579 + - uid: 24160 components: - rot: -1.5707963267948966 rad - pos: -22.5,11.5 + pos: -9.5,1.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16582 + - uid: 24161 components: - - pos: -21.5,9.5 + - rot: -1.5707963267948966 rad + pos: -10.5,1.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16583 + - uid: 24162 components: - - pos: -21.5,8.5 + - rot: -1.5707963267948966 rad + pos: -11.5,1.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16584 + - uid: 24163 components: - rot: -1.5707963267948966 rad - pos: -20.5,7.5 + pos: -12.5,1.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16588 + - uid: 24164 components: - - rot: 3.141592653589793 rad - pos: -16.5,6.5 + - rot: -1.5707963267948966 rad + pos: -13.5,1.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16603 + - uid: 24165 components: - - rot: 3.141592653589793 rad - pos: 29.5,-28.5 + - rot: -1.5707963267948966 rad + pos: -14.5,1.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16604 + - uid: 24166 components: - - rot: 3.141592653589793 rad - pos: 29.5,-29.5 + - rot: -1.5707963267948966 rad + pos: -15.5,1.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16605 + - uid: 24167 components: - - rot: 3.141592653589793 rad - pos: 29.5,-30.5 + - rot: -1.5707963267948966 rad + pos: -16.5,1.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16606 + - uid: 24172 components: - rot: 3.141592653589793 rad - pos: 29.5,-31.5 + pos: -16.5,-0.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 16611 + - uid: 24173 components: - - pos: -6.5,-55.5 + - rot: 3.141592653589793 rad + pos: -17.5,0.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16612 + - uid: 24176 components: - - pos: -6.5,-56.5 + - rot: 3.141592653589793 rad + pos: -17.5,-1.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16613 + - uid: 24177 components: - - pos: -6.5,-57.5 + - rot: 3.141592653589793 rad + pos: -7.5,-5.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16614 + - uid: 24180 components: - - pos: -7.5,-59.5 + - rot: 1.5707963267948966 rad + pos: -12.5,-6.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16615 + - uid: 24181 components: - - pos: -7.5,-60.5 + - rot: 1.5707963267948966 rad + pos: -11.5,-6.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16616 + - uid: 24182 components: - - rot: -1.5707963267948966 rad - pos: -8.5,-61.5 + - rot: 1.5707963267948966 rad + pos: -10.5,-6.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16617 + - uid: 24183 components: - - rot: 3.141592653589793 rad - pos: -9.5,-62.5 + - rot: 1.5707963267948966 rad + pos: -9.5,-6.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16618 + - uid: 24184 components: - - rot: 3.141592653589793 rad - pos: -9.5,-63.5 + - rot: 1.5707963267948966 rad + pos: -8.5,-6.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16619 + - uid: 24187 components: - rot: 3.141592653589793 rad - pos: -9.5,-64.5 + pos: -11.5,-2.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 16620 + - uid: 24188 components: - rot: 3.141592653589793 rad - pos: -7.5,-62.5 + pos: -11.5,-1.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 16621 + - uid: 24189 components: - rot: 3.141592653589793 rad - pos: -7.5,-63.5 + pos: -11.5,-0.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 16622 + - uid: 24205 components: - - rot: 3.141592653589793 rad - pos: -7.5,-64.5 + - rot: -1.5707963267948966 rad + pos: -22.5,-6.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16635 + - uid: 24206 components: - - rot: 3.141592653589793 rad - pos: -7.5,-53.5 + - rot: -1.5707963267948966 rad + pos: -22.5,-4.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 16636 + - uid: 24207 components: - - rot: 3.141592653589793 rad - pos: -7.5,-54.5 + - rot: -1.5707963267948966 rad + pos: -21.5,-4.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 16637 + - uid: 24208 components: - - rot: 3.141592653589793 rad - pos: -7.5,-55.5 + - rot: -1.5707963267948966 rad + pos: -20.5,-4.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 16638 + - uid: 24209 components: - rot: 3.141592653589793 rad - pos: -7.5,-56.5 + pos: -19.5,-3.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 16644 + - uid: 24210 components: - - rot: -1.5707963267948966 rad - pos: -9.5,-62.5 + - rot: 3.141592653589793 rad + pos: -19.5,-2.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 16645 + - uid: 24211 components: - - rot: -1.5707963267948966 rad - pos: -7.5,-62.5 + - rot: 3.141592653589793 rad + pos: -20.5,-1.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16646 + - uid: 24212 components: - rot: 3.141592653589793 rad - pos: -6.5,-63.5 + pos: -20.5,-2.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16647 + - uid: 24213 components: - rot: 3.141592653589793 rad - pos: -6.5,-64.5 + pos: -20.5,-3.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16648 + - uid: 24214 components: - rot: 3.141592653589793 rad - pos: -10.5,-63.5 + pos: -20.5,-4.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16649 + - uid: 24215 components: - - rot: 3.141592653589793 rad - pos: -10.5,-64.5 + - rot: 1.5707963267948966 rad + pos: -17.5,-1.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 16650 + - uid: 24216 components: - - rot: 3.141592653589793 rad - pos: -8.5,-61.5 + - rot: 1.5707963267948966 rad + pos: -18.5,-1.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 16651 + - uid: 24217 components: - - rot: 3.141592653589793 rad - pos: -8.5,-60.5 + - rot: 1.5707963267948966 rad + pos: -20.5,-1.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 16652 + - uid: 24218 components: - - rot: 3.141592653589793 rad - pos: -8.5,-59.5 + - rot: 1.5707963267948966 rad + pos: -21.5,-1.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 16653 + - uid: 24219 components: - - rot: 3.141592653589793 rad - pos: -8.5,-58.5 + - rot: 1.5707963267948966 rad + pos: -23.5,-1.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 16812 + - uid: 24220 components: - - rot: 3.141592653589793 rad - pos: 62.5,-51.5 + - rot: 1.5707963267948966 rad + pos: -24.5,-1.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 16817 + - uid: 24221 components: - - rot: 3.141592653589793 rad - pos: 62.5,-50.5 + - rot: 1.5707963267948966 rad + pos: -25.5,-0.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16828 + - uid: 24222 components: - - rot: -1.5707963267948966 rad - pos: 51.5,-41.5 + - rot: 1.5707963267948966 rad + pos: -24.5,-0.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16834 + - uid: 24223 components: - - rot: -1.5707963267948966 rad - pos: 47.5,-41.5 + - rot: 1.5707963267948966 rad + pos: -22.5,-0.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16835 + - uid: 24224 components: - - rot: -1.5707963267948966 rad - pos: 49.5,-41.5 + - rot: 1.5707963267948966 rad + pos: -21.5,-0.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16836 + - uid: 24225 components: - - rot: -1.5707963267948966 rad - pos: 53.5,-41.5 + - rot: 1.5707963267948966 rad + pos: -19.5,-0.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16839 + - uid: 24226 components: - - pos: 50.5,-45.5 + - rot: 1.5707963267948966 rad + pos: -18.5,-0.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16842 + - uid: 24231 components: - rot: -1.5707963267948966 rad - pos: 51.5,-42.5 + pos: -26.5,-0.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16843 + - uid: 24232 components: - - rot: -1.5707963267948966 rad - pos: 52.5,-42.5 + - pos: -22.5,-0.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 16845 + - uid: 24235 components: - - rot: 3.141592653589793 rad - pos: 48.5,-45.5 + - pos: -19.5,-0.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 16849 + - uid: 24255 components: - - rot: -1.5707963267948966 rad - pos: 50.5,-42.5 + - rot: 3.141592653589793 rad + pos: -30.5,0.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16851 + - uid: 24260 components: - - rot: -1.5707963267948966 rad - pos: 49.5,-42.5 + - pos: -38.5,6.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 17050 + - uid: 24261 components: - - pos: 50.5,-42.5 + - pos: -38.5,5.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 17051 + - uid: 24262 components: - - rot: -1.5707963267948966 rad - pos: 52.5,-41.5 + - pos: -38.5,4.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 17057 + - uid: 24263 components: - - rot: -1.5707963267948966 rad - pos: 48.5,-41.5 + - pos: -38.5,3.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 17058 + - uid: 24264 components: - - pos: 50.5,-46.5 + - rot: -1.5707963267948966 rad + pos: -37.5,2.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 17059 + - uid: 24265 components: - - pos: 50.5,-44.5 + - rot: -1.5707963267948966 rad + pos: -36.5,2.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 17060 + - uid: 24266 components: - - rot: 3.141592653589793 rad - pos: 48.5,-44.5 + - rot: -1.5707963267948966 rad + pos: -35.5,2.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 17066 + - uid: 24267 components: - rot: -1.5707963267948966 rad - pos: 47.5,-42.5 + pos: -34.5,2.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 17364 + - uid: 24273 components: - rot: 3.141592653589793 rad - pos: 47.5,-50.5 + pos: -32.5,8.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 17365 + - uid: 24274 components: - rot: 3.141592653589793 rad - pos: 47.5,-49.5 + pos: -32.5,7.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 17366 + - uid: 24275 components: - rot: 3.141592653589793 rad - pos: 47.5,-48.5 + pos: -32.5,5.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 17368 + - uid: 24276 components: - rot: 3.141592653589793 rad - pos: 48.5,-49.5 + pos: -32.5,4.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 17369 + - uid: 24277 components: - rot: 3.141592653589793 rad - pos: 48.5,-48.5 + pos: -32.5,3.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 17370 + - uid: 24279 components: - - rot: 3.141592653589793 rad - pos: 48.5,-47.5 + - rot: -1.5707963267948966 rad + pos: -31.5,2.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 17394 + - uid: 24281 components: - rot: 3.141592653589793 rad - pos: 48.5,-51.5 + pos: -30.5,1.5 parent: 6747 type: Transform - - uid: 20493 + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 24282 components: - rot: 1.5707963267948966 rad - pos: -10.5,-8.5 + pos: -29.5,-0.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 22262 + - uid: 24283 components: - rot: 1.5707963267948966 rad - pos: 3.5,-13.5 + pos: -28.5,-0.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 22263 + - uid: 24284 components: - rot: 1.5707963267948966 rad - pos: 4.5,-13.5 + pos: -27.5,-0.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 22264 + - uid: 24298 components: - - rot: 1.5707963267948966 rad - pos: 5.5,-13.5 + - pos: -31.5,-11.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 22265 + - uid: 24299 components: - - rot: 1.5707963267948966 rad - pos: 4.5,-14.5 + - pos: -31.5,-10.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 22266 + - uid: 24300 components: - - rot: 1.5707963267948966 rad - pos: 5.5,-14.5 + - pos: -31.5,-9.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 22269 + - uid: 24301 components: - - rot: -1.5707963267948966 rad - pos: 24.5,6.5 + - pos: -31.5,-7.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 22270 + - uid: 24302 components: - rot: -1.5707963267948966 rad - pos: 23.5,6.5 + pos: -33.5,-6.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 22271 + - uid: 24303 components: - rot: -1.5707963267948966 rad - pos: 22.5,6.5 + pos: -34.5,-6.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 22272 + - uid: 24304 components: - rot: -1.5707963267948966 rad - pos: 21.5,6.5 + pos: -35.5,-6.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 22273 + - uid: 24305 components: - rot: -1.5707963267948966 rad - pos: 20.5,6.5 + pos: -37.5,-6.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 22274 + - uid: 24306 components: - rot: -1.5707963267948966 rad - pos: 19.5,6.5 + pos: -38.5,-6.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 22275 + - uid: 24307 components: - rot: -1.5707963267948966 rad - pos: 18.5,6.5 + pos: -39.5,-6.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 22276 + - uid: 24308 components: - - rot: -1.5707963267948966 rad - pos: 17.5,6.5 + - rot: 3.141592653589793 rad + pos: -40.5,-5.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 22277 + - uid: 24309 components: - - rot: -1.5707963267948966 rad - pos: 16.5,6.5 + - rot: 3.141592653589793 rad + pos: -40.5,-7.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 22279 + - uid: 24310 components: - - rot: 1.5707963267948966 rad - pos: 19.5,5.5 + - rot: 3.141592653589793 rad + pos: -40.5,-8.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 22280 + - uid: 24311 components: - - rot: 1.5707963267948966 rad - pos: 18.5,5.5 + - rot: 3.141592653589793 rad + pos: -40.5,-10.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 22281 + - uid: 24313 components: - - rot: 1.5707963267948966 rad - pos: 16.5,5.5 + - rot: -1.5707963267948966 rad + pos: -43.5,-11.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 22282 + - uid: 24314 components: - - rot: 1.5707963267948966 rad - pos: 17.5,5.5 + - rot: -1.5707963267948966 rad + pos: -42.5,-11.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 22297 + - uid: 24315 components: - - rot: 1.5707963267948966 rad - pos: 20.5,-15.5 + - rot: -1.5707963267948966 rad + pos: -41.5,-11.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 22301 + - uid: 24316 components: - rot: 3.141592653589793 rad - pos: 21.5,-14.5 + pos: -30.5,-1.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 22302 + - uid: 24317 components: - rot: 3.141592653589793 rad - pos: 21.5,-16.5 + pos: -30.5,-2.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 22303 + - uid: 24318 components: - rot: 3.141592653589793 rad - pos: 21.5,-17.5 + pos: -30.5,-3.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 22306 + - uid: 24326 components: - - rot: -1.5707963267948966 rad - pos: 19.5,-18.5 + - rot: 3.141592653589793 rad + pos: -30.5,-6.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 22307 + - uid: 24327 components: - - rot: -1.5707963267948966 rad - pos: 20.5,-18.5 + - rot: 3.141592653589793 rad + pos: -30.5,-7.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 22308 + - uid: 24328 components: - - rot: -1.5707963267948966 rad - pos: 21.5,-18.5 + - rot: 3.141592653589793 rad + pos: -30.5,-9.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 22313 + - uid: 24329 components: - rot: 3.141592653589793 rad - pos: 22.5,-17.5 + pos: -30.5,-10.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 22314 + - uid: 24330 components: - rot: 3.141592653589793 rad - pos: 22.5,-15.5 + pos: -30.5,-11.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 22315 + - uid: 24332 components: - rot: 3.141592653589793 rad - pos: 22.5,-14.5 + pos: -32.5,-5.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 22322 + - uid: 24333 components: - rot: 3.141592653589793 rad - pos: 18.5,-8.5 + pos: -32.5,-4.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23609 + - uid: 24334 components: - - pos: 7.5,-0.5 + - rot: 3.141592653589793 rad + pos: -32.5,-3.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23610 + - uid: 24335 components: - - pos: 7.5,-1.5 + - rot: 3.141592653589793 rad + pos: -32.5,-2.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23611 + - uid: 24336 components: - - pos: 7.5,-2.5 + - rot: 1.5707963267948966 rad + pos: -31.5,-1.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23612 + - uid: 24337 components: - - pos: 7.5,-3.5 + - rot: 1.5707963267948966 rad + pos: -30.5,-1.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23613 + - uid: 24338 components: - - pos: 7.5,-4.5 + - rot: 1.5707963267948966 rad + pos: -29.5,-1.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23614 + - uid: 24339 components: - - pos: 7.5,-5.5 + - rot: 1.5707963267948966 rad + pos: -28.5,-1.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23615 + - uid: 24340 components: - - pos: 7.5,-6.5 + - rot: 1.5707963267948966 rad + pos: -27.5,-1.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23616 + - uid: 24341 components: - - pos: 7.5,-7.5 + - rot: 1.5707963267948966 rad + pos: -26.5,-1.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23617 + - uid: 24352 components: - - pos: 7.5,0.5 + - pos: -36.5,6.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23618 + - uid: 24353 components: - - pos: 7.5,1.5 + - pos: -36.5,5.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23624 + - uid: 24354 components: - - rot: -1.5707963267948966 rad - pos: -14.5,5.5 + - pos: -36.5,4.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23625 + - uid: 24355 components: - rot: -1.5707963267948966 rad - pos: -13.5,5.5 + pos: -35.5,3.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23626 + - uid: 24356 components: - rot: -1.5707963267948966 rad - pos: -12.5,5.5 + pos: -34.5,3.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23627 + - uid: 24357 components: - rot: -1.5707963267948966 rad - pos: -11.5,5.5 + pos: -33.5,3.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23628 + - uid: 24358 components: - rot: -1.5707963267948966 rad - pos: -10.5,5.5 + pos: -32.5,3.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23629 + - uid: 24359 components: - - rot: -1.5707963267948966 rad - pos: -9.5,5.5 + - rot: 3.141592653589793 rad + pos: -31.5,2.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23630 + - uid: 24360 components: - - rot: -1.5707963267948966 rad - pos: -8.5,5.5 + - rot: 1.5707963267948966 rad + pos: -30.5,1.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23631 + - uid: 24361 components: - - rot: -1.5707963267948966 rad - pos: -7.5,5.5 + - pos: -31.5,4.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23633 + - uid: 24362 components: - - rot: -1.5707963267948966 rad - pos: -5.5,5.5 + - pos: -31.5,5.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23634 + - uid: 24363 components: - - rot: -1.5707963267948966 rad - pos: -4.5,5.5 + - pos: -31.5,7.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23635 + - uid: 24364 + components: + - pos: -31.5,8.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 24370 + components: + - pos: -32.5,-0.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 24371 + components: + - pos: -32.5,0.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 24372 components: - rot: -1.5707963267948966 rad - pos: -3.5,5.5 + pos: -31.5,-0.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 23636 + - uid: 24373 components: - rot: -1.5707963267948966 rad - pos: -2.5,5.5 + pos: -32.5,-0.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 23637 + - uid: 24374 components: - rot: -1.5707963267948966 rad - pos: -1.5,5.5 + pos: -33.5,-0.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 23638 + - uid: 24375 components: - rot: -1.5707963267948966 rad - pos: -0.5,5.5 + pos: -34.5,-0.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 23639 + - uid: 24376 components: - rot: -1.5707963267948966 rad - pos: 0.5,5.5 + pos: -35.5,-0.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 23640 + - uid: 24377 components: - rot: -1.5707963267948966 rad - pos: 1.5,5.5 + pos: -36.5,-0.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 23641 + - uid: 24378 components: - - rot: 3.141592653589793 rad - pos: 2.5,4.5 + - rot: -1.5707963267948966 rad + pos: -33.5,-1.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23642 + - uid: 24379 components: - - rot: 3.141592653589793 rad - pos: 2.5,3.5 + - rot: -1.5707963267948966 rad + pos: -34.5,-1.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23643 + - uid: 24380 components: - - rot: 1.5707963267948966 rad - pos: 3.5,2.5 + - rot: -1.5707963267948966 rad + pos: -35.5,-1.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23644 + - uid: 24389 components: - rot: 1.5707963267948966 rad - pos: 4.5,2.5 + pos: -38.5,-0.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 23645 + - uid: 24390 components: - rot: 1.5707963267948966 rad - pos: 5.5,2.5 + pos: -39.5,-0.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 23646 + - uid: 24391 components: - - rot: 1.5707963267948966 rad - pos: 6.5,2.5 + - pos: -40.5,0.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 23648 + - uid: 24392 components: - - rot: 1.5707963267948966 rad - pos: -7.5,-8.5 + - rot: -1.5707963267948966 rad + pos: -40.5,-1.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23649 + - uid: 24393 components: - - rot: 1.5707963267948966 rad - pos: -9.5,-8.5 + - rot: -1.5707963267948966 rad + pos: -39.5,-1.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23658 + - uid: 24394 components: - - rot: 1.5707963267948966 rad - pos: -11.5,-8.5 + - rot: -1.5707963267948966 rad + pos: -38.5,-1.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23665 + - uid: 24395 components: - - rot: 3.141592653589793 rad - pos: 3.5,-4.5 + - rot: -1.5707963267948966 rad + pos: -37.5,-1.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23666 + - uid: 24403 components: - - rot: 3.141592653589793 rad - pos: 3.5,-3.5 + - rot: -1.5707963267948966 rad + pos: -47.5,-1.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23667 + - uid: 24404 components: - - rot: 3.141592653589793 rad - pos: 3.5,-2.5 + - rot: -1.5707963267948966 rad + pos: -45.5,-1.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23668 + - uid: 24405 components: - - rot: 3.141592653589793 rad - pos: 4.5,-3.5 + - rot: -1.5707963267948966 rad + pos: -43.5,-1.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23669 + - uid: 24421 components: - - rot: 3.141592653589793 rad - pos: 4.5,-2.5 + - rot: 1.5707963267948966 rad + pos: -43.5,7.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23670 + - uid: 24422 components: - - rot: 3.141592653589793 rad - pos: 4.5,-1.5 + - pos: -44.5,6.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23674 + - uid: 24423 components: - - rot: 3.141592653589793 rad - pos: 4.5,-4.5 + - pos: -44.5,4.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23687 + - uid: 24424 components: - - rot: 1.5707963267948966 rad - pos: -0.5,-1.5 + - pos: -44.5,3.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23688 + - uid: 24425 components: - - rot: 1.5707963267948966 rad - pos: 0.5,-1.5 + - pos: -44.5,2.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23689 + - uid: 24426 components: - - rot: 1.5707963267948966 rad - pos: 1.5,-1.5 + - pos: -44.5,1.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23690 + - uid: 24427 components: - - rot: 1.5707963267948966 rad - pos: 2.5,-1.5 + - rot: -1.5707963267948966 rad + pos: -43.5,0.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23691 + - uid: 24428 components: - - rot: 1.5707963267948966 rad - pos: 3.5,-0.5 + - rot: 3.141592653589793 rad + pos: -42.5,-0.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23692 + - uid: 24438 components: - - rot: 1.5707963267948966 rad - pos: 2.5,-0.5 + - rot: -1.5707963267948966 rad + pos: -43.5,9.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 23693 + - uid: 24439 components: - - rot: 1.5707963267948966 rad - pos: 1.5,-0.5 + - rot: -1.5707963267948966 rad + pos: -44.5,9.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 23694 + - uid: 24440 components: - - rot: 1.5707963267948966 rad - pos: 0.5,-0.5 + - rot: 3.141592653589793 rad + pos: -45.5,8.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 23695 + - uid: 24441 components: - - pos: -0.5,-1.5 + - rot: 3.141592653589793 rad + pos: -46.5,6.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 23696 + - uid: 24442 components: - - pos: -0.5,-2.5 + - rot: 3.141592653589793 rad + pos: -47.5,3.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 23697 + - uid: 24443 components: - - pos: -0.5,-3.5 + - rot: 3.141592653589793 rad + pos: -47.5,2.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 23698 + - uid: 24444 components: - - pos: -0.5,-4.5 + - rot: 3.141592653589793 rad + pos: -47.5,0.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 23699 + - uid: 24445 components: - - pos: -1.5,-4.5 + - rot: 3.141592653589793 rad + pos: -45.5,0.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 23700 + - uid: 24446 components: - - pos: -1.5,-3.5 + - rot: 3.141592653589793 rad + pos: -43.5,0.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 23701 + - uid: 24447 components: - - pos: -1.5,-2.5 + - rot: 1.5707963267948966 rad + pos: -46.5,1.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 23702 + - uid: 24448 components: - - rot: -1.5707963267948966 rad - pos: -1.5,-0.5 + - rot: 1.5707963267948966 rad + pos: -44.5,1.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 23703 + - uid: 24449 components: - - rot: 3.141592653589793 rad - pos: -1.5,-0.5 + - rot: 1.5707963267948966 rad + pos: -42.5,1.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 23706 + - uid: 24462 components: - - pos: -0.5,0.5 + - rot: 3.141592653589793 rad + pos: -42.5,-8.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 23707 + - uid: 24463 components: - - pos: -53.5,-2.5 + - rot: 3.141592653589793 rad + pos: -42.5,-7.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 23711 + - uid: 24464 components: - - rot: 1.5707963267948966 rad - pos: 11.5,-72.5 + - rot: 3.141592653589793 rad + pos: -42.5,-6.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 23712 + - uid: 24465 components: - rot: 1.5707963267948966 rad - pos: 12.5,-72.5 + pos: -41.5,-5.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 23713 + - uid: 24466 components: - rot: 1.5707963267948966 rad - pos: 13.5,-72.5 + pos: -40.5,-5.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 23714 + - uid: 24467 components: - - rot: 1.5707963267948966 rad - pos: 14.5,-72.5 + - pos: -41.5,-4.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 23715 + - uid: 24468 components: - - rot: 1.5707963267948966 rad - pos: 15.5,-72.5 + - rot: -1.5707963267948966 rad + pos: -40.5,-3.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 23716 + - uid: 24469 components: - - rot: 1.5707963267948966 rad - pos: 16.5,-72.5 + - rot: 3.141592653589793 rad + pos: -39.5,-4.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 23717 + - uid: 24470 components: - - rot: 1.5707963267948966 rad - pos: -6.5,-8.5 + - rot: 3.141592653589793 rad + pos: -6.5,3.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 23719 + - uid: 24471 components: - - rot: 1.5707963267948966 rad - pos: -5.5,-8.5 + - rot: 3.141592653589793 rad + pos: -6.5,4.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 23723 + - uid: 24472 components: - rot: 1.5707963267948966 rad - pos: -4.5,-8.5 + pos: -36.5,-4.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 23724 + - uid: 24473 components: - rot: 1.5707963267948966 rad - pos: -3.5,-8.5 + pos: -34.5,-4.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 23725 + - uid: 24474 components: - rot: 1.5707963267948966 rad - pos: -2.5,-8.5 + pos: -33.5,-4.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 23726 + - uid: 24475 components: - rot: 1.5707963267948966 rad - pos: -1.5,-8.5 + pos: -32.5,-4.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 23727 + - uid: 24476 components: - rot: 1.5707963267948966 rad - pos: -0.5,-8.5 + pos: -31.5,-4.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 23728 + - uid: 24477 components: - rot: 1.5707963267948966 rad - pos: 0.5,-8.5 + pos: -38.5,-5.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 23729 + - uid: 24486 components: - rot: 1.5707963267948966 rad - pos: 1.5,-8.5 + pos: -45.5,-33.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23730 + - uid: 24487 components: - rot: 1.5707963267948966 rad - pos: 2.5,-8.5 + pos: -44.5,-33.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23731 - components: - - rot: 1.5707963267948966 rad - pos: 1.5,-9.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 23732 + - uid: 24488 components: - rot: 1.5707963267948966 rad - pos: 0.5,-9.5 + pos: -43.5,-33.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23733 + - uid: 24489 components: - - rot: 1.5707963267948966 rad - pos: -0.5,-9.5 + - pos: -42.5,-34.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23734 + - uid: 24490 components: - - pos: -1.5,-10.5 + - pos: -42.5,-35.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23735 + - uid: 24491 components: - - rot: -1.5707963267948966 rad - pos: -2.5,-11.5 + - pos: -42.5,-36.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23736 + - uid: 24492 components: - - rot: -1.5707963267948966 rad - pos: -3.5,-11.5 + - pos: -42.5,-37.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23737 + - uid: 24493 components: - - rot: -1.5707963267948966 rad - pos: -4.5,-11.5 + - pos: -42.5,-38.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23738 + - uid: 24494 components: - - rot: -1.5707963267948966 rad - pos: -5.5,-11.5 + - pos: -42.5,-39.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23739 + - uid: 24495 components: - rot: -1.5707963267948966 rad - pos: -6.5,-11.5 + pos: -41.5,-40.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23740 + - uid: 24496 components: - rot: -1.5707963267948966 rad - pos: -7.5,-11.5 + pos: -40.5,-40.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23741 + - uid: 24497 components: - rot: -1.5707963267948966 rad - pos: -8.5,-11.5 + pos: -39.5,-40.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23742 + - uid: 24498 components: - rot: -1.5707963267948966 rad - pos: -9.5,-11.5 + pos: -38.5,-40.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23743 + - uid: 24499 components: - rot: -1.5707963267948966 rad - pos: -10.5,-11.5 + pos: -37.5,-40.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23750 + - uid: 24500 components: - rot: -1.5707963267948966 rad - pos: -11.5,-11.5 + pos: -36.5,-40.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23893 + - uid: 24501 components: - - rot: 1.5707963267948966 rad - pos: -17.5,-8.5 + - rot: 3.141592653589793 rad + pos: -35.5,-41.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23909 + - uid: 24502 components: - rot: 1.5707963267948966 rad - pos: -16.5,-8.5 + pos: -34.5,-42.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23945 + - uid: 24503 components: - rot: 1.5707963267948966 rad - pos: -15.5,-8.5 + pos: -33.5,-42.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23948 + - uid: 24504 components: - rot: 1.5707963267948966 rad - pos: -14.5,-8.5 + pos: -32.5,-42.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23949 + - uid: 24505 components: - rot: 1.5707963267948966 rad - pos: -13.5,-8.5 + pos: -31.5,-42.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24000 + - uid: 24506 components: - rot: 1.5707963267948966 rad - pos: -13.5,-11.5 + pos: -30.5,-42.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24001 + - uid: 24507 components: - rot: 1.5707963267948966 rad - pos: -14.5,-11.5 + pos: -29.5,-42.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24002 + - uid: 24508 components: - rot: 1.5707963267948966 rad - pos: -15.5,-11.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 24005 - components: - - rot: -1.5707963267948966 rad - pos: 21.5,22.5 + pos: -28.5,-42.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24006 + - uid: 24509 components: - - rot: -1.5707963267948966 rad - pos: 20.5,22.5 + - rot: 1.5707963267948966 rad + pos: -27.5,-42.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24007 + - uid: 24510 components: - - rot: -1.5707963267948966 rad - pos: 19.5,22.5 + - rot: 1.5707963267948966 rad + pos: -26.5,-42.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24008 + - uid: 24511 components: - - rot: -1.5707963267948966 rad - pos: 18.5,22.5 + - rot: 1.5707963267948966 rad + pos: -25.5,-42.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24009 + - uid: 24512 components: - - rot: -1.5707963267948966 rad - pos: 17.5,22.5 + - rot: 1.5707963267948966 rad + pos: -24.5,-42.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24010 + - uid: 24513 components: - - rot: -1.5707963267948966 rad - pos: 16.5,22.5 + - rot: 1.5707963267948966 rad + pos: -23.5,-42.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24011 + - uid: 24514 components: - - rot: -1.5707963267948966 rad - pos: 15.5,22.5 + - pos: -22.5,-41.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24012 + - uid: 24515 components: - - rot: -1.5707963267948966 rad - pos: 14.5,22.5 + - pos: -22.5,-40.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24013 + - uid: 24517 components: - rot: -1.5707963267948966 rad - pos: 13.5,22.5 + pos: -21.5,-39.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24014 + - uid: 24518 components: - - rot: -1.5707963267948966 rad - pos: 12.5,22.5 + - rot: 3.141592653589793 rad + pos: -20.5,-40.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24015 + - uid: 24519 components: - - rot: -1.5707963267948966 rad - pos: 11.5,22.5 + - rot: 3.141592653589793 rad + pos: -20.5,-41.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24019 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,21.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 24020 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,21.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 24021 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,21.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 24022 + - uid: 24520 components: - rot: 1.5707963267948966 rad - pos: 15.5,21.5 + pos: -19.5,-39.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24023 + - uid: 24521 components: - rot: 1.5707963267948966 rad - pos: 16.5,21.5 + pos: -18.5,-39.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24024 + - uid: 24522 components: - rot: 1.5707963267948966 rad - pos: 18.5,20.5 + pos: -17.5,-39.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24025 + - uid: 24523 components: - rot: 1.5707963267948966 rad - pos: 19.5,20.5 + pos: -16.5,-39.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24026 + - uid: 24524 components: - rot: 1.5707963267948966 rad - pos: 20.5,20.5 + pos: -15.5,-39.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24027 + - uid: 24525 components: - - rot: 1.5707963267948966 rad - pos: 21.5,20.5 + - pos: -14.5,-38.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24028 + - uid: 24526 components: - - rot: 1.5707963267948966 rad - pos: 22.5,20.5 + - rot: -1.5707963267948966 rad + pos: -13.5,-37.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24034 + - uid: 24527 components: - - rot: 3.141592653589793 rad - pos: 35.5,-89.5 + - rot: -1.5707963267948966 rad + pos: -12.5,-37.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24035 + - uid: 24528 components: - - rot: 3.141592653589793 rad - pos: 35.5,-90.5 + - rot: -1.5707963267948966 rad + pos: -11.5,-37.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24036 + - uid: 24530 components: - - rot: 3.141592653589793 rad - pos: 35.5,-91.5 + - rot: -1.5707963267948966 rad + pos: -9.5,-37.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24037 + - uid: 24531 components: - - rot: 3.141592653589793 rad - pos: 35.5,-92.5 + - rot: -1.5707963267948966 rad + pos: -8.5,-37.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24038 + - uid: 24532 components: - - rot: 1.5707963267948966 rad - pos: 34.5,-93.5 + - rot: -1.5707963267948966 rad + pos: -7.5,-37.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24039 + - uid: 24533 components: - - rot: 1.5707963267948966 rad - pos: 33.5,-93.5 + - rot: -1.5707963267948966 rad + pos: -6.5,-37.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24040 + - uid: 24534 components: - - rot: 1.5707963267948966 rad - pos: 32.5,-93.5 + - rot: -1.5707963267948966 rad + pos: -5.5,-37.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24041 + - uid: 24535 components: - - rot: 1.5707963267948966 rad - pos: 31.5,-93.5 + - rot: -1.5707963267948966 rad + pos: -4.5,-37.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24042 + - uid: 24536 components: - - rot: 1.5707963267948966 rad - pos: 30.5,-93.5 + - rot: -1.5707963267948966 rad + pos: -3.5,-37.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24043 + - uid: 24537 components: - - rot: 1.5707963267948966 rad - pos: 29.5,-93.5 + - rot: -1.5707963267948966 rad + pos: -2.5,-37.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24044 + - uid: 24538 components: - - rot: 1.5707963267948966 rad - pos: 28.5,-93.5 + - rot: -1.5707963267948966 rad + pos: -1.5,-37.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24045 + - uid: 24541 components: - - rot: 1.5707963267948966 rad - pos: 27.5,-93.5 + - pos: -19.5,-50.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24046 + - uid: 24542 components: - - pos: 26.5,-94.5 + - pos: -19.5,-51.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24047 + - uid: 24543 components: - - pos: 26.5,-92.5 + - pos: -19.5,-52.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24048 + - uid: 24545 components: - - pos: 26.5,-91.5 + - pos: -45.5,-31.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24054 + - uid: 24546 components: - - rot: 3.141592653589793 rad - pos: 34.5,-88.5 + - pos: -45.5,-30.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24055 + - uid: 24547 components: - - rot: 3.141592653589793 rad - pos: 34.5,-89.5 + - pos: -45.5,-29.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24056 + - uid: 24548 components: - - rot: 3.141592653589793 rad - pos: 34.5,-90.5 + - pos: -45.5,-28.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24057 + - uid: 24549 components: - - rot: 3.141592653589793 rad - pos: 34.5,-91.5 + - pos: -45.5,-27.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24058 + - uid: 24550 components: - - rot: 3.141592653589793 rad - pos: 34.5,-93.5 + - pos: -45.5,-26.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24059 + - uid: 24551 components: - - rot: 1.5707963267948966 rad - pos: 33.5,-92.5 + - pos: -45.5,-25.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24060 + - uid: 24552 components: - - rot: 1.5707963267948966 rad - pos: 32.5,-92.5 + - pos: -45.5,-24.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24061 + - uid: 24553 components: - - rot: 1.5707963267948966 rad - pos: 31.5,-92.5 + - pos: -45.5,-23.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24062 + - uid: 24554 components: - - rot: 1.5707963267948966 rad - pos: 30.5,-92.5 + - pos: -45.5,-22.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24063 + - uid: 24555 components: - - rot: 1.5707963267948966 rad - pos: 29.5,-92.5 + - pos: -45.5,-21.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24064 + - uid: 24556 components: - - rot: 1.5707963267948966 rad - pos: 28.5,-92.5 + - pos: -45.5,-20.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24065 + - uid: 24557 components: - - pos: 27.5,-93.5 + - pos: -45.5,-19.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24066 + - uid: 24558 components: - - rot: 1.5707963267948966 rad - pos: -16.5,-11.5 + - pos: -45.5,-18.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24069 + - uid: 24559 components: - - rot: 1.5707963267948966 rad - pos: -17.5,-11.5 + - pos: -45.5,-17.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24090 + - uid: 24560 components: - - rot: -1.5707963267948966 rad - pos: -19.5,-11.5 + - pos: -45.5,-16.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24091 + - uid: 24561 components: - - rot: -1.5707963267948966 rad - pos: -19.5,-8.5 + - pos: -45.5,-15.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24092 + - uid: 24562 components: - - rot: 3.141592653589793 rad - pos: -21.5,-9.5 + - pos: -45.5,-14.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24093 + - uid: 24563 components: - - rot: 1.5707963267948966 rad - pos: -21.5,-11.5 + - pos: -45.5,-13.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24094 + - uid: 24564 components: - - rot: 1.5707963267948966 rad - pos: -22.5,-11.5 + - pos: -45.5,-12.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24095 + - uid: 24586 components: - - rot: 1.5707963267948966 rad - pos: -23.5,-11.5 + - rot: 3.141592653589793 rad + pos: -45.5,-11.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24096 + - uid: 24587 components: - - rot: 1.5707963267948966 rad - pos: -24.5,-11.5 + - rot: 3.141592653589793 rad + pos: -45.5,-10.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24097 + - uid: 24588 components: - - rot: 1.5707963267948966 rad - pos: -24.5,-10.5 + - rot: 3.141592653589793 rad + pos: -45.5,-9.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24098 + - uid: 24590 components: - - rot: 1.5707963267948966 rad - pos: -23.5,-10.5 + - rot: 3.141592653589793 rad + pos: -45.5,-7.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24099 + - uid: 24591 components: - - rot: 1.5707963267948966 rad - pos: -22.5,-10.5 + - rot: 3.141592653589793 rad + pos: -45.5,-6.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24111 + - uid: 24592 components: - - rot: 1.5707963267948966 rad - pos: -5.5,1.5 + - rot: 3.141592653589793 rad + pos: -45.5,-5.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24112 + - uid: 24593 components: - - rot: 1.5707963267948966 rad - pos: -4.5,1.5 + - rot: 3.141592653589793 rad + pos: -45.5,-4.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24113 + - uid: 24594 components: - rot: 1.5707963267948966 rad - pos: -3.5,1.5 + pos: -46.5,-3.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24114 + - uid: 24595 components: - rot: 1.5707963267948966 rad - pos: -2.5,1.5 + pos: -47.5,-3.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24115 + - uid: 24596 components: - rot: 1.5707963267948966 rad - pos: -1.5,1.5 + pos: -48.5,-3.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24122 + - uid: 24597 components: - - rot: 3.141592653589793 rad - pos: -7.5,-4.5 + - rot: 1.5707963267948966 rad + pos: -49.5,-3.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24123 + - uid: 24598 components: - - rot: 3.141592653589793 rad - pos: -7.5,-3.5 + - rot: 1.5707963267948966 rad + pos: -50.5,-3.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24124 + - uid: 24599 components: - - rot: 3.141592653589793 rad - pos: -5.5,-5.5 + - rot: 1.5707963267948966 rad + pos: -51.5,-3.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24125 + - uid: 24600 components: - - rot: 3.141592653589793 rad - pos: -5.5,-4.5 + - rot: 1.5707963267948966 rad + pos: -52.5,-3.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24126 + - uid: 24601 components: - - rot: 3.141592653589793 rad - pos: -5.5,-3.5 + - pos: -53.5,-1.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24127 + - uid: 24602 components: - - rot: 1.5707963267948966 rad - pos: -6.5,-2.5 + - pos: -53.5,-0.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24128 + - uid: 24603 components: - - pos: -7.5,-1.5 + - pos: -63.5,8.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24129 + - uid: 24604 components: - - pos: -7.5,-0.5 + - pos: -54.5,1.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24130 + - uid: 24605 components: - - pos: -7.5,0.5 + - pos: -54.5,2.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24139 + - uid: 24606 components: - - rot: 1.5707963267948966 rad - pos: -5.5,-5.5 + - rot: -1.5707963267948966 rad + pos: -55.5,3.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24140 + - uid: 24607 components: - - pos: -4.5,-4.5 + - rot: -1.5707963267948966 rad + pos: -56.5,3.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24141 + - uid: 24608 components: - - pos: -4.5,-3.5 + - rot: -1.5707963267948966 rad + pos: -57.5,3.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24142 + - uid: 24609 components: - - pos: -4.5,-1.5 + - rot: -1.5707963267948966 rad + pos: -58.5,3.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24143 + - uid: 24610 components: - - pos: -4.5,-0.5 + - rot: -1.5707963267948966 rad + pos: -59.5,3.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24145 + - uid: 24611 components: - - pos: -4.5,1.5 + - rot: 3.141592653589793 rad + pos: -60.5,4.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24146 + - uid: 24612 components: - - rot: -1.5707963267948966 rad - pos: -3.5,0.5 + - rot: 3.141592653589793 rad + pos: -60.5,5.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24147 + - uid: 24613 components: - - rot: -1.5707963267948966 rad - pos: -2.5,0.5 + - rot: 1.5707963267948966 rad + pos: -61.5,3.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24148 + - uid: 24614 components: - - rot: -1.5707963267948966 rad - pos: -5.5,0.5 + - rot: 1.5707963267948966 rad + pos: -62.5,3.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24149 + - uid: 24615 components: - - rot: -1.5707963267948966 rad - pos: -6.5,0.5 + - pos: -63.5,4.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24150 + - uid: 24616 components: - - rot: -1.5707963267948966 rad - pos: -7.5,0.5 + - pos: -63.5,5.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24151 + - uid: 24617 components: - - rot: -1.5707963267948966 rad - pos: -8.5,0.5 + - pos: -63.5,9.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24152 + - uid: 24618 components: - - rot: -1.5707963267948966 rad - pos: -9.5,0.5 + - pos: -63.5,10.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24153 + - uid: 24619 components: - - rot: -1.5707963267948966 rad - pos: -10.5,0.5 + - pos: -63.5,11.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24155 + - uid: 24620 components: - - rot: -1.5707963267948966 rad - pos: -12.5,0.5 + - pos: -63.5,-4.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24156 + - uid: 24621 components: - rot: -1.5707963267948966 rad - pos: -13.5,0.5 + pos: -64.5,6.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24157 + - uid: 24622 components: - rot: -1.5707963267948966 rad - pos: -14.5,0.5 + pos: -65.5,6.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24158 + - uid: 24624 components: - - rot: -1.5707963267948966 rad - pos: -15.5,0.5 + - rot: 1.5707963267948966 rad + pos: -64.5,3.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24159 + - uid: 24625 components: - - rot: -1.5707963267948966 rad - pos: -8.5,1.5 + - rot: 1.5707963267948966 rad + pos: -65.5,3.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24160 + - uid: 24626 components: - - rot: -1.5707963267948966 rad - pos: -9.5,1.5 + - rot: 1.5707963267948966 rad + pos: -66.5,3.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24161 + - uid: 24627 components: - - rot: -1.5707963267948966 rad - pos: -10.5,1.5 + - rot: 1.5707963267948966 rad + pos: -67.5,3.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24162 + - uid: 24628 components: - - rot: -1.5707963267948966 rad - pos: -11.5,1.5 + - pos: -68.5,2.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24163 + - uid: 24629 components: - - rot: -1.5707963267948966 rad - pos: -12.5,1.5 + - pos: -68.5,1.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24164 + - uid: 24630 components: - rot: -1.5707963267948966 rad - pos: -13.5,1.5 + pos: -69.5,3.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24165 + - uid: 24631 components: - rot: -1.5707963267948966 rad - pos: -14.5,1.5 + pos: -70.5,3.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24166 + - uid: 24632 components: - - rot: -1.5707963267948966 rad - pos: -15.5,1.5 + - rot: 3.141592653589793 rad + pos: -71.5,4.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24167 + - uid: 24633 components: - - rot: -1.5707963267948966 rad - pos: -16.5,1.5 + - rot: 3.141592653589793 rad + pos: -63.5,2.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24172 + - uid: 24634 components: - rot: 3.141592653589793 rad - pos: -16.5,-0.5 + pos: -63.5,1.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24173 + - uid: 24635 components: - rot: 3.141592653589793 rad - pos: -17.5,0.5 + pos: -63.5,0.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24176 + - uid: 24636 components: - rot: 3.141592653589793 rad - pos: -17.5,-1.5 + pos: -63.5,-0.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24177 + - uid: 24637 components: - rot: 3.141592653589793 rad - pos: -7.5,-5.5 + pos: -63.5,-1.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24180 + - uid: 24638 components: - - rot: 1.5707963267948966 rad - pos: -12.5,-6.5 + - rot: 3.141592653589793 rad + pos: -63.5,-2.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24181 + - uid: 24639 components: - rot: 1.5707963267948966 rad - pos: -11.5,-6.5 + pos: -64.5,-3.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24182 + - uid: 24640 components: - rot: 1.5707963267948966 rad - pos: -10.5,-6.5 + pos: -65.5,-3.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24183 + - uid: 24641 components: - rot: 1.5707963267948966 rad - pos: -9.5,-6.5 + pos: -66.5,-3.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24184 + - uid: 24642 components: - - rot: 1.5707963267948966 rad - pos: -8.5,-6.5 + - pos: -63.5,-5.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24187 + - uid: 24644 components: - - rot: 3.141592653589793 rad - pos: -11.5,-2.5 + - pos: -46.5,-10.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24188 + - uid: 24645 components: - - rot: 3.141592653589793 rad - pos: -11.5,-1.5 + - pos: -46.5,-9.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24189 + - uid: 24646 components: - - rot: 3.141592653589793 rad - pos: -11.5,-0.5 + - pos: -46.5,-8.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24205 + - uid: 24647 components: - - rot: -1.5707963267948966 rad - pos: -22.5,-6.5 + - pos: -46.5,-7.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24206 + - uid: 24648 components: - - rot: -1.5707963267948966 rad - pos: -22.5,-4.5 + - pos: -46.5,-6.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24207 + - uid: 24649 components: - - rot: -1.5707963267948966 rad - pos: -21.5,-4.5 + - pos: -46.5,-5.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24208 + - uid: 24650 components: - rot: -1.5707963267948966 rad - pos: -20.5,-4.5 + pos: -47.5,-4.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24209 + - uid: 24651 components: - - rot: 3.141592653589793 rad - pos: -19.5,-3.5 + - rot: -1.5707963267948966 rad + pos: -48.5,-4.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24210 + - uid: 24652 components: - - rot: 3.141592653589793 rad - pos: -19.5,-2.5 + - rot: -1.5707963267948966 rad + pos: -49.5,-4.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24211 + - uid: 24653 components: - - rot: 3.141592653589793 rad - pos: -20.5,-1.5 + - rot: -1.5707963267948966 rad + pos: -50.5,-4.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24212 + - uid: 24654 components: - - rot: 3.141592653589793 rad - pos: -20.5,-2.5 + - rot: -1.5707963267948966 rad + pos: -51.5,-4.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24213 + - uid: 24655 components: - - rot: 3.141592653589793 rad - pos: -20.5,-3.5 + - rot: -1.5707963267948966 rad + pos: -52.5,-4.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24214 + - uid: 24656 components: - - rot: 3.141592653589793 rad - pos: -20.5,-4.5 + - rot: -1.5707963267948966 rad + pos: -53.5,-4.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24215 + - uid: 24657 components: - - rot: 1.5707963267948966 rad - pos: -17.5,-1.5 + - rot: 3.141592653589793 rad + pos: -54.5,-3.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24216 + - uid: 24658 components: - - rot: 1.5707963267948966 rad - pos: -18.5,-1.5 + - rot: 3.141592653589793 rad + pos: -54.5,-2.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24217 + - uid: 24659 components: - - rot: 1.5707963267948966 rad - pos: -20.5,-1.5 + - rot: 3.141592653589793 rad + pos: -54.5,-1.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24218 + - uid: 24660 components: - - rot: 1.5707963267948966 rad - pos: -21.5,-1.5 + - rot: 3.141592653589793 rad + pos: -55.5,0.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24219 + - uid: 24661 components: - - rot: 1.5707963267948966 rad - pos: -23.5,-1.5 + - rot: 3.141592653589793 rad + pos: -55.5,1.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24220 + - uid: 24662 components: - rot: 1.5707963267948966 rad - pos: -24.5,-1.5 + pos: -56.5,2.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24221 + - uid: 24663 components: - rot: 1.5707963267948966 rad - pos: -25.5,-0.5 + pos: -57.5,2.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24222 + - uid: 24664 components: - rot: 1.5707963267948966 rad - pos: -24.5,-0.5 + pos: -58.5,2.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24223 + - uid: 24665 components: - rot: 1.5707963267948966 rad - pos: -22.5,-0.5 + pos: -59.5,2.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24224 + - uid: 24666 components: - - rot: 1.5707963267948966 rad - pos: -21.5,-0.5 + - pos: -60.5,1.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24225 + - uid: 24667 components: - - rot: 1.5707963267948966 rad - pos: -19.5,-0.5 + - pos: -60.5,0.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24226 + - uid: 24668 components: - - rot: 1.5707963267948966 rad - pos: -18.5,-0.5 + - rot: -1.5707963267948966 rad + pos: -61.5,2.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24230 + - uid: 24669 components: - - pos: -25.5,0.5 + - rot: -1.5707963267948966 rad + pos: -62.5,2.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24231 + - uid: 24670 components: - - pos: -25.5,-0.5 + - rot: -1.5707963267948966 rad + pos: -63.5,2.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24232 + - uid: 24671 components: - - pos: -22.5,-0.5 + - rot: 3.141592653589793 rad + pos: -64.5,3.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24233 + - uid: 24672 components: - - pos: -22.5,0.5 + - rot: 3.141592653589793 rad + pos: -64.5,4.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24234 + - uid: 24673 components: - - pos: -19.5,0.5 + - rot: 3.141592653589793 rad + pos: -64.5,6.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24235 + - uid: 24674 components: - - pos: -19.5,-0.5 + - rot: 3.141592653589793 rad + pos: -64.5,7.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24239 + - uid: 24675 components: - - pos: -26.5,0.5 + - rot: 3.141592653589793 rad + pos: -64.5,8.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24240 + - uid: 24676 components: - - pos: -23.5,0.5 + - rot: 3.141592653589793 rad + pos: -64.5,9.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24241 + - uid: 24677 components: - - pos: -20.5,0.5 + - rot: 3.141592653589793 rad + pos: -64.5,10.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24255 + - uid: 24678 components: - rot: 3.141592653589793 rad - pos: -30.5,0.5 + pos: -64.5,11.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24260 + - uid: 24679 components: - - pos: -38.5,6.5 + - rot: 1.5707963267948966 rad + pos: -65.5,5.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24261 + - uid: 24680 components: - - pos: -38.5,5.5 + - rot: 1.5707963267948966 rad + pos: -65.5,2.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24262 + - uid: 24681 components: - - pos: -38.5,4.5 + - rot: 1.5707963267948966 rad + pos: -66.5,2.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24263 + - uid: 24683 components: - - pos: -38.5,3.5 + - rot: 1.5707963267948966 rad + pos: -68.5,2.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24264 + - uid: 24684 components: - - rot: -1.5707963267948966 rad - pos: -37.5,2.5 + - rot: 1.5707963267948966 rad + pos: -69.5,2.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24265 + - uid: 24685 components: - - rot: -1.5707963267948966 rad - pos: -36.5,2.5 + - rot: 1.5707963267948966 rad + pos: -70.5,2.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24266 + - uid: 24686 components: - - rot: -1.5707963267948966 rad - pos: -35.5,2.5 + - pos: -64.5,1.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24267 + - uid: 24687 components: - - rot: -1.5707963267948966 rad - pos: -34.5,2.5 + - pos: -64.5,0.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24273 + - uid: 24688 components: - - rot: 3.141592653589793 rad - pos: -32.5,8.5 + - pos: -64.5,-0.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24274 + - uid: 24689 components: - - rot: 3.141592653589793 rad - pos: -32.5,7.5 + - pos: -64.5,-1.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24275 + - uid: 24690 components: - - rot: 3.141592653589793 rad - pos: -32.5,5.5 + - pos: -64.5,-3.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24276 + - uid: 24691 components: - - rot: 3.141592653589793 rad - pos: -32.5,4.5 + - pos: -64.5,-4.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24277 + - uid: 24692 components: - - rot: 3.141592653589793 rad - pos: -32.5,3.5 + - pos: -64.5,-5.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24279 + - uid: 24693 components: - rot: -1.5707963267948966 rad - pos: -31.5,2.5 + pos: -65.5,-2.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24281 + - uid: 24695 components: - - rot: 3.141592653589793 rad - pos: -30.5,1.5 + - pos: -71.5,1.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24282 + - uid: 24696 components: - - rot: 1.5707963267948966 rad - pos: -29.5,-0.5 + - pos: -67.5,1.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24283 + - uid: 24811 components: - - rot: 1.5707963267948966 rad - pos: -28.5,-0.5 + - pos: -38.5,-28.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24284 + - uid: 24812 components: - - rot: 1.5707963267948966 rad - pos: -27.5,-0.5 + - pos: -38.5,-29.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24298 + - uid: 24813 components: - - pos: -31.5,-11.5 + - pos: -38.5,-30.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24299 + - uid: 24814 components: - - pos: -31.5,-10.5 + - pos: -38.5,-31.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24300 + - uid: 24815 components: - - pos: -31.5,-9.5 + - pos: -38.5,-32.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24301 + - uid: 24816 components: - - pos: -31.5,-7.5 + - pos: -38.5,-33.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24302 + - uid: 24817 components: - - rot: -1.5707963267948966 rad - pos: -33.5,-6.5 + - pos: -42.5,-32.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24303 + - uid: 24818 components: - - rot: -1.5707963267948966 rad - pos: -34.5,-6.5 + - pos: -42.5,-31.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24304 + - uid: 24819 components: - - rot: -1.5707963267948966 rad - pos: -35.5,-6.5 + - pos: -42.5,-30.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24305 + - uid: 24820 components: - - rot: -1.5707963267948966 rad - pos: -37.5,-6.5 + - pos: -42.5,-28.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24306 + - uid: 24821 components: - - rot: -1.5707963267948966 rad - pos: -38.5,-6.5 + - pos: -40.5,-26.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24307 + - uid: 24822 components: - - rot: -1.5707963267948966 rad - pos: -39.5,-6.5 + - pos: -40.5,-25.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24308 + - uid: 24830 components: - - rot: 3.141592653589793 rad - pos: -40.5,-5.5 + - pos: -36.5,-18.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24309 + - uid: 24831 components: - - rot: 3.141592653589793 rad - pos: -40.5,-7.5 + - pos: -36.5,-19.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24310 + - uid: 24832 components: - - rot: 3.141592653589793 rad - pos: -40.5,-8.5 + - pos: -36.5,-20.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24311 + - uid: 24833 components: - - rot: 3.141592653589793 rad - pos: -40.5,-10.5 + - pos: -36.5,-21.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24313 + - uid: 24834 components: - rot: -1.5707963267948966 rad - pos: -43.5,-11.5 + pos: -37.5,-23.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24314 + - uid: 24835 components: - rot: -1.5707963267948966 rad - pos: -42.5,-11.5 + pos: -39.5,-24.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24315 + - uid: 24837 components: - rot: -1.5707963267948966 rad - pos: -41.5,-11.5 + pos: -35.5,-22.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24316 - components: - - rot: 3.141592653589793 rad - pos: -30.5,-1.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 24317 + - uid: 24840 components: - - rot: 3.141592653589793 rad - pos: -30.5,-2.5 + - rot: -1.5707963267948966 rad + pos: -41.5,-27.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24318 + - uid: 24852 components: - - rot: 3.141592653589793 rad - pos: -30.5,-3.5 + - rot: -1.5707963267948966 rad + pos: -40.5,-23.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24326 + - uid: 24853 components: - - rot: 3.141592653589793 rad - pos: -30.5,-6.5 + - rot: -1.5707963267948966 rad + pos: -41.5,-23.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24327 + - uid: 24854 components: - - rot: 3.141592653589793 rad - pos: -30.5,-7.5 + - rot: -1.5707963267948966 rad + pos: -42.5,-23.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24328 + - uid: 24855 components: - rot: 3.141592653589793 rad - pos: -30.5,-9.5 + pos: -43.5,-25.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24329 + - uid: 24856 components: - rot: 3.141592653589793 rad - pos: -30.5,-10.5 + pos: -43.5,-26.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24330 + - uid: 24857 components: - rot: 3.141592653589793 rad - pos: -30.5,-11.5 + pos: -43.5,-27.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24332 - components: - - rot: 3.141592653589793 rad - pos: -32.5,-5.5 - parent: 6747 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 24333 - components: - - rot: 3.141592653589793 rad - pos: -32.5,-4.5 - parent: 6747 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 24334 - components: - - rot: 3.141592653589793 rad - pos: -32.5,-3.5 - parent: 6747 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 24335 - components: - - rot: 3.141592653589793 rad - pos: -32.5,-2.5 - parent: 6747 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 24336 + - uid: 24858 components: - rot: 1.5707963267948966 rad - pos: -31.5,-1.5 + pos: -42.5,-28.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24337 + - uid: 24859 components: - rot: 1.5707963267948966 rad - pos: -30.5,-1.5 + pos: -41.5,-28.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24338 + - uid: 24860 components: - rot: 1.5707963267948966 rad - pos: -29.5,-1.5 + pos: -40.5,-28.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24339 + - uid: 24861 components: - rot: 1.5707963267948966 rad - pos: -28.5,-1.5 + pos: -39.5,-28.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24340 + - uid: 24862 components: - rot: 1.5707963267948966 rad - pos: -27.5,-1.5 + pos: -38.5,-28.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24341 + - uid: 24863 components: - - rot: 1.5707963267948966 rad - pos: -26.5,-1.5 + - pos: -37.5,-27.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24352 + - uid: 24866 components: - - pos: -36.5,6.5 + - rot: -1.5707963267948966 rad + pos: -36.5,-30.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24353 + - uid: 24867 components: - - pos: -36.5,5.5 + - rot: -1.5707963267948966 rad + pos: -35.5,-30.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24354 + - uid: 24868 components: - - pos: -36.5,4.5 + - rot: 3.141592653589793 rad + pos: -37.5,-29.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24355 + - uid: 24869 components: - - rot: -1.5707963267948966 rad - pos: -35.5,3.5 + - rot: 3.141592653589793 rad + pos: -37.5,-31.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24356 + - uid: 24870 components: - - rot: -1.5707963267948966 rad - pos: -34.5,3.5 + - rot: 3.141592653589793 rad + pos: -37.5,-32.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24357 + - uid: 24871 components: - - rot: -1.5707963267948966 rad - pos: -33.5,3.5 + - rot: 3.141592653589793 rad + pos: -37.5,-33.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24358 + - uid: 24872 components: - - rot: -1.5707963267948966 rad - pos: -32.5,3.5 + - rot: 3.141592653589793 rad + pos: -43.5,-29.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24359 + - uid: 24873 components: - rot: 3.141592653589793 rad - pos: -31.5,2.5 + pos: -43.5,-30.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24360 + - uid: 24874 components: - - rot: 1.5707963267948966 rad - pos: -30.5,1.5 + - rot: 3.141592653589793 rad + pos: -43.5,-31.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24361 + - uid: 24875 components: - - pos: -31.5,4.5 + - pos: -52.5,-10.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24362 + - uid: 24876 components: - - pos: -31.5,5.5 + - rot: 1.5707963267948966 rad + pos: -35.5,-27.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24363 + - uid: 24881 components: - - pos: -31.5,7.5 + - pos: -38.5,-36.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24364 + - uid: 24882 components: - - pos: -31.5,8.5 + - rot: 3.141592653589793 rad + pos: -38.5,-34.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24370 + - uid: 24883 components: - - pos: -32.5,-0.5 + - rot: 3.141592653589793 rad + pos: -38.5,-35.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24371 + - uid: 24884 components: - - pos: -32.5,0.5 + - rot: 3.141592653589793 rad + pos: -37.5,-34.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24372 + - uid: 24890 components: - - rot: -1.5707963267948966 rad - pos: -31.5,-0.5 + - rot: 1.5707963267948966 rad + pos: -36.5,-35.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24373 + - uid: 24891 components: - - rot: -1.5707963267948966 rad - pos: -32.5,-0.5 + - rot: 1.5707963267948966 rad + pos: -35.5,-35.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24374 + - uid: 24892 components: - - rot: -1.5707963267948966 rad - pos: -33.5,-0.5 + - rot: 1.5707963267948966 rad + pos: -34.5,-35.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24375 + - uid: 24893 components: - - rot: -1.5707963267948966 rad - pos: -34.5,-0.5 + - rot: 1.5707963267948966 rad + pos: -33.5,-35.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24376 + - uid: 24894 components: - - rot: -1.5707963267948966 rad - pos: -35.5,-0.5 + - rot: 1.5707963267948966 rad + pos: -31.5,-35.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24377 + - uid: 24895 components: - - rot: -1.5707963267948966 rad - pos: -36.5,-0.5 + - rot: 1.5707963267948966 rad + pos: -30.5,-35.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24378 + - uid: 24896 components: - - rot: -1.5707963267948966 rad - pos: -33.5,-1.5 + - rot: 1.5707963267948966 rad + pos: -29.5,-35.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24379 + - uid: 24897 components: - - rot: -1.5707963267948966 rad - pos: -34.5,-1.5 + - rot: 1.5707963267948966 rad + pos: -28.5,-35.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24380 + - uid: 24898 components: - - rot: -1.5707963267948966 rad - pos: -35.5,-1.5 + - rot: 1.5707963267948966 rad + pos: -27.5,-35.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24389 + - uid: 24899 components: - - rot: 1.5707963267948966 rad - pos: -38.5,-0.5 + - pos: -26.5,-36.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24390 + - uid: 24900 components: - - rot: 1.5707963267948966 rad - pos: -39.5,-0.5 + - pos: -26.5,-37.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24391 + - uid: 24901 components: - - pos: -40.5,0.5 + - pos: -26.5,-38.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24392 + - uid: 24902 components: - - rot: -1.5707963267948966 rad - pos: -40.5,-1.5 + - pos: -32.5,-38.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24393 + - uid: 24903 components: - - rot: -1.5707963267948966 rad - pos: -39.5,-1.5 + - pos: -32.5,-37.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24394 + - uid: 24904 components: - - rot: -1.5707963267948966 rad - pos: -38.5,-1.5 + - pos: -32.5,-36.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24395 + - uid: 24910 components: - - rot: -1.5707963267948966 rad - pos: -37.5,-1.5 + - rot: 1.5707963267948966 rad + pos: -37.5,-37.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24403 + - uid: 24911 components: - - rot: -1.5707963267948966 rad - pos: -47.5,-1.5 + - rot: 1.5707963267948966 rad + pos: -36.5,-37.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24404 + - uid: 24912 components: - - rot: -1.5707963267948966 rad - pos: -45.5,-1.5 + - rot: 1.5707963267948966 rad + pos: -35.5,-37.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24405 + - uid: 24913 components: - - rot: -1.5707963267948966 rad - pos: -43.5,-1.5 + - rot: 1.5707963267948966 rad + pos: -34.5,-37.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24421 + - uid: 24914 components: - rot: 1.5707963267948966 rad - pos: -43.5,7.5 + pos: -33.5,-37.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24422 + - uid: 24915 components: - - pos: -44.5,6.5 + - rot: 1.5707963267948966 rad + pos: -32.5,-37.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24423 + - uid: 24916 components: - - pos: -44.5,4.5 + - pos: -31.5,-38.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24424 + - uid: 24917 components: - - pos: -44.5,3.5 + - rot: -1.5707963267948966 rad + pos: -30.5,-37.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24425 + - uid: 24918 components: - - pos: -44.5,2.5 + - rot: -1.5707963267948966 rad + pos: -29.5,-37.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24426 + - uid: 24919 components: - - pos: -44.5,1.5 + - rot: -1.5707963267948966 rad + pos: -28.5,-37.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24427 + - uid: 24920 components: - rot: -1.5707963267948966 rad - pos: -43.5,0.5 + pos: -26.5,-37.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24428 + - uid: 24921 components: - rot: 3.141592653589793 rad - pos: -42.5,-0.5 + pos: -27.5,-38.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24438 + - uid: 24925 components: - - rot: -1.5707963267948966 rad - pos: -43.5,9.5 + - rot: 1.5707963267948966 rad + pos: -13.5,-36.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24439 + - uid: 24926 components: - - rot: -1.5707963267948966 rad - pos: -44.5,9.5 + - rot: 1.5707963267948966 rad + pos: -12.5,-36.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24440 + - uid: 24927 components: - - rot: 3.141592653589793 rad - pos: -45.5,8.5 + - rot: 1.5707963267948966 rad + pos: -10.5,-36.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24441 + - uid: 24928 components: - - rot: 3.141592653589793 rad - pos: -46.5,6.5 + - rot: 1.5707963267948966 rad + pos: -9.5,-36.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24442 + - uid: 24929 components: - - rot: 3.141592653589793 rad - pos: -47.5,3.5 + - rot: 1.5707963267948966 rad + pos: -8.5,-36.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24443 + - uid: 24930 components: - - rot: 3.141592653589793 rad - pos: -47.5,2.5 + - rot: 1.5707963267948966 rad + pos: -7.5,-36.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24444 + - uid: 24931 components: - - rot: 3.141592653589793 rad - pos: -47.5,0.5 + - rot: 1.5707963267948966 rad + pos: -6.5,-36.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24445 + - uid: 24932 components: - - rot: 3.141592653589793 rad - pos: -45.5,0.5 + - rot: 1.5707963267948966 rad + pos: -5.5,-36.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24446 + - uid: 24933 components: - - rot: 3.141592653589793 rad - pos: -43.5,0.5 + - rot: 1.5707963267948966 rad + pos: -4.5,-36.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24447 + - uid: 24934 components: - rot: 1.5707963267948966 rad - pos: -46.5,1.5 + pos: -3.5,-36.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24448 + - uid: 24935 components: - rot: 1.5707963267948966 rad - pos: -44.5,1.5 + pos: -2.5,-36.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24449 + - uid: 24936 components: - rot: 1.5707963267948966 rad - pos: -42.5,1.5 + pos: -1.5,-36.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24462 + - uid: 24941 components: - - rot: 3.141592653589793 rad - pos: -42.5,-8.5 + - rot: 1.5707963267948966 rad + pos: 0.5,-31.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24463 + - uid: 24942 components: - - rot: 3.141592653589793 rad - pos: -42.5,-7.5 + - rot: 1.5707963267948966 rad + pos: 1.5,-31.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24464 + - uid: 24943 components: - - rot: 3.141592653589793 rad - pos: -42.5,-6.5 + - pos: 2.5,-32.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24465 + - uid: 24944 components: - - rot: 1.5707963267948966 rad - pos: -41.5,-5.5 + - pos: 1.5,-34.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24466 + - uid: 24945 components: - - rot: 1.5707963267948966 rad - pos: -40.5,-5.5 + - pos: 1.5,-35.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24467 + - uid: 24950 components: - - pos: -41.5,-4.5 + - rot: 3.141592653589793 rad + pos: -10.5,-30.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24468 + - uid: 24951 components: - - rot: -1.5707963267948966 rad - pos: -40.5,-3.5 + - rot: 3.141592653589793 rad + pos: -10.5,-29.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24469 + - uid: 24952 components: - rot: 3.141592653589793 rad - pos: -39.5,-4.5 + pos: -10.5,-28.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24470 + - uid: 24953 components: - rot: 3.141592653589793 rad - pos: -6.5,3.5 + pos: -10.5,-27.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24471 + - uid: 24954 components: - rot: 3.141592653589793 rad - pos: -6.5,4.5 + pos: -1.5,-22.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#E5CCFFFF' type: AtmosPipeColor - - uid: 24472 + - uid: 24955 components: - rot: 1.5707963267948966 rad - pos: -36.5,-4.5 + pos: -9.5,-32.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24473 + - uid: 24956 components: - rot: 1.5707963267948966 rad - pos: -34.5,-4.5 + pos: -8.5,-32.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24474 + - uid: 24957 components: - rot: 1.5707963267948966 rad - pos: -33.5,-4.5 + pos: -7.5,-32.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24475 + - uid: 24958 components: - rot: 1.5707963267948966 rad - pos: -32.5,-4.5 + pos: -6.5,-32.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24476 + - uid: 24959 components: - rot: 1.5707963267948966 rad - pos: -31.5,-4.5 + pos: -5.5,-32.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24477 + - uid: 24960 components: - rot: 1.5707963267948966 rad - pos: -38.5,-5.5 + pos: -3.5,-32.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24486 + - uid: 24961 components: - rot: 1.5707963267948966 rad - pos: -45.5,-33.5 + pos: -2.5,-32.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24487 + - uid: 24962 components: - - rot: 1.5707963267948966 rad - pos: -44.5,-33.5 + - pos: -10.5,-36.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24488 + - uid: 24963 components: - - rot: 1.5707963267948966 rad - pos: -43.5,-33.5 + - pos: -10.5,-35.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24489 + - uid: 24964 components: - - pos: -42.5,-34.5 + - pos: -10.5,-34.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24490 + - uid: 24965 components: - - pos: -42.5,-35.5 + - pos: -10.5,-33.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24491 + - uid: 24969 components: - - pos: -42.5,-36.5 + - rot: -1.5707963267948966 rad + pos: -11.5,-26.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24492 + - uid: 24971 components: - - pos: -42.5,-37.5 + - rot: -1.5707963267948966 rad + pos: 2.5,-26.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24493 + - uid: 24972 components: - - pos: -42.5,-38.5 + - rot: -1.5707963267948966 rad + pos: 1.5,-26.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24494 + - uid: 24973 components: - - pos: -42.5,-39.5 + - rot: -1.5707963267948966 rad + pos: 0.5,-26.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24495 + - uid: 24976 components: - rot: -1.5707963267948966 rad - pos: -41.5,-40.5 + pos: -2.5,-26.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24496 + - uid: 24977 components: - rot: -1.5707963267948966 rad - pos: -40.5,-40.5 + pos: -3.5,-26.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24497 + - uid: 24978 components: - rot: -1.5707963267948966 rad - pos: -39.5,-40.5 + pos: -4.5,-26.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24498 + - uid: 24979 components: - rot: -1.5707963267948966 rad - pos: -38.5,-40.5 + pos: -8.5,-26.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24499 + - uid: 24982 components: - - rot: -1.5707963267948966 rad - pos: -37.5,-40.5 + - rot: 3.141592653589793 rad + pos: -1.5,-23.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#E5CCFFFF' type: AtmosPipeColor - - uid: 24500 + - uid: 24984 components: - rot: -1.5707963267948966 rad - pos: -36.5,-40.5 + pos: -5.5,-26.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24501 + - uid: 24985 components: - - rot: 3.141592653589793 rad - pos: -35.5,-41.5 + - rot: -1.5707963267948966 rad + pos: -6.5,-26.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24502 + - uid: 24986 components: - - rot: 1.5707963267948966 rad - pos: -34.5,-42.5 + - rot: -1.5707963267948966 rad + pos: -9.5,-26.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24503 + - uid: 24987 components: - - rot: 1.5707963267948966 rad - pos: -33.5,-42.5 + - rot: -1.5707963267948966 rad + pos: -7.5,-26.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24504 + - uid: 24992 components: - - rot: 1.5707963267948966 rad - pos: -32.5,-42.5 + - rot: 3.141592653589793 rad + pos: -18.5,-34.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24505 + - uid: 24993 components: - - rot: 1.5707963267948966 rad - pos: -31.5,-42.5 + - rot: 3.141592653589793 rad + pos: -18.5,-33.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24506 + - uid: 24994 components: - - rot: 1.5707963267948966 rad - pos: -30.5,-42.5 + - rot: 3.141592653589793 rad + pos: -18.5,-32.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24507 + - uid: 24995 components: - rot: 1.5707963267948966 rad - pos: -29.5,-42.5 + pos: -17.5,-31.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24508 + - uid: 24996 components: - rot: 1.5707963267948966 rad - pos: -28.5,-42.5 + pos: -16.5,-31.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24509 + - uid: 24997 components: - rot: 1.5707963267948966 rad - pos: -27.5,-42.5 + pos: -15.5,-31.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24510 + - uid: 24998 components: - rot: 1.5707963267948966 rad - pos: -26.5,-42.5 + pos: -14.5,-31.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24511 + - uid: 24999 components: - rot: 1.5707963267948966 rad - pos: -25.5,-42.5 + pos: -13.5,-31.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24512 + - uid: 25000 components: - rot: 1.5707963267948966 rad - pos: -24.5,-42.5 + pos: -12.5,-31.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24513 + - uid: 25001 components: - rot: 1.5707963267948966 rad - pos: -23.5,-42.5 + pos: -11.5,-31.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24514 + - uid: 25004 components: - - pos: -22.5,-41.5 + - rot: -1.5707963267948966 rad + pos: -13.5,-26.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24515 + - uid: 25005 components: - - pos: -22.5,-40.5 + - rot: -1.5707963267948966 rad + pos: -14.5,-26.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24517 + - uid: 25006 components: - rot: -1.5707963267948966 rad - pos: -21.5,-39.5 + pos: -16.5,-25.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24518 + - uid: 25007 components: - - rot: 3.141592653589793 rad - pos: -20.5,-40.5 + - rot: -1.5707963267948966 rad + pos: -17.5,-25.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24519 + - uid: 25008 components: - - rot: 3.141592653589793 rad - pos: -20.5,-41.5 + - rot: -1.5707963267948966 rad + pos: -18.5,-25.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24520 + - uid: 25009 components: - - rot: 1.5707963267948966 rad - pos: -19.5,-39.5 + - rot: -1.5707963267948966 rad + pos: -19.5,-25.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24521 + - uid: 25010 components: - - rot: 1.5707963267948966 rad - pos: -18.5,-39.5 + - rot: -1.5707963267948966 rad + pos: -20.5,-25.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24522 + - uid: 25011 components: - - rot: 1.5707963267948966 rad - pos: -17.5,-39.5 + - rot: -1.5707963267948966 rad + pos: -21.5,-25.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24523 + - uid: 25021 components: - - rot: 1.5707963267948966 rad - pos: -16.5,-39.5 + - pos: -23.5,-19.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24524 + - uid: 25022 components: - - rot: 1.5707963267948966 rad - pos: -15.5,-39.5 + - pos: -23.5,-20.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24525 + - uid: 25023 components: - - pos: -14.5,-38.5 + - pos: -23.5,-21.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24526 + - uid: 25024 components: - - rot: -1.5707963267948966 rad - pos: -13.5,-37.5 + - pos: -23.5,-22.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24527 + - uid: 25025 components: - - rot: -1.5707963267948966 rad - pos: -12.5,-37.5 + - pos: -23.5,-23.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24528 + - uid: 25026 components: - - rot: -1.5707963267948966 rad - pos: -11.5,-37.5 + - pos: -23.5,-24.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24530 + - uid: 25027 components: - rot: -1.5707963267948966 rad - pos: -9.5,-37.5 + pos: -22.5,-25.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24531 + - uid: 25029 components: - - rot: -1.5707963267948966 rad - pos: -8.5,-37.5 + - pos: -23.5,-26.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24532 + - uid: 25030 components: - - rot: -1.5707963267948966 rad - pos: -7.5,-37.5 + - pos: -23.5,-27.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24533 + - uid: 25031 components: - rot: -1.5707963267948966 rad - pos: -6.5,-37.5 + pos: -24.5,-28.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24534 + - uid: 25032 components: - rot: -1.5707963267948966 rad - pos: -5.5,-37.5 + pos: -25.5,-28.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24535 + - uid: 25033 components: - rot: -1.5707963267948966 rad - pos: -4.5,-37.5 + pos: -26.5,-28.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24536 + - uid: 25034 components: - - rot: -1.5707963267948966 rad - pos: -3.5,-37.5 + - rot: 3.141592653589793 rad + pos: -27.5,-29.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24537 + - uid: 25035 components: - - rot: -1.5707963267948966 rad - pos: -2.5,-37.5 + - rot: 1.5707963267948966 rad + pos: -28.5,-27.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24538 + - uid: 25036 components: - - rot: -1.5707963267948966 rad - pos: -1.5,-37.5 + - rot: 1.5707963267948966 rad + pos: -28.5,-30.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24541 + - uid: 25043 components: - - pos: -19.5,-50.5 + - rot: 3.141592653589793 rad + pos: -11.5,-25.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24542 + - uid: 25044 components: - - pos: -19.5,-51.5 + - rot: 3.141592653589793 rad + pos: -11.5,-26.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24543 + - uid: 25045 components: - - pos: -19.5,-52.5 + - rot: 3.141592653589793 rad + pos: -11.5,-27.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24545 + - uid: 25046 components: - - pos: -45.5,-31.5 + - rot: 1.5707963267948966 rad + pos: -12.5,-28.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24546 + - uid: 25047 components: - - pos: -45.5,-30.5 + - rot: 1.5707963267948966 rad + pos: -13.5,-28.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24547 + - uid: 25048 components: - - pos: -45.5,-29.5 + - rot: 1.5707963267948966 rad + pos: -14.5,-28.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24548 + - uid: 25049 components: - - pos: -45.5,-28.5 + - rot: 1.5707963267948966 rad + pos: -15.5,-28.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24549 + - uid: 25050 components: - - pos: -45.5,-27.5 + - rot: 1.5707963267948966 rad + pos: -16.5,-28.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24550 + - uid: 25051 components: - - pos: -45.5,-26.5 + - rot: 1.5707963267948966 rad + pos: -17.5,-28.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24551 + - uid: 25052 components: - - pos: -45.5,-25.5 + - pos: -11.5,-29.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24552 + - uid: 25053 components: - - pos: -45.5,-24.5 + - rot: -1.5707963267948966 rad + pos: -10.5,-30.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24553 + - uid: 25054 components: - - pos: -45.5,-23.5 + - rot: -1.5707963267948966 rad + pos: -9.5,-30.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24554 + - uid: 25055 components: - - pos: -45.5,-22.5 + - rot: -1.5707963267948966 rad + pos: -8.5,-30.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24555 + - uid: 25056 components: - - pos: -45.5,-21.5 + - rot: -1.5707963267948966 rad + pos: -7.5,-30.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24556 + - uid: 25057 components: - - pos: -45.5,-20.5 + - rot: -1.5707963267948966 rad + pos: -6.5,-30.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24557 + - uid: 25058 components: - - pos: -45.5,-19.5 + - rot: -1.5707963267948966 rad + pos: -5.5,-30.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24558 + - uid: 25059 components: - - pos: -45.5,-18.5 + - rot: 3.141592653589793 rad + pos: -11.5,-31.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24559 + - uid: 25060 components: - - pos: -45.5,-17.5 + - rot: 3.141592653589793 rad + pos: -11.5,-32.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24560 + - uid: 25061 components: - - pos: -45.5,-16.5 + - rot: 3.141592653589793 rad + pos: -11.5,-33.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24561 + - uid: 25062 components: - - pos: -45.5,-15.5 + - rot: 3.141592653589793 rad + pos: -11.5,-34.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24562 + - uid: 25063 components: - - pos: -45.5,-14.5 + - rot: 3.141592653589793 rad + pos: -11.5,-35.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24563 + - uid: 25066 components: - - pos: -45.5,-13.5 + - rot: 3.141592653589793 rad + pos: -19.5,-34.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24564 + - uid: 25067 components: - - pos: -45.5,-12.5 + - rot: 3.141592653589793 rad + pos: -19.5,-33.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24586 + - uid: 25068 components: - rot: 3.141592653589793 rad - pos: -45.5,-11.5 + pos: -19.5,-32.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24587 + - uid: 25069 components: - rot: 3.141592653589793 rad - pos: -45.5,-10.5 + pos: -19.5,-31.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24588 + - uid: 25070 components: - rot: 3.141592653589793 rad - pos: -45.5,-9.5 + pos: -19.5,-30.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24590 + - uid: 25071 components: - rot: 3.141592653589793 rad - pos: -45.5,-7.5 + pos: -19.5,-29.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24591 + - uid: 25072 components: - - rot: 3.141592653589793 rad - pos: -45.5,-6.5 + - rot: 1.5707963267948966 rad + pos: -20.5,-28.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24592 + - uid: 25073 components: - - rot: 3.141592653589793 rad - pos: -45.5,-5.5 + - rot: 1.5707963267948966 rad + pos: -18.5,-28.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24593 + - uid: 25077 components: - - rot: 3.141592653589793 rad - pos: -45.5,-4.5 + - pos: -0.5,-23.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24594 + - uid: 25078 + components: + - pos: -0.5,-24.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25079 + components: + - pos: -0.5,-25.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25081 components: - rot: 1.5707963267948966 rad - pos: -46.5,-3.5 + pos: -0.5,-25.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24595 + - uid: 25082 components: - rot: 1.5707963267948966 rad - pos: -47.5,-3.5 + pos: 0.5,-25.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24596 + - uid: 25083 components: - rot: 1.5707963267948966 rad - pos: -48.5,-3.5 + pos: 1.5,-25.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24597 + - uid: 25084 components: - rot: 1.5707963267948966 rad - pos: -49.5,-3.5 + pos: 2.5,-25.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24598 + - uid: 25087 components: - rot: 1.5707963267948966 rad - pos: -50.5,-3.5 + pos: -2.5,-25.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24599 + - uid: 25088 components: - rot: 1.5707963267948966 rad - pos: -51.5,-3.5 + pos: -3.5,-25.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24600 + - uid: 25089 components: - rot: 1.5707963267948966 rad - pos: -52.5,-3.5 + pos: -4.5,-25.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24601 + - uid: 25090 components: - - pos: -53.5,-1.5 + - rot: 1.5707963267948966 rad + pos: -5.5,-25.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24602 + - uid: 25091 components: - - pos: -53.5,-0.5 + - pos: -6.5,-24.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24603 + - uid: 25092 components: - - pos: -63.5,8.5 + - rot: -1.5707963267948966 rad + pos: -7.5,-23.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24604 + - uid: 25093 components: - - pos: -54.5,1.5 + - rot: -1.5707963267948966 rad + pos: -8.5,-23.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24605 + - uid: 25094 components: - - pos: -54.5,2.5 + - rot: -1.5707963267948966 rad + pos: -9.5,-23.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24606 + - uid: 25095 components: - rot: -1.5707963267948966 rad - pos: -55.5,3.5 + pos: -10.5,-23.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24607 + - uid: 25097 components: - - rot: -1.5707963267948966 rad - pos: -56.5,3.5 + - rot: 1.5707963267948966 rad + pos: -12.5,-24.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24608 + - uid: 25098 components: - - rot: -1.5707963267948966 rad - pos: -57.5,3.5 + - rot: 1.5707963267948966 rad + pos: -13.5,-24.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24609 + - uid: 25099 components: - - rot: -1.5707963267948966 rad - pos: -58.5,3.5 + - rot: 1.5707963267948966 rad + pos: -14.5,-24.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24610 + - uid: 25100 components: - - rot: -1.5707963267948966 rad - pos: -59.5,3.5 + - rot: 1.5707963267948966 rad + pos: -15.5,-24.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24611 + - uid: 25101 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-24.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25102 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-24.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25103 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-24.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25104 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-24.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25105 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-24.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25106 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-24.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25107 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-24.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25108 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-24.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25118 components: - rot: 3.141592653589793 rad - pos: -60.5,4.5 + pos: -24.5,-28.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24612 + - uid: 25119 components: - rot: 3.141592653589793 rad - pos: -60.5,5.5 + pos: -24.5,-27.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24613 + - uid: 25120 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-26.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25121 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-25.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25122 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-23.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25123 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-22.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25124 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-21.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25125 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-20.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25126 components: - rot: 1.5707963267948966 rad - pos: -61.5,3.5 + pos: -25.5,-19.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24614 + - uid: 25127 components: - rot: 1.5707963267948966 rad - pos: -62.5,3.5 + pos: -26.5,-19.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25128 + components: + - pos: -27.5,-18.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25129 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-17.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 25130 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-22.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24615 + - uid: 25132 components: - - pos: -63.5,4.5 + - rot: 3.141592653589793 rad + pos: -27.5,-21.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24616 + - uid: 25133 components: - - pos: -63.5,5.5 + - rot: 3.141592653589793 rad + pos: -27.5,-20.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24617 + - uid: 25134 components: - - pos: -63.5,9.5 + - rot: 3.141592653589793 rad + pos: -27.5,-26.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24618 + - uid: 25149 components: - - pos: -63.5,10.5 + - pos: -10.5,-15.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24619 + - uid: 25150 components: - - pos: -63.5,11.5 + - pos: -10.5,-16.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24620 + - uid: 25151 components: - - pos: -63.5,-4.5 + - pos: -10.5,-17.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24621 + - uid: 25152 components: - rot: -1.5707963267948966 rad - pos: -64.5,6.5 + pos: -9.5,-18.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24622 + - uid: 25153 components: - rot: -1.5707963267948966 rad - pos: -65.5,6.5 + pos: -8.5,-18.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24624 + - uid: 25154 components: - - rot: 1.5707963267948966 rad - pos: -64.5,3.5 + - rot: -1.5707963267948966 rad + pos: -7.5,-18.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24625 + - uid: 25155 components: - - rot: 1.5707963267948966 rad - pos: -65.5,3.5 + - rot: -1.5707963267948966 rad + pos: -6.5,-18.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24626 + - uid: 25156 components: - - rot: 1.5707963267948966 rad - pos: -66.5,3.5 + - rot: -1.5707963267948966 rad + pos: -5.5,-18.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24627 + - uid: 25157 components: - - rot: 1.5707963267948966 rad - pos: -67.5,3.5 + - rot: -1.5707963267948966 rad + pos: -4.5,-18.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24628 + - uid: 25158 components: - - pos: -68.5,2.5 + - rot: -1.5707963267948966 rad + pos: -3.5,-18.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24629 + - uid: 25159 components: - - pos: -68.5,1.5 + - rot: -1.5707963267948966 rad + pos: -2.5,-18.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24630 + - uid: 25160 components: - - rot: -1.5707963267948966 rad - pos: -69.5,3.5 + - rot: 3.141592653589793 rad + pos: -10.5,-19.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24631 + - uid: 25162 components: - - rot: -1.5707963267948966 rad - pos: -70.5,3.5 + - rot: 3.141592653589793 rad + pos: -10.5,-21.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24632 + - uid: 25163 components: - rot: 3.141592653589793 rad - pos: -71.5,4.5 + pos: -10.5,-22.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24633 + - uid: 25164 components: - rot: 3.141592653589793 rad - pos: -63.5,2.5 + pos: -10.5,-23.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24634 + - uid: 25165 components: - rot: 3.141592653589793 rad - pos: -63.5,1.5 + pos: -10.5,-24.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24635 + - uid: 25166 components: - rot: 3.141592653589793 rad - pos: -63.5,0.5 + pos: -10.5,-25.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24636 + - uid: 25167 components: - rot: 3.141592653589793 rad - pos: -63.5,-0.5 + pos: -11.5,-22.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24637 + - uid: 25168 components: - rot: 3.141592653589793 rad - pos: -63.5,-1.5 + pos: -11.5,-20.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24638 + - uid: 25169 components: - rot: 3.141592653589793 rad - pos: -63.5,-2.5 + pos: -11.5,-19.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24639 + - uid: 25170 components: - - rot: 1.5707963267948966 rad - pos: -64.5,-3.5 + - rot: 3.141592653589793 rad + pos: -11.5,-18.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24640 + - uid: 25171 components: - rot: 1.5707963267948966 rad - pos: -65.5,-3.5 + pos: -10.5,-17.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24641 + - uid: 25172 components: - rot: 1.5707963267948966 rad - pos: -66.5,-3.5 + pos: -9.5,-17.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24642 + - uid: 25173 components: - - pos: -63.5,-5.5 + - rot: 1.5707963267948966 rad + pos: -8.5,-17.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24644 + - uid: 25174 components: - - pos: -46.5,-10.5 + - rot: 1.5707963267948966 rad + pos: -7.5,-17.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24645 + - uid: 25175 components: - - pos: -46.5,-9.5 + - rot: 1.5707963267948966 rad + pos: -6.5,-17.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24646 + - uid: 25176 components: - - pos: -46.5,-8.5 + - rot: 1.5707963267948966 rad + pos: -5.5,-17.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24647 + - uid: 25177 components: - - pos: -46.5,-7.5 + - rot: 1.5707963267948966 rad + pos: -4.5,-17.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24648 + - uid: 25180 components: - - pos: -46.5,-6.5 + - pos: -11.5,-15.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24649 + - uid: 25181 components: - - pos: -46.5,-5.5 + - pos: -11.5,-16.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24650 + - uid: 25186 components: - - rot: -1.5707963267948966 rad - pos: -47.5,-4.5 + - pos: -19.5,-20.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24651 + - uid: 25187 components: - rot: -1.5707963267948966 rad - pos: -48.5,-4.5 + pos: -18.5,-21.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24652 + - uid: 25188 components: - rot: -1.5707963267948966 rad - pos: -49.5,-4.5 + pos: -17.5,-21.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24653 + - uid: 25189 components: - rot: -1.5707963267948966 rad - pos: -50.5,-4.5 + pos: -16.5,-21.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24654 + - uid: 25190 components: - rot: -1.5707963267948966 rad - pos: -51.5,-4.5 + pos: -15.5,-21.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24655 + - uid: 25191 components: - rot: -1.5707963267948966 rad - pos: -52.5,-4.5 + pos: -14.5,-21.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24656 + - uid: 25192 components: - rot: -1.5707963267948966 rad - pos: -53.5,-4.5 - parent: 6747 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 24657 - components: - - rot: 3.141592653589793 rad - pos: -54.5,-3.5 - parent: 6747 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 24658 - components: - - rot: 3.141592653589793 rad - pos: -54.5,-2.5 + pos: -13.5,-21.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24659 + - uid: 25193 components: - - rot: 3.141592653589793 rad - pos: -54.5,-1.5 + - rot: -1.5707963267948966 rad + pos: -12.5,-21.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24660 + - uid: 25194 components: - - rot: 3.141592653589793 rad - pos: -55.5,0.5 + - rot: -1.5707963267948966 rad + pos: -17.5,-20.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24661 + - uid: 25195 components: - - rot: 3.141592653589793 rad - pos: -55.5,1.5 + - rot: -1.5707963267948966 rad + pos: -16.5,-20.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24662 + - uid: 25196 components: - - rot: 1.5707963267948966 rad - pos: -56.5,2.5 + - rot: -1.5707963267948966 rad + pos: -15.5,-20.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24663 + - uid: 25197 components: - - rot: 1.5707963267948966 rad - pos: -57.5,2.5 + - rot: -1.5707963267948966 rad + pos: -14.5,-20.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24664 + - uid: 25198 components: - - rot: 1.5707963267948966 rad - pos: -58.5,2.5 + - rot: -1.5707963267948966 rad + pos: -13.5,-20.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24665 + - uid: 25199 components: - - rot: 1.5707963267948966 rad - pos: -59.5,2.5 + - rot: -1.5707963267948966 rad + pos: -12.5,-20.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24666 + - uid: 25200 components: - - pos: -60.5,1.5 + - rot: -1.5707963267948966 rad + pos: -11.5,-20.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24667 + - uid: 25419 components: - - pos: -60.5,0.5 + - rot: -1.5707963267948966 rad + pos: -47.5,-11.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24668 + - uid: 25420 components: - rot: -1.5707963267948966 rad - pos: -61.5,2.5 + pos: -48.5,-11.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24669 + - uid: 25421 components: - rot: -1.5707963267948966 rad - pos: -62.5,2.5 + pos: -49.5,-11.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24670 + - uid: 25422 components: - rot: -1.5707963267948966 rad - pos: -63.5,2.5 + pos: -50.5,-11.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24671 + - uid: 25423 components: - - rot: 3.141592653589793 rad - pos: -64.5,3.5 + - rot: -1.5707963267948966 rad + pos: -51.5,-11.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24672 + - uid: 25428 components: - - rot: 3.141592653589793 rad - pos: -64.5,4.5 + - rot: -1.5707963267948966 rad + pos: -46.5,-8.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24673 + - uid: 25429 components: - - rot: 3.141592653589793 rad - pos: -64.5,6.5 + - rot: -1.5707963267948966 rad + pos: -47.5,-8.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24674 + - uid: 25430 components: - - rot: 3.141592653589793 rad - pos: -64.5,7.5 + - rot: -1.5707963267948966 rad + pos: -48.5,-8.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24675 + - uid: 25431 components: - - rot: 3.141592653589793 rad - pos: -64.5,8.5 + - rot: -1.5707963267948966 rad + pos: -49.5,-8.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24676 + - uid: 25432 components: - - rot: 3.141592653589793 rad - pos: -64.5,9.5 + - rot: -1.5707963267948966 rad + pos: -50.5,-8.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24677 + - uid: 25433 components: - - rot: 3.141592653589793 rad - pos: -64.5,10.5 + - rot: -1.5707963267948966 rad + pos: -51.5,-8.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24678 + - uid: 25434 components: - - rot: 3.141592653589793 rad - pos: -64.5,11.5 + - rot: -1.5707963267948966 rad + pos: -52.5,-8.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24679 + - uid: 25435 components: - - rot: 1.5707963267948966 rad - pos: -65.5,5.5 + - rot: -1.5707963267948966 rad + pos: -53.5,-8.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24680 + - uid: 25439 components: - - rot: 1.5707963267948966 rad - pos: -65.5,2.5 + - pos: -54.5,-9.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24681 + - uid: 25440 components: - - rot: 1.5707963267948966 rad - pos: -66.5,2.5 + - pos: -54.5,-10.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24683 + - uid: 25586 components: - - rot: 1.5707963267948966 rad - pos: -68.5,2.5 + - pos: 3.5,-71.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24684 + - uid: 25593 components: - - rot: 1.5707963267948966 rad - pos: -69.5,2.5 + - rot: -1.5707963267948966 rad + pos: 27.5,21.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24685 + - uid: 25594 components: - - rot: 1.5707963267948966 rad - pos: -70.5,2.5 + - rot: 3.141592653589793 rad + pos: 5.5,28.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24686 + - uid: 25596 components: - - pos: -64.5,1.5 + - rot: 3.141592653589793 rad + pos: 5.5,30.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24687 + - uid: 25597 components: - - pos: -64.5,0.5 + - rot: 3.141592653589793 rad + pos: 5.5,31.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24688 + - uid: 25598 components: - - pos: -64.5,-0.5 + - rot: 3.141592653589793 rad + pos: 5.5,32.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24689 + - uid: 25603 components: - - pos: -64.5,-1.5 + - rot: -1.5707963267948966 rad + pos: 8.5,26.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24690 + - uid: 25604 components: - - pos: -64.5,-3.5 + - rot: -1.5707963267948966 rad + pos: 9.5,26.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24691 + - uid: 25605 components: - - pos: -64.5,-4.5 + - rot: -1.5707963267948966 rad + pos: 10.5,26.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24692 + - uid: 25609 components: - - pos: -64.5,-5.5 + - pos: 1.5,-71.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24693 + - uid: 26020 components: - rot: -1.5707963267948966 rad - pos: -65.5,-2.5 + pos: 59.5,20.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24695 + - uid: 26021 components: - - pos: -71.5,1.5 + - rot: -1.5707963267948966 rad + pos: 57.5,20.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24696 + - uid: 26022 components: - - pos: -67.5,1.5 + - rot: -1.5707963267948966 rad + pos: 55.5,20.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24811 + - uid: 26025 components: - - pos: -38.5,-28.5 + - rot: -1.5707963267948966 rad + pos: 56.5,16.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24812 + - uid: 26026 components: - - pos: -38.5,-29.5 + - rot: 3.141592653589793 rad + pos: 57.5,17.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24813 + - uid: 26027 components: - - pos: -38.5,-30.5 + - rot: 1.5707963267948966 rad + pos: 58.5,18.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24814 + - uid: 26032 components: - - pos: -38.5,-31.5 + - rot: 1.5707963267948966 rad + pos: 56.5,26.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24815 + - uid: 26033 components: - - pos: -38.5,-32.5 + - rot: 1.5707963267948966 rad + pos: 55.5,26.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24816 + - uid: 26034 components: - - pos: -38.5,-33.5 + - pos: 57.5,25.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24817 + - uid: 26035 components: - - pos: -42.5,-32.5 + - pos: 57.5,24.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24818 + - uid: 26036 components: - - pos: -42.5,-31.5 + - pos: 57.5,23.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24819 + - uid: 26037 components: - - pos: -42.5,-30.5 + - pos: 57.5,22.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24820 + - uid: 26038 components: - - pos: -42.5,-28.5 + - pos: 57.5,21.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24821 + - uid: 26039 components: - - pos: -40.5,-26.5 + - pos: 57.5,20.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24822 + - uid: 26040 components: - - pos: -40.5,-25.5 + - pos: 57.5,19.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24830 + - uid: 26041 components: - - pos: -36.5,-18.5 + - rot: 1.5707963267948966 rad + pos: 61.5,20.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24831 + - uid: 26042 components: - - pos: -36.5,-19.5 + - rot: 1.5707963267948966 rad + pos: 62.5,20.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24832 + - uid: 26043 components: - - pos: -36.5,-20.5 + - pos: 63.5,21.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24833 + - uid: 26044 components: - - pos: -36.5,-21.5 + - pos: 63.5,22.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24834 + - uid: 26045 components: - - rot: -1.5707963267948966 rad - pos: -37.5,-23.5 + - pos: 63.5,23.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24835 + - uid: 26046 components: - - rot: -1.5707963267948966 rad - pos: -39.5,-24.5 + - pos: 63.5,24.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24837 + - uid: 26047 components: - - rot: -1.5707963267948966 rad - pos: -35.5,-22.5 + - pos: 63.5,25.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24840 + - uid: 26050 components: - - rot: -1.5707963267948966 rad - pos: -41.5,-27.5 + - rot: 1.5707963267948966 rad + pos: 62.5,26.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24852 - components: - - rot: -1.5707963267948966 rad - pos: -40.5,-23.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 24853 + - uid: 26053 components: - - rot: -1.5707963267948966 rad - pos: -41.5,-23.5 + - rot: 3.141592653589793 rad + pos: 50.5,10.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24854 + - uid: 26054 components: - - rot: -1.5707963267948966 rad - pos: -42.5,-23.5 + - rot: 3.141592653589793 rad + pos: 50.5,11.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24855 + - uid: 26055 components: - rot: 3.141592653589793 rad - pos: -43.5,-25.5 + pos: 50.5,12.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24856 + - uid: 26065 components: - rot: 3.141592653589793 rad - pos: -43.5,-26.5 + pos: 71.5,7.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24857 + - uid: 26066 components: - rot: 3.141592653589793 rad - pos: -43.5,-27.5 + pos: 71.5,8.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24858 + - uid: 26067 components: - rot: 1.5707963267948966 rad - pos: -42.5,-28.5 + pos: 70.5,9.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24859 + - uid: 26068 components: - rot: 1.5707963267948966 rad - pos: -41.5,-28.5 + pos: 69.5,9.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24860 + - uid: 26081 components: - - rot: 1.5707963267948966 rad - pos: -40.5,-28.5 + - rot: -1.5707963267948966 rad + pos: 59.5,9.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24861 + - uid: 26082 components: - - rot: 1.5707963267948966 rad - pos: -39.5,-28.5 + - rot: -1.5707963267948966 rad + pos: 58.5,9.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24862 + - uid: 26083 components: - - rot: 1.5707963267948966 rad - pos: -38.5,-28.5 + - rot: -1.5707963267948966 rad + pos: 57.5,9.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24863 + - uid: 26084 components: - - pos: -37.5,-27.5 + - rot: -1.5707963267948966 rad + pos: 56.5,9.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24866 + - uid: 26085 components: - rot: -1.5707963267948966 rad - pos: -36.5,-30.5 + pos: 54.5,9.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24867 + - uid: 26086 components: - rot: -1.5707963267948966 rad - pos: -35.5,-30.5 + pos: 53.5,9.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24868 + - uid: 26087 components: - - rot: 3.141592653589793 rad - pos: -37.5,-29.5 + - rot: -1.5707963267948966 rad + pos: 52.5,9.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24869 + - uid: 26088 components: - - rot: 3.141592653589793 rad - pos: -37.5,-31.5 + - rot: -1.5707963267948966 rad + pos: 51.5,9.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24870 + - uid: 26089 components: - - rot: 3.141592653589793 rad - pos: -37.5,-32.5 + - rot: -1.5707963267948966 rad + pos: 54.5,13.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24871 + - uid: 26090 components: - - rot: 3.141592653589793 rad - pos: -37.5,-33.5 + - rot: -1.5707963267948966 rad + pos: 55.5,13.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24872 + - uid: 26091 components: - - rot: 3.141592653589793 rad - pos: -43.5,-29.5 + - rot: -1.5707963267948966 rad + pos: 56.5,13.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24873 + - uid: 26092 components: - - rot: 3.141592653589793 rad - pos: -43.5,-30.5 + - rot: -1.5707963267948966 rad + pos: 57.5,13.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24874 + - uid: 26093 components: - - rot: 3.141592653589793 rad - pos: -43.5,-31.5 + - rot: -1.5707963267948966 rad + pos: 58.5,13.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24875 - components: - - pos: -52.5,-10.5 - parent: 6747 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 24876 + - uid: 26094 components: - - rot: 1.5707963267948966 rad - pos: -35.5,-27.5 + - rot: -1.5707963267948966 rad + pos: 59.5,13.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24881 + - uid: 26095 components: - - pos: -38.5,-36.5 + - rot: -1.5707963267948966 rad + pos: 60.5,13.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24882 + - uid: 26096 components: - rot: 3.141592653589793 rad - pos: -38.5,-34.5 + pos: 61.5,12.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24883 + - uid: 26097 components: - - rot: 3.141592653589793 rad - pos: -38.5,-35.5 + - rot: 1.5707963267948966 rad + pos: 62.5,13.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24884 + - uid: 26098 components: - - rot: 3.141592653589793 rad - pos: -37.5,-34.5 + - rot: 1.5707963267948966 rad + pos: 63.5,13.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24890 + - uid: 26099 components: - rot: 1.5707963267948966 rad - pos: -36.5,-35.5 + pos: 64.5,13.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24891 + - uid: 26100 components: - rot: 1.5707963267948966 rad - pos: -35.5,-35.5 + pos: 65.5,13.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24892 + - uid: 26101 components: - - rot: 1.5707963267948966 rad - pos: -34.5,-35.5 + - pos: 66.5,12.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24893 + - uid: 26102 components: - - rot: 1.5707963267948966 rad - pos: -33.5,-35.5 + - pos: 67.5,12.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24894 + - uid: 26103 components: - - rot: 1.5707963267948966 rad - pos: -31.5,-35.5 + - rot: -1.5707963267948966 rad + pos: 68.5,11.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24895 + - uid: 26104 components: - - rot: 1.5707963267948966 rad - pos: -30.5,-35.5 + - rot: -1.5707963267948966 rad + pos: 69.5,11.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24896 + - uid: 26105 components: - - rot: 1.5707963267948966 rad - pos: -29.5,-35.5 + - rot: -1.5707963267948966 rad + pos: 70.5,11.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24897 + - uid: 26106 components: - - rot: 1.5707963267948966 rad - pos: -28.5,-35.5 + - rot: 3.141592653589793 rad + pos: 71.5,10.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24898 + - uid: 26110 components: - - rot: 1.5707963267948966 rad - pos: -27.5,-35.5 + - pos: 63.5,19.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24899 + - uid: 26111 components: - - pos: -26.5,-36.5 + - rot: -1.5707963267948966 rad + pos: 64.5,18.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24900 + - uid: 26112 components: - - pos: -26.5,-37.5 + - rot: -1.5707963267948966 rad + pos: 65.5,18.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24901 + - uid: 26113 components: - - pos: -26.5,-38.5 + - rot: -1.5707963267948966 rad + pos: 67.5,18.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24902 + - uid: 26114 components: - - pos: -32.5,-38.5 + - rot: -1.5707963267948966 rad + pos: 68.5,18.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24903 + - uid: 26115 components: - - pos: -32.5,-37.5 + - rot: -1.5707963267948966 rad + pos: 69.5,18.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24904 + - uid: 26116 components: - - pos: -32.5,-36.5 + - rot: -1.5707963267948966 rad + pos: 70.5,18.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24910 + - uid: 26117 components: - - rot: 1.5707963267948966 rad - pos: -37.5,-37.5 + - rot: -1.5707963267948966 rad + pos: 71.5,18.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24911 + - uid: 26118 components: - - rot: 1.5707963267948966 rad - pos: -36.5,-37.5 + - rot: -1.5707963267948966 rad + pos: 72.5,18.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24912 + - uid: 26119 components: - - rot: 1.5707963267948966 rad - pos: -35.5,-37.5 + - rot: 3.141592653589793 rad + pos: 73.5,17.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24913 + - uid: 26120 components: - - rot: 1.5707963267948966 rad - pos: -34.5,-37.5 + - rot: 3.141592653589793 rad + pos: 73.5,16.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24914 + - uid: 26121 components: - - rot: 1.5707963267948966 rad - pos: -33.5,-37.5 + - rot: 3.141592653589793 rad + pos: 73.5,15.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24915 + - uid: 26122 components: - - rot: 1.5707963267948966 rad - pos: -32.5,-37.5 + - rot: 3.141592653589793 rad + pos: 73.5,14.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24916 + - uid: 26123 components: - - pos: -31.5,-38.5 + - rot: 3.141592653589793 rad + pos: 73.5,13.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24917 + - uid: 26124 components: - - rot: -1.5707963267948966 rad - pos: -30.5,-37.5 + - rot: 3.141592653589793 rad + pos: 73.5,12.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24918 + - uid: 26125 components: - - rot: -1.5707963267948966 rad - pos: -29.5,-37.5 + - rot: 3.141592653589793 rad + pos: 73.5,11.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24919 + - uid: 26126 components: - - rot: -1.5707963267948966 rad - pos: -28.5,-37.5 + - rot: 3.141592653589793 rad + pos: 73.5,10.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24920 + - uid: 26127 components: - - rot: -1.5707963267948966 rad - pos: -26.5,-37.5 + - rot: 3.141592653589793 rad + pos: 73.5,9.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24921 + - uid: 26128 components: - rot: 3.141592653589793 rad - pos: -27.5,-38.5 + pos: 73.5,8.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24925 + - uid: 26132 components: - rot: 1.5707963267948966 rad - pos: -13.5,-36.5 + pos: 72.5,7.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24926 + - uid: 26133 components: - rot: 1.5707963267948966 rad - pos: -12.5,-36.5 + pos: 71.5,7.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24927 + - uid: 26134 components: - rot: 1.5707963267948966 rad - pos: -10.5,-36.5 + pos: 70.5,7.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24928 + - uid: 26135 components: - rot: 1.5707963267948966 rad - pos: -9.5,-36.5 + pos: 69.5,7.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24929 + - uid: 26137 components: - - rot: 1.5707963267948966 rad - pos: -8.5,-36.5 + - pos: 63.5,17.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24930 + - uid: 26138 components: - - rot: 1.5707963267948966 rad - pos: -7.5,-36.5 + - pos: 63.5,16.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24931 + - uid: 26139 components: - - rot: 1.5707963267948966 rad - pos: -6.5,-36.5 + - pos: 63.5,15.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24932 + - uid: 26140 components: - - rot: 1.5707963267948966 rad - pos: -5.5,-36.5 + - pos: 63.5,14.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24933 + - uid: 26141 components: - - rot: 1.5707963267948966 rad - pos: -4.5,-36.5 + - pos: 63.5,13.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24934 + - uid: 26146 components: - - rot: 1.5707963267948966 rad - pos: -3.5,-36.5 + - rot: -1.5707963267948966 rad + pos: 44.5,17.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24935 + - uid: 26147 components: - - rot: 1.5707963267948966 rad - pos: -2.5,-36.5 + - rot: -1.5707963267948966 rad + pos: 43.5,17.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24936 + - uid: 26148 components: - - rot: 1.5707963267948966 rad - pos: -1.5,-36.5 + - rot: -1.5707963267948966 rad + pos: 42.5,17.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24941 + - uid: 26149 components: - - rot: 1.5707963267948966 rad - pos: 0.5,-31.5 + - rot: -1.5707963267948966 rad + pos: 41.5,17.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24942 + - uid: 26150 components: - - rot: 1.5707963267948966 rad - pos: 1.5,-31.5 + - rot: -1.5707963267948966 rad + pos: 40.5,17.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24943 + - uid: 26151 components: - - pos: 2.5,-32.5 + - rot: -1.5707963267948966 rad + pos: 39.5,17.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24944 + - uid: 26152 components: - - pos: 1.5,-34.5 + - rot: 3.141592653589793 rad + pos: 38.5,18.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24945 + - uid: 26153 components: - - pos: 1.5,-35.5 + - pos: 52.5,15.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24950 + - uid: 26154 components: - - rot: 3.141592653589793 rad - pos: -10.5,-30.5 + - pos: 52.5,14.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24951 + - uid: 26155 components: - - rot: 3.141592653589793 rad - pos: -10.5,-29.5 + - pos: 52.5,13.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24952 + - uid: 26157 components: - - rot: 3.141592653589793 rad - pos: -10.5,-28.5 + - rot: 1.5707963267948966 rad + pos: 40.5,13.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24953 + - uid: 26158 components: - - rot: 3.141592653589793 rad - pos: -10.5,-27.5 + - rot: 1.5707963267948966 rad + pos: 39.5,13.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24954 + - uid: 26159 components: - - rot: 3.141592653589793 rad - pos: -1.5,-22.5 + - pos: 38.5,14.5 parent: 6747 type: Transform - - color: '#E5CCFFFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24955 + - uid: 26160 components: - - rot: 1.5707963267948966 rad - pos: -9.5,-32.5 + - pos: 38.5,15.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24956 + - uid: 26161 components: - - rot: 1.5707963267948966 rad - pos: -8.5,-32.5 + - pos: 38.5,16.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24957 + - uid: 26162 components: - - rot: 1.5707963267948966 rad - pos: -7.5,-32.5 + - pos: 38.5,12.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24958 + - uid: 26163 components: - - rot: 1.5707963267948966 rad - pos: -6.5,-32.5 + - pos: 38.5,11.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24959 + - uid: 26164 components: - - rot: 1.5707963267948966 rad - pos: -5.5,-32.5 + - pos: 38.5,10.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24960 + - uid: 26165 components: - rot: 1.5707963267948966 rad - pos: -3.5,-32.5 + pos: 31.5,21.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24961 + - uid: 26166 components: - rot: 1.5707963267948966 rad - pos: -2.5,-32.5 + pos: 32.5,21.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24962 + - uid: 26167 components: - - pos: -10.5,-36.5 + - rot: 1.5707963267948966 rad + pos: 33.5,21.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24963 + - uid: 26168 components: - - pos: -10.5,-35.5 + - rot: 1.5707963267948966 rad + pos: 34.5,21.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24964 + - uid: 26175 components: - - pos: -10.5,-34.5 + - pos: 29.5,31.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24965 + - uid: 26176 components: - - pos: -10.5,-33.5 + - pos: 29.5,30.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24969 + - uid: 26177 components: - - rot: -1.5707963267948966 rad - pos: -11.5,-26.5 + - pos: 29.5,29.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24971 + - uid: 26178 components: - - rot: -1.5707963267948966 rad - pos: 2.5,-26.5 + - pos: 29.5,28.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24972 + - uid: 26179 components: - - rot: -1.5707963267948966 rad - pos: 1.5,-26.5 + - pos: 29.5,27.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24973 + - uid: 26180 + components: + - pos: 29.5,26.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 26181 components: - rot: -1.5707963267948966 rad - pos: 0.5,-26.5 + pos: 30.5,25.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24976 + - uid: 26182 components: - rot: -1.5707963267948966 rad - pos: -2.5,-26.5 + pos: 31.5,25.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24977 + - uid: 26183 components: - rot: -1.5707963267948966 rad - pos: -3.5,-26.5 + pos: 32.5,25.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24978 + - uid: 26184 components: - rot: -1.5707963267948966 rad - pos: -4.5,-26.5 + pos: 33.5,25.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24979 + - uid: 26185 components: - rot: -1.5707963267948966 rad - pos: -8.5,-26.5 + pos: 34.5,25.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24982 + - uid: 26186 components: - rot: 3.141592653589793 rad - pos: -1.5,-23.5 + pos: 29.5,23.5 parent: 6747 type: Transform - - color: '#E5CCFFFF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24984 + - uid: 26187 components: - - rot: -1.5707963267948966 rad - pos: -5.5,-26.5 + - rot: 3.141592653589793 rad + pos: 29.5,22.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24985 + - uid: 26188 components: - - rot: -1.5707963267948966 rad - pos: -6.5,-26.5 + - rot: 1.5707963267948966 rad + pos: 28.5,21.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24986 + - uid: 26198 components: - rot: -1.5707963267948966 rad - pos: -9.5,-26.5 + pos: 67.5,18.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24987 + - uid: 26200 components: - - rot: -1.5707963267948966 rad - pos: -7.5,-26.5 + - rot: 3.141592653589793 rad + pos: 30.5,32.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24992 + - uid: 26201 components: - rot: 3.141592653589793 rad - pos: -18.5,-34.5 + pos: 30.5,31.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24993 + - uid: 26202 components: - rot: 3.141592653589793 rad - pos: -18.5,-33.5 + pos: 30.5,30.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24994 + - uid: 26203 components: - rot: 3.141592653589793 rad - pos: -18.5,-32.5 + pos: 30.5,29.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24995 + - uid: 26204 components: - - rot: 1.5707963267948966 rad - pos: -17.5,-31.5 + - rot: 3.141592653589793 rad + pos: 30.5,28.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24996 + - uid: 26205 components: - - rot: 1.5707963267948966 rad - pos: -16.5,-31.5 + - rot: 3.141592653589793 rad + pos: 30.5,27.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24997 + - uid: 26206 components: - rot: 1.5707963267948966 rad - pos: -15.5,-31.5 + pos: 31.5,26.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24998 + - uid: 26207 components: - rot: 1.5707963267948966 rad - pos: -14.5,-31.5 + pos: 32.5,26.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24999 + - uid: 26208 components: - rot: 1.5707963267948966 rad - pos: -13.5,-31.5 + pos: 33.5,26.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25000 + - uid: 26209 components: - rot: 1.5707963267948966 rad - pos: -12.5,-31.5 + pos: 34.5,26.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25001 + - uid: 26210 components: - - rot: 1.5707963267948966 rad - pos: -11.5,-31.5 + - pos: 30.5,25.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25004 + - uid: 26211 components: - - rot: -1.5707963267948966 rad - pos: -13.5,-26.5 + - pos: 30.5,24.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25005 + - uid: 26212 components: - - rot: -1.5707963267948966 rad - pos: -14.5,-26.5 + - pos: 30.5,23.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25006 + - uid: 26213 components: - - rot: -1.5707963267948966 rad - pos: -16.5,-25.5 + - pos: 30.5,22.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25007 + - uid: 26214 components: - - rot: -1.5707963267948966 rad - pos: -17.5,-25.5 + - pos: 30.5,21.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25008 + - uid: 26215 components: - rot: -1.5707963267948966 rad - pos: -18.5,-25.5 + pos: 31.5,20.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25009 + - uid: 26216 components: - rot: -1.5707963267948966 rad - pos: -19.5,-25.5 + pos: 32.5,20.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25010 + - uid: 26217 components: - rot: -1.5707963267948966 rad - pos: -20.5,-25.5 + pos: 33.5,20.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25011 + - uid: 26218 components: - rot: -1.5707963267948966 rad - pos: -21.5,-25.5 + pos: 34.5,20.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25021 + - uid: 26219 components: - - pos: -23.5,-19.5 + - rot: -1.5707963267948966 rad + pos: 35.5,20.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25022 + - uid: 26220 components: - - pos: -23.5,-20.5 + - rot: -1.5707963267948966 rad + pos: 36.5,20.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25023 + - uid: 26221 components: - - pos: -23.5,-21.5 + - rot: -1.5707963267948966 rad + pos: 37.5,20.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25024 + - uid: 26229 components: - - pos: -23.5,-22.5 + - rot: 1.5707963267948966 rad + pos: 52.5,7.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25025 + - uid: 26230 components: - - pos: -23.5,-23.5 + - rot: 1.5707963267948966 rad + pos: 53.5,7.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25026 + - uid: 26231 components: - - pos: -23.5,-24.5 + - rot: 1.5707963267948966 rad + pos: 55.5,7.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25027 + - uid: 26232 components: - - rot: -1.5707963267948966 rad - pos: -22.5,-25.5 + - rot: 1.5707963267948966 rad + pos: 56.5,7.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25029 + - uid: 26233 components: - - pos: -23.5,-26.5 + - rot: 1.5707963267948966 rad + pos: 57.5,7.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25030 + - uid: 26234 components: - - pos: -23.5,-27.5 + - rot: 1.5707963267948966 rad + pos: 58.5,7.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25031 + - uid: 26235 components: - - rot: -1.5707963267948966 rad - pos: -24.5,-28.5 + - rot: 1.5707963267948966 rad + pos: 59.5,7.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25032 + - uid: 26236 components: - - rot: -1.5707963267948966 rad - pos: -25.5,-28.5 + - rot: 1.5707963267948966 rad + pos: 60.5,7.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25033 + - uid: 26237 components: - - rot: -1.5707963267948966 rad - pos: -26.5,-28.5 + - rot: 1.5707963267948966 rad + pos: 49.5,12.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25034 + - uid: 26238 components: - - rot: 3.141592653589793 rad - pos: -27.5,-29.5 + - rot: 1.5707963267948966 rad + pos: 50.5,12.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25035 + - uid: 26239 components: - rot: 1.5707963267948966 rad - pos: -28.5,-27.5 + pos: 12.5,20.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25036 + - uid: 26240 components: - rot: 1.5707963267948966 rad - pos: -28.5,-30.5 + pos: 53.5,12.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25043 + - uid: 26241 components: - - rot: 3.141592653589793 rad - pos: -11.5,-25.5 + - rot: 1.5707963267948966 rad + pos: 54.5,12.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25044 + - uid: 26242 components: - - rot: 3.141592653589793 rad - pos: -11.5,-26.5 + - rot: 1.5707963267948966 rad + pos: 55.5,12.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25045 + - uid: 26243 components: - - rot: 3.141592653589793 rad - pos: -11.5,-27.5 + - rot: 1.5707963267948966 rad + pos: 56.5,12.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25046 + - uid: 26244 components: - rot: 1.5707963267948966 rad - pos: -12.5,-28.5 + pos: 57.5,12.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25047 + - uid: 26245 components: - rot: 1.5707963267948966 rad - pos: -13.5,-28.5 + pos: 58.5,12.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25048 + - uid: 26246 components: - rot: 1.5707963267948966 rad - pos: -14.5,-28.5 + pos: 59.5,12.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25049 + - uid: 26247 components: - rot: 1.5707963267948966 rad - pos: -15.5,-28.5 + pos: 60.5,12.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25050 + - uid: 26248 components: - rot: 1.5707963267948966 rad - pos: -16.5,-28.5 + pos: 61.5,12.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25051 + - uid: 26249 components: - rot: 1.5707963267948966 rad - pos: -17.5,-28.5 + pos: 62.5,12.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25052 + - uid: 26250 components: - - pos: -11.5,-29.5 + - pos: 51.5,11.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25053 + - uid: 26251 components: - - rot: -1.5707963267948966 rad - pos: -10.5,-30.5 + - pos: 51.5,10.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25054 + - uid: 26252 components: - - rot: -1.5707963267948966 rad - pos: -9.5,-30.5 + - pos: 51.5,9.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25055 + - uid: 26253 components: - - rot: -1.5707963267948966 rad - pos: -8.5,-30.5 + - pos: 51.5,8.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25056 + - uid: 26256 components: - rot: -1.5707963267948966 rad - pos: -7.5,-30.5 + pos: 19.5,14.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25057 + - uid: 26257 components: - rot: -1.5707963267948966 rad - pos: -6.5,-30.5 + pos: 20.5,14.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25058 + - uid: 26258 components: - rot: -1.5707963267948966 rad - pos: -5.5,-30.5 + pos: 21.5,14.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25059 + - uid: 26259 components: - rot: 3.141592653589793 rad - pos: -11.5,-31.5 + pos: 22.5,13.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25060 + - uid: 26260 components: - rot: 3.141592653589793 rad - pos: -11.5,-32.5 + pos: 22.5,12.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25061 + - uid: 26261 components: - rot: 3.141592653589793 rad - pos: -11.5,-33.5 + pos: 22.5,11.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25062 + - uid: 26262 components: - rot: 3.141592653589793 rad - pos: -11.5,-34.5 + pos: 22.5,10.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25063 + - uid: 26263 components: - rot: 3.141592653589793 rad - pos: -11.5,-35.5 + pos: 22.5,15.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25066 + - uid: 26264 components: - rot: 3.141592653589793 rad - pos: -19.5,-34.5 + pos: 22.5,16.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25067 + - uid: 26265 components: - - rot: 3.141592653589793 rad - pos: -19.5,-33.5 + - rot: 1.5707963267948966 rad + pos: 23.5,17.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25068 + - uid: 26266 components: - - rot: 3.141592653589793 rad - pos: -19.5,-32.5 + - rot: 1.5707963267948966 rad + pos: 24.5,17.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25069 + - uid: 26267 components: - - rot: 3.141592653589793 rad - pos: -19.5,-31.5 + - rot: 1.5707963267948966 rad + pos: 25.5,17.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25070 + - uid: 26268 components: - - rot: 3.141592653589793 rad - pos: -19.5,-30.5 + - rot: 1.5707963267948966 rad + pos: 26.5,17.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25071 + - uid: 26269 components: - - rot: 3.141592653589793 rad - pos: -19.5,-29.5 + - rot: 1.5707963267948966 rad + pos: 27.5,17.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25072 + - uid: 26270 components: - rot: 1.5707963267948966 rad - pos: -20.5,-28.5 + pos: 28.5,17.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25073 + - uid: 26271 components: - rot: 1.5707963267948966 rad - pos: -18.5,-28.5 + pos: 29.5,17.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25077 + - uid: 26272 components: - - pos: -0.5,-23.5 + - rot: 1.5707963267948966 rad + pos: 30.5,17.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25078 + - uid: 26273 components: - - pos: -0.5,-24.5 + - rot: 1.5707963267948966 rad + pos: 31.5,17.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25079 + - uid: 26274 components: - - pos: -0.5,-25.5 + - rot: 1.5707963267948966 rad + pos: 32.5,17.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25081 + - uid: 26278 components: - - rot: 1.5707963267948966 rad - pos: -0.5,-25.5 + - pos: 34.5,13.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25082 + - uid: 26280 components: - - rot: 1.5707963267948966 rad - pos: 0.5,-25.5 + - pos: 37.5,20.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25083 + - uid: 26281 components: - - rot: 1.5707963267948966 rad - pos: 1.5,-25.5 + - pos: 37.5,19.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25084 + - uid: 26282 components: - - rot: 1.5707963267948966 rad - pos: 2.5,-25.5 + - pos: 37.5,18.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25087 + - uid: 26283 components: - - rot: 1.5707963267948966 rad - pos: -2.5,-25.5 + - pos: 37.5,17.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25088 + - uid: 26284 components: - - rot: 1.5707963267948966 rad - pos: -3.5,-25.5 + - pos: 37.5,16.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25089 + - uid: 26285 components: - - rot: 1.5707963267948966 rad - pos: -4.5,-25.5 + - pos: 37.5,15.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25090 + - uid: 26286 components: - - rot: 1.5707963267948966 rad - pos: -5.5,-25.5 + - pos: 37.5,14.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25091 + - uid: 26287 components: - - pos: -6.5,-24.5 + - pos: 37.5,13.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25092 + - uid: 26288 components: - - rot: -1.5707963267948966 rad - pos: -7.5,-23.5 + - pos: 37.5,12.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25093 + - uid: 26289 components: - rot: -1.5707963267948966 rad - pos: -8.5,-23.5 + pos: 38.5,11.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25094 + - uid: 26290 components: - rot: -1.5707963267948966 rad - pos: -9.5,-23.5 + pos: 39.5,11.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25095 + - uid: 26291 components: - rot: -1.5707963267948966 rad - pos: -10.5,-23.5 + pos: 40.5,11.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25097 + - uid: 26292 components: - - rot: 1.5707963267948966 rad - pos: -12.5,-24.5 + - rot: -1.5707963267948966 rad + pos: 41.5,11.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25098 + - uid: 26293 components: - - rot: 1.5707963267948966 rad - pos: -13.5,-24.5 + - rot: -1.5707963267948966 rad + pos: 42.5,11.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25099 + - uid: 26294 components: - - rot: 1.5707963267948966 rad - pos: -14.5,-24.5 + - rot: -1.5707963267948966 rad + pos: 43.5,11.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25100 + - uid: 26295 components: - - rot: 1.5707963267948966 rad - pos: -15.5,-24.5 + - rot: -1.5707963267948966 rad + pos: 44.5,11.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25101 + - uid: 26296 components: - - rot: 1.5707963267948966 rad - pos: -16.5,-24.5 + - rot: -1.5707963267948966 rad + pos: 45.5,11.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25102 + - uid: 26297 components: - - rot: 1.5707963267948966 rad - pos: -17.5,-24.5 + - rot: -1.5707963267948966 rad + pos: 46.5,11.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25103 + - uid: 26298 components: - rot: 1.5707963267948966 rad - pos: -18.5,-24.5 + pos: 14.5,20.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25104 + - uid: 26299 components: - rot: 1.5707963267948966 rad - pos: -19.5,-24.5 + pos: 15.5,20.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25105 + - uid: 26300 components: - rot: 1.5707963267948966 rad - pos: -20.5,-24.5 + pos: 16.5,20.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25106 + - uid: 26301 components: - - rot: 1.5707963267948966 rad - pos: -21.5,-24.5 + - pos: 17.5,19.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25107 + - uid: 26302 components: - - rot: 1.5707963267948966 rad - pos: -22.5,-24.5 + - rot: -1.5707963267948966 rad + pos: 16.5,18.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25108 + - uid: 26303 components: - - rot: 1.5707963267948966 rad - pos: -23.5,-24.5 + - rot: -1.5707963267948966 rad + pos: 18.5,18.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25118 + - uid: 26304 components: - - rot: 3.141592653589793 rad - pos: -24.5,-28.5 + - rot: -1.5707963267948966 rad + pos: 19.5,18.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25119 + - uid: 26305 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,18.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 26306 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,18.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 26309 components: - rot: 3.141592653589793 rad - pos: -24.5,-27.5 + pos: 22.5,20.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25120 + - uid: 26310 components: - rot: 3.141592653589793 rad - pos: -24.5,-26.5 + pos: 22.5,21.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25121 + - uid: 26311 components: - rot: 3.141592653589793 rad - pos: -24.5,-25.5 + pos: 22.5,22.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25122 + - uid: 26312 components: - rot: 3.141592653589793 rad - pos: -24.5,-23.5 + pos: 22.5,23.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25123 + - uid: 26313 components: - rot: 3.141592653589793 rad - pos: -24.5,-22.5 + pos: 22.5,24.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25124 + - uid: 26314 components: - rot: 3.141592653589793 rad - pos: -24.5,-21.5 + pos: 22.5,25.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25125 + - uid: 26315 components: - rot: 3.141592653589793 rad - pos: -24.5,-20.5 + pos: 22.5,26.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25126 + - uid: 26319 components: - - rot: 1.5707963267948966 rad - pos: -25.5,-19.5 + - rot: -1.5707963267948966 rad + pos: 18.5,24.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25127 + - uid: 26320 components: - - rot: 1.5707963267948966 rad - pos: -26.5,-19.5 + - rot: -1.5707963267948966 rad + pos: 17.5,24.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25128 + - uid: 26321 components: - - pos: -27.5,-18.5 + - rot: -1.5707963267948966 rad + pos: 16.5,24.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25129 + - uid: 26322 components: - rot: -1.5707963267948966 rad - pos: -28.5,-17.5 + pos: 15.5,24.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25130 + - uid: 26323 components: - rot: -1.5707963267948966 rad - pos: -28.5,-22.5 + pos: 14.5,24.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25132 + - uid: 26324 components: - rot: 3.141592653589793 rad - pos: -27.5,-21.5 + pos: 13.5,23.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25133 + - uid: 26325 components: - rot: 3.141592653589793 rad - pos: -27.5,-20.5 + pos: 13.5,22.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25134 + - uid: 26326 components: - rot: 3.141592653589793 rad - pos: -27.5,-26.5 + pos: 13.5,21.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25149 + - uid: 26328 components: - - pos: -10.5,-15.5 + - pos: 13.5,25.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25150 + - uid: 26334 components: - - pos: -10.5,-16.5 + - rot: -1.5707963267948966 rad + pos: 5.5,26.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25151 + - uid: 26335 components: - - pos: -10.5,-17.5 + - rot: 3.141592653589793 rad + pos: 4.5,25.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25152 + - uid: 26338 components: - rot: -1.5707963267948966 rad - pos: -9.5,-18.5 + pos: 16.5,25.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25153 + - uid: 26339 components: - rot: -1.5707963267948966 rad - pos: -8.5,-18.5 + pos: 15.5,25.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25154 + - uid: 26340 components: - - rot: -1.5707963267948966 rad - pos: -7.5,-18.5 + - rot: 3.141592653589793 rad + pos: 14.5,26.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25155 + - uid: 26347 components: - - rot: -1.5707963267948966 rad - pos: -6.5,-18.5 + - pos: 14.5,24.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25156 + - uid: 26348 components: - - rot: -1.5707963267948966 rad - pos: -5.5,-18.5 + - pos: 14.5,23.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25157 + - uid: 26349 components: - - rot: -1.5707963267948966 rad - pos: -4.5,-18.5 + - pos: 14.5,22.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25158 + - uid: 26350 components: - rot: -1.5707963267948966 rad - pos: -3.5,-18.5 + pos: 13.5,21.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25159 + - uid: 26351 components: - rot: -1.5707963267948966 rad - pos: -2.5,-18.5 + pos: 12.5,21.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25160 + - uid: 26352 components: - - rot: 3.141592653589793 rad - pos: -10.5,-19.5 + - rot: -1.5707963267948966 rad + pos: 15.5,21.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25162 + - uid: 26353 components: - - rot: 3.141592653589793 rad - pos: -10.5,-21.5 + - rot: -1.5707963267948966 rad + pos: 16.5,21.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25163 + - uid: 26354 components: - - rot: 3.141592653589793 rad - pos: -10.5,-22.5 + - rot: -1.5707963267948966 rad + pos: 17.5,21.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25164 + - uid: 26355 components: - - rot: 3.141592653589793 rad - pos: -10.5,-23.5 + - rot: -1.5707963267948966 rad + pos: 19.5,21.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25165 + - uid: 26356 components: - - rot: 3.141592653589793 rad - pos: -10.5,-24.5 + - rot: -1.5707963267948966 rad + pos: 20.5,21.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25166 + - uid: 26357 components: - - rot: 3.141592653589793 rad - pos: -10.5,-25.5 + - rot: -1.5707963267948966 rad + pos: 21.5,21.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25167 + - uid: 26358 components: - - rot: 3.141592653589793 rad - pos: -11.5,-22.5 + - rot: -1.5707963267948966 rad + pos: 22.5,21.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25168 + - uid: 26359 components: - - rot: 3.141592653589793 rad - pos: -11.5,-20.5 + - rot: -1.5707963267948966 rad + pos: 24.5,21.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25169 + - uid: 26360 components: - - rot: 3.141592653589793 rad - pos: -11.5,-19.5 + - rot: -1.5707963267948966 rad + pos: 25.5,21.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25170 + - uid: 26361 components: - rot: 3.141592653589793 rad - pos: -11.5,-18.5 + pos: 26.5,20.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25171 + - uid: 26362 components: - - rot: 1.5707963267948966 rad - pos: -10.5,-17.5 + - rot: 3.141592653589793 rad + pos: 23.5,22.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25172 + - uid: 26363 components: - - rot: 1.5707963267948966 rad - pos: -9.5,-17.5 + - rot: 3.141592653589793 rad + pos: 23.5,23.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25173 + - uid: 26364 components: - - rot: 1.5707963267948966 rad - pos: -8.5,-17.5 + - rot: 3.141592653589793 rad + pos: 23.5,24.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25174 + - uid: 26365 components: - - rot: 1.5707963267948966 rad - pos: -7.5,-17.5 + - rot: 3.141592653589793 rad + pos: 23.5,25.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25175 + - uid: 26366 components: - - rot: 1.5707963267948966 rad - pos: -6.5,-17.5 + - rot: 3.141592653589793 rad + pos: 23.5,26.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25176 + - uid: 26832 components: - - rot: 1.5707963267948966 rad - pos: -5.5,-17.5 + - rot: -1.5707963267948966 rad + pos: -18.5,6.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25177 + - uid: 26833 components: - - rot: 1.5707963267948966 rad - pos: -4.5,-17.5 + - rot: -1.5707963267948966 rad + pos: -19.5,6.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25180 + - uid: 26834 components: - - pos: -11.5,-15.5 + - rot: 3.141592653589793 rad + pos: -20.5,5.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25181 + - uid: 26835 components: - - pos: -11.5,-16.5 + - rot: 3.141592653589793 rad + pos: -20.5,4.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25186 + - uid: 26836 components: - - pos: -19.5,-20.5 + - rot: 3.141592653589793 rad + pos: -20.5,3.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25187 + - uid: 26837 components: - - rot: -1.5707963267948966 rad - pos: -18.5,-21.5 + - rot: 3.141592653589793 rad + pos: -20.5,2.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25188 + - uid: 26838 components: - - rot: -1.5707963267948966 rad - pos: -17.5,-21.5 + - rot: 3.141592653589793 rad + pos: -20.5,1.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25189 + - uid: 26839 components: - - rot: -1.5707963267948966 rad - pos: -16.5,-21.5 + - rot: 3.141592653589793 rad + pos: -20.5,0.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25190 + - uid: 26840 components: - - rot: -1.5707963267948966 rad - pos: -15.5,-21.5 + - rot: 3.141592653589793 rad + pos: -19.5,0.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25191 + - uid: 26841 components: - - rot: -1.5707963267948966 rad - pos: -14.5,-21.5 + - rot: 3.141592653589793 rad + pos: -19.5,1.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25192 + - uid: 26842 components: - - rot: -1.5707963267948966 rad - pos: -13.5,-21.5 + - rot: 3.141592653589793 rad + pos: -19.5,2.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25193 + - uid: 26843 components: - - rot: -1.5707963267948966 rad - pos: -12.5,-21.5 + - rot: 3.141592653589793 rad + pos: -19.5,3.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25194 + - uid: 26844 components: - - rot: -1.5707963267948966 rad - pos: -17.5,-20.5 + - rot: 1.5707963267948966 rad + pos: -18.5,4.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25195 + - uid: 26845 components: - - rot: -1.5707963267948966 rad - pos: -16.5,-20.5 + - pos: -22.5,0.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25196 + - uid: 26846 components: - - rot: -1.5707963267948966 rad - pos: -15.5,-20.5 + - pos: -22.5,1.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25197 + - uid: 26847 components: - - rot: -1.5707963267948966 rad - pos: -14.5,-20.5 + - pos: -22.5,3.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25198 + - uid: 26848 components: - - rot: -1.5707963267948966 rad - pos: -13.5,-20.5 + - pos: -22.5,4.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25199 + - uid: 26849 components: - - rot: -1.5707963267948966 rad - pos: -12.5,-20.5 + - pos: -22.5,6.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25200 + - uid: 26850 components: - - rot: -1.5707963267948966 rad - pos: -11.5,-20.5 + - pos: -22.5,7.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25419 + - uid: 26851 components: - rot: -1.5707963267948966 rad - pos: -47.5,-11.5 + pos: -23.5,8.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25420 + - uid: 26852 components: - rot: -1.5707963267948966 rad - pos: -48.5,-11.5 + pos: -24.5,8.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25421 + - uid: 26853 components: - rot: -1.5707963267948966 rad - pos: -49.5,-11.5 + pos: -24.5,7.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25422 + - uid: 26854 components: - rot: -1.5707963267948966 rad - pos: -50.5,-11.5 + pos: -24.5,5.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25423 + - uid: 26855 components: - rot: -1.5707963267948966 rad - pos: -51.5,-11.5 + pos: -23.5,5.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25428 + - uid: 26856 components: - rot: -1.5707963267948966 rad - pos: -46.5,-8.5 + pos: -24.5,4.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25429 + - uid: 26857 components: - rot: -1.5707963267948966 rad - pos: -47.5,-8.5 + pos: -24.5,2.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25430 + - uid: 26858 components: - rot: -1.5707963267948966 rad - pos: -48.5,-8.5 + pos: -23.5,2.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25431 + - uid: 26859 components: - rot: -1.5707963267948966 rad - pos: -49.5,-8.5 + pos: -24.5,1.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25432 + - uid: 26860 components: - - rot: -1.5707963267948966 rad - pos: -50.5,-8.5 + - rot: 3.141592653589793 rad + pos: -23.5,6.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25433 + - uid: 26861 components: - - rot: -1.5707963267948966 rad - pos: -51.5,-8.5 + - rot: 3.141592653589793 rad + pos: -23.5,5.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25434 + - uid: 26862 components: - - rot: -1.5707963267948966 rad - pos: -52.5,-8.5 + - rot: 3.141592653589793 rad + pos: -23.5,3.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25435 + - uid: 26863 components: - - rot: -1.5707963267948966 rad - pos: -53.5,-8.5 + - rot: 3.141592653589793 rad + pos: -23.5,2.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25439 + - uid: 26864 components: - - pos: -54.5,-9.5 + - rot: 3.141592653589793 rad + pos: -23.5,0.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 25440 + - uid: 26900 components: - - pos: -54.5,-10.5 + - pos: 7.5,25.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25591 + - uid: 26910 components: - - rot: 3.141592653589793 rad - pos: 5.5,25.5 + - pos: 12.5,-19.5 parent: 6747 type: Transform - - uid: 25592 + - color: '#99FFFFFF' + type: AtmosPipeColor + - uid: 26915 components: - - rot: 3.141592653589793 rad - pos: 5.5,26.5 + - rot: 1.5707963267948966 rad + pos: 13.5,-23.5 parent: 6747 type: Transform - - uid: 25593 + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 26918 components: - - rot: 3.141592653589793 rad - pos: 5.5,27.5 + - pos: 13.5,-23.5 parent: 6747 type: Transform - - uid: 25594 + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 26922 components: - - rot: 3.141592653589793 rad - pos: 5.5,28.5 + - pos: 13.5,-22.5 parent: 6747 type: Transform - - uid: 25595 + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 26923 components: - - rot: 3.141592653589793 rad - pos: 5.5,29.5 + - pos: 13.5,-24.5 parent: 6747 type: Transform - - uid: 25596 + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 26998 components: - - rot: 3.141592653589793 rad - pos: 5.5,30.5 + - rot: -1.5707963267948966 rad + pos: 17.5,13.5 parent: 6747 type: Transform - - uid: 25597 + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 26999 components: - - rot: 3.141592653589793 rad - pos: 5.5,31.5 + - rot: -1.5707963267948966 rad + pos: 18.5,13.5 parent: 6747 type: Transform - - uid: 25598 + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 27000 components: - rot: 3.141592653589793 rad - pos: 5.5,32.5 + pos: 19.5,12.5 parent: 6747 type: Transform - - uid: 25601 + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 27015 components: - - pos: 7.5,24.5 + - rot: 1.5707963267948966 rad + pos: 4.5,27.5 parent: 6747 type: Transform - - uid: 25602 + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 27016 components: - - pos: 7.5,25.5 + - pos: 3.5,26.5 parent: 6747 type: Transform - - uid: 25603 + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 27017 components: - - rot: -1.5707963267948966 rad - pos: 8.5,26.5 + - pos: 3.5,25.5 parent: 6747 type: Transform - - uid: 25604 + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 27018 components: - - rot: -1.5707963267948966 rad - pos: 9.5,26.5 + - pos: 6.5,26.5 parent: 6747 type: Transform - - uid: 25605 + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 27019 components: - - rot: -1.5707963267948966 rad - pos: 10.5,26.5 + - pos: 6.5,25.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 27022 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,26.5 parent: 6747 type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 27038 + components: + - pos: 3.5,-72.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor - proto: GasPipeTJunction entities: + - uid: 293 + components: + - rot: 3.141592653589793 rad + pos: -18.5,9.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor - uid: 341 components: - pos: 5.5,33.5 parent: 6747 type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 1782 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,33.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor - uid: 2793 components: - rot: 3.141592653589793 rad @@ -97338,6 +103551,14 @@ entities: - pos: 45.5,32.5 parent: 6747 type: Transform + - color: '#66FF66FF' + type: AtmosPipeColor + - uid: 8056 + components: + - rot: 3.141592653589793 rad + pos: 53.5,35.5 + parent: 6747 + type: Transform - color: '#CC6600FF' type: AtmosPipeColor - uid: 8118 @@ -97402,14 +103623,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 11155 - components: - - rot: -1.5707963267948966 rad - pos: 22.5,22.5 - parent: 6747 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - uid: 11231 components: - rot: -1.5707963267948966 rad @@ -97468,260 +103681,259 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13054 + - uid: 12017 components: - - rot: -1.5707963267948966 rad - pos: 40.5,17.5 + - rot: 3.141592653589793 rad + pos: 53.5,13.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13057 + - uid: 13018 components: - - pos: 47.5,17.5 + - pos: 48.5,12.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13059 + - uid: 13021 components: - - rot: 1.5707963267948966 rad - pos: 47.5,13.5 + - pos: 26.5,9.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13064 + - uid: 13022 components: - - rot: 1.5707963267948966 rad - pos: 53.5,16.5 + - rot: -1.5707963267948966 rad + pos: 63.5,20.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13101 + - uid: 13023 components: - - rot: 1.5707963267948966 rad - pos: 48.5,8.5 + - pos: 60.5,20.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13103 + - uid: 13059 components: - rot: 1.5707963267948966 rad - pos: 54.5,15.5 + pos: 47.5,13.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13159 + - uid: 13064 components: - - rot: 3.141592653589793 rad - pos: 34.5,10.5 + - rot: 1.5707963267948966 rad + pos: 53.5,16.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13160 + - uid: 13065 components: - rot: 3.141592653589793 rad - pos: 35.5,9.5 + pos: 58.5,29.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#CC6600FF' type: AtmosPipeColor - - uid: 13175 + - uid: 13100 components: - rot: 3.141592653589793 rad - pos: 29.5,10.5 + pos: 54.5,20.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13176 + - uid: 13105 components: - - pos: 20.5,10.5 + - pos: 50.5,13.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13189 + - uid: 13107 components: - - rot: 1.5707963267948966 rad - pos: 24.5,-6.5 + - rot: -1.5707963267948966 rad + pos: 47.5,11.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13212 + - uid: 13121 components: - - pos: 29.5,14.5 + - pos: 60.5,29.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#CC6600FF' type: AtmosPipeColor - - uid: 13242 + - uid: 13128 components: - - rot: -1.5707963267948966 rad - pos: 26.5,15.5 + - pos: 37.5,21.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13254 + - uid: 13132 components: - - rot: -1.5707963267948966 rad - pos: 25.5,-1.5 + - pos: 38.5,20.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13260 + - uid: 13141 components: - - rot: -1.5707963267948966 rad - pos: 32.5,-6.5 + - pos: 61.5,29.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#CC6600FF' type: AtmosPipeColor - - uid: 13263 + - uid: 13157 components: - rot: 3.141592653589793 rad - pos: 30.5,-5.5 + pos: 29.5,21.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13264 + - uid: 13158 components: - - rot: 1.5707963267948966 rad - pos: 25.5,-5.5 + - rot: 3.141592653589793 rad + pos: 38.5,9.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13270 + - uid: 13159 components: - rot: 3.141592653589793 rad - pos: 23.5,14.5 + pos: 34.5,10.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13273 + - uid: 13160 components: - rot: 1.5707963267948966 rad - pos: 17.5,14.5 + pos: 30.5,26.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13274 + - uid: 13189 components: - rot: 1.5707963267948966 rad - pos: 16.5,15.5 + pos: 24.5,-6.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13278 + - uid: 13209 components: - rot: 3.141592653589793 rad - pos: 20.5,15.5 + pos: 22.5,9.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13288 + - uid: 13210 components: - - rot: 3.141592653589793 rad - pos: 22.5,15.5 + - rot: 1.5707963267948966 rad + pos: 22.5,17.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13304 + - uid: 13211 components: - rot: -1.5707963267948966 rad - pos: 23.5,20.5 + pos: 22.5,18.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13305 + - uid: 13254 components: - rot: -1.5707963267948966 rad - pos: 22.5,21.5 + pos: 25.5,-1.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13306 + - uid: 13260 components: - - rot: 1.5707963267948966 rad - pos: 23.5,21.5 + - rot: -1.5707963267948966 rad + pos: 32.5,-6.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13307 + - uid: 13263 components: - - pos: 35.5,-88.5 + - rot: 3.141592653589793 rad + pos: 30.5,-5.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13318 + - uid: 13264 components: - - pos: 23.5,37.5 + - rot: 1.5707963267948966 rad + pos: 25.5,-5.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13319 + - uid: 13307 components: - - pos: 22.5,36.5 + - pos: 35.5,-88.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13326 + - uid: 13329 components: - rot: 3.141592653589793 rad - pos: 17.5,27.5 + pos: 12.5,27.5 parent: 6747 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13327 + - uid: 13331 components: - - pos: 17.5,26.5 + - pos: 11.5,32.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13329 + - uid: 13336 components: - - rot: 3.141592653589793 rad - pos: 12.5,27.5 + - rot: -1.5707963267948966 rad + pos: 60.5,38.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#00FFFFFF' type: AtmosPipeColor - - uid: 13330 + - uid: 13365 components: - - pos: 12.5,33.5 + - rot: -1.5707963267948966 rad + pos: 60.5,34.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#00FFFFFF' type: AtmosPipeColor - - uid: 13331 + - uid: 13373 components: - - pos: 11.5,32.5 + - rot: 3.141592653589793 rad + pos: 60.5,33.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#00FFFFFF' type: AtmosPipeColor - uid: 13453 components: @@ -97731,13 +103943,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13457 - components: - - pos: 20.5,14.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - uid: 13497 components: - rot: 1.5707963267948966 rad @@ -99111,14 +105316,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16580 - components: - - rot: 1.5707963267948966 rad - pos: -21.5,10.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - uid: 16607 components: - rot: 3.141592653589793 rad @@ -99150,6 +105347,22 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor + - uid: 16722 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-18.5 + parent: 6747 + type: Transform + - color: '#99FFFFFF' + type: AtmosPipeColor + - uid: 16724 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-26.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor - uid: 16848 components: - rot: 1.5707963267948966 rad @@ -99180,6 +105393,30 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor + - uid: 17648 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-73.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 21927 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-72.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 21929 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,29.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor - uid: 22278 components: - rot: 3.141592653589793 rad @@ -99217,7 +105454,31 @@ entities: - pos: 46.5,32.5 parent: 6747 type: Transform - - color: '#CC6600FF' + - color: '#66FF66FF' + type: AtmosPipeColor + - uid: 22743 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,11.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 22751 + components: + - rot: 3.141592653589793 rad + pos: 37.5,10.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 22753 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,24.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' type: AtmosPipeColor - uid: 23660 components: @@ -99263,6 +105524,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor + - uid: 23833 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,25.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor - uid: 23892 components: - rot: 3.141592653589793 rad @@ -99271,6 +105540,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor + - uid: 23903 + components: + - rot: 3.141592653589793 rad + pos: 52.5,12.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor - uid: 24032 components: - rot: 1.5707963267948966 rad @@ -99397,14 +105674,6 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24193 - components: - - rot: 3.141592653589793 rad - pos: -26.5,-0.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - uid: 24194 components: - rot: 3.141592653589793 rad @@ -99415,11 +105684,11 @@ entities: type: AtmosPipeColor - uid: 24195 components: - - rot: 3.141592653589793 rad - pos: -25.5,-1.5 + - rot: -1.5707963267948966 rad + pos: -23.5,1.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - uid: 24197 components: @@ -100118,6 +106387,254 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor + - uid: 25592 + components: + - pos: 66.5,18.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 25600 + components: + - rot: 3.141592653589793 rad + pos: 17.5,18.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 26019 + components: + - rot: 3.141592653589793 rad + pos: 40.5,20.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 26023 + components: + - rot: 1.5707963267948966 rad + pos: 57.5,18.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 26029 + components: + - pos: 57.5,26.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 26052 + components: + - rot: 1.5707963267948966 rad + pos: 50.5,9.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 26057 + components: + - pos: 61.5,13.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 26059 + components: + - pos: 66.5,13.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 26063 + components: + - rot: -1.5707963267948966 rad + pos: 71.5,9.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 26071 + components: + - pos: 55.5,9.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 26107 + components: + - rot: 1.5707963267948966 rad + pos: 63.5,18.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 26129 + components: + - rot: -1.5707963267948966 rad + pos: 73.5,7.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 26142 + components: + - rot: -1.5707963267948966 rad + pos: 63.5,12.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 26144 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,17.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 26156 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,13.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 26173 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,24.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 26174 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,25.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 26191 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,4.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 26222 + components: + - pos: 51.5,12.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 26223 + components: + - rot: 1.5707963267948966 rad + pos: 51.5,7.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 26224 + components: + - rot: 3.141592653589793 rad + pos: 54.5,7.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 26255 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,14.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 26279 + components: + - rot: 3.141592653589793 rad + pos: 13.5,20.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 26307 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,19.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 26341 + components: + - pos: 26.5,21.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 26342 + components: + - rot: 3.141592653589793 rad + pos: 23.5,21.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 26343 + components: + - rot: 3.141592653589793 rad + pos: 14.5,21.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 26344 + components: + - rot: 3.141592653589793 rad + pos: 18.5,21.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 26820 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,5.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 26821 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,2.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 26921 + components: + - pos: 12.5,-23.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 27012 + components: + - rot: 3.141592653589793 rad + pos: 5.5,27.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor - proto: GasPort entities: - uid: 7258 @@ -100282,6 +106799,67 @@ entities: - pos: -8.5,-84.5 parent: 6747 type: Transform + - uid: 13084 + components: + - rot: 1.5707963267948966 rad + pos: 59.5,33.5 + parent: 6747 + type: Transform + - color: '#00FFFFFF' + type: AtmosPipeColor + - uid: 13145 + components: + - pos: 60.5,32.5 + parent: 6747 + type: Transform + - uid: 13150 + components: + - rot: 3.141592653589793 rad + pos: 61.5,28.5 + parent: 6747 + type: Transform + - color: '#CC6600FF' + type: AtmosPipeColor + - uid: 13151 + components: + - rot: 3.141592653589793 rad + pos: 60.5,28.5 + parent: 6747 + type: Transform + - color: '#CC6600FF' + type: AtmosPipeColor + - uid: 13282 + components: + - rot: 1.5707963267948966 rad + pos: 62.5,28.5 + parent: 6747 + type: Transform + - uid: 13340 + components: + - rot: 1.5707963267948966 rad + pos: 59.5,35.5 + parent: 6747 + type: Transform + - uid: 13341 + components: + - rot: 1.5707963267948966 rad + pos: 59.5,34.5 + parent: 6747 + type: Transform + - color: '#00FFFFFF' + type: AtmosPipeColor + - uid: 14914 + components: + - rot: 3.141592653589793 rad + pos: 13.5,-20.5 + parent: 6747 + type: Transform + - uid: 22211 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-20.5 + parent: 6747 + type: Transform - uid: 23526 components: - rot: 1.5707963267948966 rad @@ -100290,8 +106868,22 @@ entities: type: Transform - color: '#FF9999FF' type: AtmosPipeColor + - uid: 23897 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-19.5 + parent: 6747 + type: Transform - proto: GasPressurePump entities: + - uid: 246 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,9.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor - uid: 7880 components: - pos: 37.5,35.5 @@ -100422,6 +107014,12 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor + - uid: 13283 + components: + - rot: 1.5707963267948966 rad + pos: 63.5,28.5 + parent: 6747 + type: Transform - uid: 15071 components: - rot: -1.5707963267948966 rad @@ -100476,13 +107074,13 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 16581 + - uid: 26911 components: - - rot: 1.5707963267948966 rad - pos: -20.5,10.5 + - rot: 3.141592653589793 rad + pos: 13.5,-19.5 parent: 6747 type: Transform - - color: '#0335FCFF' + - color: '#99FFFFFF' type: AtmosPipeColor - proto: GasRecycler entities: @@ -100491,7 +107089,7 @@ entities: - pos: 45.5,31.5 parent: 6747 type: Transform - - color: '#CC6600FF' + - color: '#66FF66FF' type: AtmosPipeColor - proto: GasThermoMachineFreezer entities: @@ -100519,6 +107117,13 @@ entities: - pos: -3.5,-86.5 parent: 6747 type: Transform + - uid: 22329 + components: + - pos: 13.5,-17.5 + parent: 6747 + type: Transform + - color: '#99FFFFFF' + type: AtmosPipeColor - proto: GasThermoMachineFreezerEnabled entities: - uid: 11825 @@ -100536,7 +107141,7 @@ entities: pos: 47.5,32.5 parent: 6747 type: Transform - - color: '#CC6600FF' + - color: '#66FF66FF' type: AtmosPipeColor - uid: 8146 components: @@ -100605,43 +107210,42 @@ entities: type: Transform - color: '#CC6600FF' type: AtmosPipeColor - - uid: 8109 + - uid: 8210 components: - - rot: 1.5707963267948966 rad - pos: 52.5,35.5 + - rot: 3.141592653589793 rad + pos: 53.5,37.5 parent: 6747 type: Transform - open: False type: GasValve - color: '#CC6600FF' type: AtmosPipeColor - - uid: 14625 + - uid: 11944 components: - - pos: -9.5,-85.5 + - pos: 55.5,34.5 parent: 6747 type: Transform - open: False type: GasValve - - color: '#FF1212FF' + - color: '#CC6600FF' type: AtmosPipeColor - - uid: 14628 + - uid: 14625 components: - - pos: -5.5,-85.5 + - pos: -9.5,-85.5 parent: 6747 type: Transform - open: False type: GasValve - color: '#FF1212FF' type: AtmosPipeColor - - uid: 22503 + - uid: 14628 components: - - rot: 1.5707963267948966 rad - pos: 40.5,31.5 + - pos: -5.5,-85.5 parent: 6747 type: Transform - open: False type: GasValve - - color: '#0335FCFF' + - color: '#FF1212FF' type: AtmosPipeColor - uid: 24983 components: @@ -100653,18 +107257,22 @@ entities: type: AtmosPipeColor - proto: GasVentPump entities: - - uid: 367 + - uid: 7254 components: - - rot: 3.141592653589793 rad - pos: 5.5,23.5 + - pos: 47.5,17.5 parent: 6747 type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor - uid: 8433 components: - rot: -1.5707963267948966 rad pos: 42.5,29.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 304 + type: DeviceNetwork - color: '#0335FCFF' type: AtmosPipeColor - uid: 11770 @@ -100673,42 +107281,14 @@ entities: pos: -8.5,-87.5 parent: 6747 type: Transform - - uid: 12997 - components: - - pos: 53.5,25.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 13058 - components: - - rot: -1.5707963267948966 rad - pos: 48.5,17.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 13060 - components: - - rot: -1.5707963267948966 rad - pos: 58.5,16.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 13061 - components: - - rot: 3.141592653589793 rad - pos: 47.5,7.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - uid: 13062 components: - pos: 53.5,17.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 9063 + type: DeviceNetwork - color: '#0335FCFF' type: AtmosPipeColor - uid: 13246 @@ -100717,14 +107297,9 @@ entities: pos: 23.5,-2.5 parent: 6747 type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 13285 - components: - - rot: 3.141592653589793 rad - pos: 20.5,13.5 - parent: 6747 - type: Transform + - ShutdownSubscribers: + - 8860 + type: DeviceNetwork - color: '#0335FCFF' type: AtmosPipeColor - uid: 13451 @@ -100733,6 +107308,9 @@ entities: pos: 39.5,10.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 1755 + type: DeviceNetwork - color: '#0335FCFF' type: AtmosPipeColor - uid: 13452 @@ -100741,98 +107319,9 @@ entities: pos: 19.5,10.5 parent: 6747 type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 13454 - components: - - rot: -1.5707963267948966 rad - pos: 30.5,14.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 13455 - components: - - rot: 3.141592653589793 rad - pos: 17.5,13.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 13456 - components: - - pos: 17.5,17.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 13458 - components: - - rot: -1.5707963267948966 rad - pos: 24.5,21.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 13459 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,31.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 13460 - components: - - rot: 1.5707963267948966 rad - pos: 20.5,31.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 13461 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,37.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 13462 - components: - - pos: 18.5,40.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 13480 - components: - - pos: 28.5,32.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 13481 - components: - - rot: -1.5707963267948966 rad - pos: 36.5,27.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 13482 - components: - - rot: 3.141592653589793 rad - pos: 28.5,25.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 13483 - components: - - pos: 17.5,28.5 - parent: 6747 - type: Transform + - ShutdownSubscribers: + - 8860 + type: DeviceNetwork - color: '#0335FCFF' type: AtmosPipeColor - uid: 13484 @@ -100841,14 +107330,9 @@ entities: pos: 10.5,27.5 parent: 6747 type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 13485 - components: - - rot: -1.5707963267948966 rad - pos: 13.5,33.5 - parent: 6747 - type: Transform + - ShutdownSubscribers: + - 27003 + type: DeviceNetwork - color: '#0335FCFF' type: AtmosPipeColor - uid: 13486 @@ -101690,6 +108174,9 @@ entities: pos: 10.5,-10.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 13485 + type: DeviceNetwork - color: '#0335FCFF' type: AtmosPipeColor - uid: 16067 @@ -101735,6 +108222,13 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor + - uid: 16723 + components: + - pos: 13.5,-21.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor - uid: 16844 components: - rot: 1.5707963267948966 rad @@ -101767,6 +108261,16 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor + - uid: 22062 + components: + - pos: 12.5,34.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 27005 + type: DeviceNetwork + - color: '#0335FCFF' + type: AtmosPipeColor - uid: 22268 components: - rot: -1.5707963267948966 rad @@ -101781,6 +108285,9 @@ entities: pos: 15.5,5.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 8860 + type: DeviceNetwork - color: '#0335FCFF' type: AtmosPipeColor - uid: 22310 @@ -101845,9 +108352,6 @@ entities: pos: 4.5,-5.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25271 - type: DeviceNetwork - color: '#0335FCFF' type: AtmosPipeColor - uid: 23683 @@ -101856,9 +108360,6 @@ entities: pos: -2.5,-0.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25271 - type: DeviceNetwork - color: '#0335FCFF' type: AtmosPipeColor - uid: 23684 @@ -101867,9 +108368,6 @@ entities: pos: -0.5,-5.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25271 - type: DeviceNetwork - color: '#0335FCFF' type: AtmosPipeColor - uid: 23752 @@ -101877,14 +108375,9 @@ entities: - pos: -12.5,-10.5 parent: 6747 type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 24018 - components: - - rot: 1.5707963267948966 rad - pos: 11.5,21.5 - parent: 6747 - type: Transform + - ShutdownSubscribers: + - 13485 + type: DeviceNetwork - color: '#0335FCFF' type: AtmosPipeColor - uid: 24049 @@ -101947,6 +108440,9 @@ entities: pos: -5.5,-6.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 25271 + type: DeviceNetwork - color: '#0335FCFF' type: AtmosPipeColor - uid: 24120 @@ -101955,7 +108451,7 @@ entities: parent: 6747 type: Transform - ShutdownSubscribers: - - 25273 + - 13930 type: DeviceNetwork - color: '#0335FCFF' type: AtmosPipeColor @@ -101965,6 +108461,9 @@ entities: pos: -5.5,2.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 13930 + type: DeviceNetwork - color: '#0335FCFF' type: AtmosPipeColor - uid: 24175 @@ -101973,6 +108472,9 @@ entities: pos: -17.5,-2.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 13930 + type: DeviceNetwork - color: '#0335FCFF' type: AtmosPipeColor - uid: 24178 @@ -101982,7 +108484,7 @@ entities: parent: 6747 type: Transform - ShutdownSubscribers: - - 25273 + - 13930 type: DeviceNetwork - color: '#0335FCFF' type: AtmosPipeColor @@ -102019,27 +108521,6 @@ entities: type: DeviceNetwork - color: '#0335FCFF' type: AtmosPipeColor - - uid: 24236 - components: - - pos: -26.5,1.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 24237 - components: - - pos: -23.5,1.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - - uid: 24238 - components: - - pos: -20.5,1.5 - parent: 6747 - type: Transform - - color: '#0335FCFF' - type: AtmosPipeColor - uid: 24259 components: - pos: -38.5,7.5 @@ -102595,212 +109076,445 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor -- proto: GasVentScrubber - entities: - - uid: 7909 + - uid: 25595 components: - - pos: 36.5,32.5 + - pos: 3.5,-70.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - ShutdownSubscribers: + - 22234 + type: DeviceNetwork + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 11508 + - uid: 25606 components: - rot: 3.141592653589793 rad - pos: 36.5,-29.5 + pos: 47.5,8.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - ShutdownSubscribers: + - 9063 + type: DeviceNetwork + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 12996 + - uid: 26028 components: - - pos: 54.5,25.5 + - rot: -1.5707963267948966 rad + pos: 59.5,18.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - ShutdownSubscribers: + - 26991 + type: DeviceNetwork + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13089 + - uid: 26030 + components: + - rot: -1.5707963267948966 rad + pos: 58.5,26.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 26989 + type: DeviceNetwork + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 26031 components: - rot: 1.5707963267948966 rad - pos: 39.5,17.5 + pos: 54.5,26.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - ShutdownSubscribers: + - 304 + type: DeviceNetwork + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13105 + - uid: 26056 components: - - pos: 54.5,17.5 + - rot: 3.141592653589793 rad + pos: 61.5,11.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - ShutdownSubscribers: + - 9063 + type: DeviceNetwork + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13106 + - uid: 26058 + components: + - rot: 3.141592653589793 rad + pos: 66.5,11.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 26945 + type: DeviceNetwork + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 26064 + components: + - rot: 3.141592653589793 rad + pos: 71.5,6.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 26945 + type: DeviceNetwork + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 26069 + components: + - rot: 1.5707963267948966 rad + pos: 68.5,9.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 26958 + type: DeviceNetwork + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 26070 + components: + - rot: 3.141592653589793 rad + pos: 50.5,8.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 26958 + type: DeviceNetwork + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 26072 + components: + - rot: 3.141592653589793 rad + pos: 55.5,8.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 26958 + type: DeviceNetwork + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 26074 + components: + - rot: 3.141592653589793 rad + pos: 60.5,8.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 26958 + type: DeviceNetwork + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 26169 components: - rot: -1.5707963267948966 rad - pos: 58.5,15.5 + pos: 35.5,25.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13126 + - uid: 26170 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,32.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 26172 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,24.5 + parent: 6747 + type: Transform + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 26276 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,14.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 26970 + type: DeviceNetwork + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 26317 components: - rot: 3.141592653589793 rad - pos: 48.5,7.5 + pos: 26.5,19.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - ShutdownSubscribers: + - 26970 + type: DeviceNetwork + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13162 + - uid: 26337 components: - rot: -1.5707963267948966 rad - pos: 39.5,9.5 + pos: 17.5,25.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - ShutdownSubscribers: + - 27003 + type: DeviceNetwork + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13208 + - uid: 26345 components: - - pos: 30.5,1.5 + - pos: 18.5,22.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - ShutdownSubscribers: + - 27009 + type: DeviceNetwork + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13332 + - uid: 26346 components: - - pos: -1.5,35.5 + - rot: 1.5707963267948966 rad + pos: 11.5,21.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - ShutdownSubscribers: + - 27009 + type: DeviceNetwork + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13333 + - uid: 26367 + components: + - pos: 23.5,27.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 27005 + type: DeviceNetwork + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 26828 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,7.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 13930 + type: DeviceNetwork + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 26829 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,4.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 13930 + type: DeviceNetwork + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 26830 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,1.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 13930 + type: DeviceNetwork + - color: '#0335FCFF' + type: AtmosPipeColor + - uid: 26831 components: - rot: -1.5707963267948966 rad - pos: 13.5,32.5 + pos: -17.5,6.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - ShutdownSubscribers: + - 27036 + type: DeviceNetwork + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13334 + - uid: 26997 components: - - rot: 3.141592653589793 rad - pos: 11.5,25.5 + - pos: 16.5,14.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - ShutdownSubscribers: + - 26970 + type: DeviceNetwork + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13335 + - uid: 27011 components: - rot: 1.5707963267948966 rad - pos: 19.5,9.5 + pos: 4.5,29.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - ShutdownSubscribers: + - 27003 + type: DeviceNetwork + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13336 + - uid: 27020 components: - - pos: 20.5,16.5 + - rot: 3.141592653589793 rad + pos: 3.5,24.5 parent: 6747 type: Transform - - color: '#FF1212FF' + - ShutdownSubscribers: + - 27003 + type: DeviceNetwork + - color: '#0335FCFF' type: AtmosPipeColor - - uid: 13337 + - uid: 27021 components: - - pos: 26.5,16.5 + - rot: 3.141592653589793 rad + pos: 6.5,24.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 27003 + type: DeviceNetwork + - color: '#0335FCFF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 7909 + components: + - pos: 36.5,32.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 304 + type: DeviceNetwork - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13338 + - uid: 11508 components: - rot: 3.141592653589793 rad - pos: 17.5,25.5 + pos: 36.5,-29.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13339 + - uid: 13077 components: - - rot: 1.5707963267948966 rad - pos: 21.5,21.5 + - pos: 51.5,25.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 304 + type: DeviceNetwork - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13340 + - uid: 13162 components: - - rot: 3.141592653589793 rad - pos: 16.5,14.5 + - rot: -1.5707963267948966 rad + pos: 39.5,9.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 1755 + type: DeviceNetwork - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13341 + - uid: 13163 components: - - pos: 16.5,17.5 + - pos: 30.5,33.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13376 + - uid: 13174 components: - - rot: 1.5707963267948966 rad - pos: 23.5,-1.5 + - rot: -1.5707963267948966 rad + pos: 35.5,26.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13419 + - uid: 13208 components: - - rot: -1.5707963267948966 rad - pos: 36.5,26.5 + - pos: 30.5,1.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13420 + - uid: 13217 components: - - rot: 3.141592653589793 rad - pos: 29.5,25.5 + - rot: 1.5707963267948966 rad + pos: 15.5,18.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 27009 + type: DeviceNetwork - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13421 + - uid: 13231 components: - - pos: 29.5,32.5 + - pos: 52.5,17.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 9063 + type: DeviceNetwork + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 13332 + components: + - pos: -1.5,35.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13427 + - uid: 13333 components: - rot: -1.5707963267948966 rad - pos: 25.5,32.5 + pos: 13.5,32.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 27005 + type: DeviceNetwork - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13428 + - uid: 13334 components: - - rot: 1.5707963267948966 rad - pos: 20.5,32.5 + - rot: 3.141592653589793 rad + pos: 11.5,25.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 27003 + type: DeviceNetwork - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13429 + - uid: 13335 components: - - rot: -1.5707963267948966 rad - pos: 25.5,36.5 + - rot: 1.5707963267948966 rad + pos: 19.5,9.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 8860 + type: DeviceNetwork - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13430 + - uid: 13376 components: - - pos: 17.5,40.5 + - rot: 1.5707963267948966 rad + pos: 23.5,-1.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 8860 + type: DeviceNetwork - color: '#FF1212FF' type: AtmosPipeColor - uid: 13500 @@ -102982,17 +109696,6 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 13869 - components: - - rot: 1.5707963267948966 rad - pos: 12.5,-23.5 - parent: 6747 - type: Transform - - ShutdownSubscribers: - - 25325 - type: DeviceNetwork - - color: '#FF1212FF' - type: AtmosPipeColor - uid: 13870 components: - pos: 17.5,-22.5 @@ -103609,6 +110312,9 @@ entities: pos: 9.5,-10.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 13485 + type: DeviceNetwork - color: '#FF1212FF' type: AtmosPipeColor - uid: 16024 @@ -103736,6 +110442,9 @@ entities: pos: 15.5,6.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 8860 + type: DeviceNetwork - color: '#FF1212FF' type: AtmosPipeColor - uid: 22298 @@ -103776,53 +110485,68 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23659 + - uid: 22440 components: - - rot: 3.141592653589793 rad - pos: 3.5,-5.5 + - pos: 10.5,-21.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 22571 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,29.5 parent: 6747 type: Transform - ShutdownSubscribers: - - 25271 + - 27003 type: DeviceNetwork - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23685 + - uid: 22745 components: - rot: 3.141592653589793 rad - pos: -1.5,-5.5 + pos: 48.5,8.5 parent: 6747 type: Transform - ShutdownSubscribers: - - 25271 + - 9063 type: DeviceNetwork - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23686 + - uid: 23659 components: - - rot: 1.5707963267948966 rad - pos: -2.5,-1.5 + - rot: 3.141592653589793 rad + pos: 3.5,-5.5 parent: 6747 type: Transform - - ShutdownSubscribers: - - 25271 - type: DeviceNetwork - color: '#FF1212FF' type: AtmosPipeColor - - uid: 23751 + - uid: 23685 components: - rot: 3.141592653589793 rad - pos: -12.5,-9.5 + pos: -1.5,-5.5 parent: 6747 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24017 + - uid: 23686 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 23751 components: - rot: 3.141592653589793 rad - pos: 10.5,21.5 + pos: -12.5,-9.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 13485 + type: DeviceNetwork - color: '#FF1212FF' type: AtmosPipeColor - uid: 24029 @@ -103888,7 +110612,7 @@ entities: parent: 6747 type: Transform - ShutdownSubscribers: - - 25273 + - 13930 type: DeviceNetwork - color: '#FF1212FF' type: AtmosPipeColor @@ -103898,6 +110622,9 @@ entities: pos: -4.5,-6.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 25271 + type: DeviceNetwork - color: '#FF1212FF' type: AtmosPipeColor - uid: 24138 @@ -103907,7 +110634,7 @@ entities: parent: 6747 type: Transform - ShutdownSubscribers: - - 25273 + - 13930 type: DeviceNetwork - color: '#FF1212FF' type: AtmosPipeColor @@ -103916,6 +110643,9 @@ entities: - pos: -4.5,2.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 13930 + type: DeviceNetwork - color: '#FF1212FF' type: AtmosPipeColor - uid: 24174 @@ -103924,6 +110654,9 @@ entities: pos: -16.5,-2.5 parent: 6747 type: Transform + - ShutdownSubscribers: + - 13930 + type: DeviceNetwork - color: '#FF1212FF' type: AtmosPipeColor - uid: 24185 @@ -103959,27 +110692,6 @@ entities: type: DeviceNetwork - color: '#FF1212FF' type: AtmosPipeColor - - uid: 24227 - components: - - pos: -19.5,1.5 - parent: 6747 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 24228 - components: - - pos: -22.5,1.5 - parent: 6747 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - - uid: 24229 - components: - - pos: -25.5,1.5 - parent: 6747 - type: Transform - - color: '#FF1212FF' - type: AtmosPipeColor - uid: 24287 components: - rot: -1.5707963267948966 rad @@ -104542,12 +111254,277 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 25599 + - uid: 25608 + components: + - pos: 1.5,-70.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 22234 + type: DeviceNetwork + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 26049 + components: + - rot: 1.5707963267948966 rad + pos: 61.5,26.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 26989 + type: DeviceNetwork + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 26051 components: - rot: 3.141592653589793 rad - pos: 7.5,23.5 + pos: 60.5,18.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 26991 + type: DeviceNetwork + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 26130 + components: + - rot: 1.5707963267948966 rad + pos: 68.5,7.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 26958 + type: DeviceNetwork + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 26131 + components: + - rot: 3.141592653589793 rad + pos: 73.5,6.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 26945 + type: DeviceNetwork + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 26136 + components: + - rot: 3.141592653589793 rad + pos: 66.5,17.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 26945 + type: DeviceNetwork + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 26143 + components: + - rot: 3.141592653589793 rad + pos: 63.5,11.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 9063 + type: DeviceNetwork + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 26145 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,17.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 26199 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,20.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 27009 + type: DeviceNetwork + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 26226 + components: + - pos: 61.5,8.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 26958 + type: DeviceNetwork + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 26227 + components: + - pos: 54.5,8.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 26958 + type: DeviceNetwork + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 26228 + components: + - rot: 3.141592653589793 rad + pos: 51.5,6.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 26958 + type: DeviceNetwork + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 26254 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,14.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 26970 + type: DeviceNetwork + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 26275 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,17.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 26970 + type: DeviceNetwork + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 26308 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,19.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 26970 + type: DeviceNetwork + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 26316 + components: + - pos: 22.5,27.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 27005 + type: DeviceNetwork + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 26318 + components: + - pos: 19.5,25.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 27003 + type: DeviceNetwork + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 26329 + components: + - rot: 3.141592653589793 rad + pos: 7.5,24.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 27003 + type: DeviceNetwork + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 26336 + components: + - rot: 3.141592653589793 rad + pos: 4.5,24.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 27003 + type: DeviceNetwork + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 26824 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,4.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 27036 + type: DeviceNetwork + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 26825 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,2.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 13930 + type: DeviceNetwork + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 26826 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,5.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 13930 + type: DeviceNetwork + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 26827 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,8.5 + parent: 6747 + type: Transform + - ShutdownSubscribers: + - 13930 + type: DeviceNetwork + - color: '#FF1212FF' + type: AtmosPipeColor + - uid: 26916 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-24.5 + parent: 6747 + type: Transform + - color: '#FF1212FF' + type: AtmosPipeColor +- proto: GasVolumePump + entities: + - uid: 13116 + components: + - rot: 1.5707963267948966 rad + pos: 63.5,29.5 parent: 6747 type: Transform + - color: '#FF5500FF' + type: AtmosPipeColor + - uid: 13366 + components: + - rot: 3.141592653589793 rad + pos: 62.5,34.5 + parent: 6747 + type: Transform + - color: '#00FFFFFF' + type: AtmosPipeColor - proto: Gauze entities: - uid: 620 @@ -104662,9 +111639,9 @@ entities: type: Transform - proto: GravityGenerator entities: - - uid: 17257 + - uid: 7568 components: - - pos: 18.5,33.5 + - pos: 66.5,8.5 parent: 6747 type: Transform - proto: GrenadeFlashBang @@ -104802,14 +111779,9 @@ entities: - pos: -6.5,-0.5 parent: 6747 type: Transform - - uid: 295 - components: - - pos: 14.5,-19.5 - parent: 6747 - type: Transform - - uid: 304 + - uid: 294 components: - - pos: 14.5,-17.5 + - pos: -20.5,2.5 parent: 6747 type: Transform - uid: 305 @@ -104832,11 +111804,6 @@ entities: - pos: 14.5,-14.5 parent: 6747 type: Transform - - uid: 331 - components: - - pos: 14.5,-16.5 - parent: 6747 - type: Transform - uid: 378 components: - pos: 14.5,-5.5 @@ -104987,69 +111954,49 @@ entities: - pos: 18.5,5.5 parent: 6747 type: Transform - - uid: 807 - components: - - pos: 27.5,12.5 - parent: 6747 - type: Transform - - uid: 808 - components: - - pos: 28.5,12.5 - parent: 6747 - type: Transform - - uid: 809 - components: - - pos: 25.5,12.5 - parent: 6747 - type: Transform - - uid: 812 - components: - - pos: 22.5,12.5 - parent: 6747 - type: Transform - - uid: 813 + - uid: 822 components: - - pos: 19.5,12.5 + - pos: 42.5,9.5 parent: 6747 type: Transform - - uid: 840 + - uid: 828 components: - - pos: 23.5,15.5 + - pos: 67.5,5.5 parent: 6747 type: Transform - - uid: 864 + - uid: 837 components: - - pos: 18.5,13.5 + - pos: 69.5,6.5 parent: 6747 type: Transform - - uid: 892 + - uid: 932 components: - - pos: 31.5,25.5 + - pos: -4.5,38.5 parent: 6747 type: Transform - - uid: 894 + - uid: 933 components: - - pos: 24.5,18.5 + - pos: -4.5,39.5 parent: 6747 type: Transform - - uid: 900 + - uid: 935 components: - - pos: 23.5,14.5 + - pos: 58.5,24.5 parent: 6747 type: Transform - - uid: 901 + - uid: 936 components: - - pos: 23.5,13.5 + - pos: 49.5,8.5 parent: 6747 type: Transform - - uid: 932 + - uid: 937 components: - - pos: -4.5,38.5 + - pos: 49.5,7.5 parent: 6747 type: Transform - - uid: 933 + - uid: 963 components: - - pos: -4.5,39.5 + - pos: 64.5,34.5 parent: 6747 type: Transform - uid: 965 @@ -105207,19 +112154,19 @@ entities: - pos: 6.5,36.5 parent: 6747 type: Transform - - uid: 1075 + - uid: 1080 components: - - pos: 13.5,23.5 + - pos: 8.5,26.5 parent: 6747 type: Transform - - uid: 1079 + - uid: 1105 components: - - pos: 8.5,25.5 + - pos: 19.5,22.5 parent: 6747 type: Transform - - uid: 1080 + - uid: 1128 components: - - pos: 8.5,26.5 + - pos: 5.5,12.5 parent: 6747 type: Transform - uid: 1145 @@ -105372,6 +112319,11 @@ entities: - pos: -12.5,-16.5 parent: 6747 type: Transform + - uid: 1335 + components: + - pos: 6.5,25.5 + parent: 6747 + type: Transform - uid: 1336 components: - pos: -12.5,-35.5 @@ -105797,6 +112749,11 @@ entities: - pos: -6.5,-40.5 parent: 6747 type: Transform + - uid: 1822 + components: + - pos: 17.5,36.5 + parent: 6747 + type: Transform - uid: 1894 components: - pos: -3.5,-46.5 @@ -105967,6 +112924,11 @@ entities: - pos: 9.5,-37.5 parent: 6747 type: Transform + - uid: 2161 + components: + - pos: 64.5,33.5 + parent: 6747 + type: Transform - uid: 2162 components: - pos: 9.5,-36.5 @@ -105992,6 +112954,21 @@ entities: - pos: 14.5,23.5 parent: 6747 type: Transform + - uid: 2265 + components: + - pos: 23.5,36.5 + parent: 6747 + type: Transform + - uid: 2269 + components: + - pos: 24.5,36.5 + parent: 6747 + type: Transform + - uid: 2270 + components: + - pos: 16.5,36.5 + parent: 6747 + type: Transform - uid: 2281 components: - pos: -8.5,-55.5 @@ -106132,11 +113109,6 @@ entities: - pos: 35.5,-30.5 parent: 6747 type: Transform - - uid: 2811 - components: - - pos: 28.5,29.5 - parent: 6747 - type: Transform - uid: 2843 components: - pos: 8.5,-64.5 @@ -106167,6 +113139,11 @@ entities: - pos: 20.5,-53.5 parent: 6747 type: Transform + - uid: 2877 + components: + - pos: 25.5,36.5 + parent: 6747 + type: Transform - uid: 2902 components: - pos: 18.5,-48.5 @@ -106272,11 +113249,6 @@ entities: - pos: -30.5,0.5 parent: 6747 type: Transform - - uid: 3293 - components: - - pos: 37.5,14.5 - parent: 6747 - type: Transform - uid: 3303 components: - pos: 42.5,10.5 @@ -106957,11 +113929,6 @@ entities: - pos: 68.5,-17.5 parent: 6747 type: Transform - - uid: 6020 - components: - - pos: 60.5,11.5 - parent: 6747 - type: Transform - uid: 6031 components: - pos: 37.5,-48.5 @@ -106972,11 +113939,6 @@ entities: - pos: 77.5,-42.5 parent: 6747 type: Transform - - uid: 6047 - components: - - pos: 8.5,15.5 - parent: 6747 - type: Transform - uid: 6049 components: - pos: 63.5,-53.5 @@ -107067,11 +114029,6 @@ entities: - pos: 77.5,-37.5 parent: 6747 type: Transform - - uid: 6181 - components: - - pos: 13.5,20.5 - parent: 6747 - type: Transform - uid: 6219 components: - pos: 50.5,-44.5 @@ -107257,11 +114214,36 @@ entities: - pos: 64.5,-42.5 parent: 6747 type: Transform + - uid: 6390 + components: + - pos: 65.5,5.5 + parent: 6747 + type: Transform + - uid: 6392 + components: + - pos: 49.5,9.5 + parent: 6747 + type: Transform - uid: 6396 components: - pos: 68.5,-39.5 parent: 6747 type: Transform + - uid: 6410 + components: + - pos: 69.5,9.5 + parent: 6747 + type: Transform + - uid: 6411 + components: + - pos: 69.5,8.5 + parent: 6747 + type: Transform + - uid: 6418 + components: + - pos: 69.5,7.5 + parent: 6747 + type: Transform - uid: 6425 components: - pos: 61.5,-26.5 @@ -107277,6 +114259,16 @@ entities: - pos: 59.5,-26.5 parent: 6747 type: Transform + - uid: 6428 + components: + - pos: 53.5,14.5 + parent: 6747 + type: Transform + - uid: 6429 + components: + - pos: 28.5,14.5 + parent: 6747 + type: Transform - uid: 6433 components: - pos: 62.5,-26.5 @@ -107452,39 +114444,29 @@ entities: - pos: 7.5,8.5 parent: 6747 type: Transform - - uid: 6561 - components: - - pos: 8.5,14.5 - parent: 6747 - type: Transform - - uid: 6593 - components: - - pos: 18.5,15.5 - parent: 6747 - type: Transform - - uid: 6596 + - uid: 6655 components: - - pos: 39.5,14.5 + - pos: 65.5,10.5 parent: 6747 type: Transform - - uid: 6609 + - uid: 6656 components: - - pos: 31.5,27.5 + - pos: 66.5,10.5 parent: 6747 type: Transform - - uid: 6760 + - uid: 6657 components: - - pos: 57.5,8.5 + - pos: 67.5,10.5 parent: 6747 type: Transform - - uid: 6761 + - uid: 6666 components: - - pos: 58.5,8.5 + - pos: 29.5,14.5 parent: 6747 type: Transform - uid: 6762 components: - - pos: 59.5,8.5 + - pos: 30.5,18.5 parent: 6747 type: Transform - uid: 6763 @@ -107502,6 +114484,11 @@ entities: - pos: 59.5,14.5 parent: 6747 type: Transform + - uid: 6767 + components: + - pos: 30.5,16.5 + parent: 6747 + type: Transform - uid: 6789 components: - pos: 48.5,-0.5 @@ -107609,42 +114596,17 @@ entities: type: Transform - uid: 6858 components: - - pos: 57.5,19.5 - parent: 6747 - type: Transform - - uid: 6876 - components: - - pos: 58.5,19.5 - parent: 6747 - type: Transform - - uid: 6877 - components: - - pos: 59.5,19.5 - parent: 6747 - type: Transform - - uid: 6878 - components: - - pos: 60.5,18.5 - parent: 6747 - type: Transform - - uid: 6879 - components: - - pos: 60.5,17.5 + - pos: 56.5,40.5 parent: 6747 type: Transform - - uid: 6880 - components: - - pos: 60.5,16.5 - parent: 6747 - type: Transform - - uid: 6881 + - uid: 6889 components: - - pos: 60.5,15.5 + - pos: 64.5,22.5 parent: 6747 type: Transform - - uid: 7066 + - uid: 6891 components: - - pos: 8.5,16.5 + - pos: 19.5,21.5 parent: 6747 type: Transform - uid: 7086 @@ -107682,11 +114644,6 @@ entities: - pos: -50.5,-8.5 parent: 6747 type: Transform - - uid: 7568 - components: - - pos: 4.5,26.5 - parent: 6747 - type: Transform - uid: 7647 components: - pos: 52.5,39.5 @@ -107707,14 +114664,14 @@ entities: - pos: 46.5,25.5 parent: 6747 type: Transform - - uid: 7699 + - uid: 7706 components: - pos: 4.5,25.5 parent: 6747 type: Transform - - uid: 7752 + - uid: 7796 components: - - pos: 56.5,15.5 + - pos: 30.5,39.5 parent: 6747 type: Transform - uid: 7799 @@ -107842,6 +114799,11 @@ entities: - pos: 48.5,39.5 parent: 6747 type: Transform + - uid: 7906 + components: + - pos: 69.5,21.5 + parent: 6747 + type: Transform - uid: 7929 components: - pos: 51.5,36.5 @@ -107852,21 +114814,6 @@ entities: - pos: 56.5,31.5 parent: 6747 type: Transform - - uid: 8052 - components: - - pos: 56.5,32.5 - parent: 6747 - type: Transform - - uid: 8053 - components: - - pos: 56.5,33.5 - parent: 6747 - type: Transform - - uid: 8054 - components: - - pos: 56.5,34.5 - parent: 6747 - type: Transform - uid: 8058 components: - pos: 52.5,37.5 @@ -107947,11 +114894,6 @@ entities: - pos: 50.5,46.5 parent: 6747 type: Transform - - uid: 8161 - components: - - pos: 57.5,36.5 - parent: 6747 - type: Transform - uid: 8162 components: - pos: 58.5,46.5 @@ -107982,19 +114924,9 @@ entities: - pos: 58.5,41.5 parent: 6747 type: Transform - - uid: 8168 - components: - - pos: 58.5,40.5 - parent: 6747 - type: Transform - uid: 8169 components: - - pos: 58.5,39.5 - parent: 6747 - type: Transform - - uid: 8170 - components: - - pos: 58.5,38.5 + - pos: 56.5,15.5 parent: 6747 type: Transform - uid: 8171 @@ -108002,64 +114934,49 @@ entities: - pos: 57.5,46.5 parent: 6747 type: Transform - - uid: 8172 - components: - - pos: 58.5,37.5 - parent: 6747 - type: Transform - - uid: 8173 - components: - - pos: 58.5,36.5 - parent: 6747 - type: Transform - - uid: 8262 - components: - - pos: 14.5,20.5 - parent: 6747 - type: Transform - - uid: 8318 + - uid: 8240 components: - - pos: 25.5,30.5 + - pos: 33.5,44.5 parent: 6747 type: Transform - - uid: 8321 + - uid: 8256 components: - - pos: 22.5,30.5 + - pos: 13.5,17.5 parent: 6747 type: Transform - - uid: 8323 + - uid: 8257 components: - - pos: 21.5,31.5 + - pos: 12.5,29.5 parent: 6747 type: Transform - - uid: 8324 + - uid: 8284 components: - - pos: 21.5,33.5 + - pos: 33.5,39.5 parent: 6747 type: Transform - - uid: 8328 + - uid: 8285 components: - - pos: 21.5,34.5 + - pos: 66.5,5.5 parent: 6747 type: Transform - - uid: 8333 + - uid: 8289 components: - - pos: 19.5,35.5 + - pos: 32.5,39.5 parent: 6747 type: Transform - - uid: 8336 + - uid: 8296 components: - - pos: 16.5,35.5 + - pos: 50.5,10.5 parent: 6747 type: Transform - - uid: 8340 + - uid: 8318 components: - - pos: 18.5,35.5 + - pos: 34.5,46.5 parent: 6747 type: Transform - - uid: 8344 + - uid: 8329 components: - - pos: 17.5,35.5 + - pos: 65.5,5.5 parent: 6747 type: Transform - uid: 8354 @@ -108087,164 +115004,59 @@ entities: - pos: -42.5,6.5 parent: 6747 type: Transform - - uid: 8374 - components: - - pos: 22.5,35.5 - parent: 6747 - type: Transform - - uid: 8375 - components: - - pos: 25.5,35.5 - parent: 6747 - type: Transform - - uid: 8378 - components: - - pos: 22.5,23.5 - parent: 6747 - type: Transform - - uid: 8380 - components: - - pos: 25.5,23.5 - parent: 6747 - type: Transform - - uid: 8385 - components: - - pos: 29.5,37.5 - parent: 6747 - type: Transform - - uid: 8386 - components: - - pos: 29.5,38.5 - parent: 6747 - type: Transform - - uid: 8387 - components: - - pos: 29.5,39.5 - parent: 6747 - type: Transform - - uid: 8388 - components: - - pos: 33.5,40.5 - parent: 6747 - type: Transform - - uid: 8392 - components: - - pos: 27.5,44.5 - parent: 6747 - type: Transform - - uid: 8393 - components: - - pos: 26.5,44.5 - parent: 6747 - type: Transform - - uid: 8394 - components: - - pos: 25.5,44.5 - parent: 6747 - type: Transform - - uid: 8395 - components: - - pos: 24.5,44.5 - parent: 6747 - type: Transform - - uid: 8396 - components: - - pos: 23.5,44.5 - parent: 6747 - type: Transform - - uid: 8397 - components: - - pos: 22.5,44.5 - parent: 6747 - type: Transform - - uid: 8407 - components: - - pos: 32.5,40.5 - parent: 6747 - type: Transform - - uid: 8434 - components: - - pos: 14.5,39.5 - parent: 6747 - type: Transform - - uid: 8435 - components: - - pos: 14.5,40.5 - parent: 6747 - type: Transform - - uid: 8436 - components: - - pos: 14.5,41.5 - parent: 6747 - type: Transform - - uid: 8437 - components: - - pos: 14.5,42.5 - parent: 6747 - type: Transform - - uid: 8438 - components: - - pos: 16.5,44.5 - parent: 6747 - type: Transform - - uid: 8439 - components: - - pos: 17.5,44.5 - parent: 6747 - type: Transform - - uid: 8440 + - uid: 8453 components: - - pos: 18.5,44.5 + - pos: 26.5,14.5 parent: 6747 type: Transform - - uid: 8441 + - uid: 8479 components: - - pos: 19.5,44.5 + - pos: 52.5,10.5 parent: 6747 type: Transform - - uid: 8511 + - uid: 8487 components: - - pos: 19.5,38.5 + - pos: 51.5,14.5 parent: 6747 type: Transform - - uid: 8520 + - uid: 8531 components: - - pos: 12.5,18.5 + - pos: -75.5,-22.5 parent: 6747 type: Transform - - uid: 8531 + - uid: 8535 components: - - pos: -75.5,-22.5 + - pos: 29.5,45.5 parent: 6747 type: Transform - - uid: 8555 + - uid: 8656 components: - - pos: 16.5,38.5 + - pos: 10.5,29.5 parent: 6747 type: Transform - - uid: 8617 + - uid: 8658 components: - - pos: 12.5,17.5 + - pos: 13.5,29.5 parent: 6747 type: Transform - - uid: 8655 + - uid: 8667 components: - - pos: 9.5,29.5 + - pos: 13.5,18.5 parent: 6747 type: Transform - - uid: 8656 + - uid: 8668 components: - - pos: 10.5,29.5 + - pos: 29.5,46.5 parent: 6747 type: Transform - - uid: 8657 + - uid: 8732 components: - - pos: 14.5,29.5 + - pos: 11.5,19.5 parent: 6747 type: Transform - - uid: 8658 + - uid: 8742 components: - - pos: 13.5,29.5 + - pos: 10.5,19.5 parent: 6747 type: Transform - uid: 8744 @@ -108267,6 +115079,11 @@ entities: - pos: -75.5,-27.5 parent: 6747 type: Transform + - uid: 8750 + components: + - pos: 9.5,19.5 + parent: 6747 + type: Transform - uid: 8976 components: - pos: 22.5,4.5 @@ -108282,6 +115099,21 @@ entities: - pos: -50.5,0.5 parent: 6747 type: Transform + - uid: 9394 + components: + - pos: -21.5,5.5 + parent: 6747 + type: Transform + - uid: 9398 + components: + - pos: -21.5,4.5 + parent: 6747 + type: Transform + - uid: 9422 + components: + - pos: 57.5,40.5 + parent: 6747 + type: Transform - uid: 9738 components: - pos: -46.5,-72.5 @@ -108652,6 +115484,16 @@ entities: - pos: 62.5,-5.5 parent: 6747 type: Transform + - uid: 11129 + components: + - pos: 64.5,35.5 + parent: 6747 + type: Transform + - uid: 11139 + components: + - pos: 60.5,24.5 + parent: 6747 + type: Transform - uid: 11271 components: - pos: -5.5,-99.5 @@ -108817,6 +115659,11 @@ entities: - pos: 41.5,-99.5 parent: 6747 type: Transform + - uid: 11375 + components: + - pos: 60.5,14.5 + parent: 6747 + type: Transform - uid: 11455 components: - pos: -57.5,16.5 @@ -108882,144 +115729,159 @@ entities: - pos: -57.5,-19.5 parent: 6747 type: Transform - - uid: 11492 + - uid: 11493 components: - - pos: 17.5,56.5 + - pos: -57.5,-21.5 parent: 6747 type: Transform - - uid: 11493 + - uid: 11494 components: - - pos: -57.5,-21.5 + - pos: 19.5,17.5 parent: 6747 type: Transform - - uid: 11495 + - uid: 11759 components: - - pos: 46.5,56.5 + - pos: -5.5,-82.5 parent: 6747 type: Transform - - uid: 11497 + - uid: 11760 components: - - pos: 44.5,56.5 + - pos: -3.5,-82.5 parent: 6747 type: Transform - - uid: 11498 + - uid: 11940 components: - - pos: 43.5,56.5 + - pos: 64.5,21.5 parent: 6747 type: Transform - - uid: 11500 + - uid: 11993 components: - - pos: 41.5,56.5 + - pos: 64.5,11.5 parent: 6747 type: Transform - - uid: 11501 + - uid: 12863 components: - - pos: 40.5,56.5 + - pos: 64.5,23.5 parent: 6747 type: Transform - - uid: 11503 + - uid: 12895 components: - - pos: 38.5,56.5 + - pos: 59.5,24.5 parent: 6747 type: Transform - - uid: 11504 + - uid: 12897 components: - - pos: 37.5,56.5 + - pos: 57.5,24.5 parent: 6747 type: Transform - - uid: 11506 + - uid: 12942 components: - - pos: 35.5,56.5 + - pos: -12.5,-40.5 parent: 6747 type: Transform - - uid: 11507 + - uid: 12953 components: - - pos: 34.5,56.5 + - pos: -56.5,1.5 parent: 6747 type: Transform - - uid: 11509 + - uid: 12954 components: - - pos: 32.5,56.5 + - pos: -56.5,5.5 parent: 6747 type: Transform - - uid: 11510 + - uid: 13002 components: - - pos: 31.5,56.5 + - pos: 56.5,34.5 parent: 6747 type: Transform - - uid: 11512 + - uid: 13004 components: - - pos: 29.5,56.5 + - pos: 64.5,30.5 parent: 6747 type: Transform - - uid: 11513 + - uid: 13040 components: - - pos: 28.5,56.5 + - pos: 64.5,29.5 parent: 6747 type: Transform - - uid: 11515 + - uid: 13041 components: - - pos: 26.5,56.5 + - pos: 64.5,28.5 parent: 6747 type: Transform - - uid: 11516 + - uid: 13153 components: - - pos: 25.5,56.5 + - pos: 60.5,36.5 parent: 6747 type: Transform - - uid: 11518 + - uid: 13154 components: - - pos: 23.5,56.5 + - pos: 63.5,36.5 parent: 6747 type: Transform - - uid: 11519 + - uid: 13233 components: - - pos: 22.5,56.5 + - pos: 59.5,37.5 parent: 6747 type: Transform - - uid: 11521 + - uid: 13242 components: - - pos: 20.5,56.5 + - pos: 62.5,36.5 parent: 6747 type: Transform - - uid: 11522 + - uid: 13265 components: - - pos: 19.5,56.5 + - pos: 61.5,36.5 parent: 6747 type: Transform - - uid: 11525 + - uid: 13269 components: - - pos: 16.5,56.5 + - pos: 56.5,35.5 parent: 6747 type: Transform - - uid: 11527 + - uid: 13302 components: - - pos: 14.5,56.5 + - pos: 69.5,20.5 parent: 6747 type: Transform - - uid: 11759 + - uid: 13387 components: - - pos: -5.5,-82.5 + - pos: 69.5,30.5 parent: 6747 type: Transform - - uid: 11760 + - uid: 13388 components: - - pos: -3.5,-82.5 + - pos: 69.5,31.5 parent: 6747 type: Transform - - uid: 12942 + - uid: 13401 components: - - pos: -12.5,-40.5 + - pos: 69.5,32.5 parent: 6747 type: Transform - - uid: 12953 + - uid: 13402 components: - - pos: -56.5,1.5 + - pos: 69.5,33.5 parent: 6747 type: Transform - - uid: 12954 + - uid: 13436 components: - - pos: -56.5,5.5 + - pos: 64.5,17.5 + parent: 6747 + type: Transform + - uid: 13438 + components: + - pos: 64.5,15.5 + parent: 6747 + type: Transform + - uid: 13443 + components: + - pos: 69.5,22.5 + parent: 6747 + type: Transform + - uid: 13470 + components: + - pos: 64.5,18.5 parent: 6747 type: Transform - uid: 15052 @@ -109572,14 +116434,29 @@ entities: - pos: 29.5,-96.5 parent: 6747 type: Transform - - uid: 17041 + - uid: 17003 components: - - pos: 47.5,56.5 + - pos: 74.5,18.5 parent: 6747 type: Transform - - uid: 17043 + - uid: 17036 components: - - pos: 31.5,40.5 + - pos: 74.5,20.5 + parent: 6747 + type: Transform + - uid: 17037 + components: + - pos: 74.5,21.5 + parent: 6747 + type: Transform + - uid: 17038 + components: + - pos: 74.5,22.5 + parent: 6747 + type: Transform + - uid: 17235 + components: + - pos: 64.5,13.5 parent: 6747 type: Transform - uid: 17263 @@ -109647,6 +116524,176 @@ entities: - pos: 37.5,-91.5 parent: 6747 type: Transform + - uid: 17615 + components: + - pos: 75.5,6.5 + parent: 6747 + type: Transform + - uid: 17616 + components: + - pos: 75.5,7.5 + parent: 6747 + type: Transform + - uid: 17617 + components: + - pos: 75.5,8.5 + parent: 6747 + type: Transform + - uid: 17618 + components: + - pos: 75.5,9.5 + parent: 6747 + type: Transform + - uid: 17623 + components: + - pos: 73.5,5.5 + parent: 6747 + type: Transform + - uid: 17624 + components: + - pos: 72.5,5.5 + parent: 6747 + type: Transform + - uid: 17625 + components: + - pos: 71.5,5.5 + parent: 6747 + type: Transform + - uid: 17682 + components: + - pos: 75.5,11.5 + parent: 6747 + type: Transform + - uid: 17683 + components: + - pos: 76.5,11.5 + parent: 6747 + type: Transform + - uid: 17684 + components: + - pos: 77.5,11.5 + parent: 6747 + type: Transform + - uid: 17685 + components: + - pos: 77.5,10.5 + parent: 6747 + type: Transform + - uid: 17686 + components: + - pos: 77.5,9.5 + parent: 6747 + type: Transform + - uid: 17687 + components: + - pos: 77.5,8.5 + parent: 6747 + type: Transform + - uid: 17688 + components: + - pos: 77.5,7.5 + parent: 6747 + type: Transform + - uid: 17689 + components: + - pos: 77.5,6.5 + parent: 6747 + type: Transform + - uid: 17690 + components: + - pos: 77.5,5.5 + parent: 6747 + type: Transform + - uid: 17691 + components: + - pos: 77.5,4.5 + parent: 6747 + type: Transform + - uid: 17692 + components: + - pos: 77.5,3.5 + parent: 6747 + type: Transform + - uid: 17693 + components: + - pos: 76.5,3.5 + parent: 6747 + type: Transform + - uid: 17694 + components: + - pos: 75.5,3.5 + parent: 6747 + type: Transform + - uid: 17695 + components: + - pos: 74.5,3.5 + parent: 6747 + type: Transform + - uid: 17696 + components: + - pos: 73.5,3.5 + parent: 6747 + type: Transform + - uid: 17697 + components: + - pos: 72.5,3.5 + parent: 6747 + type: Transform + - uid: 17698 + components: + - pos: 71.5,3.5 + parent: 6747 + type: Transform + - uid: 17699 + components: + - pos: 70.5,3.5 + parent: 6747 + type: Transform + - uid: 17700 + components: + - pos: 69.5,3.5 + parent: 6747 + type: Transform + - uid: 17701 + components: + - pos: 68.5,3.5 + parent: 6747 + type: Transform + - uid: 17702 + components: + - pos: 67.5,3.5 + parent: 6747 + type: Transform + - uid: 17703 + components: + - pos: 66.5,3.5 + parent: 6747 + type: Transform + - uid: 17704 + components: + - pos: 65.5,3.5 + parent: 6747 + type: Transform + - uid: 17705 + components: + - pos: 64.5,3.5 + parent: 6747 + type: Transform + - uid: 17706 + components: + - pos: 63.5,3.5 + parent: 6747 + type: Transform + - uid: 17707 + components: + - pos: 62.5,3.5 + parent: 6747 + type: Transform + - uid: 17708 + components: + - pos: 61.5,3.5 + parent: 6747 + type: Transform - uid: 18397 components: - pos: -65.5,1.5 @@ -109847,6 +116894,16 @@ entities: - pos: 13.5,-79.5 parent: 6747 type: Transform + - uid: 22053 + components: + - pos: 30.5,12.5 + parent: 6747 + type: Transform + - uid: 22054 + components: + - pos: 31.5,12.5 + parent: 6747 + type: Transform - uid: 22744 components: - pos: 32.5,44.5 @@ -109997,9 +117054,39 @@ entities: - pos: 49.5,-44.5 parent: 6747 type: Transform + - uid: 23990 + components: + - pos: 75.5,19.5 + parent: 6747 + type: Transform + - uid: 23991 + components: + - pos: 76.5,19.5 + parent: 6747 + type: Transform + - uid: 23993 + components: + - pos: 75.5,16.5 + parent: 6747 + type: Transform - uid: 23994 components: - - pos: 12.5,22.5 + - pos: 76.5,16.5 + parent: 6747 + type: Transform + - uid: 23998 + components: + - pos: 75.5,16.5 + parent: 6747 + type: Transform + - uid: 24003 + components: + - pos: 76.5,16.5 + parent: 6747 + type: Transform + - uid: 24016 + components: + - pos: 77.5,18.5 parent: 6747 type: Transform - uid: 25387 @@ -110007,29 +117094,444 @@ entities: - pos: -50.5,-7.5 parent: 6747 type: Transform - - uid: 25558 + - uid: 25577 components: - - pos: 4.5,27.5 + - pos: 7.5,12.5 parent: 6747 type: Transform - - uid: 25562 + - uid: 25801 components: - - pos: 4.5,21.5 + - pos: 60.5,56.5 parent: 6747 type: Transform - - uid: 25563 + - uid: 25820 components: - - pos: 4.5,20.5 + - pos: 98.5,-23.5 parent: 6747 type: Transform - - uid: 25564 + - uid: 25825 components: - - pos: 4.5,19.5 + - pos: 98.5,-22.5 parent: 6747 type: Transform - - uid: 25577 + - uid: 25826 components: - - pos: 7.5,12.5 + - pos: 98.5,-21.5 + parent: 6747 + type: Transform + - uid: 25827 + components: + - pos: 98.5,-20.5 + parent: 6747 + type: Transform + - uid: 25828 + components: + - pos: 98.5,-18.5 + parent: 6747 + type: Transform + - uid: 25829 + components: + - pos: 98.5,-17.5 + parent: 6747 + type: Transform + - uid: 25830 + components: + - pos: 98.5,-15.5 + parent: 6747 + type: Transform + - uid: 25831 + components: + - pos: 98.5,-13.5 + parent: 6747 + type: Transform + - uid: 25832 + components: + - pos: 98.5,-12.5 + parent: 6747 + type: Transform + - uid: 25833 + components: + - pos: 98.5,-8.5 + parent: 6747 + type: Transform + - uid: 25834 + components: + - pos: 98.5,-7.5 + parent: 6747 + type: Transform + - uid: 25835 + components: + - pos: 98.5,-6.5 + parent: 6747 + type: Transform + - uid: 25836 + components: + - pos: 98.5,-5.5 + parent: 6747 + type: Transform + - uid: 25837 + components: + - pos: 98.5,-3.5 + parent: 6747 + type: Transform + - uid: 25838 + components: + - pos: 98.5,-2.5 + parent: 6747 + type: Transform + - uid: 25839 + components: + - pos: 98.5,-1.5 + parent: 6747 + type: Transform + - uid: 25840 + components: + - pos: 109.5,1.5 + parent: 6747 + type: Transform + - uid: 25841 + components: + - pos: 99.5,0.5 + parent: 6747 + type: Transform + - uid: 25842 + components: + - pos: 100.5,0.5 + parent: 6747 + type: Transform + - uid: 25843 + components: + - pos: 101.5,0.5 + parent: 6747 + type: Transform + - uid: 25844 + components: + - pos: 103.5,0.5 + parent: 6747 + type: Transform + - uid: 25845 + components: + - pos: 106.5,0.5 + parent: 6747 + type: Transform + - uid: 25846 + components: + - pos: 107.5,0.5 + parent: 6747 + type: Transform + - uid: 25847 + components: + - pos: 108.5,0.5 + parent: 6747 + type: Transform + - uid: 25848 + components: + - pos: 109.5,2.5 + parent: 6747 + type: Transform + - uid: 25849 + components: + - pos: 109.5,3.5 + parent: 6747 + type: Transform + - uid: 25850 + components: + - pos: 110.5,6.5 + parent: 6747 + type: Transform + - uid: 25851 + components: + - pos: 110.5,8.5 + parent: 6747 + type: Transform + - uid: 25852 + components: + - pos: 110.5,9.5 + parent: 6747 + type: Transform + - uid: 25853 + components: + - pos: 110.5,11.5 + parent: 6747 + type: Transform + - uid: 25854 + components: + - pos: 110.5,13.5 + parent: 6747 + type: Transform + - uid: 25855 + components: + - pos: 110.5,14.5 + parent: 6747 + type: Transform + - uid: 25856 + components: + - pos: 110.5,15.5 + parent: 6747 + type: Transform + - uid: 25857 + components: + - pos: 110.5,16.5 + parent: 6747 + type: Transform + - uid: 25858 + components: + - pos: 110.5,19.5 + parent: 6747 + type: Transform + - uid: 25859 + components: + - pos: 110.5,20.5 + parent: 6747 + type: Transform + - uid: 25860 + components: + - pos: 110.5,21.5 + parent: 6747 + type: Transform + - uid: 25861 + components: + - pos: 110.5,23.5 + parent: 6747 + type: Transform + - uid: 25862 + components: + - pos: 110.5,24.5 + parent: 6747 + type: Transform + - uid: 25863 + components: + - pos: 110.5,33.5 + parent: 6747 + type: Transform + - uid: 25864 + components: + - pos: 110.5,28.5 + parent: 6747 + type: Transform + - uid: 25865 + components: + - pos: 110.5,29.5 + parent: 6747 + type: Transform + - uid: 25866 + components: + - pos: 110.5,30.5 + parent: 6747 + type: Transform + - uid: 25867 + components: + - pos: 110.5,31.5 + parent: 6747 + type: Transform + - uid: 25868 + components: + - pos: 110.5,34.5 + parent: 6747 + type: Transform + - uid: 25869 + components: + - pos: 109.5,37.5 + parent: 6747 + type: Transform + - uid: 25870 + components: + - pos: 108.5,37.5 + parent: 6747 + type: Transform + - uid: 25871 + components: + - pos: 106.5,37.5 + parent: 6747 + type: Transform + - uid: 25872 + components: + - pos: 104.5,37.5 + parent: 6747 + type: Transform + - uid: 25873 + components: + - pos: 103.5,37.5 + parent: 6747 + type: Transform + - uid: 25874 + components: + - pos: 102.5,37.5 + parent: 6747 + type: Transform + - uid: 25875 + components: + - pos: 99.5,37.5 + parent: 6747 + type: Transform + - uid: 25876 + components: + - pos: 98.5,37.5 + parent: 6747 + type: Transform + - uid: 25877 + components: + - pos: 97.5,37.5 + parent: 6747 + type: Transform + - uid: 25878 + components: + - pos: 96.5,37.5 + parent: 6747 + type: Transform + - uid: 25879 + components: + - pos: 94.5,37.5 + parent: 6747 + type: Transform + - uid: 25880 + components: + - pos: 93.5,37.5 + parent: 6747 + type: Transform + - uid: 25881 + components: + - pos: 92.5,37.5 + parent: 6747 + type: Transform + - uid: 25882 + components: + - pos: 86.5,37.5 + parent: 6747 + type: Transform + - uid: 25883 + components: + - pos: 87.5,37.5 + parent: 6747 + type: Transform + - uid: 25884 + components: + - pos: 88.5,37.5 + parent: 6747 + type: Transform + - uid: 25885 + components: + - pos: 85.5,38.5 + parent: 6747 + type: Transform + - uid: 25886 + components: + - pos: 85.5,39.5 + parent: 6747 + type: Transform + - uid: 25887 + components: + - pos: 85.5,40.5 + parent: 6747 + type: Transform + - uid: 25888 + components: + - pos: 85.5,41.5 + parent: 6747 + type: Transform + - uid: 25889 + components: + - pos: 85.5,44.5 + parent: 6747 + type: Transform + - uid: 25890 + components: + - pos: 85.5,45.5 + parent: 6747 + type: Transform + - uid: 25891 + components: + - pos: 85.5,51.5 + parent: 6747 + type: Transform + - uid: 25892 + components: + - pos: 85.5,50.5 + parent: 6747 + type: Transform + - uid: 25893 + components: + - pos: 85.5,49.5 + parent: 6747 + type: Transform + - uid: 25894 + components: + - pos: 82.5,56.5 + parent: 6747 + type: Transform + - uid: 25895 + components: + - pos: 84.5,56.5 + parent: 6747 + type: Transform + - uid: 25896 + components: + - pos: 80.5,56.5 + parent: 6747 + type: Transform + - uid: 25897 + components: + - pos: 79.5,56.5 + parent: 6747 + type: Transform + - uid: 25898 + components: + - pos: 78.5,56.5 + parent: 6747 + type: Transform + - uid: 25899 + components: + - pos: 75.5,56.5 + parent: 6747 + type: Transform + - uid: 25900 + components: + - pos: 73.5,56.5 + parent: 6747 + type: Transform + - uid: 25901 + components: + - pos: 72.5,56.5 + parent: 6747 + type: Transform + - uid: 25902 + components: + - pos: 69.5,56.5 + parent: 6747 + type: Transform + - uid: 25903 + components: + - pos: 68.5,56.5 + parent: 6747 + type: Transform + - uid: 25904 + components: + - pos: 67.5,56.5 + parent: 6747 + type: Transform + - uid: 25905 + components: + - pos: 65.5,56.5 + parent: 6747 + type: Transform + - uid: 25906 + components: + - pos: 62.5,56.5 + parent: 6747 + type: Transform + - uid: 26895 + components: + - pos: 8.5,-19.5 + parent: 6747 + type: Transform + - uid: 26897 + components: + - pos: 3.5,-71.5 + parent: 6747 + type: Transform + - uid: 26898 + components: + - pos: 1.5,-71.5 parent: 6747 type: Transform - proto: GrilleBroken @@ -110050,6 +117552,133 @@ entities: - pos: 36.5,-64.5 parent: 6747 type: Transform + - uid: 25802 + components: + - pos: 64.5,56.5 + parent: 6747 + type: Transform + - uid: 25803 + components: + - rot: -1.5707963267948966 rad + pos: 70.5,56.5 + parent: 6747 + type: Transform + - uid: 25804 + components: + - rot: -1.5707963267948966 rad + pos: 74.5,56.5 + parent: 6747 + type: Transform + - uid: 25805 + components: + - rot: 1.5707963267948966 rad + pos: 74.5,56.5 + parent: 6747 + type: Transform + - uid: 25806 + components: + - pos: 91.5,37.5 + parent: 6747 + type: Transform + - uid: 25807 + components: + - pos: 85.5,48.5 + parent: 6747 + type: Transform + - uid: 25808 + components: + - rot: -1.5707963267948966 rad + pos: 85.5,43.5 + parent: 6747 + type: Transform + - uid: 25809 + components: + - rot: -1.5707963267948966 rad + pos: 85.5,46.5 + parent: 6747 + type: Transform + - uid: 25810 + components: + - rot: -1.5707963267948966 rad + pos: 101.5,37.5 + parent: 6747 + type: Transform + - uid: 25811 + components: + - rot: 1.5707963267948966 rad + pos: 107.5,37.5 + parent: 6747 + type: Transform + - uid: 25812 + components: + - pos: 107.5,37.5 + parent: 6747 + type: Transform + - uid: 25813 + components: + - rot: -1.5707963267948966 rad + pos: 110.5,26.5 + parent: 6747 + type: Transform + - uid: 25814 + components: + - rot: -1.5707963267948966 rad + pos: 110.5,35.5 + parent: 6747 + type: Transform + - uid: 25815 + components: + - rot: 3.141592653589793 rad + pos: 110.5,25.5 + parent: 6747 + type: Transform + - uid: 25816 + components: + - rot: 3.141592653589793 rad + pos: 110.5,18.5 + parent: 6747 + type: Transform + - uid: 25817 + components: + - rot: -1.5707963267948966 rad + pos: 110.5,4.5 + parent: 6747 + type: Transform + - uid: 25818 + components: + - rot: 3.141592653589793 rad + pos: 110.5,5.5 + parent: 6747 + type: Transform + - uid: 25819 + components: + - rot: 1.5707963267948966 rad + pos: 104.5,0.5 + parent: 6747 + type: Transform + - uid: 25821 + components: + - rot: -1.5707963267948966 rad + pos: 98.5,-0.5 + parent: 6747 + type: Transform + - uid: 25822 + components: + - rot: 3.141592653589793 rad + pos: 98.5,-10.5 + parent: 6747 + type: Transform + - uid: 25823 + components: + - pos: 98.5,-11.5 + parent: 6747 + type: Transform + - uid: 25824 + components: + - rot: -1.5707963267948966 rad + pos: 98.5,-16.5 + parent: 6747 + type: Transform - proto: GroundCannabis entities: - uid: 2722 @@ -110095,9 +117724,9 @@ entities: pos: 35.465054,-18.56756 parent: 6747 type: Transform - - uid: 22420 + - uid: 25717 components: - - pos: 46.04525,57.384235 + - pos: 57.935726,57.403614 parent: 6747 type: Transform - proto: GunSafe @@ -110337,6 +117966,11 @@ entities: - pos: -24.233204,-9.16022 parent: 6747 type: Transform + - uid: 3283 + components: + - pos: 28.789566,15.84048 + parent: 6747 + type: Transform - uid: 3349 components: - pos: 43.470135,-34.488388 @@ -110363,29 +117997,29 @@ entities: - pos: 22.50175,-57.946712 parent: 6747 type: Transform - - uid: 6653 + - uid: 8437 components: - - pos: 42.262096,16.659374 + - pos: 35.5571,17.534554 parent: 6747 type: Transform - - uid: 6927 + - uid: 16894 components: - - pos: 45.16199,10.64217 + - pos: 19.990269,-49.483532 parent: 6747 type: Transform - - uid: 8305 + - uid: 19084 components: - - pos: 25.50745,13.629413 + - pos: 46.595142,11.06011 parent: 6747 type: Transform - - uid: 16894 + - uid: 23922 components: - - pos: 19.990269,-49.483532 + - pos: 53.588593,-43.436413 parent: 6747 type: Transform - - uid: 23922 + - uid: 26928 components: - - pos: 53.588593,-43.436413 + - pos: 11.5264635,-17.215008 parent: 6747 type: Transform - proto: HatSpawner @@ -110430,6 +118064,64 @@ entities: pos: -29.92472,-75.588615 parent: 6747 type: Transform +- proto: HeatExchanger + entities: + - uid: 13088 + components: + - rot: 1.5707963267948966 rad + pos: 66.5,30.5 + parent: 6747 + type: Transform + - color: '#FF5500FF' + type: AtmosPipeColor + - uid: 13089 + components: + - rot: 1.5707963267948966 rad + pos: 67.5,31.5 + parent: 6747 + type: Transform + - color: '#FF5500FF' + type: AtmosPipeColor + - uid: 13090 + components: + - rot: 1.5707963267948966 rad + pos: 67.5,32.5 + parent: 6747 + type: Transform + - color: '#FF5500FF' + type: AtmosPipeColor + - uid: 13091 + components: + - rot: 1.5707963267948966 rad + pos: 66.5,33.5 + parent: 6747 + type: Transform + - color: '#FF5500FF' + type: AtmosPipeColor + - uid: 13318 + components: + - rot: -1.5707963267948966 rad + pos: 62.5,42.5 + parent: 6747 + type: Transform + - color: '#00FFFFFF' + type: AtmosPipeColor + - uid: 13319 + components: + - rot: -1.5707963267948966 rad + pos: 62.5,40.5 + parent: 6747 + type: Transform + - color: '#00FFFFFF' + type: AtmosPipeColor + - uid: 13320 + components: + - rot: -1.5707963267948966 rad + pos: 62.5,39.5 + parent: 6747 + type: Transform + - color: '#00FFFFFF' + type: AtmosPipeColor - proto: HelicopterInstrument entities: - uid: 11800 @@ -110444,6 +118136,23 @@ entities: - pos: -32.5,-45.5 parent: 6747 type: Transform +- proto: HighSecCommandLocked + entities: + - uid: 16972 + components: + - pos: 71.5,10.5 + parent: 6747 + type: Transform + - uid: 17030 + components: + - pos: 58.5,8.5 + parent: 6747 + type: Transform + - uid: 17031 + components: + - pos: 63.5,8.5 + parent: 6747 + type: Transform - proto: HoloprojectorSecurity entities: - uid: 25517 @@ -110463,6 +118172,11 @@ entities: type: Transform - proto: HospitalCurtains entities: + - uid: 291 + components: + - pos: -16.5,6.5 + parent: 6747 + type: Transform - uid: 1237 components: - pos: -14.5,-5.5 @@ -110498,6 +118212,11 @@ entities: - pos: -26.5,-58.5 parent: 6747 type: Transform + - uid: 5545 + components: + - pos: -16.5,4.5 + parent: 6747 + type: Transform - uid: 11118 components: - pos: 29.5,-76.5 @@ -110521,6 +118240,11 @@ entities: pos: -14.5,-6.5 parent: 6747 type: Transform + - uid: 1491 + components: + - pos: -16.5,5.5 + parent: 6747 + type: Transform - uid: 1950 components: - pos: 17.5,-13.5 @@ -110791,6 +118515,21 @@ entities: - pos: -17.4912,-13.468138 parent: 6747 type: Transform +- proto: IDComputerCircuitboard + entities: + - uid: 17714 + components: + - rot: 1.5707963267948966 rad + pos: 70.385605,8.628442 + parent: 6747 + type: Transform +- proto: Igniter + entities: + - uid: 13281 + components: + - pos: 57.658195,27.93604 + parent: 6747 + type: Transform - proto: InflatableDoor entities: - uid: 4609 @@ -110826,21 +118565,21 @@ entities: type: Transform - proto: InflatableDoorStack entities: - - uid: 8285 + - uid: 6536 components: - - pos: 28.344921,15.609448 + - pos: 47.0392,18.695782 parent: 6747 type: Transform -- proto: InflatableWall - entities: - - uid: 154 + - uid: 6665 components: - - pos: -16.5,6.5 + - pos: 47.049614,18.497726 parent: 6747 type: Transform - - uid: 4497 +- proto: InflatableWall + entities: + - uid: 63 components: - - pos: -15.5,6.5 + - pos: -8.5,7.5 parent: 6747 type: Transform - uid: 5033 @@ -110869,6 +118608,11 @@ entities: pos: 56.5,-5.5 parent: 6747 type: Transform + - uid: 23832 + components: + - pos: -7.5,7.5 + parent: 6747 + type: Transform - proto: InflatableWallStack entities: - uid: 4135 @@ -110881,9 +118625,14 @@ entities: - pos: -5.4544106,-75.40111 parent: 6747 type: Transform - - uid: 7519 + - uid: 6556 + components: + - pos: 46.424614,18.695782 + parent: 6747 + type: Transform + - uid: 6663 components: - - pos: 28.44207,15.53465 + - pos: 46.43503,18.47688 parent: 6747 type: Transform - uid: 10132 @@ -110896,6 +118645,13 @@ entities: - pos: -2.4749246,39.566498 parent: 6747 type: Transform +- proto: InflatableWallStack5 + entities: + - uid: 22651 + components: + - pos: 33.472576,38.54666 + parent: 6747 + type: Transform - proto: IngotGold entities: - uid: 7515 @@ -110995,9 +118751,10 @@ entities: - pos: 45.490208,-34.405895 parent: 6747 type: Transform - - uid: 8290 + - uid: 6596 components: - - pos: 32.49844,16.652908 + - rot: 3.141592653589793 rad + pos: 41.531864,18.539423 parent: 6747 type: Transform - uid: 8725 @@ -111076,6 +118833,24 @@ entities: type: Transform - canCollide: False type: Physics +- proto: Jug + entities: + - uid: 26926 + components: + - pos: 10.4014635,-17.11077 + parent: 6747 + type: Transform + - solutions: + beaker: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 200 + reagents: + - data: null + ReagentId: Oxygen + Quantity: 150 + type: SolutionContainerManager - proto: Katana entities: - uid: 2955 @@ -111166,11 +118941,6 @@ entities: - pos: -32.5,-54.5 parent: 6747 type: Transform - - uid: 6897 - components: - - pos: 57.5,18.5 - parent: 6747 - type: Transform - uid: 7198 components: - pos: 35.5,-13.5 @@ -111191,16 +118961,6 @@ entities: - pos: 44.5,-5.5 parent: 6747 type: Transform - - uid: 7613 - components: - - pos: 37.5,28.5 - parent: 6747 - type: Transform - - uid: 8276 - components: - - pos: 13.5,19.5 - parent: 6747 - type: Transform - uid: 8647 components: - pos: 9.5,25.5 @@ -111221,6 +118981,16 @@ entities: - pos: 32.5,-84.5 parent: 6747 type: Transform + - uid: 12033 + components: + - pos: 49.5,23.5 + parent: 6747 + type: Transform + - uid: 17762 + components: + - pos: 54.5,6.5 + parent: 6747 + type: Transform - uid: 23551 components: - pos: -69.5,-0.5 @@ -111359,7 +119129,7 @@ entities: maxVol: 1500 reagents: - data: null - ReagentId: Acetone + ReagentId: Ephedrine Quantity: 500 type: SolutionContainerManager - proto: Lamp @@ -111369,6 +119139,12 @@ entities: - pos: 10.602151,-32.125233 parent: 6747 type: Transform + - uid: 2423 + components: + - rot: -1.5707963267948966 rad + pos: 3.680173,-70.15606 + parent: 6747 + type: Transform - uid: 5767 components: - rot: 1.5707963267948966 rad @@ -111422,12 +119198,6 @@ entities: pos: -65.36972,10.78367 parent: 6747 type: Transform - - uid: 23896 - components: - - rot: -1.5707963267948966 rad - pos: 20.662674,-58.24988 - parent: 6747 - type: Transform - uid: 24253 components: - pos: -20.625626,-4.919348 @@ -111443,6 +119213,18 @@ entities: type: Transform - proto: LampGold entities: + - uid: 5553 + components: + - rot: -1.5707963267948966 rad + pos: -19.355305,5.942952 + parent: 6747 + type: Transform + - uid: 8540 + components: + - rot: -1.5707963267948966 rad + pos: 16.606026,19.91129 + parent: 6747 + type: Transform - uid: 8888 components: - rot: 1.5707963267948966 rad @@ -111544,6 +119326,11 @@ entities: - pos: 18.324783,-57.844925 parent: 6747 type: Transform + - uid: 26924 + components: + - pos: 10.359797,-17.43391 + parent: 6747 + type: Transform - proto: LeavesCannabis entities: - uid: 16181 @@ -111590,6 +119377,12 @@ entities: pos: -19.419937,-31.275711 parent: 6747 type: Transform + - uid: 12905 + components: + - rot: -1.5707963267948966 rad + pos: 52.319195,26.26902 + parent: 6747 + type: Transform - proto: LockerAtmosphericsFilledHardsuit entities: - uid: 6093 @@ -111655,6 +119448,13 @@ entities: - pos: -20.5,-19.5 parent: 6747 type: Transform +- proto: LockerBrigmedicFilled + entities: + - uid: 805 + components: + - pos: -28.5,-11.5 + parent: 6747 + type: Transform - proto: LockerCaptainFilledHardsuit entities: - uid: 6154 @@ -111669,21 +119469,21 @@ entities: - pos: -26.5,-9.5 parent: 6747 type: Transform - - uid: 5617 + - uid: 21535 components: - - pos: 13.5,-21.5 + - pos: 53.5,-41.5 parent: 6747 type: Transform - - uid: 21535 + - uid: 26933 components: - - pos: 53.5,-41.5 + - pos: 13.5,-21.5 parent: 6747 type: Transform - proto: LockerChiefEngineerFilledHardsuit entities: - - uid: 6155 + - uid: 17757 components: - - pos: 15.5,19.5 + - pos: 52.5,6.5 parent: 6747 type: Transform - proto: LockerChiefMedicalOfficerFilledHardsuit @@ -111693,21 +119493,45 @@ entities: - pos: 22.5,-36.5 parent: 6747 type: Transform +- proto: LockerDetectiveFilled + entities: + - uid: 15707 + components: + - pos: -17.5,7.5 + parent: 6747 + type: Transform +- proto: LockerEngineerFilled + entities: + - uid: 6694 + components: + - pos: 43.5,18.5 + parent: 6747 + type: Transform + - uid: 6705 + components: + - pos: 44.5,18.5 + parent: 6747 + type: Transform + - uid: 6712 + components: + - pos: 42.5,18.5 + parent: 6747 + type: Transform - proto: LockerEngineerFilledHardsuit entities: - - uid: 6159 + - uid: 6697 components: - - pos: 28.5,24.5 + - pos: 42.5,16.5 parent: 6747 type: Transform - - uid: 6161 + - uid: 6703 components: - - pos: 29.5,24.5 + - pos: 43.5,16.5 parent: 6747 type: Transform - - uid: 6176 + - uid: 6704 components: - - pos: 30.5,24.5 + - pos: 44.5,16.5 parent: 6747 type: Transform - proto: LockerEvidence @@ -111733,6 +119557,11 @@ entities: - pos: -16.5,-3.5 parent: 6747 type: Transform + - uid: 16589 + components: + - pos: -21.5,1.5 + parent: 6747 + type: Transform - proto: LockerForensicMantisFilled entities: - uid: 4359 @@ -111867,16 +119696,26 @@ entities: type: Transform - proto: LockerParamedicFilledHardsuit entities: - - uid: 6183 + - uid: 866 + components: + - pos: -26.5,-13.5 + parent: 6747 + type: Transform + - uid: 896 + components: + - pos: -23.5,-13.5 + parent: 6747 + type: Transform + - uid: 26944 components: - pos: 12.5,-29.5 parent: 6747 type: Transform - proto: LockerQuarterMasterFilled entities: - - uid: 4405 + - uid: 9424 components: - - pos: 58.5,15.5 + - pos: 9.5,22.5 parent: 6747 type: Transform - proto: LockerResearchDirectorFilledHardsuit @@ -111888,19 +119727,19 @@ entities: type: Transform - proto: LockerSalvageSpecialistFilledHardsuit entities: - - uid: 6213 + - uid: 3286 components: - - pos: 9.5,31.5 + - pos: 7.5,30.5 parent: 6747 type: Transform - - uid: 6337 + - uid: 6628 components: - - pos: 9.5,30.5 + - pos: 7.5,29.5 parent: 6747 type: Transform - - uid: 6418 + - uid: 6631 components: - - pos: 13.5,28.5 + - pos: 6.5,30.5 parent: 6747 type: Transform - proto: LockerScienceFilled @@ -111992,9 +119831,9 @@ entities: - pos: 32.5,-71.5 parent: 6747 type: Transform - - uid: 8379 + - uid: 6399 components: - - pos: 21.5,28.5 + - pos: 54.5,18.5 parent: 6747 type: Transform - proto: Machete @@ -112241,9 +120080,9 @@ entities: - pos: 24.5,-56.5 parent: 6747 type: Transform - - uid: 6635 + - uid: 6866 components: - - pos: 38.5,18.5 + - pos: 35.5,16.5 parent: 6747 type: Transform - tag: Mailroom @@ -112271,11 +120110,6 @@ entities: - pos: 40.5,-27.5 parent: 6747 type: Transform - - uid: 12619 - components: - - pos: -0.5,32.5 - parent: 6747 - type: Transform - uid: 12710 components: - pos: 15.5,-27.5 @@ -112286,28 +120120,19 @@ entities: - pos: -18.5,-21.5 parent: 6747 type: Transform - - uid: 23771 - components: - - pos: 47.5,11.5 - parent: 6747 - type: Transform - - tag: Cargo - type: MailingUnit - - config: - tag: Cargo - type: Configuration - proto: MailingUnitElectronics entities: - - uid: 6709 + - uid: 8504 components: - - pos: 37.543346,18.608644 + - rot: -1.5707963267948966 rad + pos: 32.663303,14.563739 parent: 6747 type: Transform - proto: MailTeleporter entities: - - uid: 6647 + - uid: 6869 components: - - pos: 46.5,18.5 + - pos: 33.5,18.5 parent: 6747 type: Transform - proto: MaintenanceFluffSpawner @@ -112514,6 +120339,11 @@ entities: - pos: 41.5,-54.5 parent: 6747 type: Transform + - uid: 18854 + components: + - pos: 48.5,18.5 + parent: 6747 + type: Transform - uid: 22570 components: - pos: 31.5,22.5 @@ -112593,6 +120423,13 @@ entities: - pos: -56.5,-25.5 parent: 6747 type: Transform +- proto: MaterialCardboard + entities: + - uid: 8306 + components: + - pos: 35.444855,18.46228 + parent: 6747 + type: Transform - proto: MaterialCardboard1 entities: - uid: 3233 @@ -112761,11 +120598,6 @@ entities: - pos: 3.6750183,-14.292031 parent: 6747 type: Transform - - uid: 22391 - components: - - pos: 17.580536,13.453645 - parent: 6747 - type: Transform - proto: Mattress entities: - uid: 8602 @@ -112803,11 +120635,6 @@ entities: - pos: 15.5,-16.5 parent: 6747 type: Transform - - uid: 1958 - components: - - pos: 15.5,-19.5 - parent: 6747 - type: Transform - uid: 2026 components: - pos: 22.5,-12.5 @@ -112828,6 +120655,11 @@ entities: - pos: -23.5,-15.5 parent: 6747 type: Transform + - uid: 22740 + components: + - pos: 16.5,-18.5 + parent: 6747 + type: Transform - uid: 23924 components: - pos: 52.5,-41.5 @@ -112852,6 +120684,14 @@ entities: - pos: 20.5,-38.5 parent: 6747 type: Transform +- proto: MedicalTechFabCircuitboard + entities: + - uid: 17715 + components: + - rot: 1.5707963267948966 rad + pos: 74.39603,9.60829 + parent: 6747 + type: Transform - proto: MedkitAdvancedFilled entities: - uid: 8528 @@ -112917,9 +120757,14 @@ entities: - pos: 26.612438,-21.926353 parent: 6747 type: Transform - - uid: 7062 + - uid: 6683 + components: + - pos: 29.38013,18.575663 + parent: 6747 + type: Transform + - uid: 8462 components: - - pos: 55.530807,6.630965 + - pos: 48.590088,17.038935 parent: 6747 type: Transform - uid: 17591 @@ -112946,11 +120791,6 @@ entities: - pos: 13.549136,-31.569992 parent: 6747 type: Transform - - uid: 11827 - components: - - pos: 15.479423,37.63152 - parent: 6747 - type: Transform - proto: MedkitToxinFilled entities: - uid: 3728 @@ -112986,11 +120826,6 @@ entities: type: Transform - proto: MetalDoor entities: - - uid: 2262 - components: - - pos: 16.5,16.5 - parent: 6747 - type: Transform - uid: 3311 components: - pos: 40.5,-37.5 @@ -113011,6 +120846,11 @@ entities: - pos: 1.5,-60.5 parent: 6747 type: Transform + - uid: 12901 + components: + - pos: 37.5,7.5 + parent: 6747 + type: Transform - proto: MicroManipulatorStockPart entities: - uid: 5097 @@ -113019,9 +120859,9 @@ entities: pos: 28.666245,-69.54238 parent: 6747 type: Transform - - uid: 7711 + - uid: 8173 components: - - pos: 30.111343,34.536076 + - pos: 73.54711,20.930025 parent: 6747 type: Transform - uid: 11537 @@ -113356,11 +121196,6 @@ entities: - pos: -4.5,6.5 parent: 6747 type: Transform - - uid: 92 - components: - - pos: -7.5,8.5 - parent: 6747 - type: Transform - uid: 105 components: - pos: -5.5,7.5 @@ -113373,62 +121208,12 @@ entities: type: Transform - uid: 137 components: - - pos: -22.5,8.5 - parent: 6747 - type: Transform - - uid: 140 - components: - - pos: -23.5,9.5 - parent: 6747 - type: Transform - - uid: 155 - components: - - pos: -23.5,8.5 - parent: 6747 - type: Transform - - uid: 197 - components: - - pos: -22.5,7.5 - parent: 6747 - type: Transform - - uid: 200 - components: - - pos: -20.5,6.5 - parent: 6747 - type: Transform - - uid: 203 - components: - - pos: -21.5,6.5 - parent: 6747 - type: Transform - - uid: 209 - components: - - pos: -21.5,4.5 - parent: 6747 - type: Transform - - uid: 229 - components: - - pos: -23.5,6.5 - parent: 6747 - type: Transform - - uid: 230 - components: - - pos: -22.5,6.5 - parent: 6747 - type: Transform - - uid: 231 - components: - - pos: -21.5,5.5 - parent: 6747 - type: Transform - - uid: 233 - components: - - pos: -23.5,7.5 + - pos: -27.5,4.5 parent: 6747 type: Transform - - uid: 234 + - uid: 138 components: - - pos: -22.5,5.5 + - pos: -27.5,5.5 parent: 6747 type: Transform - uid: 235 @@ -113446,11 +121231,6 @@ entities: - pos: -6.5,9.5 parent: 6747 type: Transform - - uid: 239 - components: - - pos: -9.5,8.5 - parent: 6747 - type: Transform - uid: 240 components: - pos: -11.5,11.5 @@ -113471,11 +121251,6 @@ entities: - pos: -14.5,11.5 parent: 6747 type: Transform - - uid: 246 - components: - - pos: -9.5,9.5 - parent: 6747 - type: Transform - uid: 253 components: - pos: -2.5,8.5 @@ -113516,31 +121291,11 @@ entities: - pos: -9.5,13.5 parent: 6747 type: Transform - - uid: 264 - components: - - pos: -8.5,8.5 - parent: 6747 - type: Transform - - uid: 265 - components: - - pos: -13.5,9.5 - parent: 6747 - type: Transform - - uid: 266 - components: - - pos: -12.5,12.5 - parent: 6747 - type: Transform - uid: 268 components: - pos: -14.5,10.5 parent: 6747 type: Transform - - uid: 269 - components: - - pos: -14.5,9.5 - parent: 6747 - type: Transform - uid: 271 components: - pos: -16.5,10.5 @@ -113566,11 +121321,6 @@ entities: - pos: -7.5,10.5 parent: 6747 type: Transform - - uid: 277 - components: - - pos: -7.5,9.5 - parent: 6747 - type: Transform - uid: 278 components: - pos: -17.5,12.5 @@ -113611,36 +121361,11 @@ entities: - pos: -21.5,13.5 parent: 6747 type: Transform - - uid: 286 - components: - - pos: -24.5,10.5 - parent: 6747 - type: Transform - uid: 287 components: - pos: -16.5,11.5 parent: 6747 type: Transform - - uid: 291 - components: - - pos: -24.5,9.5 - parent: 6747 - type: Transform - - uid: 292 - components: - - pos: -24.5,8.5 - parent: 6747 - type: Transform - - uid: 293 - components: - - pos: -24.5,7.5 - parent: 6747 - type: Transform - - uid: 294 - components: - - pos: -25.5,9.5 - parent: 6747 - type: Transform - uid: 302 components: - pos: -28.5,20.5 @@ -113701,21 +121426,11 @@ entities: - pos: -34.5,20.5 parent: 6747 type: Transform - - uid: 332 - components: - - pos: -23.5,10.5 - parent: 6747 - type: Transform - uid: 334 components: - pos: -22.5,13.5 parent: 6747 type: Transform - - uid: 335 - components: - - pos: -8.5,9.5 - parent: 6747 - type: Transform - uid: 337 components: - pos: -8.5,10.5 @@ -113736,6 +121451,41 @@ entities: - pos: -2.5,7.5 parent: 6747 type: Transform + - uid: 961 + components: + - pos: -21.5,15.5 + parent: 6747 + type: Transform + - uid: 962 + components: + - pos: -24.5,20.5 + parent: 6747 + type: Transform + - uid: 2508 + components: + - pos: -27.5,9.5 + parent: 6747 + type: Transform + - uid: 2934 + components: + - pos: -27.5,8.5 + parent: 6747 + type: Transform + - uid: 2935 + components: + - pos: -27.5,7.5 + parent: 6747 + type: Transform + - uid: 2970 + components: + - pos: -27.5,6.5 + parent: 6747 + type: Transform + - uid: 2972 + components: + - pos: -7.5,9.5 + parent: 6747 + type: Transform - uid: 3019 components: - pos: -28.5,7.5 @@ -113781,6 +121531,11 @@ entities: - pos: -28.5,6.5 parent: 6747 type: Transform + - uid: 3651 + components: + - pos: -9.5,10.5 + parent: 6747 + type: Transform - uid: 3900 components: - pos: -24.5,21.5 @@ -114066,31 +121821,6 @@ entities: - pos: -15.5,-78.5 parent: 6747 type: Transform - - uid: 4594 - components: - - pos: -17.5,-78.5 - parent: 6747 - type: Transform - - uid: 4595 - components: - - pos: -18.5,-78.5 - parent: 6747 - type: Transform - - uid: 4596 - components: - - pos: -19.5,-78.5 - parent: 6747 - type: Transform - - uid: 4597 - components: - - pos: -19.5,-77.5 - parent: 6747 - type: Transform - - uid: 4598 - components: - - pos: -19.5,-76.5 - parent: 6747 - type: Transform - uid: 4599 components: - pos: -19.5,-75.5 @@ -114136,26 +121866,6 @@ entities: - pos: -12.5,-71.5 parent: 6747 type: Transform - - uid: 4617 - components: - - pos: -17.5,-77.5 - parent: 6747 - type: Transform - - uid: 4618 - components: - - pos: -18.5,-77.5 - parent: 6747 - type: Transform - - uid: 4619 - components: - - pos: -17.5,-76.5 - parent: 6747 - type: Transform - - uid: 4620 - components: - - pos: -18.5,-76.5 - parent: 6747 - type: Transform - uid: 4621 components: - pos: -17.5,-75.5 @@ -114481,14 +122191,34 @@ entities: - pos: -1.5,-83.5 parent: 6747 type: Transform - - uid: 5231 + - uid: 5533 components: - - pos: 2.5,-70.5 + - pos: -10.5,10.5 parent: 6747 type: Transform - - uid: 5232 + - uid: 5536 components: - - pos: 3.5,-70.5 + - pos: -22.5,9.5 + parent: 6747 + type: Transform + - uid: 5538 + components: + - pos: -23.5,9.5 + parent: 6747 + type: Transform + - uid: 5539 + components: + - pos: -24.5,9.5 + parent: 6747 + type: Transform + - uid: 5540 + components: + - pos: -26.5,9.5 + parent: 6747 + type: Transform + - uid: 5541 + components: + - pos: -25.5,9.5 parent: 6747 type: Transform - uid: 6090 @@ -114541,6 +122271,11 @@ entities: - pos: -43.5,-48.5 parent: 6747 type: Transform + - uid: 6589 + components: + - pos: -21.5,9.5 + parent: 6747 + type: Transform - uid: 7415 components: - pos: -21.5,14.5 @@ -114556,44 +122291,44 @@ entities: - pos: -22.5,14.5 parent: 6747 type: Transform - - uid: 13257 + - uid: 7436 components: - - pos: -41.5,-45.5 + - pos: -21.5,8.5 parent: 6747 type: Transform - - uid: 14913 + - uid: 7714 components: - - pos: 1.5,-68.5 + - pos: -17.5,-76.5 parent: 6747 type: Transform - - uid: 14914 + - uid: 8392 components: - - pos: 1.5,-69.5 + - pos: -19.5,-78.5 parent: 6747 type: Transform - - uid: 15329 + - uid: 8393 components: - - pos: -18.5,13.5 + - pos: -19.5,-77.5 parent: 6747 type: Transform - - uid: 16180 + - uid: 8394 components: - - pos: -32.5,11.5 + - pos: -19.5,-76.5 parent: 6747 type: Transform - - uid: 16722 + - uid: 13257 components: - - pos: 1.5,-70.5 + - pos: -41.5,-45.5 parent: 6747 type: Transform - - uid: 23655 + - uid: 15329 components: - - pos: 2.5,-69.5 + - pos: -18.5,13.5 parent: 6747 type: Transform - - uid: 23656 + - uid: 16180 components: - - pos: 2.5,-68.5 + - pos: -32.5,11.5 parent: 6747 type: Transform - uid: 23946 @@ -114603,6 +122338,11 @@ entities: type: Transform - proto: MountainRockMining entities: + - uid: 92 + components: + - pos: -6.5,7.5 + parent: 6747 + type: Transform - uid: 141 components: - pos: -6.5,10.5 @@ -114698,16 +122438,6 @@ entities: - pos: -3.5,7.5 parent: 6747 type: Transform - - uid: 241 - components: - - pos: -10.5,10.5 - parent: 6747 - type: Transform - - uid: 243 - components: - - pos: -12.5,9.5 - parent: 6747 - type: Transform - uid: 247 components: - pos: -12.5,8.5 @@ -114723,46 +122453,21 @@ entities: - pos: -3.5,8.5 parent: 6747 type: Transform - - uid: 250 - components: - - pos: -11.5,8.5 - parent: 6747 - type: Transform - uid: 251 components: - pos: -13.5,8.5 parent: 6747 type: Transform - - uid: 254 - components: - - pos: -10.5,8.5 - parent: 6747 - type: Transform - - uid: 257 - components: - - pos: -10.5,9.5 - parent: 6747 - type: Transform - uid: 258 components: - pos: -15.5,11.5 parent: 6747 type: Transform - - uid: 267 - components: - - pos: -11.5,9.5 - parent: 6747 - type: Transform - uid: 270 components: - pos: -9.5,11.5 parent: 6747 type: Transform - - uid: 272 - components: - - pos: -9.5,10.5 - parent: 6747 - type: Transform - uid: 472 components: - pos: -4.5,8.5 @@ -114998,11 +122703,6 @@ entities: - pos: -14.5,-78.5 parent: 6747 type: Transform - - uid: 5340 - components: - - pos: -22.5,4.5 - parent: 6747 - type: Transform - uid: 5531 components: - pos: -27.5,12.5 @@ -115093,11 +122793,6 @@ entities: - pos: -26.5,18.5 parent: 6747 type: Transform - - uid: 5627 - components: - - pos: -27.5,9.5 - parent: 6747 - type: Transform - uid: 6150 components: - pos: -42.5,-49.5 @@ -115186,27 +122881,15 @@ entities: pos: 46.695457,-35.422188 parent: 6747 type: Transform - - uid: 6920 + - uid: 8417 components: - - pos: 42.686146,16.623232 + - pos: 35.70293,14.615859 parent: 6747 type: Transform - - uid: 7076 + - uid: 8497 components: - rot: -1.5707963267948966 rad - pos: 46.47829,10.909602 - parent: 6747 - type: Transform - - uid: 8280 - components: - - rot: 3.141592653589793 rad - pos: 16.00829,13.563491 - parent: 6747 - type: Transform - - uid: 8281 - components: - - rot: 3.141592653589793 rad - pos: 48.669468,27.590765 + pos: 29.15886,15.487689 parent: 6747 type: Transform - uid: 9205 @@ -115249,11 +122932,6 @@ entities: - pos: 49.5,-32.5 parent: 6747 type: Transform - - uid: 7073 - components: - - pos: 52.5,6.5 - parent: 6747 - type: Transform - uid: 7756 components: - pos: 38.5,42.5 @@ -115264,11 +122942,6 @@ entities: - pos: -35.5,-57.5 parent: 6747 type: Transform - - uid: 8182 - components: - - pos: 32.5,34.5 - parent: 6747 - type: Transform - uid: 8183 components: - pos: 33.5,34.5 @@ -115435,9 +123108,9 @@ entities: - pos: 11.5,-32.5 parent: 6747 type: Transform - - uid: 22440 + - uid: 27042 components: - - pos: 20.5,-59.5 + - pos: 3.5,-69.5 parent: 6747 type: Transform - proto: Oracle @@ -115447,6 +123120,14 @@ entities: - pos: 13.5,-44.5 parent: 6747 type: Transform +- proto: OreBox + entities: + - uid: 315 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,33.5 + parent: 6747 + type: Transform - proto: OreProcessor entities: - uid: 8690 @@ -115588,6 +123269,11 @@ entities: type: Transform - proto: Paper entities: + - uid: 22 + components: + - pos: 31.505016,14.501195 + parent: 6747 + type: Transform - uid: 87 components: - pos: 2.6278343,-2.080499 @@ -115701,6 +123387,16 @@ entities: pos: 38.731472,-49.34125 parent: 6747 type: Transform + - uid: 836 + components: + - pos: 31.505016,14.501195 + parent: 6747 + type: Transform + - uid: 874 + components: + - pos: 31.505016,14.532468 + parent: 6747 + type: Transform - uid: 886 components: - rot: 1.5707963267948966 rad @@ -115779,6 +123475,21 @@ entities: pos: 39.624912,-49.849777 parent: 6747 type: Transform + - uid: 1106 + components: + - pos: 31.505016,14.532468 + parent: 6747 + type: Transform + - uid: 1107 + components: + - pos: 31.505016,14.532468 + parent: 6747 + type: Transform + - uid: 1108 + components: + - pos: 31.505016,14.532468 + parent: 6747 + type: Transform - uid: 1220 components: - pos: 2.6278343,-2.080499 @@ -115993,6 +123704,16 @@ entities: pos: 23.655636,-27.325508 parent: 6747 type: Transform + - uid: 3298 + components: + - pos: 31.505016,14.501195 + parent: 6747 + type: Transform + - uid: 3301 + components: + - pos: 31.505016,14.501195 + parent: 6747 + type: Transform - uid: 4147 components: - rot: -1.5707963267948966 rad @@ -116610,322 +124331,50 @@ entities: pos: 39.614494,-49.860203 parent: 6747 type: Transform - - uid: 6591 - components: - - rot: 1.5707963267948966 rad - pos: 39.614494,-49.860203 - parent: 6747 - type: Transform - - uid: 6654 - components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 - parent: 6747 - type: Transform - - uid: 6657 - components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 - parent: 6747 - type: Transform - - uid: 6658 - components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 - parent: 6747 - type: Transform - - uid: 6659 - components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 - parent: 6747 - type: Transform - - uid: 6660 - components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 - parent: 6747 - type: Transform - - uid: 6661 + - uid: 6352 components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 + - pos: 31.505016,14.532468 parent: 6747 type: Transform - - uid: 6662 + - uid: 6535 components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 + - pos: 31.505016,14.532468 parent: 6747 type: Transform - - uid: 6663 + - uid: 6591 components: - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 + pos: 39.614494,-49.860203 parent: 6747 type: Transform - uid: 6664 components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 - parent: 6747 - type: Transform - - uid: 6665 - components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 - parent: 6747 - type: Transform - - uid: 6666 - components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 - parent: 6747 - type: Transform - - uid: 6667 - components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 + - pos: 31.505016,14.532468 parent: 6747 type: Transform - uid: 6668 components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 - parent: 6747 - type: Transform - - uid: 6669 - components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 - parent: 6747 - type: Transform - - uid: 6670 - components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 - parent: 6747 - type: Transform - - uid: 6671 - components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 - parent: 6747 - type: Transform - - uid: 6672 - components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 - parent: 6747 - type: Transform - - uid: 6673 - components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 - parent: 6747 - type: Transform - - uid: 6674 - components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 - parent: 6747 - type: Transform - - uid: 6675 - components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 + - pos: 31.505016,14.532468 parent: 6747 type: Transform - uid: 6676 components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 - parent: 6747 - type: Transform - - uid: 6677 - components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 + - pos: 31.505016,14.501195 parent: 6747 type: Transform - uid: 6678 components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 - parent: 6747 - type: Transform - - uid: 6679 - components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 - parent: 6747 - type: Transform - - uid: 6680 - components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 - parent: 6747 - type: Transform - - uid: 6681 - components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 - parent: 6747 - type: Transform - - uid: 6682 - components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 - parent: 6747 - type: Transform - - uid: 6683 - components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 - parent: 6747 - type: Transform - - uid: 6684 - components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 - parent: 6747 - type: Transform - - uid: 6685 - components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 - parent: 6747 - type: Transform - - uid: 6686 - components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 - parent: 6747 - type: Transform - - uid: 6687 - components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 - parent: 6747 - type: Transform - - uid: 6688 - components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 - parent: 6747 - type: Transform - - uid: 6689 - components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 + - pos: 31.505016,14.501195 parent: 6747 type: Transform - uid: 6690 components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 + - pos: 31.505016,14.532468 parent: 6747 type: Transform - uid: 6691 components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 - parent: 6747 - type: Transform - - uid: 6692 - components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 - parent: 6747 - type: Transform - - uid: 6693 - components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 - parent: 6747 - type: Transform - - uid: 6694 - components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 - parent: 6747 - type: Transform - - uid: 6695 - components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 - parent: 6747 - type: Transform - - uid: 6696 - components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 - parent: 6747 - type: Transform - - uid: 6697 - components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 - parent: 6747 - type: Transform - - uid: 6698 - components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 - parent: 6747 - type: Transform - - uid: 6699 - components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 - parent: 6747 - type: Transform - - uid: 6700 - components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 - parent: 6747 - type: Transform - - uid: 6701 - components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 - parent: 6747 - type: Transform - - uid: 6702 - components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 - parent: 6747 - type: Transform - - uid: 6703 - components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 - parent: 6747 - type: Transform - - uid: 6704 - components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 - parent: 6747 - type: Transform - - uid: 6705 - components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 - parent: 6747 - type: Transform - - uid: 6706 - components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 - parent: 6747 - type: Transform - - uid: 6707 - components: - - rot: 1.5707963267948966 rad - pos: 41.522514,15.992244 + - pos: 31.525848,14.5428915 parent: 6747 type: Transform - uid: 6928 @@ -118303,59 +125752,144 @@ entities: - pos: 40.6371,-31.539852 parent: 6747 type: Transform + - uid: 8246 + components: + - pos: 31.505016,14.532468 + parent: 6747 + type: Transform + - uid: 8247 + components: + - pos: 31.505016,14.522044 + parent: 6747 + type: Transform - uid: 8249 components: - pos: 22.660133,-61.079845 parent: 6747 type: Transform - - uid: 8294 + - uid: 8251 components: - - pos: 24.907608,13.483138 + - pos: 31.505016,14.501195 parent: 6747 type: Transform - - uid: 8295 + - uid: 8262 components: - - pos: 24.876358,13.483138 + - pos: 31.505016,14.532468 parent: 6747 type: Transform - - uid: 8296 + - uid: 8276 components: - - pos: 24.980522,13.451865 + - pos: 31.525848,14.5428915 parent: 6747 type: Transform - - uid: 8297 + - uid: 8370 components: - - pos: 24.949272,13.503985 + - pos: 31.525848,14.5428915 parent: 6747 type: Transform - - uid: 8298 + - uid: 8380 components: - - pos: 24.970108,13.493562 + - pos: 31.505016,14.501195 parent: 6747 type: Transform - - uid: 8299 + - uid: 8383 components: - - pos: 24.907608,13.472714 + - pos: 31.525848,14.5428915 parent: 6747 type: Transform - - uid: 8300 + - uid: 8384 components: - - pos: 24.918022,13.514409 + - pos: 31.525848,14.5428915 parent: 6747 type: Transform - - uid: 8301 + - uid: 8385 components: - - pos: 24.938858,13.483138 + - pos: 31.505016,14.501195 parent: 6747 type: Transform - - uid: 8302 + - uid: 8387 components: - - pos: 24.886772,13.472714 + - pos: 31.505016,14.501195 parent: 6747 type: Transform - - uid: 8303 + - uid: 8400 + components: + - pos: 31.505016,14.532468 + parent: 6747 + type: Transform + - uid: 8401 + components: + - pos: 31.505016,14.501195 + parent: 6747 + type: Transform + - uid: 8403 + components: + - pos: 31.505016,14.532468 + parent: 6747 + type: Transform + - uid: 8429 + components: + - pos: 31.505016,14.522044 + parent: 6747 + type: Transform + - uid: 8434 + components: + - pos: 31.525848,14.5428915 + parent: 6747 + type: Transform + - uid: 8436 + components: + - pos: 31.525848,14.5428915 + parent: 6747 + type: Transform + - uid: 8438 + components: + - pos: 31.505016,14.501195 + parent: 6747 + type: Transform + - uid: 8448 + components: + - pos: 31.505016,14.501195 + parent: 6747 + type: Transform + - uid: 8474 + components: + - pos: 31.505016,14.532468 + parent: 6747 + type: Transform + - uid: 8475 + components: + - pos: 31.505016,14.532468 + parent: 6747 + type: Transform + - uid: 8476 + components: + - pos: 31.505016,14.532468 + parent: 6747 + type: Transform + - uid: 8485 + components: + - pos: 31.505016,14.501195 + parent: 6747 + type: Transform + - uid: 8492 + components: + - pos: 31.525848,14.5428915 + parent: 6747 + type: Transform + - uid: 8501 components: - - pos: 24.813858,13.587377 + - pos: 31.525848,14.5428915 + parent: 6747 + type: Transform + - uid: 8517 + components: + - pos: 31.505016,14.501195 + parent: 6747 + type: Transform + - uid: 8520 + components: + - pos: 31.505016,14.501195 parent: 6747 type: Transform - uid: 8521 @@ -118363,6 +125897,21 @@ entities: - pos: 40.6371,-31.539852 parent: 6747 type: Transform + - uid: 8530 + components: + - pos: 31.505016,14.501195 + parent: 6747 + type: Transform + - uid: 8555 + components: + - pos: 31.505016,14.532468 + parent: 6747 + type: Transform + - uid: 8564 + components: + - pos: 31.505016,14.532468 + parent: 6747 + type: Transform - uid: 8614 components: - pos: 40.6371,-31.539852 @@ -118378,6 +125927,21 @@ entities: - pos: 40.647514,-31.539852 parent: 6747 type: Transform + - uid: 8669 + components: + - pos: 31.505016,14.501195 + parent: 6747 + type: Transform + - uid: 8733 + components: + - pos: 31.505016,14.501195 + parent: 6747 + type: Transform + - uid: 8751 + components: + - pos: 31.505016,14.522044 + parent: 6747 + type: Transform - uid: 8756 components: - rot: -1.5707963267948966 rad @@ -118534,6 +126098,11 @@ entities: pos: 38.731472,-49.351677 parent: 6747 type: Transform + - uid: 8813 + components: + - pos: 31.505016,14.501195 + parent: 6747 + type: Transform - uid: 9093 components: - pos: 16.30968,-67.44898 @@ -119243,6 +126812,11 @@ entities: pos: -4.486021,-84.45218 parent: 6747 type: Transform + - uid: 11952 + components: + - pos: 31.525848,14.5428915 + parent: 6747 + type: Transform - uid: 12220 components: - pos: -24.369007,-33.092175 @@ -119950,11 +127524,23 @@ entities: - pos: 46.5,-41.5 parent: 6747 type: Transform + - uid: 10351 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,19.5 + parent: 6747 + type: Transform - uid: 12787 components: - pos: -26.5,-23.5 parent: 6747 type: Transform + - uid: 15698 + components: + - rot: 3.141592653589793 rad + pos: -20.542805,5.58854 + parent: 6747 + type: Transform - uid: 16821 components: - pos: 20.5,-49.5 @@ -120011,6 +127597,17 @@ entities: type: Transform - proto: PartRodMetal1 entities: + - uid: 2493 + components: + - rot: -1.5707963267948966 rad + pos: -6.803398,6.637453 + parent: 6747 + type: Transform + - uid: 5340 + components: + - pos: -8.4033985,6.2121572 + parent: 6747 + type: Transform - uid: 11438 components: - pos: -43.527206,-13.418601 @@ -120095,11 +127692,6 @@ entities: pos: 6.400034,-77.13805 parent: 6747 type: Transform - - uid: 6708 - components: - - pos: 41.637096,16.430048 - parent: 6747 - type: Transform - uid: 7058 components: - rot: -1.5707963267948966 rad @@ -120122,9 +127714,9 @@ entities: - pos: 43.75785,-23.229836 parent: 6747 type: Transform - - uid: 8304 + - uid: 7942 components: - - pos: 24.480522,13.524833 + - pos: 31.29668,14.480348 parent: 6747 type: Transform - uid: 8782 @@ -120331,31 +127923,6 @@ entities: type: Transform - proto: Pill entities: - - uid: 4375 - components: - - pos: 4.6032925,-60.929005 - parent: 6747 - type: Transform - - uid: 4376 - components: - - pos: 5.0928764,-60.772648 - parent: 6747 - type: Transform - - uid: 4377 - components: - - pos: 4.6866264,-61.585712 - parent: 6747 - type: Transform - - uid: 4378 - components: - - pos: 4.5512094,-61.55444 - parent: 6747 - type: Transform - - uid: 4379 - components: - - pos: 4.7595425,-61.37723 - parent: 6747 - type: Transform - uid: 17312 components: - flags: InContainer @@ -120478,13 +128045,6 @@ entities: - currentLabel: dump me type: Label - type: InsideEntityStorage -- proto: PillDexalin - entities: - - uid: 7436 - components: - - pos: -26.271378,8.646681 - parent: 6747 - type: Transform - proto: PillDylovene entities: - uid: 10161 @@ -120542,6 +128102,11 @@ entities: - pos: 40.5,42.5 parent: 6747 type: Transform + - uid: 12865 + components: + - pos: 59.5,25.5 + parent: 6747 + type: Transform - proto: PlasmaOre1 entities: - uid: 25553 @@ -120691,9 +128256,19 @@ entities: type: Transform - proto: PlasticFlapsAirtightClear entities: - - uid: 7373 + - uid: 1109 components: - - pos: 42.5,9.5 + - pos: 25.5,14.5 + parent: 6747 + type: Transform + - uid: 6467 + components: + - pos: 25.5,23.5 + parent: 6747 + type: Transform + - uid: 6468 + components: + - pos: 24.5,23.5 parent: 6747 type: Transform - uid: 8236 @@ -120701,6 +128276,11 @@ entities: - pos: 3.5,34.5 parent: 6747 type: Transform + - uid: 8473 + components: + - pos: 24.5,14.5 + parent: 6747 + type: Transform - uid: 22455 components: - pos: -7.5,34.5 @@ -120746,9 +128326,9 @@ entities: type: Transform - proto: PlushieSharkGrey entities: - - uid: 22428 + - uid: 25680 components: - - pos: 34.02313,54.53888 + - pos: 33.98152,72.3893 parent: 6747 type: Transform - proto: PlushieSharkPink @@ -120809,6 +128389,11 @@ entities: - pos: 14.5,-74.5 parent: 6747 type: Transform + - uid: 8239 + components: + - pos: 14.5,34.5 + parent: 6747 + type: Transform - uid: 8698 components: - pos: -34.5,9.5 @@ -120819,9 +128404,9 @@ entities: - pos: 15.5,-74.5 parent: 6747 type: Transform - - uid: 25548 + - uid: 19049 components: - - pos: 14.5,31.5 + - pos: 27.5,35.5 parent: 6747 type: Transform - uid: 25549 @@ -120848,21 +128433,27 @@ entities: - pos: -59.46024,-82.39256 parent: 6747 type: Transform -- proto: PortableGeneratorSuperPacman - entities: - - uid: 134 + - uid: 19047 components: - - pos: 15.5,22.5 + - rot: -1.5707963267948966 rad + pos: 67.9725,18.520355 parent: 6747 type: Transform +- proto: PortableGeneratorSuperPacman + entities: - uid: 6275 components: - pos: 68.5,-7.5 parent: 6747 type: Transform - - uid: 8532 + - uid: 19050 components: - - pos: 17.5,22.5 + - pos: 60.5,21.5 + parent: 6747 + type: Transform + - uid: 19051 + components: + - pos: 60.5,17.5 parent: 6747 type: Transform - proto: PortableGeneratorSuperPacmanMachineCircuitboard @@ -120872,17 +128463,18 @@ entities: - pos: 5.5295258,-14.361953 parent: 6747 type: Transform - - uid: 7710 - components: - - pos: 30.491333,32.607517 - parent: 6747 - type: Transform - uid: 10393 components: - rot: -1.5707963267948966 rad pos: 12.378404,-75.25239 parent: 6747 type: Transform + - uid: 19048 + components: + - rot: 3.141592653589793 rad + pos: 65.37875,18.009584 + parent: 6747 + type: Transform - uid: 21980 components: - pos: 12.587932,-75.07852 @@ -120905,14 +128497,6 @@ entities: - pos: -45.5,-81.5 parent: 6747 type: Transform -- proto: PortableScrubberMachineCircuitBoard - entities: - - uid: 11818 - components: - - rot: 3.141592653589793 rad - pos: 30.442696,33.934605 - parent: 6747 - type: Transform - proto: PosterBroken entities: - uid: 2739 @@ -121287,6 +128871,13 @@ entities: pos: -38.5,-7.5 parent: 6747 type: Transform +- proto: PosterLegitVacation + entities: + - uid: 26666 + components: + - pos: 11.5,23.5 + parent: 6747 + type: Transform - proto: PosterLegitWalk entities: - uid: 24539 @@ -121428,6 +129019,16 @@ entities: - pos: 26.5,-49.5 parent: 6747 type: Transform + - uid: 6487 + components: + - pos: 18.5,22.5 + parent: 6747 + type: Transform + - uid: 19129 + components: + - pos: 0.314044,-54.70443 + parent: 6747 + type: Transform - proto: PottedPlantRandom entities: - uid: 1454 @@ -121515,9 +129116,9 @@ entities: - pos: 67.5,-44.5 parent: 6747 type: Transform - - uid: 7078 + - uid: 6779 components: - - pos: 7.5,30.5 + - pos: 31.5,16.5 parent: 6747 type: Transform - uid: 7362 @@ -121530,6 +129131,11 @@ entities: - pos: 48.5,29.5 parent: 6747 type: Transform + - uid: 8381 + components: + - pos: 3.5,27.5 + parent: 6747 + type: Transform - uid: 8821 components: - pos: 22.5,0.5 @@ -121610,11 +129216,6 @@ entities: - pos: 19.5,7.5 parent: 6747 type: Transform - - uid: 25579 - components: - - pos: 7.5,13.5 - parent: 6747 - type: Transform - proto: PottedPlantRandomPlastic entities: - uid: 301 @@ -121647,11 +129248,6 @@ entities: - pos: 30.5,-3.5 parent: 6747 type: Transform - - uid: 5114 - components: - - pos: 21.5,25.5 - parent: 6747 - type: Transform - uid: 5223 components: - pos: 30.5,28.5 @@ -121662,19 +129258,19 @@ entities: - pos: 50.5,18.5 parent: 6747 type: Transform - - uid: 6902 + - uid: 7078 components: - - pos: 59.5,18.5 + - pos: 13.5,20.5 parent: 6747 type: Transform - - uid: 8732 + - uid: 12020 components: - - pos: 26.5,24.5 + - pos: 55.5,25.5 parent: 6747 type: Transform - - uid: 8733 + - uid: 17785 components: - - pos: 25.5,29.5 + - pos: 50.5,9.5 parent: 6747 type: Transform - uid: 18623 @@ -121682,6 +129278,11 @@ entities: - pos: 55.5,18.5 parent: 6747 type: Transform + - uid: 22201 + components: + - pos: 38.5,8.5 + parent: 6747 + type: Transform - proto: PottedPlantRD entities: - uid: 8905 @@ -121741,6 +129342,12 @@ entities: - pos: -21.5,-15.5 parent: 6747 type: Transform + - uid: 2165 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,30.5 + parent: 6747 + type: Transform - uid: 3059 components: - pos: 55.5,-43.5 @@ -121767,11 +129374,6 @@ entities: pos: -0.5,51.5 parent: 6747 type: Transform - - uid: 3903 - components: - - pos: 50.5,14.5 - parent: 6747 - type: Transform - uid: 3907 components: - rot: 3.141592653589793 rad @@ -121815,12 +129417,6 @@ entities: - pos: 29.5,0.5 parent: 6747 type: Transform - - uid: 3924 - components: - - rot: 3.141592653589793 rad - pos: 38.5,27.5 - parent: 6747 - type: Transform - uid: 4423 components: - pos: 22.5,-57.5 @@ -121831,11 +129427,6 @@ entities: - pos: 23.5,-66.5 parent: 6747 type: Transform - - uid: 5241 - components: - - pos: 28.5,13.5 - parent: 6747 - type: Transform - uid: 5405 components: - pos: 27.5,34.5 @@ -121846,16 +129437,58 @@ entities: - pos: 39.5,-31.5 parent: 6747 type: Transform + - uid: 6405 + components: + - pos: 46.5,9.5 + parent: 6747 + type: Transform + - uid: 6632 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,15.5 + parent: 6747 + type: Transform + - uid: 6633 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,22.5 + parent: 6747 + type: Transform + - uid: 6670 + components: + - pos: 46.5,10.5 + parent: 6747 + type: Transform + - uid: 6887 + components: + - pos: 55.5,23.5 + parent: 6747 + type: Transform - uid: 6922 components: - pos: 12.5,-74.5 parent: 6747 type: Transform + - uid: 8238 + components: + - pos: 48.5,17.5 + parent: 6747 + type: Transform + - uid: 8268 + components: + - pos: 55.5,24.5 + parent: 6747 + type: Transform - uid: 8372 components: - pos: -32.5,-52.5 parent: 6747 type: Transform + - uid: 8408 + components: + - pos: 48.5,16.5 + parent: 6747 + type: Transform - uid: 8527 components: - pos: 58.5,-22.5 @@ -121871,6 +129504,12 @@ entities: - pos: 17.5,-25.5 parent: 6747 type: Transform + - uid: 17769 + components: + - rot: 1.5707963267948966 rad + pos: 50.5,8.5 + parent: 6747 + type: Transform - uid: 20423 components: - rot: -1.5707963267948966 rad @@ -121892,16 +129531,6 @@ entities: - pos: -22.5,-50.5 parent: 6747 type: Transform - - uid: 23647 - components: - - pos: 44.5,10.5 - parent: 6747 - type: Transform - - uid: 23650 - components: - - pos: 17.5,13.5 - parent: 6747 - type: Transform - uid: 23652 components: - pos: -3.5,38.5 @@ -121976,14 +129605,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 6028 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,34.5 - parent: 6747 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 6061 components: - rot: 3.141592653589793 rad @@ -121992,22 +129613,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 6063 - components: - - rot: -1.5707963267948966 rad - pos: 14.5,28.5 - parent: 6747 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 6088 - components: - - rot: 3.141592653589793 rad - pos: 9.5,24.5 - parent: 6747 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 6199 components: - rot: -1.5707963267948966 rad @@ -122167,6 +129772,11 @@ entities: pos: -35.5,-47.5 parent: 6747 type: Transform + - uid: 11135 + components: + - pos: 57.5,35.5 + parent: 6747 + type: Transform - uid: 11866 components: - rot: 3.141592653589793 rad @@ -122182,6 +129792,12 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver + - uid: 13232 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,-42.5 + parent: 6747 + type: Transform - uid: 13259 components: - rot: 3.141592653589793 rad @@ -122413,38 +130029,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 16395 - components: - - rot: 3.141592653589793 rad - pos: 42.5,15.5 - parent: 6747 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 16397 - components: - - rot: -1.5707963267948966 rad - pos: 55.5,7.5 - parent: 6747 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 16398 - components: - - rot: -1.5707963267948966 rad - pos: 48.5,17.5 - parent: 6747 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 16399 - components: - - rot: 1.5707963267948966 rad - pos: 50.5,14.5 - parent: 6747 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 16400 components: - pos: -5.5,-8.5 @@ -122624,13 +130208,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 16595 - components: - - pos: 21.5,18.5 - parent: 6747 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 16598 components: - rot: 1.5707963267948966 rad @@ -122647,14 +130224,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 16601 - components: - - rot: -1.5707963267948966 rad - pos: 55.5,35.5 - parent: 6747 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 16627 components: - rot: 3.141592653589793 rad @@ -122670,14 +130239,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 16629 - components: - - rot: -1.5707963267948966 rad - pos: 32.5,16.5 - parent: 6747 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 16630 components: - rot: 3.141592653589793 rad @@ -122702,14 +130263,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 16740 - components: - - rot: 3.141592653589793 rad - pos: 29.5,24.5 - parent: 6747 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 16741 components: - rot: 3.141592653589793 rad @@ -123293,20 +130846,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 16983 - components: - - pos: 18.5,22.5 - parent: 6747 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 16984 - components: - - pos: 29.5,22.5 - parent: 6747 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 16985 components: - rot: 1.5707963267948966 rad @@ -123323,14 +130862,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 16993 - components: - - rot: 1.5707963267948966 rad - pos: 57.5,17.5 - parent: 6747 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 16995 components: - pos: 49.5,13.5 @@ -123361,44 +130892,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 17000 - components: - - pos: 24.5,11.5 - parent: 6747 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17001 - components: - - rot: 1.5707963267948966 rad - pos: 25.5,16.5 - parent: 6747 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17002 - components: - - rot: 3.141592653589793 rad - pos: 35.5,24.5 - parent: 6747 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17003 - components: - - pos: 21.5,29.5 - parent: 6747 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17004 - components: - - rot: -1.5707963267948966 rad - pos: 28.5,40.5 - parent: 6747 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 17005 components: - rot: 3.141592653589793 rad @@ -123423,22 +130916,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 17048 - components: - - rot: -1.5707963267948966 rad - pos: 25.5,33.5 - parent: 6747 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17056 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,37.5 - parent: 6747 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 17061 components: - rot: -1.5707963267948966 rad @@ -123455,13 +130932,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 17065 - components: - - pos: 12.5,-21.5 - parent: 6747 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 17068 components: - rot: 1.5707963267948966 rad @@ -123492,14 +130962,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 17076 - components: - - rot: -1.5707963267948966 rad - pos: 34.5,42.5 - parent: 6747 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 17083 components: - pos: 2.5,-75.5 @@ -123546,14 +131008,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 17094 - components: - - rot: 3.141592653589793 rad - pos: 47.5,-43.5 - parent: 6747 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 17142 components: - rot: -1.5707963267948966 rad @@ -123747,6 +131201,12 @@ entities: - links: - 17331 type: DeviceLinkSink + - uid: 20212 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,31.5 + parent: 6747 + type: Transform - uid: 20728 components: - rot: 3.141592653589793 rad @@ -123762,6 +131222,18 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver + - uid: 20767 + components: + - rot: 3.141592653589793 rad + pos: 11.5,24.5 + parent: 6747 + type: Transform + - uid: 20769 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,30.5 + parent: 6747 + type: Transform - uid: 21392 components: - rot: 1.5707963267948966 rad @@ -123785,6 +131257,89 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver + - uid: 22199 + components: + - pos: 55.5,9.5 + parent: 6747 + type: Transform + - links: + - 22343 + type: DeviceLinkSink + - uid: 22200 + components: + - rot: 1.5707963267948966 rad + pos: 57.5,27.5 + parent: 6747 + type: Transform + - uid: 22344 + components: + - rot: 3.141592653589793 rad + pos: 40.5,6.5 + parent: 6747 + type: Transform + - uid: 22347 + components: + - rot: 3.141592653589793 rad + pos: 51.5,6.5 + parent: 6747 + type: Transform + - uid: 22348 + components: + - pos: 40.5,18.5 + parent: 6747 + type: Transform + - uid: 22349 + components: + - pos: 48.5,18.5 + parent: 6747 + type: Transform + - uid: 22351 + components: + - rot: 3.141592653589793 rad + pos: 74.5,6.5 + parent: 6747 + type: Transform + - uid: 22379 + components: + - rot: 1.5707963267948966 rad + pos: 64.5,7.5 + parent: 6747 + type: Transform + - uid: 22381 + components: + - rot: 3.141592653589793 rad + pos: 60.5,11.5 + parent: 6747 + type: Transform + - uid: 22382 + components: + - pos: 73.5,22.5 + parent: 6747 + type: Transform + - uid: 22391 + components: + - rot: -1.5707963267948966 rad + pos: 68.5,34.5 + parent: 6747 + type: Transform + - uid: 22420 + components: + - rot: 1.5707963267948966 rad + pos: 57.5,19.5 + parent: 6747 + type: Transform + - uid: 22428 + components: + - rot: -1.5707963267948966 rad + pos: 68.5,29.5 + parent: 6747 + type: Transform + - uid: 22442 + components: + - rot: 3.141592653589793 rad + pos: 66.5,25.5 + parent: 6747 + type: Transform - uid: 22472 components: - pos: 36.5,-90.5 @@ -123792,6 +131347,87 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver + - uid: 22537 + components: + - rot: 3.141592653589793 rad + pos: 52.5,23.5 + parent: 6747 + type: Transform + - uid: 22572 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,13.5 + parent: 6747 + type: Transform + - uid: 22573 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,15.5 + parent: 6747 + type: Transform + - uid: 22601 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,16.5 + parent: 6747 + type: Transform + - uid: 22614 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,20.5 + parent: 6747 + type: Transform + - uid: 22615 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,20.5 + parent: 6747 + type: Transform + - uid: 22619 + components: + - pos: 7.5,35.5 + parent: 6747 + type: Transform + - uid: 22620 + components: + - pos: 20.5,35.5 + parent: 6747 + type: Transform + - uid: 22622 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,25.5 + parent: 6747 + type: Transform + - uid: 22626 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,42.5 + parent: 6747 + type: Transform + - uid: 22627 + components: + - rot: 3.141592653589793 rad + pos: -24.5,7.5 + parent: 6747 + type: Transform + - uid: 22628 + components: + - rot: 3.141592653589793 rad + pos: -24.5,1.5 + parent: 6747 + type: Transform + - uid: 22629 + components: + - rot: 3.141592653589793 rad + pos: -24.5,4.5 + parent: 6747 + type: Transform + - uid: 22630 + components: + - pos: -18.5,7.5 + parent: 6747 + type: Transform - uid: 23672 components: - rot: 1.5707963267948966 rad @@ -123800,6 +131436,15 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver + - links: + - 6919 + type: DeviceLinkSink + - uid: 23876 + components: + - rot: -1.5707963267948966 rad + pos: 63.5,19.5 + parent: 6747 + type: Transform - uid: 23976 components: - rot: -1.5707963267948966 rad @@ -123822,6 +131467,21 @@ entities: pos: 28.5,-50.5 parent: 6747 type: Transform + - uid: 27045 + components: + - pos: 2.5,-68.5 + parent: 6747 + type: Transform + - uid: 27050 + components: + - pos: 10.5,-17.5 + parent: 6747 + type: Transform + - uid: 27052 + components: + - pos: 52.5,28.5 + parent: 6747 + type: Transform - proto: PoweredLightBlueInterior entities: - uid: 1634 @@ -123989,14 +131649,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 8159 - components: - - rot: 3.141592653589793 rad - pos: 28.5,45.5 - parent: 6747 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 8334 components: - rot: -1.5707963267948966 rad @@ -124141,14 +131793,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 16976 - components: - - rot: 1.5707963267948966 rad - pos: 57.5,24.5 - parent: 6747 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 16990 components: - rot: -1.5707963267948966 rad @@ -124189,29 +131833,25 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 19010 + - uid: 19875 components: - - rot: 3.141592653589793 rad - pos: 15.5,45.5 + - pos: 5.5,-93.5 parent: 6747 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 19875 + - uid: 22422 components: - - pos: 5.5,-93.5 + - rot: 1.5707963267948966 rad + pos: 70.5,24.5 parent: 6747 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 22793 + - uid: 22444 components: - rot: 3.141592653589793 rad - pos: 31.5,37.5 + pos: 65.5,37.5 parent: 6747 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 23166 components: - rot: -1.5707963267948966 rad @@ -124220,6 +131860,12 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver + - uid: 24008 + components: + - rot: 1.5707963267948966 rad + pos: 75.5,15.5 + parent: 6747 + type: Transform - uid: 25463 components: - rot: -1.5707963267948966 rad @@ -124274,22 +131920,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 17046 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,34.5 - parent: 6747 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 17047 - components: - - rot: 1.5707963267948966 rad - pos: 16.5,31.5 - parent: 6747 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 17342 components: - pos: 52.5,-49.5 @@ -124297,21 +131927,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 23890 - components: - - rot: 3.141592653589793 rad - pos: 20.5,31.5 - parent: 6747 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 23891 - components: - - pos: 20.5,34.5 - parent: 6747 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - proto: PoweredLightColoredFrostyBlue entities: - uid: 10353 @@ -124358,8 +131973,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver + - uid: 20768 + components: + - pos: 62.5,9.5 + parent: 6747 + type: Transform + - uid: 22350 + components: + - pos: 59.5,9.5 + parent: 6747 + type: Transform - proto: PoweredLightColoredRed entities: + - uid: 808 + components: + - pos: 55.5,50.5 + parent: 6747 + type: Transform + - uid: 813 + components: + - pos: 52.5,50.5 + parent: 6747 + type: Transform - uid: 5403 components: - rot: -1.5707963267948966 rad @@ -124380,22 +132015,11 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 9054 - components: - - rot: -1.5707963267948966 rad - pos: 19.5,41.5 - parent: 6747 - type: Transform - uid: 9055 components: - pos: -21.5,-57.5 parent: 6747 type: Transform - - uid: 9669 - components: - - pos: 52.5,28.5 - parent: 6747 - type: Transform - uid: 16305 components: - pos: -33.5,10.5 @@ -124406,6 +132030,17 @@ entities: - pos: -30.5,10.5 parent: 6747 type: Transform + - uid: 25629 + components: + - rot: 3.141592653589793 rad + pos: 4.5,9.5 + parent: 6747 + type: Transform + - uid: 25630 + components: + - pos: 4.5,11.5 + parent: 6747 + type: Transform - proto: PoweredlightEmpty entities: - uid: 10526 @@ -124528,20 +132163,16 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 23778 + - uid: 23301 components: - - pos: 14.5,57.5 + - pos: 47.5,71.5 parent: 6747 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 23779 + - uid: 23304 components: - - pos: 26.5,57.5 + - pos: 32.5,55.5 parent: 6747 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 23780 components: - pos: 58.5,57.5 @@ -124549,26 +132180,23 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 23781 + - uid: 25908 components: - - pos: 46.5,57.5 + - pos: 103.5,17.5 parent: 6747 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - proto: PoweredlightSodium entities: - - uid: 6087 + - uid: 7500 components: - - pos: 18.5,29.5 + - rot: 3.141592653589793 rad + pos: 37.5,-0.5 parent: 6747 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - uid: 7500 + - uid: 11138 components: - rot: 3.141592653589793 rad - pos: 37.5,-0.5 + pos: 35.5,24.5 parent: 6747 type: Transform - uid: 16169 @@ -124602,13 +132230,18 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 18878 + - uid: 22385 components: - - pos: 29.5,34.5 + - rot: -1.5707963267948966 rad + pos: 73.5,15.5 + parent: 6747 + type: Transform + - uid: 25626 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,30.5 parent: 6747 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - proto: PoweredSmallLight entities: - uid: 3810 @@ -124808,13 +132441,6 @@ entities: pos: -40.5,-20.5 parent: 6747 type: Transform - - uid: 16822 - components: - - pos: 57.5,26.5 - parent: 6747 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - uid: 16837 components: - rot: 3.141592653589793 rad @@ -124866,17 +132492,6 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 16994 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,18.5 - parent: 6747 - type: Transform - - powerLoad: 0 - type: ApcPowerReceiver - - links: - - 17154 - type: DeviceLinkSink - uid: 17079 components: - pos: 10.5,-78.5 @@ -124983,14 +132598,47 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 23997 + - uid: 22616 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,24.5 + parent: 6747 + type: Transform + - uid: 22617 components: - rot: 1.5707963267948966 rad - pos: 13.5,19.5 + pos: 6.5,24.5 parent: 6747 type: Transform - - powerLoad: 0 - type: ApcPowerReceiver + - uid: 22618 + components: + - rot: 3.141592653589793 rad + pos: 5.5,26.5 + parent: 6747 + type: Transform + - uid: 22621 + components: + - pos: 19.5,29.5 + parent: 6747 + type: Transform + - uid: 22623 + components: + - pos: 28.5,35.5 + parent: 6747 + type: Transform + - uid: 22624 + components: + - pos: 28.5,28.5 + parent: 6747 + type: Transform + - uid: 22631 + components: + - pos: -15.5,6.5 + parent: 6747 + type: Transform + - links: + - 22632 + type: DeviceLinkSink - uid: 25403 components: - rot: 3.141592653589793 rad @@ -125116,6 +132764,12 @@ entities: - pos: 33.5,-42.5 parent: 6747 type: Transform + - uid: 12900 + components: + - rot: 3.141592653589793 rad + pos: 37.5,6.5 + parent: 6747 + type: Transform - uid: 13964 components: - rot: -1.5707963267948966 rad @@ -125128,12 +132782,6 @@ entities: pos: 58.5,-16.5 parent: 6747 type: Transform - - uid: 14055 - components: - - rot: 3.141592653589793 rad - pos: 35.5,13.5 - parent: 6747 - type: Transform - uid: 14056 components: - rot: -1.5707963267948966 rad @@ -125262,6 +132910,23 @@ entities: pos: 53.5,-31.5 parent: 6747 type: Transform + - uid: 22613 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,16.5 + parent: 6747 + type: Transform + - uid: 22625 + components: + - rot: 3.141592653589793 rad + pos: 29.5,20.5 + parent: 6747 + type: Transform + - uid: 27048 + components: + - pos: -13.5,6.5 + parent: 6747 + type: Transform - proto: PoweredSmallLightMaintenanceRed entities: - uid: 8815 @@ -125394,12 +133059,6 @@ entities: - pos: 30.5,-63.5 parent: 6747 type: Transform - - uid: 16170 - components: - - rot: 3.141592653589793 rad - pos: -17.5,4.5 - parent: 6747 - type: Transform - uid: 16171 components: - pos: 2.5,-30.5 @@ -125468,6 +133127,11 @@ entities: - pos: -27.13696,-81.58841 parent: 6747 type: Transform + - uid: 25800 + components: + - pos: 92.96796,-25.498457 + parent: 6747 + type: Transform - proto: Protolathe entities: - uid: 1148 @@ -125475,11 +133139,6 @@ entities: - pos: 18.5,-50.5 parent: 6747 type: Transform - - uid: 5226 - components: - - pos: 28.5,18.5 - parent: 6747 - type: Transform - proto: Puddle entities: - uid: 14671 @@ -125579,19 +133238,15 @@ entities: - pos: 5.5,-14.5 parent: 6747 type: Transform - - uid: 566 - components: - - pos: -23.5,-7.5 - parent: 6747 - type: Transform - - uid: 874 + - uid: 475 components: - - pos: 32.5,15.5 + - rot: -1.5707963267948966 rad + pos: 18.5,19.5 parent: 6747 type: Transform - - uid: 881 + - uid: 566 components: - - pos: 27.5,18.5 + - pos: -23.5,-7.5 parent: 6747 type: Transform - uid: 898 @@ -125640,18 +133295,6 @@ entities: - pos: -17.5,-13.5 parent: 6747 type: Transform - - uid: 1745 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-17.5 - parent: 6747 - type: Transform - - uid: 1755 - components: - - rot: -1.5707963267948966 rad - pos: -13.5,-16.5 - parent: 6747 - type: Transform - uid: 1777 components: - pos: -2.5,-20.5 @@ -125682,11 +133325,6 @@ entities: - pos: -13.5,-34.5 parent: 6747 type: Transform - - uid: 2267 - components: - - pos: 32.5,16.5 - parent: 6747 - type: Transform - uid: 2477 components: - pos: 18.5,-39.5 @@ -125795,11 +133433,6 @@ entities: - pos: 10.5,-34.5 parent: 6747 type: Transform - - uid: 3758 - components: - - pos: 11.5,-21.5 - parent: 6747 - type: Transform - uid: 3853 components: - pos: 20.5,-2.5 @@ -125971,11 +133604,6 @@ entities: - pos: 35.5,-0.5 parent: 6747 type: Transform - - uid: 5547 - components: - - pos: 12.5,-21.5 - parent: 6747 - type: Transform - uid: 5801 components: - pos: 5.5,-18.5 @@ -125991,29 +133619,41 @@ entities: - pos: 27.5,32.5 parent: 6747 type: Transform + - uid: 6401 + components: + - pos: 50.5,17.5 + parent: 6747 + type: Transform - uid: 6567 components: - pos: 26.5,-69.5 parent: 6747 type: Transform - - uid: 6624 + - uid: 6640 components: - - pos: 37.5,15.5 + - rot: 1.5707963267948966 rad + pos: 28.5,18.5 parent: 6747 type: Transform - - uid: 6625 + - uid: 6647 components: - - pos: 37.5,18.5 + - rot: 1.5707963267948966 rad + pos: 29.5,18.5 parent: 6747 type: Transform - - uid: 6626 + - uid: 6713 components: - - pos: 37.5,17.5 + - pos: 41.5,18.5 parent: 6747 type: Transform - - uid: 6627 + - uid: 6759 components: - - pos: 37.5,16.5 + - pos: 35.5,14.5 + parent: 6747 + type: Transform + - uid: 6760 + components: + - pos: 35.5,15.5 parent: 6747 type: Transform - uid: 6924 @@ -126021,6 +133661,11 @@ entities: - pos: 50.5,16.5 parent: 6747 type: Transform + - uid: 7253 + components: + - pos: 40.5,18.5 + parent: 6747 + type: Transform - uid: 7389 components: - pos: -48.5,-7.5 @@ -126046,6 +133691,11 @@ entities: - pos: 27.5,30.5 parent: 6747 type: Transform + - uid: 7857 + components: + - pos: 70.5,20.5 + parent: 6747 + type: Transform - uid: 8175 components: - pos: 56.5,44.5 @@ -126056,6 +133706,11 @@ entities: - pos: 56.5,43.5 parent: 6747 type: Transform + - uid: 8206 + components: + - pos: 21.5,26.5 + parent: 6747 + type: Transform - uid: 8212 components: - pos: 47.5,26.5 @@ -126066,14 +133721,31 @@ entities: - pos: 46.5,26.5 parent: 6747 type: Transform - - uid: 8263 + - uid: 8298 components: - - pos: 17.5,20.5 + - pos: 21.5,28.5 parent: 6747 type: Transform - - uid: 8667 + - uid: 8415 components: - - pos: 50.5,17.5 + - rot: -1.5707963267948966 rad + pos: 3.5,30.5 + parent: 6747 + type: Transform + - uid: 8451 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,20.5 + parent: 6747 + type: Transform + - uid: 8456 + components: + - pos: 21.5,27.5 + parent: 6747 + type: Transform + - uid: 8493 + components: + - pos: 54.5,-23.5 parent: 6747 type: Transform - uid: 8671 @@ -126131,11 +133803,6 @@ entities: - pos: -49.5,-9.5 parent: 6747 type: Transform - - uid: 9423 - components: - - pos: 15.5,37.5 - parent: 6747 - type: Transform - uid: 10128 components: - pos: -46.5,-71.5 @@ -126388,6 +134055,54 @@ entities: - pos: 34.5,-91.5 parent: 6747 type: Transform + - uid: 17636 + components: + - rot: -1.5707963267948966 rad + pos: 70.5,9.5 + parent: 6747 + type: Transform + - uid: 17637 + components: + - rot: -1.5707963267948966 rad + pos: 72.5,6.5 + parent: 6747 + type: Transform + - uid: 17638 + components: + - rot: -1.5707963267948966 rad + pos: 72.5,7.5 + parent: 6747 + type: Transform + - uid: 17639 + components: + - rot: -1.5707963267948966 rad + pos: 70.5,6.5 + parent: 6747 + type: Transform + - uid: 17640 + components: + - rot: -1.5707963267948966 rad + pos: 70.5,7.5 + parent: 6747 + type: Transform + - uid: 17641 + components: + - rot: -1.5707963267948966 rad + pos: 70.5,8.5 + parent: 6747 + type: Transform + - uid: 17642 + components: + - rot: -1.5707963267948966 rad + pos: 72.5,8.5 + parent: 6747 + type: Transform + - uid: 17643 + components: + - rot: -1.5707963267948966 rad + pos: 74.5,6.5 + parent: 6747 + type: Transform - uid: 17677 components: - pos: 31.5,22.5 @@ -126398,6 +134113,29 @@ entities: - pos: 31.5,20.5 parent: 6747 type: Transform + - uid: 17679 + components: + - rot: -1.5707963267948966 rad + pos: 74.5,7.5 + parent: 6747 + type: Transform + - uid: 17680 + components: + - rot: -1.5707963267948966 rad + pos: 74.5,8.5 + parent: 6747 + type: Transform + - uid: 17681 + components: + - rot: -1.5707963267948966 rad + pos: 74.5,9.5 + parent: 6747 + type: Transform + - uid: 19034 + components: + - pos: 55.5,15.5 + parent: 6747 + type: Transform - uid: 20211 components: - pos: -5.5,6.5 @@ -126413,6 +134151,17 @@ entities: - pos: -14.5,34.5 parent: 6747 type: Transform + - uid: 22461 + components: + - rot: 1.5707963267948966 rad + pos: 56.5,37.5 + parent: 6747 + type: Transform + - uid: 22568 + components: + - pos: 43.5,22.5 + parent: 6747 + type: Transform - uid: 23048 components: - pos: -55.5,-23.5 @@ -126449,18 +134198,22 @@ entities: - pos: -53.5,-6.5 parent: 6747 type: Transform + - uid: 25678 + components: + - pos: 78.5,19.5 + parent: 6747 + type: Transform - proto: RadioHandheld entities: - - uid: 3980 + - uid: 817 components: - - rot: 3.141592653589793 rad - pos: -26.485767,-49.458004 + - pos: 15.385951,19.594131 parent: 6747 type: Transform - - uid: 8464 + - uid: 3980 components: - - rot: -1.5707963267948966 rad - pos: 17.557274,20.424086 + - rot: 3.141592653589793 rad + pos: -26.485767,-49.458004 parent: 6747 type: Transform - uid: 13240 @@ -126482,6 +134235,11 @@ entities: - pos: -19.56995,-31.352732 parent: 6747 type: Transform + - uid: 6598 + components: + - pos: 43.983353,16.937166 + parent: 6747 + type: Transform - uid: 6773 components: - pos: 60.426533,-51.17389 @@ -126564,6 +134322,24 @@ entities: pos: 38.5,0.5 parent: 6747 type: Transform + - uid: 6593 + components: + - rot: 3.141592653589793 rad + pos: 70.5,27.5 + parent: 6747 + type: Transform + - uid: 6613 + components: + - rot: 1.5707963267948966 rad + pos: 74.5,24.5 + parent: 6747 + type: Transform + - uid: 7489 + components: + - rot: 3.141592653589793 rad + pos: 73.5,27.5 + parent: 6747 + type: Transform - uid: 8604 components: - rot: 3.141592653589793 rad @@ -126742,6 +134518,82 @@ entities: pos: 25.5,-43.5 parent: 6747 type: Transform + - uid: 23831 + components: + - rot: 3.141592653589793 rad + pos: 47.5,72.5 + parent: 6747 + type: Transform + - uid: 23839 + components: + - rot: 3.141592653589793 rad + pos: 46.5,72.5 + parent: 6747 + type: Transform + - uid: 23854 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,71.5 + parent: 6747 + type: Transform + - uid: 23855 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,70.5 + parent: 6747 + type: Transform + - uid: 23856 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,71.5 + parent: 6747 + type: Transform + - uid: 23857 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,70.5 + parent: 6747 + type: Transform + - uid: 23858 + components: + - rot: 3.141592653589793 rad + pos: 34.5,72.5 + parent: 6747 + type: Transform + - uid: 23859 + components: + - rot: 3.141592653589793 rad + pos: 35.5,72.5 + parent: 6747 + type: Transform + - uid: 23862 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,55.5 + parent: 6747 + type: Transform + - uid: 24009 + components: + - rot: 3.141592653589793 rad + pos: 78.5,19.5 + parent: 6747 + type: Transform + - uid: 24010 + components: + - rot: 3.141592653589793 rad + pos: 79.5,19.5 + parent: 6747 + type: Transform + - uid: 24011 + components: + - pos: 78.5,16.5 + parent: 6747 + type: Transform + - uid: 24012 + components: + - pos: 79.5,16.5 + parent: 6747 + type: Transform - proto: RailingCorner entities: - uid: 379 @@ -126768,6 +134620,12 @@ entities: pos: -12.5,-39.5 parent: 6747 type: Transform + - uid: 5732 + components: + - rot: 1.5707963267948966 rad + pos: 74.5,27.5 + parent: 6747 + type: Transform - uid: 8605 components: - rot: -1.5707963267948966 rad @@ -126792,6 +134650,64 @@ entities: pos: -9.5,47.5 parent: 6747 type: Transform + - uid: 23825 + components: + - rot: 3.141592653589793 rad + pos: 40.5,49.5 + parent: 6747 + type: Transform + - uid: 23826 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,49.5 + parent: 6747 + type: Transform + - uid: 23827 + components: + - pos: 42.5,47.5 + parent: 6747 + type: Transform + - uid: 23828 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,47.5 + parent: 6747 + type: Transform + - uid: 23829 + components: + - rot: 3.141592653589793 rad + pos: 33.5,72.5 + parent: 6747 + type: Transform + - uid: 23830 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,72.5 + parent: 6747 + type: Transform + - uid: 23860 + components: + - rot: 3.141592653589793 rad + pos: 31.5,56.5 + parent: 6747 + type: Transform + - uid: 23861 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,54.5 + parent: 6747 + type: Transform + - uid: 24013 + components: + - rot: 1.5707963267948966 rad + pos: 80.5,19.5 + parent: 6747 + type: Transform + - uid: 24014 + components: + - pos: 80.5,16.5 + parent: 6747 + type: Transform - proto: RailingCornerSmall entities: - uid: 9019 @@ -126937,19 +134853,39 @@ entities: - pos: -51.5,13.5 parent: 6747 type: Transform - - uid: 15938 + - uid: 8299 components: - - pos: 8.5,-5.5 + - pos: 35.5,14.5 parent: 6747 type: Transform - - uid: 17078 + - uid: 8300 components: - - pos: 48.5,15.5 + - pos: 34.5,18.5 parent: 6747 type: Transform - - uid: 17235 + - uid: 8550 components: - - pos: 52.5,28.5 + - pos: 18.5,19.5 + parent: 6747 + type: Transform + - uid: 10378 + components: + - pos: 18.5,20.5 + parent: 6747 + type: Transform + - uid: 11974 + components: + - pos: 36.5,28.5 + parent: 6747 + type: Transform + - uid: 12032 + components: + - pos: 37.5,27.5 + parent: 6747 + type: Transform + - uid: 15938 + components: + - pos: 8.5,-5.5 parent: 6747 type: Transform - uid: 22565 @@ -126957,9 +134893,9 @@ entities: - pos: 57.5,-13.5 parent: 6747 type: Transform - - uid: 22568 + - uid: 22569 components: - - pos: 46.5,15.5 + - pos: 43.5,22.5 parent: 6747 type: Transform - uid: 23450 @@ -126967,6 +134903,11 @@ entities: - pos: -67.5,-2.5 parent: 6747 type: Transform + - uid: 25986 + components: + - pos: 61.5,0.5 + parent: 6747 + type: Transform - proto: RandomDrinkBottle entities: - uid: 481 @@ -127024,6 +134965,18 @@ entities: - pos: 54.5,4.5 parent: 6747 type: Transform + - uid: 16580 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,7.5 + parent: 6747 + type: Transform + - uid: 22633 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,32.5 + parent: 6747 + type: Transform - proto: RandomDrinkGlass entities: - uid: 2216 @@ -127081,16 +135034,6 @@ entities: - pos: 60.5,-50.5 parent: 6747 type: Transform - - uid: 6898 - components: - - pos: 58.5,18.5 - parent: 6747 - type: Transform - - uid: 6900 - components: - - pos: 57.5,17.5 - parent: 6747 - type: Transform - uid: 7249 components: - pos: 35.5,-24.5 @@ -127106,19 +135049,9 @@ entities: - pos: 44.5,-7.5 parent: 6747 type: Transform - - uid: 7492 - components: - - pos: 37.5,25.5 - parent: 6747 - type: Transform - - uid: 7851 - components: - - pos: 38.5,27.5 - parent: 6747 - type: Transform - - uid: 8279 + - uid: 8419 components: - - pos: 13.5,17.5 + - pos: 13.5,27.5 parent: 6747 type: Transform - uid: 8644 @@ -127146,11 +135079,26 @@ entities: - pos: -40.5,-28.5 parent: 6747 type: Transform + - uid: 12872 + components: + - pos: 50.5,28.5 + parent: 6747 + type: Transform + - uid: 12873 + components: + - pos: 53.5,26.5 + parent: 6747 + type: Transform - uid: 15877 components: - pos: -45.5,-3.5 parent: 6747 type: Transform + - uid: 17763 + components: + - pos: 55.5,6.5 + parent: 6747 + type: Transform - uid: 22530 components: - pos: 41.5,-100.5 @@ -127183,9 +135131,9 @@ entities: - pos: 44.5,-6.5 parent: 6747 type: Transform - - uid: 8282 + - uid: 12879 components: - - pos: 48.5,27.5 + - pos: 53.5,28.5 parent: 6747 type: Transform - uid: 15041 @@ -127237,6 +135185,11 @@ entities: - pos: 45.5,-25.5 parent: 6747 type: Transform + - uid: 10354 + components: + - pos: 11.5,22.5 + parent: 6747 + type: Transform - uid: 12214 components: - pos: -32.5,-40.5 @@ -127269,11 +135222,6 @@ entities: - pos: 44.5,-12.5 parent: 6747 type: Transform - - uid: 8278 - components: - - pos: 13.5,18.5 - parent: 6747 - type: Transform - uid: 25378 components: - pos: -13.5,-29.5 @@ -127312,6 +135260,11 @@ entities: - pos: 38.5,-7.5 parent: 6747 type: Transform + - uid: 7689 + components: + - pos: 3.5,30.5 + parent: 6747 + type: Transform - uid: 9331 components: - pos: -45.5,3.5 @@ -127328,8 +135281,18 @@ entities: - pos: -52.5,-7.5 parent: 6747 type: Transform + - uid: 26441 + components: + - pos: 31.5,20.5 + parent: 6747 + type: Transform - proto: RandomItem entities: + - uid: 1094 + components: + - pos: 57.5,5.5 + parent: 6747 + type: Transform - uid: 5267 components: - pos: 31.5,-73.5 @@ -127379,6 +135342,12 @@ entities: - pos: 15.5,5.5 parent: 6747 type: Transform + - uid: 21664 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,33.5 + parent: 6747 + type: Transform - uid: 22397 components: - pos: 41.5,-81.5 @@ -127404,11 +135373,6 @@ entities: - pos: 59.5,1.5 parent: 6747 type: Transform - - uid: 22573 - components: - - pos: -25.5,8.5 - parent: 6747 - type: Transform - uid: 22574 components: - pos: 39.5,-0.5 @@ -127450,8 +135414,23 @@ entities: - pos: -58.5,-0.5 parent: 6747 type: Transform + - uid: 25985 + components: + - pos: 110.5,0.5 + parent: 6747 + type: Transform - proto: RandomPainting entities: + - uid: 876 + components: + - pos: 17.5,27.5 + parent: 6747 + type: Transform + - uid: 1120 + components: + - pos: 16.5,23.5 + parent: 6747 + type: Transform - uid: 8913 components: - pos: 10.5,-61.5 @@ -127559,6 +135538,11 @@ entities: - pos: 38.5,-8.5 parent: 6747 type: Transform + - uid: 8273 + components: + - pos: 19.5,27.5 + parent: 6747 + type: Transform - uid: 16016 components: - pos: -23.5,-38.5 @@ -127574,6 +135558,16 @@ entities: - pos: 32.5,-86.5 parent: 6747 type: Transform + - uid: 26662 + components: + - pos: 30.5,8.5 + parent: 6747 + type: Transform + - uid: 26663 + components: + - pos: 35.5,8.5 + parent: 6747 + type: Transform - proto: RandomPosterContraband entities: - uid: 7597 @@ -127731,6 +135725,16 @@ entities: - pos: -51.5,-10.5 parent: 6747 type: Transform + - uid: 26664 + components: + - pos: 33.5,12.5 + parent: 6747 + type: Transform + - uid: 26665 + components: + - pos: 37.5,14.5 + parent: 6747 + type: Transform - proto: RandomRockSpawner entities: - uid: 4 @@ -127983,11 +135987,6 @@ entities: - pos: -7.5,14.5 parent: 6747 type: Transform - - uid: 199 - components: - - pos: -20.5,4.5 - parent: 6747 - type: Transform - uid: 204 components: - pos: -11.5,14.5 @@ -128048,9 +136047,9 @@ entities: - pos: -3.5,12.5 parent: 6747 type: Transform - - uid: 476 + - uid: 2770 components: - - pos: -20.5,5.5 + - pos: -12.5,12.5 parent: 6747 type: Transform - uid: 4641 @@ -129043,76 +137042,6 @@ entities: - pos: -4.5,21.5 parent: 6747 type: Transform - - uid: 5532 - components: - - pos: -23.5,4.5 - parent: 6747 - type: Transform - - uid: 5533 - components: - - pos: -24.5,4.5 - parent: 6747 - type: Transform - - uid: 5534 - components: - - pos: -25.5,4.5 - parent: 6747 - type: Transform - - uid: 5535 - components: - - pos: -26.5,4.5 - parent: 6747 - type: Transform - - uid: 5536 - components: - - pos: -27.5,4.5 - parent: 6747 - type: Transform - - uid: 5537 - components: - - pos: -23.5,5.5 - parent: 6747 - type: Transform - - uid: 5538 - components: - - pos: -24.5,5.5 - parent: 6747 - type: Transform - - uid: 5539 - components: - - pos: -25.5,5.5 - parent: 6747 - type: Transform - - uid: 5540 - components: - - pos: -26.5,5.5 - parent: 6747 - type: Transform - - uid: 5541 - components: - - pos: -27.5,5.5 - parent: 6747 - type: Transform - - uid: 5542 - components: - - pos: -24.5,6.5 - parent: 6747 - type: Transform - - uid: 5543 - components: - - pos: -25.5,6.5 - parent: 6747 - type: Transform - - uid: 5544 - components: - - pos: -26.5,6.5 - parent: 6747 - type: Transform - - uid: 5545 - components: - - pos: -27.5,6.5 - parent: 6747 - type: Transform - uid: 5554 components: - pos: -23.5,25.5 @@ -129383,11 +137312,6 @@ entities: - pos: -6.5,12.5 parent: 6747 type: Transform - - uid: 7423 - components: - - pos: -32.5,13.5 - parent: 6747 - type: Transform - uid: 7428 components: - pos: -31.5,12.5 @@ -129403,6 +137327,11 @@ entities: - pos: -24.5,29.5 parent: 6747 type: Transform + - uid: 7628 + components: + - pos: -18.5,-77.5 + parent: 6747 + type: Transform - uid: 7629 components: - pos: -22.5,22.5 @@ -129413,6 +137342,26 @@ entities: - pos: -26.5,25.5 parent: 6747 type: Transform + - uid: 7697 + components: + - pos: -18.5,-76.5 + parent: 6747 + type: Transform + - uid: 7709 + components: + - pos: -17.5,-78.5 + parent: 6747 + type: Transform + - uid: 7711 + components: + - pos: -18.5,-78.5 + parent: 6747 + type: Transform + - uid: 7715 + components: + - pos: -17.5,-77.5 + parent: 6747 + type: Transform - uid: 9426 components: - pos: -13.5,-85.5 @@ -131769,6 +139718,11 @@ entities: type: Transform - proto: RandomSoap entities: + - uid: 900 + components: + - pos: 6.5,24.5 + parent: 6747 + type: Transform - uid: 3104 components: - pos: -40.5,-4.5 @@ -131842,6 +139796,12 @@ entities: - pos: -33.5,17.5 parent: 6747 type: Transform + - uid: 7492 + components: + - rot: -1.5707963267948966 rad + pos: 51.5,23.5 + parent: 6747 + type: Transform - uid: 11337 components: - rot: -1.5707963267948966 rad @@ -131896,6 +139856,42 @@ entities: - pos: -0.5,-10.5 parent: 6747 type: Transform + - uid: 22642 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,28.5 + parent: 6747 + type: Transform + - uid: 22643 + components: + - rot: 3.141592653589793 rad + pos: 28.5,28.5 + parent: 6747 + type: Transform + - uid: 22644 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,26.5 + parent: 6747 + type: Transform + - uid: 22645 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,24.5 + parent: 6747 + type: Transform + - uid: 22646 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,26.5 + parent: 6747 + type: Transform + - uid: 25631 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,26.5 + parent: 6747 + type: Transform - proto: RandomVending entities: - uid: 118 @@ -131933,6 +139929,11 @@ entities: - pos: 26.5,5.5 parent: 6747 type: Transform + - uid: 12871 + components: + - pos: 49.5,24.5 + parent: 6747 + type: Transform - proto: RandomVendingDrinks entities: - uid: 1764 @@ -132034,23 +140035,24 @@ entities: type: Transform - proto: RCD entities: - - uid: 8277 + - uid: 17766 components: - - pos: 14.414538,19.619781 + - rot: 1.5707963267948966 rad + pos: 56.28447,9.588377 parent: 6747 type: Transform - proto: RCDAmmo entities: - - uid: 8259 + - uid: 17767 components: - - rot: 3.141592653589793 rad - pos: 16.28954,13.553067 + - rot: 1.5707963267948966 rad + pos: 56.56572,9.442443 parent: 6747 type: Transform - - uid: 11222 + - uid: 17768 components: - - rot: -1.5707963267948966 rad - pos: 14.242959,19.41743 + - rot: 1.5707963267948966 rad + pos: 56.576138,9.56753 parent: 6747 type: Transform - proto: ReagentContainerFlour @@ -132230,61 +140232,6 @@ entities: - pos: -57.5,-20.5 parent: 6747 type: Transform - - uid: 11462 - components: - - pos: 45.5,56.5 - parent: 6747 - type: Transform - - uid: 11465 - components: - - pos: 42.5,56.5 - parent: 6747 - type: Transform - - uid: 11468 - components: - - pos: 39.5,56.5 - parent: 6747 - type: Transform - - uid: 11471 - components: - - pos: 36.5,56.5 - parent: 6747 - type: Transform - - uid: 11474 - components: - - pos: 33.5,56.5 - parent: 6747 - type: Transform - - uid: 11477 - components: - - pos: 30.5,56.5 - parent: 6747 - type: Transform - - uid: 11480 - components: - - pos: 27.5,56.5 - parent: 6747 - type: Transform - - uid: 11483 - components: - - pos: 24.5,56.5 - parent: 6747 - type: Transform - - uid: 11486 - components: - - pos: 21.5,56.5 - parent: 6747 - type: Transform - - uid: 11489 - components: - - pos: 18.5,56.5 - parent: 6747 - type: Transform - - uid: 11494 - components: - - pos: 15.5,56.5 - parent: 6747 - type: Transform - uid: 11526 components: - pos: -75.5,-32.5 @@ -132390,6 +140337,161 @@ entities: - pos: 57.5,56.5 parent: 6747 type: Transform + - uid: 25718 + components: + - pos: 61.5,56.5 + parent: 6747 + type: Transform + - uid: 25719 + components: + - pos: 66.5,56.5 + parent: 6747 + type: Transform + - uid: 25720 + components: + - pos: 71.5,56.5 + parent: 6747 + type: Transform + - uid: 25721 + components: + - pos: 76.5,56.5 + parent: 6747 + type: Transform + - uid: 25722 + components: + - pos: 81.5,56.5 + parent: 6747 + type: Transform + - uid: 25723 + components: + - pos: 83.5,56.5 + parent: 6747 + type: Transform + - uid: 25724 + components: + - pos: 90.5,37.5 + parent: 6747 + type: Transform + - uid: 25725 + components: + - pos: 85.5,52.5 + parent: 6747 + type: Transform + - uid: 25726 + components: + - pos: 85.5,47.5 + parent: 6747 + type: Transform + - uid: 25727 + components: + - pos: 85.5,42.5 + parent: 6747 + type: Transform + - uid: 25728 + components: + - pos: 85.5,37.5 + parent: 6747 + type: Transform + - uid: 25729 + components: + - pos: 95.5,37.5 + parent: 6747 + type: Transform + - uid: 25730 + components: + - pos: 100.5,37.5 + parent: 6747 + type: Transform + - uid: 25731 + components: + - pos: 105.5,37.5 + parent: 6747 + type: Transform + - uid: 25732 + components: + - pos: 110.5,37.5 + parent: 6747 + type: Transform + - uid: 25733 + components: + - pos: 110.5,32.5 + parent: 6747 + type: Transform + - uid: 25734 + components: + - pos: 110.5,27.5 + parent: 6747 + type: Transform + - uid: 25735 + components: + - pos: 110.5,22.5 + parent: 6747 + type: Transform + - uid: 25736 + components: + - pos: 110.5,17.5 + parent: 6747 + type: Transform + - uid: 25737 + components: + - pos: 110.5,12.5 + parent: 6747 + type: Transform + - uid: 25738 + components: + - pos: 110.5,7.5 + parent: 6747 + type: Transform + - uid: 25739 + components: + - pos: 110.5,3.5 + parent: 6747 + type: Transform + - uid: 25740 + components: + - pos: 109.5,0.5 + parent: 6747 + type: Transform + - uid: 25741 + components: + - pos: 98.5,0.5 + parent: 6747 + type: Transform + - uid: 25742 + components: + - pos: 98.5,-4.5 + parent: 6747 + type: Transform + - uid: 25743 + components: + - pos: 102.5,0.5 + parent: 6747 + type: Transform + - uid: 25744 + components: + - pos: 105.5,0.5 + parent: 6747 + type: Transform + - uid: 25745 + components: + - pos: 98.5,-9.5 + parent: 6747 + type: Transform + - uid: 25746 + components: + - pos: 98.5,-14.5 + parent: 6747 + type: Transform + - uid: 25747 + components: + - pos: 98.5,-19.5 + parent: 6747 + type: Transform + - uid: 25748 + components: + - pos: 98.5,-24.5 + parent: 6747 + type: Transform - proto: ReinforcedPlasmaWindow entities: - uid: 1388 @@ -132597,6 +140699,56 @@ entities: - pos: 4.5,-92.5 parent: 6747 type: Transform + - uid: 13296 + components: + - pos: 69.5,30.5 + parent: 6747 + type: Transform + - uid: 13375 + components: + - pos: 64.5,35.5 + parent: 6747 + type: Transform + - uid: 13377 + components: + - pos: 64.5,34.5 + parent: 6747 + type: Transform + - uid: 13378 + components: + - pos: 64.5,33.5 + parent: 6747 + type: Transform + - uid: 13381 + components: + - pos: 64.5,30.5 + parent: 6747 + type: Transform + - uid: 13382 + components: + - pos: 64.5,29.5 + parent: 6747 + type: Transform + - uid: 13383 + components: + - pos: 64.5,28.5 + parent: 6747 + type: Transform + - uid: 13384 + components: + - pos: 69.5,31.5 + parent: 6747 + type: Transform + - uid: 13385 + components: + - pos: 69.5,32.5 + parent: 6747 + type: Transform + - uid: 13386 + components: + - pos: 69.5,33.5 + parent: 6747 + type: Transform - proto: ReinforcedWindow entities: - uid: 16 @@ -132694,6 +140846,11 @@ entities: - pos: -16.5,-9.5 parent: 6747 type: Transform + - uid: 504 + components: + - pos: 50.5,10.5 + parent: 6747 + type: Transform - uid: 527 components: - pos: -21.5,-3.5 @@ -132764,29 +140921,19 @@ entities: - pos: 5.5,-31.5 parent: 6747 type: Transform - - uid: 806 - components: - - pos: 28.5,12.5 - parent: 6747 - type: Transform - uid: 814 components: - - pos: 19.5,12.5 - parent: 6747 - type: Transform - - uid: 815 - components: - - pos: 25.5,12.5 + - pos: 5.5,12.5 parent: 6747 type: Transform - - uid: 817 + - uid: 838 components: - - pos: 27.5,12.5 + - pos: 52.5,10.5 parent: 6747 type: Transform - - uid: 818 + - uid: 839 components: - - pos: 22.5,12.5 + - pos: 42.5,10.5 parent: 6747 type: Transform - uid: 981 @@ -132914,21 +141061,6 @@ entities: - pos: 3.5,35.5 parent: 6747 type: Transform - - uid: 1084 - components: - - pos: 4.5,26.5 - parent: 6747 - type: Transform - - uid: 1087 - components: - - pos: 14.5,20.5 - parent: 6747 - type: Transform - - uid: 1089 - components: - - pos: 8.5,25.5 - parent: 6747 - type: Transform - uid: 1090 components: - pos: 8.5,26.5 @@ -133079,11 +141211,6 @@ entities: - pos: -33.5,-38.5 parent: 6747 type: Transform - - uid: 1335 - components: - - pos: 4.5,27.5 - parent: 6747 - type: Transform - uid: 1422 components: - pos: -16.5,-8.5 @@ -133169,6 +141296,11 @@ entities: - pos: -28.5,-14.5 parent: 6747 type: Transform + - uid: 1636 + components: + - pos: 34.5,46.5 + parent: 6747 + type: Transform - uid: 1727 components: - pos: 7.5,-35.5 @@ -133199,26 +141331,11 @@ entities: - pos: 14.5,-15.5 parent: 6747 type: Transform - - uid: 1781 - components: - - pos: 14.5,-16.5 - parent: 6747 - type: Transform - - uid: 1782 - components: - - pos: 14.5,-17.5 - parent: 6747 - type: Transform - uid: 1783 components: - pos: 14.5,-18.5 parent: 6747 type: Transform - - uid: 1784 - components: - - pos: 14.5,-19.5 - parent: 6747 - type: Transform - uid: 1900 components: - pos: -3.5,-42.5 @@ -133334,9 +141451,9 @@ entities: - pos: 42.5,1.5 parent: 6747 type: Transform - - uid: 2327 + - uid: 2307 components: - - pos: 28.5,29.5 + - pos: 24.5,36.5 parent: 6747 type: Transform - uid: 2440 @@ -133431,7 +141548,7 @@ entities: type: Transform - uid: 2876 components: - - pos: 22.5,35.5 + - pos: 25.5,36.5 parent: 6747 type: Transform - uid: 2968 @@ -133719,6 +141836,11 @@ entities: - pos: 17.5,-64.5 parent: 6747 type: Transform + - uid: 5535 + components: + - pos: -20.5,2.5 + parent: 6747 + type: Transform - uid: 5616 components: - pos: 14.5,-25.5 @@ -133849,11 +141971,6 @@ entities: - pos: 77.5,-25.5 parent: 6747 type: Transform - - uid: 6021 - components: - - pos: 60.5,11.5 - parent: 6747 - type: Transform - uid: 6024 components: - pos: 66.5,-18.5 @@ -134079,6 +142196,11 @@ entities: - pos: 76.5,-41.5 parent: 6747 type: Transform + - uid: 6161 + components: + - pos: 16.5,36.5 + parent: 6747 + type: Transform - uid: 6171 components: - pos: 76.5,-32.5 @@ -134209,6 +142331,26 @@ entities: - pos: 71.5,-38.5 parent: 6747 type: Transform + - uid: 6391 + components: + - pos: 49.5,9.5 + parent: 6747 + type: Transform + - uid: 6394 + components: + - pos: 69.5,6.5 + parent: 6747 + type: Transform + - uid: 6397 + components: + - pos: 66.5,5.5 + parent: 6747 + type: Transform + - uid: 6409 + components: + - pos: 65.5,5.5 + parent: 6747 + type: Transform - uid: 6436 components: - pos: 59.5,-26.5 @@ -134346,42 +142488,52 @@ entities: type: Transform - uid: 6592 components: - - pos: 18.5,13.5 + - pos: 19.5,21.5 parent: 6747 type: Transform - - uid: 6594 + - uid: 6626 components: - - pos: 18.5,15.5 + - pos: 19.5,22.5 parent: 6747 type: Transform - - uid: 6774 + - uid: 6653 components: - - pos: 57.5,14.5 + - pos: 69.5,8.5 parent: 6747 type: Transform - - uid: 6775 + - uid: 6654 components: - - pos: 58.5,14.5 + - pos: 69.5,9.5 parent: 6747 type: Transform - - uid: 6776 + - uid: 6658 components: - - pos: 59.5,14.5 + - pos: 65.5,10.5 parent: 6747 type: Transform - - uid: 6777 + - uid: 6659 components: - - pos: 57.5,8.5 + - pos: 66.5,10.5 parent: 6747 type: Transform - - uid: 6778 + - uid: 6660 components: - - pos: 58.5,8.5 + - pos: 67.5,10.5 parent: 6747 type: Transform - - uid: 6779 + - uid: 6662 components: - - pos: 59.5,8.5 + - pos: 69.5,7.5 + parent: 6747 + type: Transform + - uid: 6729 + components: + - pos: 49.5,8.5 + parent: 6747 + type: Transform + - uid: 6731 + components: + - pos: 49.5,7.5 parent: 6747 type: Transform - uid: 6792 @@ -134404,39 +142556,14 @@ entities: - pos: 38.5,-36.5 parent: 6747 type: Transform - - uid: 6884 - components: - - pos: 57.5,19.5 - parent: 6747 - type: Transform - - uid: 6885 - components: - - pos: 58.5,19.5 - parent: 6747 - type: Transform - - uid: 6886 - components: - - pos: 59.5,19.5 - parent: 6747 - type: Transform - - uid: 6887 - components: - - pos: 60.5,18.5 - parent: 6747 - type: Transform - - uid: 6888 - components: - - pos: 60.5,17.5 - parent: 6747 - type: Transform - - uid: 6889 + - uid: 6879 components: - - pos: 60.5,16.5 + - pos: 60.5,36.5 parent: 6747 type: Transform - - uid: 6890 + - uid: 6880 components: - - pos: 60.5,15.5 + - pos: 61.5,36.5 parent: 6747 type: Transform - uid: 7698 @@ -134539,26 +142666,11 @@ entities: - pos: 51.5,36.5 parent: 6747 type: Transform - - uid: 8047 - components: - - pos: 56.5,34.5 - parent: 6747 - type: Transform - uid: 8055 components: - pos: 56.5,31.5 parent: 6747 type: Transform - - uid: 8056 - components: - - pos: 56.5,32.5 - parent: 6747 - type: Transform - - uid: 8057 - components: - - pos: 56.5,33.5 - parent: 6747 - type: Transform - uid: 8069 components: - pos: 52.5,39.5 @@ -134574,129 +142686,84 @@ entities: - pos: 55.5,39.5 parent: 6747 type: Transform - - uid: 8322 - components: - - pos: 25.5,35.5 - parent: 6747 - type: Transform - - uid: 8325 - components: - - pos: 21.5,34.5 - parent: 6747 - type: Transform - - uid: 8326 + - uid: 8259 components: - - pos: 21.5,33.5 + - pos: 23.5,36.5 parent: 6747 type: Transform - - uid: 8329 + - uid: 8263 components: - - pos: 21.5,31.5 + - pos: 13.5,17.5 parent: 6747 type: Transform - - uid: 8331 + - uid: 8271 components: - - pos: 19.5,35.5 + - pos: 10.5,19.5 parent: 6747 type: Transform - - uid: 8332 + - uid: 8277 components: - - pos: 16.5,35.5 + - pos: 17.5,36.5 parent: 6747 type: Transform - - uid: 8341 + - uid: 8280 components: - - pos: 17.5,35.5 + - pos: 30.5,39.5 parent: 6747 type: Transform - - uid: 8342 + - uid: 8282 components: - - pos: 18.5,35.5 + - pos: 64.5,23.5 parent: 6747 type: Transform - - uid: 8400 + - uid: 8283 components: - - pos: 22.5,44.5 + - pos: 33.5,39.5 parent: 6747 type: Transform - - uid: 8401 + - uid: 8295 components: - - pos: 23.5,44.5 + - pos: 64.5,21.5 parent: 6747 type: Transform - - uid: 8402 + - uid: 8316 components: - - pos: 24.5,44.5 + - pos: 33.5,44.5 parent: 6747 type: Transform - - uid: 8403 + - uid: 8319 components: - - pos: 25.5,44.5 + - pos: 32.5,39.5 parent: 6747 type: Transform - - uid: 8404 + - uid: 8322 components: - - pos: 26.5,44.5 + - pos: 67.5,5.5 parent: 6747 type: Transform - - uid: 8405 + - uid: 8335 components: - - pos: 27.5,44.5 + - pos: 32.5,44.5 parent: 6747 type: Transform - uid: 8409 components: - - pos: 29.5,39.5 - parent: 6747 - type: Transform - - uid: 8410 - components: - - pos: 29.5,38.5 - parent: 6747 - type: Transform - - uid: 8411 - components: - - pos: 29.5,37.5 - parent: 6747 - type: Transform - - uid: 8442 - components: - - pos: 19.5,44.5 + - pos: 29.5,46.5 parent: 6747 type: Transform - - uid: 8443 - components: - - pos: 18.5,44.5 - parent: 6747 - type: Transform - - uid: 8444 - components: - - pos: 17.5,44.5 - parent: 6747 - type: Transform - - uid: 8445 - components: - - pos: 16.5,44.5 - parent: 6747 - type: Transform - - uid: 8446 - components: - - pos: 14.5,42.5 - parent: 6747 - type: Transform - - uid: 8447 + - uid: 8430 components: - - pos: 14.5,41.5 + - pos: 11.5,19.5 parent: 6747 type: Transform - - uid: 8448 + - uid: 8431 components: - - pos: 14.5,40.5 + - pos: 13.5,18.5 parent: 6747 type: Transform - - uid: 8449 + - uid: 8432 components: - - pos: 14.5,39.5 + - pos: 9.5,19.5 parent: 6747 type: Transform - uid: 8505 @@ -134709,24 +142776,24 @@ entities: - pos: 47.5,25.5 parent: 6747 type: Transform - - uid: 8659 + - uid: 8514 components: - - pos: 9.5,29.5 + - pos: 69.5,20.5 parent: 6747 type: Transform - - uid: 8660 + - uid: 8534 components: - - pos: 10.5,29.5 + - pos: 19.5,17.5 parent: 6747 type: Transform - - uid: 8661 + - uid: 8659 components: - - pos: 14.5,29.5 + - pos: 29.5,45.5 parent: 6747 type: Transform - - uid: 8662 + - uid: 8810 components: - - pos: 13.5,29.5 + - pos: 56.5,35.5 parent: 6747 type: Transform - uid: 9338 @@ -134749,6 +142816,16 @@ entities: - pos: -50.5,0.5 parent: 6747 type: Transform + - uid: 9421 + components: + - pos: 63.5,36.5 + parent: 6747 + type: Transform + - uid: 9669 + components: + - pos: 57.5,40.5 + parent: 6747 + type: Transform - uid: 9883 components: - pos: -46.5,-68.5 @@ -135099,9 +143176,19 @@ entities: - pos: 60.5,-2.5 parent: 6747 type: Transform - - uid: 11422 + - uid: 11128 + components: + - pos: 56.5,40.5 + parent: 6747 + type: Transform + - uid: 11130 + components: + - pos: 62.5,36.5 + parent: 6747 + type: Transform + - uid: 11524 components: - - pos: 8.5,14.5 + - pos: 64.5,22.5 parent: 6747 type: Transform - uid: 11628 @@ -135119,24 +143206,44 @@ entities: - pos: -3.5,-82.5 parent: 6747 type: Transform - - uid: 11819 + - uid: 11942 components: - - pos: 16.5,38.5 + - pos: 56.5,34.5 parent: 6747 type: Transform - - uid: 11820 + - uid: 11954 components: - - pos: 19.5,38.5 + - pos: 14.5,23.5 parent: 6747 type: Transform - - uid: 11858 + - uid: 11956 components: - - pos: 12.5,17.5 + - pos: 42.5,9.5 parent: 6747 type: Transform - - uid: 16798 + - uid: 11957 components: - - pos: 8.5,15.5 + - pos: 42.5,12.5 + parent: 6747 + type: Transform + - uid: 13300 + components: + - pos: 59.5,37.5 + parent: 6747 + type: Transform + - uid: 13447 + components: + - pos: 69.5,21.5 + parent: 6747 + type: Transform + - uid: 16581 + components: + - pos: -21.5,5.5 + parent: 6747 + type: Transform + - uid: 16582 + components: + - pos: -21.5,4.5 parent: 6747 type: Transform - uid: 16847 @@ -135149,6 +143256,11 @@ entities: - pos: 32.5,-96.5 parent: 6747 type: Transform + - uid: 17002 + components: + - pos: 74.5,18.5 + parent: 6747 + type: Transform - uid: 17017 components: - pos: 52.5,37.5 @@ -135159,19 +143271,24 @@ entities: - pos: 55.5,37.5 parent: 6747 type: Transform - - uid: 17035 + - uid: 17032 components: - - pos: 33.5,40.5 + - pos: 69.5,22.5 parent: 6747 type: Transform - - uid: 17037 + - uid: 17039 components: - - pos: 32.5,40.5 + - pos: 74.5,20.5 parent: 6747 type: Transform - - uid: 17039 + - uid: 17040 components: - - pos: 31.5,40.5 + - pos: 74.5,21.5 + parent: 6747 + type: Transform + - uid: 17042 + components: + - pos: 74.5,22.5 parent: 6747 type: Transform - uid: 17264 @@ -135189,14 +143306,39 @@ entities: - pos: 49.5,-54.5 parent: 6747 type: Transform - - uid: 17608 + - uid: 17619 components: - - pos: 13.5,20.5 + - pos: 75.5,6.5 parent: 6747 type: Transform - - uid: 17737 + - uid: 17620 components: - - pos: 8.5,16.5 + - pos: 75.5,7.5 + parent: 6747 + type: Transform + - uid: 17621 + components: + - pos: 75.5,8.5 + parent: 6747 + type: Transform + - uid: 17622 + components: + - pos: 75.5,9.5 + parent: 6747 + type: Transform + - uid: 17626 + components: + - pos: 71.5,5.5 + parent: 6747 + type: Transform + - uid: 17627 + components: + - pos: 72.5,5.5 + parent: 6747 + type: Transform + - uid: 17628 + components: + - pos: 73.5,5.5 parent: 6747 type: Transform - uid: 19503 @@ -135214,6 +143356,11 @@ entities: - pos: 78.5,-34.5 parent: 6747 type: Transform + - uid: 22051 + components: + - pos: 8.5,-19.5 + parent: 6747 + type: Transform - uid: 22468 components: - pos: 4.5,-29.5 @@ -135234,11 +143381,6 @@ entities: - pos: -4.5,-40.5 parent: 6747 type: Transform - - uid: 22745 - components: - - pos: 32.5,44.5 - parent: 6747 - type: Transform - uid: 22802 components: - pos: 9.5,-78.5 @@ -135359,19 +143501,34 @@ entities: - pos: -51.5,-25.5 parent: 6747 type: Transform - - uid: 23494 + - uid: 23953 components: - - pos: 12.5,18.5 + - pos: 49.5,-44.5 parent: 6747 type: Transform - - uid: 23953 + - uid: 24004 components: - - pos: 49.5,-44.5 + - pos: 75.5,19.5 parent: 6747 type: Transform - - uid: 23995 + - uid: 24005 components: - - pos: 12.5,22.5 + - pos: 76.5,19.5 + parent: 6747 + type: Transform + - uid: 24006 + components: + - pos: 76.5,16.5 + parent: 6747 + type: Transform + - uid: 24007 + components: + - pos: 75.5,16.5 + parent: 6747 + type: Transform + - uid: 24015 + components: + - pos: 77.5,18.5 parent: 6747 type: Transform - uid: 24067 @@ -135454,29 +143611,19 @@ entities: - pos: -55.5,-6.5 parent: 6747 type: Transform - - uid: 25569 - components: - - pos: 4.5,25.5 - parent: 6747 - type: Transform - - uid: 25570 - components: - - pos: 4.5,20.5 - parent: 6747 - type: Transform - - uid: 25571 + - uid: 25547 components: - - pos: 4.5,21.5 + - pos: 3.5,-71.5 parent: 6747 type: Transform - - uid: 25572 + - uid: 25578 components: - - pos: 4.5,19.5 + - pos: 7.5,12.5 parent: 6747 type: Transform - - uid: 25578 + - uid: 26896 components: - - pos: 7.5,12.5 + - pos: 1.5,-71.5 parent: 6747 type: Transform - proto: RemoteSignaller @@ -135490,6 +143637,59 @@ entities: 523: - Pressed: Trigger type: DeviceLinkSource + - uid: 6898 + components: + - name: garage door opener + type: MetaData + - rot: -1.5707963267948966 rad + pos: 16.646366,18.749796 + parent: 6747 + type: Transform + - linkedPorts: + 7713: + - Pressed: Toggle + 8405: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 8302 + components: + - name: garage door opener + type: MetaData + - pos: 17.599777,15.634402 + parent: 6747 + type: Transform + - linkedPorts: + 8405: + - Pressed: Toggle + 7713: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 8305 + components: + - name: garage door opener + type: MetaData + - pos: 17.849777,15.623977 + parent: 6747 + type: Transform + - linkedPorts: + 8405: + - Pressed: Toggle + 7713: + - Pressed: Toggle + type: DeviceLinkSource + - uid: 8310 + components: + - name: garage door opener + type: MetaData + - pos: 18.058113,15.634402 + parent: 6747 + type: Transform + - linkedPorts: + 7713: + - Pressed: Toggle + 8405: + - Pressed: Toggle + type: DeviceLinkSource - proto: ResearchAndDevelopmentServer entities: - uid: 4464 @@ -135497,6 +143697,22 @@ entities: - pos: 21.5,-64.5 parent: 6747 type: Transform +- proto: ResearchAndDevelopmentServerMachineCircuitboard + entities: + - uid: 17753 + components: + - rot: -1.5707963267948966 rad + pos: 74.42728,6.5816154 + parent: 6747 + type: Transform +- proto: ResearchComputerCircuitboard + entities: + - uid: 17752 + components: + - rot: -1.5707963267948966 rad + pos: 74.666855,6.5816154 + parent: 6747 + type: Transform - proto: ReverseEngineeringMachine entities: - uid: 9062 @@ -135554,9 +143770,9 @@ entities: type: Transform - proto: RollerBed entities: - - uid: 1636 + - uid: 897 components: - - pos: -28.597198,-11.224032 + - pos: -29.375572,-11.319378 parent: 6747 type: Transform - uid: 1637 @@ -135564,23 +143780,53 @@ entities: - pos: -28.565948,-13.381782 parent: 6747 type: Transform - - uid: 2421 + - uid: 26907 components: - - pos: 10.555807,-30.477455 + - pos: 10.536896,-29.318155 parent: 6747 type: Transform - - uid: 2422 + - uid: 26908 components: - - pos: 10.63914,-29.831173 + - pos: 10.516063,-29.922743 parent: 6747 type: Transform - - uid: 2423 + - uid: 26909 components: - - pos: 10.555807,-29.268282 + - pos: 10.557729,-30.454361 parent: 6747 type: Transform - proto: SalvageCanisterSpawner entities: + - uid: 858 + components: + - pos: 33.5,31.5 + parent: 6747 + type: Transform + - uid: 7653 + components: + - pos: 34.5,24.5 + parent: 6747 + type: Transform + - uid: 7856 + components: + - pos: 58.5,25.5 + parent: 6747 + type: Transform + - uid: 8547 + components: + - pos: 18.5,21.5 + parent: 6747 + type: Transform + - uid: 11133 + components: + - pos: 33.5,33.5 + parent: 6747 + type: Transform + - uid: 12019 + components: + - pos: 32.5,34.5 + parent: 6747 + type: Transform - uid: 23919 components: - pos: 14.5,35.5 @@ -135593,6 +143839,14 @@ entities: - pos: -1.5,50.5 parent: 6747 type: Transform +- proto: SalvageMagnetMachineCircuitboard + entities: + - uid: 17749 + components: + - rot: -1.5707963267948966 rad + pos: 72.43769,6.5683603 + parent: 6747 + type: Transform - proto: SalvagePartsSpawnerLow entities: - uid: 5096 @@ -135610,9 +143864,19 @@ entities: - pos: -46.5,-3.5 parent: 6747 type: Transform - - uid: 22569 + - uid: 19031 + components: + - pos: 67.5,18.5 + parent: 6747 + type: Transform + - uid: 19032 components: - - pos: 30.5,34.5 + - pos: 68.5,18.5 + parent: 6747 + type: Transform + - uid: 19033 + components: + - pos: 65.5,18.5 parent: 6747 type: Transform - uid: 23152 @@ -135661,6 +143925,14 @@ entities: - pos: -73.5,3.5 parent: 6747 type: Transform +- proto: SalvageShuttleConsoleCircuitboard + entities: + - uid: 17748 + components: + - rot: -1.5707963267948966 rad + pos: 72.698105,6.547512 + parent: 6747 + type: Transform - proto: Saw entities: - uid: 4357 @@ -135668,6 +143940,13 @@ entities: - pos: 10.535797,-39.409237 parent: 6747 type: Transform +- proto: SawImprov + entities: + - uid: 26455 + components: + - pos: 27.524822,34.178925 + parent: 6747 + type: Transform - proto: SchoolgirlUniformSpawner entities: - uid: 23529 @@ -135704,11 +143983,6 @@ entities: - pos: 18.5335,-61.20493 parent: 6747 type: Transform - - uid: 7715 - components: - - pos: 29.773582,34.715107 - parent: 6747 - type: Transform - uid: 9206 components: - flags: InContainer @@ -135765,6 +144039,14 @@ entities: - pos: -29.5,3.5 parent: 6747 type: Transform +- proto: SecurityTechFabCircuitboard + entities: + - uid: 17716 + components: + - rot: 1.5707963267948966 rad + pos: 72.416855,8.597171 + parent: 6747 + type: Transform - proto: SeedExtractor entities: - uid: 1580 @@ -135843,11 +144125,6 @@ entities: type: Transform - proto: SheetGlass entities: - - uid: 909 - components: - - pos: 27.496437,18.586308 - parent: 6747 - type: Transform - uid: 3738 components: - pos: 19.536514,-39.348763 @@ -135858,11 +144135,21 @@ entities: - pos: 19.496231,-52.37857 parent: 6747 type: Transform + - uid: 9056 + components: + - pos: 21.499702,28.544674 + parent: 6747 + type: Transform - uid: 10388 components: - pos: 50.472504,16.50103 parent: 6747 type: Transform + - uid: 25679 + components: + - pos: 78.47736,19.51665 + parent: 6747 + type: Transform - proto: SheetGlass1 entities: - uid: 10894 @@ -135893,11 +144180,6 @@ entities: type: Transform - proto: SheetPlasma entities: - - uid: 3729 - components: - - pos: 11.485734,-21.469278 - parent: 6747 - type: Transform - uid: 5236 components: - pos: -35.502335,-45.42165 @@ -135909,6 +144191,11 @@ entities: pos: 26.519497,-69.459854 parent: 6747 type: Transform + - uid: 26893 + components: + - pos: 10.51805,-26.153915 + parent: 6747 + type: Transform - proto: SheetPlasma1 entities: - uid: 16168 @@ -135937,6 +144224,11 @@ entities: - pos: 50.548912,16.537233 parent: 6747 type: Transform + - uid: 9054 + components: + - pos: 21.502575,27.541576 + parent: 6747 + type: Transform - proto: SheetPlasteel1 entities: - uid: 11187 @@ -135954,13 +144246,15 @@ entities: - pos: 32.40327,-76.44451 parent: 6747 type: Transform -- proto: SheetPlastic +- proto: SheetPlasteel10 entities: - - uid: 911 + - uid: 12034 components: - - pos: 32.63013,15.468564 + - pos: 70.38045,20.586037 parent: 6747 type: Transform +- proto: SheetPlastic + entities: - uid: 3737 components: - pos: 20.484428,-39.442577 @@ -136022,11 +144316,6 @@ entities: type: Transform - proto: SheetSteel entities: - - uid: 910 - components: - - pos: 27.570381,18.644657 - parent: 6747 - type: Transform - uid: 3739 components: - pos: 18.505264,-39.38003 @@ -136057,14 +144346,19 @@ entities: pos: 3.5264168,-15.312646 parent: 6747 type: Transform - - uid: 8465 + - uid: 7853 components: - - pos: 27.523869,33.751747 + - pos: 70.54711,20.533916 parent: 6747 type: Transform - - uid: 22572 + - uid: 18851 + components: + - pos: 50.379757,17.495867 + parent: 6747 + type: Transform + - uid: 18852 components: - - pos: 32.4218,15.499837 + - pos: 50.661007,17.516714 parent: 6747 type: Transform - proto: SheetSteel1 @@ -136081,31 +144375,49 @@ entities: pos: 59.169697,-11.868398 parent: 6747 type: Transform +- proto: SheetSteel10 + entities: + - uid: 3296 + components: + - pos: 53.397045,-23.439524 + parent: 6747 + type: Transform + - uid: 8303 + components: + - pos: 17.110195,15.582282 + parent: 6747 + type: Transform + - uid: 22508 + components: + - rot: 1.5707963267948966 rad + pos: 56.49578,37.600807 + parent: 6747 + type: Transform - proto: SheetUranium1 entities: - - uid: 4410 + - uid: 19055 components: - - pos: 31.551048,20.621492 + - pos: 57.620457,9.59319 parent: 6747 type: Transform - - uid: 5091 + - uid: 19056 components: - - pos: 31.551048,20.621492 + - pos: 57.620457,9.59319 parent: 6747 type: Transform - - uid: 6556 + - uid: 19057 components: - - pos: 31.551048,20.621492 + - pos: 57.620457,9.59319 parent: 6747 type: Transform - - uid: 8512 + - uid: 19071 components: - - pos: 31.551048,20.621492 + - pos: 57.620457,9.59319 parent: 6747 type: Transform - - uid: 25546 + - uid: 19072 components: - - pos: 31.551048,20.621492 + - pos: 57.620457,9.59319 parent: 6747 type: Transform - proto: ShellShotgunSlug @@ -136203,16 +144515,24 @@ entities: type: Transform - proto: ShuttersNormal entities: - - uid: 11128 + - uid: 3899 components: - - pos: 53.5,22.5 + - pos: 31.5,26.5 parent: 6747 type: Transform - - uid: 11129 + - links: + - 27053 + - 27054 + type: DeviceLinkSink + - uid: 12864 components: - - pos: 54.5,22.5 + - pos: 31.5,25.5 parent: 6747 type: Transform + - links: + - 27053 + - 27054 + type: DeviceLinkSink - proto: ShuttersNormalOpen entities: - uid: 2453 @@ -136270,6 +144590,14 @@ entities: - links: - 1227 type: DeviceLinkSink + - uid: 6619 + components: + - pos: 13.5,17.5 + parent: 6747 + type: Transform + - links: + - 6920 + type: DeviceLinkSink - uid: 6873 components: - pos: 48.5,-30.5 @@ -136278,6 +144606,30 @@ entities: - links: - 23539 type: DeviceLinkSink + - uid: 6900 + components: + - pos: 14.5,23.5 + parent: 6747 + type: Transform + - links: + - 6920 + type: DeviceLinkSink + - uid: 6921 + components: + - pos: 19.5,21.5 + parent: 6747 + type: Transform + - links: + - 6920 + type: DeviceLinkSink + - uid: 6927 + components: + - pos: 13.5,18.5 + parent: 6747 + type: Transform + - links: + - 6920 + type: DeviceLinkSink - uid: 8420 components: - pos: -13.5,-7.5 @@ -136334,6 +144686,22 @@ entities: - links: - 12448 type: DeviceLinkSink + - uid: 8441 + components: + - pos: 19.5,22.5 + parent: 6747 + type: Transform + - links: + - 6920 + type: DeviceLinkSink + - uid: 8442 + components: + - pos: 19.5,17.5 + parent: 6747 + type: Transform + - links: + - 6920 + type: DeviceLinkSink - uid: 8507 components: - pos: 17.5,-64.5 @@ -136390,37 +144758,29 @@ entities: - links: - 12448 type: DeviceLinkSink - - uid: 14974 - components: - - pos: 13.5,20.5 - parent: 6747 - type: Transform - - links: - - 23497 - type: DeviceLinkSink - - uid: 17617 + - uid: 16586 components: - - pos: 14.5,20.5 + - pos: -21.5,5.5 parent: 6747 type: Transform - links: - - 23497 + - 16583 type: DeviceLinkSink - - uid: 23495 + - uid: 16587 components: - - pos: 12.5,18.5 + - pos: -21.5,4.5 parent: 6747 type: Transform - links: - - 23497 + - 16583 type: DeviceLinkSink - - uid: 23496 + - uid: 16588 components: - - pos: 12.5,17.5 + - pos: -20.5,2.5 parent: 6747 type: Transform - links: - - 23497 + - 16583 type: DeviceLinkSink - uid: 23531 components: @@ -136496,55 +144856,61 @@ entities: - links: - 4694 type: DeviceLinkSink - - uid: 11821 +- proto: ShuttersWindow + entities: + - uid: 881 components: - - pos: 17.5,38.5 + - pos: 18.5,30.5 parent: 6747 type: Transform - links: - - 9424 + - 6680 type: DeviceLinkSink - - uid: 11822 + - uid: 2574 components: - - pos: 18.5,38.5 + - pos: 17.5,30.5 parent: 6747 type: Transform - links: - - 9424 + - 6680 type: DeviceLinkSink -- proto: ShuttersWindow - entities: - - uid: 935 + - uid: 7713 components: - - pos: 20.5,27.5 + - pos: 19.5,12.5 parent: 6747 type: Transform - links: - - 4411 + - 6898 + - 8310 + - 8305 + - 8302 type: DeviceLinkSink - - uid: 1104 + - uid: 8405 components: - - pos: 20.5,26.5 + - pos: 18.5,12.5 parent: 6747 type: Transform - links: - - 4411 + - 6898 + - 8305 + - 8310 + - 8302 type: DeviceLinkSink - - uid: 1108 + - uid: 13413 components: - - pos: 15.5,27.5 + - pos: 66.5,27.5 parent: 6747 type: Transform - links: - - 1111 + - 27049 type: DeviceLinkSink - - uid: 1109 + - uid: 13414 components: - - pos: 15.5,26.5 + - pos: 67.5,27.5 parent: 6747 type: Transform - links: - - 1111 + - 27049 type: DeviceLinkSink - proto: ShuttersWindowOpen entities: @@ -136636,19 +145002,67 @@ entities: type: Transform - proto: SignalSwitchDirectional entities: - - uid: 1111 + - uid: 24 components: - rot: -1.5707963267948966 rad - pos: 15.5,25.5 + pos: 26.5,31.5 parent: 6747 type: Transform - linkedPorts: - 1109: - - On: Open - - Off: Close - 1108: - - On: Open - - Off: Close + 6617: + - On: Forward + - Off: Off + 7071: + - On: Forward + - Off: Off + 6901: + - On: Forward + - Off: Off + 6618: + - On: Forward + - Off: Off + 7066: + - On: Forward + - Off: Off + 7065: + - On: Forward + - Off: Off + 7064: + - On: Forward + - Off: Off + 7063: + - On: Forward + - Off: Off + 6911: + - On: Forward + - Off: Off + 6422: + - On: Forward + - Off: Off + 7060: + - On: Forward + - Off: Off + 3189: + - On: Forward + - Off: Off + 7061: + - On: Forward + - Off: Off + 6700: + - On: Forward + - Off: Off + 3263: + - On: Forward + - Off: Off + 7699: + - On: Forward + - Off: Off + 7623: + - On: Forward + - Off: Off + 6912: + - On: Forward + - Off: Off type: DeviceLinkSource - uid: 1227 components: @@ -136733,39 +145147,115 @@ entities: - On: Open - Off: Close type: DeviceLinkSource - - uid: 4411 + - uid: 4694 components: - - rot: 1.5707963267948966 rad - pos: 20.5,25.5 + - rot: 3.141592653589793 rad + pos: -6.5,-74.5 parent: 6747 type: Transform - linkedPorts: - 1104: + 4613: - On: Open - Off: Close - 935: + type: DeviceLinkSource + - uid: 5203 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-88.5 + parent: 6747 + type: Transform + - linkedPorts: + 5185: - On: Open - Off: Close type: DeviceLinkSource - - uid: 4694 + - uid: 6680 components: - rot: 3.141592653589793 rad - pos: -6.5,-74.5 + pos: 16.5,30.5 parent: 6747 type: Transform - linkedPorts: - 4613: + 2574: + - On: Open + - Off: Close + 881: - On: Open - Off: Close type: DeviceLinkSource - - uid: 5203 + - uid: 6910 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,43.5 + parent: 6747 + type: Transform + - linkedPorts: + 6616: + - On: Forward + - Off: Off + 6902: + - On: Forward + - Off: Off + 6615: + - On: Forward + - Off: Off + 6907: + - On: Forward + - Off: Off + 6906: + - On: Forward + - Off: Off + 6699: + - On: Forward + - Off: Off + type: DeviceLinkSource + - uid: 6919 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,20.5 + parent: 6747 + type: Transform + - linkedPorts: + 23672: + - On: On + - Off: Off + type: DeviceLinkSource + - uid: 6920 components: - rot: 3.141592653589793 rad - pos: 4.5,-88.5 + pos: 15.5,16.5 parent: 6747 type: Transform - linkedPorts: - 5185: + 6927: + - On: Open + - Off: Close + 6619: + - On: Open + - Off: Close + 8441: + - On: Open + - Off: Close + 6921: + - On: Open + - Off: Close + 8442: + - On: Open + - Off: Close + 6900: + - On: Open + - Off: Close + type: DeviceLinkSource + - uid: 7490 + components: + - pos: 70.5,23.5 + parent: 6747 + type: Transform + - linkedPorts: + 12030: + - On: Open + - Off: Close + 958: - On: Open - Off: Close type: DeviceLinkSource @@ -136797,53 +145287,60 @@ entities: - On: Open - Off: Close type: DeviceLinkSource - - uid: 8666 + - uid: 8459 components: - - rot: -1.5707963267948966 rad - pos: 56.5,14.5 + - pos: 15.5,36.5 parent: 6747 type: Transform - linkedPorts: - 6004: + 907: + - On: Open + - Off: Close + 6176: - On: Forward - Off: Off - 6025: + 1077: - On: Forward - Off: Off - 6029: + 8253: - On: Forward - Off: Off - 6005: + 8324: + - On: Open + - Off: Close + 8252: - On: Forward - Off: Off - 6023: + 6408: - On: Forward - Off: Off - 8206: - - On: Open - - Off: Close - 6022: + 7059: - On: Forward - Off: Off - 18559: + type: DeviceLinkSource + - uid: 8661 + components: + - rot: 3.141592653589793 rad + pos: 23.5,14.5 + parent: 6747 + type: Transform + - linkedPorts: + 8472: - On: Forward - Off: Off - 6082: + 8274: - On: Forward - Off: Off - 8310: + 8275: - On: Forward - Off: Off - 6086: + 8490: - On: Forward - Off: Off - 8308: + 8486: - On: Forward - Off: Off - 16797: - - On: Open - - Off: Close - 6091: + 8471: - On: Forward - Off: Off type: DeviceLinkSource @@ -136873,19 +145370,6 @@ entities: - On: Open - Off: Close type: DeviceLinkSource - - uid: 9424 - components: - - pos: 15.5,38.5 - parent: 6747 - type: Transform - - linkedPorts: - 11821: - - On: Open - - Off: Close - 11822: - - On: Open - - Off: Close - type: DeviceLinkSource - uid: 12119 components: - pos: -39.5,-21.5 @@ -137009,24 +145493,31 @@ entities: - On: On - Off: Off type: DeviceLinkSource - - uid: 16773 + - uid: 16583 components: - - rot: -1.5707963267948966 rad - pos: -28.5,-58.5 + - rot: 1.5707963267948966 rad + pos: -21.5,3.5 parent: 6747 type: Transform - linkedPorts: - 17179: - - On: On - - Off: Off + 16588: + - On: Open + - Off: Close + 16586: + - On: Open + - Off: Close + 16587: + - On: Open + - Off: Close type: DeviceLinkSource - - uid: 17154 + - uid: 16773 components: - - pos: 18.5,19.5 + - rot: -1.5707963267948966 rad + pos: -28.5,-58.5 parent: 6747 type: Transform - linkedPorts: - 16994: + 17179: - On: On - Off: Off type: DeviceLinkSource @@ -137226,25 +145717,27 @@ entities: - On: Forward - Off: Off type: DeviceLinkSource - - uid: 23497 + - uid: 22343 components: - - rot: 3.141592653589793 rad - pos: 14.5,16.5 + - rot: 1.5707963267948966 rad + pos: 53.5,8.5 parent: 6747 type: Transform - linkedPorts: - 23495: - - On: Open - - Off: Close - 23496: - - On: Open - - Off: Close - 17617: - - On: Open - - Off: Close - 14974: - - On: Open - - Off: Close + 22199: + - On: On + - Off: Off + type: DeviceLinkSource + - uid: 22632 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,4.5 + parent: 6747 + type: Transform + - linkedPorts: + 22631: + - On: On + - Off: Off type: DeviceLinkSource - uid: 23539 components: @@ -137303,6 +145796,61 @@ entities: - On: Open - Off: Close type: DeviceLinkSource + - uid: 26595 + components: + - rot: -1.5707963267948966 rad + pos: 64.5,32.5 + parent: 6747 + type: Transform + - linkedPorts: + 13403: + - On: Open + - Off: Close + 13404: + - On: Open + - Off: Close + type: DeviceLinkSource + - uid: 27049 + components: + - pos: 65.5,27.5 + parent: 6747 + type: Transform + - linkedPorts: + 13413: + - On: Open + - Off: Close + 13414: + - On: Open + - Off: Close + type: DeviceLinkSource + - uid: 27053 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,27.5 + parent: 6747 + type: Transform + - linkedPorts: + 3899: + - On: Open + - Off: Close + 12864: + - On: Open + - Off: Close + type: DeviceLinkSource + - uid: 27054 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,27.5 + parent: 6747 + type: Transform + - linkedPorts: + 3899: + - On: Open + - Off: Close + 12864: + - On: Open + - Off: Close + type: DeviceLinkSource - proto: SignalTimerElectronics entities: - uid: 16167 @@ -137327,16 +145875,17 @@ entities: type: Transform - proto: SignAtmos entities: - - uid: 8516 + - uid: 7484 components: - - pos: 36.5,29.5 + - rot: 3.141592653589793 rad + pos: 49.5,28.5 parent: 6747 type: Transform - proto: SignAtmosMinsky entities: - - uid: 8514 + - uid: 7488 components: - - pos: 34.5,29.5 + - pos: 56.5,30.5 parent: 6747 type: Transform - proto: SignBridge @@ -137349,9 +145898,16 @@ entities: type: Transform - proto: SignCargo entities: - - uid: 6871 + - uid: 6455 components: - - pos: 42.5,8.5 + - pos: 23.5,12.5 + parent: 6747 + type: Transform +- proto: SignCargoDock + entities: + - uid: 6454 + components: + - pos: 20.5,36.5 parent: 6747 type: Transform - proto: SignChapel @@ -137386,26 +145942,28 @@ entities: - pos: -3.5,-47.5 parent: 6747 type: Transform -- proto: SignDangerMed +- proto: SignCryogenics entities: - - uid: 7562 + - uid: 26931 components: - - pos: -40.5,14.5 + - pos: 11.5,-16.5 parent: 6747 type: Transform - - uid: 7563 +- proto: SignDangerMed + entities: + - uid: 3680 components: - - pos: -40.5,11.5 + - pos: -9.5,7.5 parent: 6747 type: Transform - - uid: 9422 + - uid: 7562 components: - - pos: 20.5,38.5 + - pos: -40.5,14.5 parent: 6747 type: Transform - - uid: 9666 + - uid: 7563 components: - - pos: -17.5,6.5 + - pos: -40.5,11.5 parent: 6747 type: Transform - uid: 9667 @@ -137467,11 +146025,6 @@ entities: - pos: 31.508259,-16.595488 parent: 6747 type: Transform - - uid: 11587 - components: - - pos: 44.532063,16.132084 - parent: 6747 - type: Transform - uid: 25353 components: - pos: -12.524603,-22.617863 @@ -137484,6 +146037,14 @@ entities: - pos: 27.521751,-16.386745 parent: 6747 type: Transform +- proto: SignDirectionalCryo + entities: + - uid: 26930 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-17.5 + parent: 6747 + type: Transform - proto: SignDirectionalDorms entities: - uid: 8197 @@ -137530,10 +146091,10 @@ entities: pos: 34.480343,-26.598112 parent: 6747 type: Transform - - uid: 11584 + - uid: 11949 components: - - rot: 3.141592653589793 rad - pos: 45.469563,17.914572 + - rot: 1.5707963267948966 rad + pos: 25.496422,8.770798 parent: 6747 type: Transform - uid: 25341 @@ -137761,24 +146322,24 @@ entities: - pos: 26.499779,-4.811335 parent: 6747 type: Transform - - uid: 11585 +- proto: SignDirectionalSalvage + entities: + - uid: 905 components: - - rot: 3.141592653589793 rad - pos: 47.594563,17.914572 + - rot: -1.5707963267948966 rad + pos: 21.5,30.5 parent: 6747 type: Transform -- proto: SignDirectionalSalvage - entities: - uid: 6840 components: - rot: 3.141592653589793 rad pos: 26.498508,-4.370361 parent: 6747 type: Transform - - uid: 8517 + - uid: 11950 components: - - rot: -1.5707963267948966 rad - pos: 21.5,30.5 + - rot: 3.141592653589793 rad + pos: 22.50684,8.770798 parent: 6747 type: Transform - uid: 25351 @@ -137787,18 +146348,6 @@ entities: pos: 34.486572,-26.830408 parent: 6747 type: Transform - - uid: 25581 - components: - - rot: -1.5707963267948966 rad - pos: 18.5,12.5 - parent: 6747 - type: Transform - - uid: 25582 - components: - - rot: -1.5707963267948966 rad - pos: 22.499985,8.781519 - parent: 6747 - type: Transform - proto: SignDirectionalSci entities: - uid: 6843 @@ -137811,12 +146360,6 @@ entities: - pos: 35.35707,-26.811962 parent: 6747 type: Transform - - uid: 11586 - components: - - rot: 3.141592653589793 rad - pos: 48.500813,17.914572 - parent: 6747 - type: Transform - uid: 25354 components: - pos: -12.524603,-22.82634 @@ -137842,12 +146385,6 @@ entities: pos: 34.490757,-26.149885 parent: 6747 type: Transform - - uid: 11583 - components: - - rot: 3.141592653589793 rad - pos: 44.57373,17.904148 - parent: 6747 - type: Transform - uid: 25340 components: - rot: -1.5707963267948966 rad @@ -137868,10 +146405,22 @@ entities: type: Transform - proto: SignDirectionalSolar entities: - - uid: 23755 + - uid: 3916 components: - - rot: 1.5707963267948966 rad - pos: 28.5,44.5 + - rot: -1.5707963267948966 rad + pos: 39.5,23.5 + parent: 6747 + type: Transform + - uid: 7432 + components: + - rot: 3.141592653589793 rad + pos: 30.5,23.5 + parent: 6747 + type: Transform + - uid: 7487 + components: + - rot: 3.141592653589793 rad + pos: 29.5,36.5 parent: 6747 type: Transform - uid: 23756 @@ -137890,6 +146439,18 @@ entities: - pos: -50.5,-12.5 parent: 6747 type: Transform + - uid: 26529 + components: + - rot: 1.5707963267948966 rad + pos: 74.5,16.5 + parent: 6747 + type: Transform + - uid: 26530 + components: + - rot: -1.5707963267948966 rad + pos: 56.5,21.5 + parent: 6747 + type: Transform - proto: SignDirectionalSupply entities: - uid: 856 @@ -137910,17 +146471,6 @@ entities: pos: 35.36749,-26.16568 parent: 6747 type: Transform - - uid: 8810 - components: - - rot: 1.5707963267948966 rad - pos: 25.518604,8.790482 - parent: 6747 - type: Transform - - uid: 22561 - components: - - pos: -0.45763493,33.0581 - parent: 6747 - type: Transform - uid: 25336 components: - rot: 3.141592653589793 rad @@ -137953,6 +146503,11 @@ entities: pos: 32.5,-36.5 parent: 6747 type: Transform + - uid: 8402 + components: + - pos: 5.5,25.5 + parent: 6747 + type: Transform - proto: SignDojo entities: - uid: 17562 @@ -137962,13 +146517,18 @@ entities: type: Transform - proto: SignDrones entities: - - uid: 7697 + - uid: 11134 components: - - pos: 27.5,29.5 + - pos: 70.5,19.5 parent: 6747 type: Transform - proto: SignElectricalMed entities: + - uid: 6878 + components: + - pos: 58.5,43.5 + parent: 6747 + type: Transform - uid: 11445 components: - pos: -32.5,-15.5 @@ -137999,6 +146559,26 @@ entities: - pos: -29.5,-33.5 parent: 6747 type: Transform + - uid: 17045 + components: + - pos: 77.5,11.5 + parent: 6747 + type: Transform + - uid: 17709 + components: + - pos: 61.5,3.5 + parent: 6747 + type: Transform + - uid: 17710 + components: + - pos: 69.5,3.5 + parent: 6747 + type: Transform + - uid: 17711 + components: + - pos: 77.5,3.5 + parent: 6747 + type: Transform - uid: 19006 components: - pos: 57.5,46.5 @@ -138009,21 +146589,20 @@ entities: - pos: 50.5,46.5 parent: 6747 type: Transform - - uid: 19008 - components: - - pos: 57.5,36.5 - parent: 6747 - type: Transform - - uid: 19011 +- proto: SignEngine + entities: + - uid: 5227 components: - - pos: 58.5,41.5 + - rot: 3.141592653589793 rad + pos: 56.5,27.5 parent: 6747 type: Transform - proto: SignEngineering entities: - - uid: 7527 + - uid: 7612 components: - - pos: 24.5,12.5 + - rot: 3.141592653589793 rad + pos: 42.5,8.5 parent: 6747 type: Transform - proto: SignEscapePods @@ -138046,6 +146625,12 @@ entities: pos: 76.5,-23.5 parent: 6747 type: Transform + - uid: 18891 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,12.5 + parent: 6747 + type: Transform - uid: 25393 components: - rot: -1.5707963267948966 rad @@ -138124,9 +146709,9 @@ entities: type: Transform - proto: SignMail entities: - - uid: 6715 + - uid: 6452 components: - - pos: 41.5,14.5 + - pos: 30.5,14.5 parent: 6747 type: Transform - proto: SignMedical @@ -138222,23 +146807,30 @@ entities: type: Transform - proto: SignRedOne entities: - - uid: 3651 + - uid: 9403 components: - - pos: -18.522114,0.25528336 + - pos: -24.207489,0.24607253 parent: 6747 type: Transform - proto: SignRedThree entities: - - uid: 3680 + - uid: 9666 components: - - pos: -24.529282,0.25528336 + - pos: -24.228321,6.2189703 parent: 6747 type: Transform - proto: SignRedTwo entities: - - uid: 3174 + - uid: 9404 components: - - pos: -21.532532,0.2448597 + - pos: -24.207489,3.22731 + parent: 6747 + type: Transform +- proto: SignRobo + entities: + - uid: 25607 + components: + - pos: 4.5,-71.5 parent: 6747 type: Transform - proto: SignScience @@ -138286,11 +146878,6 @@ entities: type: Transform - proto: SignTelecomms entities: - - uid: 1077 - components: - - pos: 12.5,22.5 - parent: 6747 - type: Transform - uid: 7164 components: - pos: 34.5,-48.5 @@ -138298,6 +146885,11 @@ entities: type: Transform - proto: SignToolStorage entities: + - uid: 8407 + components: + - pos: 50.5,14.5 + parent: 6747 + type: Transform - uid: 9069 components: - pos: 56.5,-26.5 @@ -138317,6 +146909,13 @@ entities: - pos: 3.5,-74.5 parent: 6747 type: Transform +- proto: SilverDoor + entities: + - uid: 1113 + components: + - pos: 53.5,7.5 + parent: 6747 + type: Transform - proto: SilverOre1 entities: - uid: 8642 @@ -138419,6 +147018,12 @@ entities: type: Transform - proto: SinkWide entities: + - uid: 8379 + components: + - rot: 3.141592653589793 rad + pos: 6.5,23.5 + parent: 6747 + type: Transform - uid: 8740 components: - rot: 1.5707963267948966 rad @@ -138431,58 +147036,59 @@ entities: pos: -46.5,7.5 parent: 6747 type: Transform -- proto: SMESBasic - entities: - - uid: 2269 + - uid: 11968 components: - - name: AME 1 SMES - type: MetaData - - pos: 19.5,21.5 + - rot: 3.141592653589793 rad + pos: 4.5,23.5 parent: 6747 type: Transform - - uid: 2270 +- proto: SMESBasic + entities: + - uid: 2988 components: - - name: AME 2 SMES + - name: Arena SMES type: MetaData - - pos: 20.5,21.5 + - pos: -43.5,-20.5 parent: 6747 type: Transform - - uid: 2307 + - uid: 4017 components: - - name: AME 3 SMES + - name: Vault SMES type: MetaData - - pos: 27.5,21.5 + - pos: -34.5,-48.5 parent: 6747 type: Transform - - uid: 2988 + - uid: 6280 components: - - pos: -43.5,-20.5 + - pos: 73.5,-7.5 parent: 6747 type: Transform - - uid: 4017 + - uid: 11543 components: - - name: Vault SMES + - name: Backup Medical SMES type: MetaData - - pos: -34.5,-48.5 + - pos: 5.5,-15.5 parent: 6747 type: Transform - - uid: 6280 + - uid: 13445 components: - - pos: 73.5,-7.5 + - name: Main SMES 1 + type: MetaData + - pos: 59.5,23.5 parent: 6747 type: Transform - - uid: 8469 + - uid: 13446 components: - - name: AME 4 SMES + - name: Main SMES 2 type: MetaData - - pos: 28.5,21.5 + - pos: 59.5,22.5 parent: 6747 type: Transform - - uid: 11543 + - uid: 19093 components: - - name: Backup Medical SMES + - name: North Solars SMES type: MetaData - - pos: 5.5,-15.5 + - pos: 32.5,46.5 parent: 6747 type: Transform - uid: 23047 @@ -138501,6 +147107,13 @@ entities: - pos: 16.5,-76.5 parent: 6747 type: Transform + - uid: 8516 + components: + - name: Main SMES 4 + type: MetaData + - pos: 59.5,15.5 + parent: 6747 + type: Transform - uid: 10387 components: - name: South Solars 1 SMES @@ -138508,6 +147121,37 @@ entities: - pos: 15.5,-76.5 parent: 6747 type: Transform + - uid: 11586 + components: + - name: Main SMES 3 + type: MetaData + - pos: 59.5,16.5 + parent: 6747 + type: Transform + - uid: 24017 + components: + - name: East Solars SMES + type: MetaData + - pos: 75.5,18.5 + parent: 6747 + type: Transform +- proto: SMESMachineCircuitboard + entities: + - uid: 7638 + components: + - pos: 73.54711,22.055807 + parent: 6747 + type: Transform + - uid: 11989 + components: + - pos: 73.54711,21.951569 + parent: 6747 + type: Transform + - uid: 19073 + components: + - pos: 48.521034,18.006374 + parent: 6747 + type: Transform - proto: SmokingPipeFilledCannabis entities: - uid: 2214 @@ -138557,244 +147201,49 @@ entities: type: Transform - proto: SolarPanel entities: - - uid: 22613 - components: - - pos: 26.5,52.5 - parent: 6747 - type: Transform - - uid: 22614 - components: - - pos: 20.5,47.5 - parent: 6747 - type: Transform - - uid: 22615 - components: - - pos: 20.5,48.5 - parent: 6747 - type: Transform - - uid: 22616 - components: - - pos: 20.5,49.5 - parent: 6747 - type: Transform - - uid: 22617 - components: - - pos: 20.5,50.5 - parent: 6747 - type: Transform - - uid: 22619 - components: - - pos: 20.5,51.5 - parent: 6747 - type: Transform - - uid: 22621 - components: - - pos: 38.5,47.5 - parent: 6747 - type: Transform - - uid: 22622 - components: - - pos: 22.5,50.5 - parent: 6747 - type: Transform - - uid: 22623 - components: - - pos: 22.5,49.5 - parent: 6747 - type: Transform - - uid: 22624 - components: - - pos: 22.5,48.5 - parent: 6747 - type: Transform - - uid: 22625 - components: - - pos: 24.5,47.5 - parent: 6747 - type: Transform - - uid: 22626 - components: - - pos: 24.5,50.5 - parent: 6747 - type: Transform - - uid: 22627 - components: - - pos: 24.5,51.5 - parent: 6747 - type: Transform - - uid: 22628 - components: - - pos: 24.5,52.5 - parent: 6747 - type: Transform - - uid: 22629 - components: - - pos: 26.5,51.5 - parent: 6747 - type: Transform - - uid: 22630 - components: - - pos: 26.5,50.5 - parent: 6747 - type: Transform - - uid: 22631 - components: - - pos: 26.5,49.5 - parent: 6747 - type: Transform - - uid: 22632 - components: - - pos: 26.5,48.5 - parent: 6747 - type: Transform - - uid: 22633 - components: - - pos: 26.5,47.5 - parent: 6747 - type: Transform - - uid: 22634 - components: - - pos: 28.5,52.5 - parent: 6747 - type: Transform - - uid: 22635 - components: - - pos: 28.5,51.5 - parent: 6747 - type: Transform - - uid: 22636 - components: - - pos: 28.5,50.5 - parent: 6747 - type: Transform - - uid: 22637 - components: - - pos: 28.5,49.5 - parent: 6747 - type: Transform - - uid: 22638 - components: - - pos: 28.5,48.5 - parent: 6747 - type: Transform - - uid: 22639 - components: - - pos: 28.5,47.5 - parent: 6747 - type: Transform - - uid: 22641 - components: - - pos: 44.5,50.5 - parent: 6747 - type: Transform - - uid: 22642 - components: - - pos: 44.5,49.5 - parent: 6747 - type: Transform - - uid: 22643 - components: - - pos: 44.5,48.5 - parent: 6747 - type: Transform - - uid: 22644 - components: - - pos: 44.5,47.5 - parent: 6747 - type: Transform - - uid: 22645 - components: - - pos: 46.5,48.5 - parent: 6747 - type: Transform - - uid: 22646 - components: - - pos: 42.5,50.5 - parent: 6747 - type: Transform - - uid: 22647 - components: - - pos: 42.5,51.5 - parent: 6747 - type: Transform - - uid: 22648 - components: - - pos: 42.5,52.5 - parent: 6747 - type: Transform - - uid: 22649 - components: - - pos: 40.5,48.5 - parent: 6747 - type: Transform - - uid: 22650 - components: - - pos: 40.5,49.5 - parent: 6747 - type: Transform - - uid: 22651 - components: - - pos: 40.5,50.5 - parent: 6747 - type: Transform - - uid: 22652 - components: - - pos: 46.5,47.5 - parent: 6747 - type: Transform - - uid: 22653 - components: - - pos: 38.5,48.5 - parent: 6747 - type: Transform - - uid: 22654 - components: - - pos: 38.5,49.5 - parent: 6747 - type: Transform - - uid: 22655 + - uid: 11501 components: - - pos: 38.5,50.5 + - pos: 38.5,68.5 parent: 6747 type: Transform - - uid: 22656 + - uid: 11503 components: - - pos: 38.5,51.5 + - pos: 40.5,68.5 parent: 6747 type: Transform - - uid: 22657 + - uid: 11504 components: - - pos: 36.5,49.5 + - pos: 43.5,66.5 parent: 6747 type: Transform - - uid: 22658 + - uid: 11509 components: - - pos: 38.5,52.5 + - pos: 39.5,62.5 parent: 6747 type: Transform - - uid: 22659 + - uid: 21807 components: - - pos: 36.5,47.5 + - pos: 40.5,64.5 parent: 6747 type: Transform - - uid: 22660 + - uid: 21821 components: - - pos: 36.5,48.5 + - pos: 43.5,62.5 parent: 6747 type: Transform - - uid: 22661 + - uid: 21824 components: - - pos: 36.5,50.5 + - pos: 42.5,66.5 parent: 6747 type: Transform - - uid: 22662 + - uid: 21923 components: - - pos: 36.5,51.5 + - pos: 41.5,68.5 parent: 6747 type: Transform - - uid: 22663 + - uid: 21924 components: - - pos: 36.5,52.5 + - pos: 39.5,68.5 parent: 6747 type: Transform - uid: 22812 @@ -139187,13 +147636,340 @@ entities: - pos: -68.5,-29.5 parent: 6747 type: Transform -- proto: SolarTracker + - uid: 23803 + components: + - pos: 38.5,54.5 + parent: 6747 + type: Transform + - uid: 23804 + components: + - pos: 39.5,54.5 + parent: 6747 + type: Transform + - uid: 23805 + components: + - pos: 40.5,54.5 + parent: 6747 + type: Transform + - uid: 23806 + components: + - pos: 41.5,54.5 + parent: 6747 + type: Transform + - uid: 23807 + components: + - pos: 42.5,54.5 + parent: 6747 + type: Transform + - uid: 23808 + components: + - pos: 43.5,54.5 + parent: 6747 + type: Transform + - uid: 23809 + components: + - pos: 38.5,56.5 + parent: 6747 + type: Transform + - uid: 23810 + components: + - pos: 39.5,56.5 + parent: 6747 + type: Transform + - uid: 23811 + components: + - pos: 40.5,56.5 + parent: 6747 + type: Transform + - uid: 23812 + components: + - pos: 41.5,56.5 + parent: 6747 + type: Transform + - uid: 23813 + components: + - pos: 42.5,56.5 + parent: 6747 + type: Transform + - uid: 23814 + components: + - pos: 43.5,56.5 + parent: 6747 + type: Transform + - uid: 23815 + components: + - pos: 43.5,58.5 + parent: 6747 + type: Transform + - uid: 23816 + components: + - pos: 41.5,58.5 + parent: 6747 + type: Transform + - uid: 23817 + components: + - pos: 40.5,58.5 + parent: 6747 + type: Transform + - uid: 23818 + components: + - pos: 38.5,60.5 + parent: 6747 + type: Transform + - uid: 23819 + components: + - pos: 39.5,60.5 + parent: 6747 + type: Transform + - uid: 23820 + components: + - pos: 40.5,60.5 + parent: 6747 + type: Transform + - uid: 23824 + components: + - pos: 40.5,62.5 + parent: 6747 + type: Transform + - uid: 25579 + components: + - pos: 86.5,25.5 + parent: 6747 + type: Transform + - uid: 25581 + components: + - pos: 86.5,20.5 + parent: 6747 + type: Transform + - uid: 25582 + components: + - pos: 86.5,21.5 + parent: 6747 + type: Transform + - uid: 25591 + components: + - pos: 86.5,22.5 + parent: 6747 + type: Transform + - uid: 25599 + components: + - pos: 86.5,23.5 + parent: 6747 + type: Transform + - uid: 25601 + components: + - pos: 86.5,24.5 + parent: 6747 + type: Transform + - uid: 25602 + components: + - pos: 88.5,25.5 + parent: 6747 + type: Transform + - uid: 25612 + components: + - pos: 88.5,24.5 + parent: 6747 + type: Transform + - uid: 25613 + components: + - pos: 88.5,23.5 + parent: 6747 + type: Transform + - uid: 25614 + components: + - pos: 88.5,22.5 + parent: 6747 + type: Transform + - uid: 25615 + components: + - pos: 88.5,21.5 + parent: 6747 + type: Transform + - uid: 25616 + components: + - pos: 88.5,20.5 + parent: 6747 + type: Transform + - uid: 25617 + components: + - pos: 86.5,14.5 + parent: 6747 + type: Transform + - uid: 25618 + components: + - pos: 86.5,13.5 + parent: 6747 + type: Transform + - uid: 25619 + components: + - pos: 86.5,12.5 + parent: 6747 + type: Transform + - uid: 25620 + components: + - pos: 86.5,11.5 + parent: 6747 + type: Transform + - uid: 25621 + components: + - pos: 86.5,10.5 + parent: 6747 + type: Transform + - uid: 25622 + components: + - pos: 90.5,14.5 + parent: 6747 + type: Transform + - uid: 25623 + components: + - pos: 90.5,13.5 + parent: 6747 + type: Transform + - uid: 25624 + components: + - pos: 90.5,12.5 + parent: 6747 + type: Transform + - uid: 25625 + components: + - pos: 92.5,15.5 + parent: 6747 + type: Transform + - uid: 25627 + components: + - pos: 92.5,14.5 + parent: 6747 + type: Transform + - uid: 25628 + components: + - pos: 92.5,13.5 + parent: 6747 + type: Transform + - uid: 25632 + components: + - pos: 92.5,10.5 + parent: 6747 + type: Transform +- proto: SolarPanelBroken entities: - - uid: 22640 + - uid: 11506 + components: + - pos: 40.5,66.5 + parent: 6747 + type: Transform + - uid: 11507 + components: + - pos: 38.5,66.5 + parent: 6747 + type: Transform + - uid: 21822 + components: + - pos: 39.5,66.5 + parent: 6747 + type: Transform + - uid: 23821 + components: + - pos: 41.5,66.5 + parent: 6747 + type: Transform + - uid: 23822 + components: + - pos: 43.5,64.5 + parent: 6747 + type: Transform + - uid: 23823 + components: + - pos: 41.5,62.5 + parent: 6747 + type: Transform + - uid: 23870 + components: + - pos: 98.5,25.5 + parent: 6747 + type: Transform + - uid: 25662 + components: + - pos: 98.5,24.5 + parent: 6747 + type: Transform + - uid: 25663 + components: + - pos: 98.5,23.5 + parent: 6747 + type: Transform + - uid: 25664 + components: + - pos: 96.5,24.5 + parent: 6747 + type: Transform + - uid: 25665 + components: + - pos: 96.5,23.5 + parent: 6747 + type: Transform + - uid: 25666 + components: + - pos: 96.5,22.5 + parent: 6747 + type: Transform + - uid: 25667 + components: + - pos: 92.5,21.5 + parent: 6747 + type: Transform + - uid: 25668 + components: + - pos: 92.5,20.5 + parent: 6747 + type: Transform + - uid: 25669 + components: + - pos: 100.5,21.5 + parent: 6747 + type: Transform + - uid: 25670 + components: + - pos: 100.5,14.5 + parent: 6747 + type: Transform + - uid: 25671 + components: + - pos: 100.5,13.5 + parent: 6747 + type: Transform + - uid: 25672 + components: + - pos: 100.5,12.5 + parent: 6747 + type: Transform + - uid: 25673 components: - - pos: 32.5,53.5 + - pos: 100.5,11.5 parent: 6747 type: Transform + - uid: 25674 + components: + - pos: 100.5,10.5 + parent: 6747 + type: Transform + - uid: 25675 + components: + - pos: 96.5,10.5 + parent: 6747 + type: Transform + - uid: 25676 + components: + - pos: 94.5,11.5 + parent: 6747 + type: Transform + - uid: 25677 + components: + - pos: 94.5,13.5 + parent: 6747 + type: Transform +- proto: SolarTracker + entities: - uid: 22878 components: - pos: 8.5,-88.5 @@ -139204,6 +147980,16 @@ entities: - pos: -61.5,-25.5 parent: 6747 type: Transform + - uid: 23302 + components: + - pos: 34.5,71.5 + parent: 6747 + type: Transform + - uid: 25576 + components: + - pos: 103.5,18.5 + parent: 6747 + type: Transform - proto: SophicScribe entities: - uid: 8916 @@ -139224,29 +148010,31 @@ entities: - pos: 15.603168,-54.390507 parent: 6747 type: Transform - - uid: 8265 + - uid: 7641 components: - - pos: 34.744106,25.314743 + - pos: 53.743244,24.715858 parent: 6747 type: Transform - - uid: 8267 + - uid: 11986 components: - - pos: 33.431606,24.512102 + - rot: -1.5707963267948966 rad + pos: 53.211994,26.602585 parent: 6747 type: Transform - - uid: 8268 + - uid: 12618 components: - - pos: 33.431606,24.512102 + - pos: 53.743244,24.715858 parent: 6747 type: Transform - - uid: 8269 + - uid: 12619 components: - - pos: 34.744106,25.314743 + - rot: -1.5707963267948966 rad + pos: 53.211994,26.602585 parent: 6747 type: Transform - - uid: 8270 + - uid: 13444 components: - - pos: 34.744106,25.314743 + - pos: 53.743244,24.715858 parent: 6747 type: Transform - uid: 17421 @@ -139296,6 +148084,18 @@ entities: - pos: -35.471527,-46.481693 parent: 6747 type: Transform +- proto: SpaceCreatureAISpawner + entities: + - uid: 646 + components: + - pos: -40.5,-16.5 + parent: 6747 + type: Transform + - uid: 3245 + components: + - pos: -40.5,-17.5 + parent: 6747 + type: Transform - proto: SpacemenFigureSpawner entities: - uid: 25510 @@ -139325,26 +148125,6 @@ entities: - pos: 28.5,3.5 parent: 6747 type: Transform -- proto: SpawnMobBear - entities: - - uid: 646 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-16.5 - parent: 6747 - type: Transform - - uid: 3245 - components: - - rot: 1.5707963267948966 rad - pos: -40.5,-17.5 - parent: 6747 - type: Transform - - uid: 3646 - components: - - rot: 1.5707963267948966 rad - pos: -38.5,-16.5 - parent: 6747 - type: Transform - proto: SpawnMobCat entities: - uid: 7224 @@ -139402,24 +148182,34 @@ entities: type: Transform - proto: SpawnMobDrone entities: - - uid: 7708 + - uid: 957 components: - - pos: 29.5,31.5 + - pos: 71.5,22.5 parent: 6747 type: Transform - - uid: 7709 + - uid: 7615 components: - - pos: 28.5,31.5 + - pos: 72.5,21.5 parent: 6747 type: Transform - - uid: 7713 + - uid: 7854 components: - - pos: 28.5,33.5 + - pos: 71.5,21.5 parent: 6747 type: Transform - - uid: 8370 + - uid: 8170 components: - - pos: 29.5,33.5 + - pos: 71.5,20.5 + parent: 6747 + type: Transform + - uid: 11144 + components: + - pos: 72.5,22.5 + parent: 6747 + type: Transform + - uid: 11990 + components: + - pos: 72.5,20.5 parent: 6747 type: Transform - proto: SpawnMobFoxRenault @@ -139471,11 +148261,11 @@ entities: - pos: 10.5,-37.5 parent: 6747 type: Transform -- proto: SpawnMobRaccoonMorticia +- proto: SpawnMobSecDogLaika entities: - - uid: 11146 + - uid: 847 components: - - pos: 52.5,27.5 + - pos: -11.5,-5.5 parent: 6747 type: Transform - proto: SpawnMobSlothPaperwork @@ -139485,13 +148275,6 @@ entities: - pos: 31.5,-61.5 parent: 6747 type: Transform -- proto: SpawnMobWalter - entities: - - uid: 1483 - components: - - pos: -11.5,-5.5 - parent: 6747 - type: Transform - proto: SpawnPointAssistant entities: - uid: 6078 @@ -139531,24 +148314,24 @@ entities: type: Transform - proto: SpawnPointAtmos entities: - - uid: 22441 + - uid: 17076 components: - - pos: 46.5,27.5 + - pos: 51.5,28.5 parent: 6747 type: Transform - - uid: 22442 + - uid: 17078 components: - - pos: 36.5,25.5 + - pos: 54.5,24.5 parent: 6747 type: Transform - - uid: 22443 + - uid: 17154 components: - - pos: 38.5,25.5 + - pos: 50.5,24.5 parent: 6747 type: Transform - - uid: 22444 + - uid: 22441 components: - - pos: 47.5,27.5 + - pos: 46.5,27.5 parent: 6747 type: Transform - proto: SpawnPointBartender @@ -139570,6 +148353,11 @@ entities: type: Transform - proto: SpawnPointBorg entities: + - uid: 6895 + components: + - pos: 2.5,-69.5 + parent: 6747 + type: Transform - uid: 7081 components: - pos: -13.5,-57.5 @@ -139580,11 +148368,6 @@ entities: - pos: -13.5,-58.5 parent: 6747 type: Transform - - uid: 25586 - components: - - pos: 20.5,-62.5 - parent: 6747 - type: Transform - uid: 25587 components: - pos: 20.5,-50.5 @@ -139607,6 +148390,13 @@ entities: - pos: -4.5,-17.5 parent: 6747 type: Transform +- proto: SpawnPointBrigmedic + entities: + - uid: 894 + components: + - pos: -28.5,-12.5 + parent: 6747 + type: Transform - proto: SpawnPointCaptain entities: - uid: 4221 @@ -139636,6 +148426,26 @@ entities: - pos: 43.5,-6.5 parent: 6747 type: Transform + - uid: 27027 + components: + - pos: 19.5,26.5 + parent: 6747 + type: Transform + - uid: 27028 + components: + - pos: 12.5,26.5 + parent: 6747 + type: Transform + - uid: 27029 + components: + - pos: 14.5,27.5 + parent: 6747 + type: Transform + - uid: 27030 + components: + - pos: 7.5,23.5 + parent: 6747 + type: Transform - proto: SpawnPointChaplain entities: - uid: 4227 @@ -139823,6 +148633,11 @@ entities: - pos: 4.5,-17.5 parent: 6747 type: Transform + - uid: 7651 + components: + - pos: 37.5,26.5 + parent: 6747 + type: Transform - uid: 9379 components: - pos: -41.5,8.5 @@ -139873,21 +148688,21 @@ entities: - pos: -31.5,17.5 parent: 6747 type: Transform - - uid: 22601 +- proto: SpawnPointMailCarrier + entities: + - uid: 27031 components: - - pos: 57.5,26.5 + - pos: 13.5,28.5 parent: 6747 type: Transform -- proto: SpawnPointMailCarrier - entities: - - uid: 6716 + - uid: 27032 components: - - pos: 42.5,15.5 + - pos: 10.5,26.5 parent: 6747 type: Transform - - uid: 6717 + - uid: 27033 components: - - pos: 38.5,15.5 + - pos: 17.5,24.5 parent: 6747 type: Transform - proto: SpawnPointMedicalDoctor @@ -140032,7 +148847,7 @@ entities: type: Transform - proto: SpawnPointParamedic entities: - - uid: 3476 + - uid: 895 components: - pos: -23.5,-11.5 parent: 6747 @@ -140143,19 +148958,24 @@ entities: type: Transform - proto: SpawnPointSalvageSpecialist entities: + - uid: 331 + components: + - pos: 6.5,29.5 + parent: 6747 + type: Transform - uid: 8518 components: - pos: 10.5,25.5 parent: 6747 type: Transform - - uid: 23492 + - uid: 13330 components: - - pos: 11.5,25.5 + - pos: 3.5,23.5 parent: 6747 type: Transform - - uid: 23493 + - uid: 27026 components: - - pos: 10.5,26.5 + - pos: 4.5,26.5 parent: 6747 type: Transform - proto: SpawnPointScientist @@ -140180,9 +149000,9 @@ entities: - pos: 25.5,-55.5 parent: 6747 type: Transform - - uid: 22433 + - uid: 26889 components: - - pos: 24.5,-54.5 + - pos: 25.5,-56.5 parent: 6747 type: Transform - proto: SpawnPointSecurityCadet @@ -140263,11 +149083,6 @@ entities: type: Transform - proto: SpawnPointStationEngineer entities: - - uid: 8515 - components: - - pos: 27.5,14.5 - parent: 6747 - type: Transform - uid: 8728 components: - pos: 47.5,-24.5 @@ -140283,36 +149098,71 @@ entities: - pos: 49.5,-25.5 parent: 6747 type: Transform -- proto: SpawnPointTechnicalAssistant - entities: - - uid: 23908 + - uid: 18892 components: - - pos: 25.5,11.5 + - pos: 51.5,26.5 parent: 6747 type: Transform - - uid: 23998 + - uid: 18893 components: - - pos: 25.5,10.5 + - pos: 54.5,28.5 parent: 6747 type: Transform - - uid: 24254 + - uid: 18894 components: - - pos: 26.5,11.5 + - pos: 52.5,27.5 parent: 6747 type: Transform - - uid: 25500 + - uid: 18895 components: - - pos: 26.5,10.5 + - pos: 52.5,28.5 parent: 6747 type: Transform - - uid: 25527 + - uid: 18896 components: - - pos: 27.5,11.5 + - pos: 55.5,27.5 parent: 6747 type: Transform - - uid: 25528 + - uid: 18897 components: - - pos: 27.5,10.5 + - pos: 51.5,24.5 + parent: 6747 + type: Transform + - uid: 18983 + components: + - pos: 43.5,17.5 + parent: 6747 + type: Transform + - uid: 18984 + components: + - pos: 42.5,15.5 + parent: 6747 + type: Transform + - uid: 18986 + components: + - pos: 44.5,15.5 + parent: 6747 + type: Transform +- proto: SpawnPointTechnicalAssistant + entities: + - uid: 18987 + components: + - pos: 41.5,11.5 + parent: 6747 + type: Transform + - uid: 18988 + components: + - pos: 41.5,10.5 + parent: 6747 + type: Transform + - uid: 18989 + components: + - pos: 40.5,11.5 + parent: 6747 + type: Transform + - uid: 19000 + components: + - pos: 40.5,10.5 parent: 6747 type: Transform - uid: 25529 @@ -140349,19 +149199,19 @@ entities: - pos: 43.5,6.5 parent: 6747 type: Transform - - uid: 6634 + - uid: 7708 components: - - pos: 39.5,18.5 + - pos: 15.5,13.5 parent: 6747 type: Transform - - uid: 23575 + - uid: 8397 components: - - pos: 22.5,15.5 + - pos: 17.5,13.5 parent: 6747 type: Transform - - uid: 23576 + - uid: 11953 components: - - pos: 22.5,14.5 + - pos: 16.5,13.5 parent: 6747 type: Transform - proto: SpawnVehicleJanicart @@ -140395,19 +149245,19 @@ entities: type: Transform - proto: SpawnVendingMachineRestockFoodDrink entities: - - uid: 6910 + - uid: 8327 components: - - pos: 51.5,6.5 + - pos: 16.5,29.5 parent: 6747 type: Transform - - uid: 6911 + - uid: 8617 components: - - pos: 50.5,6.5 + - pos: 18.5,28.5 parent: 6747 type: Transform - - uid: 6912 + - uid: 8648 components: - - pos: 50.5,7.5 + - pos: 16.5,28.5 parent: 6747 type: Transform - proto: SprayBottle @@ -140437,6 +149287,14 @@ entities: - pos: 19.5,-29.5 parent: 6747 type: Transform +- proto: StasisBedMachineCircuitboard + entities: + - uid: 17751 + components: + - rot: -1.5707963267948966 rad + pos: 74.67728,9.580869 + parent: 6747 + type: Transform - proto: StationMap entities: - uid: 6814 @@ -140456,6 +149314,17 @@ entities: - pos: 16.5,-40.5 parent: 6747 type: Transform + - uid: 26661 + components: + - pos: 32.5,12.5 + parent: 6747 + type: Transform + - uid: 26667 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-13.5 + parent: 6747 + type: Transform - proto: StationMapCircuitboard entities: - uid: 7394 @@ -140464,18 +149333,58 @@ entities: pos: 3.5071468,-14.627492 parent: 6747 type: Transform +- proto: StationRecordsComputerCircuitboard + entities: + - uid: 17738 + components: + - rot: 1.5707963267948966 rad + pos: 70.37519,6.6204796 + parent: 6747 + type: Transform - proto: StatueVenusBlue entities: - uid: 10493 components: - - pos: -0.5,-48.5 + - pos: -0.5,-47.5 parent: 6747 type: Transform - proto: StatueVenusRed entities: - - uid: 4034 + - uid: 10492 components: - - pos: -0.5,-40.5 + - pos: -0.5,-41.5 + parent: 6747 + type: Transform +- proto: SteelBench + entities: + - uid: 3295 + components: + - pos: 44.5,15.5 + parent: 6747 + type: Transform + - uid: 6709 + components: + - pos: 42.5,17.5 + parent: 6747 + type: Transform + - uid: 6710 + components: + - pos: 44.5,17.5 + parent: 6747 + type: Transform + - uid: 6711 + components: + - pos: 43.5,17.5 + parent: 6747 + type: Transform + - uid: 6714 + components: + - pos: 43.5,15.5 + parent: 6747 + type: Transform + - uid: 11819 + components: + - pos: 42.5,15.5 parent: 6747 type: Transform - proto: Stool @@ -140590,6 +149499,11 @@ entities: - pos: 22.5,-60.5 parent: 6747 type: Transform + - uid: 7669 + components: + - pos: 61.5,25.5 + parent: 6747 + type: Transform - uid: 7788 components: - pos: 44.5,42.5 @@ -140610,21 +149524,11 @@ entities: - pos: 33.5,32.5 parent: 6747 type: Transform - - uid: 8190 - components: - - pos: 33.5,31.5 - parent: 6747 - type: Transform - uid: 8191 components: - pos: 33.5,30.5 parent: 6747 type: Transform - - uid: 11135 - components: - - pos: 52.5,23.5 - parent: 6747 - type: Transform - uid: 11259 components: - pos: 4.5,-91.5 @@ -140645,8 +149549,43 @@ entities: - pos: -49.5,-5.5 parent: 6747 type: Transform + - uid: 16210 + components: + - pos: 10.5,-20.5 + parent: 6747 + type: Transform + - uid: 26917 + components: + - pos: 10.5,-19.5 + parent: 6747 + type: Transform - proto: StrangePill entities: + - uid: 20202 + components: + - pos: 4.660206,-61.604343 + parent: 6747 + type: Transform + - uid: 20203 + components: + - pos: 4.535206,-61.583496 + parent: 6747 + type: Transform + - uid: 20204 + components: + - pos: 5.264373,-60.541103 + parent: 6747 + type: Transform + - uid: 20205 + components: + - pos: 4.52479,-60.916367 + parent: 6747 + type: Transform + - uid: 20206 + components: + - pos: 4.660206,-61.45841 + parent: 6747 + type: Transform - uid: 20421 components: - pos: 30.149181,-9.032895 @@ -140710,25 +149649,11 @@ entities: - pos: -49.5,-42.5 parent: 6747 type: Transform - - uid: 5780 - components: - - name: Salvage substation - type: MetaData - - pos: 30.5,22.5 - parent: 6747 - type: Transform - - uid: 10377 - components: - - name: Atmospherics substation - type: MetaData - - pos: 32.5,20.5 - parent: 6747 - type: Transform - - uid: 10378 + - uid: 8053 components: - - name: Engine Room substation + - name: Engineering substation type: MetaData - - pos: 32.5,22.5 + - pos: 57.5,15.5 parent: 6747 type: Transform - uid: 10385 @@ -140780,18 +149705,32 @@ entities: - pos: 12.5,4.5 parent: 6747 type: Transform - - uid: 17610 + - uid: 18239 components: - - name: Engineering/Cargo substation + - name: HoP substation type: MetaData - - pos: 30.5,20.5 + - pos: 55.5,-35.5 parent: 6747 type: Transform - - uid: 18239 + - uid: 22652 components: - - name: HoP substation + - name: Logistics substation type: MetaData - - pos: 55.5,-35.5 + - pos: 33.5,37.5 + parent: 6747 + type: Transform + - uid: 26196 + components: + - name: Atmos substation + type: MetaData + - pos: 57.5,23.5 + parent: 6747 + type: Transform + - uid: 26500 + components: + - name: Gravity and Telecomms substation + type: MetaData + - pos: 64.5,9.5 parent: 6747 type: Transform - proto: SubstationBasicEmpty @@ -140808,6 +149747,22 @@ entities: - pos: 5.5607758,-14.455768 parent: 6747 type: Transform + - uid: 19074 + components: + - pos: 57.06699,9.7523985 + parent: 6747 + type: Transform + - uid: 19075 + components: + - pos: 57.06699,9.637735 + parent: 6747 + type: Transform + - uid: 19076 + components: + - rot: -1.5707963267948966 rad + pos: 51.73348,8.584921 + parent: 6747 + type: Transform - proto: SubstationWallBasic entities: - uid: 6281 @@ -140816,6 +149771,25 @@ entities: pos: 73.5,-6.5 parent: 6747 type: Transform +- proto: SuitStorageBasic + entities: + - uid: 8495 + components: + - pos: 21.5,29.5 + parent: 6747 + type: Transform +- proto: SuitStorageEngi + entities: + - uid: 7083 + components: + - pos: 12.5,-77.5 + parent: 6747 + type: Transform + - uid: 7486 + components: + - pos: 34.5,40.5 + parent: 6747 + type: Transform - proto: SuitStorageEVAPrisoner entities: - uid: 2767 @@ -141060,204 +150034,138 @@ entities: nameSet: True id: Server Room type: SurveillanceCamera -- proto: SurveillanceCameraEngineering - entities: - - uid: 11836 - components: - - rot: 3.141592653589793 rad - pos: 9.5,35.5 - parent: 6747 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Salvage Processing - type: SurveillanceCamera - - uid: 11837 - components: - - pos: 44.5,30.5 - parent: 6747 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Atmospherics - type: SurveillanceCamera - - uid: 11838 - components: - - rot: 1.5707963267948966 rad - pos: 14.5,25.5 - parent: 6747 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Salvage Lounge - type: SurveillanceCamera - - uid: 11839 - components: - - rot: 3.141592653589793 rad - pos: 18.5,29.5 - parent: 6747 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Salvage Storage Garage - type: SurveillanceCamera - - uid: 11840 + - uid: 23874 components: - rot: -1.5707963267948966 rad - pos: 16.5,33.5 - parent: 6747 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Gravity Generator - type: SurveillanceCamera - - uid: 11841 - components: - - rot: 1.5707963267948966 rad - pos: 19.5,41.5 + pos: 59.5,7.5 parent: 6747 type: Transform - setupAvailableNetworks: - - SurveillanceCameraEngineering - id: Top Secret Experimental Power Generation - type: SurveillanceCamera - - uid: 11842 - components: - - rot: 3.141592653589793 rad - pos: 28.5,43.5 - parent: 6747 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering + - SurveillanceCameraCommand nameSet: True - id: Engine Room + id: telecomms type: SurveillanceCamera - - uid: 11843 + - uid: 23875 components: - rot: 3.141592653589793 rad - pos: 36.5,28.5 + pos: 68.5,9.5 parent: 6747 type: Transform - setupAvailableNetworks: - - SurveillanceCameraEngineering + - SurveillanceCameraCommand nameSet: True - id: Engineering Lounge + id: gravity generator type: SurveillanceCamera - - uid: 12027 +- proto: SurveillanceCameraEngineering + entities: + - uid: 11837 components: - - rot: 3.141592653589793 rad - pos: 26.5,28.5 + - pos: 44.5,30.5 parent: 6747 type: Transform - setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: Engineering Crossway + id: Atmospherics type: SurveillanceCamera - - uid: 12029 + - uid: 12983 components: - - rot: 3.141592653589793 rad - pos: 26.5,22.5 + - pos: -1.5,32.5 parent: 6747 type: Transform - setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: Battery Room + id: Salvage Bay type: SurveillanceCamera - - uid: 12030 + - uid: 23872 components: - - rot: 3.141592653589793 rad - pos: 17.5,15.5 + - rot: 1.5707963267948966 rad + pos: 48.5,10.5 parent: 6747 type: Transform - setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: CE Office + id: engineering type: SurveillanceCamera - - uid: 12031 + - uid: 23873 components: - - rot: 3.141592653589793 rad - pos: 21.5,18.5 + - pos: 54.5,15.5 parent: 6747 type: Transform - setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: Engineering Entrance + id: engineering tool room type: SurveillanceCamera - - uid: 12032 + - uid: 23877 components: - rot: 3.141592653589793 rad - pos: 29.5,18.5 + pos: 70.5,18.5 parent: 6747 type: Transform - setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: Engineering Front Office + id: AME type: SurveillanceCamera - - uid: 12983 + - uid: 23878 components: - - pos: -1.5,32.5 + - rot: 1.5707963267948966 rad + pos: 63.5,20.5 parent: 6747 type: Transform - setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: Salvage Bay + id: SMES Room type: SurveillanceCamera - - uid: 15443 + - uid: 23879 components: - - rot: 3.141592653589793 rad - pos: 29.5,34.5 + - rot: -1.5707963267948966 rad + pos: 57.5,29.5 parent: 6747 type: Transform - setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: Drone Lab + id: TEG type: SurveillanceCamera - - uid: 16708 + - uid: 23880 components: - - rot: 3.141592653589793 rad - pos: 24.5,11.5 + - rot: -1.5707963267948966 rad + pos: 50.5,26.5 parent: 6747 type: Transform - setupAvailableNetworks: - SurveillanceCameraEngineering nameSet: True - id: Engineering Exterior + id: Engineering break room type: SurveillanceCamera - - uid: 17607 +- proto: SurveillanceCameraGeneral + entities: + - uid: 6186 components: - - rot: 3.141592653589793 rad - pos: 10.5,22.5 + - rot: 1.5707963267948966 rad + pos: 75.5,-23.5 parent: 6747 type: Transform - setupAvailableNetworks: - - SurveillanceCameraEngineering + - SurveillanceCameraGeneral nameSet: True - id: telecomms camera + id: Pods type: SurveillanceCamera -- proto: SurveillanceCameraGeneral - entities: - - uid: 6186 + - uid: 12022 components: - rot: 1.5707963267948966 rad - pos: 75.5,-23.5 + pos: 41.5,8.5 parent: 6747 type: Transform - setupAvailableNetworks: - SurveillanceCameraGeneral nameSet: True - id: Pods + id: engineering hallway type: SurveillanceCamera - uid: 14976 components: @@ -141323,16 +150231,27 @@ entities: nameSet: True id: Evac type: SurveillanceCamera + - uid: 16686 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-23.5 + parent: 6747 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: food court + type: SurveillanceCamera - uid: 16700 components: - rot: 3.141592653589793 rad - pos: 3.5,-41.5 + pos: -5.5,-36.5 parent: 6747 type: Transform - setupAvailableNetworks: - SurveillanceCameraGeneral nameSet: True - id: Courtroom Exterior + id: South service hall type: SurveillanceCamera - uid: 16701 components: @@ -141388,27 +150307,37 @@ entities: nameSet: True id: Central Courtyard type: SurveillanceCamera - - uid: 16707 + - uid: 16709 components: - - rot: -1.5707963267948966 rad - pos: 37.5,8.5 + - rot: 3.141592653589793 rad + pos: 9.5,-8.5 parent: 6747 type: Transform - setupAvailableNetworks: - SurveillanceCameraGeneral nameSet: True - id: Cargo Exterior + id: Upper Common Hall type: SurveillanceCamera - - uid: 16709 + - uid: 23869 + components: + - pos: -12.5,-12.5 + parent: 6747 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: North service hall + type: SurveillanceCamera + - uid: 23871 components: - rot: 3.141592653589793 rad - pos: 9.5,-8.5 + pos: 23.5,11.5 parent: 6747 type: Transform - setupAvailableNetworks: - SurveillanceCameraGeneral nameSet: True - id: Upper Common Hall + id: logistics hall type: SurveillanceCamera - proto: SurveillanceCameraMedical entities: @@ -141465,17 +150394,6 @@ entities: nameSet: True id: Chemlab type: SurveillanceCamera - - uid: 16663 - components: - - rot: -1.5707963267948966 rad - pos: 15.5,-24.5 - parent: 6747 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Medbay Diagnosis - type: SurveillanceCamera - uid: 16664 components: - rot: -1.5707963267948966 rad @@ -141508,6 +150426,28 @@ entities: nameSet: True id: Medbay Breakroom type: SurveillanceCamera + - uid: 26890 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-24.5 + parent: 6747 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: exam room + type: SurveillanceCamera + - uid: 26899 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-24.5 + parent: 6747 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: chem lab + type: SurveillanceCamera - proto: SurveillanceCameraMonitorCircuitboard entities: - uid: 22407 @@ -141803,61 +150743,84 @@ entities: nameSet: True id: Xeno Containment-(Cell 6) type: SurveillanceCamera - - uid: 16686 + - uid: 23863 components: - - rot: 1.5707963267948966 rad - pos: 2.5,-37.5 + - rot: -1.5707963267948966 rad + pos: -48.5,0.5 parent: 6747 type: Transform - setupAvailableNetworks: - SurveillanceCameraSecurity nameSet: True - id: Security Checkpoint + id: perma type: SurveillanceCamera -- proto: SurveillanceCameraService - entities: - - uid: 11835 + - uid: 23864 components: - - rot: 3.141592653589793 rad - pos: 18.5,-0.5 + - rot: -1.5707963267948966 rad + pos: -38.5,4.5 parent: 6747 type: Transform - setupAvailableNetworks: - - SurveillanceCameraService + - SurveillanceCameraSecurity nameSet: True - id: Service Lounge + id: firing range type: SurveillanceCamera - - uid: 12028 + - uid: 23865 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,6.5 + parent: 6747 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: armory + type: SurveillanceCamera + - uid: 23866 components: - rot: 3.141592653589793 rad - pos: 49.5,13.5 + pos: -28.5,-0.5 parent: 6747 type: Transform - setupAvailableNetworks: - - SurveillanceCameraService + - SurveillanceCameraSecurity nameSet: True - id: Cargo + id: sec 2 type: SurveillanceCamera - - uid: 12033 + - uid: 23867 components: - - rot: -1.5707963267948966 rad - pos: 57.5,17.5 + - rot: 1.5707963267948966 rad + pos: -22.5,3.5 parent: 6747 type: Transform - setupAvailableNetworks: - - SurveillanceCameraService + - SurveillanceCameraSecurity nameSet: True - id: Cargo Break Room + id: holding cells type: SurveillanceCamera - - uid: 12034 + - uid: 23868 components: - - pos: 43.5,15.5 + - rot: 1.5707963267948966 rad + pos: 0.5,1.5 + parent: 6747 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: sec 1 + type: SurveillanceCamera +- proto: SurveillanceCameraService + entities: + - uid: 11835 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-0.5 parent: 6747 type: Transform - setupAvailableNetworks: - SurveillanceCameraService nameSet: True - id: Mailroom + id: Service Lounge type: SurveillanceCamera - uid: 12984 components: @@ -141902,6 +150865,41 @@ entities: nameSet: True id: HOP Exterior type: SurveillanceCamera +- proto: SurveillanceCameraSupply + entities: + - uid: 23881 + components: + - rot: 3.141592653589793 rad + pos: 28.5,18.5 + parent: 6747 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Logistics + type: SurveillanceCamera + - uid: 23882 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,30.5 + parent: 6747 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: cargo dock + type: SurveillanceCamera + - uid: 23883 + components: + - rot: 3.141592653589793 rad + pos: 14.5,28.5 + parent: 6747 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: logistics break room + type: SurveillanceCamera - proto: SurveillanceCameraWirelessRouterEntertainment entities: - uid: 918 @@ -141909,6 +150907,14 @@ entities: - pos: 34.5,-53.5 parent: 6747 type: Transform +- proto: SurveillanceWirelessCameraAnchoredCircuitboard + entities: + - uid: 17750 + components: + - rot: -1.5707963267948966 rad + pos: 72.666855,8.580174 + parent: 6747 + type: Transform - proto: SurveillanceWirelessCameraAnchoredEntertainment entities: - uid: 1888 @@ -141970,6 +150976,14 @@ entities: nameSet: True id: Reporter 2 type: SurveillanceCamera +- proto: SurvivalKnife + entities: + - uid: 6510 + components: + - rot: -1.5707963267948966 rad + pos: 13.459588,27.112274 + parent: 6747 + type: Transform - proto: Syringe entities: - uid: 4380 @@ -142005,6 +151019,27 @@ entities: type: Transform - proto: Table entities: + - uid: 810 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,15.5 + parent: 6747 + type: Transform + - uid: 920 + components: + - pos: 35.5,17.5 + parent: 6747 + type: Transform + - uid: 921 + components: + - pos: 34.5,18.5 + parent: 6747 + type: Transform + - uid: 927 + components: + - pos: 31.5,18.5 + parent: 6747 + type: Transform - uid: 1708 components: - pos: -21.5,-15.5 @@ -142166,52 +151201,18 @@ entities: type: Transform - uid: 6648 components: - - pos: 47.5,18.5 - parent: 6747 - type: Transform - - uid: 6649 - components: - - pos: 48.5,18.5 - parent: 6747 - type: Transform - - uid: 6650 - components: - - pos: 45.5,18.5 - parent: 6747 - type: Transform - - uid: 6651 - components: - - pos: 44.5,18.5 - parent: 6747 - type: Transform - - uid: 6652 - components: - - pos: 44.5,15.5 - parent: 6747 - type: Transform - - uid: 6655 - components: - - pos: 48.5,15.5 - parent: 6747 - type: Transform - - uid: 6656 - components: - - pos: 46.5,15.5 - parent: 6747 - type: Transform - - uid: 6891 - components: - - pos: 57.5,18.5 + - rot: 1.5707963267948966 rad + pos: 29.5,15.5 parent: 6747 type: Transform - - uid: 6892 + - uid: 6761 components: - - pos: 57.5,17.5 + - pos: 35.5,18.5 parent: 6747 type: Transform - - uid: 6893 + - uid: 6867 components: - - pos: 58.5,18.5 + - pos: 32.5,18.5 parent: 6747 type: Transform - uid: 7165 @@ -142229,21 +151230,6 @@ entities: - pos: 45.5,-25.5 parent: 6747 type: Transform - - uid: 7850 - components: - - pos: 37.5,28.5 - parent: 6747 - type: Transform - - uid: 7852 - components: - - pos: 38.5,27.5 - parent: 6747 - type: Transform - - uid: 7857 - components: - - pos: 38.5,28.5 - parent: 6747 - type: Transform - uid: 8832 components: - pos: -31.5,-55.5 @@ -142359,11 +151345,6 @@ entities: - pos: -22.5,-69.5 parent: 6747 type: Transform - - uid: 22536 - components: - - pos: 28.5,38.5 - parent: 6747 - type: Transform - proto: TableCarpet entities: - uid: 792 @@ -142401,24 +151382,44 @@ entities: - pos: 42.5,-58.5 parent: 6747 type: Transform - - uid: 7484 + - uid: 8046 components: - - pos: 33.5,24.5 + - pos: 53.5,24.5 parent: 6747 type: Transform - - uid: 7486 + - uid: 8047 components: - - pos: 34.5,25.5 + - pos: 53.5,26.5 parent: 6747 type: Transform - - uid: 7491 + - uid: 8062 components: - - pos: 33.5,25.5 + - pos: 52.5,25.5 parent: 6747 type: Transform - - uid: 7615 + - uid: 8063 components: - - pos: 34.5,24.5 + - pos: 52.5,24.5 + parent: 6747 + type: Transform + - uid: 8064 + components: + - pos: 53.5,25.5 + parent: 6747 + type: Transform + - uid: 8265 + components: + - pos: 52.5,26.5 + parent: 6747 + type: Transform + - uid: 8454 + components: + - pos: 13.5,27.5 + parent: 6747 + type: Transform + - uid: 8455 + components: + - pos: 13.5,26.5 parent: 6747 type: Transform - uid: 8633 @@ -142509,6 +151510,11 @@ entities: type: Transform - proto: TableCounterMetal entities: + - uid: 234 + components: + - pos: -24.5,5.5 + parent: 6747 + type: Transform - uid: 297 components: - pos: 14.5,-24.5 @@ -142534,11 +151540,6 @@ entities: - pos: 0.5,2.5 parent: 6747 type: Transform - - uid: 837 - components: - - pos: 26.5,12.5 - parent: 6747 - type: Transform - uid: 1121 components: - pos: 42.5,11.5 @@ -142566,6 +151567,11 @@ entities: pos: -22.5,-29.5 parent: 6747 type: Transform + - uid: 1391 + components: + - pos: -24.5,8.5 + parent: 6747 + type: Transform - uid: 1480 components: - rot: 3.141592653589793 rad @@ -142623,6 +151629,16 @@ entities: - pos: 25.5,-24.5 parent: 6747 type: Transform + - uid: 2164 + components: + - pos: 27.5,14.5 + parent: 6747 + type: Transform + - uid: 2172 + components: + - pos: 30.5,13.5 + parent: 6747 + type: Transform - uid: 2648 components: - pos: -9.5,-26.5 @@ -142655,20 +151671,7 @@ entities: type: Transform - uid: 2933 components: - - rot: 3.141592653589793 rad - pos: -19.5,0.5 - parent: 6747 - type: Transform - - uid: 2935 - components: - - rot: 3.141592653589793 rad - pos: -25.5,0.5 - parent: 6747 - type: Transform - - uid: 2970 - components: - - rot: 3.141592653589793 rad - pos: -22.5,0.5 + - pos: -24.5,2.5 parent: 6747 type: Transform - uid: 3869 @@ -142676,11 +151679,6 @@ entities: - pos: -38.5,0.5 parent: 6747 type: Transform - - uid: 3902 - components: - - pos: 50.5,14.5 - parent: 6747 - type: Transform - uid: 5888 components: - pos: -8.5,-13.5 @@ -142696,9 +151694,20 @@ entities: - pos: 59.5,-48.5 parent: 6747 type: Transform - - uid: 6595 + - uid: 6635 components: - - pos: 38.5,14.5 + - rot: 1.5707963267948966 rad + pos: 27.5,22.5 + parent: 6747 + type: Transform + - uid: 6886 + components: + - pos: 55.5,24.5 + parent: 6747 + type: Transform + - uid: 8065 + components: + - pos: 55.5,23.5 parent: 6747 type: Transform - uid: 8288 @@ -142706,6 +151715,11 @@ entities: - pos: 55.5,-24.5 parent: 6747 type: Transform + - uid: 8386 + components: + - pos: 14.5,30.5 + parent: 6747 + type: Transform - uid: 14665 components: - pos: -7.5,-13.5 @@ -142956,6 +151970,22 @@ entities: - pos: 25.5,-38.5 parent: 6747 type: Transform + - uid: 8066 + components: + - pos: 50.5,28.5 + parent: 6747 + type: Transform + - uid: 8067 + components: + - rot: -1.5707963267948966 rad + pos: 53.5,28.5 + parent: 6747 + type: Transform + - uid: 8704 + components: + - pos: 16.5,22.5 + parent: 6747 + type: Transform - uid: 8819 components: - pos: 22.5,2.5 @@ -142991,6 +152021,17 @@ entities: - pos: 2.5,-65.5 parent: 6747 type: Transform + - uid: 13278 + components: + - pos: 57.5,27.5 + parent: 6747 + type: Transform + - uid: 13280 + components: + - rot: -1.5707963267948966 rad + pos: 57.5,28.5 + parent: 6747 + type: Transform - uid: 15048 components: - pos: -60.5,1.5 @@ -143051,6 +152092,22 @@ entities: - pos: -60.5,4.5 parent: 6747 type: Transform + - uid: 16170 + components: + - rot: 3.141592653589793 rad + pos: -18.5,7.5 + parent: 6747 + type: Transform + - uid: 17758 + components: + - pos: 56.5,9.5 + parent: 6747 + type: Transform + - uid: 17759 + components: + - pos: 57.5,9.5 + parent: 6747 + type: Transform - uid: 17817 components: - pos: 25.5,-2.5 @@ -143066,11 +152123,6 @@ entities: - pos: -27.5,-82.5 parent: 6747 type: Transform - - uid: 22571 - components: - - pos: 20.5,-58.5 - parent: 6747 - type: Transform - uid: 23546 components: - rot: -1.5707963267948966 rad @@ -143134,6 +152186,11 @@ entities: - pos: 55.5,-42.5 parent: 6747 type: Transform + - uid: 26888 + components: + - pos: 3.5,-70.5 + parent: 6747 + type: Transform - proto: TablePlasmaGlass entities: - uid: 4020 @@ -143228,46 +152285,6 @@ entities: - pos: -28.5,1.5 parent: 6747 type: Transform - - uid: 838 - components: - - pos: 28.5,13.5 - parent: 6747 - type: Transform - - uid: 839 - components: - - pos: 25.5,13.5 - parent: 6747 - type: Transform - - uid: 841 - components: - - pos: 24.5,13.5 - parent: 6747 - type: Transform - - uid: 867 - components: - - pos: 27.5,13.5 - parent: 6747 - type: Transform - - uid: 869 - components: - - pos: 28.5,15.5 - parent: 6747 - type: Transform - - uid: 870 - components: - - pos: 27.5,15.5 - parent: 6747 - type: Transform - - uid: 876 - components: - - pos: 32.5,18.5 - parent: 6747 - type: Transform - - uid: 878 - components: - - pos: 31.5,18.5 - parent: 6747 - type: Transform - uid: 1074 components: - pos: -1.5,39.5 @@ -143328,11 +152345,6 @@ entities: - pos: -5.5,-4.5 parent: 6747 type: Transform - - uid: 2266 - components: - - pos: 32.5,17.5 - parent: 6747 - type: Transform - uid: 2786 components: - pos: -24.5,-33.5 @@ -143522,14 +152534,24 @@ entities: - pos: 72.5,-6.5 parent: 6747 type: Transform - - uid: 6906 + - uid: 6600 components: - - pos: 44.5,10.5 + - pos: 48.5,16.5 parent: 6747 type: Transform - - uid: 6907 + - uid: 6698 components: - - pos: 45.5,10.5 + - pos: 48.5,17.5 + parent: 6747 + type: Transform + - uid: 6706 + components: + - pos: 47.5,18.5 + parent: 6747 + type: Transform + - uid: 6707 + components: + - pos: 46.5,18.5 parent: 6747 type: Transform - uid: 6908 @@ -143542,14 +152564,9 @@ entities: - pos: 46.5,11.5 parent: 6747 type: Transform - - uid: 7060 - components: - - pos: 55.5,6.5 - parent: 6747 - type: Transform - - uid: 7061 + - uid: 7491 components: - - pos: 54.5,6.5 + - pos: 49.5,23.5 parent: 6747 type: Transform - uid: 7510 @@ -143564,39 +152581,21 @@ entities: pos: -52.5,3.5 parent: 6747 type: Transform - - uid: 8251 - components: - - pos: 17.5,13.5 - parent: 6747 - type: Transform - - uid: 8252 - components: - - pos: 16.5,13.5 - parent: 6747 - type: Transform - - uid: 8253 - components: - - pos: 15.5,13.5 - parent: 6747 - type: Transform - - uid: 8271 - components: - - pos: 14.5,19.5 - parent: 6747 - type: Transform - - uid: 8272 + - uid: 7625 components: - - pos: 13.5,19.5 + - pos: 48.5,18.5 parent: 6747 type: Transform - - uid: 8273 + - uid: 7710 components: - - pos: 13.5,18.5 + - rot: 3.141592653589793 rad + pos: 17.5,15.5 parent: 6747 type: Transform - - uid: 8274 + - uid: 8345 components: - - pos: 13.5,17.5 + - rot: 3.141592653589793 rad + pos: 16.5,15.5 parent: 6747 type: Transform - uid: 8365 @@ -143604,19 +152603,21 @@ entities: - pos: 27.5,34.5 parent: 6747 type: Transform - - uid: 8367 + - uid: 8396 components: - - pos: 29.5,34.5 + - rot: 3.141592653589793 rad + pos: 18.5,15.5 parent: 6747 type: Transform - - uid: 8368 + - uid: 8469 components: - - pos: 30.5,34.5 + - rot: 3.141592653589793 rad + pos: 15.5,15.5 parent: 6747 type: Transform - - uid: 8369 + - uid: 8478 components: - - pos: 30.5,33.5 + - pos: 46.5,9.5 parent: 6747 type: Transform - uid: 8627 @@ -143704,11 +152705,26 @@ entities: - pos: -44.5,-3.5 parent: 6747 type: Transform + - uid: 11131 + components: + - pos: 73.5,21.5 + parent: 6747 + type: Transform - uid: 11641 components: - pos: -4.5,-84.5 parent: 6747 type: Transform + - uid: 12023 + components: + - pos: 73.5,22.5 + parent: 6747 + type: Transform + - uid: 12028 + components: + - pos: 73.5,20.5 + parent: 6747 + type: Transform - uid: 12208 components: - rot: -1.5707963267948966 rad @@ -143758,6 +152774,46 @@ entities: - pos: -46.5,-39.5 parent: 6747 type: Transform + - uid: 17251 + components: + - pos: 65.5,17.5 + parent: 6747 + type: Transform + - uid: 17252 + components: + - pos: 65.5,18.5 + parent: 6747 + type: Transform + - uid: 17257 + components: + - pos: 66.5,18.5 + parent: 6747 + type: Transform + - uid: 17258 + components: + - pos: 67.5,18.5 + parent: 6747 + type: Transform + - uid: 17260 + components: + - pos: 68.5,18.5 + parent: 6747 + type: Transform + - uid: 17760 + components: + - pos: 55.5,6.5 + parent: 6747 + type: Transform + - uid: 17761 + components: + - pos: 54.5,6.5 + parent: 6747 + type: Transform + - uid: 22650 + components: + - pos: 33.5,38.5 + parent: 6747 + type: Transform - uid: 23043 components: - pos: -56.5,-25.5 @@ -143901,14 +152957,19 @@ entities: - pos: 10.5,-25.5 parent: 6747 type: Transform - - uid: 8208 + - uid: 11116 components: - - pos: 48.5,27.5 + - pos: 27.5,-76.5 parent: 6747 type: Transform - - uid: 11116 + - uid: 14918 components: - - pos: 27.5,-76.5 + - pos: 10.5,-17.5 + parent: 6747 + type: Transform + - uid: 16209 + components: + - pos: 11.5,-17.5 parent: 6747 type: Transform - uid: 16820 @@ -143917,6 +152978,11 @@ entities: pos: 19.5,-49.5 parent: 6747 type: Transform + - uid: 17607 + components: + - pos: 48.5,26.5 + parent: 6747 + type: Transform - uid: 23600 components: - pos: -22.5,-50.5 @@ -143996,6 +153062,16 @@ entities: - pos: -11.5,-4.5 parent: 6747 type: Transform + - uid: 826 + components: + - pos: 32.5,14.5 + parent: 6747 + type: Transform + - uid: 827 + components: + - pos: 31.5,14.5 + parent: 6747 + type: Transform - uid: 1246 components: - pos: -9.5,-4.5 @@ -144411,19 +153487,24 @@ entities: - pos: 52.5,-52.5 parent: 6747 type: Transform - - uid: 6628 + - uid: 6561 components: - - pos: 41.5,15.5 + - pos: 16.5,18.5 parent: 6747 type: Transform - uid: 6629 components: - - pos: 41.5,16.5 + - pos: 16.5,19.5 parent: 6747 type: Transform - uid: 6630 components: - - pos: 42.5,16.5 + - pos: 14.5,19.5 + parent: 6747 + type: Transform + - uid: 6674 + components: + - pos: 15.5,19.5 parent: 6747 type: Transform - uid: 6797 @@ -144532,11 +153613,6 @@ entities: - pos: 38.5,-49.5 parent: 6747 type: Transform - - uid: 8734 - components: - - pos: 37.5,25.5 - parent: 6747 - type: Transform - uid: 9248 components: - pos: -13.5,-48.5 @@ -144773,12 +153849,27 @@ entities: type: Transform - proto: TableWoodReinforced entities: + - uid: 386 + components: + - pos: 11.5,22.5 + parent: 6747 + type: Transform - uid: 505 components: - rot: 1.5707963267948966 rad pos: -2.5,-3.5 parent: 6747 type: Transform + - uid: 5542 + components: + - pos: -20.5,5.5 + parent: 6747 + type: Transform + - uid: 5627 + components: + - pos: -19.5,5.5 + parent: 6747 + type: Transform - uid: 5929 components: - pos: 60.5,-50.5 @@ -144794,6 +153885,18 @@ entities: - pos: 60.5,-51.5 parent: 6747 type: Transform + - uid: 17610 + components: + - rot: 1.5707963267948966 rad + pos: 50.5,8.5 + parent: 6747 + type: Transform + - uid: 17611 + components: + - rot: 1.5707963267948966 rad + pos: 51.5,8.5 + parent: 6747 + type: Transform - proto: TaikoInstrument entities: - uid: 11576 @@ -144924,13 +154027,37 @@ entities: pos: 31.5,-92.5 parent: 6747 type: Transform +- proto: TegCenter + entities: + - uid: 12999 + components: + - rot: 3.141592653589793 rad + pos: 61.5,32.5 + parent: 6747 + type: Transform +- proto: TegCirculator + entities: + - uid: 13000 + components: + - rot: -1.5707963267948966 rad + pos: 61.5,31.5 + parent: 6747 + type: Transform + - color: '#FF3300FF' + type: PointLight + - uid: 13001 + components: + - rot: 1.5707963267948966 rad + pos: 61.5,33.5 + parent: 6747 + type: Transform + - color: '#FF3300FF' + type: PointLight - proto: TelecomServer entities: - - uid: 315 + - uid: 6155 components: - - name: medical telecommunication server - type: MetaData - - pos: 9.5,21.5 + - pos: 59.5,9.5 parent: 6747 type: Transform - containers: @@ -144938,7 +154065,7 @@ entities: showEnts: False occludes: True ents: - - 926 + - 27055 machine_board: !type:Container showEnts: False occludes: True @@ -144948,11 +154075,9 @@ entities: occludes: True ents: [] type: ContainerContainer - - uid: 3368 + - uid: 6181 components: - - name: epistemics telecommunication server - type: MetaData - - pos: 9.5,22.5 + - pos: 62.5,7.5 parent: 6747 type: Transform - containers: @@ -144960,7 +154085,8 @@ entities: showEnts: False occludes: True ents: - - 4132 + - 27056 + - 27057 machine_board: !type:Container showEnts: False occludes: True @@ -144970,11 +154096,9 @@ entities: occludes: True ents: [] type: ContainerContainer - - uid: 17474 + - uid: 6738 components: - - name: common telecommunication server - type: MetaData - - pos: 11.5,22.5 + - pos: 61.5,9.5 parent: 6747 type: Transform - containers: @@ -144982,7 +154106,7 @@ entities: showEnts: False occludes: True ents: - - 17605 + - 27058 machine_board: !type:Container showEnts: False occludes: True @@ -144992,11 +154116,9 @@ entities: occludes: True ents: [] type: ContainerContainer - - uid: 18987 + - uid: 8368 components: - - name: engineering/robotics telecommunication server - type: MetaData - - pos: 9.5,20.5 + - pos: 61.5,7.5 parent: 6747 type: Transform - containers: @@ -145004,8 +154126,8 @@ entities: showEnts: False occludes: True ents: - - 18988 - - 18989 + - 27059 + - 27060 machine_board: !type:Container showEnts: False occludes: True @@ -145015,11 +154137,9 @@ entities: occludes: True ents: [] type: ContainerContainer - - uid: 19874 + - uid: 8388 components: - - name: command telecommunication server - type: MetaData - - pos: 11.5,20.5 + - pos: 59.5,7.5 parent: 6747 type: Transform - containers: @@ -145027,7 +154147,7 @@ entities: showEnts: False occludes: True ents: - - 20767 + - 27061 machine_board: !type:Container showEnts: False occludes: True @@ -145037,11 +154157,9 @@ entities: occludes: True ents: [] type: ContainerContainer - - uid: 20768 + - uid: 8463 components: - - name: security telecommunication server - type: MetaData - - pos: 10.5,20.5 + - pos: 62.5,9.5 parent: 6747 type: Transform - containers: @@ -145049,7 +154167,7 @@ entities: showEnts: False occludes: True ents: - - 20769 + - 27062 machine_board: !type:Container showEnts: False occludes: True @@ -145059,11 +154177,9 @@ entities: occludes: True ents: [] type: ContainerContainer - - uid: 22385 + - uid: 8466 components: - - name: service telecommunication server - type: MetaData - - pos: 10.5,22.5 + - pos: 60.5,7.5 parent: 6747 type: Transform - containers: @@ -145071,8 +154187,7 @@ entities: showEnts: False occludes: True ents: - - 23990 - - 23993 + - 27063 machine_board: !type:Container showEnts: False occludes: True @@ -145082,6 +154197,34 @@ entities: occludes: True ents: [] type: ContainerContainer + - uid: 11958 + components: + - pos: 60.5,9.5 + parent: 6747 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 27064 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer +- proto: TelecomServerCircuitboard + entities: + - uid: 17713 + components: + - rot: 1.5707963267948966 rad + pos: 70.61478,9.618713 + parent: 6747 + type: Transform - proto: TimerTrigger entities: - uid: 9132 @@ -145109,6 +154252,11 @@ entities: - pos: 6.5,-11.5 parent: 6747 type: Transform + - uid: 1161 + components: + - pos: 6.5,25.5 + parent: 6747 + type: Transform - uid: 2246 components: - pos: 26.5,1.5 @@ -145159,6 +154307,11 @@ entities: - pos: -42.5,6.5 parent: 6747 type: Transform + - uid: 7080 + components: + - pos: 4.5,25.5 + parent: 6747 + type: Transform - uid: 7395 components: - pos: -44.5,-19.5 @@ -145317,6 +154470,18 @@ entities: - pos: -44.5,9.5 parent: 6747 type: Transform + - uid: 8553 + components: + - rot: 3.141592653589793 rad + pos: 7.5,23.5 + parent: 6747 + type: Transform + - uid: 8660 + components: + - rot: 3.141592653589793 rad + pos: 3.5,23.5 + parent: 6747 + type: Transform - uid: 12192 components: - rot: -1.5707963267948966 rad @@ -145359,19 +154524,24 @@ entities: - pos: 27.496689,30.65044 parent: 6747 type: Transform + - uid: 8814 + components: + - pos: 21.486061,26.730957 + parent: 6747 + type: Transform - uid: 10079 components: - pos: -50.511517,-81.34884 parent: 6747 type: Transform - - uid: 11221 + - uid: 11143 components: - - pos: 19.463482,-74.34128 + - pos: 73.401276,22.472763 parent: 6747 type: Transform - - uid: 21410 + - uid: 11221 components: - - pos: 17.493404,20.715954 + - pos: 19.463482,-74.34128 parent: 6747 type: Transform - uid: 23676 @@ -145386,6 +154556,16 @@ entities: - pos: 18.502415,-54.20168 parent: 6747 type: Transform + - uid: 8272 + components: + - pos: 21.475643,26.543327 + parent: 6747 + type: Transform + - uid: 18853 + components: + - pos: 48.21559,18.663343 + parent: 6747 + type: Transform - proto: ToolboxMechanicalFilled entities: - uid: 1741 @@ -145403,9 +154583,14 @@ entities: - pos: 18.502415,-54.42058 parent: 6747 type: Transform - - uid: 7706 + - uid: 8467 + components: + - pos: 15.933112,15.571858 + parent: 6747 + type: Transform + - uid: 11975 components: - - pos: 30.51527,33.58446 + - pos: 38.367214,28.196579 parent: 6747 type: Transform - uid: 12026 @@ -145432,18 +154617,6 @@ entities: pos: 12.404544,-60.49423 parent: 6747 type: Transform - - uid: 16831 - components: - - rot: 3.141592653589793 rad - pos: -25.370544,10.498104 - parent: 6747 - type: Transform - - uid: 16832 - components: - - rot: 1.5707963267948966 rad - pos: -25.412212,10.72743 - parent: 6747 - type: Transform - uid: 16833 components: - rot: 1.5707963267948966 rad @@ -145499,11 +154672,6 @@ entities: type: Transform - proto: ToySpawner entities: - - uid: 2163 - components: - - pos: 34.5,24.5 - parent: 6747 - type: Transform - uid: 3750 components: - pos: 15.5,-12.5 @@ -145524,6 +154692,11 @@ entities: - pos: -49.5,-37.5 parent: 6747 type: Transform + - uid: 12874 + components: + - pos: 55.5,28.5 + parent: 6747 + type: Transform - uid: 22398 components: - pos: 24.5,-85.5 @@ -145553,11 +154726,6 @@ entities: type: Transform - proto: trayScanner entities: - - uid: 8306 - components: - - pos: 27.611511,13.656703 - parent: 6747 - type: Transform - uid: 8307 components: - pos: -31.64616,-58.41569 @@ -145569,6 +154737,11 @@ entities: pos: 18.570251,-61.54517 parent: 6747 type: Transform + - uid: 19085 + components: + - pos: 46.518604,10.138919 + parent: 6747 + type: Transform - proto: TwoWayLever entities: - uid: 5357 @@ -145598,37 +154771,6 @@ entities: - Right: Reverse - Middle: Off type: DeviceLinkSource - - uid: 7372 - components: - - pos: 47.5,10.5 - parent: 6747 - type: Transform - - linkedPorts: - 6602: - - Left: Forward - - Right: Reverse - - Middle: Off - 6601: - - Left: Forward - - Right: Reverse - - Middle: Off - 6600: - - Left: Forward - - Right: Reverse - - Middle: Off - 6599: - - Left: Forward - - Right: Reverse - - Middle: Off - 1123: - - Left: Forward - - Right: Reverse - - Middle: Off - 1122: - - Left: Forward - - Right: Reverse - - Middle: Off - type: DeviceLinkSource - uid: 8237 components: - pos: 2.5,35.5 @@ -145772,6 +154914,17 @@ entities: type: DeviceLinkSource - proto: UnfinishedMachineFrame entities: + - uid: 7581 + components: + - rot: 3.141592653589793 rad + pos: 34.5,28.5 + parent: 6747 + type: Transform + - uid: 8831 + components: + - pos: 18.5,-59.5 + parent: 6747 + type: Transform - uid: 10144 components: - pos: -36.5,-84.5 @@ -145787,19 +154940,20 @@ entities: - pos: 57.5,-8.5 parent: 6747 type: Transform - - uid: 11137 + - uid: 11466 components: - - pos: 53.5,27.5 + - pos: -49.5,-39.5 parent: 6747 type: Transform - - uid: 11138 + - uid: 12031 components: - - pos: 53.5,28.5 + - rot: 3.141592653589793 rad + pos: 35.5,28.5 parent: 6747 type: Transform - - uid: 11466 + - uid: 26894 components: - - pos: -49.5,-39.5 + - pos: 19.5,-54.5 parent: 6747 type: Transform - proto: UniformPrinter @@ -145809,6 +154963,14 @@ entities: - pos: 41.5,-36.5 parent: 6747 type: Transform +- proto: UniformPrinterMachineCircuitboard + entities: + - uid: 17736 + components: + - rot: 1.5707963267948966 rad + pos: 70.635605,8.597171 + parent: 6747 + type: Transform - proto: UniformShortsRed entities: - uid: 21833 @@ -145837,32 +154999,25 @@ entities: - pos: -31.29589,-58.271072 parent: 6747 type: Transform - - uid: 6633 - components: - - rot: 1.5707963267948966 rad - pos: 41.55936,15.566512 - parent: 6747 - type: Transform - - uid: 8359 + - uid: 6388 components: - - pos: 46.65247,10.510805 + - rot: -1.5707963267948966 rad + pos: 16.429497,18.50627 parent: 6747 type: Transform - - uid: 11451 + - uid: 8320 components: - - pos: 46.57955,10.521229 + - pos: 18.453945,15.571858 parent: 6747 type: Transform - - uid: 23577 + - uid: 8470 components: - - rot: 3.141592653589793 rad - pos: 27.93335,13.622266 + - pos: 18.308113,15.571858 parent: 6747 type: Transform - - uid: 23578 + - uid: 8502 components: - - rot: 3.141592653589793 rad - pos: 28.0896,13.632691 + - pos: 32.317516,14.501195 parent: 6747 type: Transform - proto: VehicleKeyJanicart @@ -145932,11 +155087,9 @@ entities: type: Transform - proto: VendingMachineCargoDrobe entities: - - uid: 6869 + - uid: 8457 components: - - flags: SessionSpecific - type: MetaData - - pos: 52.5,18.5 + - pos: 21.5,25.5 parent: 6747 type: Transform - proto: VendingMachineCart @@ -145986,10 +155139,8 @@ entities: type: Transform - proto: VendingMachineChemDrobe entities: - - uid: 3510 + - uid: 26932 components: - - flags: SessionSpecific - type: MetaData - pos: 10.5,-21.5 parent: 6747 type: Transform @@ -146059,40 +155210,34 @@ entities: - pos: -9.5,-24.5 parent: 6747 type: Transform -- proto: VendingMachineDinnerware +- proto: VendingMachineCourierDrobe entities: - - uid: 2713 + - uid: 914 components: - - flags: SessionSpecific - type: MetaData - - pos: -4.5,-27.5 + - pos: 35.5,13.5 parent: 6747 type: Transform -- proto: VendingMachineDonut +- proto: VendingMachineDinnerware entities: - - uid: 7854 + - uid: 2713 components: - flags: SessionSpecific type: MetaData - - pos: 33.5,28.5 + - pos: -4.5,-27.5 parent: 6747 type: Transform - proto: VendingMachineEngiDrobe entities: - - uid: 8312 + - uid: 6599 components: - - flags: SessionSpecific - type: MetaData - - pos: 27.5,24.5 + - pos: 45.5,18.5 parent: 6747 type: Transform - proto: VendingMachineEngivend entities: - - uid: 8283 + - uid: 6402 components: - - flags: SessionSpecific - type: MetaData - - pos: 20.5,18.5 + - pos: 52.5,18.5 parent: 6747 type: Transform - proto: VendingMachineGames @@ -146147,15 +155292,6 @@ entities: - pos: -11.5,-61.5 parent: 6747 type: Transform -- proto: VendingMachineMailDrobe - entities: - - uid: 6236 - components: - - flags: SessionSpecific - type: MetaData - - pos: 48.5,16.5 - parent: 6747 - type: Transform - proto: VendingMachineMedical entities: - uid: 2155 @@ -146212,25 +155348,23 @@ entities: type: Transform - proto: VendingMachineRoboDrobe entities: - - uid: 4317 + - uid: 26892 components: - - pos: 19.5,-54.5 + - pos: 24.5,-54.5 parent: 6747 type: Transform - proto: VendingMachineRobotics entities: - - uid: 6895 + - uid: 27044 components: - - pos: 20.5,-54.5 + - pos: 3.5,-68.5 parent: 6747 type: Transform - proto: VendingMachineSalvage entities: - - uid: 8663 + - uid: 6673 components: - - flags: SessionSpecific - type: MetaData - - pos: 14.5,28.5 + - pos: 4.5,30.5 parent: 6747 type: Transform - proto: VendingMachineSciDrobe @@ -146280,11 +155414,9 @@ entities: type: Transform - proto: VendingMachineSovietSoda entities: - - uid: 7855 + - uid: 6916 components: - - flags: SessionSpecific - type: MetaData - - pos: 32.5,28.5 + - pos: 9.5,30.5 parent: 6747 type: Transform - proto: VendingMachineSustenance @@ -146307,13 +155439,6 @@ entities: type: Transform - proto: VendingMachineTankDispenserEVA entities: - - uid: 1161 - components: - - flags: SessionSpecific - type: MetaData - - pos: 32.5,13.5 - parent: 6747 - type: Transform - uid: 4112 components: - flags: SessionSpecific @@ -146328,6 +155453,11 @@ entities: - pos: 47.5,-33.5 parent: 6747 type: Transform + - uid: 19086 + components: + - pos: 48.5,15.5 + parent: 6747 + type: Transform - proto: VendingMachineTheater entities: - uid: 2931 @@ -146337,18 +155467,6 @@ entities: - pos: 33.5,-34.5 parent: 6747 type: Transform -- proto: VendingMachineVendomat - entities: - - uid: 10354 - components: - - pos: 28.5,34.5 - parent: 6747 - type: Transform - - uid: 10382 - components: - - pos: 54.5,-23.5 - parent: 6747 - type: Transform - proto: VendingMachineViroDrobe entities: - uid: 2041 @@ -146393,11 +155511,9 @@ entities: type: Transform - proto: VendingMachineYouTool entities: - - uid: 8284 + - uid: 6403 components: - - flags: SessionSpecific - type: MetaData - - pos: 21.5,18.5 + - pos: 53.5,18.5 parent: 6747 type: Transform - proto: WallmountTelescreen @@ -146407,6 +155523,12 @@ entities: - pos: -16.5,-4.5 parent: 6747 type: Transform + - uid: 5544 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,6.5 + parent: 6747 + type: Transform - uid: 5986 components: - rot: -1.5707963267948966 rad @@ -146437,6 +155559,12 @@ entities: type: Transform - proto: WallmountTelevision entities: + - uid: 818 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,27.5 + parent: 6747 + type: Transform - uid: 1244 components: - pos: -3.5,-23.5 @@ -146467,10 +155595,9 @@ entities: - pos: -25.5,-32.5 parent: 6747 type: Transform - - uid: 7614 + - uid: 6890 components: - - rot: 3.141592653589793 rad - pos: 37.5,23.5 + - pos: 54.5,29.5 parent: 6747 type: Transform - uid: 9405 @@ -146637,16 +155764,6 @@ entities: - pos: -3.5,-3.5 parent: 6747 type: Transform - - uid: 15 - components: - - pos: 17.5,12.5 - parent: 6747 - type: Transform - - uid: 24 - components: - - pos: 8.5,13.5 - parent: 6747 - type: Transform - uid: 41 components: - pos: 16.5,8.5 @@ -146852,24 +155969,54 @@ entities: - pos: 11.5,-28.5 parent: 6747 type: Transform - - uid: 136 + - uid: 134 + components: + - pos: 29.5,38.5 + parent: 6747 + type: Transform + - uid: 140 components: - pos: -14.5,6.5 parent: 6747 type: Transform - - uid: 138 + - uid: 147 components: - - pos: -18.5,6.5 + - pos: -18.5,8.5 parent: 6747 type: Transform - - uid: 139 + - uid: 154 components: - - pos: -17.5,6.5 + - pos: -17.5,8.5 parent: 6747 type: Transform - - uid: 147 + - uid: 155 components: - - pos: -19.5,6.5 + - pos: -16.5,8.5 + parent: 6747 + type: Transform + - uid: 197 + components: + - pos: -16.5,7.5 + parent: 6747 + type: Transform + - uid: 203 + components: + - pos: -21.5,6.5 + parent: 6747 + type: Transform + - uid: 229 + components: + - pos: -21.5,7.5 + parent: 6747 + type: Transform + - uid: 264 + components: + - pos: -18.5,2.5 + parent: 6747 + type: Transform + - uid: 277 + components: + - pos: -10.5,4.5 parent: 6747 type: Transform - uid: 307 @@ -146887,19 +156034,14 @@ entities: - pos: 14.5,-20.5 parent: 6747 type: Transform - - uid: 340 - components: - - pos: 14.5,-28.5 - parent: 6747 - type: Transform - - uid: 342 + - uid: 332 components: - - pos: 10.5,-20.5 + - pos: -21.5,2.5 parent: 6747 type: Transform - - uid: 344 + - uid: 340 components: - - pos: 11.5,-20.5 + - pos: 14.5,-28.5 parent: 6747 type: Transform - uid: 345 @@ -146907,21 +156049,11 @@ entities: - pos: 14.5,7.5 parent: 6747 type: Transform - - uid: 346 - components: - - pos: 12.5,-20.5 - parent: 6747 - type: Transform - uid: 347 components: - pos: 8.5,-11.5 parent: 6747 type: Transform - - uid: 348 - components: - - pos: 13.5,-20.5 - parent: 6747 - type: Transform - uid: 349 components: - pos: 7.5,3.5 @@ -147052,29 +156184,14 @@ entities: - pos: 5.5,-33.5 parent: 6747 type: Transform - - uid: 437 - components: - - pos: -18.5,1.5 - parent: 6747 - type: Transform - - uid: 440 - components: - - pos: -21.5,2.5 - parent: 6747 - type: Transform - - uid: 444 - components: - - pos: -21.5,1.5 - parent: 6747 - type: Transform - uid: 445 components: - - pos: -24.5,1.5 + - pos: -26.5,0.5 parent: 6747 type: Transform - uid: 450 components: - - pos: -19.5,3.5 + - pos: -25.5,0.5 parent: 6747 type: Transform - uid: 451 @@ -147112,6 +156229,11 @@ entities: - pos: 14.5,-3.5 parent: 6747 type: Transform + - uid: 470 + components: + - pos: 29.5,39.5 + parent: 6747 + type: Transform - uid: 482 components: - pos: -24.5,-3.5 @@ -147153,16 +156275,6 @@ entities: parent: 6747 type: Transform - uid: 508 - components: - - pos: -24.5,2.5 - parent: 6747 - type: Transform - - uid: 510 - components: - - pos: -18.5,2.5 - parent: 6747 - type: Transform - - uid: 512 components: - pos: -24.5,0.5 parent: 6747 @@ -147517,11 +156629,6 @@ entities: - pos: -16.5,-12.5 parent: 6747 type: Transform - - uid: 755 - components: - - pos: -18.5,0.5 - parent: 6747 - type: Transform - uid: 757 components: - pos: -16.5,-13.5 @@ -147542,11 +156649,6 @@ entities: - pos: -25.5,-41.5 parent: 6747 type: Transform - - uid: 767 - components: - - pos: 8.5,-19.5 - parent: 6747 - type: Transform - uid: 768 components: - pos: 9.5,-19.5 @@ -147647,74 +156749,14 @@ entities: - pos: -8.5,-5.5 parent: 6747 type: Transform - - uid: 799 - components: - - pos: 18.5,12.5 - parent: 6747 - type: Transform - - uid: 810 + - uid: 798 components: - - pos: 24.5,12.5 + - pos: 29.5,41.5 parent: 6747 type: Transform - uid: 811 components: - - pos: 23.5,12.5 - parent: 6747 - type: Transform - - uid: 816 - components: - - pos: 30.5,12.5 - parent: 6747 - type: Transform - - uid: 819 - components: - - pos: 31.5,12.5 - parent: 6747 - type: Transform - - uid: 820 - components: - - pos: 32.5,12.5 - parent: 6747 - type: Transform - - uid: 821 - components: - - pos: 33.5,12.5 - parent: 6747 - type: Transform - - uid: 822 - components: - - pos: 33.5,13.5 - parent: 6747 - type: Transform - - uid: 823 - components: - - pos: 33.5,14.5 - parent: 6747 - type: Transform - - uid: 824 - components: - - pos: 33.5,15.5 - parent: 6747 - type: Transform - - uid: 825 - components: - - pos: 33.5,16.5 - parent: 6747 - type: Transform - - uid: 826 - components: - - pos: 33.5,17.5 - parent: 6747 - type: Transform - - uid: 827 - components: - - pos: 33.5,18.5 - parent: 6747 - type: Transform - - uid: 828 - components: - - pos: 33.5,19.5 + - pos: 16.5,16.5 parent: 6747 type: Transform - uid: 844 @@ -147722,26 +156764,6 @@ entities: - pos: -3.5,-1.5 parent: 6747 type: Transform - - uid: 852 - components: - - pos: 19.5,19.5 - parent: 6747 - type: Transform - - uid: 853 - components: - - pos: 18.5,19.5 - parent: 6747 - type: Transform - - uid: 854 - components: - - pos: 17.5,19.5 - parent: 6747 - type: Transform - - uid: 855 - components: - - pos: 16.5,19.5 - parent: 6747 - type: Transform - uid: 859 components: - pos: -3.5,-0.5 @@ -147767,14 +156789,9 @@ entities: - pos: 19.5,16.5 parent: 6747 type: Transform - - uid: 905 - components: - - pos: 19.5,17.5 - parent: 6747 - type: Transform - - uid: 906 + - uid: 910 components: - - pos: 19.5,18.5 + - pos: 29.5,47.5 parent: 6747 type: Transform - uid: 912 @@ -147782,24 +156799,19 @@ entities: - pos: 31.5,29.5 parent: 6747 type: Transform - - uid: 913 - components: - - pos: 26.5,29.5 - parent: 6747 - type: Transform - uid: 922 components: - pos: 18.5,16.5 parent: 6747 type: Transform - - uid: 927 + - uid: 926 components: - - pos: 26.5,30.5 + - pos: 30.5,47.5 parent: 6747 type: Transform - - uid: 929 + - uid: 931 components: - - pos: 27.5,29.5 + - pos: 39.5,16.5 parent: 6747 type: Transform - uid: 942 @@ -147812,6 +156824,16 @@ entities: - pos: 33.5,29.5 parent: 6747 type: Transform + - uid: 944 + components: + - pos: 56.5,10.5 + parent: 6747 + type: Transform + - uid: 945 + components: + - pos: 55.5,10.5 + parent: 6747 + type: Transform - uid: 946 components: - pos: 34.5,29.5 @@ -147837,59 +156859,9 @@ entities: - pos: 39.5,29.5 parent: 6747 type: Transform - - uid: 953 - components: - - pos: 33.5,23.5 - parent: 6747 - type: Transform - - uid: 954 - components: - - pos: 34.5,23.5 - parent: 6747 - type: Transform - - uid: 955 - components: - - pos: 35.5,23.5 - parent: 6747 - type: Transform - - uid: 956 - components: - - pos: 36.5,23.5 - parent: 6747 - type: Transform - - uid: 957 - components: - - pos: 37.5,23.5 - parent: 6747 - type: Transform - - uid: 958 - components: - - pos: 38.5,23.5 - parent: 6747 - type: Transform - - uid: 959 - components: - - pos: 39.5,23.5 - parent: 6747 - type: Transform - - uid: 960 - components: - - pos: 39.5,24.5 - parent: 6747 - type: Transform - - uid: 961 - components: - - pos: 39.5,25.5 - parent: 6747 - type: Transform - - uid: 962 - components: - - pos: 39.5,26.5 - parent: 6747 - type: Transform - - uid: 963 + - uid: 952 components: - - pos: 39.5,27.5 + - pos: 54.5,10.5 parent: 6747 type: Transform - uid: 964 @@ -147927,6 +156899,11 @@ entities: - pos: 3.5,36.5 parent: 6747 type: Transform + - uid: 991 + components: + - pos: 53.5,10.5 + parent: 6747 + type: Transform - uid: 1010 components: - pos: -4.5,31.5 @@ -147942,11 +156919,6 @@ entities: - pos: -1.5,28.5 parent: 6747 type: Transform - - uid: 1013 - components: - - pos: -1.5,31.5 - parent: 6747 - type: Transform - uid: 1015 components: - pos: -0.5,31.5 @@ -147979,7 +156951,7 @@ entities: type: Transform - uid: 1039 components: - - pos: 3.5,31.5 + - pos: 62.5,10.5 parent: 6747 type: Transform - uid: 1049 @@ -147994,32 +156966,27 @@ entities: type: Transform - uid: 1051 components: - - pos: 15.5,35.5 + - pos: 31.5,47.5 parent: 6747 type: Transform - uid: 1052 components: - - pos: 15.5,34.5 + - pos: 32.5,47.5 parent: 6747 type: Transform - uid: 1053 components: - - pos: 15.5,33.5 + - pos: 33.5,47.5 parent: 6747 type: Transform - uid: 1054 components: - - pos: 15.5,32.5 - parent: 6747 - type: Transform - - uid: 1055 - components: - - pos: 15.5,31.5 + - pos: 29.5,42.5 parent: 6747 type: Transform - uid: 1056 components: - - pos: 15.5,30.5 + - pos: 60.5,10.5 parent: 6747 type: Transform - uid: 1064 @@ -148034,32 +157001,22 @@ entities: type: Transform - uid: 1066 components: - - pos: 7.5,31.5 - parent: 6747 - type: Transform - - uid: 1067 - components: - - pos: 8.5,31.5 + - pos: 63.5,7.5 parent: 6747 type: Transform - uid: 1068 components: - - pos: 8.5,30.5 + - pos: 64.5,19.5 parent: 6747 type: Transform - uid: 1069 components: - - pos: 8.5,29.5 + - pos: 64.5,20.5 parent: 6747 type: Transform - uid: 1070 components: - - pos: 8.5,28.5 - parent: 6747 - type: Transform - - uid: 1071 - components: - - pos: 8.5,24.5 + - pos: 64.5,10.5 parent: 6747 type: Transform - uid: 1072 @@ -148082,34 +157039,34 @@ entities: - pos: 12.5,23.5 parent: 6747 type: Transform - - uid: 1088 + - uid: 1087 components: - - pos: 11.5,23.5 + - pos: 58.5,9.5 parent: 6747 type: Transform - - uid: 1103 + - uid: 1088 components: - - pos: 18.5,30.5 + - pos: 11.5,23.5 parent: 6747 type: Transform - - uid: 1105 + - uid: 1089 components: - - pos: 16.5,30.5 + - pos: 58.5,10.5 parent: 6747 type: Transform - - uid: 1106 + - uid: 1103 components: - - pos: 17.5,30.5 + - pos: 58.5,7.5 parent: 6747 type: Transform - - uid: 1107 + - uid: 1104 components: - - pos: 19.5,30.5 + - pos: 57.5,10.5 parent: 6747 type: Transform - - uid: 1113 + - uid: 1127 components: - - pos: 20.5,30.5 + - pos: 6.5,22.5 parent: 6747 type: Transform - uid: 1137 @@ -148382,11 +157339,6 @@ entities: - pos: -28.5,-41.5 parent: 6747 type: Transform - - uid: 1300 - components: - - pos: -21.5,0.5 - parent: 6747 - type: Transform - uid: 1302 components: - pos: 4.5,1.5 @@ -148662,26 +157614,11 @@ entities: - pos: -24.5,3.5 parent: 6747 type: Transform - - uid: 1488 - components: - - pos: -23.5,3.5 - parent: 6747 - type: Transform - - uid: 1489 - components: - - pos: -22.5,3.5 - parent: 6747 - type: Transform - uid: 1490 components: - pos: -21.5,3.5 parent: 6747 type: Transform - - uid: 1491 - components: - - pos: -20.5,3.5 - parent: 6747 - type: Transform - uid: 1494 components: - pos: -3.5,-2.5 @@ -148812,6 +157749,11 @@ entities: - pos: -18.5,-49.5 parent: 6747 type: Transform + - uid: 1821 + components: + - pos: 34.5,47.5 + parent: 6747 + type: Transform - uid: 1851 components: - pos: -17.5,-49.5 @@ -149172,6 +158114,11 @@ entities: - pos: 26.5,-39.5 parent: 6747 type: Transform + - uid: 2505 + components: + - pos: -24.5,6.5 + parent: 6747 + type: Transform - uid: 2538 components: - pos: -14.5,-55.5 @@ -149522,6 +158469,11 @@ entities: - pos: -33.5,-43.5 parent: 6747 type: Transform + - uid: 2771 + components: + - pos: -25.5,6.5 + parent: 6747 + type: Transform - uid: 2778 components: - pos: -38.5,-39.5 @@ -149832,6 +158784,11 @@ entities: - pos: -35.5,5.5 parent: 6747 type: Transform + - uid: 2971 + components: + - pos: -19.5,8.5 + parent: 6747 + type: Transform - uid: 2993 components: - pos: -40.5,-36.5 @@ -150032,11 +158989,6 @@ entities: - pos: -11.5,4.5 parent: 6747 type: Transform - - uid: 3126 - components: - - pos: -10.5,4.5 - parent: 6747 - type: Transform - uid: 3127 components: - pos: -9.5,4.5 @@ -150172,6 +159124,11 @@ entities: - pos: -39.5,1.5 parent: 6747 type: Transform + - uid: 3174 + components: + - pos: -26.5,6.5 + parent: 6747 + type: Transform - uid: 3176 components: - pos: -43.5,3.5 @@ -150327,6 +159284,21 @@ entities: - pos: -38.5,-11.5 parent: 6747 type: Transform + - uid: 3277 + components: + - pos: 19.5,20.5 + parent: 6747 + type: Transform + - uid: 3282 + components: + - pos: 13.5,19.5 + parent: 6747 + type: Transform + - uid: 3302 + components: + - pos: 3.5,22.5 + parent: 6747 + type: Transform - uid: 3308 components: - pos: 43.5,2.5 @@ -150357,6 +159329,26 @@ entities: - pos: 44.5,-31.5 parent: 6747 type: Transform + - uid: 3335 + components: + - pos: 2.5,22.5 + parent: 6747 + type: Transform + - uid: 3336 + components: + - pos: 2.5,23.5 + parent: 6747 + type: Transform + - uid: 3472 + components: + - pos: -20.5,8.5 + parent: 6747 + type: Transform + - uid: 3476 + components: + - pos: 2.5,24.5 + parent: 6747 + type: Transform - uid: 3535 components: - pos: 6.5,-18.5 @@ -150782,21 +159774,6 @@ entities: - pos: 4.5,-71.5 parent: 6747 type: Transform - - uid: 4481 - components: - - pos: 3.5,-71.5 - parent: 6747 - type: Transform - - uid: 4482 - components: - - pos: 2.5,-71.5 - parent: 6747 - type: Transform - - uid: 4483 - components: - - pos: 1.5,-71.5 - parent: 6747 - type: Transform - uid: 4484 components: - pos: 0.5,-71.5 @@ -150922,6 +159899,11 @@ entities: - pos: 5.5,-80.5 parent: 6747 type: Transform + - uid: 4598 + components: + - pos: 34.5,38.5 + parent: 6747 + type: Transform - uid: 4707 components: - pos: -32.5,12.5 @@ -151632,6 +160614,11 @@ entities: - pos: -12.5,-88.5 parent: 6747 type: Transform + - uid: 5537 + components: + - pos: -15.5,7.5 + parent: 6747 + type: Transform - uid: 5679 components: - pos: -19.5,-63.5 @@ -151907,9 +160894,9 @@ entities: - pos: -40.5,-33.5 parent: 6747 type: Transform - - uid: 5781 + - uid: 5780 components: - - pos: 33.5,20.5 + - pos: 29.5,36.5 parent: 6747 type: Transform - uid: 5782 @@ -152192,6 +161179,11 @@ entities: - pos: 66.5,-17.5 parent: 6747 type: Transform + - uid: 6028 + components: + - pos: 29.5,37.5 + parent: 6747 + type: Transform - uid: 6055 components: - pos: 70.5,-48.5 @@ -152217,26 +161209,6 @@ entities: - pos: 79.5,-42.5 parent: 6747 type: Transform - - uid: 6067 - components: - - pos: 8.5,17.5 - parent: 6747 - type: Transform - - uid: 6069 - components: - - pos: 4.5,31.5 - parent: 6747 - type: Transform - - uid: 6073 - components: - - pos: 4.5,29.5 - parent: 6747 - type: Transform - - uid: 6077 - components: - - pos: 4.5,28.5 - parent: 6747 - type: Transform - uid: 6105 components: - pos: 54.5,-49.5 @@ -152262,6 +161234,11 @@ entities: - pos: 60.5,-53.5 parent: 6747 type: Transform + - uid: 6159 + components: + - pos: 28.5,36.5 + parent: 6747 + type: Transform - uid: 6169 components: - pos: 82.5,-37.5 @@ -152277,16 +161254,6 @@ entities: - pos: 76.5,-25.5 parent: 6747 type: Transform - - uid: 6187 - components: - - pos: 4.5,14.5 - parent: 6747 - type: Transform - - uid: 6215 - components: - - pos: 4.5,13.5 - parent: 6747 - type: Transform - uid: 6341 components: - pos: 68.5,-38.5 @@ -152307,6 +161274,16 @@ entities: - pos: 64.5,-38.5 parent: 6747 type: Transform + - uid: 6389 + components: + - pos: 59.5,6.5 + parent: 6747 + type: Transform + - uid: 6400 + components: + - pos: 68.5,10.5 + parent: 6747 + type: Transform - uid: 6416 components: - pos: 64.5,-26.5 @@ -152372,34 +161349,74 @@ entities: - pos: 72.5,-37.5 parent: 6747 type: Transform - - uid: 6739 + - uid: 6610 components: - - pos: 56.5,5.5 + - pos: 39.5,14.5 parent: 6747 type: Transform - - uid: 6745 + - uid: 6611 components: - - pos: 56.5,6.5 + - pos: 39.5,15.5 parent: 6747 type: Transform - - uid: 6748 + - uid: 6612 components: - - pos: 56.5,8.5 + - pos: 39.5,18.5 parent: 6747 type: Transform - - uid: 6759 + - uid: 6627 components: - - pos: 56.5,7.5 + - pos: 17.5,16.5 parent: 6747 type: Transform - - uid: 6766 + - uid: 6672 components: - - pos: 60.5,14.5 + - pos: 63.5,9.5 parent: 6747 type: Transform - - uid: 6767 + - uid: 6695 components: - - pos: 60.5,8.5 + - pos: 48.5,19.5 + parent: 6747 + type: Transform + - uid: 6696 + components: + - pos: 69.5,5.5 + parent: 6747 + type: Transform + - uid: 6715 + components: + - pos: 49.5,19.5 + parent: 6747 + type: Transform + - uid: 6732 + components: + - pos: 59.5,10.5 + parent: 6747 + type: Transform + - uid: 6733 + components: + - pos: 65.5,19.5 + parent: 6747 + type: Transform + - uid: 6735 + components: + - pos: 68.5,5.5 + parent: 6747 + type: Transform + - uid: 6736 + components: + - pos: 64.5,5.5 + parent: 6747 + type: Transform + - uid: 6737 + components: + - pos: 63.5,5.5 + parent: 6747 + type: Transform + - uid: 6739 + components: + - pos: 56.5,5.5 parent: 6747 type: Transform - uid: 6780 @@ -152502,9 +161519,19 @@ entities: - pos: 66.5,-21.5 parent: 6747 type: Transform - - uid: 6882 + - uid: 6876 + components: + - pos: 59.5,40.5 + parent: 6747 + type: Transform + - uid: 6877 components: - - pos: 60.5,19.5 + - pos: 58.5,40.5 + parent: 6747 + type: Transform + - uid: 6892 + components: + - pos: 12.5,22.5 parent: 6747 type: Transform - uid: 7067 @@ -152522,21 +161549,11 @@ entities: - pos: -50.5,-34.5 parent: 6747 type: Transform - - uid: 7074 - components: - - pos: 8.5,18.5 - parent: 6747 - type: Transform - uid: 7077 components: - pos: 8.5,12.5 parent: 6747 type: Transform - - uid: 7080 - components: - - pos: 4.5,30.5 - parent: 6747 - type: Transform - uid: 7094 components: - pos: 45.5,-54.5 @@ -152577,6 +161594,16 @@ entities: - pos: 39.5,-61.5 parent: 6747 type: Transform + - uid: 7372 + components: + - pos: 63.5,6.5 + parent: 6747 + type: Transform + - uid: 7373 + components: + - pos: 60.5,6.5 + parent: 6747 + type: Transform - uid: 7374 components: - pos: -50.5,-31.5 @@ -152797,34 +161824,14 @@ entities: - pos: -33.5,12.5 parent: 6747 type: Transform - - uid: 7623 - components: - - pos: 26.5,31.5 - parent: 6747 - type: Transform - - uid: 7624 - components: - - pos: 26.5,32.5 - parent: 6747 - type: Transform - - uid: 7625 - components: - - pos: 26.5,33.5 - parent: 6747 - type: Transform - uid: 7626 components: - - pos: 27.5,35.5 + - pos: 26.5,36.5 parent: 6747 type: Transform - uid: 7627 components: - - pos: 28.5,35.5 - parent: 6747 - type: Transform - - uid: 7628 - components: - - pos: 29.5,35.5 + - pos: 34.5,39.5 parent: 6747 type: Transform - uid: 7632 @@ -152857,11 +161864,6 @@ entities: - pos: 42.5,23.5 parent: 6747 type: Transform - - uid: 7638 - components: - - pos: 56.5,20.5 - parent: 6747 - type: Transform - uid: 7639 components: - pos: 56.5,21.5 @@ -152872,31 +161874,6 @@ entities: - pos: 56.5,22.5 parent: 6747 type: Transform - - uid: 7641 - components: - - pos: 56.5,23.5 - parent: 6747 - type: Transform - - uid: 7642 - components: - - pos: 56.5,24.5 - parent: 6747 - type: Transform - - uid: 7643 - components: - - pos: 56.5,25.5 - parent: 6747 - type: Transform - - uid: 7645 - components: - - pos: 56.5,27.5 - parent: 6747 - type: Transform - - uid: 7646 - components: - - pos: 51.5,28.5 - parent: 6747 - type: Transform - uid: 7648 components: - pos: 55.5,40.5 @@ -152907,26 +161884,6 @@ entities: - pos: 52.5,40.5 parent: 6747 type: Transform - - uid: 7651 - components: - - pos: 51.5,26.5 - parent: 6747 - type: Transform - - uid: 7652 - components: - - pos: 51.5,25.5 - parent: 6747 - type: Transform - - uid: 7653 - components: - - pos: 51.5,24.5 - parent: 6747 - type: Transform - - uid: 7654 - components: - - pos: 51.5,23.5 - parent: 6747 - type: Transform - uid: 7655 components: - pos: 51.5,22.5 @@ -152967,21 +161924,11 @@ entities: - pos: 44.5,22.5 parent: 6747 type: Transform - - uid: 7663 - components: - - pos: 43.5,22.5 - parent: 6747 - type: Transform - uid: 7664 components: - pos: 42.5,22.5 parent: 6747 type: Transform - - uid: 7669 - components: - - pos: 44.5,29.5 - parent: 6747 - type: Transform - uid: 7670 components: - pos: 44.5,28.5 @@ -153017,16 +161964,6 @@ entities: - pos: 49.5,25.5 parent: 6747 type: Transform - - uid: 7679 - components: - - pos: 49.5,26.5 - parent: 6747 - type: Transform - - uid: 7680 - components: - - pos: 49.5,27.5 - parent: 6747 - type: Transform - uid: 7690 components: - pos: 31.5,30.5 @@ -153372,31 +162309,11 @@ entities: - pos: 31.5,36.5 parent: 6747 type: Transform - - uid: 7795 - components: - - pos: 26.5,35.5 - parent: 6747 - type: Transform - - uid: 7796 - components: - - pos: 29.5,36.5 - parent: 6747 - type: Transform - - uid: 7798 - components: - - pos: 26.5,34.5 - parent: 6747 - type: Transform - uid: 7905 components: - pos: 50.5,36.5 parent: 6747 type: Transform - - uid: 7906 - components: - - pos: 51.5,27.5 - parent: 6747 - type: Transform - uid: 8043 components: - pos: 52.5,36.5 @@ -153412,64 +162329,14 @@ entities: - pos: 56.5,36.5 parent: 6747 type: Transform - - uid: 8046 - components: - - pos: 56.5,35.5 - parent: 6747 - type: Transform - - uid: 8048 - components: - - pos: 56.5,28.5 - parent: 6747 - type: Transform - - uid: 8049 - components: - - pos: 56.5,29.5 - parent: 6747 - type: Transform - - uid: 8050 + - uid: 8052 components: - - pos: 56.5,30.5 + - pos: 35.5,29.5 parent: 6747 type: Transform - uid: 8060 components: - - pos: 49.5,28.5 - parent: 6747 - type: Transform - - uid: 8061 - components: - - pos: 49.5,29.5 - parent: 6747 - type: Transform - - uid: 8062 - components: - - pos: 50.5,29.5 - parent: 6747 - type: Transform - - uid: 8063 - components: - - pos: 51.5,29.5 - parent: 6747 - type: Transform - - uid: 8064 - components: - - pos: 52.5,29.5 - parent: 6747 - type: Transform - - uid: 8065 - components: - - pos: 53.5,29.5 - parent: 6747 - type: Transform - - uid: 8066 - components: - - pos: 54.5,29.5 - parent: 6747 - type: Transform - - uid: 8067 - components: - - pos: 55.5,29.5 + - pos: 53.5,22.5 parent: 6747 type: Transform - uid: 8080 @@ -153502,19 +162369,14 @@ entities: - pos: 56.5,51.5 parent: 6747 type: Transform - - uid: 8243 - components: - - pos: 14.5,16.5 - parent: 6747 - type: Transform - - uid: 8246 + - uid: 8242 components: - - pos: 13.5,16.5 + - pos: 62.5,6.5 parent: 6747 type: Transform - - uid: 8247 + - uid: 8243 components: - - pos: 12.5,16.5 + - pos: 14.5,16.5 parent: 6747 type: Transform - uid: 8250 @@ -153522,44 +162384,49 @@ entities: - pos: 12.5,19.5 parent: 6747 type: Transform - - uid: 8260 + - uid: 8264 components: - - pos: 16.5,20.5 + - pos: 12.5,20.5 parent: 6747 type: Transform - - uid: 8264 + - uid: 8279 components: - - pos: 12.5,20.5 + - pos: 2.5,26.5 parent: 6747 type: Transform - - uid: 8327 + - uid: 8321 components: - - pos: 20.5,35.5 + - pos: 20.5,36.5 parent: 6747 type: Transform - - uid: 8330 + - uid: 8331 components: - - pos: 21.5,30.5 + - pos: 27.5,36.5 parent: 6747 type: Transform - - uid: 8335 + - uid: 8332 components: - - pos: 21.5,35.5 + - pos: 29.5,40.5 parent: 6747 type: Transform - - uid: 8345 + - uid: 8333 components: - - pos: 30.5,35.5 + - pos: 34.5,37.5 parent: 6747 type: Transform - uid: 8389 components: - - pos: 30.5,40.5 + - pos: 61.5,10.5 + parent: 6747 + type: Transform + - uid: 8390 + components: + - pos: 2.5,30.5 parent: 6747 type: Transform - uid: 8391 components: - - pos: 28.5,44.5 + - pos: 2.5,28.5 parent: 6747 type: Transform - uid: 8398 @@ -153572,79 +162439,79 @@ entities: - pos: 29.5,43.5 parent: 6747 type: Transform - - uid: 8406 + - uid: 8404 components: - - pos: 29.5,40.5 + - pos: 61.5,6.5 parent: 6747 type: Transform - - uid: 8408 + - uid: 8449 components: - - pos: 34.5,40.5 + - pos: 7.5,22.5 parent: 6747 type: Transform - - uid: 8412 + - uid: 8450 components: - - pos: 21.5,44.5 + - pos: 43.5,28.5 parent: 6747 type: Transform - - uid: 8413 + - uid: 8464 components: - - pos: 20.5,44.5 + - pos: 63.5,10.5 parent: 6747 type: Transform - - uid: 8414 + - uid: 8465 components: - - pos: 20.5,43.5 + - pos: 69.5,10.5 parent: 6747 type: Transform - - uid: 8415 + - uid: 8480 components: - - pos: 20.5,42.5 + - pos: 49.5,6.5 parent: 6747 type: Transform - - uid: 8416 + - uid: 8481 components: - - pos: 20.5,41.5 + - pos: 2.5,25.5 parent: 6747 type: Transform - - uid: 8417 + - uid: 8482 components: - - pos: 20.5,40.5 + - pos: 2.5,27.5 parent: 6747 type: Transform - - uid: 8418 + - uid: 8483 components: - - pos: 20.5,39.5 + - pos: 2.5,29.5 parent: 6747 type: Transform - - uid: 8419 + - uid: 8484 components: - - pos: 20.5,38.5 + - pos: 5.5,22.5 parent: 6747 type: Transform - - uid: 8429 + - uid: 8533 components: - - pos: 15.5,44.5 + - pos: 19.5,19.5 parent: 6747 type: Transform - - uid: 8430 + - uid: 8653 components: - - pos: 14.5,44.5 + - pos: 56.5,6.5 parent: 6747 type: Transform - - uid: 8431 + - uid: 8655 components: - - pos: 14.5,43.5 + - pos: 58.5,6.5 parent: 6747 type: Transform - - uid: 8432 + - uid: 8657 components: - - pos: 14.5,37.5 + - pos: 57.5,6.5 parent: 6747 type: Transform - - uid: 8450 + - uid: 8666 components: - - pos: 43.5,28.5 + - pos: 13.5,16.5 parent: 6747 type: Transform - uid: 8683 @@ -153842,16 +162709,6 @@ entities: - pos: -53.5,1.5 parent: 6747 type: Transform - - uid: 9420 - components: - - pos: 14.5,38.5 - parent: 6747 - type: Transform - - uid: 9421 - components: - - pos: 15.5,38.5 - parent: 6747 - type: Transform - uid: 9534 components: - pos: -12.5,-85.5 @@ -154652,11 +163509,6 @@ entities: - pos: 59.5,-14.5 parent: 6747 type: Transform - - uid: 10351 - components: - - pos: 33.5,22.5 - parent: 6747 - type: Transform - uid: 10355 components: - pos: 59.5,-16.5 @@ -154737,6 +163589,11 @@ entities: - pos: 57.5,-14.5 parent: 6747 type: Transform + - uid: 10382 + components: + - pos: 15.5,23.5 + parent: 6747 + type: Transform - uid: 10383 components: - pos: 10.5,-0.5 @@ -154912,26 +163769,6 @@ entities: - pos: -59.5,-43.5 parent: 6747 type: Transform - - uid: 11141 - components: - - pos: 57.5,27.5 - parent: 6747 - type: Transform - - uid: 11142 - components: - - pos: 58.5,27.5 - parent: 6747 - type: Transform - - uid: 11143 - components: - - pos: 58.5,25.5 - parent: 6747 - type: Transform - - uid: 11144 - components: - - pos: 57.5,25.5 - parent: 6747 - type: Transform - uid: 11163 components: - pos: 34.5,-96.5 @@ -154942,6 +163779,11 @@ entities: - pos: 25.5,-91.5 parent: 6747 type: Transform + - uid: 11222 + components: + - pos: 16.5,23.5 + parent: 6747 + type: Transform - uid: 11270 components: - pos: 26.5,-70.5 @@ -154967,6 +163809,86 @@ entities: - pos: 28.5,-70.5 parent: 6747 type: Transform + - uid: 11451 + components: + - pos: 42.5,5.5 + parent: 6747 + type: Transform + - uid: 11477 + components: + - pos: 43.5,5.5 + parent: 6747 + type: Transform + - uid: 11480 + components: + - pos: 44.5,5.5 + parent: 6747 + type: Transform + - uid: 11483 + components: + - pos: 45.5,5.5 + parent: 6747 + type: Transform + - uid: 11486 + components: + - pos: 42.5,14.5 + parent: 6747 + type: Transform + - uid: 11515 + components: + - pos: 19.5,23.5 + parent: 6747 + type: Transform + - uid: 11516 + components: + - pos: 18.5,23.5 + parent: 6747 + type: Transform + - uid: 11518 + components: + - pos: 17.5,23.5 + parent: 6747 + type: Transform + - uid: 11519 + components: + - pos: 39.5,19.5 + parent: 6747 + type: Transform + - uid: 11521 + components: + - pos: 46.5,19.5 + parent: 6747 + type: Transform + - uid: 11522 + components: + - pos: 44.5,19.5 + parent: 6747 + type: Transform + - uid: 11525 + components: + - pos: 43.5,19.5 + parent: 6747 + type: Transform + - uid: 11527 + components: + - pos: 42.5,8.5 + parent: 6747 + type: Transform + - uid: 11583 + components: + - pos: 45.5,19.5 + parent: 6747 + type: Transform + - uid: 11584 + components: + - pos: 47.5,19.5 + parent: 6747 + type: Transform + - uid: 11587 + components: + - pos: 41.5,14.5 + parent: 6747 + type: Transform - uid: 11595 components: - pos: -2.5,-86.5 @@ -155047,6 +163969,111 @@ entities: - pos: 82.5,-34.5 parent: 6747 type: Transform + - uid: 11818 + components: + - pos: 42.5,19.5 + parent: 6747 + type: Transform + - uid: 11820 + components: + - pos: 40.5,19.5 + parent: 6747 + type: Transform + - uid: 11822 + components: + - pos: 55.5,19.5 + parent: 6747 + type: Transform + - uid: 11823 + components: + - pos: 54.5,19.5 + parent: 6747 + type: Transform + - uid: 11824 + components: + - pos: 53.5,19.5 + parent: 6747 + type: Transform + - uid: 11826 + components: + - pos: 52.5,19.5 + parent: 6747 + type: Transform + - uid: 11827 + components: + - pos: 51.5,19.5 + parent: 6747 + type: Transform + - uid: 11838 + components: + - pos: 46.5,5.5 + parent: 6747 + type: Transform + - uid: 11839 + components: + - pos: 48.5,5.5 + parent: 6747 + type: Transform + - uid: 11840 + components: + - pos: 49.5,5.5 + parent: 6747 + type: Transform + - uid: 11841 + components: + - pos: 50.5,5.5 + parent: 6747 + type: Transform + - uid: 11842 + components: + - pos: 51.5,5.5 + parent: 6747 + type: Transform + - uid: 11852 + components: + - pos: 52.5,5.5 + parent: 6747 + type: Transform + - uid: 11853 + components: + - pos: 53.5,5.5 + parent: 6747 + type: Transform + - uid: 11854 + components: + - pos: 54.5,5.5 + parent: 6747 + type: Transform + - uid: 11855 + components: + - pos: 55.5,5.5 + parent: 6747 + type: Transform + - uid: 11856 + components: + - pos: 15.5,16.5 + parent: 6747 + type: Transform + - uid: 11857 + components: + - pos: 49.5,10.5 + parent: 6747 + type: Transform + - uid: 11946 + components: + - pos: 55.5,22.5 + parent: 6747 + type: Transform + - uid: 12880 + components: + - pos: 65.5,36.5 + parent: 6747 + type: Transform + - uid: 12904 + components: + - pos: 52.5,22.5 + parent: 6747 + type: Transform - uid: 12949 components: - pos: -50.5,-13.5 @@ -155062,11 +164089,136 @@ entities: - pos: -49.5,-38.5 parent: 6747 type: Transform + - uid: 12994 + components: + - pos: 75.5,10.5 + parent: 6747 + type: Transform + - uid: 12995 + components: + - pos: 75.5,5.5 + parent: 6747 + type: Transform + - uid: 12996 + components: + - pos: 74.5,5.5 + parent: 6747 + type: Transform + - uid: 12997 + components: + - pos: 70.5,5.5 + parent: 6747 + type: Transform - uid: 13234 components: - pos: -48.5,-38.5 parent: 6747 type: Transform + - uid: 13270 + components: + - pos: 57.5,36.5 + parent: 6747 + type: Transform + - uid: 13271 + components: + - pos: 64.5,36.5 + parent: 6747 + type: Transform + - uid: 13285 + components: + - pos: 64.5,27.5 + parent: 6747 + type: Transform + - uid: 13286 + components: + - pos: 65.5,27.5 + parent: 6747 + type: Transform + - uid: 13287 + components: + - pos: 68.5,27.5 + parent: 6747 + type: Transform + - uid: 13288 + components: + - pos: 69.5,27.5 + parent: 6747 + type: Transform + - uid: 13289 + components: + - pos: 69.5,28.5 + parent: 6747 + type: Transform + - uid: 13290 + components: + - pos: 69.5,29.5 + parent: 6747 + type: Transform + - uid: 13292 + components: + - pos: 68.5,36.5 + parent: 6747 + type: Transform + - uid: 13293 + components: + - pos: 69.5,36.5 + parent: 6747 + type: Transform + - uid: 13294 + components: + - pos: 69.5,35.5 + parent: 6747 + type: Transform + - uid: 13295 + components: + - pos: 69.5,34.5 + parent: 6747 + type: Transform + - uid: 13299 + components: + - pos: 59.5,39.5 + parent: 6747 + type: Transform + - uid: 13417 + components: + - pos: 69.5,24.5 + parent: 6747 + type: Transform + - uid: 13418 + components: + - pos: 68.5,24.5 + parent: 6747 + type: Transform + - uid: 13419 + components: + - pos: 67.5,24.5 + parent: 6747 + type: Transform + - uid: 13420 + components: + - pos: 66.5,24.5 + parent: 6747 + type: Transform + - uid: 13421 + components: + - pos: 65.5,24.5 + parent: 6747 + type: Transform + - uid: 13422 + components: + - pos: 64.5,24.5 + parent: 6747 + type: Transform + - uid: 13450 + components: + - pos: 69.5,23.5 + parent: 6747 + type: Transform + - uid: 13842 + components: + - pos: 4.5,-70.5 + parent: 6747 + type: Transform - uid: 13908 components: - pos: -47.5,-38.5 @@ -155082,6 +164234,11 @@ entities: - pos: -45.5,-38.5 parent: 6747 type: Transform + - uid: 14611 + components: + - pos: 4.5,-69.5 + parent: 6747 + type: Transform - uid: 14658 components: - pos: -44.5,-38.5 @@ -155102,6 +164259,11 @@ entities: - pos: -33.5,-44.5 parent: 6747 type: Transform + - uid: 14913 + components: + - pos: 4.5,-68.5 + parent: 6747 + type: Transform - uid: 15622 components: - pos: -55.5,7.5 @@ -155117,6 +164279,11 @@ entities: - pos: -26.5,-43.5 parent: 6747 type: Transform + - uid: 16207 + components: + - pos: 9.5,-17.5 + parent: 6747 + type: Transform - uid: 16874 components: - pos: -96.5,-21.5 @@ -155142,6 +164309,121 @@ entities: - pos: 28.5,-96.5 parent: 6747 type: Transform + - uid: 16971 + components: + - pos: 70.5,10.5 + parent: 6747 + type: Transform + - uid: 16973 + components: + - pos: 72.5,10.5 + parent: 6747 + type: Transform + - uid: 16976 + components: + - pos: 73.5,10.5 + parent: 6747 + type: Transform + - uid: 16983 + components: + - pos: 74.5,10.5 + parent: 6747 + type: Transform + - uid: 16984 + components: + - pos: 74.5,11.5 + parent: 6747 + type: Transform + - uid: 16993 + components: + - pos: 74.5,12.5 + parent: 6747 + type: Transform + - uid: 16994 + components: + - pos: 74.5,13.5 + parent: 6747 + type: Transform + - uid: 16996 + components: + - pos: 74.5,14.5 + parent: 6747 + type: Transform + - uid: 17000 + components: + - pos: 74.5,15.5 + parent: 6747 + type: Transform + - uid: 17001 + components: + - pos: 74.5,16.5 + parent: 6747 + type: Transform + - uid: 17004 + components: + - pos: 74.5,19.5 + parent: 6747 + type: Transform + - uid: 17019 + components: + - pos: 73.5,19.5 + parent: 6747 + type: Transform + - uid: 17020 + components: + - pos: 72.5,19.5 + parent: 6747 + type: Transform + - uid: 17022 + components: + - pos: 70.5,19.5 + parent: 6747 + type: Transform + - uid: 17026 + components: + - pos: 69.5,19.5 + parent: 6747 + type: Transform + - uid: 17027 + components: + - pos: 68.5,19.5 + parent: 6747 + type: Transform + - uid: 17028 + components: + - pos: 67.5,19.5 + parent: 6747 + type: Transform + - uid: 17029 + components: + - pos: 66.5,19.5 + parent: 6747 + type: Transform + - uid: 17033 + components: + - pos: 74.5,23.5 + parent: 6747 + type: Transform + - uid: 17034 + components: + - pos: 70.5,23.5 + parent: 6747 + type: Transform + - uid: 17035 + components: + - pos: 73.5,23.5 + parent: 6747 + type: Transform + - uid: 17043 + components: + - pos: 48.5,23.5 + parent: 6747 + type: Transform + - uid: 17044 + components: + - pos: 48.5,24.5 + parent: 6747 + type: Transform - uid: 17176 components: - pos: 14.5,5.5 @@ -155302,19 +164584,9 @@ entities: - pos: 8.5,20.5 parent: 6747 type: Transform - - uid: 17604 - components: - - pos: 11.5,19.5 - parent: 6747 - type: Transform - - uid: 17606 - components: - - pos: 15.5,20.5 - parent: 6747 - type: Transform - - uid: 17609 + - uid: 17784 components: - - pos: 10.5,19.5 + - pos: -1.5,31.5 parent: 6747 type: Transform - uid: 17888 @@ -155367,9 +164639,9 @@ entities: - pos: -41.5,-15.5 parent: 6747 type: Transform - - uid: 18986 + - uid: 19019 components: - - pos: 9.5,19.5 + - pos: 41.5,19.5 parent: 6747 type: Transform - uid: 21961 @@ -155417,16 +164689,81 @@ entities: - pos: 20.5,-77.5 parent: 6747 type: Transform + - uid: 22055 + components: + - pos: 49.5,29.5 + parent: 6747 + type: Transform + - uid: 22057 + components: + - pos: 56.5,29.5 + parent: 6747 + type: Transform + - uid: 22058 + components: + - pos: 56.5,30.5 + parent: 6747 + type: Transform + - uid: 22059 + components: + - pos: 49.5,28.5 + parent: 6747 + type: Transform + - uid: 22060 + components: + - pos: 49.5,26.5 + parent: 6747 + type: Transform + - uid: 22063 + components: + - pos: 50.5,29.5 + parent: 6747 + type: Transform + - uid: 22064 + components: + - pos: 51.5,29.5 + parent: 6747 + type: Transform - uid: 22148 components: - pos: 20.5,-64.5 parent: 6747 type: Transform + - uid: 22193 + components: + - pos: 52.5,29.5 + parent: 6747 + type: Transform + - uid: 22194 + components: + - pos: 53.5,29.5 + parent: 6747 + type: Transform + - uid: 22195 + components: + - pos: 54.5,29.5 + parent: 6747 + type: Transform + - uid: 22196 + components: + - pos: 55.5,29.5 + parent: 6747 + type: Transform - uid: 22446 components: - pos: -4.5,-7.5 parent: 6747 type: Transform + - uid: 22536 + components: + - pos: 44.5,23.5 + parent: 6747 + type: Transform + - uid: 22561 + components: + - pos: 43.5,23.5 + parent: 6747 + type: Transform - uid: 22746 components: - pos: 30.5,44.5 @@ -155722,19 +165059,29 @@ entities: - pos: 46.5,-54.5 parent: 6747 type: Transform + - uid: 23656 + components: + - pos: 14.5,-17.5 + parent: 6747 + type: Transform + - uid: 23898 + components: + - pos: 50.5,19.5 + parent: 6747 + type: Transform - uid: 23952 components: - pos: 47.5,-44.5 parent: 6747 type: Transform - - uid: 25559 + - uid: 23996 components: - - pos: 4.5,24.5 + - pos: 77.5,19.5 parent: 6747 type: Transform - - uid: 25560 + - uid: 23997 components: - - pos: 4.5,23.5 + - pos: 77.5,16.5 parent: 6747 type: Transform - uid: 25561 @@ -155742,24 +165089,54 @@ entities: - pos: 4.5,22.5 parent: 6747 type: Transform - - uid: 25565 + - uid: 26189 components: - - pos: 4.5,18.5 + - pos: 14.5,-16.5 parent: 6747 type: Transform - - uid: 25566 + - uid: 26471 components: - - pos: 4.5,17.5 + - pos: 59.5,36.5 parent: 6747 type: Transform - - uid: 25567 + - uid: 26596 components: - - pos: 4.5,16.5 + - pos: 64.5,31.5 parent: 6747 type: Transform - - uid: 25568 + - uid: 26598 + components: + - pos: 64.5,32.5 + parent: 6747 + type: Transform + - uid: 26885 + components: + - pos: 9.5,-18.5 + parent: 6747 + type: Transform + - uid: 26902 + components: + - pos: 9.5,-16.5 + parent: 6747 + type: Transform + - uid: 26903 + components: + - pos: 10.5,-16.5 + parent: 6747 + type: Transform + - uid: 26904 + components: + - pos: 11.5,-16.5 + parent: 6747 + type: Transform + - uid: 26905 + components: + - pos: 12.5,-16.5 + parent: 6747 + type: Transform + - uid: 26906 components: - - pos: 4.5,15.5 + - pos: 13.5,-16.5 parent: 6747 type: Transform - proto: WallShuttle @@ -155846,6 +165223,11 @@ entities: - pos: 17.5,8.5 parent: 6747 type: Transform + - uid: 15 + components: + - pos: 3.5,46.5 + parent: 6747 + type: Transform - uid: 69 components: - pos: 1.5,-23.5 @@ -155886,6 +165268,11 @@ entities: - pos: 17.5,3.5 parent: 6747 type: Transform + - uid: 365 + components: + - pos: 5.5,40.5 + parent: 6747 + type: Transform - uid: 370 components: - pos: 21.5,-2.5 @@ -156001,26 +165388,6 @@ entities: - pos: 21.5,4.5 parent: 6747 type: Transform - - uid: 470 - components: - - pos: 24.5,19.5 - parent: 6747 - type: Transform - - uid: 473 - components: - - pos: 24.5,16.5 - parent: 6747 - type: Transform - - uid: 474 - components: - - pos: 31.5,24.5 - parent: 6747 - type: Transform - - uid: 475 - components: - - pos: 31.5,28.5 - parent: 6747 - type: Transform - uid: 526 components: - pos: -22.5,-4.5 @@ -156266,54 +165633,54 @@ entities: - pos: 18.5,4.5 parent: 6747 type: Transform - - uid: 829 + - uid: 807 components: - - pos: 32.5,19.5 + - pos: 53.5,8.5 parent: 6747 type: Transform - - uid: 830 + - uid: 812 components: - - pos: 31.5,19.5 + - pos: 15.5,24.5 parent: 6747 type: Transform - - uid: 893 + - uid: 829 components: - - pos: 20.5,28.5 + - pos: 32.5,19.5 parent: 6747 type: Transform - - uid: 902 + - uid: 830 components: - - pos: 23.5,16.5 + - pos: 31.5,19.5 parent: 6747 type: Transform - - uid: 914 + - uid: 879 components: - - pos: 20.5,29.5 + - pos: 19.5,30.5 parent: 6747 type: Transform - - uid: 920 + - uid: 892 components: - - pos: 32.5,23.5 + - pos: 16.5,27.5 parent: 6747 type: Transform - - uid: 921 + - uid: 893 components: - - pos: 20.5,25.5 + - pos: 18.5,27.5 parent: 6747 type: Transform - - uid: 931 + - uid: 906 components: - - pos: 15.5,28.5 + - pos: 19.5,27.5 parent: 6747 type: Transform - - uid: 936 + - uid: 908 components: - - pos: 15.5,29.5 + - pos: 28.5,20.5 parent: 6747 type: Transform - - uid: 937 + - uid: 911 components: - - pos: 15.5,25.5 + - pos: 30.5,15.5 parent: 6747 type: Transform - uid: 938 @@ -156331,24 +165698,14 @@ entities: - pos: 36.5,14.5 parent: 6747 type: Transform - - uid: 945 - components: - - pos: 15.5,23.5 - parent: 6747 - type: Transform - - uid: 952 - components: - - pos: 31.5,23.5 - parent: 6747 - type: Transform - - uid: 991 + - uid: 1110 components: - - pos: 16.5,23.5 + - pos: 36.5,15.5 parent: 6747 type: Transform - - uid: 1110 + - uid: 1111 components: - - pos: 36.5,15.5 + - pos: 32.5,12.5 parent: 6747 type: Transform - uid: 1116 @@ -156371,11 +165728,6 @@ entities: - pos: 36.5,19.5 parent: 6747 type: Transform - - uid: 1120 - components: - - pos: 37.5,19.5 - parent: 6747 - type: Transform - uid: 1124 components: - pos: 39.5,5.5 @@ -156386,31 +165738,6 @@ entities: - pos: 41.5,5.5 parent: 6747 type: Transform - - uid: 1126 - components: - - pos: 42.5,5.5 - parent: 6747 - type: Transform - - uid: 1127 - components: - - pos: 43.5,5.5 - parent: 6747 - type: Transform - - uid: 1128 - components: - - pos: 44.5,5.5 - parent: 6747 - type: Transform - - uid: 1129 - components: - - pos: 45.5,5.5 - parent: 6747 - type: Transform - - uid: 1130 - components: - - pos: 41.5,14.5 - parent: 6747 - type: Transform - uid: 1132 components: - pos: 17.5,-35.5 @@ -156761,31 +166088,6 @@ entities: - pos: 30.5,19.5 parent: 6747 type: Transform - - uid: 1819 - components: - - pos: 29.5,19.5 - parent: 6747 - type: Transform - - uid: 1820 - components: - - pos: 28.5,19.5 - parent: 6747 - type: Transform - - uid: 1821 - components: - - pos: 27.5,19.5 - parent: 6747 - type: Transform - - uid: 1822 - components: - - pos: 26.5,19.5 - parent: 6747 - type: Transform - - uid: 1868 - components: - - pos: 20.5,19.5 - parent: 6747 - type: Transform - uid: 1918 components: - pos: -3.5,-34.5 @@ -156921,11 +166223,6 @@ entities: - pos: 43.5,-26.5 parent: 6747 type: Transform - - uid: 2065 - components: - - pos: 21.5,19.5 - parent: 6747 - type: Transform - uid: 2123 components: - pos: 5.5,-40.5 @@ -157026,9 +166323,24 @@ entities: - pos: 26.5,-4.5 parent: 6747 type: Transform - - uid: 2164 + - uid: 2167 components: - - pos: 15.5,16.5 + - pos: 20.5,15.5 + parent: 6747 + type: Transform + - uid: 2169 + components: + - pos: 20.5,13.5 + parent: 6747 + type: Transform + - uid: 2170 + components: + - pos: 20.5,12.5 + parent: 6747 + type: Transform + - uid: 2171 + components: + - pos: 30.5,14.5 parent: 6747 type: Transform - uid: 2222 @@ -157186,6 +166498,16 @@ entities: - pos: 20.5,23.5 parent: 6747 type: Transform + - uid: 2266 + components: + - pos: 20.5,28.5 + parent: 6747 + type: Transform + - uid: 2267 + components: + - pos: 20.5,27.5 + parent: 6747 + type: Transform - uid: 2271 components: - pos: 39.5,2.5 @@ -157288,7 +166610,7 @@ entities: type: Transform - uid: 2310 components: - - pos: 29.5,23.5 + - pos: 20.5,25.5 parent: 6747 type: Transform - uid: 2311 @@ -157308,7 +166630,7 @@ entities: type: Transform - uid: 2314 components: - - pos: 19.5,23.5 + - pos: 20.5,24.5 parent: 6747 type: Transform - uid: 2315 @@ -157363,12 +166685,17 @@ entities: type: Transform - uid: 2325 components: - - pos: 18.5,23.5 + - pos: 15.5,30.5 parent: 6747 type: Transform - uid: 2326 components: - - pos: 17.5,23.5 + - pos: 20.5,29.5 + parent: 6747 + type: Transform + - uid: 2327 + components: + - pos: 20.5,30.5 parent: 6747 type: Transform - uid: 2328 @@ -157861,6 +167188,11 @@ entities: - pos: 49.5,-11.5 parent: 6747 type: Transform + - uid: 2461 + components: + - pos: 17.5,27.5 + parent: 6747 + type: Transform - uid: 2520 components: - pos: 27.5,-0.5 @@ -157966,6 +167298,11 @@ entities: - pos: 34.5,-30.5 parent: 6747 type: Transform + - uid: 2810 + components: + - pos: 16.5,30.5 + parent: 6747 + type: Transform - uid: 2870 components: - pos: 18.5,-53.5 @@ -158051,6 +167388,11 @@ entities: - pos: 32.5,-42.5 parent: 6747 type: Transform + - uid: 2927 + components: + - pos: 15.5,29.5 + parent: 6747 + type: Transform - uid: 3023 components: - pos: -22.5,-35.5 @@ -158101,26 +167443,11 @@ entities: - pos: -41.5,-7.5 parent: 6747 type: Transform - - uid: 3263 - components: - - pos: 38.5,19.5 - parent: 6747 - type: Transform - uid: 3267 components: - pos: 55.5,-4.5 parent: 6747 type: Transform - - uid: 3273 - components: - - pos: 42.5,19.5 - parent: 6747 - type: Transform - - uid: 3277 - components: - - pos: 44.5,19.5 - parent: 6747 - type: Transform - uid: 3278 components: - pos: -9.5,-48.5 @@ -158138,17 +167465,17 @@ entities: type: Transform - uid: 3281 components: - - pos: 45.5,19.5 + - pos: 33.5,12.5 parent: 6747 type: Transform - - uid: 3283 + - uid: 3284 components: - - pos: 42.5,8.5 + - pos: 43.5,8.5 parent: 6747 type: Transform - - uid: 3284 + - uid: 3285 components: - - pos: 43.5,8.5 + - pos: 3.5,28.5 parent: 6747 type: Transform - uid: 3287 @@ -158181,21 +167508,6 @@ entities: - pos: 29.5,7.5 parent: 6747 type: Transform - - uid: 3296 - components: - - pos: 43.5,19.5 - parent: 6747 - type: Transform - - uid: 3297 - components: - - pos: 41.5,19.5 - parent: 6747 - type: Transform - - uid: 3298 - components: - - pos: 39.5,19.5 - parent: 6747 - type: Transform - uid: 3299 components: - pos: 45.5,8.5 @@ -158216,11 +167528,6 @@ entities: - pos: 36.5,7.5 parent: 6747 type: Transform - - uid: 3307 - components: - - pos: 36.5,6.5 - parent: 6747 - type: Transform - uid: 3322 components: - pos: -6.5,-48.5 @@ -158291,6 +167598,11 @@ entities: - pos: 27.5,-15.5 parent: 6747 type: Transform + - uid: 3368 + components: + - pos: 28.5,22.5 + parent: 6747 + type: Transform - uid: 3374 components: - pos: 27.5,-8.5 @@ -158318,12 +167630,12 @@ entities: type: Transform - uid: 3381 components: - - pos: 36.5,5.5 + - pos: 36.5,6.5 parent: 6747 type: Transform - uid: 3382 components: - - pos: 37.5,5.5 + - pos: 36.5,5.5 parent: 6747 type: Transform - uid: 3383 @@ -158816,6 +168128,11 @@ entities: - pos: 23.5,-58.5 parent: 6747 type: Transform + - uid: 4618 + components: + - pos: 26.5,28.5 + parent: 6747 + type: Transform - uid: 4736 components: - pos: -12.5,-62.5 @@ -159266,6 +168583,21 @@ entities: - pos: 68.5,-44.5 parent: 6747 type: Transform + - uid: 6393 + components: + - pos: 23.5,12.5 + parent: 6747 + type: Transform + - uid: 6407 + components: + - pos: 23.5,14.5 + parent: 6747 + type: Transform + - uid: 6430 + components: + - pos: 23.5,13.5 + parent: 6747 + type: Transform - uid: 6432 components: - pos: 72.5,-26.5 @@ -159316,64 +168648,19 @@ entities: - pos: 52.5,-19.5 parent: 6747 type: Transform - - uid: 6598 - components: - - pos: 42.5,14.5 - parent: 6747 - type: Transform - uid: 6608 components: - pos: 35.5,12.5 parent: 6747 type: Transform - - uid: 6614 - components: - - pos: 46.5,19.5 - parent: 6747 - type: Transform - - uid: 6615 - components: - - pos: 47.5,19.5 - parent: 6747 - type: Transform - - uid: 6616 - components: - - pos: 48.5,19.5 - parent: 6747 - type: Transform - - uid: 6617 - components: - - pos: 49.5,19.5 - parent: 6747 - type: Transform - - uid: 6618 - components: - - pos: 50.5,19.5 - parent: 6747 - type: Transform - - uid: 6619 - components: - - pos: 51.5,19.5 - parent: 6747 - type: Transform - - uid: 6620 - components: - - pos: 52.5,19.5 - parent: 6747 - type: Transform - - uid: 6621 - components: - - pos: 53.5,19.5 - parent: 6747 - type: Transform - - uid: 6622 + - uid: 6623 components: - - pos: 54.5,19.5 + - pos: 7.5,28.5 parent: 6747 type: Transform - - uid: 6623 + - uid: 6625 components: - - pos: 55.5,19.5 + - pos: 28.5,29.5 parent: 6747 type: Transform - uid: 6636 @@ -159426,54 +168713,54 @@ entities: - pos: 49.5,18.5 parent: 6747 type: Transform - - uid: 6729 + - uid: 6671 components: - - pos: 46.5,5.5 + - pos: 15.5,26.5 parent: 6747 type: Transform - - uid: 6731 + - uid: 6677 components: - - pos: 48.5,5.5 + - pos: 4.5,46.5 parent: 6747 type: Transform - - uid: 6732 + - uid: 6679 components: - - pos: 49.5,5.5 + - pos: 5.5,46.5 parent: 6747 type: Transform - - uid: 6733 + - uid: 6681 components: - - pos: 50.5,5.5 + - pos: 3.5,40.5 parent: 6747 type: Transform - - uid: 6734 + - uid: 6682 components: - - pos: 51.5,5.5 + - pos: 4.5,40.5 parent: 6747 type: Transform - - uid: 6735 + - uid: 6701 components: - - pos: 52.5,5.5 + - pos: 5.5,43.5 parent: 6747 type: Transform - - uid: 6736 + - uid: 6702 components: - - pos: 53.5,5.5 + - pos: 5.5,24.5 parent: 6747 type: Transform - - uid: 6737 + - uid: 6716 components: - - pos: 54.5,5.5 + - pos: 54.5,14.5 parent: 6747 type: Transform - - uid: 6738 + - uid: 6744 components: - - pos: 55.5,5.5 + - pos: 42.5,-48.5 parent: 6747 type: Transform - - uid: 6744 + - uid: 6745 components: - - pos: 42.5,-48.5 + - pos: 34.5,19.5 parent: 6747 type: Transform - uid: 6756 @@ -159496,6 +168783,11 @@ entities: - pos: 37.5,3.5 parent: 6747 type: Transform + - uid: 6777 + components: + - pos: 35.5,19.5 + parent: 6747 + type: Transform - uid: 6798 components: - pos: 41.5,-52.5 @@ -159536,6 +168828,16 @@ entities: - pos: 56.5,17.5 parent: 6747 type: Transform + - uid: 6897 + components: + - pos: 29.5,19.5 + parent: 6747 + type: Transform + - uid: 7076 + components: + - pos: 5.5,23.5 + parent: 6747 + type: Transform - uid: 7089 components: - pos: 36.5,-52.5 @@ -159586,19 +168888,194 @@ entities: - pos: 25.5,8.5 parent: 6747 type: Transform + - uid: 7433 + components: + - pos: 31.5,28.5 + parent: 6747 + type: Transform - uid: 7506 components: - pos: -51.5,-10.5 parent: 6747 type: Transform + - uid: 7527 + components: + - pos: 5.5,25.5 + parent: 6747 + type: Transform + - uid: 7688 + components: + - pos: 20.5,16.5 + parent: 6747 + type: Transform - uid: 7703 components: - pos: -3.5,-47.5 parent: 6747 type: Transform - - uid: 8242 + - uid: 7798 components: - - pos: 17.5,16.5 + - pos: 8.5,25.5 + parent: 6747 + type: Transform + - uid: 8048 + components: + - pos: 38.5,7.5 + parent: 6747 + type: Transform + - uid: 8050 + components: + - pos: 38.5,6.5 + parent: 6747 + type: Transform + - uid: 8155 + components: + - pos: 26.5,24.5 + parent: 6747 + type: Transform + - uid: 8258 + components: + - pos: 26.5,25.5 + parent: 6747 + type: Transform + - uid: 8260 + components: + - pos: 9.5,29.5 + parent: 6747 + type: Transform + - uid: 8278 + components: + - pos: 53.5,6.5 + parent: 6747 + type: Transform + - uid: 8287 + components: + - pos: 15.5,27.5 + parent: 6747 + type: Transform + - uid: 8290 + components: + - pos: 15.5,28.5 + parent: 6747 + type: Transform + - uid: 8325 + components: + - pos: 4.5,28.5 + parent: 6747 + type: Transform + - uid: 8330 + components: + - pos: 53.5,9.5 + parent: 6747 + type: Transform + - uid: 8369 + components: + - pos: 50.5,14.5 + parent: 6747 + type: Transform + - uid: 8371 + components: + - pos: 28.5,19.5 + parent: 6747 + type: Transform + - uid: 8412 + components: + - pos: 14.5,29.5 + parent: 6747 + type: Transform + - uid: 8414 + components: + - pos: 21.5,30.5 + parent: 6747 + type: Transform + - uid: 8445 + components: + - pos: 26.5,27.5 + parent: 6747 + type: Transform + - uid: 8446 + components: + - pos: 26.5,26.5 + parent: 6747 + type: Transform + - uid: 8468 + components: + - pos: 55.5,14.5 + parent: 6747 + type: Transform + - uid: 8494 + components: + - pos: 17.5,12.5 + parent: 6747 + type: Transform + - uid: 8515 + components: + - pos: 33.5,19.5 + parent: 6747 + type: Transform + - uid: 8532 + components: + - pos: 26.5,35.5 + parent: 6747 + type: Transform + - uid: 8536 + components: + - pos: 26.5,29.5 + parent: 6747 + type: Transform + - uid: 8537 + components: + - pos: 26.5,30.5 + parent: 6747 + type: Transform + - uid: 8538 + components: + - pos: 27.5,29.5 + parent: 6747 + type: Transform + - uid: 8539 + components: + - pos: 3.5,31.5 + parent: 6747 + type: Transform + - uid: 8541 + components: + - pos: 7.5,31.5 + parent: 6747 + type: Transform + - uid: 8542 + components: + - pos: 8.5,31.5 + parent: 6747 + type: Transform + - uid: 8543 + components: + - pos: 8.5,30.5 + parent: 6747 + type: Transform + - uid: 8544 + components: + - pos: 8.5,29.5 + parent: 6747 + type: Transform + - uid: 8545 + components: + - pos: 8.5,28.5 + parent: 6747 + type: Transform + - uid: 8546 + components: + - pos: 8.5,24.5 + parent: 6747 + type: Transform + - uid: 8552 + components: + - pos: 33.5,22.5 + parent: 6747 + type: Transform + - uid: 8554 + components: + - pos: 4.5,31.5 parent: 6747 type: Transform - uid: 8586 @@ -159626,6 +169103,36 @@ entities: - pos: -13.5,30.5 parent: 6747 type: Transform + - uid: 8662 + components: + - pos: 26.5,31.5 + parent: 6747 + type: Transform + - uid: 8663 + components: + - pos: 26.5,32.5 + parent: 6747 + type: Transform + - uid: 8664 + components: + - pos: 26.5,33.5 + parent: 6747 + type: Transform + - uid: 8665 + components: + - pos: 26.5,34.5 + parent: 6747 + type: Transform + - uid: 8709 + components: + - pos: 33.5,20.5 + parent: 6747 + type: Transform + - uid: 8735 + components: + - pos: 61.5,24.5 + parent: 6747 + type: Transform - uid: 9048 components: - pos: 52.5,-22.5 @@ -160016,16 +169523,6 @@ entities: - pos: 61.5,-7.5 parent: 6747 type: Transform - - uid: 11130 - components: - - pos: 52.5,22.5 - parent: 6747 - type: Transform - - uid: 11131 - components: - - pos: 55.5,22.5 - parent: 6747 - type: Transform - uid: 11153 components: - pos: 36.5,-89.5 @@ -160061,6 +169558,11 @@ entities: - pos: -50.5,-10.5 parent: 6747 type: Transform + - uid: 11585 + components: + - pos: 37.5,14.5 + parent: 6747 + type: Transform - uid: 11634 components: - pos: -7.5,-87.5 @@ -160071,6 +169573,31 @@ entities: - pos: -7.5,-86.5 parent: 6747 type: Transform + - uid: 11916 + components: + - pos: 20.5,26.5 + parent: 6747 + type: Transform + - uid: 12622 + components: + - pos: 36.5,23.5 + parent: 6747 + type: Transform + - uid: 12624 + components: + - pos: 32.5,23.5 + parent: 6747 + type: Transform + - uid: 12625 + components: + - pos: 33.5,23.5 + parent: 6747 + type: Transform + - uid: 12626 + components: + - pos: 34.5,23.5 + parent: 6747 + type: Transform - uid: 12649 components: - pos: -17.5,-40.5 @@ -160086,6 +169613,91 @@ entities: - pos: -15.5,-40.5 parent: 6747 type: Transform + - uid: 12854 + components: + - pos: 35.5,23.5 + parent: 6747 + type: Transform + - uid: 12855 + components: + - pos: 37.5,23.5 + parent: 6747 + type: Transform + - uid: 12856 + components: + - pos: 38.5,23.5 + parent: 6747 + type: Transform + - uid: 12857 + components: + - pos: 39.5,23.5 + parent: 6747 + type: Transform + - uid: 12858 + components: + - pos: 39.5,24.5 + parent: 6747 + type: Transform + - uid: 12859 + components: + - pos: 39.5,25.5 + parent: 6747 + type: Transform + - uid: 12860 + components: + - pos: 39.5,26.5 + parent: 6747 + type: Transform + - uid: 12861 + components: + - pos: 39.5,27.5 + parent: 6747 + type: Transform + - uid: 12867 + components: + - pos: 56.5,23.5 + parent: 6747 + type: Transform + - uid: 12868 + components: + - pos: 56.5,24.5 + parent: 6747 + type: Transform + - uid: 12869 + components: + - pos: 56.5,25.5 + parent: 6747 + type: Transform + - uid: 12870 + components: + - pos: 56.5,27.5 + parent: 6747 + type: Transform + - uid: 12876 + components: + - pos: 44.5,29.5 + parent: 6747 + type: Transform + - uid: 12893 + components: + - pos: 31.5,27.5 + parent: 6747 + type: Transform + - uid: 12898 + components: + - pos: 31.5,24.5 + parent: 6747 + type: Transform + - uid: 12899 + components: + - pos: 31.5,23.5 + parent: 6747 + type: Transform + - uid: 12902 + components: + - pos: 37.5,5.5 + parent: 6747 + type: Transform - uid: 12938 components: - pos: -14.5,-40.5 @@ -160151,6 +169763,16 @@ entities: - pos: -43.5,11.5 parent: 6747 type: Transform + - uid: 13440 + components: + - pos: 64.5,14.5 + parent: 6747 + type: Transform + - uid: 13467 + components: + - pos: 61.5,14.5 + parent: 6747 + type: Transform - uid: 15561 components: - pos: -48.5,-6.5 @@ -160181,6 +169803,11 @@ entities: - pos: 40.5,-55.5 parent: 6747 type: Transform + - uid: 17649 + components: + - pos: 6.5,31.5 + parent: 6747 + type: Transform - uid: 20287 components: - pos: -50.5,-6.5 @@ -160226,6 +169853,11 @@ entities: - pos: 19.5,4.5 parent: 6747 type: Transform + - uid: 22056 + components: + - pos: 56.5,28.5 + parent: 6747 + type: Transform - uid: 25465 components: - pos: -64.5,17.5 @@ -160241,6 +169873,11 @@ entities: - pos: -78.5,3.5 parent: 6747 type: Transform + - uid: 27023 + components: + - pos: 6.5,28.5 + parent: 6747 + type: Transform - proto: WallSolidRust entities: - uid: 7105 @@ -160791,14 +170428,24 @@ entities: type: Transform - proto: WardrobeCargoFilled entities: - - uid: 6191 + - uid: 6442 components: - - pos: 54.5,18.5 + - pos: 16.5,24.5 parent: 6747 type: Transform - - uid: 6194 + - uid: 6456 components: - - pos: 53.5,18.5 + - pos: 18.5,24.5 + parent: 6747 + type: Transform + - uid: 8376 + components: + - pos: 18.5,26.5 + parent: 6747 + type: Transform + - uid: 8378 + components: + - pos: 16.5,26.5 parent: 6747 type: Transform - proto: WardrobeChapelFilled @@ -160861,28 +170508,53 @@ entities: type: ContainerContainer - proto: WardrobePrisonFilled entities: - - uid: 9386 + - uid: 199 components: - - pos: -48.5,-1.5 + - pos: -26.5,1.5 parent: 6747 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: - - 16181 - - 16182 - - 16183 - - 16184 + - 200 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null type: ContainerContainer - - uid: 9387 + - uid: 209 components: - - pos: -46.5,-1.5 + - pos: -26.5,4.5 + parent: 6747 + type: Transform + - uid: 3185 + components: + - pos: -26.5,7.5 + parent: 6747 + type: Transform + - uid: 9386 + components: + - pos: -48.5,-1.5 parent: 6747 type: Transform - containers: @@ -160890,15 +170562,18 @@ entities: showEnts: False occludes: True ents: - - 16185 + - 16181 + - 16182 + - 16183 + - 16184 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null type: ContainerContainer - - uid: 9388 + - uid: 9387 components: - - pos: -44.5,-1.5 + - pos: -46.5,-1.5 parent: 6747 type: Transform - containers: @@ -160906,15 +170581,15 @@ entities: showEnts: False occludes: True ents: - - 16186 + - 16185 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null type: ContainerContainer - - uid: 9402 + - uid: 9388 components: - - pos: -25.5,2.5 + - pos: -44.5,-1.5 parent: 6747 type: Transform - containers: @@ -160922,22 +170597,12 @@ entities: showEnts: False occludes: True ents: - - 16187 + - 16186 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null type: ContainerContainer - - uid: 9403 - components: - - pos: -22.5,2.5 - parent: 6747 - type: Transform - - uid: 9404 - components: - - pos: -19.5,2.5 - parent: 6747 - type: Transform - proto: WarningAir entities: - uid: 7583 @@ -161090,35 +170755,6 @@ entities: - text: dorms type: NavMapBeacon - type: BombingTarget - - uid: 22379 - components: - - pos: 24.5,27.5 - parent: 6747 - type: Transform - - location: Engineering - type: WarpPoint - - uid: 22381 - components: - - pos: 47.5,12.5 - parent: 6747 - type: Transform - - location: Cargo - type: WarpPoint - - color: '#A46106FF' - text: cargo-mailroom - type: NavMapBeacon - - type: BombingTarget - - uid: 22382 - components: - - pos: 6.5,33.5 - parent: 6747 - type: Transform - - location: Salvage - type: WarpPoint - - color: '#EFB341FF' - text: salvage - type: NavMapBeacon - - type: BombingTarget - uid: 24100 components: - rot: 1.5707963267948966 rad @@ -161211,6 +170847,11 @@ entities: - pos: 15.5,4.5 parent: 6747 type: Transform + - uid: 8244 + components: + - pos: 4.5,27.5 + parent: 6747 + type: Transform - uid: 8717 components: - pos: 17.5,4.5 @@ -161272,6 +170913,11 @@ entities: - pos: -9.5,-58.5 parent: 6747 type: Transform + - uid: 8367 + components: + - pos: 41.5,15.5 + parent: 6747 + type: Transform - uid: 8651 components: - pos: 12.5,24.5 @@ -161368,6 +171014,11 @@ entities: - pos: 32.5,31.5 parent: 6747 type: Transform + - uid: 8270 + components: + - pos: 60.5,25.5 + parent: 6747 + type: Transform - uid: 11258 components: - pos: 3.5,-82.5 @@ -161395,11 +171046,6 @@ entities: - pos: -1.5,2.5 parent: 6747 type: Transform - - uid: 8289 - components: - - pos: 16.5,13.5 - parent: 6747 - type: Transform - uid: 10165 components: - rot: 3.141592653589793 rad @@ -161520,6 +171166,12 @@ entities: - type: InsideEntityStorage - proto: Welder entities: + - uid: 8172 + components: + - rot: -1.5707963267948966 rad + pos: 73.620026,20.700699 + parent: 6747 + type: Transform - uid: 8177 components: - pos: 56.563774,44.577137 @@ -161551,6 +171203,16 @@ entities: - pos: 51.5,-39.5 parent: 6747 type: Transform + - uid: 11985 + components: + - pos: 38.5,25.5 + parent: 6747 + type: Transform + - uid: 22047 + components: + - pos: 54.5,15.5 + parent: 6747 + type: Transform - proto: WeldingFuelTankFull entities: - uid: 5073 @@ -161578,11 +171240,6 @@ entities: - pos: 53.5,-25.5 parent: 6747 type: Transform - - uid: 11145 - components: - - pos: 52.5,25.5 - parent: 6747 - type: Transform - uid: 11347 components: - pos: -23.5,14.5 @@ -161598,9 +171255,9 @@ entities: - pos: 31.5,-89.5 parent: 6747 type: Transform - - uid: 16918 + - uid: 12027 components: - - pos: 32.5,14.5 + - pos: 70.5,21.5 parent: 6747 type: Transform - proto: WetFloorSign @@ -161701,6 +171358,14 @@ entities: pos: 60.5,-52.5 parent: 6747 type: Transform +- proto: WindoorCargoLocked + entities: + - uid: 6650 + components: + - rot: 3.141592653589793 rad + pos: 27.5,14.5 + parent: 6747 + type: Transform - proto: WindoorHydroponicsLocked entities: - uid: 749 @@ -161744,8 +171409,34 @@ entities: pos: -9.5,-26.5 parent: 6747 type: Transform +- proto: WindoorMailLocked + entities: + - uid: 8308 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,13.5 + parent: 6747 + type: Transform - proto: WindoorSecure entities: + - uid: 512 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,2.5 + parent: 6747 + type: Transform + - uid: 1300 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,5.5 + parent: 6747 + type: Transform + - uid: 1390 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,8.5 + parent: 6747 + type: Transform - uid: 1564 components: - rot: 3.141592653589793 rad @@ -161776,24 +171467,6 @@ entities: pos: -39.5,8.5 parent: 6747 type: Transform - - uid: 2770 - components: - - rot: 3.141592653589793 rad - pos: -25.5,0.5 - parent: 6747 - type: Transform - - uid: 2771 - components: - - rot: 3.141592653589793 rad - pos: -22.5,0.5 - parent: 6747 - type: Transform - - uid: 2772 - components: - - rot: 3.141592653589793 rad - pos: -19.5,0.5 - parent: 6747 - type: Transform - uid: 3870 components: - rot: -1.5707963267948966 rad @@ -161821,28 +171494,12 @@ entities: - pos: -43.5,0.5 parent: 6747 type: Transform - - uid: 8704 - components: - - pos: 38.5,14.5 - parent: 6747 - type: Transform - - uid: 8709 - components: - - pos: 26.5,12.5 - parent: 6747 - type: Transform - uid: 8736 components: - rot: -1.5707963267948966 rad pos: 38.5,-32.5 parent: 6747 type: Transform - - uid: 8737 - components: - - rot: -1.5707963267948966 rad - pos: 42.5,11.5 - parent: 6747 - type: Transform - uid: 8738 components: - rot: -1.5707963267948966 rad @@ -161866,6 +171523,11 @@ entities: pos: -42.5,11.5 parent: 6747 type: Transform + - uid: 22048 + components: + - pos: 43.5,22.5 + parent: 6747 + type: Transform - uid: 25407 components: - pos: -54.5,-6.5 @@ -161932,20 +171594,6 @@ entities: pos: -8.5,-44.5 parent: 6747 type: Transform -- proto: WindoorSecureCargoLocked - entities: - - uid: 6728 - components: - - rot: 1.5707963267948966 rad - pos: 42.5,11.5 - parent: 6747 - type: Transform - - uid: 8742 - components: - - rot: 3.141592653589793 rad - pos: 38.5,14.5 - parent: 6747 - type: Transform - proto: WindoorSecureChemistryLocked entities: - uid: 3757 @@ -161960,6 +171608,11 @@ entities: pos: 14.5,-24.5 parent: 6747 type: Transform + - uid: 26914 + components: + - pos: 12.5,-21.5 + parent: 6747 + type: Transform - proto: WindoorSecureCommandLocked entities: - uid: 3355 @@ -162016,10 +171669,10 @@ entities: type: Transform - proto: WindoorSecureEngineeringLocked entities: - - uid: 836 + - uid: 12992 components: - - rot: 3.141592653589793 rad - pos: 26.5,12.5 + - rot: 1.5707963267948966 rad + pos: 42.5,11.5 parent: 6747 type: Transform - proto: WindoorSecureJanitorLocked @@ -162165,11 +171818,29 @@ entities: type: Transform - proto: WindoorSecureSecurityLocked entities: + - uid: 139 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,5.5 + parent: 6747 + type: Transform + - uid: 286 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,2.5 + parent: 6747 + type: Transform - uid: 290 components: - pos: -2.5,2.5 parent: 6747 type: Transform + - uid: 440 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,8.5 + parent: 6747 + type: Transform - uid: 506 components: - pos: -0.5,2.5 @@ -162209,21 +171880,6 @@ entities: pos: -9.5,-39.5 parent: 6747 type: Transform - - uid: 2934 - components: - - pos: -22.5,0.5 - parent: 6747 - type: Transform - - uid: 2971 - components: - - pos: -25.5,0.5 - parent: 6747 - type: Transform - - uid: 2972 - components: - - pos: -19.5,0.5 - parent: 6747 - type: Transform - uid: 5585 components: - rot: 1.5707963267948966 rad @@ -162358,19 +172014,9 @@ entities: - pos: 38.5,-48.5 parent: 6747 type: Transform - - uid: 897 - components: - - pos: 23.5,15.5 - parent: 6747 - type: Transform - - uid: 1076 - components: - - pos: 14.5,23.5 - parent: 6747 - type: Transform - - uid: 1086 + - uid: 953 components: - - pos: 13.5,23.5 + - pos: 58.5,24.5 parent: 6747 type: Transform - uid: 1445 @@ -162503,6 +172149,11 @@ entities: - pos: 30.5,-30.5 parent: 6747 type: Transform + - uid: 2168 + components: + - pos: 28.5,14.5 + parent: 6747 + type: Transform - uid: 2276 components: - pos: -5.5,-55.5 @@ -162638,26 +172289,6 @@ entities: - pos: 15.5,-35.5 parent: 6747 type: Transform - - uid: 3286 - components: - - pos: 42.5,10.5 - parent: 6747 - type: Transform - - uid: 3294 - components: - - pos: 37.5,14.5 - parent: 6747 - type: Transform - - uid: 3295 - components: - - pos: 39.5,14.5 - parent: 6747 - type: Transform - - uid: 3302 - components: - - pos: 42.5,12.5 - parent: 6747 - type: Transform - uid: 3358 components: - pos: 28.5,-16.5 @@ -162733,6 +172364,16 @@ entities: - pos: 8.5,-64.5 parent: 6747 type: Transform + - uid: 4367 + components: + - pos: 31.5,12.5 + parent: 6747 + type: Transform + - uid: 4375 + components: + - pos: 30.5,12.5 + parent: 6747 + type: Transform - uid: 4459 components: - pos: -6.5,-55.5 @@ -162863,6 +172504,16 @@ entities: - pos: 67.5,-26.5 parent: 6747 type: Transform + - uid: 6404 + components: + - pos: 51.5,14.5 + parent: 6747 + type: Transform + - uid: 6441 + components: + - pos: 53.5,14.5 + parent: 6747 + type: Transform - uid: 6453 components: - pos: 71.5,-26.5 @@ -162888,79 +172539,94 @@ entities: - pos: 53.5,-26.5 parent: 6747 type: Transform - - uid: 6611 + - uid: 6652 components: - - pos: 31.5,25.5 + - pos: 29.5,14.5 parent: 6747 type: Transform - - uid: 6612 + - uid: 6871 components: - - pos: 31.5,27.5 + - pos: 30.5,18.5 parent: 6747 type: Transform - - uid: 6849 + - uid: 8168 components: - - pos: 24.5,8.5 + - pos: 56.5,15.5 parent: 6747 type: Transform - - uid: 7079 + - uid: 8294 components: - - pos: 23.5,8.5 + - pos: 26.5,14.5 parent: 6747 type: Transform - - uid: 8291 + - uid: 8382 components: - - pos: 25.5,23.5 + - pos: 30.5,16.5 parent: 6747 type: Transform - - uid: 8292 + - uid: 8410 components: - - pos: 24.5,18.5 + - pos: 13.5,29.5 parent: 6747 type: Transform - - uid: 8293 + - uid: 8411 components: - - pos: 22.5,23.5 + - pos: 12.5,29.5 parent: 6747 type: Transform - - uid: 8313 + - uid: 8413 components: - - pos: 22.5,30.5 + - pos: 10.5,29.5 parent: 6747 type: Transform - - uid: 8314 + - uid: 8626 components: - - pos: 25.5,30.5 + - pos: 18.5,7.5 parent: 6747 type: Transform - - uid: 8381 + - uid: 8993 components: - - pos: 23.5,13.5 + - pos: 22.5,-4.5 parent: 6747 type: Transform - - uid: 8382 + - uid: 10479 components: - - pos: 23.5,14.5 + - pos: -58.5,7.5 parent: 6747 type: Transform - - uid: 8626 + - uid: 10480 components: - - pos: 18.5,7.5 + - pos: -61.5,7.5 parent: 6747 type: Transform - - uid: 8993 + - uid: 11141 components: - - pos: 22.5,-4.5 + - pos: 59.5,24.5 parent: 6747 type: Transform - - uid: 10479 + - uid: 11155 components: - - pos: -58.5,7.5 + - pos: 58.5,14.5 parent: 6747 type: Transform - - uid: 10480 + - uid: 11159 components: - - pos: -61.5,7.5 + - pos: 57.5,14.5 + parent: 6747 + type: Transform + - uid: 11917 + components: + - pos: 60.5,24.5 + parent: 6747 + type: Transform + - uid: 12862 + components: + - pos: 59.5,14.5 + parent: 6747 + type: Transform + - uid: 12896 + components: + - pos: 57.5,24.5 parent: 6747 type: Transform - uid: 12952 @@ -162983,9 +172649,24 @@ entities: - pos: -56.5,5.5 parent: 6747 type: Transform - - uid: 13104 + - uid: 13439 components: - - pos: 56.5,15.5 + - pos: 60.5,14.5 + parent: 6747 + type: Transform + - uid: 13471 + components: + - pos: 64.5,15.5 + parent: 6747 + type: Transform + - uid: 13473 + components: + - pos: 64.5,17.5 + parent: 6747 + type: Transform + - uid: 13474 + components: + - pos: 64.5,18.5 parent: 6747 type: Transform - uid: 15083 @@ -163233,6 +172914,16 @@ entities: - pos: -62.5,5.5 parent: 6747 type: Transform + - uid: 17242 + components: + - pos: 64.5,11.5 + parent: 6747 + type: Transform + - uid: 17248 + components: + - pos: 64.5,13.5 + parent: 6747 + type: Transform - uid: 17267 components: - pos: 48.5,-48.5 @@ -163585,6 +173276,18 @@ entities: - pos: 53.5,-50.5 parent: 6747 type: Transform + - uid: 22204 + components: + - rot: 3.141592653589793 rad + pos: 23.5,8.5 + parent: 6747 + type: Transform + - uid: 22205 + components: + - rot: 3.141592653589793 rad + pos: 24.5,8.5 + parent: 6747 + type: Transform - proto: WindowReinforcedDirectional entities: - uid: 680 @@ -163725,6 +173428,12 @@ entities: pos: -26.5,-13.5 parent: 6747 type: Transform + - uid: 2166 + components: + - rot: 3.141592653589793 rad + pos: 66.5,4.5 + parent: 6747 + type: Transform - uid: 2953 components: - pos: -24.5,-34.5 @@ -163740,6 +173449,12 @@ entities: - pos: -24.5,-36.5 parent: 6747 type: Transform + - uid: 3273 + components: + - rot: 3.141592653589793 rad + pos: 67.5,4.5 + parent: 6747 + type: Transform - uid: 3687 components: - rot: -1.5707963267948966 rad @@ -163796,6 +173511,12 @@ entities: pos: 70.5,-8.5 parent: 6747 type: Transform + - uid: 6913 + components: + - rot: 3.141592653589793 rad + pos: 65.5,4.5 + parent: 6747 + type: Transform - uid: 8785 components: - pos: -44.5,7.5 @@ -164385,108 +174106,52 @@ entities: pos: 47.5,-43.5 parent: 6747 type: Transform - - uid: 17019 - components: - - rot: -1.5707963267948966 rad - pos: 57.5,34.5 - parent: 6747 - type: Transform - - uid: 17020 - components: - - rot: -1.5707963267948966 rad - pos: 57.5,33.5 - parent: 6747 - type: Transform - - uid: 17021 - components: - - rot: -1.5707963267948966 rad - pos: 57.5,32.5 - parent: 6747 - type: Transform - - uid: 17022 - components: - - rot: -1.5707963267948966 rad - pos: 57.5,31.5 - parent: 6747 - type: Transform - - uid: 17026 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,39.5 - parent: 6747 - type: Transform - - uid: 17027 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,40.5 - parent: 6747 - type: Transform - - uid: 17028 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,41.5 - parent: 6747 - type: Transform - - uid: 17029 - components: - - rot: 1.5707963267948966 rad - pos: 13.5,42.5 - parent: 6747 - type: Transform - - uid: 17030 - components: - - pos: 16.5,45.5 - parent: 6747 - type: Transform - - uid: 17031 - components: - - pos: 17.5,45.5 - parent: 6747 - type: Transform - - uid: 17032 - components: - - pos: 18.5,45.5 - parent: 6747 - type: Transform - - uid: 17033 + - uid: 17580 components: - - pos: 19.5,45.5 + - rot: 3.141592653589793 rad + pos: 46.5,-31.5 parent: 6747 type: Transform - - uid: 17034 + - uid: 17629 components: - - pos: 22.5,45.5 + - rot: 3.141592653589793 rad + pos: 71.5,4.5 parent: 6747 type: Transform - - uid: 17036 + - uid: 17630 components: - - pos: 23.5,45.5 + - rot: 3.141592653589793 rad + pos: 72.5,4.5 parent: 6747 type: Transform - - uid: 17038 + - uid: 17631 components: - - pos: 24.5,45.5 + - rot: 3.141592653589793 rad + pos: 73.5,4.5 parent: 6747 type: Transform - - uid: 17040 + - uid: 17632 components: - - pos: 25.5,45.5 + - rot: -1.5707963267948966 rad + pos: 76.5,6.5 parent: 6747 type: Transform - - uid: 17042 + - uid: 17633 components: - - pos: 26.5,45.5 + - rot: -1.5707963267948966 rad + pos: 76.5,7.5 parent: 6747 type: Transform - - uid: 17044 + - uid: 17634 components: - - pos: 27.5,45.5 + - rot: -1.5707963267948966 rad + pos: 76.5,8.5 parent: 6747 type: Transform - - uid: 17580 + - uid: 17635 components: - - rot: 3.141592653589793 rad - pos: 46.5,-31.5 + - rot: -1.5707963267948966 rad + pos: 76.5,9.5 parent: 6747 type: Transform - uid: 17973 @@ -164513,6 +174178,21 @@ entities: pos: 53.5,-43.5 parent: 6747 type: Transform + - uid: 23655 + components: + - pos: 10.5,-21.5 + parent: 6747 + type: Transform + - uid: 26190 + components: + - pos: 13.5,-21.5 + parent: 6747 + type: Transform + - uid: 26333 + components: + - pos: 11.5,-21.5 + parent: 6747 + type: Transform - proto: WindowTintedDirectional entities: - uid: 368 @@ -164883,6 +174563,32 @@ entities: - pos: -30.49813,-24.508558 parent: 6747 type: Transform +- proto: WoodenSupportBeam + entities: + - uid: 26882 + components: + - pos: -42.5,-55.5 + parent: 6747 + type: Transform + - uid: 26883 + components: + - pos: -39.5,-62.5 + parent: 6747 + type: Transform +- proto: WoodenSupportWall + entities: + - uid: 26886 + components: + - pos: -14.5,18.5 + parent: 6747 + type: Transform +- proto: WoodenSupportWallBroken + entities: + - uid: 26884 + components: + - pos: -25.5,-70.5 + parent: 6747 + type: Transform - proto: Wrench entities: - uid: 3549 @@ -164890,9 +174596,10 @@ entities: - pos: 33.392857,-43.37284 parent: 6747 type: Transform - - uid: 7063 + - uid: 6684 components: - - pos: 54.968307,6.578846 + - rot: -1.5707963267948966 rad + pos: 15.599778,15.603129 parent: 6747 type: Transform - uid: 7173 diff --git a/Resources/Maps/asterisk.yml b/Resources/Maps/asterisk.yml new file mode 100644 index 0000000000..e105eb29b3 --- /dev/null +++ b/Resources/Maps/asterisk.yml @@ -0,0 +1,70161 @@ +meta: + format: 6 + postmapinit: false +tilemap: + 0: Space + 1: FloorArcadeBlue + 3: FloorArcadeRed + 11: FloorAsteroidTile + 12: FloorBar + 15: FloorBlueCircuit + 16: FloorBoxing + 17: FloorBrokenWood + 18: FloorCarpetClown + 19: FloorCarpetOffice + 25: FloorConcreteMono + 27: FloorDark + 32: FloorDarkMono + 39: FloorEighties + 42: FloorFreezer + 43: FloorGlass + 45: FloorGrass + 49: FloorGrayConcrete + 50: FloorGrayConcreteMono + 52: FloorGreenCircuit + 54: FloorHull + 55: FloorHullReinforced + 56: FloorHydro + 58: FloorKitchen + 59: FloorLaundry + 60: FloorLino + 62: FloorMetalDiamond + 63: FloorMime + 64: FloorMono + 66: FloorOldConcreteMono + 71: FloorRGlass + 72: FloorReinforced + 73: FloorReinforcedHardened + 82: FloorSnow + 83: FloorSnowDug + 84: FloorSteel + 85: FloorSteelCheckerDark + 89: FloorSteelDirty + 94: FloorSteelPavement + 96: FloorTechMaint + 97: FloorTechMaint2 + 98: FloorTechMaint3 + 100: FloorWhite + 104: FloorWhiteMini + 110: FloorWood + 111: FloorWoodTile + 112: Lattice + 113: Plating +entities: +- proto: "" + entities: + - uid: 1 + components: + - type: MetaData + - type: Transform + - type: Map + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree + - parallax: AngleStation + type: Parallax + - type: LoadedMap + - uid: 2 + components: + - type: MetaData + - pos: -0.5104167,-0.4739367 + parent: 1 + type: Transform + - chunks: + 0,0: + ind: 0,0 + tiles: VAAAAAADVAAAAAAAVAAAAAACVAAAAAACYAAAAAAAVAAAAAACKwAAAAACVAAAAAABVAAAAAADcQAAAAAAGwAAAAABGwAAAAACGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAKwAAAAADKwAAAAADVAAAAAABYAAAAAAAVAAAAAADVAAAAAADKwAAAAACVAAAAAACYAAAAAAAbgAAAAACbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAcQAAAAAAVAAAAAADKwAAAAAAVAAAAAADVAAAAAAAcQAAAAAAbgAAAAACbgAAAAACbgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAKwAAAAACVAAAAAACYAAAAAAAGwAAAAABGwAAAAACGwAAAAADYQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAABcQAAAAAAGwAAAAACGwAAAAABGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAABYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAACwAAAAAACwAAAAAACwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAADcQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADYAAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADVAAAAAACcQAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAACwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAABVAAAAAABYAAAAAAAbgAAAAACbgAAAAABbgAAAAACbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABSAAAAAAASAAAAAAASAAAAAAAVAAAAAACVAAAAAADcQAAAAAAbgAAAAABbgAAAAABbgAAAAACbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAbgAAAAADbgAAAAAAbgAAAAAAbgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: cQAAAAAAcQAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAABcQAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAAAYAAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAVAAAAAABKwAAAAADVAAAAAABVAAAAAAAYAAAAAAAVAAAAAAAKwAAAAADKwAAAAADVAAAAAABcQAAAAAAYgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADKwAAAAAAVAAAAAAAVAAAAAADcQAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAADcQAAAAAAYgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAVAAAAAABVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAVAAAAAABVAAAAAABVAAAAAADcQAAAAAAVAAAAAABKwAAAAACKwAAAAADVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAADYAAAAAAAVAAAAAADKwAAAAADKwAAAAACVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAABGwAAAAACcQAAAAAAVAAAAAACKwAAAAABVAAAAAACcQAAAAAAVAAAAAADVAAAAAABVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACKwAAAAAAGwAAAAABcQAAAAAAVAAAAAADKwAAAAAAVAAAAAADcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADKwAAAAACGwAAAAABcQAAAAAAVAAAAAAAVAAAAAABVAAAAAABcQAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAGwAAAAADGwAAAAACGwAAAAAAYAAAAAAAVAAAAAABVAAAAAABVAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAAAbgAAAAAAcQAAAAAAVAAAAAADKwAAAAACVAAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAABVAAAAAACcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAKwAAAAACVAAAAAACcQAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAADcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAYAAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAACcQAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAADOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: cQAAAAAADAAAAAAAKwAAAAAAKwAAAAADDAAAAAAAKwAAAAAADAAAAAADKwAAAAABKwAAAAAADAAAAAADYAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAcQAAAAAADAAAAAACDAAAAAAADAAAAAACDAAAAAADDAAAAAAADAAAAAACDAAAAAAADAAAAAABDAAAAAABcQAAAAAAOAAAAAAAOAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAABVAAAAAABVAAAAAABVAAAAAACVAAAAAACVAAAAAACYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAACKwAAAAAAVAAAAAADVAAAAAADKwAAAAADKwAAAAADVAAAAAADVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAADVAAAAAAAKwAAAAACVAAAAAADcQAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAADVAAAAAABcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACKwAAAAACVAAAAAABcQAAAAAAVAAAAAADKwAAAAADKwAAAAABKwAAAAABVAAAAAACcQAAAAAASQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAABVAAAAAADcQAAAAAASQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAARwAAAAAARwAAAAABcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADKwAAAAABVAAAAAADYAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAADVAAAAAAAMQAAAAAAMQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAKwAAAAAAVAAAAAABcQAAAAAAVAAAAAADVAAAAAAAKwAAAAABKwAAAAAAVAAAAAABVAAAAAABSAAAAAAAMQAAAAADcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAACYAAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAACVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACKwAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAVAAAAAABVAAAAAABKwAAAAACVAAAAAADcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADKwAAAAACVAAAAAABcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAADcQAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAYQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAYAAAAAAAVAAAAAACVAAAAAAAVAAAAAACYAAAAAAAVAAAAAABKwAAAAAAKwAAAAADVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAOAAAAAAAOAAAAAAALQAAAAAALQAAAAAAcQAAAAAAVAAAAAACKwAAAAABVAAAAAABYAAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAOAAAAAAAOAAAAAAALQAAAAAALQAAAAAAcQAAAAAAVAAAAAAAKwAAAAADVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYQAAAAAAcQAAAAAAOAAAAAAAOAAAAAAALQAAAAAALQAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAABcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAASQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAABcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAASQAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAACVAAAAAABcQAAAAAAVAAAAAACVAAAAAACKwAAAAABVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARwAAAAABRwAAAAABVAAAAAAAVAAAAAAAKwAAAAAAKwAAAAACVAAAAAACYAAAAAAAVAAAAAADVAAAAAAAKwAAAAACVAAAAAACcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAMQAAAAABMQAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAACVAAAAAACcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAMQAAAAAASAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAAAGwAAAAADGwAAAAADGwAAAAACcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYgAAAAAAGwAAAAAAGwAAAAABGwAAAAADcQAAAAAAVAAAAAADKwAAAAABVAAAAAABcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYgAAAAAAGwAAAAABGwAAAAACGwAAAAABYAAAAAAAVAAAAAAAKwAAAAACVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + version: 6 + -2,-1: + ind: -2,-1 + tiles: XgAAAAABXgAAAAADXgAAAAACXgAAAAACXgAAAAABXgAAAAADcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAXgAAAAABXgAAAAACcQAAAAAAGwAAAAABcQAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAXgAAAAACcQAAAAAAGwAAAAAAcQAAAAAAGwAAAAABYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAXgAAAAACcQAAAAAAGwAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAXgAAAAABcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAXgAAAAAAXgAAAAAAYAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAAAKwAAAAACKwAAAAADVAAAAAACYQAAAAAAcQAAAAAAXgAAAAADXgAAAAADXgAAAAACXgAAAAABXgAAAAAAXgAAAAABYAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAAAKwAAAAACKwAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAKwAAAAADKwAAAAADVAAAAAAAVAAAAAADKwAAAAABKwAAAAABVAAAAAADVAAAAAACKwAAAAADKwAAAAADVAAAAAACVAAAAAACKwAAAAACKwAAAAABVAAAAAABVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACbgAAAAACbgAAAAADKwAAAAACbgAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAADKwAAAAACVAAAAAABVAAAAAACKwAAAAACVAAAAAADcQAAAAAAYQAAAAAAbgAAAAACbgAAAAABKwAAAAAAbgAAAAAAcQAAAAAAVAAAAAADVAAAAAACcQAAAAAAVAAAAAABKwAAAAADVAAAAAADVAAAAAABKwAAAAABVAAAAAACcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAACbgAAAAABbgAAAAADYAAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAAAKwAAAAAAVAAAAAACVAAAAAADKwAAAAAAVAAAAAADYQAAAAAAcQAAAAAA + version: 6 + 1,-1: + ind: 1,-1 + tiles: OAAAAAAAOAAAAAAAcQAAAAAAaAAAAAAAaAAAAAACaAAAAAABaAAAAAADcQAAAAAAZAAAAAADZAAAAAAAKwAAAAACZAAAAAAAKwAAAAAAZAAAAAAAKwAAAAAAZAAAAAADYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAKwAAAAADKwAAAAABcQAAAAAAZAAAAAABZAAAAAABZAAAAAAAZAAAAAABZAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAADZAAAAAADZAAAAAACZAAAAAAAZAAAAAACZAAAAAADZAAAAAABcQAAAAAAZAAAAAACZAAAAAADZAAAAAACZAAAAAAAZAAAAAABcQAAAAAAcQAAAAAAYQAAAAAAZAAAAAAAZAAAAAABZAAAAAADZAAAAAAAZAAAAAADZAAAAAABZAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAACKwAAAAACKwAAAAAAZAAAAAADZAAAAAABKwAAAAABZAAAAAABcQAAAAAAZAAAAAABZAAAAAABZAAAAAACZAAAAAAAZAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAKwAAAAABKwAAAAABZAAAAAABZAAAAAAAKwAAAAABZAAAAAABKwAAAAADZAAAAAAAZAAAAAADZAAAAAADZAAAAAABZAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAADZAAAAAABZAAAAAACZAAAAAABZAAAAAAAZAAAAAADZAAAAAABcQAAAAAAZAAAAAABZAAAAAAAZAAAAAAAZAAAAAABZAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAAAcQAAAAAAcQAAAAAAZAAAAAADZAAAAAACZAAAAAABZAAAAAAAZAAAAAADcQAAAAAAYQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAADKwAAAAADcQAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACYAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAABKwAAAAADKwAAAAAAVAAAAAACVAAAAAADKwAAAAADKwAAAAACVAAAAAAAVAAAAAADKwAAAAAAKwAAAAADVAAAAAAAcQAAAAAAVAAAAAADKwAAAAACKwAAAAAAKwAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAABVAAAAAADVAAAAAADVAAAAAADYAAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAABcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAABVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAABcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAACVAAAAAACVAAAAAADYAAAAAAAGwAAAAADGwAAAAACGwAAAAADcQAAAAAAGwAAAAADRwAAAAADVAAAAAACSAAAAAAAcQAAAAAAKwAAAAADKwAAAAABVAAAAAABVAAAAAABKwAAAAAAKwAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAAAYAAAAAAAGwAAAAAAVAAAAAABRwAAAAACGwAAAAAB + version: 6 + -1,-2: + ind: -1,-2 + tiles: VQAAAAADSAAAAAAAVQAAAAAASAAAAAAAcQAAAAAAVAAAAAADKwAAAAAAKwAAAAABKwAAAAADVAAAAAACYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAABGwAAAAAAYAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAIAAAAAACIAAAAAACIAAAAAACIAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAADVAAAAAADcQAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAcQAAAAAAYQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAYAAAAAAAVAAAAAADKwAAAAADKwAAAAABKwAAAAAAVAAAAAACYAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAYAAAAAAAcQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAABVAAAAAACcQAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADKwAAAAADKwAAAAABKwAAAAADVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACKwAAAAADKwAAAAABKwAAAAACVAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAYQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAYAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAADVAAAAAADcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAABcQAAAAAAVAAAAAABVAAAAAACVAAAAAABcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAYQAAAAAAbgAAAAABbgAAAAADbgAAAAABbgAAAAADYAAAAAAAVAAAAAADKwAAAAADVAAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAACcQAAAAAAVAAAAAABKwAAAAADVAAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAACYAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAGwAAAAACGwAAAAABGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAGwAAAAABKwAAAAADGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAAAYgAAAAADYgAAAAABcQAAAAAAcQAAAAAAKwAAAAADGwAAAAABKwAAAAADcQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABKwAAAAADGwAAAAAAYAAAAAAAKwAAAAADKwAAAAABKwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAADGwAAAAAAcQAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAADAAAAAABbgAAAAADbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAADAAAAAADDAAAAAADcQAAAAAADAAAAAAADAAAAAAADAAAAAADDAAAAAACDAAAAAABDAAAAAADcQAAAAAADAAAAAACbgAAAAACbgAAAAABcQAAAAAAcQAAAAAAKgAAAAAADAAAAAABDAAAAAABYAAAAAAADAAAAAADDAAAAAABDAAAAAABDAAAAAAADAAAAAACDAAAAAAAYAAAAAAADAAAAAAAbgAAAAABbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAADAAAAAACDAAAAAADcQAAAAAADAAAAAACDAAAAAACDAAAAAABDAAAAAACDAAAAAACDAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAADAAAAAABDAAAAAABcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAOAAAAAAAGQAAAAAAGQAAAAACGQAAAAAAGQAAAAADcQAAAAAADAAAAAAADAAAAAACDAAAAAABDAAAAAAADAAAAAAADAAAAAACDAAAAAADDAAAAAAADAAAAAACcQAAAAAAOAAAAAAAGQAAAAABGQAAAAABGQAAAAABGQAAAAABcQAAAAAADAAAAAADKwAAAAACKwAAAAADDAAAAAACKwAAAAADDAAAAAABKwAAAAAAKwAAAAACDAAAAAAAYAAAAAAAOAAAAAAAGQAAAAADGQAAAAADGQAAAAAAGQAAAAABYAAAAAAADAAAAAACDAAAAAADDAAAAAACKwAAAAABKwAAAAABKwAAAAADDAAAAAABDAAAAAAADAAAAAADYAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAYAAAAAAADAAAAAABDAAAAAAADAAAAAADKwAAAAABKwAAAAAAKwAAAAABDAAAAAACDAAAAAACDAAAAAACcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAA + version: 6 + -2,0: + ind: -2,0 + tiles: bgAAAAABbgAAAAAAbgAAAAAAbgAAAAACYAAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAACKwAAAAADVAAAAAACVAAAAAABKwAAAAAAVAAAAAADcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAACKwAAAAAAbgAAAAACcQAAAAAAVAAAAAADVAAAAAABVAAAAAACcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAAAKwAAAAABbgAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAADVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAACYAAAAAAAVAAAAAAAKwAAAAAAVAAAAAADKwAAAAACVAAAAAACKwAAAAABVAAAAAAAKwAAAAACVAAAAAAAYQAAAAAAcQAAAAAAKwAAAAADVAAAAAADVAAAAAABVAAAAAACYAAAAAAAVAAAAAACKwAAAAAAVAAAAAAAKwAAAAADVAAAAAACKwAAAAACVAAAAAAAKwAAAAABVAAAAAACcQAAAAAAcQAAAAAAKwAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAKwAAAAAAVAAAAAACGwAAAAAARwAAAAADGwAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAACVAAAAAACcQAAAAAAVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAKwAAAAABVAAAAAADGwAAAAABRwAAAAABGwAAAAAAcQAAAAAAVAAAAAACKwAAAAACKwAAAAACKwAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAKwAAAAACVAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAGwAAAAABGwAAAAADGwAAAAABYAAAAAAAVAAAAAADKwAAAAADKwAAAAACKwAAAAABVAAAAAAAYAAAAAAAVAAAAAABKwAAAAAAVAAAAAAAYQAAAAAAVAAAAAABVAAAAAAAGwAAAAABGwAAAAACGwAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAACVAAAAAABcQAAAAAAVAAAAAADVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAADcQAAAAAAEQAAAAAGEQAAAAAFbgAAAAACVAAAAAACVAAAAAACVAAAAAADYAAAAAAASAAAAAAASAAAAAAASAAAAAAAYAAAAAAAVAAAAAACVAAAAAADKwAAAAAAVAAAAAAAcQAAAAAAEQAAAAAEbgAAAAACbgAAAAADVAAAAAADVAAAAAABVAAAAAABYAAAAAAASAAAAAAASAAAAAAASAAAAAAAYAAAAAAAVAAAAAADVAAAAAABKwAAAAAAVAAAAAACcQAAAAAAbwAAAAADbwAAAAACbgAAAAABVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAADcQAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAACVAAAAAABcQAAAAAAZAAAAAACZAAAAAADZAAAAAACZAAAAAACZAAAAAABcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAA + version: 6 + -2,-2: + ind: -2,-2 + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVQAAAAADVQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAGwAAAAAAGwAAAAABGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAADIAAAAAAAIAAAAAACGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAADwAAAAAADwAAAAAADwAAAAAAcQAAAAAAGwAAAAABGwAAAAAAGwAAAAABGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAADwAAAAAARwAAAAADDwAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAACGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAABGwAAAAADGwAAAAACGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAACcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAABGwAAAAADZAAAAAACZAAAAAACRwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAKwAAAAACVAAAAAACVAAAAAABYAAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAADGwAAAAAAZAAAAAACZAAAAAADRwAAAAADcQAAAAAAcQAAAAAAYAAAAAAAVAAAAAAAVAAAAAAAKwAAAAABVAAAAAABcQAAAAAAGwAAAAACGwAAAAACGwAAAAABGwAAAAAAGwAAAAACZAAAAAAAZAAAAAADRwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADKwAAAAABVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABKwAAAAAAVAAAAAADVAAAAAAAcQAAAAAAGwAAAAABGwAAAAABGwAAAAACGwAAAAABGwAAAAABGwAAAAABGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAKwAAAAAAVAAAAAAAVAAAAAAAVAAAAAADYAAAAAAAGwAAAAABGwAAAAACKwAAAAADGwAAAAACKwAAAAACGwAAAAADGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACKwAAAAACVAAAAAABVAAAAAAAYAAAAAAAGwAAAAADKwAAAAADGwAAAAACKwAAAAACGwAAAAACKwAAAAAAGwAAAAABYQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAACVAAAAAADcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAADGwAAAAABGwAAAAAAGwAAAAABGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAACGwAAAAAAGwAAAAACGwAAAAABGwAAAAAAGwAAAAADcQAAAAAAcQAAAAAA + version: 6 + 1,0: + ind: 1,0 + tiles: YQAAAAAAVAAAAAABVAAAAAABKwAAAAABKwAAAAABVAAAAAACVAAAAAAAYAAAAAAAGwAAAAADGwAAAAABGwAAAAABcQAAAAAAGwAAAAABRwAAAAABVAAAAAABGwAAAAABcQAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAGwAAAAACGwAAAAACGwAAAAAAcQAAAAAASAAAAAAAVAAAAAACRwAAAAAASAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAAAGwAAAAADGwAAAAACcQAAAAAASAAAAAAAGwAAAAACGwAAAAACSAAAAAAAcQAAAAAAPgAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAACcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAACYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAPgAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAADYAAAAAAAcQAAAAAAGwAAAAADcQAAAAAAGwAAAAADcQAAAAAAPgAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAGwAAAAABGwAAAAACGwAAAAADcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAGwAAAAADGwAAAAAAGwAAAAABcQAAAAAAGwAAAAACGwAAAAADGwAAAAABcQAAAAAANwAAAAAAcQAAAAAANwAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAABGwAAAAADGwAAAAAAGwAAAAADcQAAAAAANwAAAAAAcQAAAAAANwAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAADPgAAAAAAGwAAAAABGwAAAAADPgAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAABPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAADGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAC + version: 6 + 1,-2: + ind: 1,-2 + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAADcQAAAAAAZAAAAAABZAAAAAABZAAAAAABYAAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAAAIAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAYgAAAAABcQAAAAAAZAAAAAAAKwAAAAABZAAAAAADcQAAAAAAIAAAAAACIAAAAAADIAAAAAABIAAAAAACIAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAACZAAAAAABZAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAZAAAAAAAKwAAAAADZAAAAAAAcQAAAAAAZAAAAAABZAAAAAAAZAAAAAAAZAAAAAACZAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAABZAAAAAACZAAAAAABcQAAAAAAZAAAAAADZAAAAAACZAAAAAADZAAAAAACZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAADKwAAAAADcQAAAAAAZAAAAAAAZAAAAAABZAAAAAABZAAAAAADZAAAAAADcQAAAAAAcQAAAAAAZAAAAAACZAAAAAAAcQAAAAAAZAAAAAABZAAAAAABcQAAAAAAZAAAAAABZAAAAAADcQAAAAAAZAAAAAAAZAAAAAABZAAAAAAAZAAAAAABZAAAAAABcQAAAAAAcQAAAAAAZAAAAAACcQAAAAAAcQAAAAAAZAAAAAABZAAAAAACcQAAAAAAZAAAAAABZAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAZAAAAAACZAAAAAAAcQAAAAAAZAAAAAACZAAAAAAAKwAAAAABZAAAAAACZAAAAAACZAAAAAAAZAAAAAABZAAAAAABZAAAAAACZAAAAAACZAAAAAAAcQAAAAAAcQAAAAAAaAAAAAAAaAAAAAAAaAAAAAACaAAAAAACaAAAAAADcQAAAAAAZAAAAAABZAAAAAADZAAAAAADZAAAAAACZAAAAAABZAAAAAACZAAAAAAAZAAAAAABYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAKwAAAAADKwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAcQAAAAAAaAAAAAACaAAAAAADaAAAAAABaAAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAZAAAAAACZAAAAAABZAAAAAADZAAAAAACZAAAAAAAOAAAAAAAOAAAAAAAcQAAAAAAaAAAAAADaAAAAAACaAAAAAABaAAAAAABYAAAAAAAZAAAAAABZAAAAAADKwAAAAABZAAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAABOAAAAAAAOAAAAAAAYAAAAAAAaAAAAAAAaAAAAAAAaAAAAAAAaAAAAAABYAAAAAAAZAAAAAACZAAAAAADcQAAAAAAZAAAAAADKwAAAAAAZAAAAAAAKwAAAAAAZAAAAAABOAAAAAAAOAAAAAAAcQAAAAAAaAAAAAABaAAAAAAAaAAAAAAAaAAAAAABcQAAAAAAZAAAAAABZAAAAAACcQAAAAAAZAAAAAABKwAAAAAAZAAAAAAAKwAAAAAAZAAAAAADOAAAAAAAOAAAAAAAcQAAAAAAaAAAAAABaAAAAAACaAAAAAABaAAAAAABKwAAAAACZAAAAAADZAAAAAACcQAAAAAAZAAAAAACKwAAAAAAZAAAAAAAKwAAAAAAZAAAAAAB + version: 6 + 0,1: + ind: 0,1 + tiles: VAAAAAACVAAAAAABcQAAAAAASAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAbgAAAAACbgAAAAACbgAAAAAAbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAACVAAAAAACcQAAAAAASAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAVQAAAAABVQAAAAAAVQAAAAADVQAAAAABcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAKwAAAAAAVAAAAAAAcQAAAAAASAAAAAAAVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAbgAAAAACbgAAAAADGwAAAAADGwAAAAAAcQAAAAAASAAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAAAYAAAAAAAVAAAAAAAVAAAAAADbgAAAAAAbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAADVAAAAAADVAAAAAADYAAAAAAAVAAAAAACVAAAAAABbgAAAAAAbgAAAAABcAAAAAAAcQAAAAAASAAAAAAASAAAAAAAVAAAAAABVAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAAAVAAAAAAAcAAAAAAAcQAAAAAASAAAAAAAVAAAAAADVAAAAAADVAAAAAADGwAAAAACGwAAAAABGwAAAAABGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAYAAAAAAAcAAAAAAAcQAAAAAASAAAAAAAVAAAAAABVAAAAAACVAAAAAABGwAAAAAAGwAAAAADGwAAAAADGwAAAAABcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcAAAAAAAcQAAAAAASAAAAAAAVAAAAAABVAAAAAACVAAAAAADGwAAAAACGwAAAAAAGwAAAAADGwAAAAABYAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcAAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAYAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcAAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAABVAAAAAAAVAAAAAABVAAAAAACVAAAAAADYAAAAAAAWQAAAAAARwAAAAADRwAAAAAARwAAAAACWQAAAAAAcAAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAADVAAAAAACVAAAAAADVAAAAAAASAAAAAAAcQAAAAAAWQAAAAAARwAAAAACRwAAAAAARwAAAAAAWQAAAAAAcAAAAAAAcQAAAAAASAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAADSAAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcAAAAAAAcQAAAAAASAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAABSAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcAAAAAAAcQAAAAAASAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACVAAAAAACSAAAAAAASAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAADSAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: cQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACKwAAAAADVAAAAAABVAAAAAABKwAAAAADVAAAAAAAVAAAAAADVAAAAAADcQAAAAAAVAAAAAADYAAAAAAAVAAAAAABKwAAAAADVAAAAAADVAAAAAACKwAAAAABVAAAAAACVAAAAAACKwAAAAACVAAAAAAAVAAAAAAAKwAAAAADVAAAAAACVAAAAAAAcQAAAAAAVAAAAAACYAAAAAAAVAAAAAACVAAAAAABKwAAAAABVAAAAAABVAAAAAAAKwAAAAACVAAAAAADVAAAAAABKwAAAAAAVAAAAAAAVAAAAAABKwAAAAAAVAAAAAAAYAAAAAAAVAAAAAACcQAAAAAAVAAAAAABVAAAAAADVAAAAAACKwAAAAABVAAAAAACVAAAAAACKwAAAAABVAAAAAAAVAAAAAACKwAAAAACVAAAAAADVAAAAAACKwAAAAACcQAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAQAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAQAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + version: 6 + -2,1: + ind: -2,1 + tiles: VAAAAAABVAAAAAAAVAAAAAADVAAAAAABVAAAAAACYAAAAAAAZAAAAAAAZAAAAAADZAAAAAABZAAAAAAAZAAAAAACcQAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAADVAAAAAACVAAAAAADcQAAAAAAZAAAAAABZAAAAAACZAAAAAABZAAAAAADZAAAAAADYAAAAAAAVAAAAAAAKwAAAAADKwAAAAABVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAADVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAACZAAAAAADcQAAAAAAVAAAAAACKwAAAAAAKwAAAAADVAAAAAACPgAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAZAAAAAACZAAAAAAAZAAAAAACZAAAAAADZAAAAAACcQAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAACVQAAAAACVQAAAAAAcQAAAAAAVQAAAAACVQAAAAACcQAAAAAAZAAAAAABZAAAAAABZAAAAAAAZAAAAAAAZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAACcQAAAAAAGwAAAAADGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -2,-3: + ind: -2,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVQAAAAABVQAAAAABSAAAAAAA + version: 6 + -1,-3: + ind: -1,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAQAAAAAAAcQAAAAAAQAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAANgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAANgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAQAAAAAAAcQAAAAAAQAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVQAAAAAASAAAAAAAVQAAAAACSAAAAAAAcQAAAAAAVAAAAAADKwAAAAAAKwAAAAADKwAAAAADVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA + version: 6 + 0,-3: + ind: 0,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAACYgAAAAACYgAAAAADYgAAAAABYgAAAAADcQAAAAAA + version: 6 + 1,-3: + ind: 1,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAAB + version: 6 + 1,1: + ind: 1,1 + tiles: GwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAABcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVQAAAAADbgAAAAAAbgAAAAADcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVQAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVQAAAAABVAAAAAAAVAAAAAADcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAbgAAAAABbgAAAAABbgAAAAACbgAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAACbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAABbgAAAAAAbgAAAAABcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAYAAAAAAANgAAAAAANgAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,-1: + ind: -3,-1 + tiles: cQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAABbgAAAAACcQAAAAAAcQAAAAAAYQAAAAAAVAAAAAACVAAAAAACXgAAAAACXgAAAAADUgAAAAAAUgAAAAAEUgAAAAAAUgAAAAAAcQAAAAAAbgAAAAACbgAAAAACbgAAAAAAbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADXgAAAAACXgAAAAACMgAAAAACUgAAAAAAUgAAAAAAUgAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXgAAAAACLQAAAAAAMgAAAAADUgAAAAAAUgAAAAAAUgAAAAAAcQAAAAAAbwAAAAABbwAAAAABKwAAAAABbgAAAAACbgAAAAAAKwAAAAADbgAAAAACbgAAAAADcQAAAAAAXgAAAAABLQAAAAAAMgAAAAADMgAAAAAAUgAAAAAAUgAAAAAAcQAAAAAAbgAAAAABbgAAAAACKwAAAAAAbgAAAAACbgAAAAAAbgAAAAABbgAAAAADbgAAAAABcQAAAAAAXgAAAAAALQAAAAAAUgAAAAAAMgAAAAAAUgAAAAAEUgAAAAAAcQAAAAAAbgAAAAADbgAAAAAAbgAAAAAAKwAAAAAAbgAAAAACKwAAAAAAbgAAAAABKwAAAAADYAAAAAAAXgAAAAADXgAAAAAAUgAAAAAAMgAAAAAAUwAAAAAAUwAAAAAAcQAAAAAAbgAAAAACbgAAAAABKwAAAAACbgAAAAABbgAAAAABbgAAAAACbgAAAAABbgAAAAABcQAAAAAAXgAAAAADXgAAAAACMgAAAAABMgAAAAADUgAAAAAAUgAAAAAAcQAAAAAAbwAAAAACbwAAAAABKwAAAAACbgAAAAAAbgAAAAAAKwAAAAADbgAAAAACbgAAAAADcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAADYAAAAAAAVAAAAAADVAAAAAACVAAAAAABKwAAAAAAKwAAAAACVAAAAAACVAAAAAADKwAAAAADKwAAAAACVAAAAAAAVAAAAAAAKwAAAAABKwAAAAABVAAAAAABVAAAAAACcQAAAAAAVAAAAAAAKwAAAAADKwAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAABVAAAAAABVAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAABVAAAAAADVAAAAAAAYAAAAAAAVAAAAAADVAAAAAADVAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADbgAAAAADbgAAAAAAbgAAAAAAcQAAAAAAKwAAAAAAKwAAAAAAbgAAAAACbgAAAAABOwAAAAAAOwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABbgAAAAABbgAAAAACbgAAAAAAYAAAAAAAPAAAAAAAPAAAAAAAbgAAAAACbgAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAbgAAAAADbgAAAAAB + version: 6 + -3,0: + ind: -3,0 + tiles: YQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAbgAAAAADbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAAAKwAAAAAAbgAAAAABbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAQgAAAAAAQgAAAAABQgAAAAADcQAAAAAAGwAAAAAAbgAAAAADbgAAAAABbgAAAAABcQAAAAAAVAAAAAACVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAQgAAAAABQgAAAAACQgAAAAACcQAAAAAAGwAAAAAAbgAAAAAAbgAAAAACbgAAAAABcQAAAAAAVAAAAAABKwAAAAACKwAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAADGwAAAAAAcQAAAAAAVAAAAAAAKwAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAAAVAAAAAACVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACKwAAAAABVAAAAAAAVAAAAAADRwAAAAABRwAAAAACVAAAAAABRwAAAAACRwAAAAABVAAAAAADYAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAKwAAAAACKwAAAAADVAAAAAABVAAAAAABVAAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAABYAAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAADVAAAAAADVAAAAAADVAAAAAAAVAAAAAACSAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAASAAAAAAASAAAAAAAYAAAAAAAGwAAAAAAGwAAAAACGwAAAAADGwAAAAACcQAAAAAAGwAAAAAAGwAAAAACGwAAAAABGwAAAAACcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAMQAAAAADSAAAAAAAYAAAAAAAGwAAAAACRwAAAAADRwAAAAACGwAAAAACYAAAAAAAGwAAAAAARwAAAAACRwAAAAACGwAAAAABYAAAAAAASAAAAAAASAAAAAAAcQAAAAAAMQAAAAAASAAAAAAAcQAAAAAAGwAAAAADRwAAAAAARwAAAAADGwAAAAAAcQAAAAAAGwAAAAAAGwAAAAACGwAAAAABGwAAAAACcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAMQAAAAADSAAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAADGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAMQAAAAADSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAVAAAAAABVAAAAAAAVAAAAAAB + version: 6 + -3,1: + ind: -3,1 + tiles: MQAAAAABSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAVAAAAAADVAAAAAACRwAAAAACRwAAAAABRwAAAAAAMQAAAAAASAAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACRwAAAAABRwAAAAADRwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVQAAAAAAVQAAAAAAcQAAAAAAVQAAAAADVQAAAAAAcQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAABGwAAAAAAcQAAAAAAGwAAAAACGwAAAAACcQAAAAAAEQAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAEQAAAAAAEQAAAAAAbgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,-2: + ind: -3,-2 + tiles: AAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAEQAAAAAGEQAAAAAAEQAAAAAFbgAAAAACbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAEQAAAAACcQAAAAAAcQAAAAAAEAAAAAADEAAAAAAAbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAABKwAAAAAAKwAAAAACcAAAAAAAcQAAAAAAEQAAAAAEEAAAAAABEAAAAAABEAAAAAABEAAAAAACbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABKwAAAAABKwAAAAADKwAAAAAAcAAAAAAAcQAAAAAAbgAAAAADEAAAAAABEAAAAAADEAAAAAADEAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAACGwAAAAABcAAAAAAAcQAAAAAAbgAAAAABEAAAAAABEAAAAAADEAAAAAAAEAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADKwAAAAACKwAAAAAAVAAAAAABbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAVAAAAAACKwAAAAAAKwAAAAABVAAAAAABbgAAAAACcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAABbgAAAAABYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAEwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAVQAAAAACbwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAABVQAAAAABbwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABbgAAAAACVQAAAAACbwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAbgAAAAABbgAAAAAAbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAA + version: 6 + -4,-1: + ind: -4,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAKwAAAAACKwAAAAACcQAAAAAAVAAAAAADKwAAAAAAVAAAAAAAVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAANgAAAAAANgAAAAAAYAAAAAAAVAAAAAACVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACKwAAAAADVAAAAAAAYAAAAAAAMgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAABKwAAAAAAVAAAAAAAcQAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAABKwAAAAABVAAAAAAAcQAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACKwAAAAABVAAAAAABcQAAAAAAUgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAANgAAAAAANgAAAAAAYAAAAAAAVAAAAAABVAAAAAACVAAAAAABcQAAAAAAMgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAKwAAAAABKwAAAAAAcQAAAAAAVAAAAAACKwAAAAADVAAAAAACcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAANgAAAAAANgAAAAAAYAAAAAAAVAAAAAAAKwAAAAAAVAAAAAABVAAAAAABVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAAAVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOwAAAAAA + version: 6 + 2,0: + ind: 2,0 + tiles: YAAAAAAAGwAAAAADKwAAAAAAGwAAAAADYAAAAAAAGwAAAAACSAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADbgAAAAADbgAAAAACcQAAAAAAGwAAAAAAKwAAAAABGwAAAAABcQAAAAAAGwAAAAADSAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAADbgAAAAABKwAAAAADcQAAAAAAGwAAAAABGwAAAAAAGwAAAAAAcQAAAAAAGwAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAGwAAAAACGwAAAAAAGwAAAAACPgAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAGwAAAAADGwAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAGwAAAAAAGwAAAAABGwAAAAAAPgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAGwAAAAABGwAAAAAAGwAAAAADGwAAAAACGwAAAAACYAAAAAAANgAAAAAANgAAAAAAcQAAAAAAGwAAAAABGwAAAAACGwAAAAACGwAAAAABGwAAAAABGwAAAAADGwAAAAADGwAAAAADGwAAAAACGwAAAAADGwAAAAADGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAGwAAAAABGwAAAAAAGwAAAAAAGwAAAAACGwAAAAABGwAAAAACGwAAAAADGwAAAAACGwAAAAABGwAAAAAAGwAAAAABGwAAAAABcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVQAAAAACVQAAAAACVQAAAAACRwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVQAAAAABVQAAAAADVQAAAAAARwAAAAABGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVQAAAAADVQAAAAAAVQAAAAACRwAAAAACGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAADGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 2,-1: + ind: 2,-1 + tiles: cQAAAAAAZAAAAAABZAAAAAABZAAAAAACZAAAAAADZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAIAAAAAAAIAAAAAABIAAAAAAAIAAAAAACNAAAAAAAKwAAAAADZAAAAAADKwAAAAACZAAAAAACKwAAAAAAZAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAAAIAAAAAAANAAAAAAAcQAAAAAAZAAAAAACZAAAAAABKwAAAAADZAAAAAACZAAAAAADYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAZAAAAAABKwAAAAAAZAAAAAAAKwAAAAAAZAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADbgAAAAACbgAAAAADcQAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAABZAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAAAYgAAAAAAcQAAAAAAbgAAAAACbgAAAAABbgAAAAABZAAAAAABKwAAAAAAZAAAAAACZAAAAAADZAAAAAAAZAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAAAbgAAAAADZAAAAAAAcQAAAAAAZAAAAAACZAAAAAAAZAAAAAACZAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAGwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAZAAAAAACcQAAAAAAZAAAAAABZAAAAAAAZAAAAAABZAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABbgAAAAAAbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABYAAAAAAAGwAAAAABGwAAAAAAYAAAAAAAGwAAAAABGwAAAAABGwAAAAABGwAAAAADGwAAAAADGwAAAAACcQAAAAAAVAAAAAADKwAAAAADKwAAAAABKwAAAAABVAAAAAABcQAAAAAAGwAAAAADGwAAAAAAcQAAAAAAKwAAAAACKwAAAAADKwAAAAACKwAAAAACKwAAAAADKwAAAAACYAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAABVAAAAAADYAAAAAAAGwAAAAABGwAAAAADYAAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAABGwAAAAAAGwAAAAADcQAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAADYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAABcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAACGwAAAAACGwAAAAADcQAAAAAAGwAAAAABGwAAAAAAGwAAAAADcQAAAAAAGwAAAAAAGwAAAAADGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAA + version: 6 + 2,-2: + ind: 2,-2 + tiles: YAAAAAAAZAAAAAACZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAZAAAAAADZAAAAAAAcQAAAAAAZAAAAAABZAAAAAACZAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAZAAAAAADZAAAAAADcQAAAAAAZAAAAAAAZAAAAAADZAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAZAAAAAABZAAAAAAAKwAAAAAAZAAAAAADZAAAAAADZAAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAACZAAAAAABZAAAAAAAcQAAAAAAZAAAAAACZAAAAAACZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAZAAAAAAAZAAAAAABcQAAAAAAZAAAAAABZAAAAAADZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAKwAAAAAAKwAAAAAAcQAAAAAAZAAAAAAAZAAAAAACZAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAZAAAAAABZAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAADZAAAAAABZAAAAAADcQAAAAAAZAAAAAADZAAAAAADZAAAAAAAZAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAAAZAAAAAACZAAAAAAAKwAAAAACZAAAAAACZAAAAAADZAAAAAADZAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZAAAAAACZAAAAAAAZAAAAAABcQAAAAAAGwAAAAABKwAAAAAAKwAAAAAAKwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAZAAAAAADZAAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAACZAAAAAADZAAAAAACZAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAADZAAAAAADKwAAAAACZAAAAAADYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAA + version: 6 + 2,-3: + ind: 2,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAEQAAAAACEQAAAAABbgAAAAADbgAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAbgAAAAACbgAAAAADbgAAAAACEQAAAAAGcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAA + version: 6 + 2,1: + ind: 2,1 + tiles: GwAAAAABGwAAAAADGwAAAAABYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAACVQAAAAABVQAAAAADcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVQAAAAAAVQAAAAABVQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAADGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,0: + ind: 3,0 + tiles: cQAAAAAAKwAAAAACKwAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAABbgAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAKwAAAAAAKwAAAAABKwAAAAADKwAAAAACAAAAAAAA + version: 6 + 3,-1: + ind: 3,-1 + tiles: cQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAABGwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAACbgAAAAADGwAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAABbgAAAAABGwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAADbgAAAAADGwAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAABGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADRwAAAAADRwAAAAABRwAAAAAAGwAAAAADcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAACGwAAAAACGwAAAAADGwAAAAABGwAAAAACcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADRwAAAAADRwAAAAABRwAAAAAAGwAAAAADcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAABGwAAAAACGwAAAAABGwAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAACGwAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAKwAAAAADKwAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,-2: + ind: -4,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAADbgAAAAAAbgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAbgAAAAAAbgAAAAACbgAAAAACbgAAAAADbgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAbgAAAAABbgAAAAACbgAAAAACbgAAAAAAbgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAANgAAAAAANgAAAAAAYAAAAAAAVAAAAAADKwAAAAABVAAAAAACVAAAAAADYQAAAAAA + version: 6 + 0,2: + ind: 0,2 + tiles: AAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASAAAAAAAVAAAAAACRwAAAAAAVAAAAAADRwAAAAACSAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAAcQAAAAAARwAAAAABVAAAAAACRwAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAQAAAAAAAcQAAAAAAQAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -4,0: + ind: -4,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAMgAAAAADMgAAAAABMgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAMgAAAAACMgAAAAABMgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAMgAAAAACMgAAAAADMgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAKwAAAAAAKwAAAAAAVAAAAAABcQAAAAAAVAAAAAAAVAAAAAACVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAKwAAAAAAVAAAAAACVAAAAAAAYAAAAAAAVAAAAAAARwAAAAABRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAKwAAAAAAKwAAAAAAVAAAAAABcQAAAAAAVAAAAAABVAAAAAACVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAMQAAAAACMQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAMQAAAAAAMQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAMQAAAAADMQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAMQAAAAADMQAAAAAB + version: 6 + -4,1: + ind: -4,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAMQAAAAADMQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAMQAAAAADMQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,1: + ind: 3,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAKwAAAAAAKwAAAAABKwAAAAABKwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAKwAAAAABKwAAAAAAKwAAAAABKwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAKwAAAAABKwAAAAABKwAAAAADKwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAABKwAAAAAAKwAAAAADKwAAAAACAAAAAAAAcQAAAAAAAAAAAAAAKwAAAAAAKwAAAAAAKwAAAAABKwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAKwAAAAABKwAAAAACKwAAAAACAAAAAAAAcAAAAAAAAAAAAAAAKwAAAAACKwAAAAADKwAAAAABKwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 4,0: + ind: 4,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 3,-2: + ind: 3,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -3,-3: + ind: -3,-3 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAA + version: 6 + -1,2: + ind: -1,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 1,2: + ind: 1,2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 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: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 123: -35,12 + - node: + cleanable: True + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 167: 15,30 + 189: -3,2 + - node: + color: '#FFFFFFFF' + id: Arrows + decals: + 1215: -24,12 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Arrows + decals: + 176: 3,4 + - node: + cleanable: True + color: '#FFFFFFFF' + id: ArrowsGreyscale + decals: + 168: 13,24 + 169: 2,25 + - node: + cleanable: True + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: ArrowsGreyscale + decals: + 177: 3,7 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Bot + decals: + 31: 36,7 + 32: 36,6 + 33: 36,5 + 34: 37,5 + 35: 37,6 + 36: 37,7 + 37: 38,7 + 38: 38,6 + 39: 38,5 + 40: 39,5 + 41: 39,6 + 42: 39,7 + 188: -4,2 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BotGreyscale + decals: + 185: -1,2 + 186: 0,2 + 187: -2,2 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BotLeftGreyscale + decals: + 178: 12,11 + 179: 11,11 + 180: 10,11 + 181: 7,11 + 182: 8,11 + 183: 9,11 + - node: + color: '#FFFFFFFF' + id: Box + decals: + 766: 28,-3 + 767: 29,-3 + 768: 30,-3 + 931: 31,-2 + 982: 12,29 + 983: 13,29 + 984: 14,29 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Box + decals: + 174: 4,4 + 175: 4,5 + 891: 35,5 + 892: 41,6 + 893: 41,7 + - node: + cleanable: True + color: '#FFFFFFFF' + id: BoxGreyscale + decals: + 172: 4,7 + 173: 4,6 + 184: 6,9 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkEndN + decals: + 508: -29,8 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkEndS + decals: + 509: -29,7 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + decals: + 100: -1,-8 + 101: 0,-8 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + decals: + 96: -2,-6 + 97: -1,-6 + 98: 0,-6 + 99: 1,-6 + 783: 49,-1 + 784: 50,-1 + 785: 47,-1 + 786: 46,-1 + 787: 45,-1 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNe + decals: + 113: -38,16 + 114: -36,15 + 126: -23,9 + 131: -33,17 + 139: -32,8 + 351: 14,27 + 751: -8,-32 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerNw + decals: + 127: -25,9 + 128: -35,17 + 138: -34,8 + 341: 14,20 + 352: 12,27 + 750: -10,-32 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSe + decals: + 125: -23,8 + 130: -33,16 + 137: -32,5 + 353: 14,26 + 749: -8,-33 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelCornerSw + decals: + 124: -25,8 + 129: -35,16 + 136: -34,5 + 354: 12,26 + 748: -10,-33 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelInnerNe + decals: + 118: -38,15 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + decals: + 115: -37,15 + 116: -39,16 + 117: -40,16 + 344: 15,20 + 345: 16,20 + 346: 17,20 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + decals: + 342: 14,19 + 343: 14,18 + - node: + color: '#FFFFFFFF' + id: Caution + decals: + 86: -51,6 + 87: -50,6 + 88: -49,6 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Caution + decals: + 73: -47,17 + 74: -47,12 + - node: + color: '#9FED5896' + id: CheckerNESW + decals: + 935: -7,-29 + 936: -7,-28 + 937: -7,-27 + 938: -7,-26 + 939: -7,-25 + 940: -7,-24 + 941: -7,-23 + 942: -7,-22 + 943: -11,-29 + 944: -11,-28 + 945: -11,-27 + 946: -11,-26 + 947: -11,-25 + 948: -11,-24 + 949: -11,-23 + 950: -11,-22 + 953: 12,-15 + 954: 11,-15 + - node: + color: '#DE3A3A96' + id: CheckerNESW + decals: + 564: -26,7 + 570: -22,7 + 571: -23,7 + 572: -25,7 + 573: -24,7 + 574: -28,8 + 575: -28,7 + 576: -30,8 + 577: -30,7 + 590: -26,17 + 591: -25,17 + 592: -24,17 + 593: -26,20 + 594: -25,20 + 595: -24,20 + 596: -26,19 + 597: -22,20 + 598: -22,19 + 599: -26,15 + 600: -25,15 + 601: -24,15 + 602: -23,15 + 603: -22,15 + - node: + color: '#52B4E996' + id: CheckerNWSE + decals: + 53: 32,-10 + 54: 32,-9 + 241: 27,-21 + 242: 28,-21 + 243: 29,-21 + 244: 30,-21 + 245: 31,-21 + 246: 27,-19 + 247: 27,-17 + 248: 27,-20 + 249: 31,-20 + 250: 31,-19 + 251: 31,-18 + 252: 31,-17 + 325: 37,-9 + 326: 37,-10 + 327: 37,-11 + 328: 37,-12 + 329: 37,-13 + 330: 37,-14 + 331: 37,-15 + 332: 37,-16 + 333: 34,-9 + 334: 34,-10 + 335: 33,-13 + 336: 33,-14 + 337: 33,-15 + 338: 33,-16 + 339: 34,-11 + 340: 34,-12 + 894: 27,-18 + 918: 27,-27 + 919: 27,-28 + 920: 28,-28 + 921: 28,-27 + 922: 29,-27 + 923: 29,-28 + 924: 30,-28 + 925: 30,-27 + 926: 31,-27 + 927: 31,-28 + - node: + color: '#9FED5896' + id: CheckerNWSE + decals: + 614: 10,-11 + 615: 10,-10 + 616: 10,-9 + 617: 14,-9 + 618: 14,-10 + 619: 14,-11 + - node: + color: '#A4610696' + id: CheckerNWSE + decals: + 355: -5,4 + 356: -5,5 + 357: -5,6 + 358: -5,7 + 359: -2,4 + 360: -2,5 + 361: -2,6 + 362: -2,7 + 363: -3,4 + 364: -4,4 + 386: -1,17 + 387: -1,16 + 388: 1,17 + 389: 1,16 + 400: 12,18 + 401: 13,18 + 402: 13,19 + 403: 12,19 + 404: 12,20 + 405: 13,20 + 406: 14,21 + 407: 15,21 + 408: 16,21 + 409: 17,21 + 410: 15,25 + 411: 15,26 + 412: 15,27 + 413: 15,28 + 414: 11,28 + 415: 11,27 + 416: 11,26 + 417: 11,25 + - node: + color: '#D381C996' + id: CheckerNWSE + decals: + 735: -23,-28 + 736: -23,-27 + 737: -23,-26 + 738: -22,-26 + - node: + color: '#DE3A3A96' + id: CheckerNWSE + decals: + 486: -19,2 + 487: -19,3 + 491: -20,2 + 500: -35,4 + 520: -45,14 + 521: -44,14 + 522: -43,14 + 523: -42,14 + 524: -42,13 + 525: -42,12 + 526: -42,11 + 527: -40,13 + 528: -39,13 + 529: -38,13 + 530: -37,13 + 581: -34,4 + 582: -33,4 + 583: -32,4 + 584: -31,4 + 585: -30,4 + 586: -29,4 + - node: + color: '#FFFFFFFF' + id: ConcreteTrimCornerNe + decals: + 196: 15,-19 + - node: + color: '#FFFFFFFF' + id: ConcreteTrimCornerNw + decals: + 201: 12,-19 + - node: + color: '#FFFFFFFF' + id: ConcreteTrimLineE + decals: + 197: 15,-20 + 198: 15,-21 + - node: + color: '#FFFFFFFF' + id: ConcreteTrimLineN + decals: + 199: 14,-19 + 200: 13,-19 + - node: + color: '#FFFFFFFF' + id: ConcreteTrimLineW + decals: + 202: 12,-20 + 203: 12,-21 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 764: 37,14 + 765: 36,14 + 769: 28,2 + 770: 28,1 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Delivery + decals: + 18: 6,28 + 19: 6,29 + 20: 7,29 + 21: 7,28 + 22: 6,27 + 23: 7,27 + 145: 1,11 + 146: 1,12 + 147: 2,12 + 148: 2,11 + 149: 3,11 + 150: 3,12 + 151: -3,11 + 152: -2,11 + 153: -1,11 + 154: -3,12 + 155: -2,12 + 156: -1,12 + 170: 0,5 + 171: 0,4 + - node: + color: '#52B4E996' + id: DeliveryGreyscale + decals: + 55: 29,-10 + 56: 30,-10 + - node: + color: '#FFFFFFFF' + id: DeliveryGreyscale + decals: + 771: 31,2 + 772: 31,1 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DeliveryGreyscale + decals: + 12: 3,29 + 13: 3,28 + 14: 3,22 + 15: 3,23 + 16: 3,24 + 17: 3,30 + 157: -3,14 + 158: -2,14 + 159: -1,14 + 160: -5,11 + 161: -5,12 + 162: -5,13 + 163: -5,14 + - node: + cleanable: True + color: '#FFFFFFFF' + id: Dirt + decals: + 59: -38,2 + 60: -40,2 + 61: -39,2 + 89: -50,4 + 90: -50,4 + 91: -50,4 + 92: -51,4 + 93: -50,3 + 94: -49,4 + 95: -51,5 + 705: -24.024569,-10.992935 + 706: -23.024569,-10.023513 + 707: -24.01415,-9.502317 + 708: -22.9829,-10.513435 + 709: -23.024569,-8.991546 + 710: -24.003735,-9.012393 + 711: -20,-14 + 712: -21,-14 + 713: -19,-13 + 1027: 27,-31 + 1028: 30,-31 + 1029: 31,-31 + 1047: 12,-4 + 1048: 11,-4 + 1052: -14,0 + 1066: -41,-18 + 1087: -42,14 + 1088: -45,14 + 1089: -42,11 + 1090: -43,11 + 1098: -13,-30 + 1099: -14,-30 + 1100: -15,-30 + 1107: -5,-15 + 1124: 32,-10 + 1125: 32,-9 + 1131: -46,23 + 1132: -46,22 + 1133: -48,23 + 1134: -47,23 + 1135: -47,22 + 1136: -48,22 + 1137: -46,21 + 1138: -47,21 + 1139: -48,21 + 1140: -45,19 + 1141: -52,17 + 1142: -45,18 + 1143: -53,12 + 1144: -47,4 + 1145: -43,2 + 1146: -53,0 + 1147: -44,0 + 1148: -44,-1 + 1149: -48,-18 + 1150: -46,-19 + 1151: -46,-20 + 1152: -40,-22 + 1153: -39,-23 + 1154: -39,-24 + 1155: -34,-31 + 1156: -29,-30 + 1157: -38,-30 + 1158: -39,-30 + 1159: -23,-31 + 1160: -22,-31 + 1161: -19,-27 + 1162: -17,-26 + 1163: -16,-20 + 1164: -17,-16 + 1165: -17,-15 + 1166: -14,-16 + 1167: -17,-10 + 1168: -12,-16 + 1169: -5,-33 + 1170: -4,-33 + 1171: 4,-30 + 1172: 5,-30 + 1173: 6,-30 + 1174: 8,-32 + 1175: 10,-32 + 1176: 13,-32 + 1177: 12,-33 + 1178: 14,-33 + 1179: 9,-26 + 1180: 15,-23 + 1181: 15,-26 + 1182: 17,-28 + 1183: 16,-30 + 1184: 16,-32 + 1185: 23,-35 + 1186: 30,-36 + 1187: 27,-36 + 1188: 34,-34 + 1189: 35,-34 + 1190: 41,-27 + 1191: 42,-21 + 1192: 42,-20 + 1193: 38,-18 + 1194: 40,-14 + 1195: 41,-9 + 1196: 41,-2 + 1197: 43,1 + 1198: 43,2 + 1199: 40,12 + 1200: 40,13 + 1201: 36,17 + 1202: 12,15 + 1203: 15,6 + 1204: 15,-2 + 1205: 14,-3 + 1206: -16,7 + 1207: -12,4 + 1208: -12,3 + 1209: -16,-1 + 1210: -49,19 + 1211: 12,7 + 1212: -46,-9 + 1216: -29,-34 + 1217: -31,-33 + 1218: -37,-35 + 1219: -36,-33 + 1220: -36,-34 + 1221: -34,-35 + 1222: -25,-33 + 1223: -44,4 + 1224: -42,5 + 1225: -43,4 + 1226: -43,4 + 1227: -44,5 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavy + decals: + 996: -53,-16 + 997: -51,-11 + 998: -53,-8 + 999: -45,-5 + 1000: -31,-8 + 1001: -26,-5 + 1002: -20,-7 + 1003: -10,-6 + 1004: -7,-12 + 1005: -9,7 + 1006: -3,17 + 1007: 4,13 + 1008: 5,27 + 1009: 14,25 + 1010: 13,19 + 1011: 19,8 + 1012: 16,13 + 1013: 29,11 + 1014: 31,14 + 1015: 25,1 + 1016: 26,-2 + 1017: 30,0 + 1018: 35,-1 + 1019: 38,8 + 1020: 33,19 + 1021: 32,18 + 1022: 49,-6 + 1023: 50,-12 + 1024: 37,-23 + 1025: 37,-28 + 1026: 28,-29 + 1056: -11,-12 + 1057: -19,-11 + 1058: -22,-21 + 1059: -24,-27 + 1083: -50,12 + 1084: -48,17 + 1096: -14,-31 + 1097: -19,-31 + 1108: 17,-21 + 1109: 17,-16 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 1033: 32,-23 + 1034: 28,-32 + 1035: 30,-32 + 1046: 19,-8 + 1049: 3,2 + 1050: -11,-2 + 1051: -13,-3 + 1053: -12,-7 + 1054: -14,-12 + 1055: -14,-9 + 1067: -47,-3 + 1068: -27,-2 + 1074: -22,9 + 1075: -28,12 + 1085: -49,15 + 1086: -48,12 + 1120: 27,-24 + 1121: 36,-14 + 1122: 37,-11 + 1123: 34,-9 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtLight + decals: + 1030: 25,-31 + 1031: 26,-23 + 1032: 33,-18 + 1036: 31,-27 + 1037: 30,-26 + 1038: 24,-18 + 1039: 31,-16 + 1040: 20,-13 + 1041: 25,-11 + 1042: 31,-10 + 1043: 23,-8 + 1044: 16,-5 + 1045: 10,-6 + 1060: -27,-20 + 1061: -36,-23 + 1062: -29,-25 + 1063: -41,-25 + 1064: -42,-18 + 1065: -43,-18 + 1069: -19,-1 + 1070: -26,1 + 1071: -19,4 + 1072: -25,7 + 1073: -24,10 + 1076: -40,17 + 1077: -34,20 + 1078: -32,15 + 1079: -30,16 + 1080: -22,16 + 1091: -40,12 + 1092: -39,6 + 1093: -47,-3 + 1094: -47,-1 + 1095: -7,-34 + 1106: -5,-17 + - node: + cleanable: True + color: '#FFFFFFFF' + id: DirtMedium + decals: + 1081: -25,15 + 1082: -25,20 + 1101: -11,-34 + 1102: 2,-27 + 1103: -4,-28 + 1104: -3,-19 + 1105: -1,-16 + 1126: 36,-9 + - node: + color: '#FFFFFFFF' + id: FlowersBROne + decals: + 190: -11.974387,-9.009392 + - node: + color: '#FFFFFFFF' + id: FlowersBRThree + decals: + 979: -31.98135,-15.0376625 + - node: + color: '#FFFFFFFF' + id: Flowerspv1 + decals: + 980: -29.8251,-14.922999 + 981: -30.1376,-12.004305 + - node: + color: '#FFFFFFFF' + id: Flowerspv3 + decals: + 194: -11.96397,-10.97951 + 970: -31.595932,-11.19124 + 971: -29.0126,-11.024458 + - node: + color: '#FFFFFFFF' + id: Flowersy2 + decals: + 1229: -28.83182,-12.328989 + - node: + color: '#FFFFFFFF' + id: Flowersy3 + decals: + 195: -11.005637,-10.010086 + - node: + color: '#FFFFFFFF' + id: Flowersy4 + decals: + 1228: -32.102654,-12.370685 + - node: + color: '#334E6DC8' + id: FullTileOverlayGreyscale + decals: + 808: 52,-8 + 809: 52,-7 + 810: 52,-6 + 811: 52,-5 + 812: 52,-4 + 813: 50,-6 + - node: + color: '#52B4E996' + id: FullTileOverlayGreyscale + decals: + 43: 27,-9 + 44: 27,-10 + 903: 37,-30 + 904: 36,-30 + 905: 38,-30 + 906: 37,-31 + 907: 37,-29 + 908: 31,-29 + 909: 30,-29 + 910: 29,-29 + 911: 28,-29 + 912: 27,-29 + 913: 27,-26 + 914: 28,-26 + 915: 29,-26 + 916: 30,-26 + 917: 31,-26 + 1127: 29,-18 + 1128: 29,-17 + 1129: 29,-16 + 1130: 29,-19 + - node: + color: '#9FED5896' + id: FullTileOverlayGreyscale + decals: + 951: -12,-26 + 952: -12,-25 + - node: + color: '#A4610696' + id: FullTileOverlayGreyscale + decals: + 456: 6,31 + - node: + color: '#DE3A3A96' + id: FullTileOverlayGreyscale + decals: + 506: -32,10 + 507: -31,10 + 578: -30,10 + 579: -29,10 + 580: -28,10 + - node: + color: '#FFFFFFFF' + id: Grassa3 + decals: + 193: -10.984803,-9.040664 + - node: + color: '#FFFFFFFF' + id: Grasse1 + decals: + 976: -29.127182,-14.829184 + 977: -31.533432,-13.015425 + 978: -29.8876,-12.900762 + - node: + color: '#FFFFFFFF' + id: Grasse2 + decals: + 191: -11.974387,-9.978814 + 192: -11.016053,-10.802303 + - node: + color: '#FFFFFFFF' + id: Grasse3 + decals: + 972: -31.10635,-11.441415 + 973: -29.679266,-11.014034 + 974: -31.3876,-14.87088 + 975: -32.866764,-13.098816 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale + decals: + 791: 38,-5 + 792: 39,-5 + 793: 41,-5 + 794: 43,-5 + 795: 44,-5 + 796: 46,-5 + 804: 51,-4 + 805: 50,-4 + 806: 49,-4 + 807: 48,-4 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale + decals: + 223: 20,-10 + 224: 21,-10 + 225: 24,-10 + 253: 28,-14 + 254: 29,-14 + 255: 30,-14 + 272: 37,-23 + 273: 38,-23 + 283: 23,-28 + 294: 26,-23 + 295: 27,-23 + 296: 28,-23 + 297: 29,-23 + 298: 30,-23 + 900: 36,-26 + 901: 37,-26 + 902: 38,-26 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale + decals: + 625: -12,-5 + 626: -13,-5 + 627: -14,-5 + 817: 10,4 + 818: 11,4 + 819: 12,4 + 992: -41,-5 + 993: -42,-5 + 994: -39,-5 + 995: -38,-5 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale + decals: + 694: -24,-9 + 695: -23,-9 + 696: -22,-9 + 697: -21,-9 + 698: -20,-9 + 718: -24,-17 + 719: -23,-17 + 720: -22,-17 + 721: -21,-17 + 722: -20,-17 + 723: -19,-17 + 726: -25,-23 + 727: -24,-23 + 728: -23,-23 + 729: -22,-23 + 739: -30,-18 + 740: -29,-18 + 741: -28,-18 + 742: -27,-18 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale + decals: + 469: -24,-5 + 472: -26,-4 + 473: -30,-5 + 474: -34,-5 + 481: -20,-5 + 482: -27,-4 + 483: -27,1 + 484: -26,1 + 492: -24,0 + 493: -22,0 + 494: -21,0 + 495: -19,0 + 501: -40,9 + 502: -39,9 + 503: -38,9 + 504: -37,9 + 505: -36,9 + 510: -42,9 + 511: -43,9 + 512: -44,9 + 513: -45,9 + 514: -46,9 + 515: -47,9 + 516: -48,9 + 517: -49,9 + 518: -50,9 + 519: -51,9 + 531: -39,18 + 532: -38,18 + 533: -37,18 + 534: -36,18 + 535: -35,18 + 536: -34,18 + 537: -33,18 + 538: -32,18 + 539: -31,18 + 540: -30,18 + 541: -29,18 + 546: -27,13 + 557: -21,13 + 565: -26,10 + 566: -25,10 + 567: -24,10 + 568: -23,10 + 569: -22,10 + 587: -35,9 + 588: -34,9 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale + decals: + 662: 33,-3 + 663: 34,-3 + 664: 35,-3 + 665: 19,-4 + 666: 20,-4 + 669: 24,-5 + 670: 25,-5 + 671: 29,-5 + 672: 30,-5 + 840: 18,1 + 841: 19,1 + 842: 20,1 + 868: 29,9 + 869: 30,9 + 870: 33,9 + 871: 34,9 + 872: 35,9 + 873: 36,9 + 874: 37,9 + 875: 38,9 + 876: 39,9 + 877: 40,9 + 878: 41,9 + 879: 43,10 + 880: 44,10 + - node: + color: '#334E6DC8' + id: HalfTileOverlayGreyscale180 + decals: + 788: 41,-7 + 789: 39,-7 + 790: 38,-7 + 797: 43,-7 + 798: 44,-7 + 799: 46,-7 + 800: 48,-8 + 801: 49,-8 + 802: 50,-8 + 803: 51,-8 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale180 + decals: + 45: 28,-12 + 46: 29,-12 + 47: 30,-12 + 52: 32,-11 + 239: 23,-14 + 240: 24,-14 + 266: 37,-24 + 267: 38,-24 + 274: 20,-14 + 275: 21,-14 + 652: 21,-8 + 653: 22,-8 + 654: 23,-8 + 655: 29,-7 + 656: 30,-7 + 657: 35,-7 + 831: 19,-26 + 832: 21,-26 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale180 + decals: + 634: 1,-13 + 635: 2,-13 + 636: 5,-13 + 637: 6,-13 + 641: 11,-7 + 642: 12,-7 + 643: 13,-7 + 814: 10,0 + 815: 11,0 + 816: 12,0 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale180 + decals: + 365: -4,0 + 366: -3,0 + 367: -2,0 + 368: -1,0 + 369: 0,0 + 370: 1,0 + 371: 2,0 + 372: 3,0 + 395: 6,19 + 396: 7,19 + 397: 8,19 + 398: 9,19 + 399: 10,19 + 423: -1,9 + 424: -3,9 + 425: -2,9 + 426: -4,9 + 427: -5,9 + 428: 1,9 + 429: 2,9 + 430: 3,9 + 451: 6,25 + 452: 7,25 + 453: 8,25 + 454: 9,25 + 761: -1,19 + 762: 0,19 + 763: 1,19 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale180 + decals: + 675: -32,-8 + 676: -31,-8 + 677: -30,-8 + 678: -29,-8 + 681: -25,-7 + 682: -24,-7 + 683: -23,-7 + 684: -21,-7 + 685: -20,-7 + 686: -19,-7 + 986: -37,-7 + 987: -38,-7 + 988: -39,-7 + 989: -41,-7 + 990: -42,-7 + 991: -43,-7 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale180 + decals: + 488: -23,2 + 489: -22,2 + 496: -22,-3 + 497: -21,-3 + 498: -19,-3 + 499: -24,-3 + 560: -25,3 + 561: -26,3 + 562: -27,3 + 563: -21,2 + 611: -12,7 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale180 + decals: + 843: 18,-2 + 844: 19,-2 + 845: 20,-2 + 846: 21,-2 + 864: 32,15 + 865: 33,15 + 866: 34,15 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale270 + decals: + 220: 19,-13 + 221: 19,-12 + 222: 19,-11 + 230: 19,-14 + 235: 23,-11 + 236: 23,-12 + 257: 27,-15 + 284: 24,-26 + 285: 24,-25 + 286: 24,-24 + 287: 24,-23 + 288: 24,-21 + 289: 24,-20 + 290: 24,-19 + 291: 24,-18 + 292: 24,-17 + 293: 24,-16 + 300: 33,-21 + 301: 33,-20 + 302: 33,-19 + 303: 33,-18 + 304: 33,-25 + 305: 33,-27 + 306: 33,-28 + 307: 33,-29 + 308: 33,-30 + 309: 33,-31 + 310: 33,-32 + 833: 18,-25 + 834: 18,-24 + 897: 23,-31 + 898: 23,-30 + 899: 23,-32 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale270 + decals: + 624: -9,-2 + 673: -9,-20 + 674: -9,-19 + 895: -9,-1 + 896: -9,0 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale270 + decals: + 457: 6,3 + 458: 6,4 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale270 + decals: + 687: -31,-19 + 688: -31,-20 + 689: -31,-21 + 690: -31,-22 + 691: -31,-23 + 692: -31,-24 + 693: -31,-25 + 701: -25,-11 + 702: -25,-10 + 714: -25,-18 + 715: -25,-19 + 716: -25,-20 + 717: -25,-21 + 730: -26,-24 + 731: -26,-25 + 732: -26,-26 + 733: -26,-27 + 734: -26,-28 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale270 + decals: + 463: -9,7 + 464: -9,11 + 556: -20,14 + 607: -13,8 + 608: -13,9 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale270 + decals: + 847: 17,0 + 854: 16,9 + 855: 16,10 + 856: 16,12 + 857: 16,13 + 858: 16,15 + 859: 16,16 + 887: 33,-1 + 888: 33,0 + 889: 33,1 + 890: 33,2 + - node: + color: '#52B4E996' + id: HalfTileOverlayGreyscale90 + decals: + 226: 25,-11 + 227: 25,-12 + 228: 25,-13 + 229: 25,-14 + 233: 22,-11 + 234: 22,-12 + 256: 31,-15 + 260: 25,-21 + 261: 25,-20 + 262: 25,-19 + 263: 25,-18 + 264: 25,-17 + 265: 25,-16 + 276: 25,-25 + 277: 25,-26 + 278: 25,-28 + 279: 25,-29 + 280: 25,-30 + 281: 25,-31 + 282: 25,-32 + 311: 34,-32 + 312: 34,-31 + 313: 34,-30 + 314: 34,-29 + 315: 34,-28 + 316: 34,-27 + 317: 34,-25 + 318: 34,-24 + 319: 34,-23 + 320: 34,-22 + 321: 34,-21 + 322: 35,-19 + 323: 35,-18 + 835: 22,-25 + 836: 22,-24 + - node: + color: '#9FED5896' + id: HalfTileOverlayGreyscale90 + decals: + 628: -7,-20 + 629: -7,-19 + 630: -7,-17 + 631: -7,-16 + 632: -7,-14 + 633: -7,-13 + 638: 8,-11 + 639: 8,-10 + 640: 8,-9 + 644: 8,0 + 645: 8,1 + 646: 8,2 + - node: + color: '#A4610696' + id: HalfTileOverlayGreyscale90 + decals: + 374: -7,3 + 375: -7,5 + 376: -7,6 + 377: -7,8 + 378: -7,9 + 379: -7,11 + 380: -7,12 + 381: -7,14 + 382: -3,17 + 390: 5,13 + 391: 5,14 + 392: 5,16 + 393: 5,17 + 394: 5,18 + 421: 4,11 + 422: 4,10 + 447: 5,21 + 448: 5,22 + 449: 5,23 + 450: 5,24 + - node: + color: '#D381C996' + id: HalfTileOverlayGreyscale90 + decals: + 699: -19,-10 + 700: -19,-11 + - node: + color: '#DE3A3A96' + id: HalfTileOverlayGreyscale90 + decals: + 542: -28,17 + 543: -28,16 + 544: -28,15 + 545: -28,14 + 549: -18,14 + 550: -18,13 + 551: -18,12 + 552: -18,11 + 553: -18,10 + 554: -18,9 + 555: -18,8 + 609: -11,9 + 610: -11,8 + 1110: -53,7 + 1111: -53,8 + 1112: -53,9 + - node: + color: '#EFB34196' + id: HalfTileOverlayGreyscale90 + decals: + 860: 31,11 + 861: 31,12 + 862: 31,13 + 863: 31,14 + 883: 35,-1 + 884: 35,0 + 885: 35,1 + 886: 35,2 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 985: 11,29 + - node: + cleanable: True + color: '#FFFFFFFF' + id: LoadingArea + decals: + 164: 0,6 + 165: 1,13 + - node: + cleanable: True + color: '#FFFFFFFF' + id: LoadingAreaGreyscale + decals: + 166: 2,27 + - node: + color: '#F9801DCC' + id: MiniTileCheckerAOverlay + decals: + 204: 19,-21 + 205: 19,-20 + 206: 19,-19 + 207: 19,-18 + 208: 19,-17 + 209: 19,-16 + 210: 22,-16 + 211: 22,-17 + 212: 22,-18 + 213: 22,-19 + 214: 22,-20 + 215: 22,-21 + 216: 21,-21 + 217: 20,-21 + 218: 20,-16 + 219: 21,-16 + - node: + color: '#52B4E996' + id: MiniTileCheckerBOverlay + decals: + 826: 18,-23 + 827: 19,-23 + 828: 20,-23 + 829: 21,-23 + 830: 22,-23 + - node: + color: '#FFFFFFFF' + id: MiniTileWhiteLineW + decals: + 967: -19,-25 + 968: -19,-24 + 969: -19,-23 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale + decals: + 839: 24,-28 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale + decals: + 461: 6,6 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale + decals: + 465: -9,6 + 468: -9,10 + 470: -23,-5 + 475: -33,-5 + 476: -29,-5 + 480: -19,-5 + 558: -20,13 + 589: -33,9 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale + decals: + 881: 42,9 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale180 + decals: + 49: 31,-11 + 660: 28,-7 + 661: 34,-7 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale180 + decals: + 648: 8,3 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale180 + decals: + 384: -4,16 + 385: -3,18 + 418: 5,19 + 419: 4,12 + 455: 5,25 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale180 + decals: + 1115: -20,-25 + 1116: -21,-25 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale180 + decals: + 867: 31,15 + - node: + color: '#52B4E996' + id: QuarterTileOverlayGreyscale270 + decals: + 48: 27,-11 + 658: 36,-7 + 659: 31,-7 + - node: + color: '#A4610696' + id: QuarterTileOverlayGreyscale270 + decals: + 462: 6,5 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale270 + decals: + 466: -9,12 + 467: -9,8 + 559: -24,3 + - node: + color: '#9FED5896' + id: QuarterTileOverlayGreyscale90 + decals: + 647: 8,-1 + - node: + color: '#D381C996' + id: QuarterTileOverlayGreyscale90 + decals: + 1113: -21,-23 + 1114: -20,-23 + - node: + color: '#DE3A3A96' + id: QuarterTileOverlayGreyscale90 + decals: + 477: -31,-5 + 478: -35,-5 + 479: -21,-5 + 547: -28,13 + - node: + color: '#EFB34196' + id: QuarterTileOverlayGreyscale90 + decals: + 853: 21,0 + - node: + color: '#FFFFFFFF' + id: StandClear + decals: + 72: -48,11 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale + decals: + 231: 19,-10 + 238: 23,-10 + 258: 27,-14 + 271: 36,-23 + 299: 32,-22 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale + decals: + 459: 5,2 + 460: 6,7 + - node: + color: '#D381C996' + id: ThreeQuarterTileOverlayGreyscale + decals: + 703: -25,-9 + 724: -25,-17 + 725: -26,-23 + 743: -31,-18 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale + decals: + 667: 17,-4 + 852: 17,1 + 882: 42,10 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 50: 31,-12 + 269: 39,-24 + 324: 35,-20 + 650: 25,-8 + 837: 22,-26 + - node: + color: '#9FED5896' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 649: 8,-13 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 383: -3,16 + 420: 5,12 + 431: 4,9 + - node: + color: '#D381C996' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 680: -27,-8 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 612: -11,7 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale180 + decals: + 848: 22,-2 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 51: 27,-12 + 268: 36,-24 + 651: 19,-8 + 838: 18,-26 + - node: + color: '#D381C996' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 679: -34,-8 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 490: -24,2 + 613: -13,7 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale270 + decals: + 849: 17,-2 + - node: + color: '#52B4E996' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 232: 25,-10 + 237: 22,-10 + 259: 31,-14 + 270: 39,-23 + - node: + color: '#A4610696' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 373: -6,2 + - node: + color: '#D381C996' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 704: -19,-9 + - node: + color: '#DE3A3A96' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 471: -25,-4 + 485: -25,1 + 548: -28,18 + - node: + color: '#EFB34196' + id: ThreeQuarterTileOverlayGreyscale90 + decals: + 668: 22,-4 + 850: 22,0 + 851: 21,1 + - node: + color: '#FFFFFFFF' + id: WarnCornerNE + decals: + 434: 2,24 + 442: 3,21 + - node: + color: '#FFFFFFFF' + id: WarnCornerNW + decals: + 932: 31,-2 + 1213: 25,5 + - node: + color: '#FFFFFFFF' + id: WarnCornerSE + decals: + 444: 3,14 + 933: 28,1 + - node: + color: '#FFFFFFFF' + id: WarnCornerSW + decals: + 446: 1,14 + 778: 38,0 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNE + decals: + 443: 2,21 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallNW + decals: + 65: -47,11 + 760: 25,2 + - node: + color: '#FFFFFFFF' + id: WarnCornerSmallSW + decals: + 85: -48,7 + - node: + color: '#FFFFFFFF' + id: WarnEndE + decals: + 58: 0,-5 + - node: + color: '#FFFFFFFF' + id: WarnEndN + decals: + 350: 13,23 + 432: 0,9 + 961: -17,-32 + 962: -15,-32 + 963: -13,-32 + - node: + color: '#FFFFFFFF' + id: WarnEndS + decals: + 433: 0,7 + 964: -17,-33 + 965: -15,-33 + 966: -13,-33 + - node: + color: '#FFFFFFFF' + id: WarnEndW + decals: + 57: -1,-5 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 132: -23,12 + 133: -23,13 + 435: 2,23 + 436: 2,22 + 437: 3,20 + 438: 3,19 + 439: 3,18 + 440: 3,17 + 441: 3,16 + 756: 18,3 + 757: 18,4 + 758: 18,5 + 759: 18,6 + 934: 28,2 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 75: -50,10 + 76: -49,10 + 77: -48,10 + 78: -47,10 + 79: -49,6 + 80: -50,6 + 81: -51,6 + 82: -51,7 + 83: -50,7 + 84: -49,7 + 119: -34,11 + 120: -35,11 + 445: 2,14 + 779: 39,0 + 780: 40,0 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 66: -47,12 + 67: -47,13 + 68: -47,14 + 69: -47,15 + 70: -47,16 + 71: -47,17 + 134: -25,12 + 135: -25,13 + 754: 25,3 + 755: 25,4 + 776: 38,2 + 777: 38,1 + 1117: -21,-25 + 1118: -21,-24 + 1119: -21,-23 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 24: 6,21 + 25: 7,21 + 26: 8,21 + 27: 9,21 + 62: -50,11 + 63: -49,11 + 64: -48,11 + 121: -34,13 + 122: -35,13 + 347: 10,21 + 348: 12,21 + 349: 13,21 + 752: 23,2 + 753: 24,2 + 928: 28,-3 + 929: 29,-3 + 930: 30,-3 + 1214: 26,5 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNe + decals: + 2: 10,16 + 108: -30,14 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNw + decals: + 3: 7,16 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSe + decals: + 9: 10,13 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerSw + decals: + 8: 7,13 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineE + decals: + 4: 10,15 + 5: 10,14 + 102: -34,-20 + 103: -34,-19 + 104: -34,-18 + 109: -30,13 + 110: -30,12 + 143: -40,4 + 144: -40,5 + 773: 11,-25 + 774: 11,-24 + 775: 11,-23 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 0: 8,16 + 1: 9,16 + 111: -31,14 + 112: -32,14 + 140: -37,5 + 141: -38,5 + 142: -39,5 + 604: -13,10 + 605: -12,10 + 606: -11,10 + 620: 5,-21 + 621: 6,-21 + 622: 7,-21 + 623: 8,-21 + 781: 49,0 + 782: 50,0 + 820: 10,0 + 821: 11,0 + 822: 12,0 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 10: 9,13 + 11: 8,13 + 744: -38,-1 + 745: -39,-1 + 746: -40,-1 + 747: -41,-1 + 823: 10,3 + 824: 11,3 + 825: 12,3 + 955: -53,-20 + 956: -52,-20 + 957: -51,-20 + 958: -50,-20 + 959: -49,-20 + 960: -48,-20 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineW + decals: + 6: 7,15 + 7: 7,14 + 28: 16,23 + 29: 16,24 + 30: 16,25 + 105: -34,-20 + 106: -34,-19 + 107: -34,-18 + type: DecalGrid + - version: 2 + data: + tiles: + 0,0: + 0: 65535 + -1,0: + 0: 65535 + 0,-1: + 0: 63959 + -1,-1: + 0: 63934 + 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 + -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,1: + 0: 65535 + -1,2: + 0: 65535 + -1,3: + 0: 65535 + 0,-4: + 0: 65535 + 0,-3: + 0: 49151 + 1,-4: + 0: 65535 + 1,-3: + 0: 65535 + 1,-2: + 0: 65519 + 1,-1: + 0: 65534 + 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,-4: + 0: 65535 + -4,-3: + 0: 65535 + -4,-2: + 0: 65535 + -4,-1: + 0: 65535 + -3,-4: + 0: 65535 + -3,-3: + 0: 65535 + -3,-2: + 0: 65535 + -3,-1: + 0: 65535 + -2,-4: + 0: 65535 + -2,-3: + 0: 65535 + -2,-2: + 0: 65407 + -2,-1: + 0: 65527 + -1,-4: + 0: 65535 + -1,-3: + 0: 57343 + -8,-2: + 0: 65535 + -8,-1: + 0: 65535 + -7,-2: + 0: 65535 + -7,-1: + 0: 65535 + -7,-4: + 0: 65535 + -7,-3: + 0: 65535 + -6,-4: + 0: 65535 + -6,-3: + 0: 65535 + -6,-2: + 0: 65535 + -6,-1: + 0: 65535 + -5,-4: + 0: 65535 + -5,-3: + 0: 65535 + -5,-2: + 0: 65535 + -5,-1: + 0: 65535 + 4,-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,-2: + 0: 65535 + 7,-1: + 0: 65535 + -4,-7: + 0: 65535 + -4,-6: + 0: 65535 + -4,-5: + 0: 65535 + -3,-7: + 0: 65535 + -3,-6: + 0: 65535 + -3,-5: + 0: 65535 + -2,-7: + 0: 32767 + 1: 32768 + -2,-6: + 0: 63351 + 1: 2184 + -2,-5: + 0: 65535 + -1,-7: + 0: 36863 + 1: 28672 + -1,-6: + 1: 4095 + 0: 61440 + -1,-5: + 0: 65535 + 0,-7: + 0: 65535 + 0,-6: + 0: 65535 + 0,-5: + 0: 65535 + 1,-7: + 0: 65535 + 1,-6: + 0: 65535 + 1,-5: + 0: 65535 + 2,-7: + 0: 65535 + 2,-6: + 0: 65535 + 2,-5: + 0: 65535 + 3,-7: + 0: 65535 + 3,-6: + 0: 65535 + 3,-5: + 0: 65535 + -7,0: + 0: 65535 + -7,1: + 0: 65535 + -7,2: + 0: 65535 + -7,3: + 0: 65535 + -6,0: + 0: 65535 + -6,1: + 0: 65535 + -6,2: + 0: 65535 + -6,3: + 0: 65535 + -5,0: + 0: 65535 + -5,1: + 0: 65535 + -5,2: + 0: 65535 + -5,3: + 0: 65535 + -7,-7: + 0: 65535 + -7,-6: + 0: 65535 + -7,-5: + 0: 65535 + -6,-7: + 0: 65535 + -6,-6: + 0: 65535 + -6,-5: + 0: 65535 + -5,-7: + 0: 65535 + -5,-6: + 0: 65535 + -5,-5: + 0: 65535 + 4,0: + 0: 65535 + 4,1: + 0: 65535 + 4,2: + 0: 65535 + 5,0: + 0: 65535 + 5,1: + 0: 65535 + 5,2: + 0: 65365 + 2: 34 + 3: 136 + 6,0: + 0: 65535 + 6,1: + 0: 65535 + 6,2: + 0: 65535 + 4,-7: + 0: 65535 + 4,-6: + 0: 65535 + 4,-5: + 0: 65535 + 5,-7: + 0: 65535 + 5,-6: + 0: 65535 + 5,-5: + 0: 65535 + 6,-7: + 0: 65535 + 6,-6: + 0: 65535 + 6,-5: + 0: 65535 + 0,4: + 0: 65535 + 1,4: + 0: 65535 + 2,4: + 0: 65535 + -4,4: + 0: 65535 + -3,4: + 0: 65535 + -2,4: + 0: 65535 + -1,4: + 0: 65535 + -7,4: + 0: 65535 + -6,4: + 0: 65535 + -5,4: + 0: 65535 + 3,3: + 0: 65535 + -8,-4: + 0: 65535 + -8,-3: + 0: 65535 + 7,-4: + 0: 65535 + 7,-3: + 0: 65535 + -4,-8: + 0: 65535 + -3,-8: + 0: 65535 + -2,-8: + 0: 65535 + -1,-8: + 0: 65535 + 0,-8: + 0: 65535 + 1,-8: + 0: 65535 + 2,-8: + 0: 65535 + 3,-8: + 0: 65535 + -8,0: + 0: 65535 + -8,1: + 0: 65535 + -8,2: + 0: 65535 + -8,3: + 0: 65535 + -8,-8: + 0: 65535 + -8,-7: + 0: 65535 + -8,-6: + 0: 65535 + -8,-5: + 0: 65535 + -7,-8: + 0: 65535 + -6,-8: + 0: 65535 + -5,-8: + 0: 65535 + 4,3: + 0: 65535 + 5,3: + 0: 65535 + 6,3: + 0: 65535 + 7,0: + 0: 65535 + 7,1: + 0: 65535 + 7,2: + 0: 65535 + 7,3: + 0: 65535 + 4,-8: + 0: 65535 + 5,-8: + 0: 65535 + 6,-8: + 0: 65535 + 7,-8: + 0: 65535 + 7,-7: + 0: 65535 + 7,-6: + 0: 65535 + 7,-5: + 0: 65535 + 0,5: + 0: 65535 + 1,5: + 0: 65535 + 2,5: + 0: 65535 + 3,4: + 0: 65535 + 3,5: + 0: 65535 + -4,5: + 0: 255 + -3,5: + 0: 255 + -2,5: + 0: 255 + -1,5: + 0: 255 + -8,4: + 0: 65535 + -8,5: + 0: 4095 + -7,5: + 0: 9215 + -6,5: + 0: 255 + -5,5: + 0: 255 + -8,-9: + 0: 65280 + 4: 243 + -7,-9: + 0: 65344 + 4: 48 + -6,-9: + 0: 65280 + -5,-9: + 0: 65280 + 4: 128 + -4,-9: + 0: 65504 + 4: 17 + -3,-9: + 0: 65520 + 4: 14 + -2,-9: + 0: 65520 + 4: 3 + -1,-9: + 0: 65296 + 4: 68 + 0,-9: + 0: 65280 + 1,-9: + 0: 65280 + 2,-9: + 0: 65408 + 3,-9: + 0: 65520 + 4,-9: + 0: 65532 + 5,-9: + 0: 65535 + 6,-9: + 0: 65535 + 7,-9: + 0: 65535 + 4,4: + 0: 65535 + 4,5: + 0: 65535 + 5,4: + 0: 65535 + 5,5: + 0: 65535 + 6,4: + 0: 65535 + 6,5: + 0: 65535 + 7,4: + 0: 65535 + 7,5: + 0: 8191 + -11,-2: + 0: 65535 + -11,-1: + 0: 65535 + -10,-2: + 0: 65535 + -10,-1: + 0: 65535 + -10,-4: + 0: 65535 + -10,-3: + 0: 65535 + -9,-4: + 0: 65535 + -9,-3: + 0: 65535 + -9,-2: + 0: 65535 + -9,-1: + 0: 65535 + -11,0: + 0: 65535 + -11,1: + 0: 65535 + -11,2: + 0: 65535 + -11,3: + 0: 65535 + -10,0: + 0: 65535 + -10,1: + 0: 65535 + -10,2: + 0: 65535 + -10,3: + 0: 65535 + -9,0: + 0: 65535 + -9,1: + 0: 65535 + -9,2: + 0: 65535 + -9,3: + 0: 65535 + -11,4: + 0: 65535 + -11,5: + 0: 255 + -10,4: + 0: 65535 + -10,5: + 0: 12031 + -9,4: + 0: 65535 + -9,5: + 0: 36863 + -10,-8: + 0: 65535 + -10,-7: + 0: 65535 + -10,-6: + 0: 65535 + -10,-5: + 0: 65535 + -9,-8: + 0: 65535 + -9,-7: + 0: 65535 + -9,-6: + 0: 65535 + -9,-5: + 0: 65535 + -10,-9: + 0: 60928 + 4: 4588 + -9,-9: + 0: 65280 + 4: 255 + 8,0: + 0: 65535 + 8,1: + 0: 65535 + 8,2: + 0: 65535 + 8,3: + 0: 65535 + 9,0: + 0: 65535 + 9,1: + 0: 65535 + 9,2: + 0: 65535 + 9,3: + 0: 65535 + 10,0: + 0: 65535 + 10,1: + 0: 65535 + 10,2: + 0: 65535 + 10,3: + 0: 30591 + 8,-4: + 0: 65535 + 8,-3: + 0: 65535 + 8,-2: + 0: 65535 + 8,-1: + 0: 65535 + 9,-4: + 0: 65535 + 9,-3: + 0: 65535 + 9,-2: + 0: 65535 + 9,-1: + 0: 65535 + 10,-4: + 0: 65535 + 10,-3: + 0: 65535 + 10,-2: + 0: 65535 + 10,-1: + 0: 65535 + 8,-8: + 0: 65535 + 8,-7: + 0: 65535 + 8,-6: + 0: 65535 + 8,-5: + 0: 65535 + 9,-8: + 0: 65535 + 9,-7: + 0: 65535 + 9,-6: + 0: 65535 + 9,-5: + 0: 65535 + 10,-8: + 0: 63351 + 10,-7: + 0: 63359 + 10,-6: + 0: 65535 + 10,-5: + 0: 65535 + 8,-9: + 0: 65535 + 9,-9: + 0: 65535 + 10,-9: + 0: 63347 + 8,4: + 0: 65535 + 8,5: + 0: 8191 + 9,4: + 0: 65535 + 9,5: + 0: 9215 + 10,4: + 0: 13107 + 10,5: + 0: 51 + 0,-2: + 0: 65407 + -1,-2: + 0: 65519 + 0,7: + 0: 65535 + 1,6: + 0: 65535 + 1,7: + 0: 65535 + 2,6: + 0: 65535 + 11,0: + 0: 65535 + 11,-4: + 0: 65535 + 11,-3: + 0: 65535 + 11,-2: + 0: 65535 + 11,-1: + 0: 65535 + 12,0: + 0: 65535 + 13,0: + 0: 8089 + 12,-4: + 0: 65523 + 12,-3: + 0: 65535 + 12,-2: + 0: 65535 + 12,-1: + 0: 65535 + 13,-4: + 0: 40720 + 13,-3: + 0: 63897 + 13,-2: + 0: 32631 + 13,-1: + 0: 39415 + -11,-4: + 0: 65535 + -11,-3: + 0: 65535 + -11,-8: + 0: 65528 + 4: 4 + -11,-7: + 0: 65535 + -11,-6: + 0: 65535 + -11,-5: + 0: 65535 + -12,-4: + 0: 65535 + -12,-3: + 0: 65535 + -12,-2: + 0: 65535 + -12,-1: + 0: 65535 + -12,-6: + 0: 65535 + -12,-5: + 0: 65535 + -12,0: + 0: 65535 + -12,1: + 0: 65535 + -12,2: + 0: 65535 + -12,3: + 0: 65535 + -12,4: + 0: 65535 + -12,5: + 0: 65535 + -13,-4: + 0: 65535 + -13,-3: + 0: 65535 + -13,-2: + 0: 65535 + -13,-1: + 0: 65535 + -13,-5: + 0: 65535 + 0,6: + 0: 65535 + -1,7: + 0: 61440 + 2,7: + 0: 65535 + 0,8: + 0: 52462 + 1,8: + 0: 65535 + 2,8: + 0: 13175 + 4: 8 + 3,6: + 0: 65535 + 3,7: + 0: 65535 + 4,6: + 0: 65535 + 4,7: + 0: 30719 + 4: 34816 + 5,6: + 0: 65407 + 5,7: + 0: 2303 + 11,1: + 0: 65535 + -13,0: + 0: 65535 + -13,1: + 0: 65535 + -13,2: + 0: 65535 + -13,3: + 0: 65535 + -13,4: + 0: 65535 + 6,6: + 0: 65287 + 6,7: + 0: 4095 + 7,6: + 0: 30464 + 7,7: + 0: 887 + 4: 8 + 11,2: + 0: 13119 + 12,1: + 0: 65520 + 12,2: + 0: 15 + 13,1: + 0: 65520 + 13,2: + 0: 15 + 13,3: + 0: 61440 + 14,1: + 0: 65520 + 14,2: + 0: 26223 + 14,3: + 0: 58982 + 15,1: + 0: 65280 + 15,3: + 0: 61440 + 13,4: + 0: 61695 + 13,5: + 0: 61695 + 13,6: + 0: 255 + 14,4: + 0: 59119 + 14,5: + 0: 59119 + 14,6: + 0: 751 + 15,4: + 0: 61695 + 15,5: + 0: 61695 + 15,6: + 0: 255 + 16,1: + 0: 65420 + 16,0: + 0: 52416 + 16,2: + 0: 52428 + 16,3: + 0: 12 + 17,0: + 0: 56784 + 17,1: + 0: 65421 + 17,2: + 0: 56797 + 17,3: + 0: 13 + 18,0: + 0: 56784 + 18,1: + 0: 65421 + 18,2: + 0: 56797 + 18,3: + 0: 13 + 19,0: + 0: 4368 + 19,1: + 0: 13057 + 19,2: + 0: 4369 + 19,3: + 0: 1 + -14,1: + 0: 65518 + -14,2: + 0: 61439 + -15,-4: + 0: 34952 + -15,-3: + 0: 34944 + -15,-2: + 0: 2184 + -14,-4: + 0: 65535 + -14,-3: + 0: 65534 + -14,-2: + 0: 53247 + -14,-1: + 0: 53196 + -15,-5: + 0: 34816 + -14,-5: + 0: 65518 + -14,3: + 0: 65534 + -14,0: + 0: 61180 + -14,4: + 0: 52431 + -14,5: + 0: 8 + -13,5: + 0: 61167 + -4,7: + 0: 49152 + -3,7: + 0: 61440 + -2,7: + 0: 61440 + -7,6: + 0: 8738 + -7,7: + 0: 2 + -12,-8: + 0: 65228 + -12,-7: + 0: 65535 + 6,-10: + 0: 61440 + 7,-10: + 0: 61952 + -12,6: + 0: 15 + 8,-10: + 0: 29696 + -13,6: + 0: 14 + -14,-6: + 0: 61160 + -13,-6: + 0: 65535 + 5,-10: + 0: 32768 + 11,-7: + 0: 7 + 11,-5: + 0: 65296 + 9,-10: + 0: 58368 + 11,-9: + 0: 28672 + 14,-3: + 0: 36608 + 14,-2: + 0: 3840 + 14,-1: + 0: 3968 + 15,-3: + 0: 4096 + 15,-2: + 0: 4369 + 15,-1: + 0: 17 + -13,-7: + 0: 32768 + -16,3: + 0: 192 + -15,3: + 0: 240 + 12,-5: + 0: 12544 + -10,6: + 0: 8738 + -10,7: + 0: 2 + -9,6: + 0: 34952 + 8,6: + 0: 1 + 9,6: + 0: 2 + 11,3: + 0: 1 + -3,-10: + 4: 60928 + -2,-10: + 4: 13056 + -11,-9: + 4: 52224 + -10,-10: + 4: 32768 + -9,-10: + 4: 53248 + -4,-10: + 4: 4096 + -1,-10: + 4: 16384 + 8,7: + 4: 1 + 3,8: + 4: 26215 + 3,9: + 4: 1126 + -1,8: + 4: 26214 + -1,9: + 4: 614 + 4,8: + 4: 8 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + temperature: 235 + moles: + - 21.824879 + - 82.10312 + - 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 + - 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 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + type: GridAtmosphere + - type: GasTileOverlay + - type: RadiationGridResistance + - id: Asterisk + type: BecomesStation +- proto: AcousticGuitarInstrument + entities: + - uid: 2926 + components: + - pos: -27.319479,18.473038 + parent: 2 + type: Transform +- proto: AirAlarm + entities: + - uid: 2603 + components: + - pos: 31.5,-21.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9810 + - 9794 + - 9795 + - 8157 + - 9801 + - 9800 + - 9797 + - 7235 + - 7207 + - 9798 + - 9799 + - 7206 + - 7209 + - 7189 + - 9802 + - 9803 + - 9804 + type: DeviceNetwork + - devices: + - 9810 + - 9794 + - 9795 + - 8157 + - 9801 + - 9800 + - 9797 + - 7235 + - 7207 + - 9798 + - 9799 + - 7206 + - 7209 + - 7189 + - 9802 + - 9803 + - 9804 + type: DeviceList + - uid: 3401 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,7.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 8987 + - 8985 + - 3714 + - 7534 + - 7509 + type: DeviceNetwork + - devices: + - 8987 + - 8985 + - 3714 + - 7534 + - 7509 + type: DeviceList + - uid: 9714 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,9.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9868 + - 9869 + - 8316 + - 7637 + - 7643 + - 9872 + - 9861 + - 8343 + - 7629 + - 9862 + - 9873 + - 9874 + type: DeviceNetwork + - devices: + - 9868 + - 9869 + - 8316 + - 7637 + - 7643 + - 9872 + - 9861 + - 8343 + - 7629 + - 9862 + - 9873 + - 9874 + type: DeviceList + - uid: 9715 + components: + - pos: -14.5,16.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 8370 + - 9855 + - 7610 + - 9868 + - 7613 + - 9869 + - 8323 + - 7612 + - 9867 + - 9866 + type: DeviceNetwork + - devices: + - 8370 + - 9855 + - 7610 + - 9868 + - 7613 + - 9869 + - 8323 + - 7612 + - 9867 + - 9866 + type: DeviceList + - uid: 9768 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9766 + - 9767 + - 8754 + - 7544 + - 1234 + - 8987 + - 8985 + - 3714 + - 7533 + - 7508 + type: DeviceNetwork + - devices: + - 9766 + - 9767 + - 8754 + - 7544 + - 1234 + - 8987 + - 8985 + - 3714 + - 7533 + - 7508 + type: DeviceList + - uid: 9779 + components: + - pos: 5.5,-9.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9766 + - 9767 + - 8754 + - 7544 + - 1234 + - 8987 + - 8985 + - 3714 + - 7533 + - 7508 + - 9775 + - 9776 + - 9777 + - 9778 + - 9773 + - 9774 + - 8191 + - 7668 + - 7669 + type: DeviceNetwork + - devices: + - 9766 + - 9767 + - 8754 + - 7544 + - 1234 + - 8987 + - 8985 + - 3714 + - 7533 + - 7508 + - 9775 + - 9776 + - 9777 + - 9778 + - 9773 + - 9774 + - 8191 + - 7668 + - 7669 + type: DeviceList + - uid: 9786 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-20.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9783 + - 7705 + - 8209 + - 9784 + - 9785 + - 7708 + - 7706 + - 8192 + - 9780 + - 9781 + - 9787 + type: DeviceNetwork + - devices: + - 9783 + - 7705 + - 8209 + - 9784 + - 9785 + - 7708 + - 7706 + - 8192 + - 9780 + - 9781 + - 9787 + type: DeviceList + - uid: 9788 + components: + - pos: 14.5,-14.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 7699 + - 8193 + - 9782 + - 9780 + - 9781 + - 9789 + - 9501 + type: DeviceNetwork + - devices: + - 7699 + - 8193 + - 9782 + - 9780 + - 9781 + - 9789 + - 9501 + type: DeviceList + - uid: 9796 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-12.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9801 + - 9800 + - 9789 + - 9802 + - 9803 + - 9808 + - 9807 + - 9806 + - 7173 + - 7255 + - 7112 + - 7111 + - 7254 + - 7181 + - 7091 + - 7066 + - 9791 + - 9790 + - 7141 + - 3782 + type: DeviceNetwork + - devices: + - 9801 + - 9800 + - 9789 + - 9802 + - 9803 + - 9808 + - 9807 + - 9806 + - 7173 + - 7255 + - 7112 + - 7111 + - 7254 + - 7181 + - 7091 + - 7066 + - 9791 + - 9790 + - 7141 + - 3782 + type: DeviceList + - uid: 9811 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-11.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9792 + - 9793 + - 9805 + - 7196 + - 7126 + - 7108 + - 9806 + - 9807 + - 9808 + - 9804 + - 7134 + type: DeviceNetwork + - devices: + - 9792 + - 9793 + - 9805 + - 7196 + - 7126 + - 7108 + - 9806 + - 9807 + - 9808 + - 9804 + - 7134 + type: DeviceList + - uid: 9812 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-25.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 7156 + - 7180 + - 9810 + type: DeviceNetwork + - devices: + - 7156 + - 7180 + - 9810 + type: DeviceList + - uid: 9813 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-29.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 7283 + - 9297 + - 9795 + - 9794 + - 9815 + - 9814 + type: DeviceNetwork + - devices: + - 7283 + - 9297 + - 9795 + - 9794 + - 9815 + - 9814 + type: DeviceList + - uid: 9816 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,-29.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 7245 + - 9295 + - 7250 + - 7244 + - 9798 + - 9799 + - 9797 + - 7270 + - 7243 + type: DeviceNetwork + - devices: + - 7245 + - 9295 + - 7250 + - 7244 + - 9798 + - 9799 + - 9797 + - 7270 + - 7243 + type: DeviceList + - uid: 9822 + components: + - pos: 24.5,7.5 + parent: 2 + type: Transform + - uid: 9836 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9821 + - 9835 + - 9834 + - 7339 + - 7333 + - 7331 + - 9831 + - 9830 + - 9832 + - 9833 + type: DeviceNetwork + - devices: + - 9821 + - 9835 + - 9834 + - 7339 + - 7333 + - 7331 + - 9831 + - 9830 + - 9832 + - 9833 + type: DeviceList + - uid: 9837 + components: + - pos: 30.5,10.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9841 + - 9840 + - 7419 + - 7356 + - 7355 + - 7418 + - 9817 + - 9818 + - 9819 + - 9820 + - 9831 + - 9830 + - 9839 + - 9838 + - 7374 + - 7407 + type: DeviceNetwork + - devices: + - 9841 + - 9840 + - 7419 + - 7356 + - 7355 + - 7418 + - 9817 + - 9818 + - 9819 + - 9820 + - 9831 + - 9830 + - 9839 + - 9838 + - 7374 + - 7407 + type: DeviceList + - uid: 9842 + components: + - pos: 18.5,17.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9832 + - 7385 + - 9843 + - 9844 + - 7472 + - 9839 + - 9838 + - 7386 + - 7442 + - 7443 + type: DeviceNetwork + - devices: + - 9832 + - 7385 + - 9843 + - 9844 + - 7472 + - 9839 + - 9838 + - 7386 + - 7442 + - 7443 + type: DeviceList + - uid: 9845 + components: + - pos: 16.5,26.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10856 + type: DeviceNetwork + - devices: + - 7588 + - 9111 + - 7483 + - 9848 + - 9849 + - 9846 + - 9847 + - 10856 + type: DeviceList + - uid: 9853 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,19.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10856 + type: DeviceNetwork + - devices: + - 9852 + - 9851 + - 7500 + - 7597 + - 7505 + - 7587 + - 9848 + - 9849 + - 10856 + type: DeviceList + - uid: 9854 + components: + - pos: -2.5,15.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 1371 + type: DeviceNetwork + - devices: + - 9858 + - 9859 + - 1371 + - 7568 + - 9855 + - 9856 + - 9861 + - 8357 + - 7565 + type: DeviceList + - uid: 9864 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9862 + - 9863 + - 9865 + - 9767 + - 9766 + - 7663 + - 8300 + - 8342 + - 7566 + type: DeviceNetwork + - devices: + - 9862 + - 9863 + - 9865 + - 9767 + - 9766 + - 7663 + - 8300 + - 8342 + - 7566 + type: DeviceList + - uid: 9877 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-7.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9863 + - 9876 + - 7796 + - 8242 + - 9774 + - 9773 + - 9466 + - 9467 + - 9468 + - 7786 + - 8295 + - 9875 + type: DeviceNetwork + - devices: + - 9863 + - 9876 + - 7796 + - 8242 + - 9774 + - 9773 + - 9466 + - 9467 + - 9468 + - 7786 + - 8295 + - 9875 + type: DeviceList + - uid: 9884 + components: + - pos: -9.5,-13.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9883 + - 9881 + - 9880 + - 8243 + - 7797 + - 9466 + - 9467 + - 9468 + type: DeviceNetwork + - devices: + - 9883 + - 9881 + - 9880 + - 8243 + - 7797 + - 9466 + - 9467 + - 9468 + type: DeviceList + - uid: 9890 + components: + - pos: -11.5,-23.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9881 + - 9878 + - 9879 + - 9885 + - 7775 + - 8700 + - 8698 + - 7774 + type: DeviceNetwork + - devices: + - 9881 + - 9878 + - 9879 + - 9885 + - 7775 + - 8700 + - 8698 + - 7774 + type: DeviceList + - uid: 9891 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-25.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9787 + - 8223 + - 8117 + - 8113 + - 8226 + - 7727 + - 8275 + - 9879 + type: DeviceNetwork + - devices: + - 9787 + - 8223 + - 8117 + - 8113 + - 8226 + - 7727 + - 8275 + - 9879 + type: DeviceList + - uid: 9894 + components: + - pos: -21.5,-21.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 7855 + - 8681 + - 9893 + - 9892 + type: DeviceNetwork + - devices: + - 7855 + - 8681 + - 9893 + - 9892 + type: DeviceList + - uid: 9895 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-19.5 + parent: 2 + type: Transform + - uid: 9903 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-9.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9919 + - 9920 + type: DeviceNetwork + - devices: + - 7852 + - 8618 + - 9902 + - 9901 + - 9898 + - 7853 + - 9919 + - 9920 + type: DeviceList + - uid: 9904 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-14.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 7127 + - 7129 + type: DeviceNetwork + - devices: + - 7127 + - 7129 + type: DeviceList + - uid: 9910 + components: + - pos: -34.5,-13.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9909 + type: DeviceNetwork + - devices: + - 7897 + - 162 + - 9909 + - 9908 + - 8621 + - 8617 + - 7898 + - 9906 + - 9905 + - 9901 + - 9902 + - 7908 + - 9154 + - 9907 + type: DeviceList + - uid: 9915 + components: + - pos: -27.5,-3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9913 + - 9911 + - 9912 + - 9906 + - 9905 + - 8968 + - 8967 + - 8970 + - 8969 + - 8579 + - 9916 + - 9876 + - 9875 + - 9917 + - 9918 + type: DeviceNetwork + - devices: + - 9913 + - 9911 + - 9912 + - 9906 + - 9905 + - 8968 + - 8967 + - 8970 + - 8969 + - 8579 + - 9916 + - 9876 + - 9875 + - 9917 + - 9918 + type: DeviceList + - uid: 9927 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,11.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 8090 + - 8393 + - 8389 + - 8078 + - 9867 + - 9866 + - 8403 + - 8409 + - 8062 + - 8402 + - 9926 + - 9924 + - 9925 + - 8512 + - 9928 + - 9929 + - 9930 + - 9931 + - 7967 + - 8513 + type: DeviceNetwork + - devices: + - 8090 + - 8393 + - 8389 + - 8078 + - 9867 + - 9866 + - 8403 + - 8409 + - 8062 + - 8402 + - 9926 + - 9924 + - 9925 + - 8512 + - 9928 + - 9929 + - 9930 + - 9931 + - 7967 + - 8513 + type: DeviceList + - uid: 9932 + components: + - pos: -29.5,6.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9938 + - 9937 + - 9936 + - 9935 + - 9934 + - 8489 + - 7977 + - 7981 + - 8491 + - 9928 + - 9929 + - 9933 + - 9939 + - 9940 + - 9941 + - 9942 + - 7963 + - 8525 + - 9931 + - 9930 + type: DeviceNetwork + - devices: + - 9938 + - 9937 + - 9936 + - 9935 + - 9934 + - 8489 + - 7977 + - 7981 + - 8491 + - 9928 + - 9929 + - 9933 + - 9939 + - 9940 + - 9941 + - 9942 + - 7963 + - 8525 + - 9931 + - 9930 + type: DeviceList + - uid: 9943 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,1.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9933 + - 9944 + - 8549 + - 7951 + - 7952 + - 8544 + - 9913 + - 9918 + - 9917 + - 7955 + - 8534 + - 9941 + - 9942 + - 9940 + - 9939 + type: DeviceNetwork + - devices: + - 9933 + - 9944 + - 8549 + - 7951 + - 7952 + - 8544 + - 9913 + - 9918 + - 9917 + - 7955 + - 8534 + - 9941 + - 9942 + - 9940 + - 9939 + type: DeviceList + - uid: 9946 + components: + - pos: -50.5,10.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9947 + - 8461 + - 8011 + - 8010 + - 8460 + - 8459 + - 8007 + - 9934 + - 9935 + type: DeviceNetwork + - devices: + - 9947 + - 8461 + - 8011 + - 8010 + - 8460 + - 8459 + - 8007 + - 9934 + - 9935 + type: DeviceList + - uid: 9951 + components: + - pos: -49.5,-14.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 3974 + - 9954 + - 9948 + - 9949 + - 9955 + type: DeviceNetwork + - devices: + - 3974 + - 9954 + - 9948 + - 9949 + - 9955 + type: DeviceList + - uid: 9952 + components: + - pos: -45.5,-3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9947 + - 8461 + - 8011 + - 8010 + - 8460 + - 8459 + - 8007 + - 9934 + - 9935 + - 9914 + - 9911 + - 9912 + - 9153 + - 7930 + - 9907 + - 9950 + - 858 + - 8961 + - 7929 + - 9948 + - 9949 + type: DeviceNetwork + - devices: + - 9947 + - 8461 + - 8011 + - 8010 + - 8460 + - 8459 + - 8007 + - 9934 + - 9935 + - 9914 + - 9911 + - 9912 + - 9153 + - 7930 + - 9907 + - 9950 + - 858 + - 8961 + - 7929 + - 9948 + - 9949 + type: DeviceList + - uid: 9956 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,-10.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 8963 + - 9950 + - 7927 + - 9955 + type: DeviceNetwork + - devices: + - 8963 + - 9950 + - 7927 + - 9955 + type: DeviceList + - uid: 9958 + components: + - pos: 41.5,-3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 453 + - 293 + type: DeviceNetwork + - devices: + - 453 + - 293 + - 9959 + - 9960 + - 8118 + - 7311 + - 8151 + - 7301 + - 7302 + - 8152 + type: DeviceList + - uid: 9961 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,-10.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 7303 + - 8149 + - 9959 + - 9960 + - 9414 + - 8144 + - 9415 + type: DeviceNetwork + - devices: + - 7303 + - 8149 + - 9959 + - 9960 + - 9414 + - 8144 + - 9415 + type: DeviceList + - uid: 10119 + components: + - pos: 16.5,-3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10117 + - 7067 + - 9769 + - 9770 + - 10121 + - 10120 + - 9834 + - 9833 + - 7068 + - 10116 + - 9823 + - 9824 + - 9790 + - 9791 + - 9835 + - 7102 + - 7101 + type: DeviceNetwork + - devices: + - 10117 + - 7067 + - 9769 + - 9770 + - 10121 + - 10120 + - 9834 + - 9833 + - 7068 + - 10116 + - 9823 + - 9824 + - 9790 + - 9791 + - 9835 + - 7102 + - 7101 + type: DeviceList + - uid: 10122 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-21.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 162 + - 9892 + - 9896 + - 9897 + - 9908 + - 9909 + - 7885 + - 8641 + - 7876 + - 8639 + - 8640 + - 7884 + - 7890 + - 8638 + type: DeviceNetwork + - devices: + - 162 + - 9892 + - 9896 + - 9897 + - 9908 + - 9909 + - 7885 + - 8641 + - 7876 + - 8639 + - 8640 + - 7884 + - 7890 + - 8638 + type: DeviceList + - uid: 10787 + components: + - pos: 31.5,-3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9823 + - 9824 + - 9793 + - 9792 + - 7072 + - 7344 + - 7312 + - 9805 + - 293 + - 453 + - 9817 + - 9818 + type: DeviceNetwork + - devices: + - 9823 + - 9824 + - 9793 + - 9792 + - 7072 + - 7344 + - 7312 + - 9805 + - 293 + - 453 + - 9817 + - 9818 + type: DeviceList +- proto: AirCanister + entities: + - uid: 2502 + components: + - pos: 22.5,-25.5 + parent: 2 + type: Transform + - uid: 3824 + components: + - pos: -24.5,-14.5 + parent: 2 + type: Transform + - uid: 10210 + components: + - pos: 14.5,16.5 + parent: 2 + type: Transform + - uid: 10211 + components: + - pos: 19.5,-34.5 + parent: 2 + type: Transform + - uid: 10214 + components: + - pos: 43.5,1.5 + parent: 2 + type: Transform +- proto: Airlock + entities: + - uid: 9886 + components: + - pos: -11.5,-27.5 + parent: 2 + type: Transform + - uid: 9887 + components: + - pos: -11.5,-22.5 + parent: 2 + type: Transform + - uid: 9957 + components: + - pos: -47.5,-3.5 + parent: 2 + type: Transform +- proto: AirlockArmoryGlassLocked + entities: + - uid: 3932 + components: + - pos: -40.5,12.5 + parent: 2 + type: Transform + - uid: 3933 + components: + - pos: -43.5,10.5 + parent: 2 + type: Transform +- proto: AirlockArmoryLocked + entities: + - uid: 3931 + components: + - pos: -37.5,10.5 + parent: 2 + type: Transform +- proto: AirlockBarGlassLocked + entities: + - uid: 9149 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-22.5 + parent: 2 + type: Transform +- proto: AirlockBarLocked + entities: + - uid: 9176 + components: + - pos: 10.5,-22.5 + parent: 2 + type: Transform +- proto: AirlockBrigGlassLocked + entities: + - uid: 3650 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,18.5 + parent: 2 + type: Transform + - uid: 3652 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,15.5 + parent: 2 + type: Transform + - uid: 3653 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,17.5 + parent: 2 + type: Transform + - uid: 3658 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,6.5 + parent: 2 + type: Transform + - uid: 3659 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,6.5 + parent: 2 + type: Transform + - uid: 3946 + components: + - pos: -27.5,5.5 + parent: 2 + type: Transform + - uid: 5097 + components: + - pos: -27.5,4.5 + parent: 2 + type: Transform + - uid: 9067 + components: + - pos: -36.5,-1.5 + parent: 2 + type: Transform +- proto: AirlockBrigLocked + entities: + - uid: 3660 + components: + - pos: -26.5,2.5 + parent: 2 + type: Transform + - uid: 3661 + components: + - pos: -25.5,2.5 + parent: 2 + type: Transform + - uid: 3948 + components: + - pos: -33.5,3.5 + parent: 2 + type: Transform + - uid: 9066 + components: + - pos: -39.5,-3.5 + parent: 2 + type: Transform + - uid: 9068 + components: + - pos: -41.5,-0.5 + parent: 2 + type: Transform +- proto: AirlockCaptainGlassLocked + entities: + - uid: 2359 + components: + - pos: 48.5,-0.5 + parent: 2 + type: Transform +- proto: AirlockCaptainLocked + entities: + - uid: 4637 + components: + - pos: 45.5,-3.5 + parent: 2 + type: Transform +- proto: AirlockCargoGlassLocked + entities: + - uid: 3961 + components: + - pos: -3.5,8.5 + parent: 2 + type: Transform + - uid: 3962 + components: + - pos: -3.5,15.5 + parent: 2 + type: Transform + - uid: 3963 + components: + - pos: 3.5,8.5 + parent: 2 + type: Transform + - uid: 3964 + components: + - pos: 2.5,8.5 + parent: 2 + type: Transform + - uid: 4119 + components: + - pos: 11.5,20.5 + parent: 2 + type: Transform + - uid: 4120 + components: + - pos: 11.5,19.5 + parent: 2 + type: Transform +- proto: AirlockCargoLocked + entities: + - uid: 3955 + components: + - pos: 5.5,15.5 + parent: 2 + type: Transform + - uid: 3956 + components: + - pos: 4.5,15.5 + parent: 2 + type: Transform + - uid: 3957 + components: + - pos: -5.5,6.5 + parent: 2 + type: Transform + - uid: 3966 + components: + - pos: 5.5,10.5 + parent: 2 + type: Transform +- proto: AirlockChapelLocked + entities: + - uid: 9087 + components: + - pos: -41.5,-13.5 + parent: 2 + type: Transform +- proto: AirlockChemistryLocked + entities: + - uid: 4035 + components: + - pos: 23.5,-16.5 + parent: 2 + type: Transform +- proto: AirlockChiefEngineerGlassLocked + entities: + - uid: 9020 + components: + - pos: 32.5,17.5 + parent: 2 + type: Transform +- proto: AirlockChiefEngineerLocked + entities: + - uid: 9019 + components: + - pos: 36.5,10.5 + parent: 2 + type: Transform +- proto: AirlockChiefMedicalOfficerLocked + entities: + - uid: 4043 + components: + - pos: 35.5,-22.5 + parent: 2 + type: Transform +- proto: AirlockCommandGlass + entities: + - uid: 9825 + components: + - pos: 37.5,-6.5 + parent: 2 + type: Transform + - uid: 9826 + components: + - pos: 37.5,-4.5 + parent: 2 + type: Transform +- proto: AirlockCommandGlassLocked + entities: + - uid: 1608 + components: + - pos: 36.5,0.5 + parent: 2 + type: Transform + - uid: 3908 + components: + - pos: 46.5,-13.5 + parent: 2 + type: Transform + - uid: 9025 + components: + - pos: 40.5,-4.5 + parent: 2 + type: Transform + - uid: 9026 + components: + - pos: 40.5,-6.5 + parent: 2 + type: Transform + - uid: 9030 + components: + - pos: 45.5,-7.5 + parent: 2 + type: Transform + - uid: 9031 + components: + - pos: 49.5,-8.5 + parent: 2 + type: Transform +- proto: AirlockCommandLocked + entities: + - uid: 9029 + components: + - pos: 47.5,-5.5 + parent: 2 + type: Transform +- proto: AirlockDetectiveLocked + entities: + - uid: 9072 + components: + - pos: -9.5,10.5 + parent: 2 + type: Transform +- proto: AirlockEngineeringGlass + entities: + - uid: 8991 + components: + - pos: 21.5,-2.5 + parent: 2 + type: Transform + - uid: 8992 + components: + - pos: 18.5,-2.5 + parent: 2 + type: Transform +- proto: AirlockEngineeringGlassLocked + entities: + - uid: 8993 + components: + - pos: 33.5,-1.5 + parent: 2 + type: Transform + - uid: 8994 + components: + - pos: 34.5,-1.5 + parent: 2 + type: Transform + - uid: 8995 + components: + - pos: 34.5,3.5 + parent: 2 + type: Transform + - uid: 8996 + components: + - pos: 33.5,3.5 + parent: 2 + type: Transform + - uid: 8997 + components: + - pos: 32.5,0.5 + parent: 2 + type: Transform + - uid: 9001 + components: + - pos: 23.5,0.5 + parent: 2 + type: Transform + - uid: 9021 + components: + - pos: 18.5,7.5 + parent: 2 + type: Transform + - uid: 9687 + components: + - rot: 3.141592653589793 rad + pos: 29.5,10.5 + parent: 2 + type: Transform + - uid: 9688 + components: + - rot: 3.141592653589793 rad + pos: 28.5,10.5 + parent: 2 + type: Transform + - uid: 9828 + components: + - pos: 27.5,5.5 + parent: 2 + type: Transform + - uid: 9829 + components: + - pos: 27.5,4.5 + parent: 2 + type: Transform +- proto: AirlockEngineeringLocked + entities: + - uid: 8998 + components: + - pos: 27.5,-0.5 + parent: 2 + type: Transform + - uid: 8999 + components: + - pos: 29.5,3.5 + parent: 2 + type: Transform + - uid: 9000 + components: + - pos: 30.5,3.5 + parent: 2 + type: Transform + - uid: 9002 + components: + - pos: 18.5,2.5 + parent: 2 + type: Transform + - uid: 9003 + components: + - pos: 9.5,6.5 + parent: 2 + type: Transform +- proto: AirlockEVAGlassLocked + entities: + - uid: 8972 + components: + - pos: -11.5,-30.5 + parent: 2 + type: Transform +- proto: AirlockEVALocked + entities: + - uid: 223 + components: + - pos: -19.5,-30.5 + parent: 2 + type: Transform +- proto: AirlockExternalGlassCargoLocked + entities: + - uid: 1677 + components: + - pos: 5.5,32.5 + parent: 2 + type: Transform + - uid: 1678 + components: + - pos: 7.5,32.5 + parent: 2 + type: Transform + - uid: 3011 + components: + - rot: 3.141592653589793 rad + pos: 16.5,27.5 + parent: 2 + type: Transform + - links: + - 3044 + - 3026 + type: DeviceLinkSink + - linkedPorts: + 3044: + - DoorStatus: DoorBolt + 3026: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 3026 + components: + - rot: 3.141592653589793 rad + pos: 19.5,27.5 + parent: 2 + type: Transform + - links: + - 3029 + - 3011 + type: DeviceLinkSink + - linkedPorts: + 3029: + - DoorStatus: DoorBolt + 3011: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 3029 + components: + - rot: 3.141592653589793 rad + pos: 16.5,28.5 + parent: 2 + type: Transform + - links: + - 3044 + - 3026 + type: DeviceLinkSink + - linkedPorts: + 3044: + - DoorStatus: DoorBolt + 3026: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 3044 + components: + - rot: 3.141592653589793 rad + pos: 19.5,28.5 + parent: 2 + type: Transform + - links: + - 3029 + - 3011 + type: DeviceLinkSink + - linkedPorts: + 3029: + - DoorStatus: DoorBolt + 3011: + - DoorStatus: DoorBolt + type: DeviceLinkSource +- proto: AirlockExternalGlassEasyPry + entities: + - uid: 8946 + components: + - pos: -9.5,-34.5 + parent: 2 + type: Transform + - uid: 9138 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,-16.5 + parent: 2 + type: Transform + - uid: 9139 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,-14.5 + parent: 2 + type: Transform + - uid: 9140 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,-8.5 + parent: 2 + type: Transform + - uid: 9141 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,-6.5 + parent: 2 + type: Transform + - uid: 10899 + components: + - pos: -7.5,-34.5 + parent: 2 + type: Transform +- proto: AirlockExternalGlassEngineeringLocked + entities: + - uid: 2001 + components: + - pos: 24.5,21.5 + parent: 2 + type: Transform + - links: + - 2067 + - 2066 + type: DeviceLinkSink + - linkedPorts: + 2067: + - DoorStatus: DoorBolt + 2066: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 2066 + components: + - pos: 24.5,17.5 + parent: 2 + type: Transform + - links: + - 2077 + - 2001 + type: DeviceLinkSink + - linkedPorts: + 2077: + - DoorStatus: DoorBolt + 2001: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 2067 + components: + - pos: 23.5,17.5 + parent: 2 + type: Transform + - links: + - 2077 + - 2001 + type: DeviceLinkSink + - linkedPorts: + 2077: + - DoorStatus: DoorBolt + 2001: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 2077 + components: + - pos: 23.5,21.5 + parent: 2 + type: Transform + - links: + - 2067 + - 2066 + type: DeviceLinkSink + - linkedPorts: + 2067: + - DoorStatus: DoorBolt + 2066: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 9178 + components: + - pos: 45.5,7.5 + parent: 2 + type: Transform + - links: + - 9180 + - 9181 + type: DeviceLinkSink + - linkedPorts: + 9180: + - DoorStatus: DoorBolt + 9181: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 9179 + components: + - pos: 45.5,6.5 + parent: 2 + type: Transform + - links: + - 9180 + - 9181 + type: DeviceLinkSink + - linkedPorts: + 9180: + - DoorStatus: DoorBolt + 9181: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 9180 + components: + - pos: 48.5,7.5 + parent: 2 + type: Transform + - links: + - 9178 + - 9179 + type: DeviceLinkSink + - linkedPorts: + 9178: + - DoorStatus: DoorBolt + 9179: + - DoorStatus: DoorBolt + type: DeviceLinkSource + - uid: 9181 + components: + - pos: 48.5,6.5 + parent: 2 + type: Transform + - links: + - 9178 + - 9179 + type: DeviceLinkSink + - linkedPorts: + 9178: + - DoorStatus: DoorBolt + 9179: + - DoorStatus: DoorBolt + type: DeviceLinkSource +- proto: AirlockExternalGlassShuttleArrivals + entities: + - uid: 934 + components: + - rot: 3.141592653589793 rad + pos: -12.5,20.5 + parent: 2 + type: Transform + - uid: 1022 + components: + - rot: 3.141592653589793 rad + pos: -5.5,20.5 + parent: 2 + type: Transform +- proto: AirlockExternalGlassShuttleEmergencyLocked + entities: + - uid: 9098 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,-6.5 + parent: 2 + type: Transform + - uid: 9099 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,-8.5 + parent: 2 + type: Transform + - uid: 9100 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,-14.5 + parent: 2 + type: Transform + - uid: 9101 + components: + - rot: -1.5707963267948966 rad + pos: -56.5,-16.5 + parent: 2 + type: Transform +- proto: AirlockExternalGlassShuttleEscape + entities: + - uid: 9469 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,8.5 + parent: 2 + type: Transform + - uid: 9704 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,-21.5 + parent: 2 + type: Transform +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 790 + components: + - pos: -9.5,-37.5 + parent: 2 + type: Transform + - uid: 9104 + components: + - rot: 3.141592653589793 rad + pos: 7.5,35.5 + parent: 2 + type: Transform + - uid: 9105 + components: + - rot: 3.141592653589793 rad + pos: 5.5,35.5 + parent: 2 + type: Transform + - uid: 10882 + components: + - pos: -7.5,-37.5 + parent: 2 + type: Transform +- proto: AirlockFreezerKitchenHydroLocked + entities: + - uid: 701 + components: + - pos: 0.5,-22.5 + parent: 2 + type: Transform + - uid: 703 + components: + - pos: -5.5,-23.5 + parent: 2 + type: Transform +- proto: AirlockFreezerLocked + entities: + - uid: 700 + components: + - pos: -3.5,-20.5 + parent: 2 + type: Transform +- proto: AirlockGlass + entities: + - uid: 9116 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-6.5 + parent: 2 + type: Transform + - uid: 9117 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-4.5 + parent: 2 + type: Transform + - uid: 9118 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 2 + type: Transform + - uid: 9119 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,0.5 + parent: 2 + type: Transform + - uid: 9120 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,1.5 + parent: 2 + type: Transform + - uid: 9121 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-11.5 + parent: 2 + type: Transform + - uid: 9122 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-10.5 + parent: 2 + type: Transform + - uid: 9123 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-13.5 + parent: 2 + type: Transform + - uid: 9124 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-13.5 + parent: 2 + type: Transform + - uid: 9125 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,1.5 + parent: 2 + type: Transform + - uid: 9126 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,0.5 + parent: 2 + type: Transform + - uid: 9127 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-3.5 + parent: 2 + type: Transform + - uid: 9128 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-5.5 + parent: 2 + type: Transform + - uid: 9129 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-7.5 + parent: 2 + type: Transform + - uid: 9130 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-11.5 + parent: 2 + type: Transform + - uid: 9131 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-6.5 + parent: 2 + type: Transform + - uid: 9132 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-4.5 + parent: 2 + type: Transform + - uid: 9133 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,-11.5 + parent: 2 + type: Transform + - uid: 9134 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,-11.5 + parent: 2 + type: Transform + - uid: 9135 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,-13.5 + parent: 2 + type: Transform + - uid: 9136 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,-7.5 + parent: 2 + type: Transform + - uid: 9137 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-18.5 + parent: 2 + type: Transform + - uid: 9142 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,4.5 + parent: 2 + type: Transform + - uid: 9143 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,15.5 + parent: 2 + type: Transform + - uid: 9144 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,16.5 + parent: 2 + type: Transform + - uid: 9145 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,14.5 + parent: 2 + type: Transform + - uid: 9146 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-6.5 + parent: 2 + type: Transform + - uid: 9147 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-4.5 + parent: 2 + type: Transform + - uid: 9882 + components: + - pos: -7.5,-20.5 + parent: 2 + type: Transform + - uid: 9888 + components: + - pos: -7.5,-29.5 + parent: 2 + type: Transform + - uid: 9889 + components: + - pos: -9.5,-29.5 + parent: 2 + type: Transform +- proto: AirlockHeadOfPersonnelLocked + entities: + - uid: 4067 + components: + - pos: 9.5,3.5 + parent: 2 + type: Transform +- proto: AirlockHeadOfSecurityLocked + entities: + - uid: 9095 + components: + - pos: -38.5,7.5 + parent: 2 + type: Transform +- proto: AirlockHydroGlassLocked + entities: + - uid: 9148 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-15.5 + parent: 2 + type: Transform +- proto: AirlockJanitorLocked + entities: + - uid: 9074 + components: + - pos: -9.5,-0.5 + parent: 2 + type: Transform + - uid: 9075 + components: + - pos: -12.5,-3.5 + parent: 2 + type: Transform +- proto: AirlockKitchenGlassLocked + entities: + - uid: 9150 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-16.5 + parent: 2 + type: Transform +- proto: AirlockMailGlassLocked + entities: + - uid: 3960 + components: + - pos: 0.5,15.5 + parent: 2 + type: Transform +- proto: AirlockMaintBarLocked + entities: + - uid: 588 + components: + - pos: 8.5,-24.5 + parent: 2 + type: Transform + - uid: 9175 + components: + - pos: 12.5,-25.5 + parent: 2 + type: Transform +- proto: AirlockMaintCargoLocked + entities: + - uid: 9010 + components: + - pos: 13.5,17.5 + parent: 2 + type: Transform +- proto: AirlockMaintChapelLocked + entities: + - uid: 9040 + components: + - pos: -43.5,-16.5 + parent: 2 + type: Transform +- proto: AirlockMaintCommandLocked + entities: + - uid: 4312 + components: + - pos: 42.5,-15.5 + parent: 2 + type: Transform + - uid: 9023 + components: + - pos: 42.5,-3.5 + parent: 2 + type: Transform + - uid: 9024 + components: + - pos: 43.5,-9.5 + parent: 2 + type: Transform +- proto: AirlockMaintDetectiveLocked + entities: + - uid: 9060 + components: + - pos: -13.5,10.5 + parent: 2 + type: Transform +- proto: AirlockMaintEngiLocked + entities: + - uid: 9004 + components: + - pos: 13.5,6.5 + parent: 2 + type: Transform + - uid: 9005 + components: + - pos: 16.5,5.5 + parent: 2 + type: Transform + - uid: 9006 + components: + - pos: 15.5,14.5 + parent: 2 + type: Transform + - uid: 9015 + components: + - pos: 42.5,3.5 + parent: 2 + type: Transform + - uid: 9016 + components: + - pos: 39.5,10.5 + parent: 2 + type: Transform + - uid: 9017 + components: + - pos: 37.5,18.5 + parent: 2 + type: Transform + - uid: 9018 + components: + - pos: 35.5,16.5 + parent: 2 + type: Transform + - uid: 9034 + components: + - pos: 41.5,-12.5 + parent: 2 + type: Transform + - uid: 9035 + components: + - pos: 18.5,-30.5 + parent: 2 + type: Transform + - uid: 9089 + components: + - pos: -42.5,-20.5 + parent: 2 + type: Transform + - uid: 9090 + components: + - pos: -52.5,14.5 + parent: 2 + type: Transform + - uid: 9091 + components: + - pos: -13.5,4.5 + parent: 2 + type: Transform +- proto: AirlockMaintGlass + entities: + - uid: 1239 + components: + - pos: -33.5,-32.5 + parent: 2 + type: Transform + - uid: 9698 + components: + - pos: 40.5,-31.5 + parent: 2 + type: Transform + - uid: 9699 + components: + - pos: 32.5,-34.5 + parent: 2 + type: Transform + - uid: 9700 + components: + - pos: 18.5,-33.5 + parent: 2 + type: Transform + - uid: 9702 + components: + - pos: -44.5,-21.5 + parent: 2 + type: Transform + - uid: 9703 + components: + - pos: -50.5,19.5 + parent: 2 + type: Transform + - uid: 9709 + components: + - pos: -39.5,-26.5 + parent: 2 + type: Transform + - uid: 10185 + components: + - pos: -26.5,-30.5 + parent: 2 + type: Transform + - uid: 10317 + components: + - pos: -40.5,-30.5 + parent: 2 + type: Transform + - uid: 10915 + components: + - pos: -24.5,-31.5 + parent: 2 + type: Transform +- proto: AirlockMaintHOPLocked + entities: + - uid: 4068 + components: + - pos: 13.5,3.5 + parent: 2 + type: Transform +- proto: AirlockMaintHydroLocked + entities: + - uid: 9177 + components: + - pos: 16.5,-14.5 + parent: 2 + type: Transform + - uid: 10322 + components: + - pos: 16.5,-21.5 + parent: 2 + type: Transform +- proto: AirlockMaintJanitorLocked + entities: + - uid: 9073 + components: + - pos: -10.5,1.5 + parent: 2 + type: Transform +- proto: AirlockMaintLocked + entities: + - uid: 521 + components: + - pos: -46.5,-15.5 + parent: 2 + type: Transform + - uid: 838 + components: + - pos: -15.5,-27.5 + parent: 2 + type: Transform + - uid: 855 + components: + - pos: -9.5,5.5 + parent: 2 + type: Transform + - uid: 886 + components: + - pos: 39.5,-7.5 + parent: 2 + type: Transform + - uid: 3264 + components: + - pos: -40.5,2.5 + parent: 2 + type: Transform + - uid: 6980 + components: + - pos: -48.5,20.5 + parent: 2 + type: Transform + - uid: 9007 + components: + - pos: 16.5,0.5 + parent: 2 + type: Transform + - uid: 9008 + components: + - pos: 9.5,-1.5 + parent: 2 + type: Transform + - uid: 9009 + components: + - pos: 13.5,10.5 + parent: 2 + type: Transform + - uid: 9011 + components: + - pos: 17.5,-7.5 + parent: 2 + type: Transform + - uid: 9012 + components: + - pos: 18.5,-12.5 + parent: 2 + type: Transform + - uid: 9013 + components: + - pos: 9.5,-12.5 + parent: 2 + type: Transform + - uid: 9014 + components: + - pos: 36.5,-2.5 + parent: 2 + type: Transform + - uid: 9041 + components: + - pos: -36.5,-15.5 + parent: 2 + type: Transform + - uid: 9042 + components: + - pos: -48.5,-16.5 + parent: 2 + type: Transform + - uid: 9044 + components: + - pos: -12.5,-24.5 + parent: 2 + type: Transform + - uid: 9046 + components: + - pos: -10.5,-14.5 + parent: 2 + type: Transform + - uid: 9047 + components: + - pos: -15.5,-8.5 + parent: 2 + type: Transform + - uid: 9048 + components: + - pos: -14.5,-11.5 + parent: 2 + type: Transform + - uid: 9049 + components: + - pos: -16.5,-2.5 + parent: 2 + type: Transform + - uid: 9050 + components: + - pos: -17.5,-0.5 + parent: 2 + type: Transform + - uid: 9052 + components: + - pos: -14.5,12.5 + parent: 2 + type: Transform + - uid: 9054 + components: + - pos: 9.5,-30.5 + parent: 2 + type: Transform + - uid: 9055 + components: + - pos: -5.5,-31.5 + parent: 2 + type: Transform + - uid: 9056 + components: + - pos: -51.5,-2.5 + parent: 2 + type: Transform + - uid: 9057 + components: + - pos: -42.5,-3.5 + parent: 2 + type: Transform + - uid: 9058 + components: + - pos: -53.5,6.5 + parent: 2 + type: Transform + - uid: 9059 + components: + - pos: -52.5,10.5 + parent: 2 + type: Transform + - uid: 9097 + components: + - pos: -47.5,0.5 + parent: 2 + type: Transform + - uid: 9454 + components: + - pos: -9.5,3.5 + parent: 2 + type: Transform + - uid: 9459 + components: + - pos: -15.5,-22.5 + parent: 2 + type: Transform + - uid: 9462 + components: + - pos: -46.5,-20.5 + parent: 2 + type: Transform + - uid: 10074 + components: + - pos: 15.5,-30.5 + parent: 2 + type: Transform +- proto: AirlockMaintMedLocked + entities: + - uid: 9287 + components: + - pos: 36.5,-18.5 + parent: 2 + type: Transform + - uid: 9288 + components: + - pos: 39.5,-28.5 + parent: 2 + type: Transform + - uid: 9290 + components: + - pos: 38.5,-13.5 + parent: 2 + type: Transform + - uid: 9291 + components: + - pos: 17.5,-23.5 + parent: 2 + type: Transform +- proto: AirlockMaintRnDLocked + entities: + - uid: 9036 + components: + - pos: -24.5,-28.5 + parent: 2 + type: Transform + - uid: 9037 + components: + - pos: -36.5,-22.5 + parent: 2 + type: Transform + - uid: 9038 + components: + - pos: -17.5,-18.5 + parent: 2 + type: Transform + - uid: 9039 + components: + - pos: -17.5,-10.5 + parent: 2 + type: Transform +- proto: AirlockMaintRnDMedLocked + entities: + - uid: 9285 + components: + - pos: 24.5,-32.5 + parent: 2 + type: Transform + - uid: 9286 + components: + - pos: 22.5,-28.5 + parent: 2 + type: Transform + - uid: 9289 + components: + - pos: 34.5,-32.5 + parent: 2 + type: Transform +- proto: AirlockMaintSecLocked + entities: + - uid: 1466 + components: + - pos: -45.5,6.5 + parent: 2 + type: Transform + - uid: 7268 + components: + - pos: -49.5,2.5 + parent: 2 + type: Transform + - uid: 9061 + components: + - pos: -16.5,9.5 + parent: 2 + type: Transform + - uid: 9062 + components: + - pos: -17.5,4.5 + parent: 2 + type: Transform + - uid: 9064 + components: + - pos: -45.5,17.5 + parent: 2 + type: Transform + - uid: 9065 + components: + - pos: -40.5,17.5 + parent: 2 + type: Transform +- proto: AirlockMaintTheatreLocked + entities: + - uid: 3982 + components: + - pos: -2.5,-30.5 + parent: 2 + type: Transform + - uid: 3989 + components: + - pos: 2.5,-30.5 + parent: 2 + type: Transform +- proto: AirlockMantisGlassLocked + entities: + - uid: 9237 + components: + - pos: -33.5,-20.5 + parent: 2 + type: Transform +- proto: AirlockMantisLocked + entities: + - uid: 9238 + components: + - pos: -33.5,-16.5 + parent: 2 + type: Transform +- proto: AirlockMedicalGlass + entities: + - uid: 4046 + components: + - pos: 26.5,-15.5 + parent: 2 + type: Transform + - uid: 4047 + components: + - pos: 26.5,-19.5 + parent: 2 + type: Transform + - uid: 4052 + components: + - pos: 24.5,-8.5 + parent: 2 + type: Transform + - uid: 4053 + components: + - pos: 20.5,-8.5 + parent: 2 + type: Transform +- proto: AirlockMedicalGlassLocked + entities: + - uid: 2239 + components: + - pos: 33.5,-25.5 + parent: 2 + type: Transform + - uid: 2416 + components: + - pos: 24.5,-26.5 + parent: 2 + type: Transform + - uid: 4044 + components: + - pos: 25.5,-14.5 + parent: 2 + type: Transform + - uid: 4045 + components: + - pos: 24.5,-14.5 + parent: 2 + type: Transform + - uid: 4050 + components: + - pos: 32.5,-18.5 + parent: 2 + type: Transform + - uid: 4051 + components: + - pos: 32.5,-19.5 + parent: 2 + type: Transform + - uid: 4054 + components: + - pos: 25.5,-21.5 + parent: 2 + type: Transform + - uid: 4055 + components: + - pos: 24.5,-21.5 + parent: 2 + type: Transform + - uid: 4057 + components: + - pos: 32.5,-27.5 + parent: 2 + type: Transform + - uid: 4059 + components: + - pos: 34.5,-16.5 + parent: 2 + type: Transform + - uid: 4673 + components: + - pos: 23.5,-23.5 + parent: 2 + type: Transform + - uid: 9063 + components: + - pos: 25.5,-26.5 + parent: 2 + type: Transform + - uid: 9294 + components: + - pos: 34.5,-25.5 + parent: 2 + type: Transform + - uid: 9296 + components: + - pos: 29.5,-24.5 + parent: 2 + type: Transform +- proto: AirlockMedicalLocked + entities: + - uid: 4031 + components: + - pos: 29.5,-29.5 + parent: 2 + type: Transform + - uid: 4060 + components: + - pos: 32.5,-14.5 + parent: 2 + type: Transform + - uid: 4061 + components: + - pos: 35.5,-7.5 + parent: 2 + type: Transform +- proto: AirlockMedicalScienceGlassLocked + entities: + - uid: 9156 + components: + - pos: 35.5,-28.5 + parent: 2 + type: Transform +- proto: AirlockMedicalScienceLocked + entities: + - uid: 2470 + components: + - pos: 32.5,-31.5 + parent: 2 + type: Transform + - uid: 2471 + components: + - pos: 26.5,-31.5 + parent: 2 + type: Transform +- proto: AirlockParamedicGlassLocked + entities: + - uid: 64 + components: + - pos: 30.5,-7.5 + parent: 2 + type: Transform + - uid: 514 + components: + - pos: 26.5,-10.5 + parent: 2 + type: Transform + - uid: 1529 + components: + - pos: 29.5,-7.5 + parent: 2 + type: Transform + - uid: 1745 + components: + - pos: 30.5,-12.5 + parent: 2 + type: Transform +- proto: AirlockParamedicLocked + entities: + - uid: 756 + components: + - pos: 33.5,-10.5 + parent: 2 + type: Transform +- proto: AirlockQuartermasterGlassLocked + entities: + - uid: 3965 + components: + - pos: 6.5,13.5 + parent: 2 + type: Transform +- proto: AirlockQuartermasterLocked + entities: + - uid: 3112 + components: + - pos: 8.5,18.5 + parent: 2 + type: Transform +- proto: AirlockResearchDirectorLocked + entities: + - uid: 9236 + components: + - pos: -34.5,-25.5 + parent: 2 + type: Transform +- proto: AirlockSalvageGlassLocked + entities: + - uid: 3958 + components: + - pos: 10.5,25.5 + parent: 2 + type: Transform + - uid: 3959 + components: + - pos: 10.5,26.5 + parent: 2 + type: Transform +- proto: AirlockSalvageLocked + entities: + - uid: 3954 + components: + - pos: 15.5,22.5 + parent: 2 + type: Transform +- proto: AirlockScienceGlass + entities: + - uid: 9082 + components: + - pos: -27.5,-8.5 + parent: 2 + type: Transform + - uid: 9083 + components: + - pos: -32.5,-8.5 + parent: 2 + type: Transform + - uid: 9084 + components: + - pos: -34.5,-10.5 + parent: 2 + type: Transform + - uid: 9085 + components: + - pos: -40.5,-7.5 + parent: 2 + type: Transform +- proto: AirlockScienceGlassLocked + entities: + - uid: 7130 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-13.5 + parent: 2 + type: Transform + - uid: 7131 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-11.5 + parent: 2 + type: Transform + - uid: 7132 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-11.5 + parent: 2 + type: Transform + - uid: 9076 + components: + - pos: -26.5,-23.5 + parent: 2 + type: Transform + - uid: 9077 + components: + - pos: -31.5,-22.5 + parent: 2 + type: Transform + - uid: 9078 + components: + - pos: -25.5,-18.5 + parent: 2 + type: Transform + - uid: 9079 + components: + - pos: -25.5,-19.5 + parent: 2 + type: Transform + - uid: 9235 + components: + - pos: -28.5,-25.5 + parent: 2 + type: Transform + - uid: 9899 + components: + - pos: -25.5,-10.5 + parent: 2 + type: Transform + - uid: 9900 + components: + - pos: -25.5,-9.5 + parent: 2 + type: Transform +- proto: AirlockScienceLocked + entities: + - uid: 7133 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-15.5 + parent: 2 + type: Transform + - uid: 9080 + components: + - pos: -22.5,-21.5 + parent: 2 + type: Transform + - uid: 9081 + components: + - pos: -27.5,-16.5 + parent: 2 + type: Transform +- proto: AirlockSecurity + entities: + - uid: 9071 + components: + - pos: -29.5,-3.5 + parent: 2 + type: Transform +- proto: AirlockSecurityGlass + entities: + - uid: 352 + components: + - pos: -25.5,-2.5 + parent: 2 + type: Transform + - uid: 3639 + components: + - pos: -26.5,-2.5 + parent: 2 + type: Transform + - uid: 9069 + components: + - pos: -27.5,-0.5 + parent: 2 + type: Transform + - uid: 9070 + components: + - pos: -27.5,0.5 + parent: 2 + type: Transform +- proto: AirlockSecurityGlassLocked + entities: + - uid: 137 + components: + - pos: -21.5,13.5 + parent: 2 + type: Transform + - uid: 145 + components: + - pos: -21.5,12.5 + parent: 2 + type: Transform + - uid: 160 + components: + - pos: -25.5,12.5 + parent: 2 + type: Transform + - uid: 172 + components: + - pos: -25.5,13.5 + parent: 2 + type: Transform + - uid: 3651 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,17.5 + parent: 2 + type: Transform + - uid: 3910 + components: + - pos: -26.5,16.5 + parent: 2 + type: Transform + - uid: 3913 + components: + - pos: -28.5,19.5 + parent: 2 + type: Transform + - links: + - 2734 + type: DeviceLinkSink + - uid: 3914 + components: + - pos: -31.5,19.5 + parent: 2 + type: Transform + - links: + - 2732 + type: DeviceLinkSink + - uid: 3915 + components: + - pos: -34.5,19.5 + parent: 2 + type: Transform + - links: + - 2731 + type: DeviceLinkSink + - uid: 3916 + components: + - pos: -37.5,19.5 + parent: 2 + type: Transform + - links: + - 2887 + type: DeviceLinkSink + - uid: 3917 + components: + - pos: -33.5,14.5 + parent: 2 + type: Transform + - uid: 3918 + components: + - pos: -34.5,14.5 + parent: 2 + type: Transform + - uid: 3919 + components: + - pos: -33.5,10.5 + parent: 2 + type: Transform + - uid: 3920 + components: + - pos: -34.5,10.5 + parent: 2 + type: Transform + - uid: 3923 + components: + - pos: -20.5,9.5 + parent: 2 + type: Transform + - uid: 3924 + components: + - pos: -24.5,6.5 + parent: 2 + type: Transform + - uid: 3949 + components: + - pos: -40.5,8.5 + parent: 2 + type: Transform + - uid: 3950 + components: + - pos: -40.5,9.5 + parent: 2 + type: Transform + - uid: 3951 + components: + - pos: -51.5,8.5 + parent: 2 + type: Transform +- proto: AirlockSecurityLocked + entities: + - uid: 3921 + components: + - pos: -23.5,11.5 + parent: 2 + type: Transform + - uid: 3922 + components: + - pos: -26.5,9.5 + parent: 2 + type: Transform +- proto: AirlockServiceGlassLocked + entities: + - uid: 9092 + components: + - pos: 11.5,-7.5 + parent: 2 + type: Transform + - uid: 9093 + components: + - pos: 13.5,-7.5 + parent: 2 + type: Transform +- proto: AirlockServiceLocked + entities: + - uid: 9094 + components: + - pos: 11.5,-11.5 + parent: 2 + type: Transform + - uid: 9151 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-18.5 + parent: 2 + type: Transform + - uid: 9152 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-18.5 + parent: 2 + type: Transform +- proto: AirlockTheatreLocked + entities: + - uid: 3979 + components: + - pos: 3.5,-26.5 + parent: 2 + type: Transform + - uid: 3980 + components: + - pos: -0.5,-27.5 + parent: 2 + type: Transform + - uid: 3981 + components: + - pos: -5.5,-27.5 + parent: 2 + type: Transform + - uid: 3984 + components: + - pos: 1.5,-24.5 + parent: 2 + type: Transform +- proto: AirSensor + entities: + - uid: 7127 + components: + - pos: -19.5,-12.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9904 + type: DeviceNetwork +- proto: AltarSpawner + entities: + - uid: 1563 + components: + - pos: -41.5,-10.5 + parent: 2 + type: Transform +- proto: AmeController + entities: + - uid: 2151 + components: + - pos: 35.5,6.5 + parent: 2 + type: Transform +- proto: AnomalyLocatorWide + entities: + - uid: 4204 + components: + - pos: -19.34522,-20.468327 + parent: 2 + type: Transform +- proto: APCBasic + entities: + - uid: 1864 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,-4.5 + parent: 2 + type: Transform + - uid: 2344 + components: + - pos: -23.5,-3.5 + parent: 2 + type: Transform + - uid: 4618 + components: + - rot: 3.141592653589793 rad + pos: 47.5,5.5 + parent: 2 + type: Transform + - uid: 4628 + components: + - pos: 47.5,-8.5 + parent: 2 + type: Transform + - uid: 4676 + components: + - rot: 3.141592653589793 rad + pos: 24.5,10.5 + parent: 2 + type: Transform + - uid: 4678 + components: + - pos: 38.5,10.5 + parent: 2 + type: Transform + - uid: 4680 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,29.5 + parent: 2 + type: Transform + - uid: 4681 + components: + - pos: 1.5,8.5 + parent: 2 + type: Transform + - uid: 4682 + components: + - rot: 3.141592653589793 rad + pos: -10.5,16.5 + parent: 2 + type: Transform + - uid: 4683 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,1.5 + parent: 2 + type: Transform + - uid: 4684 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,2.5 + parent: 2 + type: Transform + - uid: 4782 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-15.5 + parent: 2 + type: Transform + - uid: 4783 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-25.5 + parent: 2 + type: Transform + - uid: 4793 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-11.5 + parent: 2 + type: Transform + - uid: 4836 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-20.5 + parent: 2 + type: Transform + - uid: 4838 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-26.5 + parent: 2 + type: Transform + - uid: 4916 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,26.5 + parent: 2 + type: Transform + - uid: 5009 + components: + - pos: 22.5,1.5 + parent: 2 + type: Transform + - uid: 5013 + components: + - pos: 13.5,-3.5 + parent: 2 + type: Transform + - uid: 5025 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,11.5 + parent: 2 + type: Transform + - uid: 5032 + components: + - pos: -34.5,3.5 + parent: 2 + type: Transform + - uid: 5033 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-21.5 + parent: 2 + type: Transform + - uid: 5034 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-12.5 + parent: 2 + type: Transform + - uid: 5096 + components: + - pos: -20.5,14.5 + parent: 2 + type: Transform + - uid: 5106 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,11.5 + parent: 2 + type: Transform + - uid: 5107 + components: + - pos: -45.5,10.5 + parent: 2 + type: Transform + - uid: 5152 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,-13.5 + parent: 2 + type: Transform + - uid: 5170 + components: + - pos: -47.5,2.5 + parent: 2 + type: Transform + - uid: 5179 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-1.5 + parent: 2 + type: Transform + - uid: 5181 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-7.5 + parent: 2 + type: Transform + - uid: 5193 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,-24.5 + parent: 2 + type: Transform + - uid: 5198 + components: + - pos: -14.5,-13.5 + parent: 2 + type: Transform + - uid: 5207 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,16.5 + parent: 2 + type: Transform + - uid: 5570 + components: + - pos: 14.5,-28.5 + parent: 2 + type: Transform + - uid: 5584 + components: + - pos: 13.5,-14.5 + parent: 2 + type: Transform + - uid: 5783 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-15.5 + parent: 2 + type: Transform + - uid: 6391 + components: + - pos: -19.5,-15.5 + parent: 2 + type: Transform + - uid: 6581 + components: + - pos: -16.5,-28.5 + parent: 2 + type: Transform + - uid: 9346 + components: + - pos: 38.5,-16.5 + parent: 2 + type: Transform +- proto: AtmosDeviceFanTiny + entities: + - uid: 48 + components: + - pos: -12.5,20.5 + parent: 2 + type: Transform + - uid: 125 + components: + - pos: -5.5,20.5 + parent: 2 + type: Transform + - uid: 520 + components: + - pos: -9.5,-37.5 + parent: 2 + type: Transform + - uid: 620 + components: + - pos: 0.5,-22.5 + parent: 2 + type: Transform + - uid: 621 + components: + - pos: -3.5,-20.5 + parent: 2 + type: Transform + - uid: 699 + components: + - pos: -5.5,-23.5 + parent: 2 + type: Transform + - uid: 1680 + components: + - pos: 7.5,35.5 + parent: 2 + type: Transform + - uid: 1681 + components: + - pos: 5.5,35.5 + parent: 2 + type: Transform + - uid: 3329 + components: + - pos: -55.5,8.5 + parent: 2 + type: Transform + - uid: 3798 + components: + - pos: -7.5,-37.5 + parent: 2 + type: Transform + - uid: 7820 + components: + - pos: 43.5,-21.5 + parent: 2 + type: Transform + - uid: 8846 + components: + - pos: -56.5,-6.5 + parent: 2 + type: Transform + - uid: 8847 + components: + - pos: -56.5,-8.5 + parent: 2 + type: Transform + - uid: 8848 + components: + - pos: -56.5,-14.5 + parent: 2 + type: Transform + - uid: 8849 + components: + - pos: -56.5,-16.5 + parent: 2 + type: Transform +- proto: AtmosFixFreezerMarker + entities: + - uid: 9580 + components: + - pos: -4.5,-21.5 + parent: 2 + type: Transform + - uid: 9581 + components: + - pos: -4.5,-22.5 + parent: 2 + type: Transform + - uid: 9582 + components: + - pos: -4.5,-23.5 + parent: 2 + type: Transform + - uid: 9583 + components: + - pos: -4.5,-24.5 + parent: 2 + type: Transform + - uid: 9584 + components: + - pos: -3.5,-21.5 + parent: 2 + type: Transform + - uid: 9585 + components: + - pos: -3.5,-22.5 + parent: 2 + type: Transform + - uid: 9586 + components: + - pos: -3.5,-23.5 + parent: 2 + type: Transform + - uid: 9587 + components: + - pos: -3.5,-24.5 + parent: 2 + type: Transform + - uid: 9588 + components: + - pos: -2.5,-21.5 + parent: 2 + type: Transform + - uid: 9589 + components: + - pos: -2.5,-22.5 + parent: 2 + type: Transform + - uid: 9590 + components: + - pos: -2.5,-23.5 + parent: 2 + type: Transform + - uid: 9591 + components: + - pos: -2.5,-24.5 + parent: 2 + type: Transform + - uid: 9592 + components: + - pos: -1.5,-21.5 + parent: 2 + type: Transform + - uid: 9593 + components: + - pos: -1.5,-22.5 + parent: 2 + type: Transform + - uid: 9594 + components: + - pos: -1.5,-23.5 + parent: 2 + type: Transform + - uid: 9595 + components: + - pos: -1.5,-24.5 + parent: 2 + type: Transform + - uid: 9596 + components: + - pos: -0.5,-23.5 + parent: 2 + type: Transform + - uid: 9597 + components: + - pos: -0.5,-22.5 + parent: 2 + type: Transform + - uid: 9598 + components: + - pos: -0.5,-21.5 + parent: 2 + type: Transform +- proto: AtmosFixNitrogenMarker + entities: + - uid: 6863 + components: + - pos: 21.5,8.5 + parent: 2 + type: Transform + - uid: 6864 + components: + - pos: 21.5,9.5 + parent: 2 + type: Transform +- proto: AtmosFixOxygenMarker + entities: + - uid: 6861 + components: + - pos: 23.5,8.5 + parent: 2 + type: Transform + - uid: 6862 + components: + - pos: 23.5,9.5 + parent: 2 + type: Transform +- proto: Autolathe + entities: + - uid: 518 + components: + - pos: -4.5,9.5 + parent: 2 + type: Transform + - uid: 798 + components: + - pos: 24.5,-2.5 + parent: 2 + type: Transform +- proto: AutolatheMachineCircuitboard + entities: + - uid: 9328 + components: + - pos: 33.43459,12.54121 + parent: 2 + type: Transform +- proto: BananaPhoneInstrument + entities: + - uid: 4197 + components: + - pos: -4.7776566,-29.53807 + parent: 2 + type: Transform +- proto: BannerCargo + entities: + - uid: 10108 + components: + - pos: 14.5,21.5 + parent: 2 + type: Transform +- proto: BannerEngineering + entities: + - uid: 1644 + components: + - pos: 35.5,2.5 + parent: 2 + type: Transform +- proto: BannerMedical + entities: + - uid: 10105 + components: + - pos: 33.5,-17.5 + parent: 2 + type: Transform +- proto: BannerNanotrasen + entities: + - uid: 10106 + components: + - pos: 39.5,-5.5 + parent: 2 + type: Transform +- proto: BannerScience + entities: + - uid: 2648 + components: + - pos: -26.5,-15.5 + parent: 2 + type: Transform + - uid: 10103 + components: + - pos: -33.5,-9.5 + parent: 2 + type: Transform +- proto: BannerSecurity + entities: + - uid: 10104 + components: + - pos: -24.5,3.5 + parent: 2 + type: Transform +- proto: Barricade + entities: + - uid: 10067 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-26.5 + parent: 2 + type: Transform + - uid: 10071 + components: + - pos: -44.5,-20.5 + parent: 2 + type: Transform + - uid: 10907 + components: + - pos: -31.5,-33.5 + parent: 2 + type: Transform + - uid: 10914 + components: + - pos: -39.5,-31.5 + parent: 2 + type: Transform +- proto: BarricadeBlock + entities: + - uid: 3277 + components: + - pos: -40.5,2.5 + parent: 2 + type: Transform + - uid: 3795 + components: + - pos: -40.5,-30.5 + parent: 2 + type: Transform + - uid: 6981 + components: + - pos: -48.5,20.5 + parent: 2 + type: Transform + - uid: 10069 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-26.5 + parent: 2 + type: Transform + - uid: 10070 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-21.5 + parent: 2 + type: Transform +- proto: BarricadeDirectional + entities: + - uid: 10068 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-22.5 + parent: 2 + type: Transform + - uid: 10072 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,-26.5 + parent: 2 + type: Transform +- proto: BarSignZocalo + entities: + - uid: 261 + components: + - pos: 5.5,-13.5 + parent: 2 + type: Transform +- proto: Basketball + entities: + - uid: 3936 + components: + - pos: -7.0727725,-24.79148 + parent: 2 + type: Transform +- proto: BeachBall + entities: + - uid: 9200 + components: + - pos: -10.142745,-26.207499 + parent: 2 + type: Transform +- proto: Beaker + entities: + - uid: 368 + components: + - pos: 14.458306,-18.44028 + parent: 2 + type: Transform + - uid: 575 + components: + - pos: 21.622942,-18.246758 + parent: 2 + type: Transform + - uid: 579 + components: + - pos: 14.723931,-18.237015 + parent: 2 + type: Transform +- proto: Bed + entities: + - uid: 260 + components: + - pos: -10.5,11.5 + parent: 2 + type: Transform + - uid: 353 + components: + - pos: 13.5,-22.5 + parent: 2 + type: Transform + - uid: 841 + components: + - pos: 4.5,-25.5 + parent: 2 + type: Transform + - uid: 1132 + components: + - pos: -13.5,-26.5 + parent: 2 + type: Transform + - uid: 1148 + components: + - pos: -12.5,-21.5 + parent: 2 + type: Transform + - uid: 1172 + components: + - pos: -14.5,-21.5 + parent: 2 + type: Transform + - uid: 1523 + components: + - pos: -4.5,-26.5 + parent: 2 + type: Transform + - uid: 1566 + components: + - pos: 7.5,17.5 + parent: 2 + type: Transform + - uid: 1875 + components: + - pos: 19.5,23.5 + parent: 2 + type: Transform + - uid: 2112 + components: + - pos: 37.5,11.5 + parent: 2 + type: Transform + - uid: 2580 + components: + - pos: -12.5,-26.5 + parent: 2 + type: Transform + - uid: 2696 + components: + - pos: -24.5,20.5 + parent: 2 + type: Transform + - uid: 2785 + components: + - pos: -39.5,11.5 + parent: 2 + type: Transform + - uid: 2925 + components: + - pos: -27.5,21.5 + parent: 2 + type: Transform + - uid: 2927 + components: + - pos: -30.5,21.5 + parent: 2 + type: Transform + - uid: 2928 + components: + - pos: -33.5,21.5 + parent: 2 + type: Transform + - uid: 2929 + components: + - pos: -36.5,21.5 + parent: 2 + type: Transform + - uid: 3268 + components: + - pos: -37.5,2.5 + parent: 2 + type: Transform + - uid: 3738 + components: + - pos: -1.5,-29.5 + parent: 2 + type: Transform + - uid: 3838 + components: + - pos: -35.5,-17.5 + parent: 2 + type: Transform + - uid: 3848 + components: + - pos: -42.5,-14.5 + parent: 2 + type: Transform + - uid: 4640 + components: + - pos: 50.5,1.5 + parent: 2 + type: Transform + - uid: 6960 + components: + - pos: 38.5,-32.5 + parent: 2 + type: Transform + - uid: 10945 + components: + - pos: -28.5,-33.5 + parent: 2 + type: Transform +- proto: BedsheetBrigmedic + entities: + - uid: 2699 + components: + - pos: -24.5,20.5 + parent: 2 + type: Transform +- proto: BedsheetBrown + entities: + - uid: 11 + components: + - pos: 13.5,-22.5 + parent: 2 + type: Transform +- proto: BedsheetCaptain + entities: + - uid: 4641 + components: + - pos: 50.5,1.5 + parent: 2 + type: Transform +- proto: BedsheetCE + entities: + - uid: 890 + components: + - pos: 37.5,11.5 + parent: 2 + type: Transform +- proto: BedsheetClown + entities: + - uid: 3740 + components: + - pos: -1.5,-29.5 + parent: 2 + type: Transform +- proto: BedsheetMedical + entities: + - uid: 2153 + components: + - pos: 27.5,-20.5 + parent: 2 + type: Transform + - uid: 2190 + components: + - pos: 31.5,-20.5 + parent: 2 + type: Transform + - uid: 2250 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-20.5 + parent: 2 + type: Transform + - uid: 2427 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-18.5 + parent: 2 + type: Transform + - uid: 2443 + components: + - pos: 27.5,-16.5 + parent: 2 + type: Transform + - uid: 2685 + components: + - pos: -21.5,15.5 + parent: 2 + type: Transform + - uid: 2686 + components: + - pos: -23.5,15.5 + parent: 2 + type: Transform + - uid: 2687 + components: + - pos: -25.5,15.5 + parent: 2 + type: Transform +- proto: BedsheetMime + entities: + - uid: 3739 + components: + - pos: -4.5,-26.5 + parent: 2 + type: Transform +- proto: BedsheetOrange + entities: + - uid: 2930 + components: + - pos: -27.5,21.5 + parent: 2 + type: Transform + - uid: 2931 + components: + - pos: -30.5,21.5 + parent: 2 + type: Transform + - uid: 2932 + components: + - pos: -33.5,21.5 + parent: 2 + type: Transform + - uid: 2933 + components: + - pos: -36.5,21.5 + parent: 2 + type: Transform +- proto: BedsheetQM + entities: + - uid: 1640 + components: + - pos: 7.5,17.5 + parent: 2 + type: Transform +- proto: BedsheetRed + entities: + - uid: 2800 + components: + - pos: -39.5,11.5 + parent: 2 + type: Transform +- proto: BedsheetSpawner + entities: + - uid: 1180 + components: + - pos: -13.5,-26.5 + parent: 2 + type: Transform + - uid: 1876 + components: + - pos: 19.5,23.5 + parent: 2 + type: Transform + - uid: 2585 + components: + - pos: -12.5,-26.5 + parent: 2 + type: Transform + - uid: 2586 + components: + - pos: -12.5,-21.5 + parent: 2 + type: Transform + - uid: 2587 + components: + - pos: -14.5,-21.5 + parent: 2 + type: Transform + - uid: 3845 + components: + - pos: -35.5,-17.5 + parent: 2 + type: Transform + - uid: 3857 + components: + - pos: -42.5,-14.5 + parent: 2 + type: Transform +- proto: BedsheetSyndie + entities: + - uid: 6964 + components: + - pos: 38.5,-32.5 + parent: 2 + type: Transform +- proto: BedsheetUSA + entities: + - uid: 2444 + components: + - pos: -10.5,11.5 + parent: 2 + type: Transform +- proto: BedsheetWiz + entities: + - uid: 840 + components: + - pos: 4.5,-25.5 + parent: 2 + type: Transform +- proto: BenchParkLeft + entities: + - uid: 1477 + components: + - pos: -44.5,-8.5 + parent: 2 + type: Transform +- proto: BenchParkRight + entities: + - uid: 3380 + components: + - pos: -45.5,-8.5 + parent: 2 + type: Transform +- proto: BenchPewLeft + entities: + - uid: 379 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-1.5 + parent: 2 + type: Transform + - uid: 380 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-1.5 + parent: 2 + type: Transform + - uid: 445 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,2.5 + parent: 2 + type: Transform + - uid: 450 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,2.5 + parent: 2 + type: Transform + - uid: 1613 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-11.5 + parent: 2 + type: Transform + - uid: 1614 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-11.5 + parent: 2 + type: Transform + - uid: 1615 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-8.5 + parent: 2 + type: Transform + - uid: 1616 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-11.5 + parent: 2 + type: Transform + - uid: 1617 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-8.5 + parent: 2 + type: Transform + - uid: 1618 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-8.5 + parent: 2 + type: Transform +- proto: BenchPewRight + entities: + - uid: 405 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-2.5 + parent: 2 + type: Transform + - uid: 444 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-2.5 + parent: 2 + type: Transform + - uid: 451 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,1.5 + parent: 2 + type: Transform + - uid: 452 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,1.5 + parent: 2 + type: Transform + - uid: 1609 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-12.5 + parent: 2 + type: Transform + - uid: 1610 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-9.5 + parent: 2 + type: Transform + - uid: 1611 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-9.5 + parent: 2 + type: Transform + - uid: 1612 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-9.5 + parent: 2 + type: Transform + - uid: 2694 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-12.5 + parent: 2 + type: Transform + - uid: 10782 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-12.5 + parent: 2 + type: Transform +- proto: BenchSofaCorpLeft + entities: + - uid: 3733 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-24.5 + parent: 2 + type: Transform + - uid: 4647 + components: + - rot: 3.141592653589793 rad + pos: 45.5,-0.5 + parent: 2 + type: Transform +- proto: BenchSofaCorpMiddle + entities: + - uid: 3735 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-25.5 + parent: 2 + type: Transform +- proto: BenchSofaCorpRight + entities: + - uid: 3734 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-26.5 + parent: 2 + type: Transform + - uid: 4646 + components: + - rot: 3.141592653589793 rad + pos: 46.5,-0.5 + parent: 2 + type: Transform +- proto: BenchSofaLeft + entities: + - uid: 2936 + components: + - rot: 3.141592653589793 rad + pos: -31.5,12.5 + parent: 2 + type: Transform +- proto: BenchSofaRight + entities: + - uid: 2867 + components: + - rot: 3.141592653589793 rad + pos: -30.5,12.5 + parent: 2 + type: Transform +- proto: BenchSteelLeft + entities: + - uid: 1108 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-9.5 + parent: 2 + type: Transform + - uid: 3743 + components: + - pos: -10.5,19.5 + parent: 2 + type: Transform + - uid: 4083 + components: + - rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 2 + type: Transform + - uid: 8733 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-33.5 + parent: 2 + type: Transform +- proto: BenchSteelMiddle + entities: + - uid: 1011 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-10.5 + parent: 2 + type: Transform + - uid: 3745 + components: + - pos: -8.5,19.5 + parent: 2 + type: Transform + - uid: 3746 + components: + - pos: -9.5,19.5 + parent: 2 + type: Transform + - uid: 4065 + components: + - rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 2 + type: Transform + - uid: 4082 + components: + - rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 2 + type: Transform + - uid: 7579 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-32.5 + parent: 2 + type: Transform +- proto: BenchSteelRight + entities: + - uid: 964 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-11.5 + parent: 2 + type: Transform + - uid: 3744 + components: + - pos: -7.5,19.5 + parent: 2 + type: Transform + - uid: 4105 + components: + - rot: 3.141592653589793 rad + pos: -1.5,0.5 + parent: 2 + type: Transform + - uid: 8735 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-31.5 + parent: 2 + type: Transform +- proto: BiomassReclaimer + entities: + - uid: 2518 + components: + - pos: 27.5,-30.5 + parent: 2 + type: Transform +- proto: BlastDoor + entities: + - uid: 998 + components: + - pos: -22.5,-7.5 + parent: 2 + type: Transform + - links: + - 1189 + type: DeviceLinkSink + - uid: 1244 + components: + - pos: -23.5,-7.5 + parent: 2 + type: Transform + - links: + - 1189 + type: DeviceLinkSink + - uid: 2025 + components: + - pos: 27.5,21.5 + parent: 2 + type: Transform + - links: + - 2087 + type: DeviceLinkSink + - uid: 2026 + components: + - pos: 28.5,21.5 + parent: 2 + type: Transform + - links: + - 2087 + type: DeviceLinkSink + - uid: 8034 + components: + - pos: 29.5,21.5 + parent: 2 + type: Transform + - links: + - 2087 + type: DeviceLinkSink + - uid: 10156 + components: + - pos: 26.5,21.5 + parent: 2 + type: Transform + - links: + - 2087 + type: DeviceLinkSink +- proto: BlockGameArcade + entities: + - uid: 10063 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,14.5 + parent: 2 + type: Transform +- proto: BoardGameSpawner + entities: + - uid: 1145 + components: + - pos: -28.5,-13.5 + parent: 2 + type: Transform + - uid: 1150 + components: + - pos: -31.5,-13.5 + parent: 2 + type: Transform + - uid: 2934 + components: + - pos: -30.5,17.5 + parent: 2 + type: Transform + - uid: 8901 + components: + - pos: -52.5,-20.5 + parent: 2 + type: Transform +- proto: BodyBag_Folded + entities: + - uid: 7103 + components: + - pos: 28.349815,-8.06606 + parent: 2 + type: Transform + - uid: 7105 + components: + - pos: 28.700426,-8.237408 + parent: 2 + type: Transform +- proto: Bonfire + entities: + - uid: 3445 + components: + - pos: -45.5,-13.5 + parent: 2 + type: Transform +- proto: BookChefGaming + entities: + - uid: 2576 + components: + - pos: -2.4693463,-19.37615 + parent: 2 + type: Transform +- proto: BookRandom + entities: + - uid: 3853 + components: + - pos: -39.498756,-14.980006 + parent: 2 + type: Transform + - uid: 8890 + components: + - pos: -47.984196,-19.279593 + parent: 2 + type: Transform +- proto: BookshelfFilled + entities: + - uid: 8873 + components: + - pos: -47.5,-22.5 + parent: 2 + type: Transform +- proto: BoozeDispenser + entities: + - uid: 3988 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-23.5 + parent: 2 + type: Transform + - uid: 6979 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,21.5 + parent: 2 + type: Transform +- proto: BorgCharger + entities: + - uid: 2564 + components: + - pos: -25.5,-25.5 + parent: 2 + type: Transform + - uid: 3495 + components: + - pos: -48.5,-0.5 + parent: 2 + type: Transform + - uid: 4675 + components: + - pos: 17.5,-1.5 + parent: 2 + type: Transform +- proto: BoxBeanbag + entities: + - uid: 3938 + components: + - pos: -41.465733,13.714587 + parent: 2 + type: Transform +- proto: BoxBodyBag + entities: + - uid: 2520 + components: + - pos: 31.483065,-30.343145 + parent: 2 + type: Transform +- proto: BoxCardboard + entities: + - uid: 9669 + components: + - pos: -0.7340279,19.75417 + parent: 2 + type: Transform + - uid: 9670 + components: + - pos: -0.4423614,19.56654 + parent: 2 + type: Transform +- proto: BoxFlashbang + entities: + - uid: 3345 + components: + - pos: -45.674393,11.460362 + parent: 2 + type: Transform +- proto: BoxFolderBlue + entities: + - uid: 985 + components: + - pos: -32.315258,1.4534198 + parent: 2 + type: Transform +- proto: BoxFolderClipboard + entities: + - uid: 2860 + components: + - pos: -36.298702,11.548463 + parent: 2 + type: Transform + - uid: 3832 + components: + - pos: -19.734598,-8.32733 + parent: 2 + type: Transform +- proto: BoxFolderGrey + entities: + - uid: 1907 + components: + - pos: -37.627426,-0.54578996 + parent: 2 + type: Transform +- proto: BoxFolderRed + entities: + - uid: 1073 + components: + - pos: -32.315258,-1.5955724 + parent: 2 + type: Transform +- proto: BoxFolderYellow + entities: + - uid: 4169 + components: + - pos: 8.787746,22.530794 + parent: 2 + type: Transform +- proto: BoxingBell + entities: + - uid: 4104 + components: + - pos: -45.5,-25.5 + parent: 2 + type: Transform +- proto: BoxLightMixed + entities: + - uid: 1389 + components: + - pos: -13.321652,-1.3277344 + parent: 2 + type: Transform +- proto: BoxMagazineLightRiflePractice + entities: + - uid: 2817 + components: + - pos: -41.703293,14.711697 + parent: 2 + type: Transform +- proto: BoxMagazinePistolSubMachineGunPractice + entities: + - uid: 2793 + components: + - pos: -41.325523,14.524066 + parent: 2 + type: Transform +- proto: BoxMaintenanceLightbulb + entities: + - uid: 1386 + components: + - pos: -13.676224,-1.250433 + parent: 2 + type: Transform +- proto: BoxSyringe + entities: + - uid: 6720 + components: + - pos: 23.557522,-18.282835 + parent: 2 + type: Transform +- proto: BoxZiptie + entities: + - uid: 1192 + components: + - pos: -29.524498,7.4241 + parent: 2 + type: Transform +- proto: BrbSign + entities: + - uid: 9537 + components: + - pos: 10.374957,1.5333103 + parent: 2 + type: Transform + - uid: 9538 + components: + - pos: -3.1218042,4.6195602 + parent: 2 + type: Transform + - uid: 9539 + components: + - pos: -35.484734,12.547376 + parent: 2 + type: Transform +- proto: BrigTimer + entities: + - uid: 2731 + components: + - pos: -35.5,19.5 + parent: 2 + type: Transform + - linkedPorts: + 3915: + - Start: Close + - Timer: AutoClose + - Timer: Open + type: DeviceLinkSource + - uid: 2732 + components: + - pos: -32.5,19.5 + parent: 2 + type: Transform + - linkedPorts: + 3914: + - Start: Close + - Timer: AutoClose + - Timer: Open + type: DeviceLinkSource + - uid: 2734 + components: + - pos: -29.5,19.5 + parent: 2 + type: Transform + - linkedPorts: + 3913: + - Start: Close + - Timer: AutoClose + - Timer: Open + type: DeviceLinkSource + - uid: 2887 + components: + - pos: -38.5,19.5 + parent: 2 + type: Transform + - linkedPorts: + 3916: + - Start: Close + - Timer: AutoClose + - Timer: Open + type: DeviceLinkSource +- proto: BrokenBottle + entities: + - uid: 10941 + components: + - rot: -1.5707963267948966 rad + pos: -34.07003,-34.031334 + parent: 2 + type: Transform +- proto: Brutepack + entities: + - uid: 3928 + components: + - pos: -24.30224,17.698381 + parent: 2 + type: Transform + - uid: 4660 + components: + - pos: 27.358744,-17.430876 + parent: 2 + type: Transform +- proto: Bucket + entities: + - uid: 577 + components: + - pos: 14.380181,-20.441671 + parent: 2 + type: Transform + - uid: 578 + components: + - pos: 14.739556,-20.269676 + parent: 2 + type: Transform + - uid: 664 + components: + - pos: 12.761805,-8.645675 + parent: 2 + type: Transform + - uid: 1375 + components: + - pos: -11.077637,-2.621491 + parent: 2 + type: Transform + - uid: 1397 + components: + - pos: -11.124775,-11.077751 + parent: 2 + type: Transform + - solutions: + bucket: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 250 + reagents: + - data: null + ReagentId: Water + Quantity: 250 + type: SolutionContainerManager + - uid: 2910 + components: + - pos: -37.22765,15.837114 + parent: 2 + type: Transform +- proto: BurnAutoInjector + entities: + - uid: 825 + components: + - pos: 28.449654,-11.5423765 + parent: 2 + type: Transform +- proto: CableApcExtension + entities: + - uid: 495 + components: + - pos: 37.5,9.5 + parent: 2 + type: Transform + - uid: 618 + components: + - pos: -25.5,5.5 + parent: 2 + type: Transform + - uid: 760 + components: + - pos: 19.5,-30.5 + parent: 2 + type: Transform + - uid: 859 + components: + - pos: -54.5,-14.5 + parent: 2 + type: Transform + - uid: 891 + components: + - pos: -54.5,-8.5 + parent: 2 + type: Transform + - uid: 1025 + components: + - pos: -25.5,0.5 + parent: 2 + type: Transform + - uid: 2068 + components: + - pos: 23.5,22.5 + parent: 2 + type: Transform + - uid: 2069 + components: + - pos: 22.5,22.5 + parent: 2 + type: Transform + - uid: 2073 + components: + - pos: 21.5,22.5 + parent: 2 + type: Transform + - uid: 2075 + components: + - pos: 25.5,22.5 + parent: 2 + type: Transform + - uid: 3796 + components: + - pos: -32.5,-33.5 + parent: 2 + type: Transform + - uid: 4619 + components: + - pos: 57.5,20.5 + parent: 2 + type: Transform + - uid: 4657 + components: + - pos: -48.5,20.5 + parent: 2 + type: Transform + - uid: 4835 + components: + - pos: -1.5,-14.5 + parent: 2 + type: Transform + - uid: 4951 + components: + - pos: 20.5,-30.5 + parent: 2 + type: Transform + - uid: 5220 + components: + - pos: 47.5,-8.5 + parent: 2 + type: Transform + - uid: 5221 + components: + - pos: 47.5,-9.5 + parent: 2 + type: Transform + - uid: 5222 + components: + - pos: 46.5,-9.5 + parent: 2 + type: Transform + - uid: 5223 + components: + - pos: 45.5,-9.5 + parent: 2 + type: Transform + - uid: 5224 + components: + - pos: 45.5,-10.5 + parent: 2 + type: Transform + - uid: 5225 + components: + - pos: 48.5,-9.5 + parent: 2 + type: Transform + - uid: 5226 + components: + - pos: 45.5,-11.5 + parent: 2 + type: Transform + - uid: 5227 + components: + - pos: 49.5,-9.5 + parent: 2 + type: Transform + - uid: 5228 + components: + - pos: 49.5,-10.5 + parent: 2 + type: Transform + - uid: 5229 + components: + - pos: 49.5,-11.5 + parent: 2 + type: Transform + - uid: 5230 + components: + - pos: 49.5,-12.5 + parent: 2 + type: Transform + - uid: 5231 + components: + - pos: 48.5,-12.5 + parent: 2 + type: Transform + - uid: 5232 + components: + - pos: 47.5,-12.5 + parent: 2 + type: Transform + - uid: 5233 + components: + - pos: 46.5,-12.5 + parent: 2 + type: Transform + - uid: 5234 + components: + - pos: 45.5,-12.5 + parent: 2 + type: Transform + - uid: 5235 + components: + - pos: 45.5,-8.5 + parent: 2 + type: Transform + - uid: 5236 + components: + - pos: 45.5,-7.5 + parent: 2 + type: Transform + - uid: 5237 + components: + - pos: 45.5,-6.5 + parent: 2 + type: Transform + - uid: 5238 + components: + - pos: 44.5,-6.5 + parent: 2 + type: Transform + - uid: 5239 + components: + - pos: 43.5,-6.5 + parent: 2 + type: Transform + - uid: 5240 + components: + - pos: 42.5,-6.5 + parent: 2 + type: Transform + - uid: 5241 + components: + - pos: 41.5,-6.5 + parent: 2 + type: Transform + - uid: 5242 + components: + - pos: 40.5,-6.5 + parent: 2 + type: Transform + - uid: 5243 + components: + - pos: 39.5,-6.5 + parent: 2 + type: Transform + - uid: 5244 + components: + - pos: 38.5,-6.5 + parent: 2 + type: Transform + - uid: 5245 + components: + - pos: 38.5,-5.5 + parent: 2 + type: Transform + - uid: 5246 + components: + - pos: 47.5,-4.5 + parent: 2 + type: Transform + - uid: 5247 + components: + - pos: 48.5,-4.5 + parent: 2 + type: Transform + - uid: 5248 + components: + - pos: 49.5,-4.5 + parent: 2 + type: Transform + - uid: 5249 + components: + - pos: 50.5,-4.5 + parent: 2 + type: Transform + - uid: 5250 + components: + - pos: 50.5,-5.5 + parent: 2 + type: Transform + - uid: 5251 + components: + - pos: 51.5,-5.5 + parent: 2 + type: Transform + - uid: 5252 + components: + - pos: 52.5,-5.5 + parent: 2 + type: Transform + - uid: 5253 + components: + - pos: 50.5,-6.5 + parent: 2 + type: Transform + - uid: 5254 + components: + - pos: 46.5,-4.5 + parent: 2 + type: Transform + - uid: 5255 + components: + - pos: 45.5,-4.5 + parent: 2 + type: Transform + - uid: 5256 + components: + - pos: 45.5,-3.5 + parent: 2 + type: Transform + - uid: 5257 + components: + - pos: 45.5,-2.5 + parent: 2 + type: Transform + - uid: 5258 + components: + - pos: 45.5,-1.5 + parent: 2 + type: Transform + - uid: 5259 + components: + - pos: 45.5,-0.5 + parent: 2 + type: Transform + - uid: 5260 + components: + - pos: 46.5,-0.5 + parent: 2 + type: Transform + - uid: 5261 + components: + - pos: 47.5,-0.5 + parent: 2 + type: Transform + - uid: 5262 + components: + - pos: 48.5,-0.5 + parent: 2 + type: Transform + - uid: 5263 + components: + - pos: 50.5,-0.5 + parent: 2 + type: Transform + - uid: 5264 + components: + - pos: 49.5,-0.5 + parent: 2 + type: Transform + - uid: 5265 + components: + - pos: 46.5,0.5 + parent: 2 + type: Transform + - uid: 5266 + components: + - pos: 44.5,-4.5 + parent: 2 + type: Transform + - uid: 5267 + components: + - pos: 43.5,-4.5 + parent: 2 + type: Transform + - uid: 5268 + components: + - pos: 42.5,-4.5 + parent: 2 + type: Transform + - uid: 5269 + components: + - pos: 42.5,-3.5 + parent: 2 + type: Transform + - uid: 5270 + components: + - pos: 42.5,-2.5 + parent: 2 + type: Transform + - uid: 5271 + components: + - pos: 42.5,-1.5 + parent: 2 + type: Transform + - uid: 5272 + components: + - pos: 42.5,-0.5 + parent: 2 + type: Transform + - uid: 5273 + components: + - pos: 42.5,0.5 + parent: 2 + type: Transform + - uid: 5274 + components: + - pos: 41.5,-2.5 + parent: 2 + type: Transform + - uid: 5275 + components: + - pos: 40.5,-2.5 + parent: 2 + type: Transform + - uid: 5276 + components: + - pos: 47.5,5.5 + parent: 2 + type: Transform + - uid: 5277 + components: + - pos: 47.5,6.5 + parent: 2 + type: Transform + - uid: 5280 + components: + - pos: 49.5,7.5 + parent: 2 + type: Transform + - uid: 5281 + components: + - pos: 50.5,7.5 + parent: 2 + type: Transform + - uid: 5282 + components: + - pos: 51.5,7.5 + parent: 2 + type: Transform + - uid: 5283 + components: + - pos: 52.5,7.5 + parent: 2 + type: Transform + - uid: 5284 + components: + - pos: 53.5,7.5 + parent: 2 + type: Transform + - uid: 5285 + components: + - pos: 54.5,7.5 + parent: 2 + type: Transform + - uid: 5286 + components: + - pos: 55.5,7.5 + parent: 2 + type: Transform + - uid: 5287 + components: + - pos: 56.5,7.5 + parent: 2 + type: Transform + - uid: 5288 + components: + - pos: 57.5,7.5 + parent: 2 + type: Transform + - uid: 5289 + components: + - pos: 57.5,8.5 + parent: 2 + type: Transform + - uid: 5290 + components: + - pos: 57.5,9.5 + parent: 2 + type: Transform + - uid: 5291 + components: + - pos: 57.5,10.5 + parent: 2 + type: Transform + - uid: 5292 + components: + - pos: 57.5,11.5 + parent: 2 + type: Transform + - uid: 5293 + components: + - pos: 57.5,12.5 + parent: 2 + type: Transform + - uid: 5294 + components: + - pos: 57.5,13.5 + parent: 2 + type: Transform + - uid: 5295 + components: + - pos: 57.5,14.5 + parent: 2 + type: Transform + - uid: 5296 + components: + - pos: 57.5,15.5 + parent: 2 + type: Transform + - uid: 5297 + components: + - pos: 57.5,16.5 + parent: 2 + type: Transform + - uid: 5298 + components: + - pos: 57.5,17.5 + parent: 2 + type: Transform + - uid: 5299 + components: + - pos: 57.5,18.5 + parent: 2 + type: Transform + - uid: 5300 + components: + - pos: 57.5,19.5 + parent: 2 + type: Transform + - uid: 5301 + components: + - pos: 57.5,21.5 + parent: 2 + type: Transform + - uid: 5302 + components: + - pos: 38.5,10.5 + parent: 2 + type: Transform + - uid: 5303 + components: + - pos: 38.5,9.5 + parent: 2 + type: Transform + - uid: 5304 + components: + - pos: 38.5,8.5 + parent: 2 + type: Transform + - uid: 5305 + components: + - pos: 38.5,7.5 + parent: 2 + type: Transform + - uid: 5306 + components: + - pos: 38.5,6.5 + parent: 2 + type: Transform + - uid: 5307 + components: + - pos: 38.5,5.5 + parent: 2 + type: Transform + - uid: 5308 + components: + - pos: 39.5,8.5 + parent: 2 + type: Transform + - uid: 5309 + components: + - pos: 40.5,8.5 + parent: 2 + type: Transform + - uid: 5310 + components: + - pos: 41.5,8.5 + parent: 2 + type: Transform + - uid: 5311 + components: + - pos: 42.5,8.5 + parent: 2 + type: Transform + - uid: 5312 + components: + - pos: 43.5,8.5 + parent: 2 + type: Transform + - uid: 5313 + components: + - pos: 43.5,7.5 + parent: 2 + type: Transform + - uid: 5314 + components: + - pos: 43.5,6.5 + parent: 2 + type: Transform + - uid: 5315 + components: + - pos: 43.5,5.5 + parent: 2 + type: Transform + - uid: 5316 + components: + - pos: 39.5,10.5 + parent: 2 + type: Transform + - uid: 5317 + components: + - pos: 39.5,11.5 + parent: 2 + type: Transform + - uid: 5318 + components: + - pos: 39.5,12.5 + parent: 2 + type: Transform + - uid: 5319 + components: + - pos: 39.5,13.5 + parent: 2 + type: Transform + - uid: 5320 + components: + - pos: 39.5,14.5 + parent: 2 + type: Transform + - uid: 5321 + components: + - pos: 39.5,15.5 + parent: 2 + type: Transform + - uid: 5322 + components: + - pos: 39.5,16.5 + parent: 2 + type: Transform + - uid: 5323 + components: + - pos: 39.5,17.5 + parent: 2 + type: Transform + - uid: 5324 + components: + - pos: 38.5,17.5 + parent: 2 + type: Transform + - uid: 5325 + components: + - pos: 37.5,17.5 + parent: 2 + type: Transform + - uid: 5326 + components: + - pos: 36.5,17.5 + parent: 2 + type: Transform + - uid: 5328 + components: + - pos: 36.5,9.5 + parent: 2 + type: Transform + - uid: 5329 + components: + - pos: 36.5,10.5 + parent: 2 + type: Transform + - uid: 5330 + components: + - pos: 36.5,11.5 + parent: 2 + type: Transform + - uid: 5331 + components: + - pos: 36.5,12.5 + parent: 2 + type: Transform + - uid: 5332 + components: + - pos: 35.5,12.5 + parent: 2 + type: Transform + - uid: 5333 + components: + - pos: 34.5,12.5 + parent: 2 + type: Transform + - uid: 5334 + components: + - pos: 24.5,10.5 + parent: 2 + type: Transform + - uid: 5335 + components: + - pos: 24.5,11.5 + parent: 2 + type: Transform + - uid: 5336 + components: + - pos: 25.5,11.5 + parent: 2 + type: Transform + - uid: 5337 + components: + - pos: 26.5,11.5 + parent: 2 + type: Transform + - uid: 5338 + components: + - pos: 27.5,11.5 + parent: 2 + type: Transform + - uid: 5339 + components: + - pos: 28.5,11.5 + parent: 2 + type: Transform + - uid: 5340 + components: + - pos: 29.5,11.5 + parent: 2 + type: Transform + - uid: 5341 + components: + - pos: 30.5,11.5 + parent: 2 + type: Transform + - uid: 5342 + components: + - pos: 31.5,11.5 + parent: 2 + type: Transform + - uid: 5343 + components: + - pos: 31.5,12.5 + parent: 2 + type: Transform + - uid: 5344 + components: + - pos: 31.5,13.5 + parent: 2 + type: Transform + - uid: 5345 + components: + - pos: 31.5,14.5 + parent: 2 + type: Transform + - uid: 5346 + components: + - pos: 31.5,15.5 + parent: 2 + type: Transform + - uid: 5347 + components: + - pos: 32.5,15.5 + parent: 2 + type: Transform + - uid: 5348 + components: + - pos: 32.5,16.5 + parent: 2 + type: Transform + - uid: 5349 + components: + - pos: 32.5,17.5 + parent: 2 + type: Transform + - uid: 5350 + components: + - pos: 32.5,18.5 + parent: 2 + type: Transform + - uid: 5351 + components: + - pos: 32.5,19.5 + parent: 2 + type: Transform + - uid: 5352 + components: + - pos: 33.5,19.5 + parent: 2 + type: Transform + - uid: 5353 + components: + - pos: 23.5,11.5 + parent: 2 + type: Transform + - uid: 5354 + components: + - pos: 22.5,11.5 + parent: 2 + type: Transform + - uid: 5355 + components: + - pos: 21.5,11.5 + parent: 2 + type: Transform + - uid: 5356 + components: + - pos: 20.5,11.5 + parent: 2 + type: Transform + - uid: 5357 + components: + - pos: 19.5,11.5 + parent: 2 + type: Transform + - uid: 5358 + components: + - pos: 18.5,11.5 + parent: 2 + type: Transform + - uid: 5359 + components: + - pos: 17.5,11.5 + parent: 2 + type: Transform + - uid: 5360 + components: + - pos: 17.5,12.5 + parent: 2 + type: Transform + - uid: 5361 + components: + - pos: 16.5,12.5 + parent: 2 + type: Transform + - uid: 5362 + components: + - pos: 16.5,13.5 + parent: 2 + type: Transform + - uid: 5363 + components: + - pos: 16.5,14.5 + parent: 2 + type: Transform + - uid: 5364 + components: + - pos: 16.5,15.5 + parent: 2 + type: Transform + - uid: 5365 + components: + - pos: 17.5,10.5 + parent: 2 + type: Transform + - uid: 5366 + components: + - pos: 17.5,9.5 + parent: 2 + type: Transform + - uid: 5367 + components: + - pos: 17.5,8.5 + parent: 2 + type: Transform + - uid: 5368 + components: + - pos: 22.5,10.5 + parent: 2 + type: Transform + - uid: 5369 + components: + - pos: 24.5,12.5 + parent: 2 + type: Transform + - uid: 5370 + components: + - pos: 24.5,13.5 + parent: 2 + type: Transform + - uid: 5371 + components: + - pos: 24.5,14.5 + parent: 2 + type: Transform + - uid: 5372 + components: + - pos: 24.5,15.5 + parent: 2 + type: Transform + - uid: 5373 + components: + - pos: 24.5,16.5 + parent: 2 + type: Transform + - uid: 5374 + components: + - pos: 24.5,17.5 + parent: 2 + type: Transform + - uid: 5375 + components: + - pos: 24.5,18.5 + parent: 2 + type: Transform + - uid: 5376 + components: + - pos: 24.5,19.5 + parent: 2 + type: Transform + - uid: 5377 + components: + - pos: 24.5,20.5 + parent: 2 + type: Transform + - uid: 5378 + components: + - pos: 24.5,21.5 + parent: 2 + type: Transform + - uid: 5379 + components: + - pos: 24.5,22.5 + parent: 2 + type: Transform + - uid: 5386 + components: + - pos: 26.5,22.5 + parent: 2 + type: Transform + - uid: 5387 + components: + - pos: 27.5,22.5 + parent: 2 + type: Transform + - uid: 5388 + components: + - pos: 28.5,22.5 + parent: 2 + type: Transform + - uid: 5389 + components: + - pos: 25.5,15.5 + parent: 2 + type: Transform + - uid: 5390 + components: + - pos: 26.5,15.5 + parent: 2 + type: Transform + - uid: 5391 + components: + - pos: 27.5,15.5 + parent: 2 + type: Transform + - uid: 5392 + components: + - pos: 28.5,15.5 + parent: 2 + type: Transform + - uid: 5393 + components: + - pos: 29.5,15.5 + parent: 2 + type: Transform + - uid: 5394 + components: + - pos: 23.5,14.5 + parent: 2 + type: Transform + - uid: 5395 + components: + - pos: 22.5,14.5 + parent: 2 + type: Transform + - uid: 5396 + components: + - pos: 21.5,14.5 + parent: 2 + type: Transform + - uid: 5397 + components: + - pos: 20.5,14.5 + parent: 2 + type: Transform + - uid: 5398 + components: + - pos: 20.5,15.5 + parent: 2 + type: Transform + - uid: 5399 + components: + - pos: 20.5,16.5 + parent: 2 + type: Transform + - uid: 5400 + components: + - pos: 20.5,17.5 + parent: 2 + type: Transform + - uid: 5401 + components: + - pos: 13.5,1.5 + parent: 2 + type: Transform + - uid: 5402 + components: + - pos: 12.5,1.5 + parent: 2 + type: Transform + - uid: 5403 + components: + - pos: 11.5,1.5 + parent: 2 + type: Transform + - uid: 5404 + components: + - pos: 11.5,2.5 + parent: 2 + type: Transform + - uid: 5405 + components: + - pos: 11.5,3.5 + parent: 2 + type: Transform + - uid: 5406 + components: + - pos: 14.5,1.5 + parent: 2 + type: Transform + - uid: 5407 + components: + - pos: 14.5,2.5 + parent: 2 + type: Transform + - uid: 5408 + components: + - pos: 14.5,3.5 + parent: 2 + type: Transform + - uid: 5409 + components: + - pos: 14.5,4.5 + parent: 2 + type: Transform + - uid: 5410 + components: + - pos: 14.5,5.5 + parent: 2 + type: Transform + - uid: 5411 + components: + - pos: 14.5,6.5 + parent: 2 + type: Transform + - uid: 5412 + components: + - pos: 14.5,7.5 + parent: 2 + type: Transform + - uid: 5413 + components: + - pos: 14.5,8.5 + parent: 2 + type: Transform + - uid: 5414 + components: + - pos: 14.5,9.5 + parent: 2 + type: Transform + - uid: 5415 + components: + - pos: 14.5,10.5 + parent: 2 + type: Transform + - uid: 5416 + components: + - pos: 14.5,11.5 + parent: 2 + type: Transform + - uid: 5417 + components: + - pos: 14.5,12.5 + parent: 2 + type: Transform + - uid: 5418 + components: + - pos: 14.5,13.5 + parent: 2 + type: Transform + - uid: 5419 + components: + - pos: 14.5,14.5 + parent: 2 + type: Transform + - uid: 5420 + components: + - pos: 14.5,15.5 + parent: 2 + type: Transform + - uid: 5421 + components: + - pos: 13.5,15.5 + parent: 2 + type: Transform + - uid: 5422 + components: + - pos: 12.5,15.5 + parent: 2 + type: Transform + - uid: 5423 + components: + - pos: 14.5,0.5 + parent: 2 + type: Transform + - uid: 5424 + components: + - pos: 14.5,-0.5 + parent: 2 + type: Transform + - uid: 5425 + components: + - pos: 14.5,-1.5 + parent: 2 + type: Transform + - uid: 5426 + components: + - pos: 13.5,-1.5 + parent: 2 + type: Transform + - uid: 5427 + components: + - pos: 12.5,-1.5 + parent: 2 + type: Transform + - uid: 5428 + components: + - pos: 11.5,-1.5 + parent: 2 + type: Transform + - uid: 5429 + components: + - pos: 22.5,1.5 + parent: 2 + type: Transform + - uid: 5430 + components: + - pos: 22.5,0.5 + parent: 2 + type: Transform + - uid: 5431 + components: + - pos: 22.5,-0.5 + parent: 2 + type: Transform + - uid: 5432 + components: + - pos: 21.5,-0.5 + parent: 2 + type: Transform + - uid: 5433 + components: + - pos: 20.5,-0.5 + parent: 2 + type: Transform + - uid: 5434 + components: + - pos: 19.5,-0.5 + parent: 2 + type: Transform + - uid: 5435 + components: + - pos: 18.5,-0.5 + parent: 2 + type: Transform + - uid: 5436 + components: + - pos: 18.5,0.5 + parent: 2 + type: Transform + - uid: 5437 + components: + - pos: 18.5,1.5 + parent: 2 + type: Transform + - uid: 5438 + components: + - pos: 18.5,2.5 + parent: 2 + type: Transform + - uid: 5439 + components: + - pos: 18.5,3.5 + parent: 2 + type: Transform + - uid: 5440 + components: + - pos: 18.5,4.5 + parent: 2 + type: Transform + - uid: 5441 + components: + - pos: 18.5,5.5 + parent: 2 + type: Transform + - uid: 5442 + components: + - pos: 23.5,0.5 + parent: 2 + type: Transform + - uid: 5443 + components: + - pos: 24.5,0.5 + parent: 2 + type: Transform + - uid: 5444 + components: + - pos: 25.5,0.5 + parent: 2 + type: Transform + - uid: 5445 + components: + - pos: 25.5,-0.5 + parent: 2 + type: Transform + - uid: 5446 + components: + - pos: 25.5,-1.5 + parent: 2 + type: Transform + - uid: 5447 + components: + - pos: 25.5,1.5 + parent: 2 + type: Transform + - uid: 5448 + components: + - pos: 25.5,2.5 + parent: 2 + type: Transform + - uid: 5449 + components: + - pos: 25.5,3.5 + parent: 2 + type: Transform + - uid: 5450 + components: + - pos: 25.5,4.5 + parent: 2 + type: Transform + - uid: 5451 + components: + - pos: 25.5,5.5 + parent: 2 + type: Transform + - uid: 5452 + components: + - pos: 21.5,-1.5 + parent: 2 + type: Transform + - uid: 5453 + components: + - pos: 21.5,-2.5 + parent: 2 + type: Transform + - uid: 5454 + components: + - pos: 21.5,-3.5 + parent: 2 + type: Transform + - uid: 5455 + components: + - pos: 21.5,-4.5 + parent: 2 + type: Transform + - uid: 5456 + components: + - pos: 21.5,-5.5 + parent: 2 + type: Transform + - uid: 5457 + components: + - pos: 22.5,-5.5 + parent: 2 + type: Transform + - uid: 5458 + components: + - pos: 23.5,-5.5 + parent: 2 + type: Transform + - uid: 5459 + components: + - pos: 24.5,-5.5 + parent: 2 + type: Transform + - uid: 5460 + components: + - pos: 25.5,-5.5 + parent: 2 + type: Transform + - uid: 5461 + components: + - pos: 20.5,-5.5 + parent: 2 + type: Transform + - uid: 5462 + components: + - pos: 19.5,-5.5 + parent: 2 + type: Transform + - uid: 5463 + components: + - pos: 19.5,-4.5 + parent: 2 + type: Transform + - uid: 5464 + components: + - pos: 25.5,-6.5 + parent: 2 + type: Transform + - uid: 5465 + components: + - pos: 33.5,-11.5 + parent: 2 + type: Transform + - uid: 5466 + components: + - pos: 34.5,-11.5 + parent: 2 + type: Transform + - uid: 5467 + components: + - pos: 35.5,-11.5 + parent: 2 + type: Transform + - uid: 5468 + components: + - pos: 33.5,-10.5 + parent: 2 + type: Transform + - uid: 5469 + components: + - pos: 32.5,-10.5 + parent: 2 + type: Transform + - uid: 5470 + components: + - pos: 31.5,-10.5 + parent: 2 + type: Transform + - uid: 5471 + components: + - pos: 30.5,-10.5 + parent: 2 + type: Transform + - uid: 5472 + components: + - pos: 29.5,-10.5 + parent: 2 + type: Transform + - uid: 5473 + components: + - pos: 28.5,-10.5 + parent: 2 + type: Transform + - uid: 5474 + components: + - pos: 30.5,-9.5 + parent: 2 + type: Transform + - uid: 5475 + components: + - pos: 35.5,-12.5 + parent: 2 + type: Transform + - uid: 5476 + components: + - pos: 35.5,-13.5 + parent: 2 + type: Transform + - uid: 5477 + components: + - pos: 35.5,-14.5 + parent: 2 + type: Transform + - uid: 5478 + components: + - pos: 35.5,-10.5 + parent: 2 + type: Transform + - uid: 5479 + components: + - pos: 35.5,-9.5 + parent: 2 + type: Transform + - uid: 5480 + components: + - pos: 34.5,-14.5 + parent: 2 + type: Transform + - uid: 5481 + components: + - pos: 34.5,-15.5 + parent: 2 + type: Transform + - uid: 5482 + components: + - pos: 34.5,-16.5 + parent: 2 + type: Transform + - uid: 5483 + components: + - pos: 34.5,-17.5 + parent: 2 + type: Transform + - uid: 5484 + components: + - pos: 34.5,-18.5 + parent: 2 + type: Transform + - uid: 5485 + components: + - pos: 34.5,-19.5 + parent: 2 + type: Transform + - uid: 5486 + components: + - pos: 34.5,-20.5 + parent: 2 + type: Transform + - uid: 5487 + components: + - pos: 34.5,-21.5 + parent: 2 + type: Transform + - uid: 5488 + components: + - pos: 34.5,-22.5 + parent: 2 + type: Transform + - uid: 5489 + components: + - pos: 35.5,-22.5 + parent: 2 + type: Transform + - uid: 5490 + components: + - pos: 36.5,-22.5 + parent: 2 + type: Transform + - uid: 5491 + components: + - pos: 37.5,-22.5 + parent: 2 + type: Transform + - uid: 5492 + components: + - pos: 38.5,-22.5 + parent: 2 + type: Transform + - uid: 5493 + components: + - pos: 38.5,-21.5 + parent: 2 + type: Transform + - uid: 5494 + components: + - pos: 23.5,-16.5 + parent: 2 + type: Transform + - uid: 5495 + components: + - pos: 23.5,-15.5 + parent: 2 + type: Transform + - uid: 5496 + components: + - pos: 22.5,-16.5 + parent: 2 + type: Transform + - uid: 5497 + components: + - pos: 21.5,-16.5 + parent: 2 + type: Transform + - uid: 5498 + components: + - pos: 21.5,-17.5 + parent: 2 + type: Transform + - uid: 5499 + components: + - pos: 21.5,-18.5 + parent: 2 + type: Transform + - uid: 5500 + components: + - pos: 21.5,-19.5 + parent: 2 + type: Transform + - uid: 5501 + components: + - pos: 21.5,-20.5 + parent: 2 + type: Transform + - uid: 5502 + components: + - pos: 24.5,-15.5 + parent: 2 + type: Transform + - uid: 5503 + components: + - pos: 25.5,-15.5 + parent: 2 + type: Transform + - uid: 5504 + components: + - pos: 26.5,-15.5 + parent: 2 + type: Transform + - uid: 5505 + components: + - pos: 27.5,-15.5 + parent: 2 + type: Transform + - uid: 5506 + components: + - pos: 28.5,-15.5 + parent: 2 + type: Transform + - uid: 5507 + components: + - pos: 29.5,-15.5 + parent: 2 + type: Transform + - uid: 5508 + components: + - pos: 29.5,-16.5 + parent: 2 + type: Transform + - uid: 5509 + components: + - pos: 29.5,-17.5 + parent: 2 + type: Transform + - uid: 5510 + components: + - pos: 29.5,-18.5 + parent: 2 + type: Transform + - uid: 5511 + components: + - pos: 29.5,-19.5 + parent: 2 + type: Transform + - uid: 5512 + components: + - pos: 29.5,-14.5 + parent: 2 + type: Transform + - uid: 5513 + components: + - pos: 24.5,-16.5 + parent: 2 + type: Transform + - uid: 5514 + components: + - pos: 24.5,-17.5 + parent: 2 + type: Transform + - uid: 5515 + components: + - pos: 24.5,-18.5 + parent: 2 + type: Transform + - uid: 5516 + components: + - pos: 24.5,-19.5 + parent: 2 + type: Transform + - uid: 5517 + components: + - pos: 26.5,-25.5 + parent: 2 + type: Transform + - uid: 5518 + components: + - pos: 27.5,-25.5 + parent: 2 + type: Transform + - uid: 5519 + components: + - pos: 28.5,-25.5 + parent: 2 + type: Transform + - uid: 5520 + components: + - pos: 29.5,-25.5 + parent: 2 + type: Transform + - uid: 5521 + components: + - pos: 29.5,-26.5 + parent: 2 + type: Transform + - uid: 5522 + components: + - pos: 29.5,-27.5 + parent: 2 + type: Transform + - uid: 5523 + components: + - pos: 28.5,-27.5 + parent: 2 + type: Transform + - uid: 5524 + components: + - pos: 30.5,-27.5 + parent: 2 + type: Transform + - uid: 5525 + components: + - pos: 30.5,-25.5 + parent: 2 + type: Transform + - uid: 5526 + components: + - pos: 31.5,-27.5 + parent: 2 + type: Transform + - uid: 5527 + components: + - pos: 32.5,-27.5 + parent: 2 + type: Transform + - uid: 5528 + components: + - pos: 33.5,-27.5 + parent: 2 + type: Transform + - uid: 5529 + components: + - pos: 34.5,-27.5 + parent: 2 + type: Transform + - uid: 5530 + components: + - pos: 35.5,-27.5 + parent: 2 + type: Transform + - uid: 5531 + components: + - pos: 36.5,-27.5 + parent: 2 + type: Transform + - uid: 5532 + components: + - pos: 37.5,-27.5 + parent: 2 + type: Transform + - uid: 5533 + components: + - pos: 37.5,-28.5 + parent: 2 + type: Transform + - uid: 5534 + components: + - pos: 37.5,-29.5 + parent: 2 + type: Transform + - uid: 5535 + components: + - pos: 37.5,-26.5 + parent: 2 + type: Transform + - uid: 5536 + components: + - pos: 29.5,-28.5 + parent: 2 + type: Transform + - uid: 5537 + components: + - pos: 29.5,-29.5 + parent: 2 + type: Transform + - uid: 5538 + components: + - pos: 29.5,-30.5 + parent: 2 + type: Transform + - uid: 5539 + components: + - pos: 29.5,-31.5 + parent: 2 + type: Transform + - uid: 5540 + components: + - pos: 28.5,-31.5 + parent: 2 + type: Transform + - uid: 5541 + components: + - pos: 30.5,-31.5 + parent: 2 + type: Transform + - uid: 5542 + components: + - pos: 25.5,-25.5 + parent: 2 + type: Transform + - uid: 5543 + components: + - pos: 24.5,-25.5 + parent: 2 + type: Transform + - uid: 5544 + components: + - pos: 24.5,-26.5 + parent: 2 + type: Transform + - uid: 5545 + components: + - pos: 24.5,-27.5 + parent: 2 + type: Transform + - uid: 5546 + components: + - pos: 24.5,-28.5 + parent: 2 + type: Transform + - uid: 5547 + components: + - pos: 24.5,-29.5 + parent: 2 + type: Transform + - uid: 5548 + components: + - pos: 24.5,-30.5 + parent: 2 + type: Transform + - uid: 5549 + components: + - pos: 24.5,-24.5 + parent: 2 + type: Transform + - uid: 5550 + components: + - pos: 24.5,-23.5 + parent: 2 + type: Transform + - uid: 5551 + components: + - pos: 23.5,-23.5 + parent: 2 + type: Transform + - uid: 5552 + components: + - pos: 22.5,-23.5 + parent: 2 + type: Transform + - uid: 5553 + components: + - pos: 21.5,-23.5 + parent: 2 + type: Transform + - uid: 5554 + components: + - pos: 20.5,-23.5 + parent: 2 + type: Transform + - uid: 5555 + components: + - pos: 19.5,-23.5 + parent: 2 + type: Transform + - uid: 5556 + components: + - pos: 21.5,-24.5 + parent: 2 + type: Transform + - uid: 5557 + components: + - pos: 34.5,-28.5 + parent: 2 + type: Transform + - uid: 5558 + components: + - pos: 34.5,-29.5 + parent: 2 + type: Transform + - uid: 5559 + components: + - pos: 34.5,-30.5 + parent: 2 + type: Transform + - uid: 5560 + components: + - pos: 34.5,-31.5 + parent: 2 + type: Transform + - uid: 5561 + components: + - pos: 25.5,-23.5 + parent: 2 + type: Transform + - uid: 5562 + components: + - pos: 26.5,-23.5 + parent: 2 + type: Transform + - uid: 5563 + components: + - pos: 27.5,-23.5 + parent: 2 + type: Transform + - uid: 5564 + components: + - pos: 28.5,-23.5 + parent: 2 + type: Transform + - uid: 5565 + components: + - pos: 29.5,-23.5 + parent: 2 + type: Transform + - uid: 5566 + components: + - pos: 30.5,-23.5 + parent: 2 + type: Transform + - uid: 5567 + components: + - pos: 34.5,-23.5 + parent: 2 + type: Transform + - uid: 5568 + components: + - pos: 34.5,-24.5 + parent: 2 + type: Transform + - uid: 5569 + components: + - pos: 33.5,-22.5 + parent: 2 + type: Transform + - uid: 5573 + components: + - pos: 14.5,-28.5 + parent: 2 + type: Transform + - uid: 5574 + components: + - pos: 14.5,-29.5 + parent: 2 + type: Transform + - uid: 5575 + components: + - pos: 14.5,-30.5 + parent: 2 + type: Transform + - uid: 5576 + components: + - pos: 15.5,-30.5 + parent: 2 + type: Transform + - uid: 5577 + components: + - pos: 16.5,-30.5 + parent: 2 + type: Transform + - uid: 5578 + components: + - pos: 16.5,-29.5 + parent: 2 + type: Transform + - uid: 5579 + components: + - pos: 16.5,-28.5 + parent: 2 + type: Transform + - uid: 5580 + components: + - pos: 16.5,-27.5 + parent: 2 + type: Transform + - uid: 5581 + components: + - pos: 16.5,-26.5 + parent: 2 + type: Transform + - uid: 5582 + components: + - pos: 16.5,-25.5 + parent: 2 + type: Transform + - uid: 5583 + components: + - pos: 16.5,-24.5 + parent: 2 + type: Transform + - uid: 5601 + components: + - pos: 13.5,-14.5 + parent: 2 + type: Transform + - uid: 5602 + components: + - pos: 13.5,-15.5 + parent: 2 + type: Transform + - uid: 5603 + components: + - pos: 13.5,-16.5 + parent: 2 + type: Transform + - uid: 5604 + components: + - pos: 12.5,-16.5 + parent: 2 + type: Transform + - uid: 5605 + components: + - pos: 12.5,-17.5 + parent: 2 + type: Transform + - uid: 5606 + components: + - pos: 12.5,-18.5 + parent: 2 + type: Transform + - uid: 5607 + components: + - pos: 12.5,-19.5 + parent: 2 + type: Transform + - uid: 5608 + components: + - pos: 13.5,-19.5 + parent: 2 + type: Transform + - uid: 5609 + components: + - pos: 14.5,-19.5 + parent: 2 + type: Transform + - uid: 5610 + components: + - pos: 15.5,-19.5 + parent: 2 + type: Transform + - uid: 5611 + components: + - pos: 16.5,-19.5 + parent: 2 + type: Transform + - uid: 5612 + components: + - pos: 16.5,-18.5 + parent: 2 + type: Transform + - uid: 5613 + components: + - pos: 16.5,-17.5 + parent: 2 + type: Transform + - uid: 5614 + components: + - pos: 16.5,-16.5 + parent: 2 + type: Transform + - uid: 5615 + components: + - pos: 15.5,-16.5 + parent: 2 + type: Transform + - uid: 5616 + components: + - pos: 14.5,-16.5 + parent: 2 + type: Transform + - uid: 5617 + components: + - pos: 13.5,-4.5 + parent: 2 + type: Transform + - uid: 5618 + components: + - pos: 13.5,-3.5 + parent: 2 + type: Transform + - uid: 5619 + components: + - pos: 13.5,-5.5 + parent: 2 + type: Transform + - uid: 5620 + components: + - pos: 12.5,-5.5 + parent: 2 + type: Transform + - uid: 5621 + components: + - pos: 11.5,-5.5 + parent: 2 + type: Transform + - uid: 5622 + components: + - pos: 14.5,-5.5 + parent: 2 + type: Transform + - uid: 5623 + components: + - pos: 15.5,-5.5 + parent: 2 + type: Transform + - uid: 5624 + components: + - pos: 16.5,-5.5 + parent: 2 + type: Transform + - uid: 5625 + components: + - pos: 11.5,-6.5 + parent: 2 + type: Transform + - uid: 5626 + components: + - pos: 11.5,-7.5 + parent: 2 + type: Transform + - uid: 5627 + components: + - pos: 11.5,-8.5 + parent: 2 + type: Transform + - uid: 5628 + components: + - pos: 11.5,-9.5 + parent: 2 + type: Transform + - uid: 5629 + components: + - pos: 12.5,-9.5 + parent: 2 + type: Transform + - uid: 5630 + components: + - pos: 13.5,-9.5 + parent: 2 + type: Transform + - uid: 5631 + components: + - pos: 10.5,-6.5 + parent: 2 + type: Transform + - uid: 5632 + components: + - pos: 9.5,-6.5 + parent: 2 + type: Transform + - uid: 5633 + components: + - pos: 8.5,-6.5 + parent: 2 + type: Transform + - uid: 5634 + components: + - pos: 7.5,-6.5 + parent: 2 + type: Transform + - uid: 5635 + components: + - pos: 7.5,-7.5 + parent: 2 + type: Transform + - uid: 5636 + components: + - pos: 7.5,-8.5 + parent: 2 + type: Transform + - uid: 5637 + components: + - pos: 7.5,-9.5 + parent: 2 + type: Transform + - uid: 5638 + components: + - pos: 7.5,-10.5 + parent: 2 + type: Transform + - uid: 5639 + components: + - pos: 7.5,-11.5 + parent: 2 + type: Transform + - uid: 5640 + components: + - pos: 7.5,-12.5 + parent: 2 + type: Transform + - uid: 5641 + components: + - pos: 8.5,-12.5 + parent: 2 + type: Transform + - uid: 5642 + components: + - pos: 9.5,-12.5 + parent: 2 + type: Transform + - uid: 5643 + components: + - pos: 10.5,-12.5 + parent: 2 + type: Transform + - uid: 5644 + components: + - pos: 11.5,-12.5 + parent: 2 + type: Transform + - uid: 5645 + components: + - pos: 11.5,-11.5 + parent: 2 + type: Transform + - uid: 5646 + components: + - pos: 11.5,-10.5 + parent: 2 + type: Transform + - uid: 5647 + components: + - pos: 16.5,-15.5 + parent: 2 + type: Transform + - uid: 5648 + components: + - pos: 16.5,-14.5 + parent: 2 + type: Transform + - uid: 5649 + components: + - pos: 16.5,-13.5 + parent: 2 + type: Transform + - uid: 5650 + components: + - pos: 16.5,-12.5 + parent: 2 + type: Transform + - uid: 5651 + components: + - pos: 15.5,-12.5 + parent: 2 + type: Transform + - uid: 5652 + components: + - pos: 14.5,-12.5 + parent: 2 + type: Transform + - uid: 5653 + components: + - pos: 16.5,-11.5 + parent: 2 + type: Transform + - uid: 5654 + components: + - pos: 16.5,-10.5 + parent: 2 + type: Transform + - uid: 5655 + components: + - pos: 24.5,-14.5 + parent: 2 + type: Transform + - uid: 5656 + components: + - pos: 24.5,-13.5 + parent: 2 + type: Transform + - uid: 5657 + components: + - pos: 24.5,-12.5 + parent: 2 + type: Transform + - uid: 5658 + components: + - pos: 23.5,-12.5 + parent: 2 + type: Transform + - uid: 5659 + components: + - pos: 22.5,-12.5 + parent: 2 + type: Transform + - uid: 5660 + components: + - pos: 21.5,-12.5 + parent: 2 + type: Transform + - uid: 5661 + components: + - pos: 21.5,-11.5 + parent: 2 + type: Transform + - uid: 5662 + components: + - pos: 24.5,-11.5 + parent: 2 + type: Transform + - uid: 5663 + components: + - pos: 24.5,-10.5 + parent: 2 + type: Transform + - uid: 5664 + components: + - pos: 21.5,-10.5 + parent: 2 + type: Transform + - uid: 5665 + components: + - pos: 21.5,-9.5 + parent: 2 + type: Transform + - uid: 5666 + components: + - pos: 24.5,-9.5 + parent: 2 + type: Transform + - uid: 5667 + components: + - pos: 3.5,-20.5 + parent: 2 + type: Transform + - uid: 5668 + components: + - pos: 2.5,-20.5 + parent: 2 + type: Transform + - uid: 5669 + components: + - pos: 2.5,-19.5 + parent: 2 + type: Transform + - uid: 5670 + components: + - pos: 2.5,-18.5 + parent: 2 + type: Transform + - uid: 5671 + components: + - pos: 2.5,-17.5 + parent: 2 + type: Transform + - uid: 5672 + components: + - pos: 2.5,-16.5 + parent: 2 + type: Transform + - uid: 5673 + components: + - pos: 2.5,-15.5 + parent: 2 + type: Transform + - uid: 5674 + components: + - pos: 3.5,-15.5 + parent: 2 + type: Transform + - uid: 5675 + components: + - pos: 4.5,-15.5 + parent: 2 + type: Transform + - uid: 5676 + components: + - pos: 5.5,-15.5 + parent: 2 + type: Transform + - uid: 5677 + components: + - pos: 6.5,-15.5 + parent: 2 + type: Transform + - uid: 5678 + components: + - pos: 7.5,-15.5 + parent: 2 + type: Transform + - uid: 5679 + components: + - pos: 8.5,-15.5 + parent: 2 + type: Transform + - uid: 5680 + components: + - pos: 8.5,-16.5 + parent: 2 + type: Transform + - uid: 5681 + components: + - pos: 8.5,-17.5 + parent: 2 + type: Transform + - uid: 5682 + components: + - pos: 8.5,-18.5 + parent: 2 + type: Transform + - uid: 5683 + components: + - pos: 8.5,-19.5 + parent: 2 + type: Transform + - uid: 5684 + components: + - pos: 8.5,-20.5 + parent: 2 + type: Transform + - uid: 5685 + components: + - pos: 8.5,-21.5 + parent: 2 + type: Transform + - uid: 5686 + components: + - pos: 8.5,-22.5 + parent: 2 + type: Transform + - uid: 5687 + components: + - pos: 7.5,-22.5 + parent: 2 + type: Transform + - uid: 5688 + components: + - pos: 6.5,-22.5 + parent: 2 + type: Transform + - uid: 5689 + components: + - pos: 5.5,-22.5 + parent: 2 + type: Transform + - uid: 5690 + components: + - pos: 4.5,-22.5 + parent: 2 + type: Transform + - uid: 5691 + components: + - pos: 3.5,-22.5 + parent: 2 + type: Transform + - uid: 5692 + components: + - pos: 2.5,-22.5 + parent: 2 + type: Transform + - uid: 5693 + components: + - pos: 2.5,-21.5 + parent: 2 + type: Transform + - uid: 5694 + components: + - pos: 7.5,-18.5 + parent: 2 + type: Transform + - uid: 5695 + components: + - pos: 6.5,-18.5 + parent: 2 + type: Transform + - uid: 5696 + components: + - pos: 5.5,-18.5 + parent: 2 + type: Transform + - uid: 5697 + components: + - pos: 1.5,-22.5 + parent: 2 + type: Transform + - uid: 5698 + components: + - pos: 1.5,-23.5 + parent: 2 + type: Transform + - uid: 5699 + components: + - pos: 1.5,-24.5 + parent: 2 + type: Transform + - uid: 5700 + components: + - pos: 1.5,-25.5 + parent: 2 + type: Transform + - uid: 5701 + components: + - pos: 1.5,-26.5 + parent: 2 + type: Transform + - uid: 5702 + components: + - pos: 2.5,-26.5 + parent: 2 + type: Transform + - uid: 5703 + components: + - pos: 3.5,-26.5 + parent: 2 + type: Transform + - uid: 5704 + components: + - pos: 4.5,-26.5 + parent: 2 + type: Transform + - uid: 5705 + components: + - pos: 5.5,-26.5 + parent: 2 + type: Transform + - uid: 5706 + components: + - pos: 1.5,-27.5 + parent: 2 + type: Transform + - uid: 5707 + components: + - pos: 1.5,-28.5 + parent: 2 + type: Transform + - uid: 5708 + components: + - pos: 13.5,-30.5 + parent: 2 + type: Transform + - uid: 5709 + components: + - pos: 12.5,-30.5 + parent: 2 + type: Transform + - uid: 5710 + components: + - pos: 11.5,-30.5 + parent: 2 + type: Transform + - uid: 5711 + components: + - pos: 10.5,-30.5 + parent: 2 + type: Transform + - uid: 5712 + components: + - pos: 9.5,-30.5 + parent: 2 + type: Transform + - uid: 5713 + components: + - pos: 8.5,-30.5 + parent: 2 + type: Transform + - uid: 5714 + components: + - pos: 7.5,-30.5 + parent: 2 + type: Transform + - uid: 5715 + components: + - pos: 6.5,-30.5 + parent: 2 + type: Transform + - uid: 5716 + components: + - pos: 5.5,-30.5 + parent: 2 + type: Transform + - uid: 5717 + components: + - pos: 4.5,-30.5 + parent: 2 + type: Transform + - uid: 5718 + components: + - pos: 4.5,-31.5 + parent: 2 + type: Transform + - uid: 5719 + components: + - pos: 3.5,-31.5 + parent: 2 + type: Transform + - uid: 5720 + components: + - pos: 2.5,-31.5 + parent: 2 + type: Transform + - uid: 5721 + components: + - pos: 1.5,-31.5 + parent: 2 + type: Transform + - uid: 5722 + components: + - pos: 0.5,-31.5 + parent: 2 + type: Transform + - uid: 5723 + components: + - pos: -0.5,-31.5 + parent: 2 + type: Transform + - uid: 5724 + components: + - pos: -1.5,-31.5 + parent: 2 + type: Transform + - uid: 5725 + components: + - pos: -2.5,-31.5 + parent: 2 + type: Transform + - uid: 5726 + components: + - pos: -3.5,-31.5 + parent: 2 + type: Transform + - uid: 5727 + components: + - pos: -3.5,-32.5 + parent: 2 + type: Transform + - uid: 5728 + components: + - pos: 8.5,-29.5 + parent: 2 + type: Transform + - uid: 5729 + components: + - pos: 8.5,-28.5 + parent: 2 + type: Transform + - uid: 5730 + components: + - pos: 8.5,-27.5 + parent: 2 + type: Transform + - uid: 5731 + components: + - pos: 8.5,-26.5 + parent: 2 + type: Transform + - uid: 5732 + components: + - pos: 9.5,-26.5 + parent: 2 + type: Transform + - uid: 5733 + components: + - pos: 10.5,-26.5 + parent: 2 + type: Transform + - uid: 5734 + components: + - pos: 11.5,-26.5 + parent: 2 + type: Transform + - uid: 5735 + components: + - pos: 12.5,-26.5 + parent: 2 + type: Transform + - uid: 5736 + components: + - pos: 13.5,-26.5 + parent: 2 + type: Transform + - uid: 5737 + components: + - pos: 14.5,-26.5 + parent: 2 + type: Transform + - uid: 5738 + components: + - pos: 15.5,-26.5 + parent: 2 + type: Transform + - uid: 5739 + components: + - pos: 12.5,-25.5 + parent: 2 + type: Transform + - uid: 5740 + components: + - pos: 12.5,-24.5 + parent: 2 + type: Transform + - uid: 5741 + components: + - pos: 12.5,-23.5 + parent: 2 + type: Transform + - uid: 5742 + components: + - pos: 17.5,-30.5 + parent: 2 + type: Transform + - uid: 5743 + components: + - pos: 18.5,-30.5 + parent: 2 + type: Transform + - uid: 5746 + components: + - pos: 11.5,-29.5 + parent: 2 + type: Transform + - uid: 5747 + components: + - pos: 11.5,-31.5 + parent: 2 + type: Transform + - uid: 5748 + components: + - pos: 14.5,-31.5 + parent: 2 + type: Transform + - uid: 5750 + components: + - pos: -3.5,-13.5 + parent: 2 + type: Transform + - uid: 5751 + components: + - pos: -3.5,-14.5 + parent: 2 + type: Transform + - uid: 5752 + components: + - pos: -3.5,-15.5 + parent: 2 + type: Transform + - uid: 5753 + components: + - pos: -3.5,-16.5 + parent: 2 + type: Transform + - uid: 5754 + components: + - pos: -3.5,-17.5 + parent: 2 + type: Transform + - uid: 5755 + components: + - pos: -3.5,-18.5 + parent: 2 + type: Transform + - uid: 5756 + components: + - pos: -3.5,-19.5 + parent: 2 + type: Transform + - uid: 5757 + components: + - pos: -3.5,-20.5 + parent: 2 + type: Transform + - uid: 5758 + components: + - pos: -3.5,-21.5 + parent: 2 + type: Transform + - uid: 5759 + components: + - pos: -3.5,-22.5 + parent: 2 + type: Transform + - uid: 5760 + components: + - pos: -3.5,-23.5 + parent: 2 + type: Transform + - uid: 5761 + components: + - pos: -2.5,-22.5 + parent: 2 + type: Transform + - uid: 5762 + components: + - pos: -1.5,-22.5 + parent: 2 + type: Transform + - uid: 5763 + components: + - pos: -2.5,-15.5 + parent: 2 + type: Transform + - uid: 5764 + components: + - pos: -1.5,-15.5 + parent: 2 + type: Transform + - uid: 5765 + components: + - pos: -2.5,-18.5 + parent: 2 + type: Transform + - uid: 5766 + components: + - pos: -1.5,-18.5 + parent: 2 + type: Transform + - uid: 5767 + components: + - pos: -1.5,-7.5 + parent: 2 + type: Transform + - uid: 5768 + components: + - pos: -0.5,-7.5 + parent: 2 + type: Transform + - uid: 5769 + components: + - pos: 0.5,-7.5 + parent: 2 + type: Transform + - uid: 5770 + components: + - pos: 0.5,-6.5 + parent: 2 + type: Transform + - uid: 5771 + components: + - pos: 0.5,-5.5 + parent: 2 + type: Transform + - uid: 5772 + components: + - pos: 0.5,-8.5 + parent: 2 + type: Transform + - uid: 5773 + components: + - pos: 0.5,-9.5 + parent: 2 + type: Transform + - uid: 5774 + components: + - pos: 0.5,-10.5 + parent: 2 + type: Transform + - uid: 5775 + components: + - pos: 1.5,-10.5 + parent: 2 + type: Transform + - uid: 5776 + components: + - pos: 2.5,-10.5 + parent: 2 + type: Transform + - uid: 5777 + components: + - pos: -0.5,-10.5 + parent: 2 + type: Transform + - uid: 5778 + components: + - pos: -1.5,-10.5 + parent: 2 + type: Transform + - uid: 5779 + components: + - pos: -2.5,-10.5 + parent: 2 + type: Transform + - uid: 5780 + components: + - pos: -3.5,-10.5 + parent: 2 + type: Transform + - uid: 5781 + components: + - pos: -4.5,-15.5 + parent: 2 + type: Transform + - uid: 5782 + components: + - pos: -5.5,-15.5 + parent: 2 + type: Transform + - uid: 5784 + components: + - pos: -1.5,-13.5 + parent: 2 + type: Transform + - uid: 5785 + components: + - pos: -1.5,-17.5 + parent: 2 + type: Transform + - uid: 5786 + components: + - pos: -0.5,-17.5 + parent: 2 + type: Transform + - uid: 5787 + components: + - pos: -14.5,-13.5 + parent: 2 + type: Transform + - uid: 5788 + components: + - pos: -15.5,-13.5 + parent: 2 + type: Transform + - uid: 5789 + components: + - pos: -15.5,-12.5 + parent: 2 + type: Transform + - uid: 5790 + components: + - pos: -15.5,-11.5 + parent: 2 + type: Transform + - uid: 5791 + components: + - pos: -14.5,-11.5 + parent: 2 + type: Transform + - uid: 5792 + components: + - pos: -13.5,-11.5 + parent: 2 + type: Transform + - uid: 5793 + components: + - pos: -12.5,-11.5 + parent: 2 + type: Transform + - uid: 5794 + components: + - pos: -11.5,-11.5 + parent: 2 + type: Transform + - uid: 5795 + components: + - pos: -12.5,-10.5 + parent: 2 + type: Transform + - uid: 5796 + components: + - pos: -15.5,-10.5 + parent: 2 + type: Transform + - uid: 5797 + components: + - pos: -15.5,-9.5 + parent: 2 + type: Transform + - uid: 5798 + components: + - pos: -15.5,-8.5 + parent: 2 + type: Transform + - uid: 5799 + components: + - pos: -15.5,-7.5 + parent: 2 + type: Transform + - uid: 5800 + components: + - pos: -15.5,-6.5 + parent: 2 + type: Transform + - uid: 5801 + components: + - pos: -15.5,-5.5 + parent: 2 + type: Transform + - uid: 5802 + components: + - pos: -14.5,-5.5 + parent: 2 + type: Transform + - uid: 5803 + components: + - pos: -13.5,-5.5 + parent: 2 + type: Transform + - uid: 5804 + components: + - pos: -12.5,-5.5 + parent: 2 + type: Transform + - uid: 5805 + components: + - pos: -11.5,-5.5 + parent: 2 + type: Transform + - uid: 5806 + components: + - pos: -10.5,-5.5 + parent: 2 + type: Transform + - uid: 5807 + components: + - pos: -9.5,-5.5 + parent: 2 + type: Transform + - uid: 5808 + components: + - pos: -8.5,-5.5 + parent: 2 + type: Transform + - uid: 5809 + components: + - pos: -7.5,-5.5 + parent: 2 + type: Transform + - uid: 5810 + components: + - pos: -7.5,-6.5 + parent: 2 + type: Transform + - uid: 5811 + components: + - pos: -7.5,-7.5 + parent: 2 + type: Transform + - uid: 5812 + components: + - pos: -7.5,-8.5 + parent: 2 + type: Transform + - uid: 5813 + components: + - pos: -7.5,-9.5 + parent: 2 + type: Transform + - uid: 5814 + components: + - pos: -7.5,-10.5 + parent: 2 + type: Transform + - uid: 5815 + components: + - pos: -7.5,-11.5 + parent: 2 + type: Transform + - uid: 5816 + components: + - pos: -8.5,-11.5 + parent: 2 + type: Transform + - uid: 5817 + components: + - pos: -8.5,-12.5 + parent: 2 + type: Transform + - uid: 5818 + components: + - pos: -8.5,-13.5 + parent: 2 + type: Transform + - uid: 5819 + components: + - pos: -8.5,-14.5 + parent: 2 + type: Transform + - uid: 5820 + components: + - pos: -9.5,-14.5 + parent: 2 + type: Transform + - uid: 5821 + components: + - pos: -10.5,-14.5 + parent: 2 + type: Transform + - uid: 5822 + components: + - pos: -11.5,-14.5 + parent: 2 + type: Transform + - uid: 5823 + components: + - pos: -12.5,-14.5 + parent: 2 + type: Transform + - uid: 5824 + components: + - pos: -13.5,-14.5 + parent: 2 + type: Transform + - uid: 5825 + components: + - pos: -14.5,-14.5 + parent: 2 + type: Transform + - uid: 5826 + components: + - pos: -9.5,-11.5 + parent: 2 + type: Transform + - uid: 5827 + components: + - pos: -10.5,-11.5 + parent: 2 + type: Transform + - uid: 5828 + components: + - pos: -12.5,-9.5 + parent: 2 + type: Transform + - uid: 5829 + components: + - pos: -12.5,-8.5 + parent: 2 + type: Transform + - uid: 5830 + components: + - pos: -12.5,-7.5 + parent: 2 + type: Transform + - uid: 5831 + components: + - pos: -12.5,-6.5 + parent: 2 + type: Transform + - uid: 5832 + components: + - pos: -11.5,-26.5 + parent: 2 + type: Transform + - uid: 5833 + components: + - pos: -12.5,-26.5 + parent: 2 + type: Transform + - uid: 5834 + components: + - pos: -13.5,-26.5 + parent: 2 + type: Transform + - uid: 5835 + components: + - pos: -13.5,-27.5 + parent: 2 + type: Transform + - uid: 5836 + components: + - pos: -10.5,-26.5 + parent: 2 + type: Transform + - uid: 5837 + components: + - pos: -9.5,-26.5 + parent: 2 + type: Transform + - uid: 5838 + components: + - pos: -9.5,-27.5 + parent: 2 + type: Transform + - uid: 5839 + components: + - pos: -9.5,-28.5 + parent: 2 + type: Transform + - uid: 5840 + components: + - pos: -9.5,-29.5 + parent: 2 + type: Transform + - uid: 5841 + components: + - pos: -9.5,-30.5 + parent: 2 + type: Transform + - uid: 5845 + components: + - pos: -13.5,-30.5 + parent: 2 + type: Transform + - uid: 5846 + components: + - pos: -14.5,-30.5 + parent: 2 + type: Transform + - uid: 5847 + components: + - pos: -15.5,-30.5 + parent: 2 + type: Transform + - uid: 5848 + components: + - pos: -16.5,-30.5 + parent: 2 + type: Transform + - uid: 5849 + components: + - pos: -17.5,-30.5 + parent: 2 + type: Transform + - uid: 5850 + components: + - pos: -14.5,-31.5 + parent: 2 + type: Transform + - uid: 5851 + components: + - pos: -17.5,-31.5 + parent: 2 + type: Transform + - uid: 5852 + components: + - pos: -9.5,-31.5 + parent: 2 + type: Transform + - uid: 5853 + components: + - pos: -9.5,-32.5 + parent: 2 + type: Transform + - uid: 5854 + components: + - pos: -8.5,-32.5 + parent: 2 + type: Transform + - uid: 5855 + components: + - pos: -7.5,-32.5 + parent: 2 + type: Transform + - uid: 5856 + components: + - pos: -7.5,-31.5 + parent: 2 + type: Transform + - uid: 5857 + components: + - pos: -7.5,-30.5 + parent: 2 + type: Transform + - uid: 5858 + components: + - pos: -7.5,-29.5 + parent: 2 + type: Transform + - uid: 5859 + components: + - pos: -7.5,-28.5 + parent: 2 + type: Transform + - uid: 5860 + components: + - pos: -7.5,-27.5 + parent: 2 + type: Transform + - uid: 5861 + components: + - pos: -7.5,-26.5 + parent: 2 + type: Transform + - uid: 5862 + components: + - pos: -7.5,-25.5 + parent: 2 + type: Transform + - uid: 5863 + components: + - pos: -7.5,-24.5 + parent: 2 + type: Transform + - uid: 5864 + components: + - pos: -7.5,-23.5 + parent: 2 + type: Transform + - uid: 5865 + components: + - pos: -7.5,-22.5 + parent: 2 + type: Transform + - uid: 5866 + components: + - pos: -8.5,-22.5 + parent: 2 + type: Transform + - uid: 5867 + components: + - pos: -9.5,-22.5 + parent: 2 + type: Transform + - uid: 5868 + components: + - pos: -10.5,-22.5 + parent: 2 + type: Transform + - uid: 5869 + components: + - pos: -11.5,-22.5 + parent: 2 + type: Transform + - uid: 5870 + components: + - pos: -12.5,-22.5 + parent: 2 + type: Transform + - uid: 5871 + components: + - pos: -13.5,-22.5 + parent: 2 + type: Transform + - uid: 5873 + components: + - pos: -9.5,-23.5 + parent: 2 + type: Transform + - uid: 5874 + components: + - pos: -9.5,-24.5 + parent: 2 + type: Transform + - uid: 5875 + components: + - pos: -9.5,-25.5 + parent: 2 + type: Transform + - uid: 5876 + components: + - pos: -6.5,-27.5 + parent: 2 + type: Transform + - uid: 5877 + components: + - pos: -5.5,-27.5 + parent: 2 + type: Transform + - uid: 5878 + components: + - pos: -4.5,-27.5 + parent: 2 + type: Transform + - uid: 5879 + components: + - pos: -3.5,-27.5 + parent: 2 + type: Transform + - uid: 5880 + components: + - pos: -2.5,-27.5 + parent: 2 + type: Transform + - uid: 5881 + components: + - pos: -2.5,-28.5 + parent: 2 + type: Transform + - uid: 5882 + components: + - pos: 6.5,-12.5 + parent: 2 + type: Transform + - uid: 5883 + components: + - pos: -7.5,-21.5 + parent: 2 + type: Transform + - uid: 5884 + components: + - pos: -7.5,-20.5 + parent: 2 + type: Transform + - uid: 5885 + components: + - pos: -7.5,-19.5 + parent: 2 + type: Transform + - uid: 5886 + components: + - pos: -7.5,-18.5 + parent: 2 + type: Transform + - uid: 5887 + components: + - pos: -8.5,-18.5 + parent: 2 + type: Transform + - uid: 5888 + components: + - pos: -9.5,-18.5 + parent: 2 + type: Transform + - uid: 5889 + components: + - pos: -10.5,-18.5 + parent: 2 + type: Transform + - uid: 5890 + components: + - pos: -11.5,-18.5 + parent: 2 + type: Transform + - uid: 5891 + components: + - pos: -12.5,-18.5 + parent: 2 + type: Transform + - uid: 5892 + components: + - pos: -13.5,-18.5 + parent: 2 + type: Transform + - uid: 5893 + components: + - pos: 5.5,-12.5 + parent: 2 + type: Transform + - uid: 5894 + components: + - pos: 4.5,-12.5 + parent: 2 + type: Transform + - uid: 5895 + components: + - pos: 3.5,-12.5 + parent: 2 + type: Transform + - uid: 5896 + components: + - pos: 16.5,29.5 + parent: 2 + type: Transform + - uid: 5897 + components: + - pos: 15.5,29.5 + parent: 2 + type: Transform + - uid: 5898 + components: + - pos: 15.5,28.5 + parent: 2 + type: Transform + - uid: 5899 + components: + - pos: 15.5,27.5 + parent: 2 + type: Transform + - uid: 5900 + components: + - pos: 16.5,27.5 + parent: 2 + type: Transform + - uid: 5901 + components: + - pos: 17.5,27.5 + parent: 2 + type: Transform + - uid: 5902 + components: + - pos: 18.5,27.5 + parent: 2 + type: Transform + - uid: 5903 + components: + - pos: 19.5,27.5 + parent: 2 + type: Transform + - uid: 5904 + components: + - pos: 20.5,27.5 + parent: 2 + type: Transform + - uid: 5905 + components: + - pos: 20.5,28.5 + parent: 2 + type: Transform + - uid: 5906 + components: + - pos: 21.5,28.5 + parent: 2 + type: Transform + - uid: 5907 + components: + - pos: 22.5,28.5 + parent: 2 + type: Transform + - uid: 5908 + components: + - pos: 23.5,28.5 + parent: 2 + type: Transform + - uid: 5909 + components: + - pos: 24.5,28.5 + parent: 2 + type: Transform + - uid: 5910 + components: + - pos: 25.5,28.5 + parent: 2 + type: Transform + - uid: 5911 + components: + - pos: 26.5,28.5 + parent: 2 + type: Transform + - uid: 5912 + components: + - pos: 27.5,28.5 + parent: 2 + type: Transform + - uid: 5913 + components: + - pos: 14.5,28.5 + parent: 2 + type: Transform + - uid: 5914 + components: + - pos: 13.5,28.5 + parent: 2 + type: Transform + - uid: 5915 + components: + - pos: 12.5,28.5 + parent: 2 + type: Transform + - uid: 5916 + components: + - pos: 15.5,26.5 + parent: 2 + type: Transform + - uid: 5917 + components: + - pos: 15.5,25.5 + parent: 2 + type: Transform + - uid: 5918 + components: + - pos: 15.5,24.5 + parent: 2 + type: Transform + - uid: 5919 + components: + - pos: 14.5,24.5 + parent: 2 + type: Transform + - uid: 5920 + components: + - pos: 13.5,24.5 + parent: 2 + type: Transform + - uid: 5921 + components: + - pos: 12.5,24.5 + parent: 2 + type: Transform + - uid: 5922 + components: + - pos: 16.5,24.5 + parent: 2 + type: Transform + - uid: 5923 + components: + - pos: 17.5,24.5 + parent: 2 + type: Transform + - uid: 5924 + components: + - pos: 18.5,24.5 + parent: 2 + type: Transform + - uid: 5925 + components: + - pos: 15.5,23.5 + parent: 2 + type: Transform + - uid: 5926 + components: + - pos: 15.5,22.5 + parent: 2 + type: Transform + - uid: 5927 + components: + - pos: 15.5,21.5 + parent: 2 + type: Transform + - uid: 5928 + components: + - pos: 15.5,20.5 + parent: 2 + type: Transform + - uid: 5929 + components: + - pos: 15.5,19.5 + parent: 2 + type: Transform + - uid: 5930 + components: + - pos: 14.5,19.5 + parent: 2 + type: Transform + - uid: 5931 + components: + - pos: 13.5,19.5 + parent: 2 + type: Transform + - uid: 5932 + components: + - pos: 16.5,19.5 + parent: 2 + type: Transform + - uid: 5933 + components: + - pos: 1.5,26.5 + parent: 2 + type: Transform + - uid: 5934 + components: + - pos: 2.5,26.5 + parent: 2 + type: Transform + - uid: 5935 + components: + - pos: 3.5,26.5 + parent: 2 + type: Transform + - uid: 5936 + components: + - pos: 4.5,26.5 + parent: 2 + type: Transform + - uid: 5937 + components: + - pos: 4.5,27.5 + parent: 2 + type: Transform + - uid: 5938 + components: + - pos: 4.5,28.5 + parent: 2 + type: Transform + - uid: 5939 + components: + - pos: 4.5,29.5 + parent: 2 + type: Transform + - uid: 5940 + components: + - pos: 4.5,30.5 + parent: 2 + type: Transform + - uid: 5941 + components: + - pos: 4.5,31.5 + parent: 2 + type: Transform + - uid: 5942 + components: + - pos: 5.5,31.5 + parent: 2 + type: Transform + - uid: 5943 + components: + - pos: 5.5,32.5 + parent: 2 + type: Transform + - uid: 5944 + components: + - pos: 5.5,33.5 + parent: 2 + type: Transform + - uid: 5945 + components: + - pos: 6.5,33.5 + parent: 2 + type: Transform + - uid: 5946 + components: + - pos: 7.5,33.5 + parent: 2 + type: Transform + - uid: 5947 + components: + - pos: 7.5,32.5 + parent: 2 + type: Transform + - uid: 5948 + components: + - pos: 7.5,31.5 + parent: 2 + type: Transform + - uid: 5949 + components: + - pos: 7.5,30.5 + parent: 2 + type: Transform + - uid: 5950 + components: + - pos: 8.5,30.5 + parent: 2 + type: Transform + - uid: 5951 + components: + - pos: 8.5,29.5 + parent: 2 + type: Transform + - uid: 5952 + components: + - pos: 8.5,28.5 + parent: 2 + type: Transform + - uid: 5953 + components: + - pos: 8.5,27.5 + parent: 2 + type: Transform + - uid: 5954 + components: + - pos: 8.5,26.5 + parent: 2 + type: Transform + - uid: 5955 + components: + - pos: 8.5,25.5 + parent: 2 + type: Transform + - uid: 5956 + components: + - pos: 8.5,24.5 + parent: 2 + type: Transform + - uid: 5957 + components: + - pos: 8.5,23.5 + parent: 2 + type: Transform + - uid: 5958 + components: + - pos: 8.5,22.5 + parent: 2 + type: Transform + - uid: 5959 + components: + - pos: 8.5,21.5 + parent: 2 + type: Transform + - uid: 5960 + components: + - pos: 8.5,20.5 + parent: 2 + type: Transform + - uid: 5961 + components: + - pos: 9.5,20.5 + parent: 2 + type: Transform + - uid: 5962 + components: + - pos: 7.5,20.5 + parent: 2 + type: Transform + - uid: 5963 + components: + - pos: 6.5,20.5 + parent: 2 + type: Transform + - uid: 5964 + components: + - pos: 5.5,20.5 + parent: 2 + type: Transform + - uid: 5965 + components: + - pos: 4.5,20.5 + parent: 2 + type: Transform + - uid: 5966 + components: + - pos: 4.5,19.5 + parent: 2 + type: Transform + - uid: 5967 + components: + - pos: 4.5,18.5 + parent: 2 + type: Transform + - uid: 5968 + components: + - pos: 4.5,17.5 + parent: 2 + type: Transform + - uid: 5969 + components: + - pos: 4.5,21.5 + parent: 2 + type: Transform + - uid: 5970 + components: + - pos: 4.5,22.5 + parent: 2 + type: Transform + - uid: 5971 + components: + - pos: 4.5,23.5 + parent: 2 + type: Transform + - uid: 5972 + components: + - pos: 4.5,24.5 + parent: 2 + type: Transform + - uid: 5973 + components: + - pos: 4.5,25.5 + parent: 2 + type: Transform + - uid: 5974 + components: + - pos: 1.5,8.5 + parent: 2 + type: Transform + - uid: 5975 + components: + - pos: 1.5,9.5 + parent: 2 + type: Transform + - uid: 5976 + components: + - pos: 1.5,10.5 + parent: 2 + type: Transform + - uid: 5977 + components: + - pos: 0.5,10.5 + parent: 2 + type: Transform + - uid: 5978 + components: + - pos: -0.5,10.5 + parent: 2 + type: Transform + - uid: 5979 + components: + - pos: -1.5,10.5 + parent: 2 + type: Transform + - uid: 5980 + components: + - pos: -2.5,10.5 + parent: 2 + type: Transform + - uid: 5981 + components: + - pos: -3.5,10.5 + parent: 2 + type: Transform + - uid: 5982 + components: + - pos: -3.5,11.5 + parent: 2 + type: Transform + - uid: 5983 + components: + - pos: -3.5,12.5 + parent: 2 + type: Transform + - uid: 5984 + components: + - pos: -3.5,13.5 + parent: 2 + type: Transform + - uid: 5985 + components: + - pos: -2.5,13.5 + parent: 2 + type: Transform + - uid: 5986 + components: + - pos: -1.5,13.5 + parent: 2 + type: Transform + - uid: 5987 + components: + - pos: -0.5,13.5 + parent: 2 + type: Transform + - uid: 5988 + components: + - pos: 0.5,13.5 + parent: 2 + type: Transform + - uid: 5989 + components: + - pos: 1.5,13.5 + parent: 2 + type: Transform + - uid: 5990 + components: + - pos: 2.5,13.5 + parent: 2 + type: Transform + - uid: 5991 + components: + - pos: 3.5,13.5 + parent: 2 + type: Transform + - uid: 5992 + components: + - pos: 4.5,13.5 + parent: 2 + type: Transform + - uid: 5993 + components: + - pos: 4.5,12.5 + parent: 2 + type: Transform + - uid: 5994 + components: + - pos: 4.5,11.5 + parent: 2 + type: Transform + - uid: 5995 + components: + - pos: 4.5,10.5 + parent: 2 + type: Transform + - uid: 5996 + components: + - pos: 3.5,10.5 + parent: 2 + type: Transform + - uid: 5997 + components: + - pos: 2.5,10.5 + parent: 2 + type: Transform + - uid: 5998 + components: + - pos: 1.5,7.5 + parent: 2 + type: Transform + - uid: 5999 + components: + - pos: 1.5,6.5 + parent: 2 + type: Transform + - uid: 6000 + components: + - pos: 1.5,5.5 + parent: 2 + type: Transform + - uid: 6001 + components: + - pos: 2.5,5.5 + parent: 2 + type: Transform + - uid: 6002 + components: + - pos: 3.5,5.5 + parent: 2 + type: Transform + - uid: 6003 + components: + - pos: -3.5,9.5 + parent: 2 + type: Transform + - uid: 6004 + components: + - pos: -3.5,8.5 + parent: 2 + type: Transform + - uid: 6005 + components: + - pos: -3.5,7.5 + parent: 2 + type: Transform + - uid: 6006 + components: + - pos: -3.5,6.5 + parent: 2 + type: Transform + - uid: 6007 + components: + - pos: -3.5,5.5 + parent: 2 + type: Transform + - uid: 6008 + components: + - pos: -2.5,5.5 + parent: 2 + type: Transform + - uid: 6009 + components: + - pos: 1.5,4.5 + parent: 2 + type: Transform + - uid: 6010 + components: + - pos: 1.5,3.5 + parent: 2 + type: Transform + - uid: 6011 + components: + - pos: 1.5,2.5 + parent: 2 + type: Transform + - uid: 6012 + components: + - pos: 1.5,1.5 + parent: 2 + type: Transform + - uid: 6013 + components: + - pos: 0.5,1.5 + parent: 2 + type: Transform + - uid: 6014 + components: + - pos: -0.5,1.5 + parent: 2 + type: Transform + - uid: 6015 + components: + - pos: -1.5,1.5 + parent: 2 + type: Transform + - uid: 6016 + components: + - pos: -2.5,1.5 + parent: 2 + type: Transform + - uid: 6017 + components: + - pos: 2.5,1.5 + parent: 2 + type: Transform + - uid: 6018 + components: + - pos: 7.5,-5.5 + parent: 2 + type: Transform + - uid: 6019 + components: + - pos: 10.5,3.5 + parent: 2 + type: Transform + - uid: 6020 + components: + - pos: 9.5,3.5 + parent: 2 + type: Transform + - uid: 6021 + components: + - pos: 8.5,3.5 + parent: 2 + type: Transform + - uid: 6022 + components: + - pos: 7.5,3.5 + parent: 2 + type: Transform + - uid: 6023 + components: + - pos: 7.5,2.5 + parent: 2 + type: Transform + - uid: 6024 + components: + - pos: 7.5,1.5 + parent: 2 + type: Transform + - uid: 6025 + components: + - pos: 7.5,0.5 + parent: 2 + type: Transform + - uid: 6026 + components: + - pos: 7.5,-0.5 + parent: 2 + type: Transform + - uid: 6027 + components: + - pos: 7.5,-1.5 + parent: 2 + type: Transform + - uid: 6028 + components: + - pos: 7.5,4.5 + parent: 2 + type: Transform + - uid: 6029 + components: + - pos: 7.5,5.5 + parent: 2 + type: Transform + - uid: 6030 + components: + - pos: 7.5,6.5 + parent: 2 + type: Transform + - uid: 6031 + components: + - pos: 5.5,10.5 + parent: 2 + type: Transform + - uid: 6032 + components: + - pos: 6.5,10.5 + parent: 2 + type: Transform + - uid: 6033 + components: + - pos: 7.5,10.5 + parent: 2 + type: Transform + - uid: 6034 + components: + - pos: 8.5,10.5 + parent: 2 + type: Transform + - uid: 6035 + components: + - pos: 9.5,10.5 + parent: 2 + type: Transform + - uid: 6036 + components: + - pos: 10.5,10.5 + parent: 2 + type: Transform + - uid: 6037 + components: + - pos: 8.5,19.5 + parent: 2 + type: Transform + - uid: 6038 + components: + - pos: 8.5,18.5 + parent: 2 + type: Transform + - uid: 6039 + components: + - pos: 8.5,17.5 + parent: 2 + type: Transform + - uid: 6040 + components: + - pos: 9.5,17.5 + parent: 2 + type: Transform + - uid: 6041 + components: + - pos: 10.5,17.5 + parent: 2 + type: Transform + - uid: 6042 + components: + - pos: 5.5,13.5 + parent: 2 + type: Transform + - uid: 6043 + components: + - pos: 6.5,13.5 + parent: 2 + type: Transform + - uid: 6044 + components: + - pos: 7.5,13.5 + parent: 2 + type: Transform + - uid: 6045 + components: + - pos: 8.5,13.5 + parent: 2 + type: Transform + - uid: 6046 + components: + - pos: 9.5,13.5 + parent: 2 + type: Transform + - uid: 6047 + components: + - pos: 0.5,14.5 + parent: 2 + type: Transform + - uid: 6048 + components: + - pos: 0.5,15.5 + parent: 2 + type: Transform + - uid: 6049 + components: + - pos: 0.5,16.5 + parent: 2 + type: Transform + - uid: 6050 + components: + - pos: 0.5,17.5 + parent: 2 + type: Transform + - uid: 6051 + components: + - pos: -10.5,16.5 + parent: 2 + type: Transform + - uid: 6052 + components: + - pos: -10.5,17.5 + parent: 2 + type: Transform + - uid: 6053 + components: + - pos: -10.5,18.5 + parent: 2 + type: Transform + - uid: 6054 + components: + - pos: -11.5,18.5 + parent: 2 + type: Transform + - uid: 6055 + components: + - pos: -12.5,18.5 + parent: 2 + type: Transform + - uid: 6056 + components: + - pos: -13.5,18.5 + parent: 2 + type: Transform + - uid: 6057 + components: + - pos: -13.5,17.5 + parent: 2 + type: Transform + - uid: 6058 + components: + - pos: -13.5,16.5 + parent: 2 + type: Transform + - uid: 6059 + components: + - pos: -13.5,15.5 + parent: 2 + type: Transform + - uid: 6060 + components: + - pos: -13.5,14.5 + parent: 2 + type: Transform + - uid: 6061 + components: + - pos: -12.5,14.5 + parent: 2 + type: Transform + - uid: 6062 + components: + - pos: -14.5,14.5 + parent: 2 + type: Transform + - uid: 6063 + components: + - pos: -9.5,18.5 + parent: 2 + type: Transform + - uid: 6064 + components: + - pos: -8.5,18.5 + parent: 2 + type: Transform + - uid: 6065 + components: + - pos: -7.5,18.5 + parent: 2 + type: Transform + - uid: 6066 + components: + - pos: -6.5,18.5 + parent: 2 + type: Transform + - uid: 6067 + components: + - pos: -5.5,18.5 + parent: 2 + type: Transform + - uid: 6068 + components: + - pos: -4.5,18.5 + parent: 2 + type: Transform + - uid: 6069 + components: + - pos: -3.5,18.5 + parent: 2 + type: Transform + - uid: 6070 + components: + - pos: -3.5,17.5 + parent: 2 + type: Transform + - uid: 6071 + components: + - pos: -7.5,17.5 + parent: 2 + type: Transform + - uid: 6072 + components: + - pos: -11.5,11.5 + parent: 2 + type: Transform + - uid: 6073 + components: + - pos: -10.5,11.5 + parent: 2 + type: Transform + - uid: 6074 + components: + - pos: -9.5,11.5 + parent: 2 + type: Transform + - uid: 6075 + components: + - pos: -8.5,11.5 + parent: 2 + type: Transform + - uid: 6076 + components: + - pos: -7.5,11.5 + parent: 2 + type: Transform + - uid: 6077 + components: + - pos: -11.5,10.5 + parent: 2 + type: Transform + - uid: 6078 + components: + - pos: -11.5,9.5 + parent: 2 + type: Transform + - uid: 6079 + components: + - pos: -11.5,8.5 + parent: 2 + type: Transform + - uid: 6080 + components: + - pos: -7.5,12.5 + parent: 2 + type: Transform + - uid: 6081 + components: + - pos: -7.5,13.5 + parent: 2 + type: Transform + - uid: 6082 + components: + - pos: -8.5,13.5 + parent: 2 + type: Transform + - uid: 6083 + components: + - pos: -7.5,10.5 + parent: 2 + type: Transform + - uid: 6084 + components: + - pos: -7.5,9.5 + parent: 2 + type: Transform + - uid: 6085 + components: + - pos: -7.5,8.5 + parent: 2 + type: Transform + - uid: 6086 + components: + - pos: -7.5,7.5 + parent: 2 + type: Transform + - uid: 6087 + components: + - pos: -7.5,6.5 + parent: 2 + type: Transform + - uid: 6088 + components: + - pos: -12.5,10.5 + parent: 2 + type: Transform + - uid: 6089 + components: + - pos: -13.5,10.5 + parent: 2 + type: Transform + - uid: 6090 + components: + - pos: -14.5,10.5 + parent: 2 + type: Transform + - uid: 6091 + components: + - pos: -15.5,10.5 + parent: 2 + type: Transform + - uid: 6092 + components: + - pos: -15.5,9.5 + parent: 2 + type: Transform + - uid: 6093 + components: + - pos: -15.5,8.5 + parent: 2 + type: Transform + - uid: 6094 + components: + - pos: -15.5,7.5 + parent: 2 + type: Transform + - uid: 6095 + components: + - pos: -15.5,6.5 + parent: 2 + type: Transform + - uid: 6096 + components: + - pos: -12.5,-1.5 + parent: 2 + type: Transform + - uid: 6097 + components: + - pos: -11.5,-1.5 + parent: 2 + type: Transform + - uid: 6098 + components: + - pos: -10.5,-1.5 + parent: 2 + type: Transform + - uid: 6099 + components: + - pos: -9.5,-1.5 + parent: 2 + type: Transform + - uid: 6100 + components: + - pos: -8.5,-1.5 + parent: 2 + type: Transform + - uid: 6101 + components: + - pos: -7.5,-1.5 + parent: 2 + type: Transform + - uid: 6102 + components: + - pos: -7.5,-0.5 + parent: 2 + type: Transform + - uid: 6103 + components: + - pos: -7.5,0.5 + parent: 2 + type: Transform + - uid: 6104 + components: + - pos: -7.5,1.5 + parent: 2 + type: Transform + - uid: 6105 + components: + - pos: -7.5,2.5 + parent: 2 + type: Transform + - uid: 6106 + components: + - pos: -6.5,1.5 + parent: 2 + type: Transform + - uid: 6107 + components: + - pos: -7.5,3.5 + parent: 2 + type: Transform + - uid: 6108 + components: + - pos: -8.5,3.5 + parent: 2 + type: Transform + - uid: 6109 + components: + - pos: -9.5,3.5 + parent: 2 + type: Transform + - uid: 6110 + components: + - pos: -10.5,3.5 + parent: 2 + type: Transform + - uid: 6111 + components: + - pos: -10.5,-0.5 + parent: 2 + type: Transform + - uid: 6112 + components: + - pos: -10.5,0.5 + parent: 2 + type: Transform + - uid: 6113 + components: + - pos: -10.5,1.5 + parent: 2 + type: Transform + - uid: 6114 + components: + - pos: -10.5,2.5 + parent: 2 + type: Transform + - uid: 6115 + components: + - pos: -11.5,4.5 + parent: 2 + type: Transform + - uid: 6116 + components: + - pos: -10.5,4.5 + parent: 2 + type: Transform + - uid: 6117 + components: + - pos: -11.5,5.5 + parent: 2 + type: Transform + - uid: 6118 + components: + - pos: -16.5,6.5 + parent: 2 + type: Transform + - uid: 6119 + components: + - pos: -16.5,5.5 + parent: 2 + type: Transform + - uid: 6120 + components: + - pos: -16.5,4.5 + parent: 2 + type: Transform + - uid: 6121 + components: + - pos: -16.5,3.5 + parent: 2 + type: Transform + - uid: 6122 + components: + - pos: -16.5,2.5 + parent: 2 + type: Transform + - uid: 6123 + components: + - pos: -23.5,-3.5 + parent: 2 + type: Transform + - uid: 6124 + components: + - pos: -23.5,-4.5 + parent: 2 + type: Transform + - uid: 6125 + components: + - pos: -23.5,-5.5 + parent: 2 + type: Transform + - uid: 6126 + components: + - pos: -22.5,-5.5 + parent: 2 + type: Transform + - uid: 6127 + components: + - pos: -21.5,-5.5 + parent: 2 + type: Transform + - uid: 6128 + components: + - pos: -20.5,-5.5 + parent: 2 + type: Transform + - uid: 6129 + components: + - pos: -19.5,-5.5 + parent: 2 + type: Transform + - uid: 6130 + components: + - pos: -18.5,-5.5 + parent: 2 + type: Transform + - uid: 6131 + components: + - pos: -24.5,-5.5 + parent: 2 + type: Transform + - uid: 6132 + components: + - pos: -25.5,-5.5 + parent: 2 + type: Transform + - uid: 6133 + components: + - pos: -25.5,-4.5 + parent: 2 + type: Transform + - uid: 6134 + components: + - pos: -25.5,-3.5 + parent: 2 + type: Transform + - uid: 6135 + components: + - pos: -25.5,-2.5 + parent: 2 + type: Transform + - uid: 6136 + components: + - pos: -25.5,-1.5 + parent: 2 + type: Transform + - uid: 6137 + components: + - pos: -25.5,-0.5 + parent: 2 + type: Transform + - uid: 6138 + components: + - pos: -24.5,-0.5 + parent: 2 + type: Transform + - uid: 6139 + components: + - pos: -23.5,-0.5 + parent: 2 + type: Transform + - uid: 6140 + components: + - pos: -22.5,-0.5 + parent: 2 + type: Transform + - uid: 6141 + components: + - pos: -22.5,-1.5 + parent: 2 + type: Transform + - uid: 6142 + components: + - pos: -21.5,-1.5 + parent: 2 + type: Transform + - uid: 6143 + components: + - pos: -20.5,-1.5 + parent: 2 + type: Transform + - uid: 6144 + components: + - pos: -19.5,-1.5 + parent: 2 + type: Transform + - uid: 6145 + components: + - pos: -19.5,-0.5 + parent: 2 + type: Transform + - uid: 6146 + components: + - pos: -18.5,-0.5 + parent: 2 + type: Transform + - uid: 6147 + components: + - pos: -17.5,-0.5 + parent: 2 + type: Transform + - uid: 6148 + components: + - pos: -16.5,-0.5 + parent: 2 + type: Transform + - uid: 6149 + components: + - pos: -15.5,-0.5 + parent: 2 + type: Transform + - uid: 6150 + components: + - pos: -34.5,2.5 + parent: 2 + type: Transform + - uid: 6151 + components: + - pos: -34.5,3.5 + parent: 2 + type: Transform + - uid: 6152 + components: + - pos: -34.5,1.5 + parent: 2 + type: Transform + - uid: 6153 + components: + - pos: -33.5,1.5 + parent: 2 + type: Transform + - uid: 6154 + components: + - pos: -32.5,1.5 + parent: 2 + type: Transform + - uid: 6155 + components: + - pos: -31.5,1.5 + parent: 2 + type: Transform + - uid: 6156 + components: + - pos: -30.5,1.5 + parent: 2 + type: Transform + - uid: 6157 + components: + - pos: -29.5,1.5 + parent: 2 + type: Transform + - uid: 6158 + components: + - pos: -29.5,0.5 + parent: 2 + type: Transform + - uid: 6159 + components: + - pos: -29.5,-0.5 + parent: 2 + type: Transform + - uid: 6160 + components: + - pos: -29.5,-1.5 + parent: 2 + type: Transform + - uid: 6161 + components: + - pos: -30.5,-1.5 + parent: 2 + type: Transform + - uid: 6162 + components: + - pos: -31.5,-1.5 + parent: 2 + type: Transform + - uid: 6163 + components: + - pos: -32.5,-1.5 + parent: 2 + type: Transform + - uid: 6164 + components: + - pos: -33.5,-1.5 + parent: 2 + type: Transform + - uid: 6165 + components: + - pos: -34.5,-1.5 + parent: 2 + type: Transform + - uid: 6166 + components: + - pos: -34.5,-0.5 + parent: 2 + type: Transform + - uid: 6167 + components: + - pos: -34.5,0.5 + parent: 2 + type: Transform + - uid: 6168 + components: + - pos: -35.5,-1.5 + parent: 2 + type: Transform + - uid: 6169 + components: + - pos: -36.5,-1.5 + parent: 2 + type: Transform + - uid: 6170 + components: + - pos: -37.5,-1.5 + parent: 2 + type: Transform + - uid: 6171 + components: + - pos: -38.5,-1.5 + parent: 2 + type: Transform + - uid: 6172 + components: + - pos: -39.5,-1.5 + parent: 2 + type: Transform + - uid: 6173 + components: + - pos: -39.5,-0.5 + parent: 2 + type: Transform + - uid: 6174 + components: + - pos: -34.5,4.5 + parent: 2 + type: Transform + - uid: 6175 + components: + - pos: -34.5,5.5 + parent: 2 + type: Transform + - uid: 6176 + components: + - pos: -33.5,5.5 + parent: 2 + type: Transform + - uid: 6177 + components: + - pos: -32.5,5.5 + parent: 2 + type: Transform + - uid: 6178 + components: + - pos: -31.5,5.5 + parent: 2 + type: Transform + - uid: 6179 + components: + - pos: -30.5,5.5 + parent: 2 + type: Transform + - uid: 6180 + components: + - pos: -33.5,11.5 + parent: 2 + type: Transform + - uid: 6181 + components: + - pos: -32.5,11.5 + parent: 2 + type: Transform + - uid: 6182 + components: + - pos: -33.5,12.5 + parent: 2 + type: Transform + - uid: 6183 + components: + - pos: -33.5,13.5 + parent: 2 + type: Transform + - uid: 6184 + components: + - pos: -33.5,14.5 + parent: 2 + type: Transform + - uid: 6185 + components: + - pos: -33.5,15.5 + parent: 2 + type: Transform + - uid: 6186 + components: + - pos: -33.5,16.5 + parent: 2 + type: Transform + - uid: 6187 + components: + - pos: -33.5,17.5 + parent: 2 + type: Transform + - uid: 6188 + components: + - pos: -34.5,17.5 + parent: 2 + type: Transform + - uid: 6189 + components: + - pos: -35.5,17.5 + parent: 2 + type: Transform + - uid: 6190 + components: + - pos: -36.5,17.5 + parent: 2 + type: Transform + - uid: 6191 + components: + - pos: -37.5,17.5 + parent: 2 + type: Transform + - uid: 6192 + components: + - pos: -37.5,18.5 + parent: 2 + type: Transform + - uid: 6193 + components: + - pos: -37.5,19.5 + parent: 2 + type: Transform + - uid: 6194 + components: + - pos: -37.5,20.5 + parent: 2 + type: Transform + - uid: 6195 + components: + - pos: -34.5,18.5 + parent: 2 + type: Transform + - uid: 6196 + components: + - pos: -34.5,19.5 + parent: 2 + type: Transform + - uid: 6197 + components: + - pos: -34.5,20.5 + parent: 2 + type: Transform + - uid: 6198 + components: + - pos: -31.5,20.5 + parent: 2 + type: Transform + - uid: 6199 + components: + - pos: -31.5,19.5 + parent: 2 + type: Transform + - uid: 6200 + components: + - pos: -31.5,18.5 + parent: 2 + type: Transform + - uid: 6201 + components: + - pos: -31.5,17.5 + parent: 2 + type: Transform + - uid: 6202 + components: + - pos: -28.5,20.5 + parent: 2 + type: Transform + - uid: 6203 + components: + - pos: -28.5,19.5 + parent: 2 + type: Transform + - uid: 6204 + components: + - pos: -28.5,18.5 + parent: 2 + type: Transform + - uid: 6205 + components: + - pos: -28.5,17.5 + parent: 2 + type: Transform + - uid: 6206 + components: + - pos: -32.5,17.5 + parent: 2 + type: Transform + - uid: 6207 + components: + - pos: -30.5,17.5 + parent: 2 + type: Transform + - uid: 6208 + components: + - pos: -29.5,17.5 + parent: 2 + type: Transform + - uid: 6209 + components: + - pos: -28.5,16.5 + parent: 2 + type: Transform + - uid: 6210 + components: + - pos: -28.5,15.5 + parent: 2 + type: Transform + - uid: 6211 + components: + - pos: -28.5,14.5 + parent: 2 + type: Transform + - uid: 6212 + components: + - pos: -28.5,13.5 + parent: 2 + type: Transform + - uid: 6213 + components: + - pos: -29.5,13.5 + parent: 2 + type: Transform + - uid: 6214 + components: + - pos: -30.5,13.5 + parent: 2 + type: Transform + - uid: 6215 + components: + - pos: -27.5,13.5 + parent: 2 + type: Transform + - uid: 6216 + components: + - pos: -37.5,16.5 + parent: 2 + type: Transform + - uid: 6217 + components: + - pos: -51.5,16.5 + parent: 2 + type: Transform + - uid: 6218 + components: + - pos: -52.5,16.5 + parent: 2 + type: Transform + - uid: 6219 + components: + - pos: -51.5,17.5 + parent: 2 + type: Transform + - uid: 6220 + components: + - pos: -51.5,18.5 + parent: 2 + type: Transform + - uid: 6221 + components: + - pos: -51.5,19.5 + parent: 2 + type: Transform + - uid: 6222 + components: + - pos: -50.5,19.5 + parent: 2 + type: Transform + - uid: 6223 + components: + - pos: -49.5,19.5 + parent: 2 + type: Transform + - uid: 6224 + components: + - pos: -48.5,19.5 + parent: 2 + type: Transform + - uid: 6225 + components: + - pos: -47.5,19.5 + parent: 2 + type: Transform + - uid: 6226 + components: + - pos: -46.5,19.5 + parent: 2 + type: Transform + - uid: 6227 + components: + - pos: -45.5,19.5 + parent: 2 + type: Transform + - uid: 6228 + components: + - pos: -44.5,19.5 + parent: 2 + type: Transform + - uid: 6229 + components: + - pos: -44.5,18.5 + parent: 2 + type: Transform + - uid: 6230 + components: + - pos: -44.5,17.5 + parent: 2 + type: Transform + - uid: 6231 + components: + - pos: -43.5,17.5 + parent: 2 + type: Transform + - uid: 6232 + components: + - pos: -42.5,17.5 + parent: 2 + type: Transform + - uid: 6233 + components: + - pos: -41.5,17.5 + parent: 2 + type: Transform + - uid: 6234 + components: + - pos: -51.5,15.5 + parent: 2 + type: Transform + - uid: 6235 + components: + - pos: -51.5,14.5 + parent: 2 + type: Transform + - uid: 6236 + components: + - pos: -52.5,14.5 + parent: 2 + type: Transform + - uid: 6237 + components: + - pos: -53.5,14.5 + parent: 2 + type: Transform + - uid: 6238 + components: + - pos: -51.5,13.5 + parent: 2 + type: Transform + - uid: 6239 + components: + - pos: -53.5,15.5 + parent: 2 + type: Transform + - uid: 6240 + components: + - pos: -51.5,12.5 + parent: 2 + type: Transform + - uid: 6241 + components: + - pos: -52.5,12.5 + parent: 2 + type: Transform + - uid: 6242 + components: + - pos: -52.5,11.5 + parent: 2 + type: Transform + - uid: 6243 + components: + - pos: -52.5,10.5 + parent: 2 + type: Transform + - uid: 6244 + components: + - pos: -52.5,9.5 + parent: 2 + type: Transform + - uid: 6245 + components: + - pos: -53.5,9.5 + parent: 2 + type: Transform + - uid: 6246 + components: + - pos: -53.5,8.5 + parent: 2 + type: Transform + - uid: 6247 + components: + - pos: -47.5,1.5 + parent: 2 + type: Transform + - uid: 6248 + components: + - pos: -47.5,2.5 + parent: 2 + type: Transform + - uid: 6249 + components: + - pos: -48.5,1.5 + parent: 2 + type: Transform + - uid: 6250 + components: + - pos: -49.5,1.5 + parent: 2 + type: Transform + - uid: 6251 + components: + - pos: -50.5,1.5 + parent: 2 + type: Transform + - uid: 6252 + components: + - pos: -51.5,1.5 + parent: 2 + type: Transform + - uid: 6253 + components: + - pos: -52.5,1.5 + parent: 2 + type: Transform + - uid: 6254 + components: + - pos: -52.5,2.5 + parent: 2 + type: Transform + - uid: 6255 + components: + - pos: -52.5,3.5 + parent: 2 + type: Transform + - uid: 6256 + components: + - pos: -53.5,3.5 + parent: 2 + type: Transform + - uid: 6257 + components: + - pos: -53.5,4.5 + parent: 2 + type: Transform + - uid: 6258 + components: + - pos: -51.5,0.5 + parent: 2 + type: Transform + - uid: 6259 + components: + - pos: -51.5,-0.5 + parent: 2 + type: Transform + - uid: 6260 + components: + - pos: -51.5,-1.5 + parent: 2 + type: Transform + - uid: 6261 + components: + - pos: -46.5,1.5 + parent: 2 + type: Transform + - uid: 6262 + components: + - pos: -45.5,1.5 + parent: 2 + type: Transform + - uid: 6263 + components: + - pos: -44.5,1.5 + parent: 2 + type: Transform + - uid: 6264 + components: + - pos: -43.5,1.5 + parent: 2 + type: Transform + - uid: 6265 + components: + - pos: -42.5,1.5 + parent: 2 + type: Transform + - uid: 6266 + components: + - pos: -42.5,0.5 + parent: 2 + type: Transform + - uid: 6267 + components: + - pos: -42.5,-0.5 + parent: 2 + type: Transform + - uid: 6268 + components: + - pos: -42.5,-1.5 + parent: 2 + type: Transform + - uid: 6269 + components: + - pos: -42.5,-2.5 + parent: 2 + type: Transform + - uid: 6270 + components: + - pos: -45.5,2.5 + parent: 2 + type: Transform + - uid: 6271 + components: + - pos: -45.5,3.5 + parent: 2 + type: Transform + - uid: 6272 + components: + - pos: -45.5,4.5 + parent: 2 + type: Transform + - uid: 6273 + components: + - pos: -45.5,5.5 + parent: 2 + type: Transform + - uid: 6274 + components: + - pos: -45.5,9.5 + parent: 2 + type: Transform + - uid: 6275 + components: + - pos: -45.5,10.5 + parent: 2 + type: Transform + - uid: 6276 + components: + - pos: -46.5,9.5 + parent: 2 + type: Transform + - uid: 6277 + components: + - pos: -47.5,9.5 + parent: 2 + type: Transform + - uid: 6278 + components: + - pos: -48.5,9.5 + parent: 2 + type: Transform + - uid: 6279 + components: + - pos: -48.5,10.5 + parent: 2 + type: Transform + - uid: 6280 + components: + - pos: -48.5,11.5 + parent: 2 + type: Transform + - uid: 6281 + components: + - pos: -48.5,12.5 + parent: 2 + type: Transform + - uid: 6282 + components: + - pos: -48.5,13.5 + parent: 2 + type: Transform + - uid: 6283 + components: + - pos: -48.5,14.5 + parent: 2 + type: Transform + - uid: 6284 + components: + - pos: -48.5,15.5 + parent: 2 + type: Transform + - uid: 6285 + components: + - pos: -48.5,16.5 + parent: 2 + type: Transform + - uid: 6286 + components: + - pos: -47.5,16.5 + parent: 2 + type: Transform + - uid: 6287 + components: + - pos: -49.5,9.5 + parent: 2 + type: Transform + - uid: 6288 + components: + - pos: -49.5,8.5 + parent: 2 + type: Transform + - uid: 6289 + components: + - pos: -49.5,7.5 + parent: 2 + type: Transform + - uid: 6290 + components: + - pos: -49.5,6.5 + parent: 2 + type: Transform + - uid: 6291 + components: + - pos: -49.5,5.5 + parent: 2 + type: Transform + - uid: 6292 + components: + - pos: -49.5,4.5 + parent: 2 + type: Transform + - uid: 6293 + components: + - pos: -44.5,9.5 + parent: 2 + type: Transform + - uid: 6294 + components: + - pos: -43.5,9.5 + parent: 2 + type: Transform + - uid: 6295 + components: + - pos: -42.5,9.5 + parent: 2 + type: Transform + - uid: 6296 + components: + - pos: -42.5,8.5 + parent: 2 + type: Transform + - uid: 6297 + components: + - pos: -42.5,7.5 + parent: 2 + type: Transform + - uid: 6298 + components: + - pos: -42.5,6.5 + parent: 2 + type: Transform + - uid: 6299 + components: + - pos: -42.5,5.5 + parent: 2 + type: Transform + - uid: 6300 + components: + - pos: -43.5,10.5 + parent: 2 + type: Transform + - uid: 6301 + components: + - pos: -43.5,11.5 + parent: 2 + type: Transform + - uid: 6302 + components: + - pos: -43.5,12.5 + parent: 2 + type: Transform + - uid: 6303 + components: + - pos: -43.5,13.5 + parent: 2 + type: Transform + - uid: 6304 + components: + - pos: -42.5,13.5 + parent: 2 + type: Transform + - uid: 6305 + components: + - pos: -42.5,12.5 + parent: 2 + type: Transform + - uid: 6306 + components: + - pos: -41.5,12.5 + parent: 2 + type: Transform + - uid: 6307 + components: + - pos: -40.5,12.5 + parent: 2 + type: Transform + - uid: 6308 + components: + - pos: -39.5,12.5 + parent: 2 + type: Transform + - uid: 6309 + components: + - pos: -38.5,12.5 + parent: 2 + type: Transform + - uid: 6310 + components: + - pos: -37.5,12.5 + parent: 2 + type: Transform + - uid: 6311 + components: + - pos: -33.5,10.5 + parent: 2 + type: Transform + - uid: 6312 + components: + - pos: -33.5,9.5 + parent: 2 + type: Transform + - uid: 6313 + components: + - pos: -33.5,8.5 + parent: 2 + type: Transform + - uid: 6314 + components: + - pos: -34.5,8.5 + parent: 2 + type: Transform + - uid: 6315 + components: + - pos: -35.5,8.5 + parent: 2 + type: Transform + - uid: 6316 + components: + - pos: -36.5,8.5 + parent: 2 + type: Transform + - uid: 6317 + components: + - pos: -37.5,8.5 + parent: 2 + type: Transform + - uid: 6318 + components: + - pos: -38.5,8.5 + parent: 2 + type: Transform + - uid: 6319 + components: + - pos: -38.5,7.5 + parent: 2 + type: Transform + - uid: 6320 + components: + - pos: -38.5,6.5 + parent: 2 + type: Transform + - uid: 6321 + components: + - pos: -38.5,5.5 + parent: 2 + type: Transform + - uid: 6322 + components: + - pos: -37.5,5.5 + parent: 2 + type: Transform + - uid: 6323 + components: + - pos: -32.5,9.5 + parent: 2 + type: Transform + - uid: 6324 + components: + - pos: -31.5,9.5 + parent: 2 + type: Transform + - uid: 6325 + components: + - pos: -30.5,9.5 + parent: 2 + type: Transform + - uid: 6326 + components: + - pos: -29.5,9.5 + parent: 2 + type: Transform + - uid: 6327 + components: + - pos: -28.5,9.5 + parent: 2 + type: Transform + - uid: 6328 + components: + - pos: -28.5,8.5 + parent: 2 + type: Transform + - uid: 6329 + components: + - pos: -28.5,7.5 + parent: 2 + type: Transform + - uid: 6330 + components: + - pos: -20.5,13.5 + parent: 2 + type: Transform + - uid: 6331 + components: + - pos: -20.5,14.5 + parent: 2 + type: Transform + - uid: 6332 + components: + - pos: -20.5,12.5 + parent: 2 + type: Transform + - uid: 6333 + components: + - pos: -21.5,12.5 + parent: 2 + type: Transform + - uid: 6334 + components: + - pos: -22.5,12.5 + parent: 2 + type: Transform + - uid: 6335 + components: + - pos: -23.5,12.5 + parent: 2 + type: Transform + - uid: 6336 + components: + - pos: -23.5,11.5 + parent: 2 + type: Transform + - uid: 6337 + components: + - pos: -23.5,10.5 + parent: 2 + type: Transform + - uid: 6338 + components: + - pos: -23.5,9.5 + parent: 2 + type: Transform + - uid: 6339 + components: + - pos: -24.5,9.5 + parent: 2 + type: Transform + - uid: 6340 + components: + - pos: -24.5,8.5 + parent: 2 + type: Transform + - uid: 6341 + components: + - pos: -24.5,7.5 + parent: 2 + type: Transform + - uid: 6342 + components: + - pos: -22.5,9.5 + parent: 2 + type: Transform + - uid: 6343 + components: + - pos: -26.5,-5.5 + parent: 2 + type: Transform + - uid: 6344 + components: + - pos: -24.5,6.5 + parent: 2 + type: Transform + - uid: 6345 + components: + - pos: -24.5,5.5 + parent: 2 + type: Transform + - uid: 6346 + components: + - pos: -23.5,5.5 + parent: 2 + type: Transform + - uid: 6347 + components: + - pos: -22.5,5.5 + parent: 2 + type: Transform + - uid: 6348 + components: + - pos: -22.5,4.5 + parent: 2 + type: Transform + - uid: 6349 + components: + - pos: -22.5,3.5 + parent: 2 + type: Transform + - uid: 6350 + components: + - pos: -21.5,5.5 + parent: 2 + type: Transform + - uid: 6351 + components: + - pos: -20.5,5.5 + parent: 2 + type: Transform + - uid: 6352 + components: + - pos: -19.5,5.5 + parent: 2 + type: Transform + - uid: 6353 + components: + - pos: -19.5,4.5 + parent: 2 + type: Transform + - uid: 6354 + components: + - pos: -19.5,3.5 + parent: 2 + type: Transform + - uid: 6355 + components: + - pos: -19.5,6.5 + parent: 2 + type: Transform + - uid: 6356 + components: + - pos: -19.5,7.5 + parent: 2 + type: Transform + - uid: 6357 + components: + - pos: -19.5,8.5 + parent: 2 + type: Transform + - uid: 6358 + components: + - pos: -19.5,9.5 + parent: 2 + type: Transform + - uid: 6359 + components: + - pos: -19.5,10.5 + parent: 2 + type: Transform + - uid: 6360 + components: + - pos: -19.5,11.5 + parent: 2 + type: Transform + - uid: 6361 + components: + - pos: -19.5,12.5 + parent: 2 + type: Transform + - uid: 6362 + components: + - pos: -14.5,18.5 + parent: 2 + type: Transform + - uid: 6363 + components: + - pos: -15.5,18.5 + parent: 2 + type: Transform + - uid: 6364 + components: + - pos: -19.5,14.5 + parent: 2 + type: Transform + - uid: 6365 + components: + - pos: -18.5,14.5 + parent: 2 + type: Transform + - uid: 6366 + components: + - pos: -18.5,15.5 + parent: 2 + type: Transform + - uid: 6367 + components: + - pos: -18.5,16.5 + parent: 2 + type: Transform + - uid: 6368 + components: + - pos: -18.5,17.5 + parent: 2 + type: Transform + - uid: 6369 + components: + - pos: -19.5,17.5 + parent: 2 + type: Transform + - uid: 6370 + components: + - pos: -20.5,17.5 + parent: 2 + type: Transform + - uid: 6371 + components: + - pos: -21.5,17.5 + parent: 2 + type: Transform + - uid: 6372 + components: + - pos: -22.5,17.5 + parent: 2 + type: Transform + - uid: 6373 + components: + - pos: -22.5,16.5 + parent: 2 + type: Transform + - uid: 6374 + components: + - pos: -23.5,16.5 + parent: 2 + type: Transform + - uid: 6375 + components: + - pos: -24.5,16.5 + parent: 2 + type: Transform + - uid: 6376 + components: + - pos: -22.5,18.5 + parent: 2 + type: Transform + - uid: 6377 + components: + - pos: -22.5,19.5 + parent: 2 + type: Transform + - uid: 6378 + components: + - pos: -23.5,19.5 + parent: 2 + type: Transform + - uid: 6379 + components: + - pos: -24.5,19.5 + parent: 2 + type: Transform + - uid: 6380 + components: + - pos: -18.5,12.5 + parent: 2 + type: Transform + - uid: 6381 + components: + - pos: -18.5,9.5 + parent: 2 + type: Transform + - uid: 6382 + components: + - pos: -21.5,9.5 + parent: 2 + type: Transform + - uid: 6383 + components: + - pos: -20.5,9.5 + parent: 2 + type: Transform + - uid: 6384 + components: + - pos: -27.5,-5.5 + parent: 2 + type: Transform + - uid: 6385 + components: + - pos: -28.5,-5.5 + parent: 2 + type: Transform + - uid: 6386 + components: + - pos: -29.5,-5.5 + parent: 2 + type: Transform + - uid: 6387 + components: + - pos: -30.5,-5.5 + parent: 2 + type: Transform + - uid: 6388 + components: + - pos: -31.5,-5.5 + parent: 2 + type: Transform + - uid: 6389 + components: + - pos: -32.5,-5.5 + parent: 2 + type: Transform + - uid: 6390 + components: + - pos: -33.5,-5.5 + parent: 2 + type: Transform + - uid: 6404 + components: + - pos: -19.5,-15.5 + parent: 2 + type: Transform + - uid: 6405 + components: + - pos: -19.5,-16.5 + parent: 2 + type: Transform + - uid: 6406 + components: + - pos: -19.5,-17.5 + parent: 2 + type: Transform + - uid: 6407 + components: + - pos: -19.5,-18.5 + parent: 2 + type: Transform + - uid: 6408 + components: + - pos: -20.5,-18.5 + parent: 2 + type: Transform + - uid: 6409 + components: + - pos: -21.5,-18.5 + parent: 2 + type: Transform + - uid: 6410 + components: + - pos: -22.5,-18.5 + parent: 2 + type: Transform + - uid: 6411 + components: + - pos: -23.5,-18.5 + parent: 2 + type: Transform + - uid: 6412 + components: + - pos: -23.5,-17.5 + parent: 2 + type: Transform + - uid: 6413 + components: + - pos: -23.5,-16.5 + parent: 2 + type: Transform + - uid: 6414 + components: + - pos: -23.5,-15.5 + parent: 2 + type: Transform + - uid: 6415 + components: + - pos: -23.5,-14.5 + parent: 2 + type: Transform + - uid: 6416 + components: + - pos: -23.5,-13.5 + parent: 2 + type: Transform + - uid: 6417 + components: + - pos: -23.5,-12.5 + parent: 2 + type: Transform + - uid: 6418 + components: + - pos: -23.5,-11.5 + parent: 2 + type: Transform + - uid: 6419 + components: + - pos: -23.5,-10.5 + parent: 2 + type: Transform + - uid: 6420 + components: + - pos: -23.5,-9.5 + parent: 2 + type: Transform + - uid: 6421 + components: + - pos: -22.5,-9.5 + parent: 2 + type: Transform + - uid: 6422 + components: + - pos: -21.5,-9.5 + parent: 2 + type: Transform + - uid: 6423 + components: + - pos: -20.5,-9.5 + parent: 2 + type: Transform + - uid: 6424 + components: + - pos: -19.5,-9.5 + parent: 2 + type: Transform + - uid: 6425 + components: + - pos: -19.5,-10.5 + parent: 2 + type: Transform + - uid: 6426 + components: + - pos: -22.5,-13.5 + parent: 2 + type: Transform + - uid: 6427 + components: + - pos: -21.5,-13.5 + parent: 2 + type: Transform + - uid: 6428 + components: + - pos: -20.5,-13.5 + parent: 2 + type: Transform + - uid: 6429 + components: + - pos: -26.5,-21.5 + parent: 2 + type: Transform + - uid: 6430 + components: + - pos: -27.5,-21.5 + parent: 2 + type: Transform + - uid: 6431 + components: + - pos: -28.5,-21.5 + parent: 2 + type: Transform + - uid: 6432 + components: + - pos: -28.5,-20.5 + parent: 2 + type: Transform + - uid: 6433 + components: + - pos: -28.5,-19.5 + parent: 2 + type: Transform + - uid: 6434 + components: + - pos: -28.5,-18.5 + parent: 2 + type: Transform + - uid: 6435 + components: + - pos: -28.5,-22.5 + parent: 2 + type: Transform + - uid: 6436 + components: + - pos: -28.5,-23.5 + parent: 2 + type: Transform + - uid: 6437 + components: + - pos: -28.5,-24.5 + parent: 2 + type: Transform + - uid: 6438 + components: + - pos: -28.5,-25.5 + parent: 2 + type: Transform + - uid: 6439 + components: + - pos: -28.5,-26.5 + parent: 2 + type: Transform + - uid: 6440 + components: + - pos: -27.5,-23.5 + parent: 2 + type: Transform + - uid: 6441 + components: + - pos: -26.5,-23.5 + parent: 2 + type: Transform + - uid: 6442 + components: + - pos: -25.5,-23.5 + parent: 2 + type: Transform + - uid: 6443 + components: + - pos: -24.5,-23.5 + parent: 2 + type: Transform + - uid: 6444 + components: + - pos: -23.5,-23.5 + parent: 2 + type: Transform + - uid: 6445 + components: + - pos: -22.5,-23.5 + parent: 2 + type: Transform + - uid: 6446 + components: + - pos: -21.5,-23.5 + parent: 2 + type: Transform + - uid: 6447 + components: + - pos: -20.5,-23.5 + parent: 2 + type: Transform + - uid: 6448 + components: + - pos: -19.5,-23.5 + parent: 2 + type: Transform + - uid: 6449 + components: + - pos: -24.5,-24.5 + parent: 2 + type: Transform + - uid: 6450 + components: + - pos: -24.5,-25.5 + parent: 2 + type: Transform + - uid: 6451 + components: + - pos: -24.5,-26.5 + parent: 2 + type: Transform + - uid: 6452 + components: + - pos: -29.5,-22.5 + parent: 2 + type: Transform + - uid: 6453 + components: + - pos: -30.5,-22.5 + parent: 2 + type: Transform + - uid: 6454 + components: + - pos: -31.5,-22.5 + parent: 2 + type: Transform + - uid: 6455 + components: + - pos: -32.5,-22.5 + parent: 2 + type: Transform + - uid: 6456 + components: + - pos: -33.5,-22.5 + parent: 2 + type: Transform + - uid: 6457 + components: + - pos: -34.5,-22.5 + parent: 2 + type: Transform + - uid: 6458 + components: + - pos: -34.5,-23.5 + parent: 2 + type: Transform + - uid: 6459 + components: + - pos: -34.5,-24.5 + parent: 2 + type: Transform + - uid: 6460 + components: + - pos: -34.5,-25.5 + parent: 2 + type: Transform + - uid: 6461 + components: + - pos: -34.5,-26.5 + parent: 2 + type: Transform + - uid: 6462 + components: + - pos: -34.5,-27.5 + parent: 2 + type: Transform + - uid: 6463 + components: + - pos: -33.5,-27.5 + parent: 2 + type: Transform + - uid: 6464 + components: + - pos: -32.5,-27.5 + parent: 2 + type: Transform + - uid: 6465 + components: + - pos: -34.5,-18.5 + parent: 2 + type: Transform + - uid: 6466 + components: + - pos: -33.5,-18.5 + parent: 2 + type: Transform + - uid: 6467 + components: + - pos: -33.5,-17.5 + parent: 2 + type: Transform + - uid: 6468 + components: + - pos: -33.5,-16.5 + parent: 2 + type: Transform + - uid: 6469 + components: + - pos: -33.5,-15.5 + parent: 2 + type: Transform + - uid: 6470 + components: + - pos: -33.5,-14.5 + parent: 2 + type: Transform + - uid: 6471 + components: + - pos: -33.5,-13.5 + parent: 2 + type: Transform + - uid: 6472 + components: + - pos: -33.5,-12.5 + parent: 2 + type: Transform + - uid: 6473 + components: + - pos: -34.5,-12.5 + parent: 2 + type: Transform + - uid: 6474 + components: + - pos: -33.5,-11.5 + parent: 2 + type: Transform + - uid: 6475 + components: + - pos: -33.5,-10.5 + parent: 2 + type: Transform + - uid: 6476 + components: + - pos: -32.5,-10.5 + parent: 2 + type: Transform + - uid: 6477 + components: + - pos: -32.5,-9.5 + parent: 2 + type: Transform + - uid: 6478 + components: + - pos: -31.5,-9.5 + parent: 2 + type: Transform + - uid: 6479 + components: + - pos: -30.5,-9.5 + parent: 2 + type: Transform + - uid: 6480 + components: + - pos: -29.5,-9.5 + parent: 2 + type: Transform + - uid: 6481 + components: + - pos: -28.5,-9.5 + parent: 2 + type: Transform + - uid: 6482 + components: + - pos: -27.5,-9.5 + parent: 2 + type: Transform + - uid: 6483 + components: + - pos: -27.5,-10.5 + parent: 2 + type: Transform + - uid: 6484 + components: + - pos: -26.5,-10.5 + parent: 2 + type: Transform + - uid: 6485 + components: + - pos: -26.5,-11.5 + parent: 2 + type: Transform + - uid: 6486 + components: + - pos: -26.5,-12.5 + parent: 2 + type: Transform + - uid: 6487 + components: + - pos: -26.5,-13.5 + parent: 2 + type: Transform + - uid: 6488 + components: + - pos: -26.5,-14.5 + parent: 2 + type: Transform + - uid: 6489 + components: + - pos: -26.5,-15.5 + parent: 2 + type: Transform + - uid: 6490 + components: + - pos: -27.5,-15.5 + parent: 2 + type: Transform + - uid: 6491 + components: + - pos: -28.5,-15.5 + parent: 2 + type: Transform + - uid: 6492 + components: + - pos: -29.5,-15.5 + parent: 2 + type: Transform + - uid: 6493 + components: + - pos: -30.5,-15.5 + parent: 2 + type: Transform + - uid: 6494 + components: + - pos: -31.5,-15.5 + parent: 2 + type: Transform + - uid: 6495 + components: + - pos: -32.5,-15.5 + parent: 2 + type: Transform + - uid: 6496 + components: + - pos: -34.5,-10.5 + parent: 2 + type: Transform + - uid: 6497 + components: + - pos: -35.5,-10.5 + parent: 2 + type: Transform + - uid: 6498 + components: + - pos: -36.5,-10.5 + parent: 2 + type: Transform + - uid: 6499 + components: + - pos: -37.5,-10.5 + parent: 2 + type: Transform + - uid: 6500 + components: + - pos: -38.5,-10.5 + parent: 2 + type: Transform + - uid: 6501 + components: + - pos: -39.5,-10.5 + parent: 2 + type: Transform + - uid: 6502 + components: + - pos: -40.5,-10.5 + parent: 2 + type: Transform + - uid: 6503 + components: + - pos: -40.5,-11.5 + parent: 2 + type: Transform + - uid: 6504 + components: + - pos: -40.5,-12.5 + parent: 2 + type: Transform + - uid: 6505 + components: + - pos: -41.5,-12.5 + parent: 2 + type: Transform + - uid: 6506 + components: + - pos: -41.5,-13.5 + parent: 2 + type: Transform + - uid: 6507 + components: + - pos: -41.5,-14.5 + parent: 2 + type: Transform + - uid: 6508 + components: + - pos: -41.5,-15.5 + parent: 2 + type: Transform + - uid: 6509 + components: + - pos: -41.5,-16.5 + parent: 2 + type: Transform + - uid: 6510 + components: + - pos: -40.5,-15.5 + parent: 2 + type: Transform + - uid: 6511 + components: + - pos: -40.5,-9.5 + parent: 2 + type: Transform + - uid: 6512 + components: + - pos: -38.5,-24.5 + parent: 2 + type: Transform + - uid: 6513 + components: + - pos: -39.5,-24.5 + parent: 2 + type: Transform + - uid: 6514 + components: + - pos: -38.5,-23.5 + parent: 2 + type: Transform + - uid: 6515 + components: + - pos: -38.5,-22.5 + parent: 2 + type: Transform + - uid: 6516 + components: + - pos: -38.5,-21.5 + parent: 2 + type: Transform + - uid: 6517 + components: + - pos: -38.5,-20.5 + parent: 2 + type: Transform + - uid: 6518 + components: + - pos: -38.5,-19.5 + parent: 2 + type: Transform + - uid: 6519 + components: + - pos: -38.5,-25.5 + parent: 2 + type: Transform + - uid: 6520 + components: + - pos: -38.5,-26.5 + parent: 2 + type: Transform + - uid: 6521 + components: + - pos: -39.5,-26.5 + parent: 2 + type: Transform + - uid: 6522 + components: + - pos: -40.5,-26.5 + parent: 2 + type: Transform + - uid: 6523 + components: + - pos: -41.5,-26.5 + parent: 2 + type: Transform + - uid: 6524 + components: + - pos: -42.5,-26.5 + parent: 2 + type: Transform + - uid: 6525 + components: + - pos: -43.5,-26.5 + parent: 2 + type: Transform + - uid: 6526 + components: + - pos: -43.5,-27.5 + parent: 2 + type: Transform + - uid: 6527 + components: + - pos: -43.5,-28.5 + parent: 2 + type: Transform + - uid: 6528 + components: + - pos: -44.5,-26.5 + parent: 2 + type: Transform + - uid: 6529 + components: + - pos: -44.5,-25.5 + parent: 2 + type: Transform + - uid: 6530 + components: + - pos: -44.5,-24.5 + parent: 2 + type: Transform + - uid: 6531 + components: + - pos: -44.5,-23.5 + parent: 2 + type: Transform + - uid: 6532 + components: + - pos: -44.5,-22.5 + parent: 2 + type: Transform + - uid: 6533 + components: + - pos: -44.5,-21.5 + parent: 2 + type: Transform + - uid: 6534 + components: + - pos: -44.5,-20.5 + parent: 2 + type: Transform + - uid: 6535 + components: + - pos: -44.5,-19.5 + parent: 2 + type: Transform + - uid: 6536 + components: + - pos: -44.5,-18.5 + parent: 2 + type: Transform + - uid: 6537 + components: + - pos: -44.5,-17.5 + parent: 2 + type: Transform + - uid: 6538 + components: + - pos: -45.5,-17.5 + parent: 2 + type: Transform + - uid: 6539 + components: + - pos: -46.5,-17.5 + parent: 2 + type: Transform + - uid: 6540 + components: + - pos: -47.5,-17.5 + parent: 2 + type: Transform + - uid: 6541 + components: + - pos: -38.5,-27.5 + parent: 2 + type: Transform + - uid: 6542 + components: + - pos: -38.5,-28.5 + parent: 2 + type: Transform + - uid: 6544 + components: + - pos: -37.5,-29.5 + parent: 2 + type: Transform + - uid: 6545 + components: + - pos: -37.5,-30.5 + parent: 2 + type: Transform + - uid: 6546 + components: + - pos: -36.5,-30.5 + parent: 2 + type: Transform + - uid: 6547 + components: + - pos: -35.5,-30.5 + parent: 2 + type: Transform + - uid: 6548 + components: + - pos: -34.5,-30.5 + parent: 2 + type: Transform + - uid: 6549 + components: + - pos: -33.5,-30.5 + parent: 2 + type: Transform + - uid: 6550 + components: + - pos: -32.5,-30.5 + parent: 2 + type: Transform + - uid: 6551 + components: + - pos: -31.5,-30.5 + parent: 2 + type: Transform + - uid: 6552 + components: + - pos: -30.5,-30.5 + parent: 2 + type: Transform + - uid: 6553 + components: + - pos: -29.5,-30.5 + parent: 2 + type: Transform + - uid: 6554 + components: + - pos: -28.5,-30.5 + parent: 2 + type: Transform + - uid: 6555 + components: + - pos: -28.5,-29.5 + parent: 2 + type: Transform + - uid: 6582 + components: + - pos: -16.5,-29.5 + parent: 2 + type: Transform + - uid: 6583 + components: + - pos: -16.5,-28.5 + parent: 2 + type: Transform + - uid: 6584 + components: + - pos: -16.5,-27.5 + parent: 2 + type: Transform + - uid: 6585 + components: + - pos: -16.5,-26.5 + parent: 2 + type: Transform + - uid: 6586 + components: + - pos: -16.5,-25.5 + parent: 2 + type: Transform + - uid: 6587 + components: + - pos: -16.5,-24.5 + parent: 2 + type: Transform + - uid: 6588 + components: + - pos: -16.5,-23.5 + parent: 2 + type: Transform + - uid: 6589 + components: + - pos: -16.5,-22.5 + parent: 2 + type: Transform + - uid: 6590 + components: + - pos: -16.5,-21.5 + parent: 2 + type: Transform + - uid: 6591 + components: + - pos: -16.5,-20.5 + parent: 2 + type: Transform + - uid: 6592 + components: + - pos: -18.5,-30.5 + parent: 2 + type: Transform + - uid: 6593 + components: + - pos: -19.5,-30.5 + parent: 2 + type: Transform + - uid: 6594 + components: + - pos: -20.5,-30.5 + parent: 2 + type: Transform + - uid: 6595 + components: + - pos: -21.5,-30.5 + parent: 2 + type: Transform + - uid: 6596 + components: + - pos: -22.5,-30.5 + parent: 2 + type: Transform + - uid: 6597 + components: + - pos: -23.5,-30.5 + parent: 2 + type: Transform + - uid: 6598 + components: + - pos: -24.5,-30.5 + parent: 2 + type: Transform + - uid: 6599 + components: + - pos: -25.5,-30.5 + parent: 2 + type: Transform + - uid: 6600 + components: + - pos: -25.5,-29.5 + parent: 2 + type: Transform + - uid: 6601 + components: + - pos: -20.5,-29.5 + parent: 2 + type: Transform + - uid: 6602 + components: + - pos: -20.5,-28.5 + parent: 2 + type: Transform + - uid: 6603 + components: + - pos: -20.5,-27.5 + parent: 2 + type: Transform + - uid: 6604 + components: + - pos: -19.5,-27.5 + parent: 2 + type: Transform + - uid: 6605 + components: + - pos: -19.5,-26.5 + parent: 2 + type: Transform + - uid: 6606 + components: + - pos: -18.5,-26.5 + parent: 2 + type: Transform + - uid: 6607 + components: + - pos: -17.5,-26.5 + parent: 2 + type: Transform + - uid: 6608 + components: + - pos: 32.5,2.5 + parent: 2 + type: Transform + - uid: 6609 + components: + - pos: 33.5,2.5 + parent: 2 + type: Transform + - uid: 6610 + components: + - pos: 34.5,2.5 + parent: 2 + type: Transform + - uid: 6611 + components: + - pos: 34.5,1.5 + parent: 2 + type: Transform + - uid: 6612 + components: + - pos: 34.5,0.5 + parent: 2 + type: Transform + - uid: 6613 + components: + - pos: 35.5,0.5 + parent: 2 + type: Transform + - uid: 6614 + components: + - pos: 36.5,0.5 + parent: 2 + type: Transform + - uid: 6615 + components: + - pos: 37.5,0.5 + parent: 2 + type: Transform + - uid: 6616 + components: + - pos: 38.5,0.5 + parent: 2 + type: Transform + - uid: 6617 + components: + - pos: 39.5,0.5 + parent: 2 + type: Transform + - uid: 6618 + components: + - pos: 39.5,1.5 + parent: 2 + type: Transform + - uid: 6619 + components: + - pos: 33.5,0.5 + parent: 2 + type: Transform + - uid: 6620 + components: + - pos: 32.5,0.5 + parent: 2 + type: Transform + - uid: 6621 + components: + - pos: 31.5,0.5 + parent: 2 + type: Transform + - uid: 6622 + components: + - pos: 30.5,0.5 + parent: 2 + type: Transform + - uid: 6623 + components: + - pos: 29.5,0.5 + parent: 2 + type: Transform + - uid: 6624 + components: + - pos: 29.5,-0.5 + parent: 2 + type: Transform + - uid: 6625 + components: + - pos: 29.5,-1.5 + parent: 2 + type: Transform + - uid: 6626 + components: + - pos: 29.5,1.5 + parent: 2 + type: Transform + - uid: 6627 + components: + - pos: 34.5,-0.5 + parent: 2 + type: Transform + - uid: 6628 + components: + - pos: 34.5,-1.5 + parent: 2 + type: Transform + - uid: 6629 + components: + - pos: 34.5,-2.5 + parent: 2 + type: Transform + - uid: 6630 + components: + - pos: 34.5,-3.5 + parent: 2 + type: Transform + - uid: 6631 + components: + - pos: 34.5,-4.5 + parent: 2 + type: Transform + - uid: 6632 + components: + - pos: 34.5,-5.5 + parent: 2 + type: Transform + - uid: 6633 + components: + - pos: 33.5,-5.5 + parent: 2 + type: Transform + - uid: 6634 + components: + - pos: 32.5,-5.5 + parent: 2 + type: Transform + - uid: 6635 + components: + - pos: 31.5,-5.5 + parent: 2 + type: Transform + - uid: 6636 + components: + - pos: 31.5,-5.5 + parent: 2 + type: Transform + - uid: 6637 + components: + - pos: 30.5,-5.5 + parent: 2 + type: Transform + - uid: 6638 + components: + - pos: 29.5,-5.5 + parent: 2 + type: Transform + - uid: 6639 + components: + - pos: 35.5,-5.5 + parent: 2 + type: Transform + - uid: 6640 + components: + - pos: 35.5,-2.5 + parent: 2 + type: Transform + - uid: 6641 + components: + - pos: 36.5,-2.5 + parent: 2 + type: Transform + - uid: 6642 + components: + - pos: 37.5,5.5 + parent: 2 + type: Transform + - uid: 6643 + components: + - pos: 36.5,5.5 + parent: 2 + type: Transform + - uid: 6644 + components: + - pos: 35.5,5.5 + parent: 2 + type: Transform + - uid: 6645 + components: + - pos: 34.5,5.5 + parent: 2 + type: Transform + - uid: 6646 + components: + - pos: 33.5,5.5 + parent: 2 + type: Transform + - uid: 6647 + components: + - pos: 32.5,5.5 + parent: 2 + type: Transform + - uid: 6648 + components: + - pos: 31.5,5.5 + parent: 2 + type: Transform + - uid: 6649 + components: + - pos: 30.5,5.5 + parent: 2 + type: Transform + - uid: 6650 + components: + - pos: 29.5,5.5 + parent: 2 + type: Transform + - uid: 6651 + components: + - pos: 29.5,6.5 + parent: 2 + type: Transform + - uid: 6652 + components: + - pos: 29.5,7.5 + parent: 2 + type: Transform + - uid: 6653 + components: + - pos: 29.5,8.5 + parent: 2 + type: Transform + - uid: 6654 + components: + - pos: 30.5,8.5 + parent: 2 + type: Transform + - uid: 6655 + components: + - pos: 31.5,8.5 + parent: 2 + type: Transform + - uid: 6656 + components: + - pos: 32.5,8.5 + parent: 2 + type: Transform + - uid: 6657 + components: + - pos: 33.5,8.5 + parent: 2 + type: Transform + - uid: 6658 + components: + - pos: 34.5,8.5 + parent: 2 + type: Transform + - uid: 6659 + components: + - pos: 35.5,8.5 + parent: 2 + type: Transform + - uid: 6660 + components: + - pos: 36.5,8.5 + parent: 2 + type: Transform + - uid: 6661 + components: + - pos: 39.5,5.5 + parent: 2 + type: Transform + - uid: 6662 + components: + - pos: 40.5,5.5 + parent: 2 + type: Transform + - uid: 6663 + components: + - pos: 41.5,5.5 + parent: 2 + type: Transform + - uid: 6665 + components: + - pos: 28.5,-19.5 + parent: 2 + type: Transform + - uid: 6666 + components: + - pos: 30.5,-19.5 + parent: 2 + type: Transform + - uid: 6667 + components: + - pos: -53.5,-13.5 + parent: 2 + type: Transform + - uid: 6668 + components: + - pos: -52.5,-13.5 + parent: 2 + type: Transform + - uid: 6669 + components: + - pos: -52.5,-14.5 + parent: 2 + type: Transform + - uid: 6670 + components: + - pos: -52.5,-15.5 + parent: 2 + type: Transform + - uid: 6671 + components: + - pos: -52.5,-16.5 + parent: 2 + type: Transform + - uid: 6672 + components: + - pos: -53.5,-16.5 + parent: 2 + type: Transform + - uid: 6673 + components: + - pos: -54.5,-16.5 + parent: 2 + type: Transform + - uid: 6674 + components: + - pos: -55.5,-16.5 + parent: 2 + type: Transform + - uid: 6676 + components: + - pos: -55.5,-14.5 + parent: 2 + type: Transform + - uid: 6677 + components: + - pos: -51.5,-13.5 + parent: 2 + type: Transform + - uid: 6678 + components: + - pos: -50.5,-13.5 + parent: 2 + type: Transform + - uid: 6679 + components: + - pos: -49.5,-13.5 + parent: 2 + type: Transform + - uid: 6680 + components: + - pos: -48.5,-13.5 + parent: 2 + type: Transform + - uid: 6681 + components: + - pos: -47.5,-13.5 + parent: 2 + type: Transform + - uid: 6682 + components: + - pos: -47.5,-12.5 + parent: 2 + type: Transform + - uid: 6683 + components: + - pos: -47.5,-11.5 + parent: 2 + type: Transform + - uid: 6684 + components: + - pos: -46.5,-11.5 + parent: 2 + type: Transform + - uid: 6685 + components: + - pos: -46.5,-10.5 + parent: 2 + type: Transform + - uid: 6686 + components: + - pos: -46.5,-9.5 + parent: 2 + type: Transform + - uid: 6687 + components: + - pos: -46.5,-8.5 + parent: 2 + type: Transform + - uid: 6688 + components: + - pos: -46.5,-7.5 + parent: 2 + type: Transform + - uid: 6689 + components: + - pos: -46.5,-6.5 + parent: 2 + type: Transform + - uid: 6690 + components: + - pos: -46.5,-5.5 + parent: 2 + type: Transform + - uid: 6691 + components: + - pos: -47.5,-5.5 + parent: 2 + type: Transform + - uid: 6692 + components: + - pos: -48.5,-5.5 + parent: 2 + type: Transform + - uid: 6693 + components: + - pos: -49.5,-5.5 + parent: 2 + type: Transform + - uid: 6694 + components: + - pos: -50.5,-5.5 + parent: 2 + type: Transform + - uid: 6695 + components: + - pos: -51.5,-5.5 + parent: 2 + type: Transform + - uid: 6696 + components: + - pos: -52.5,-5.5 + parent: 2 + type: Transform + - uid: 6697 + components: + - pos: -52.5,-6.5 + parent: 2 + type: Transform + - uid: 6698 + components: + - pos: -52.5,-7.5 + parent: 2 + type: Transform + - uid: 6699 + components: + - pos: -52.5,-8.5 + parent: 2 + type: Transform + - uid: 6700 + components: + - pos: -52.5,-9.5 + parent: 2 + type: Transform + - uid: 6701 + components: + - pos: -52.5,-10.5 + parent: 2 + type: Transform + - uid: 6702 + components: + - pos: -52.5,-11.5 + parent: 2 + type: Transform + - uid: 6703 + components: + - pos: -52.5,-12.5 + parent: 2 + type: Transform + - uid: 6704 + components: + - pos: -53.5,-6.5 + parent: 2 + type: Transform + - uid: 6705 + components: + - pos: -54.5,-6.5 + parent: 2 + type: Transform + - uid: 6706 + components: + - pos: -55.5,-6.5 + parent: 2 + type: Transform + - uid: 6708 + components: + - pos: -55.5,-8.5 + parent: 2 + type: Transform + - uid: 6709 + components: + - pos: -7.5,-17.5 + parent: 2 + type: Transform + - uid: 6710 + components: + - pos: 17.5,-27.5 + parent: 2 + type: Transform + - uid: 6711 + components: + - pos: 18.5,-27.5 + parent: 2 + type: Transform + - uid: 6712 + components: + - pos: 19.5,-27.5 + parent: 2 + type: Transform + - uid: 7934 + components: + - pos: -47.5,0.5 + parent: 2 + type: Transform + - uid: 7935 + components: + - pos: -47.5,-0.5 + parent: 2 + type: Transform + - uid: 7936 + components: + - pos: -47.5,-1.5 + parent: 2 + type: Transform + - uid: 7937 + components: + - pos: -46.5,-1.5 + parent: 2 + type: Transform + - uid: 7938 + components: + - pos: -42.5,-3.5 + parent: 2 + type: Transform + - uid: 7939 + components: + - pos: -42.5,-4.5 + parent: 2 + type: Transform + - uid: 7940 + components: + - pos: -42.5,-5.5 + parent: 2 + type: Transform + - uid: 7941 + components: + - pos: -41.5,-5.5 + parent: 2 + type: Transform + - uid: 7942 + components: + - pos: -40.5,-5.5 + parent: 2 + type: Transform + - uid: 7943 + components: + - pos: -39.5,-5.5 + parent: 2 + type: Transform + - uid: 7944 + components: + - pos: -43.5,-5.5 + parent: 2 + type: Transform + - uid: 7945 + components: + - pos: -38.5,-5.5 + parent: 2 + type: Transform + - uid: 7946 + components: + - pos: -37.5,-5.5 + parent: 2 + type: Transform + - uid: 8739 + components: + - pos: 13.5,6.5 + parent: 2 + type: Transform + - uid: 8740 + components: + - pos: 12.5,6.5 + parent: 2 + type: Transform + - uid: 8741 + components: + - pos: 11.5,6.5 + parent: 2 + type: Transform + - uid: 8742 + components: + - pos: 11.5,7.5 + parent: 2 + type: Transform + - uid: 8903 + components: + - pos: -52.5,-17.5 + parent: 2 + type: Transform + - uid: 8904 + components: + - pos: -51.5,-17.5 + parent: 2 + type: Transform + - uid: 8905 + components: + - pos: -51.5,-18.5 + parent: 2 + type: Transform + - uid: 8906 + components: + - pos: -51.5,-19.5 + parent: 2 + type: Transform + - uid: 8907 + components: + - pos: -51.5,-20.5 + parent: 2 + type: Transform + - uid: 8908 + components: + - pos: -50.5,-20.5 + parent: 2 + type: Transform + - uid: 8909 + components: + - pos: -49.5,-20.5 + parent: 2 + type: Transform + - uid: 8910 + components: + - pos: -48.5,-20.5 + parent: 2 + type: Transform + - uid: 8911 + components: + - pos: -48.5,-21.5 + parent: 2 + type: Transform + - uid: 8912 + components: + - pos: -51.5,-21.5 + parent: 2 + type: Transform + - uid: 8913 + components: + - pos: -50.5,-17.5 + parent: 2 + type: Transform + - uid: 8914 + components: + - pos: -50.5,-16.5 + parent: 2 + type: Transform + - uid: 8988 + components: + - pos: 10.5,6.5 + parent: 2 + type: Transform + - uid: 9182 + components: + - pos: 48.5,6.5 + parent: 2 + type: Transform + - uid: 9183 + components: + - pos: 49.5,6.5 + parent: 2 + type: Transform + - uid: 9184 + components: + - pos: -25.5,4.5 + parent: 2 + type: Transform + - uid: 9339 + components: + - pos: 17.5,-31.5 + parent: 2 + type: Transform + - uid: 9340 + components: + - pos: 17.5,-32.5 + parent: 2 + type: Transform + - uid: 9341 + components: + - pos: 24.5,-31.5 + parent: 2 + type: Transform + - uid: 9342 + components: + - pos: 24.5,-32.5 + parent: 2 + type: Transform + - uid: 9343 + components: + - pos: 24.5,-33.5 + parent: 2 + type: Transform + - uid: 9344 + components: + - pos: 23.5,-33.5 + parent: 2 + type: Transform + - uid: 9345 + components: + - pos: 22.5,-33.5 + parent: 2 + type: Transform + - uid: 9348 + components: + - pos: 38.5,-16.5 + parent: 2 + type: Transform + - uid: 9349 + components: + - pos: 39.5,-16.5 + parent: 2 + type: Transform + - uid: 9350 + components: + - pos: 40.5,-16.5 + parent: 2 + type: Transform + - uid: 9351 + components: + - pos: 40.5,-15.5 + parent: 2 + type: Transform + - uid: 9352 + components: + - pos: 40.5,-14.5 + parent: 2 + type: Transform + - uid: 9353 + components: + - pos: 40.5,-13.5 + parent: 2 + type: Transform + - uid: 9354 + components: + - pos: 40.5,-12.5 + parent: 2 + type: Transform + - uid: 9355 + components: + - pos: 40.5,-11.5 + parent: 2 + type: Transform + - uid: 9356 + components: + - pos: 40.5,-10.5 + parent: 2 + type: Transform + - uid: 9357 + components: + - pos: 40.5,-9.5 + parent: 2 + type: Transform + - uid: 9358 + components: + - pos: 40.5,-8.5 + parent: 2 + type: Transform + - uid: 9359 + components: + - pos: 40.5,-17.5 + parent: 2 + type: Transform + - uid: 9360 + components: + - pos: 40.5,-18.5 + parent: 2 + type: Transform + - uid: 9361 + components: + - pos: 41.5,-18.5 + parent: 2 + type: Transform + - uid: 9362 + components: + - pos: 41.5,-19.5 + parent: 2 + type: Transform + - uid: 9363 + components: + - pos: 41.5,-20.5 + parent: 2 + type: Transform + - uid: 9364 + components: + - pos: 41.5,-21.5 + parent: 2 + type: Transform + - uid: 9365 + components: + - pos: 41.5,-22.5 + parent: 2 + type: Transform + - uid: 9366 + components: + - pos: 41.5,-23.5 + parent: 2 + type: Transform + - uid: 9367 + components: + - pos: 41.5,-24.5 + parent: 2 + type: Transform + - uid: 9368 + components: + - pos: 41.5,-25.5 + parent: 2 + type: Transform + - uid: 9369 + components: + - pos: 41.5,-26.5 + parent: 2 + type: Transform + - uid: 9370 + components: + - pos: 41.5,-27.5 + parent: 2 + type: Transform + - uid: 9371 + components: + - pos: 41.5,-28.5 + parent: 2 + type: Transform + - uid: 9372 + components: + - pos: 41.5,-29.5 + parent: 2 + type: Transform + - uid: 9373 + components: + - pos: 40.5,-29.5 + parent: 2 + type: Transform + - uid: 9374 + components: + - pos: 40.5,-30.5 + parent: 2 + type: Transform + - uid: 9375 + components: + - pos: 40.5,-31.5 + parent: 2 + type: Transform + - uid: 9376 + components: + - pos: 40.5,-32.5 + parent: 2 + type: Transform + - uid: 9377 + components: + - pos: 40.5,-33.5 + parent: 2 + type: Transform + - uid: 9378 + components: + - pos: 39.5,-33.5 + parent: 2 + type: Transform + - uid: 9379 + components: + - pos: 38.5,-33.5 + parent: 2 + type: Transform + - uid: 9380 + components: + - pos: 37.5,-33.5 + parent: 2 + type: Transform + - uid: 9381 + components: + - pos: 36.5,-33.5 + parent: 2 + type: Transform + - uid: 9382 + components: + - pos: 35.5,-33.5 + parent: 2 + type: Transform + - uid: 9427 + components: + - pos: 46.5,-13.5 + parent: 2 + type: Transform + - uid: 9428 + components: + - pos: 46.5,-14.5 + parent: 2 + type: Transform + - uid: 9429 + components: + - pos: 46.5,-15.5 + parent: 2 + type: Transform + - uid: 9430 + components: + - pos: 45.5,-15.5 + parent: 2 + type: Transform + - uid: 9431 + components: + - pos: 44.5,-15.5 + parent: 2 + type: Transform + - uid: 9432 + components: + - pos: 52.5,-6.5 + parent: 2 + type: Transform + - uid: 9435 + components: + - pos: 52.5,-7.5 + parent: 2 + type: Transform + - uid: 9436 + components: + - pos: 52.5,-4.5 + parent: 2 + type: Transform + - uid: 9437 + components: + - pos: 52.5,-3.5 + parent: 2 + type: Transform + - uid: 9452 + components: + - pos: 6.5,-0.5 + parent: 2 + type: Transform + - uid: 9453 + components: + - pos: -6.5,-0.5 + parent: 2 + type: Transform + - uid: 9487 + components: + - pos: -53.5,-14.5 + parent: 2 + type: Transform + - uid: 9488 + components: + - pos: -53.5,-8.5 + parent: 2 + type: Transform + - uid: 9571 + components: + - pos: 42.5,5.5 + parent: 2 + type: Transform + - uid: 9599 + components: + - pos: -51.5,-4.5 + parent: 2 + type: Transform + - uid: 10135 + components: + - pos: -7.5,-16.5 + parent: 2 + type: Transform + - uid: 10195 + components: + - pos: 41.5,-12.5 + parent: 2 + type: Transform + - uid: 10196 + components: + - pos: 42.5,-12.5 + parent: 2 + type: Transform + - uid: 10197 + components: + - pos: 43.5,-12.5 + parent: 2 + type: Transform + - uid: 10198 + components: + - pos: 43.5,-13.5 + parent: 2 + type: Transform + - uid: 10788 + components: + - pos: 24.5,-34.5 + parent: 2 + type: Transform + - uid: 10789 + components: + - pos: 25.5,-34.5 + parent: 2 + type: Transform + - uid: 10790 + components: + - pos: 26.5,-34.5 + parent: 2 + type: Transform + - uid: 10791 + components: + - pos: 27.5,-34.5 + parent: 2 + type: Transform + - uid: 10792 + components: + - pos: 28.5,-34.5 + parent: 2 + type: Transform + - uid: 10793 + components: + - pos: 35.5,-34.5 + parent: 2 + type: Transform + - uid: 10794 + components: + - pos: 34.5,-34.5 + parent: 2 + type: Transform + - uid: 10795 + components: + - pos: 29.5,-34.5 + parent: 2 + type: Transform + - uid: 10854 + components: + - pos: 37.5,18.5 + parent: 2 + type: Transform + - uid: 10855 + components: + - pos: 37.5,19.5 + parent: 2 + type: Transform + - uid: 10916 + components: + - pos: -33.5,-31.5 + parent: 2 + type: Transform + - uid: 10917 + components: + - pos: -33.5,-32.5 + parent: 2 + type: Transform + - uid: 10918 + components: + - pos: -33.5,-33.5 + parent: 2 + type: Transform + - uid: 10919 + components: + - pos: -34.5,-33.5 + parent: 2 + type: Transform + - uid: 10920 + components: + - pos: -35.5,-33.5 + parent: 2 + type: Transform + - uid: 10921 + components: + - pos: -37.5,-28.5 + parent: 2 + type: Transform + - uid: 10935 + components: + - pos: -31.5,-33.5 + parent: 2 + type: Transform + - uid: 10936 + components: + - pos: -30.5,-33.5 + parent: 2 + type: Transform + - uid: 11011 + components: + - pos: -7.5,-33.5 + parent: 2 + type: Transform + - uid: 11012 + components: + - pos: -7.5,-34.5 + parent: 2 + type: Transform + - uid: 11013 + components: + - pos: -7.5,-35.5 + parent: 2 + type: Transform + - uid: 11014 + components: + - pos: -7.5,-36.5 + parent: 2 + type: Transform + - uid: 11015 + components: + - pos: -9.5,-33.5 + parent: 2 + type: Transform + - uid: 11016 + components: + - pos: -9.5,-34.5 + parent: 2 + type: Transform + - uid: 11017 + components: + - pos: -9.5,-35.5 + parent: 2 + type: Transform + - uid: 11018 + components: + - pos: -9.5,-36.5 + parent: 2 + type: Transform +- proto: CableApcStack + entities: + - uid: 2955 + components: + - pos: 34.354755,18.5525 + parent: 2 + type: Transform +- proto: CableHV + entities: + - uid: 404 + components: + - pos: 15.5,5.5 + parent: 2 + type: Transform + - uid: 502 + components: + - pos: 59.5,15.5 + parent: 2 + type: Transform + - uid: 781 + components: + - pos: 30.5,4.5 + parent: 2 + type: Transform + - uid: 784 + components: + - pos: 31.5,4.5 + parent: 2 + type: Transform + - uid: 789 + components: + - pos: 59.5,19.5 + parent: 2 + type: Transform + - uid: 880 + components: + - pos: 28.5,8.5 + parent: 2 + type: Transform + - uid: 899 + components: + - pos: 24.5,13.5 + parent: 2 + type: Transform + - uid: 918 + components: + - pos: 26.5,11.5 + parent: 2 + type: Transform + - uid: 921 + components: + - pos: 28.5,9.5 + parent: 2 + type: Transform + - uid: 922 + components: + - pos: 28.5,11.5 + parent: 2 + type: Transform + - uid: 923 + components: + - pos: 28.5,10.5 + parent: 2 + type: Transform + - uid: 1164 + components: + - pos: 59.5,21.5 + parent: 2 + type: Transform + - uid: 1362 + components: + - pos: 59.5,25.5 + parent: 2 + type: Transform + - uid: 1415 + components: + - pos: 11.5,7.5 + parent: 2 + type: Transform + - uid: 1825 + components: + - pos: 59.5,23.5 + parent: 2 + type: Transform + - uid: 1827 + components: + - pos: 59.5,17.5 + parent: 2 + type: Transform + - uid: 1922 + components: + - pos: 27.5,11.5 + parent: 2 + type: Transform + - uid: 1923 + components: + - pos: 25.5,11.5 + parent: 2 + type: Transform + - uid: 1926 + components: + - pos: 24.5,11.5 + parent: 2 + type: Transform + - uid: 1927 + components: + - pos: 24.5,12.5 + parent: 2 + type: Transform + - uid: 1945 + components: + - pos: 28.5,7.5 + parent: 2 + type: Transform + - uid: 2109 + components: + - pos: 29.5,4.5 + parent: 2 + type: Transform + - uid: 2139 + components: + - pos: 42.5,4.5 + parent: 2 + type: Transform + - uid: 2141 + components: + - pos: 41.5,5.5 + parent: 2 + type: Transform + - uid: 2145 + components: + - pos: 35.5,6.5 + parent: 2 + type: Transform + - uid: 2160 + components: + - pos: 35.5,7.5 + parent: 2 + type: Transform + - uid: 2161 + components: + - pos: 34.5,7.5 + parent: 2 + type: Transform + - uid: 2162 + components: + - pos: 33.5,7.5 + parent: 2 + type: Transform + - uid: 2163 + components: + - pos: 32.5,7.5 + parent: 2 + type: Transform + - uid: 2164 + components: + - pos: 32.5,6.5 + parent: 2 + type: Transform + - uid: 2165 + components: + - pos: 32.5,5.5 + parent: 2 + type: Transform + - uid: 2167 + components: + - pos: 30.5,5.5 + parent: 2 + type: Transform + - uid: 2169 + components: + - pos: 28.5,5.5 + parent: 2 + type: Transform + - uid: 2170 + components: + - pos: 28.5,6.5 + parent: 2 + type: Transform + - uid: 2171 + components: + - pos: 30.5,6.5 + parent: 2 + type: Transform + - uid: 2233 + components: + - pos: 32.5,4.5 + parent: 2 + type: Transform + - uid: 2267 + components: + - pos: 33.5,4.5 + parent: 2 + type: Transform + - uid: 2283 + components: + - pos: 34.5,4.5 + parent: 2 + type: Transform + - uid: 2284 + components: + - pos: 35.5,4.5 + parent: 2 + type: Transform + - uid: 2285 + components: + - pos: 36.5,4.5 + parent: 2 + type: Transform + - uid: 2286 + components: + - pos: 37.5,4.5 + parent: 2 + type: Transform + - uid: 2287 + components: + - pos: 38.5,4.5 + parent: 2 + type: Transform + - uid: 2288 + components: + - pos: 39.5,4.5 + parent: 2 + type: Transform + - uid: 2555 + components: + - pos: 43.5,4.5 + parent: 2 + type: Transform + - uid: 2716 + components: + - pos: 40.5,4.5 + parent: 2 + type: Transform + - uid: 2723 + components: + - pos: 43.5,5.5 + parent: 2 + type: Transform + - uid: 2728 + components: + - pos: 41.5,4.5 + parent: 2 + type: Transform + - uid: 2838 + components: + - pos: 57.5,14.5 + parent: 2 + type: Transform + - uid: 2967 + components: + - pos: 28.5,4.5 + parent: 2 + type: Transform + - uid: 2974 + components: + - pos: 57.5,13.5 + parent: 2 + type: Transform + - uid: 2977 + components: + - pos: 44.5,6.5 + parent: 2 + type: Transform + - uid: 2978 + components: + - pos: 43.5,6.5 + parent: 2 + type: Transform + - uid: 2980 + components: + - pos: 41.5,6.5 + parent: 2 + type: Transform + - uid: 2981 + components: + - pos: 41.5,7.5 + parent: 2 + type: Transform + - uid: 2982 + components: + - pos: 41.5,8.5 + parent: 2 + type: Transform + - uid: 2983 + components: + - pos: 41.5,9.5 + parent: 2 + type: Transform + - uid: 2984 + components: + - pos: 40.5,9.5 + parent: 2 + type: Transform + - uid: 2985 + components: + - pos: 39.5,9.5 + parent: 2 + type: Transform + - uid: 2986 + components: + - pos: 39.5,10.5 + parent: 2 + type: Transform + - uid: 2987 + components: + - pos: 42.5,3.5 + parent: 2 + type: Transform + - uid: 2988 + components: + - pos: 42.5,1.5 + parent: 2 + type: Transform + - uid: 2989 + components: + - pos: 42.5,2.5 + parent: 2 + type: Transform + - uid: 2992 + components: + - pos: 57.5,12.5 + parent: 2 + type: Transform + - uid: 2993 + components: + - pos: 57.5,11.5 + parent: 2 + type: Transform + - uid: 2994 + components: + - pos: 57.5,10.5 + parent: 2 + type: Transform + - uid: 2995 + components: + - pos: 57.5,9.5 + parent: 2 + type: Transform + - uid: 2996 + components: + - pos: 57.5,8.5 + parent: 2 + type: Transform + - uid: 2997 + components: + - pos: 57.5,7.5 + parent: 2 + type: Transform + - uid: 2999 + components: + - pos: 57.5,6.5 + parent: 2 + type: Transform + - uid: 3000 + components: + - pos: 56.5,6.5 + parent: 2 + type: Transform + - uid: 3001 + components: + - pos: 55.5,6.5 + parent: 2 + type: Transform + - uid: 3002 + components: + - pos: 54.5,6.5 + parent: 2 + type: Transform + - uid: 3003 + components: + - pos: 53.5,6.5 + parent: 2 + type: Transform + - uid: 3004 + components: + - pos: 52.5,6.5 + parent: 2 + type: Transform + - uid: 3005 + components: + - pos: 51.5,6.5 + parent: 2 + type: Transform + - uid: 3006 + components: + - pos: 50.5,6.5 + parent: 2 + type: Transform + - uid: 3007 + components: + - pos: 49.5,6.5 + parent: 2 + type: Transform + - uid: 3008 + components: + - pos: 48.5,6.5 + parent: 2 + type: Transform + - uid: 3009 + components: + - pos: 47.5,6.5 + parent: 2 + type: Transform + - uid: 3010 + components: + - pos: 57.5,16.5 + parent: 2 + type: Transform + - uid: 3014 + components: + - pos: 57.5,17.5 + parent: 2 + type: Transform + - uid: 3015 + components: + - pos: 57.5,18.5 + parent: 2 + type: Transform + - uid: 3016 + components: + - pos: 57.5,21.5 + parent: 2 + type: Transform + - uid: 3017 + components: + - pos: 57.5,22.5 + parent: 2 + type: Transform + - uid: 3027 + components: + - pos: 17.5,5.5 + parent: 2 + type: Transform + - uid: 3028 + components: + - pos: 57.5,15.5 + parent: 2 + type: Transform + - uid: 3030 + components: + - pos: 23.5,11.5 + parent: 2 + type: Transform + - uid: 3031 + components: + - pos: 22.5,11.5 + parent: 2 + type: Transform + - uid: 3032 + components: + - pos: 57.5,19.5 + parent: 2 + type: Transform + - uid: 3033 + components: + - pos: 57.5,20.5 + parent: 2 + type: Transform + - uid: 3034 + components: + - pos: 57.5,23.5 + parent: 2 + type: Transform + - uid: 3035 + components: + - pos: 57.5,24.5 + parent: 2 + type: Transform + - uid: 3046 + components: + - pos: 45.5,6.5 + parent: 2 + type: Transform + - uid: 3047 + components: + - pos: 46.5,6.5 + parent: 2 + type: Transform + - uid: 3048 + components: + - pos: 18.5,7.5 + parent: 2 + type: Transform + - uid: 3049 + components: + - pos: 18.5,8.5 + parent: 2 + type: Transform + - uid: 3050 + components: + - pos: 18.5,9.5 + parent: 2 + type: Transform + - uid: 3051 + components: + - pos: 18.5,6.5 + parent: 2 + type: Transform + - uid: 3052 + components: + - pos: 18.5,10.5 + parent: 2 + type: Transform + - uid: 3053 + components: + - pos: 18.5,5.5 + parent: 2 + type: Transform + - uid: 3054 + components: + - pos: 22.5,0.5 + parent: 2 + type: Transform + - uid: 3056 + components: + - pos: 21.5,0.5 + parent: 2 + type: Transform + - uid: 3057 + components: + - pos: 23.5,0.5 + parent: 2 + type: Transform + - uid: 3058 + components: + - pos: 20.5,0.5 + parent: 2 + type: Transform + - uid: 3059 + components: + - pos: 24.5,0.5 + parent: 2 + type: Transform + - uid: 3060 + components: + - pos: 19.5,0.5 + parent: 2 + type: Transform + - uid: 3061 + components: + - pos: 25.5,0.5 + parent: 2 + type: Transform + - uid: 3062 + components: + - pos: 18.5,0.5 + parent: 2 + type: Transform + - uid: 3063 + components: + - pos: 25.5,1.5 + parent: 2 + type: Transform + - uid: 3064 + components: + - pos: 17.5,0.5 + parent: 2 + type: Transform + - uid: 3065 + components: + - pos: 27.5,4.5 + parent: 2 + type: Transform + - uid: 3066 + components: + - pos: 16.5,0.5 + parent: 2 + type: Transform + - uid: 3067 + components: + - pos: 26.5,4.5 + parent: 2 + type: Transform + - uid: 3068 + components: + - pos: 15.5,0.5 + parent: 2 + type: Transform + - uid: 3069 + components: + - pos: 25.5,2.5 + parent: 2 + type: Transform + - uid: 3070 + components: + - pos: 14.5,3.5 + parent: 2 + type: Transform + - uid: 3071 + components: + - pos: 25.5,4.5 + parent: 2 + type: Transform + - uid: 3072 + components: + - pos: 14.5,2.5 + parent: 2 + type: Transform + - uid: 3073 + components: + - pos: 25.5,3.5 + parent: 2 + type: Transform + - uid: 3074 + components: + - pos: 14.5,1.5 + parent: 2 + type: Transform + - uid: 3075 + components: + - pos: 18.5,11.5 + parent: 2 + type: Transform + - uid: 3076 + components: + - pos: 14.5,0.5 + parent: 2 + type: Transform + - uid: 3077 + components: + - pos: 19.5,11.5 + parent: 2 + type: Transform + - uid: 3079 + components: + - pos: 20.5,11.5 + parent: 2 + type: Transform + - uid: 3080 + components: + - pos: 16.5,5.5 + parent: 2 + type: Transform + - uid: 3081 + components: + - pos: 21.5,11.5 + parent: 2 + type: Transform + - uid: 3087 + components: + - pos: 32.5,8.5 + parent: 2 + type: Transform + - uid: 3088 + components: + - pos: 32.5,9.5 + parent: 2 + type: Transform + - uid: 3089 + components: + - pos: 31.5,9.5 + parent: 2 + type: Transform + - uid: 3128 + components: + - pos: 56.5,24.5 + parent: 2 + type: Transform + - uid: 3129 + components: + - pos: 55.5,24.5 + parent: 2 + type: Transform + - uid: 3130 + components: + - pos: 55.5,23.5 + parent: 2 + type: Transform + - uid: 3131 + components: + - pos: 54.5,23.5 + parent: 2 + type: Transform + - uid: 3132 + components: + - pos: 53.5,23.5 + parent: 2 + type: Transform + - uid: 3133 + components: + - pos: 52.5,23.5 + parent: 2 + type: Transform + - uid: 3134 + components: + - pos: 55.5,25.5 + parent: 2 + type: Transform + - uid: 3135 + components: + - pos: 54.5,25.5 + parent: 2 + type: Transform + - uid: 3136 + components: + - pos: 53.5,25.5 + parent: 2 + type: Transform + - uid: 3137 + components: + - pos: 52.5,25.5 + parent: 2 + type: Transform + - uid: 3138 + components: + - pos: 60.5,25.5 + parent: 2 + type: Transform + - uid: 3139 + components: + - pos: 61.5,25.5 + parent: 2 + type: Transform + - uid: 3140 + components: + - pos: 62.5,25.5 + parent: 2 + type: Transform + - uid: 3143 + components: + - pos: 62.5,23.5 + parent: 2 + type: Transform + - uid: 3144 + components: + - pos: 61.5,23.5 + parent: 2 + type: Transform + - uid: 3145 + components: + - pos: 60.5,23.5 + parent: 2 + type: Transform + - uid: 3146 + components: + - pos: 58.5,24.5 + parent: 2 + type: Transform + - uid: 3147 + components: + - pos: 59.5,24.5 + parent: 2 + type: Transform + - uid: 3149 + components: + - pos: 60.5,21.5 + parent: 2 + type: Transform + - uid: 3150 + components: + - pos: 61.5,21.5 + parent: 2 + type: Transform + - uid: 3151 + components: + - pos: 62.5,21.5 + parent: 2 + type: Transform + - uid: 3153 + components: + - pos: 60.5,19.5 + parent: 2 + type: Transform + - uid: 3154 + components: + - pos: 61.5,19.5 + parent: 2 + type: Transform + - uid: 3155 + components: + - pos: 62.5,19.5 + parent: 2 + type: Transform + - uid: 3158 + components: + - pos: 59.5,20.5 + parent: 2 + type: Transform + - uid: 3159 + components: + - pos: 58.5,20.5 + parent: 2 + type: Transform + - uid: 3160 + components: + - pos: 55.5,21.5 + parent: 2 + type: Transform + - uid: 3161 + components: + - pos: 56.5,20.5 + parent: 2 + type: Transform + - uid: 3162 + components: + - pos: 55.5,20.5 + parent: 2 + type: Transform + - uid: 3163 + components: + - pos: 54.5,21.5 + parent: 2 + type: Transform + - uid: 3164 + components: + - pos: 53.5,21.5 + parent: 2 + type: Transform + - uid: 3165 + components: + - pos: 52.5,21.5 + parent: 2 + type: Transform + - uid: 3166 + components: + - pos: 55.5,19.5 + parent: 2 + type: Transform + - uid: 3167 + components: + - pos: 54.5,19.5 + parent: 2 + type: Transform + - uid: 3168 + components: + - pos: 53.5,19.5 + parent: 2 + type: Transform + - uid: 3169 + components: + - pos: 52.5,19.5 + parent: 2 + type: Transform + - uid: 3170 + components: + - pos: 55.5,17.5 + parent: 2 + type: Transform + - uid: 3171 + components: + - pos: 54.5,17.5 + parent: 2 + type: Transform + - uid: 3172 + components: + - pos: 53.5,17.5 + parent: 2 + type: Transform + - uid: 3173 + components: + - pos: 52.5,17.5 + parent: 2 + type: Transform + - uid: 3174 + components: + - pos: 55.5,15.5 + parent: 2 + type: Transform + - uid: 3175 + components: + - pos: 54.5,15.5 + parent: 2 + type: Transform + - uid: 3176 + components: + - pos: 53.5,15.5 + parent: 2 + type: Transform + - uid: 3177 + components: + - pos: 52.5,15.5 + parent: 2 + type: Transform + - uid: 3178 + components: + - pos: 55.5,16.5 + parent: 2 + type: Transform + - uid: 3179 + components: + - pos: 56.5,16.5 + parent: 2 + type: Transform + - uid: 3180 + components: + - pos: 58.5,16.5 + parent: 2 + type: Transform + - uid: 3181 + components: + - pos: 59.5,16.5 + parent: 2 + type: Transform + - uid: 3183 + components: + - pos: 60.5,17.5 + parent: 2 + type: Transform + - uid: 3184 + components: + - pos: 61.5,17.5 + parent: 2 + type: Transform + - uid: 3185 + components: + - pos: 62.5,17.5 + parent: 2 + type: Transform + - uid: 3187 + components: + - pos: 60.5,15.5 + parent: 2 + type: Transform + - uid: 3188 + components: + - pos: 61.5,15.5 + parent: 2 + type: Transform + - uid: 3189 + components: + - pos: 62.5,15.5 + parent: 2 + type: Transform + - uid: 3261 + components: + - pos: 14.5,4.5 + parent: 2 + type: Transform + - uid: 3262 + components: + - pos: 14.5,5.5 + parent: 2 + type: Transform + - uid: 3263 + components: + - pos: 14.5,6.5 + parent: 2 + type: Transform + - uid: 3975 + components: + - pos: 17.5,-32.5 + parent: 2 + type: Transform + - uid: 4037 + components: + - pos: 20.5,-33.5 + parent: 2 + type: Transform + - uid: 4239 + components: + - pos: 39.5,11.5 + parent: 2 + type: Transform + - uid: 4240 + components: + - pos: 39.5,12.5 + parent: 2 + type: Transform + - uid: 4241 + components: + - pos: 39.5,13.5 + parent: 2 + type: Transform + - uid: 4242 + components: + - pos: 39.5,14.5 + parent: 2 + type: Transform + - uid: 4243 + components: + - pos: 39.5,15.5 + parent: 2 + type: Transform + - uid: 4244 + components: + - pos: 39.5,16.5 + parent: 2 + type: Transform + - uid: 4245 + components: + - pos: 38.5,16.5 + parent: 2 + type: Transform + - uid: 4246 + components: + - pos: 37.5,16.5 + parent: 2 + type: Transform + - uid: 4247 + components: + - pos: 37.5,17.5 + parent: 2 + type: Transform + - uid: 4248 + components: + - pos: 37.5,18.5 + parent: 2 + type: Transform + - uid: 4249 + components: + - pos: 37.5,19.5 + parent: 2 + type: Transform + - uid: 4250 + components: + - pos: 36.5,19.5 + parent: 2 + type: Transform + - uid: 4251 + components: + - pos: 13.5,6.5 + parent: 2 + type: Transform + - uid: 4252 + components: + - pos: 12.5,6.5 + parent: 2 + type: Transform + - uid: 4253 + components: + - pos: 11.5,6.5 + parent: 2 + type: Transform + - uid: 4255 + components: + - pos: 42.5,0.5 + parent: 2 + type: Transform + - uid: 4256 + components: + - pos: 42.5,-0.5 + parent: 2 + type: Transform + - uid: 4257 + components: + - pos: 42.5,-1.5 + parent: 2 + type: Transform + - uid: 4258 + components: + - pos: 42.5,-2.5 + parent: 2 + type: Transform + - uid: 4259 + components: + - pos: 42.5,-3.5 + parent: 2 + type: Transform + - uid: 4260 + components: + - pos: 42.5,-4.5 + parent: 2 + type: Transform + - uid: 4261 + components: + - pos: 42.5,-5.5 + parent: 2 + type: Transform + - uid: 4262 + components: + - pos: 42.5,-6.5 + parent: 2 + type: Transform + - uid: 4263 + components: + - pos: 43.5,-6.5 + parent: 2 + type: Transform + - uid: 4264 + components: + - pos: 44.5,-6.5 + parent: 2 + type: Transform + - uid: 4265 + components: + - pos: 45.5,-6.5 + parent: 2 + type: Transform + - uid: 4266 + components: + - pos: 45.5,-7.5 + parent: 2 + type: Transform + - uid: 4267 + components: + - pos: 45.5,-8.5 + parent: 2 + type: Transform + - uid: 4268 + components: + - pos: 45.5,-9.5 + parent: 2 + type: Transform + - uid: 4269 + components: + - pos: 44.5,-9.5 + parent: 2 + type: Transform + - uid: 4270 + components: + - pos: 43.5,-9.5 + parent: 2 + type: Transform + - uid: 4271 + components: + - pos: 42.5,-9.5 + parent: 2 + type: Transform + - uid: 4272 + components: + - pos: 41.5,-9.5 + parent: 2 + type: Transform + - uid: 4273 + components: + - pos: 40.5,-9.5 + parent: 2 + type: Transform + - uid: 4274 + components: + - pos: 39.5,-9.5 + parent: 2 + type: Transform + - uid: 4275 + components: + - pos: 39.5,-10.5 + parent: 2 + type: Transform + - uid: 4276 + components: + - pos: 39.5,-11.5 + parent: 2 + type: Transform + - uid: 4277 + components: + - pos: 39.5,-12.5 + parent: 2 + type: Transform + - uid: 4278 + components: + - pos: 40.5,-12.5 + parent: 2 + type: Transform + - uid: 4279 + components: + - pos: 41.5,-12.5 + parent: 2 + type: Transform + - uid: 4280 + components: + - pos: 42.5,-12.5 + parent: 2 + type: Transform + - uid: 4281 + components: + - pos: 43.5,-12.5 + parent: 2 + type: Transform + - uid: 4282 + components: + - pos: 43.5,-11.5 + parent: 2 + type: Transform + - uid: 4283 + components: + - pos: 39.5,-13.5 + parent: 2 + type: Transform + - uid: 4284 + components: + - pos: 39.5,-14.5 + parent: 2 + type: Transform + - uid: 4285 + components: + - pos: 39.5,-15.5 + parent: 2 + type: Transform + - uid: 4286 + components: + - pos: 39.5,-16.5 + parent: 2 + type: Transform + - uid: 4287 + components: + - pos: 39.5,-17.5 + parent: 2 + type: Transform + - uid: 4288 + components: + - pos: 39.5,-18.5 + parent: 2 + type: Transform + - uid: 4296 + components: + - pos: 21.5,-33.5 + parent: 2 + type: Transform + - uid: 4306 + components: + - pos: 19.5,-33.5 + parent: 2 + type: Transform + - uid: 4309 + components: + - pos: 22.5,-33.5 + parent: 2 + type: Transform + - uid: 4310 + components: + - pos: 23.5,-33.5 + parent: 2 + type: Transform + - uid: 4311 + components: + - pos: 24.5,-33.5 + parent: 2 + type: Transform + - uid: 4316 + components: + - pos: 17.5,-31.5 + parent: 2 + type: Transform + - uid: 4317 + components: + - pos: 17.5,-33.5 + parent: 2 + type: Transform + - uid: 4318 + components: + - pos: 18.5,-33.5 + parent: 2 + type: Transform + - uid: 4320 + components: + - pos: 17.5,-28.5 + parent: 2 + type: Transform + - uid: 4321 + components: + - pos: 17.5,-29.5 + parent: 2 + type: Transform + - uid: 4322 + components: + - pos: 17.5,-30.5 + parent: 2 + type: Transform + - uid: 4323 + components: + - pos: 18.5,-30.5 + parent: 2 + type: Transform + - uid: 4324 + components: + - pos: 19.5,-30.5 + parent: 2 + type: Transform + - uid: 4326 + components: + - pos: 16.5,-28.5 + parent: 2 + type: Transform + - uid: 4327 + components: + - pos: 16.5,-27.5 + parent: 2 + type: Transform + - uid: 4328 + components: + - pos: 16.5,-26.5 + parent: 2 + type: Transform + - uid: 4329 + components: + - pos: 16.5,-25.5 + parent: 2 + type: Transform + - uid: 4330 + components: + - pos: 16.5,-24.5 + parent: 2 + type: Transform + - uid: 4331 + components: + - pos: 16.5,-23.5 + parent: 2 + type: Transform + - uid: 4332 + components: + - pos: 16.5,-22.5 + parent: 2 + type: Transform + - uid: 4333 + components: + - pos: 16.5,-21.5 + parent: 2 + type: Transform + - uid: 4334 + components: + - pos: 16.5,-20.5 + parent: 2 + type: Transform + - uid: 4335 + components: + - pos: 16.5,-19.5 + parent: 2 + type: Transform + - uid: 4336 + components: + - pos: 16.5,-18.5 + parent: 2 + type: Transform + - uid: 4337 + components: + - pos: 16.5,-17.5 + parent: 2 + type: Transform + - uid: 4338 + components: + - pos: 16.5,-16.5 + parent: 2 + type: Transform + - uid: 4339 + components: + - pos: 16.5,-15.5 + parent: 2 + type: Transform + - uid: 4340 + components: + - pos: 16.5,-14.5 + parent: 2 + type: Transform + - uid: 4341 + components: + - pos: 16.5,-13.5 + parent: 2 + type: Transform + - uid: 4342 + components: + - pos: 16.5,-12.5 + parent: 2 + type: Transform + - uid: 4343 + components: + - pos: 17.5,-12.5 + parent: 2 + type: Transform + - uid: 4344 + components: + - pos: 17.5,-11.5 + parent: 2 + type: Transform + - uid: 4345 + components: + - pos: 17.5,-10.5 + parent: 2 + type: Transform + - uid: 4346 + components: + - pos: 17.5,-9.5 + parent: 2 + type: Transform + - uid: 4347 + components: + - pos: 17.5,-8.5 + parent: 2 + type: Transform + - uid: 4348 + components: + - pos: 17.5,-7.5 + parent: 2 + type: Transform + - uid: 4349 + components: + - pos: 17.5,-6.5 + parent: 2 + type: Transform + - uid: 4350 + components: + - pos: 17.5,-5.5 + parent: 2 + type: Transform + - uid: 4351 + components: + - pos: 17.5,-4.5 + parent: 2 + type: Transform + - uid: 4352 + components: + - pos: 18.5,-4.5 + parent: 2 + type: Transform + - uid: 4353 + components: + - pos: 18.5,-3.5 + parent: 2 + type: Transform + - uid: 4354 + components: + - pos: 18.5,-2.5 + parent: 2 + type: Transform + - uid: 4355 + components: + - pos: 18.5,-1.5 + parent: 2 + type: Transform + - uid: 4356 + components: + - pos: 18.5,-0.5 + parent: 2 + type: Transform + - uid: 4357 + components: + - pos: 15.5,-26.5 + parent: 2 + type: Transform + - uid: 4358 + components: + - pos: 14.5,-26.5 + parent: 2 + type: Transform + - uid: 4359 + components: + - pos: 13.5,-26.5 + parent: 2 + type: Transform + - uid: 4360 + components: + - pos: 12.5,-26.5 + parent: 2 + type: Transform + - uid: 4361 + components: + - pos: 11.5,-26.5 + parent: 2 + type: Transform + - uid: 4362 + components: + - pos: 10.5,-26.5 + parent: 2 + type: Transform + - uid: 4363 + components: + - pos: 9.5,-26.5 + parent: 2 + type: Transform + - uid: 4364 + components: + - pos: 8.5,-26.5 + parent: 2 + type: Transform + - uid: 4365 + components: + - pos: 8.5,-27.5 + parent: 2 + type: Transform + - uid: 4366 + components: + - pos: 8.5,-28.5 + parent: 2 + type: Transform + - uid: 4367 + components: + - pos: 8.5,-29.5 + parent: 2 + type: Transform + - uid: 4368 + components: + - pos: 8.5,-30.5 + parent: 2 + type: Transform + - uid: 4369 + components: + - pos: 7.5,-30.5 + parent: 2 + type: Transform + - uid: 4370 + components: + - pos: 6.5,-30.5 + parent: 2 + type: Transform + - uid: 4371 + components: + - pos: 5.5,-30.5 + parent: 2 + type: Transform + - uid: 4372 + components: + - pos: 4.5,-30.5 + parent: 2 + type: Transform + - uid: 4373 + components: + - pos: 4.5,-31.5 + parent: 2 + type: Transform + - uid: 4374 + components: + - pos: 3.5,-31.5 + parent: 2 + type: Transform + - uid: 4375 + components: + - pos: 2.5,-31.5 + parent: 2 + type: Transform + - uid: 4376 + components: + - pos: 1.5,-31.5 + parent: 2 + type: Transform + - uid: 4377 + components: + - pos: 0.5,-31.5 + parent: 2 + type: Transform + - uid: 4378 + components: + - pos: -0.5,-31.5 + parent: 2 + type: Transform + - uid: 4379 + components: + - pos: -1.5,-31.5 + parent: 2 + type: Transform + - uid: 4380 + components: + - pos: -2.5,-31.5 + parent: 2 + type: Transform + - uid: 4381 + components: + - pos: -3.5,-31.5 + parent: 2 + type: Transform + - uid: 4382 + components: + - pos: -4.5,-31.5 + parent: 2 + type: Transform + - uid: 4383 + components: + - pos: -5.5,-31.5 + parent: 2 + type: Transform + - uid: 4384 + components: + - pos: -6.5,-31.5 + parent: 2 + type: Transform + - uid: 4385 + components: + - pos: -7.5,-31.5 + parent: 2 + type: Transform + - uid: 4386 + components: + - pos: -8.5,-31.5 + parent: 2 + type: Transform + - uid: 4387 + components: + - pos: -9.5,-31.5 + parent: 2 + type: Transform + - uid: 4388 + components: + - pos: -9.5,-30.5 + parent: 2 + type: Transform + - uid: 4389 + components: + - pos: -9.5,-29.5 + parent: 2 + type: Transform + - uid: 4390 + components: + - pos: -9.5,-28.5 + parent: 2 + type: Transform + - uid: 4391 + components: + - pos: -9.5,-27.5 + parent: 2 + type: Transform + - uid: 4392 + components: + - pos: -9.5,-26.5 + parent: 2 + type: Transform + - uid: 4393 + components: + - pos: -9.5,-25.5 + parent: 2 + type: Transform + - uid: 4394 + components: + - pos: -9.5,-24.5 + parent: 2 + type: Transform + - uid: 4395 + components: + - pos: -10.5,-24.5 + parent: 2 + type: Transform + - uid: 4396 + components: + - pos: -11.5,-24.5 + parent: 2 + type: Transform + - uid: 4397 + components: + - pos: -12.5,-24.5 + parent: 2 + type: Transform + - uid: 4398 + components: + - pos: -13.5,-24.5 + parent: 2 + type: Transform + - uid: 4399 + components: + - pos: -14.5,-24.5 + parent: 2 + type: Transform + - uid: 4400 + components: + - pos: -15.5,-24.5 + parent: 2 + type: Transform + - uid: 4401 + components: + - pos: -16.5,-24.5 + parent: 2 + type: Transform + - uid: 4402 + components: + - pos: -16.5,-25.5 + parent: 2 + type: Transform + - uid: 4403 + components: + - pos: -16.5,-26.5 + parent: 2 + type: Transform + - uid: 4404 + components: + - pos: -16.5,-27.5 + parent: 2 + type: Transform + - uid: 4405 + components: + - pos: -17.5,-27.5 + parent: 2 + type: Transform + - uid: 4406 + components: + - pos: -18.5,-27.5 + parent: 2 + type: Transform + - uid: 4407 + components: + - pos: -19.5,-27.5 + parent: 2 + type: Transform + - uid: 4408 + components: + - pos: -20.5,-27.5 + parent: 2 + type: Transform + - uid: 4409 + components: + - pos: -20.5,-28.5 + parent: 2 + type: Transform + - uid: 4410 + components: + - pos: -20.5,-29.5 + parent: 2 + type: Transform + - uid: 4411 + components: + - pos: -21.5,-29.5 + parent: 2 + type: Transform + - uid: 4412 + components: + - pos: -22.5,-29.5 + parent: 2 + type: Transform + - uid: 4413 + components: + - pos: -23.5,-29.5 + parent: 2 + type: Transform + - uid: 4414 + components: + - pos: -24.5,-29.5 + parent: 2 + type: Transform + - uid: 4415 + components: + - pos: -24.5,-30.5 + parent: 2 + type: Transform + - uid: 4416 + components: + - pos: -25.5,-30.5 + parent: 2 + type: Transform + - uid: 4417 + components: + - pos: -26.5,-30.5 + parent: 2 + type: Transform + - uid: 4418 + components: + - pos: -27.5,-30.5 + parent: 2 + type: Transform + - uid: 4419 + components: + - pos: -28.5,-30.5 + parent: 2 + type: Transform + - uid: 4420 + components: + - pos: -29.5,-30.5 + parent: 2 + type: Transform + - uid: 4421 + components: + - pos: -30.5,-30.5 + parent: 2 + type: Transform + - uid: 4422 + components: + - pos: -31.5,-30.5 + parent: 2 + type: Transform + - uid: 4423 + components: + - pos: -32.5,-30.5 + parent: 2 + type: Transform + - uid: 4424 + components: + - pos: -33.5,-30.5 + parent: 2 + type: Transform + - uid: 4425 + components: + - pos: -34.5,-30.5 + parent: 2 + type: Transform + - uid: 4426 + components: + - pos: -35.5,-30.5 + parent: 2 + type: Transform + - uid: 4427 + components: + - pos: -36.5,-30.5 + parent: 2 + type: Transform + - uid: 4428 + components: + - pos: -37.5,-30.5 + parent: 2 + type: Transform + - uid: 4429 + components: + - pos: -37.5,-29.5 + parent: 2 + type: Transform + - uid: 4430 + components: + - pos: -37.5,-28.5 + parent: 2 + type: Transform + - uid: 4431 + components: + - pos: -37.5,-27.5 + parent: 2 + type: Transform + - uid: 4432 + components: + - pos: -37.5,-26.5 + parent: 2 + type: Transform + - uid: 4433 + components: + - pos: -37.5,-25.5 + parent: 2 + type: Transform + - uid: 4434 + components: + - pos: -37.5,-24.5 + parent: 2 + type: Transform + - uid: 4435 + components: + - pos: -37.5,-23.5 + parent: 2 + type: Transform + - uid: 4436 + components: + - pos: -37.5,-22.5 + parent: 2 + type: Transform + - uid: 4437 + components: + - pos: -37.5,-21.5 + parent: 2 + type: Transform + - uid: 4438 + components: + - pos: -37.5,-20.5 + parent: 2 + type: Transform + - uid: 4439 + components: + - pos: -37.5,-19.5 + parent: 2 + type: Transform + - uid: 4440 + components: + - pos: -38.5,-19.5 + parent: 2 + type: Transform + - uid: 4441 + components: + - pos: -39.5,-19.5 + parent: 2 + type: Transform + - uid: 4442 + components: + - pos: -40.5,-19.5 + parent: 2 + type: Transform + - uid: 4443 + components: + - pos: -41.5,-19.5 + parent: 2 + type: Transform + - uid: 4444 + components: + - pos: -42.5,-19.5 + parent: 2 + type: Transform + - uid: 4445 + components: + - pos: -42.5,-20.5 + parent: 2 + type: Transform + - uid: 4446 + components: + - pos: -42.5,-21.5 + parent: 2 + type: Transform + - uid: 4447 + components: + - pos: -42.5,-22.5 + parent: 2 + type: Transform + - uid: 4448 + components: + - pos: -41.5,-22.5 + parent: 2 + type: Transform + - uid: 4449 + components: + - pos: -43.5,-19.5 + parent: 2 + type: Transform + - uid: 4450 + components: + - pos: -44.5,-19.5 + parent: 2 + type: Transform + - uid: 4451 + components: + - pos: -44.5,-18.5 + parent: 2 + type: Transform + - uid: 4452 + components: + - pos: -44.5,-17.5 + parent: 2 + type: Transform + - uid: 4453 + components: + - pos: -44.5,-16.5 + parent: 2 + type: Transform + - uid: 4454 + components: + - pos: -45.5,-16.5 + parent: 2 + type: Transform + - uid: 4455 + components: + - pos: -46.5,-16.5 + parent: 2 + type: Transform + - uid: 4456 + components: + - pos: -47.5,-16.5 + parent: 2 + type: Transform + - uid: 4457 + components: + - pos: -48.5,-16.5 + parent: 2 + type: Transform + - uid: 4458 + components: + - pos: -49.5,-16.5 + parent: 2 + type: Transform + - uid: 4459 + components: + - pos: -50.5,-16.5 + parent: 2 + type: Transform + - uid: 4460 + components: + - pos: -50.5,-15.5 + parent: 2 + type: Transform + - uid: 4461 + components: + - pos: -50.5,-14.5 + parent: 2 + type: Transform + - uid: 4462 + components: + - pos: -50.5,-13.5 + parent: 2 + type: Transform + - uid: 4463 + components: + - pos: -50.5,-12.5 + parent: 2 + type: Transform + - uid: 4464 + components: + - pos: -50.5,-11.5 + parent: 2 + type: Transform + - uid: 4465 + components: + - pos: -50.5,-10.5 + parent: 2 + type: Transform + - uid: 4466 + components: + - pos: -50.5,-9.5 + parent: 2 + type: Transform + - uid: 4467 + components: + - pos: -50.5,-8.5 + parent: 2 + type: Transform + - uid: 4468 + components: + - pos: -50.5,-7.5 + parent: 2 + type: Transform + - uid: 4469 + components: + - pos: -50.5,-6.5 + parent: 2 + type: Transform + - uid: 4470 + components: + - pos: -50.5,-5.5 + parent: 2 + type: Transform + - uid: 4471 + components: + - pos: -50.5,-4.5 + parent: 2 + type: Transform + - uid: 4472 + components: + - pos: -51.5,-4.5 + parent: 2 + type: Transform + - uid: 4473 + components: + - pos: -51.5,-3.5 + parent: 2 + type: Transform + - uid: 4474 + components: + - pos: -51.5,-2.5 + parent: 2 + type: Transform + - uid: 4475 + components: + - pos: -51.5,-1.5 + parent: 2 + type: Transform + - uid: 4476 + components: + - pos: -51.5,-0.5 + parent: 2 + type: Transform + - uid: 4477 + components: + - pos: -51.5,0.5 + parent: 2 + type: Transform + - uid: 4478 + components: + - pos: -51.5,1.5 + parent: 2 + type: Transform + - uid: 4479 + components: + - pos: -52.5,1.5 + parent: 2 + type: Transform + - uid: 4480 + components: + - pos: -52.5,2.5 + parent: 2 + type: Transform + - uid: 4481 + components: + - pos: -52.5,3.5 + parent: 2 + type: Transform + - uid: 4482 + components: + - pos: -52.5,4.5 + parent: 2 + type: Transform + - uid: 4483 + components: + - pos: -52.5,5.5 + parent: 2 + type: Transform + - uid: 4484 + components: + - pos: -53.5,5.5 + parent: 2 + type: Transform + - uid: 4485 + components: + - pos: -53.5,6.5 + parent: 2 + type: Transform + - uid: 4486 + components: + - pos: -53.5,7.5 + parent: 2 + type: Transform + - uid: 4487 + components: + - pos: -53.5,8.5 + parent: 2 + type: Transform + - uid: 4488 + components: + - pos: -52.5,8.5 + parent: 2 + type: Transform + - uid: 4489 + components: + - pos: -52.5,9.5 + parent: 2 + type: Transform + - uid: 4490 + components: + - pos: -52.5,10.5 + parent: 2 + type: Transform + - uid: 4491 + components: + - pos: -52.5,11.5 + parent: 2 + type: Transform + - uid: 4492 + components: + - pos: -51.5,11.5 + parent: 2 + type: Transform + - uid: 4493 + components: + - pos: -51.5,12.5 + parent: 2 + type: Transform + - uid: 4494 + components: + - pos: -51.5,13.5 + parent: 2 + type: Transform + - uid: 4495 + components: + - pos: -51.5,14.5 + parent: 2 + type: Transform + - uid: 4496 + components: + - pos: -52.5,14.5 + parent: 2 + type: Transform + - uid: 4497 + components: + - pos: -53.5,14.5 + parent: 2 + type: Transform + - uid: 4498 + components: + - pos: -54.5,14.5 + parent: 2 + type: Transform + - uid: 4499 + components: + - pos: -54.5,15.5 + parent: 2 + type: Transform + - uid: 4500 + components: + - pos: -50.5,1.5 + parent: 2 + type: Transform + - uid: 4501 + components: + - pos: -49.5,1.5 + parent: 2 + type: Transform + - uid: 4502 + components: + - pos: -48.5,1.5 + parent: 2 + type: Transform + - uid: 4503 + components: + - pos: -47.5,1.5 + parent: 2 + type: Transform + - uid: 4504 + components: + - pos: -46.5,1.5 + parent: 2 + type: Transform + - uid: 4505 + components: + - pos: -45.5,1.5 + parent: 2 + type: Transform + - uid: 4506 + components: + - pos: -44.5,1.5 + parent: 2 + type: Transform + - uid: 4507 + components: + - pos: -43.5,1.5 + parent: 2 + type: Transform + - uid: 4508 + components: + - pos: -42.5,1.5 + parent: 2 + type: Transform + - uid: 4509 + components: + - pos: -42.5,0.5 + parent: 2 + type: Transform + - uid: 4510 + components: + - pos: -42.5,-0.5 + parent: 2 + type: Transform + - uid: 4511 + components: + - pos: -41.5,-0.5 + parent: 2 + type: Transform + - uid: 4512 + components: + - pos: -40.5,-0.5 + parent: 2 + type: Transform + - uid: 4513 + components: + - pos: -39.5,-0.5 + parent: 2 + type: Transform + - uid: 4514 + components: + - pos: -38.5,-0.5 + parent: 2 + type: Transform + - uid: 4515 + components: + - pos: -38.5,-1.5 + parent: 2 + type: Transform + - uid: 4516 + components: + - pos: -37.5,-1.5 + parent: 2 + type: Transform + - uid: 4517 + components: + - pos: -36.5,-1.5 + parent: 2 + type: Transform + - uid: 4518 + components: + - pos: -35.5,-1.5 + parent: 2 + type: Transform + - uid: 4519 + components: + - pos: -34.5,-1.5 + parent: 2 + type: Transform + - uid: 4520 + components: + - pos: -33.5,-1.5 + parent: 2 + type: Transform + - uid: 4521 + components: + - pos: -33.5,-0.5 + parent: 2 + type: Transform + - uid: 4522 + components: + - pos: -33.5,0.5 + parent: 2 + type: Transform + - uid: 4523 + components: + - pos: -33.5,1.5 + parent: 2 + type: Transform + - uid: 4524 + components: + - pos: -33.5,2.5 + parent: 2 + type: Transform + - uid: 4525 + components: + - pos: -33.5,3.5 + parent: 2 + type: Transform + - uid: 4526 + components: + - pos: -33.5,4.5 + parent: 2 + type: Transform + - uid: 4527 + components: + - pos: -32.5,4.5 + parent: 2 + type: Transform + - uid: 4528 + components: + - pos: -31.5,4.5 + parent: 2 + type: Transform + - uid: 4529 + components: + - pos: -30.5,4.5 + parent: 2 + type: Transform + - uid: 4530 + components: + - pos: -29.5,4.5 + parent: 2 + type: Transform + - uid: 4531 + components: + - pos: -28.5,4.5 + parent: 2 + type: Transform + - uid: 4532 + components: + - pos: -27.5,4.5 + parent: 2 + type: Transform + - uid: 4533 + components: + - pos: -26.5,4.5 + parent: 2 + type: Transform + - uid: 4534 + components: + - pos: -25.5,4.5 + parent: 2 + type: Transform + - uid: 4535 + components: + - pos: -24.5,4.5 + parent: 2 + type: Transform + - uid: 4536 + components: + - pos: -23.5,4.5 + parent: 2 + type: Transform + - uid: 4537 + components: + - pos: -22.5,4.5 + parent: 2 + type: Transform + - uid: 4538 + components: + - pos: -21.5,4.5 + parent: 2 + type: Transform + - uid: 4539 + components: + - pos: -20.5,4.5 + parent: 2 + type: Transform + - uid: 4540 + components: + - pos: -19.5,4.5 + parent: 2 + type: Transform + - uid: 4541 + components: + - pos: -18.5,4.5 + parent: 2 + type: Transform + - uid: 4542 + components: + - pos: -17.5,4.5 + parent: 2 + type: Transform + - uid: 4543 + components: + - pos: -16.5,4.5 + parent: 2 + type: Transform + - uid: 4544 + components: + - pos: -16.5,5.5 + parent: 2 + type: Transform + - uid: 4545 + components: + - pos: -15.5,5.5 + parent: 2 + type: Transform + - uid: 4546 + components: + - pos: -14.5,5.5 + parent: 2 + type: Transform + - uid: 4547 + components: + - pos: -13.5,5.5 + parent: 2 + type: Transform + - uid: 4548 + components: + - pos: -13.5,4.5 + parent: 2 + type: Transform + - uid: 4549 + components: + - pos: -13.5,3.5 + parent: 2 + type: Transform + - uid: 4550 + components: + - pos: -13.5,2.5 + parent: 2 + type: Transform + - uid: 4551 + components: + - pos: -14.5,2.5 + parent: 2 + type: Transform + - uid: 4552 + components: + - pos: -16.5,3.5 + parent: 2 + type: Transform + - uid: 4553 + components: + - pos: -16.5,2.5 + parent: 2 + type: Transform + - uid: 4554 + components: + - pos: -16.5,1.5 + parent: 2 + type: Transform + - uid: 4555 + components: + - pos: -16.5,0.5 + parent: 2 + type: Transform + - uid: 4556 + components: + - pos: -16.5,-0.5 + parent: 2 + type: Transform + - uid: 4557 + components: + - pos: -16.5,-1.5 + parent: 2 + type: Transform + - uid: 4558 + components: + - pos: -16.5,-2.5 + parent: 2 + type: Transform + - uid: 4559 + components: + - pos: -16.5,-3.5 + parent: 2 + type: Transform + - uid: 4560 + components: + - pos: -16.5,-4.5 + parent: 2 + type: Transform + - uid: 4561 + components: + - pos: -16.5,-5.5 + parent: 2 + type: Transform + - uid: 4562 + components: + - pos: -15.5,-5.5 + parent: 2 + type: Transform + - uid: 4563 + components: + - pos: -15.5,-6.5 + parent: 2 + type: Transform + - uid: 4564 + components: + - pos: -15.5,-7.5 + parent: 2 + type: Transform + - uid: 4565 + components: + - pos: -15.5,-8.5 + parent: 2 + type: Transform + - uid: 4566 + components: + - pos: -15.5,-9.5 + parent: 2 + type: Transform + - uid: 4567 + components: + - pos: -15.5,-10.5 + parent: 2 + type: Transform + - uid: 4568 + components: + - pos: -15.5,-11.5 + parent: 2 + type: Transform + - uid: 4569 + components: + - pos: -15.5,-12.5 + parent: 2 + type: Transform + - uid: 4570 + components: + - pos: -15.5,-13.5 + parent: 2 + type: Transform + - uid: 4571 + components: + - pos: -15.5,-14.5 + parent: 2 + type: Transform + - uid: 4572 + components: + - pos: -15.5,-15.5 + parent: 2 + type: Transform + - uid: 4573 + components: + - pos: -15.5,-16.5 + parent: 2 + type: Transform + - uid: 4574 + components: + - pos: -15.5,-17.5 + parent: 2 + type: Transform + - uid: 4575 + components: + - pos: -15.5,-18.5 + parent: 2 + type: Transform + - uid: 4576 + components: + - pos: -16.5,-18.5 + parent: 2 + type: Transform + - uid: 4577 + components: + - pos: -16.5,-19.5 + parent: 2 + type: Transform + - uid: 4578 + components: + - pos: -16.5,-20.5 + parent: 2 + type: Transform + - uid: 4579 + components: + - pos: -16.5,-21.5 + parent: 2 + type: Transform + - uid: 4580 + components: + - pos: -16.5,-22.5 + parent: 2 + type: Transform + - uid: 4581 + components: + - pos: -16.5,-23.5 + parent: 2 + type: Transform + - uid: 4582 + components: + - pos: -12.5,5.5 + parent: 2 + type: Transform + - uid: 4583 + components: + - pos: -11.5,5.5 + parent: 2 + type: Transform + - uid: 4584 + components: + - pos: -10.5,5.5 + parent: 2 + type: Transform + - uid: 4585 + components: + - pos: -10.5,4.5 + parent: 2 + type: Transform + - uid: 4586 + components: + - pos: -10.5,3.5 + parent: 2 + type: Transform + - uid: 4587 + components: + - pos: -9.5,3.5 + parent: 2 + type: Transform + - uid: 4588 + components: + - pos: -8.5,3.5 + parent: 2 + type: Transform + - uid: 4589 + components: + - pos: -7.5,3.5 + parent: 2 + type: Transform + - uid: 4590 + components: + - pos: -7.5,2.5 + parent: 2 + type: Transform + - uid: 4591 + components: + - pos: -7.5,1.5 + parent: 2 + type: Transform + - uid: 4592 + components: + - pos: -6.5,1.5 + parent: 2 + type: Transform + - uid: 4593 + components: + - pos: -5.5,1.5 + parent: 2 + type: Transform + - uid: 4594 + components: + - pos: -4.5,1.5 + parent: 2 + type: Transform + - uid: 4595 + components: + - pos: -3.5,1.5 + parent: 2 + type: Transform + - uid: 4596 + components: + - pos: -2.5,1.5 + parent: 2 + type: Transform + - uid: 4597 + components: + - pos: -1.5,1.5 + parent: 2 + type: Transform + - uid: 4598 + components: + - pos: -0.5,1.5 + parent: 2 + type: Transform + - uid: 4599 + components: + - pos: 0.5,1.5 + parent: 2 + type: Transform + - uid: 4600 + components: + - pos: 1.5,1.5 + parent: 2 + type: Transform + - uid: 4601 + components: + - pos: 2.5,1.5 + parent: 2 + type: Transform + - uid: 4602 + components: + - pos: 3.5,1.5 + parent: 2 + type: Transform + - uid: 4603 + components: + - pos: 4.5,1.5 + parent: 2 + type: Transform + - uid: 4604 + components: + - pos: 5.5,1.5 + parent: 2 + type: Transform + - uid: 4605 + components: + - pos: 6.5,1.5 + parent: 2 + type: Transform + - uid: 4606 + components: + - pos: 7.5,1.5 + parent: 2 + type: Transform + - uid: 4607 + components: + - pos: 7.5,0.5 + parent: 2 + type: Transform + - uid: 4608 + components: + - pos: 7.5,-0.5 + parent: 2 + type: Transform + - uid: 4609 + components: + - pos: 7.5,-1.5 + parent: 2 + type: Transform + - uid: 4610 + components: + - pos: 8.5,-1.5 + parent: 2 + type: Transform + - uid: 4611 + components: + - pos: 9.5,-1.5 + parent: 2 + type: Transform + - uid: 4612 + components: + - pos: 10.5,-1.5 + parent: 2 + type: Transform + - uid: 4613 + components: + - pos: 11.5,-1.5 + parent: 2 + type: Transform + - uid: 4614 + components: + - pos: 12.5,-1.5 + parent: 2 + type: Transform + - uid: 4615 + components: + - pos: 13.5,-1.5 + parent: 2 + type: Transform + - uid: 4616 + components: + - pos: 14.5,-1.5 + parent: 2 + type: Transform + - uid: 4617 + components: + - pos: 14.5,-0.5 + parent: 2 + type: Transform + - uid: 4634 + components: + - pos: 19.5,-31.5 + parent: 2 + type: Transform + - uid: 6909 + components: + - pos: 24.5,-34.5 + parent: 2 + type: Transform + - uid: 6910 + components: + - pos: 25.5,-34.5 + parent: 2 + type: Transform + - uid: 6911 + components: + - pos: 26.5,-34.5 + parent: 2 + type: Transform + - uid: 6912 + components: + - pos: 27.5,-34.5 + parent: 2 + type: Transform + - uid: 6913 + components: + - pos: 28.5,-34.5 + parent: 2 + type: Transform + - uid: 6914 + components: + - pos: 29.5,-34.5 + parent: 2 + type: Transform + - uid: 6915 + components: + - pos: 30.5,-34.5 + parent: 2 + type: Transform + - uid: 6916 + components: + - pos: 31.5,-34.5 + parent: 2 + type: Transform + - uid: 6917 + components: + - pos: 32.5,-34.5 + parent: 2 + type: Transform + - uid: 6918 + components: + - pos: 33.5,-34.5 + parent: 2 + type: Transform + - uid: 6919 + components: + - pos: 34.5,-34.5 + parent: 2 + type: Transform + - uid: 6920 + components: + - pos: 35.5,-34.5 + parent: 2 + type: Transform + - uid: 6921 + components: + - pos: 36.5,-34.5 + parent: 2 + type: Transform + - uid: 6922 + components: + - pos: 37.5,-34.5 + parent: 2 + type: Transform + - uid: 6923 + components: + - pos: 38.5,-34.5 + parent: 2 + type: Transform + - uid: 6924 + components: + - pos: 39.5,-34.5 + parent: 2 + type: Transform + - uid: 6925 + components: + - pos: 40.5,-34.5 + parent: 2 + type: Transform + - uid: 6926 + components: + - pos: 40.5,-33.5 + parent: 2 + type: Transform + - uid: 6927 + components: + - pos: 40.5,-32.5 + parent: 2 + type: Transform + - uid: 6928 + components: + - pos: 40.5,-31.5 + parent: 2 + type: Transform + - uid: 6929 + components: + - pos: 40.5,-30.5 + parent: 2 + type: Transform + - uid: 6930 + components: + - pos: 40.5,-29.5 + parent: 2 + type: Transform + - uid: 6931 + components: + - pos: 40.5,-28.5 + parent: 2 + type: Transform + - uid: 6932 + components: + - pos: 40.5,-27.5 + parent: 2 + type: Transform + - uid: 6933 + components: + - pos: 40.5,-26.5 + parent: 2 + type: Transform + - uid: 6934 + components: + - pos: 40.5,-25.5 + parent: 2 + type: Transform + - uid: 6935 + components: + - pos: 41.5,-25.5 + parent: 2 + type: Transform + - uid: 6936 + components: + - pos: 41.5,-24.5 + parent: 2 + type: Transform + - uid: 6937 + components: + - pos: 41.5,-23.5 + parent: 2 + type: Transform + - uid: 6938 + components: + - pos: 41.5,-22.5 + parent: 2 + type: Transform + - uid: 6939 + components: + - pos: 41.5,-21.5 + parent: 2 + type: Transform + - uid: 6940 + components: + - pos: 41.5,-20.5 + parent: 2 + type: Transform + - uid: 6941 + components: + - pos: 41.5,-19.5 + parent: 2 + type: Transform + - uid: 6942 + components: + - pos: 41.5,-18.5 + parent: 2 + type: Transform + - uid: 6943 + components: + - pos: 40.5,-18.5 + parent: 2 + type: Transform +- proto: CableHVStack + entities: + - uid: 3244 + components: + - pos: 53.349663,8.649879 + parent: 2 + type: Transform + - uid: 3245 + components: + - pos: 53.610077,8.430977 + parent: 2 + type: Transform +- proto: CableMV + entities: + - uid: 163 + components: + - pos: -15.5,9.5 + parent: 2 + type: Transform + - uid: 394 + components: + - pos: 14.5,1.5 + parent: 2 + type: Transform + - uid: 663 + components: + - pos: 19.5,-31.5 + parent: 2 + type: Transform + - uid: 1029 + components: + - pos: 11.5,7.5 + parent: 2 + type: Transform + - uid: 2345 + components: + - pos: 18.5,0.5 + parent: 2 + type: Transform + - uid: 2347 + components: + - pos: 42.5,-4.5 + parent: 2 + type: Transform + - uid: 4679 + components: + - pos: 43.5,-4.5 + parent: 2 + type: Transform + - uid: 4685 + components: + - pos: 36.5,19.5 + parent: 2 + type: Transform + - uid: 4686 + components: + - pos: 37.5,19.5 + parent: 2 + type: Transform + - uid: 4687 + components: + - pos: 37.5,18.5 + parent: 2 + type: Transform + - uid: 4688 + components: + - pos: 37.5,17.5 + parent: 2 + type: Transform + - uid: 4689 + components: + - pos: 37.5,16.5 + parent: 2 + type: Transform + - uid: 4690 + components: + - pos: 36.5,16.5 + parent: 2 + type: Transform + - uid: 4691 + components: + - pos: 35.5,16.5 + parent: 2 + type: Transform + - uid: 4692 + components: + - pos: 34.5,16.5 + parent: 2 + type: Transform + - uid: 4693 + components: + - pos: 33.5,16.5 + parent: 2 + type: Transform + - uid: 4694 + components: + - pos: 32.5,16.5 + parent: 2 + type: Transform + - uid: 4695 + components: + - pos: 31.5,16.5 + parent: 2 + type: Transform + - uid: 4696 + components: + - pos: 31.5,15.5 + parent: 2 + type: Transform + - uid: 4697 + components: + - pos: 31.5,14.5 + parent: 2 + type: Transform + - uid: 4698 + components: + - pos: 31.5,13.5 + parent: 2 + type: Transform + - uid: 4699 + components: + - pos: 31.5,12.5 + parent: 2 + type: Transform + - uid: 4700 + components: + - pos: 31.5,11.5 + parent: 2 + type: Transform + - uid: 4701 + components: + - pos: 30.5,11.5 + parent: 2 + type: Transform + - uid: 4702 + components: + - pos: 29.5,11.5 + parent: 2 + type: Transform + - uid: 4703 + components: + - pos: 28.5,11.5 + parent: 2 + type: Transform + - uid: 4704 + components: + - pos: 27.5,11.5 + parent: 2 + type: Transform + - uid: 4705 + components: + - pos: 26.5,11.5 + parent: 2 + type: Transform + - uid: 4706 + components: + - pos: 25.5,11.5 + parent: 2 + type: Transform + - uid: 4707 + components: + - pos: 24.5,11.5 + parent: 2 + type: Transform + - uid: 4708 + components: + - pos: 24.5,10.5 + parent: 2 + type: Transform + - uid: 4709 + components: + - pos: 38.5,16.5 + parent: 2 + type: Transform + - uid: 4710 + components: + - pos: 39.5,16.5 + parent: 2 + type: Transform + - uid: 4711 + components: + - pos: 39.5,15.5 + parent: 2 + type: Transform + - uid: 4712 + components: + - pos: 39.5,14.5 + parent: 2 + type: Transform + - uid: 4713 + components: + - pos: 39.5,13.5 + parent: 2 + type: Transform + - uid: 4714 + components: + - pos: 39.5,12.5 + parent: 2 + type: Transform + - uid: 4715 + components: + - pos: 39.5,11.5 + parent: 2 + type: Transform + - uid: 4716 + components: + - pos: 39.5,10.5 + parent: 2 + type: Transform + - uid: 4717 + components: + - pos: 39.5,9.5 + parent: 2 + type: Transform + - uid: 4718 + components: + - pos: 39.5,8.5 + parent: 2 + type: Transform + - uid: 4719 + components: + - pos: 39.5,7.5 + parent: 2 + type: Transform + - uid: 4720 + components: + - pos: 39.5,6.5 + parent: 2 + type: Transform + - uid: 4721 + components: + - pos: 39.5,5.5 + parent: 2 + type: Transform + - uid: 4722 + components: + - pos: 39.5,4.5 + parent: 2 + type: Transform + - uid: 4723 + components: + - pos: 38.5,4.5 + parent: 2 + type: Transform + - uid: 4724 + components: + - pos: 37.5,4.5 + parent: 2 + type: Transform + - uid: 4725 + components: + - pos: 36.5,4.5 + parent: 2 + type: Transform + - uid: 4726 + components: + - pos: 35.5,4.5 + parent: 2 + type: Transform + - uid: 4727 + components: + - pos: 34.5,4.5 + parent: 2 + type: Transform + - uid: 4728 + components: + - pos: 33.5,4.5 + parent: 2 + type: Transform + - uid: 4729 + components: + - pos: 33.5,3.5 + parent: 2 + type: Transform + - uid: 4730 + components: + - pos: 33.5,2.5 + parent: 2 + type: Transform + - uid: 4731 + components: + - pos: 32.5,2.5 + parent: 2 + type: Transform + - uid: 4732 + components: + - pos: 40.5,4.5 + parent: 2 + type: Transform + - uid: 4733 + components: + - pos: 41.5,4.5 + parent: 2 + type: Transform + - uid: 4734 + components: + - pos: 42.5,4.5 + parent: 2 + type: Transform + - uid: 4735 + components: + - pos: 42.5,3.5 + parent: 2 + type: Transform + - uid: 4736 + components: + - pos: 42.5,2.5 + parent: 2 + type: Transform + - uid: 4737 + components: + - pos: 42.5,1.5 + parent: 2 + type: Transform + - uid: 4738 + components: + - pos: 42.5,0.5 + parent: 2 + type: Transform + - uid: 4739 + components: + - pos: 42.5,-0.5 + parent: 2 + type: Transform + - uid: 4740 + components: + - pos: 42.5,-1.5 + parent: 2 + type: Transform + - uid: 4741 + components: + - pos: 42.5,-2.5 + parent: 2 + type: Transform + - uid: 4743 + components: + - pos: 42.5,-3.5 + parent: 2 + type: Transform + - uid: 4744 + components: + - pos: 43.5,-11.5 + parent: 2 + type: Transform + - uid: 4745 + components: + - pos: 43.5,-12.5 + parent: 2 + type: Transform + - uid: 4746 + components: + - pos: 42.5,-12.5 + parent: 2 + type: Transform + - uid: 4747 + components: + - pos: 41.5,-12.5 + parent: 2 + type: Transform + - uid: 4748 + components: + - pos: 40.5,-12.5 + parent: 2 + type: Transform + - uid: 4749 + components: + - pos: 39.5,-12.5 + parent: 2 + type: Transform + - uid: 4750 + components: + - pos: 39.5,-11.5 + parent: 2 + type: Transform + - uid: 4751 + components: + - pos: 39.5,-10.5 + parent: 2 + type: Transform + - uid: 4752 + components: + - pos: 39.5,-9.5 + parent: 2 + type: Transform + - uid: 4753 + components: + - pos: 40.5,-9.5 + parent: 2 + type: Transform + - uid: 4754 + components: + - pos: 41.5,-9.5 + parent: 2 + type: Transform + - uid: 4755 + components: + - pos: 42.5,-9.5 + parent: 2 + type: Transform + - uid: 4756 + components: + - pos: 43.5,-9.5 + parent: 2 + type: Transform + - uid: 4757 + components: + - pos: 44.5,-9.5 + parent: 2 + type: Transform + - uid: 4758 + components: + - pos: 45.5,-9.5 + parent: 2 + type: Transform + - uid: 4759 + components: + - pos: 46.5,-9.5 + parent: 2 + type: Transform + - uid: 4760 + components: + - pos: 47.5,-9.5 + parent: 2 + type: Transform + - uid: 4761 + components: + - pos: 47.5,-8.5 + parent: 2 + type: Transform + - uid: 4762 + components: + - pos: 44.5,-4.5 + parent: 2 + type: Transform + - uid: 4764 + components: + - pos: 11.5,6.5 + parent: 2 + type: Transform + - uid: 4765 + components: + - pos: 12.5,6.5 + parent: 2 + type: Transform + - uid: 4766 + components: + - pos: 13.5,6.5 + parent: 2 + type: Transform + - uid: 4767 + components: + - pos: 14.5,6.5 + parent: 2 + type: Transform + - uid: 4768 + components: + - pos: 14.5,5.5 + parent: 2 + type: Transform + - uid: 4770 + components: + - pos: 14.5,2.5 + parent: 2 + type: Transform + - uid: 4771 + components: + - pos: 14.5,0.5 + parent: 2 + type: Transform + - uid: 4772 + components: + - pos: 15.5,0.5 + parent: 2 + type: Transform + - uid: 4773 + components: + - pos: 16.5,0.5 + parent: 2 + type: Transform + - uid: 4774 + components: + - pos: 17.5,0.5 + parent: 2 + type: Transform + - uid: 4775 + components: + - pos: 19.5,0.5 + parent: 2 + type: Transform + - uid: 4777 + components: + - pos: 20.5,0.5 + parent: 2 + type: Transform + - uid: 4778 + components: + - pos: 45.5,-4.5 + parent: 2 + type: Transform + - uid: 4779 + components: + - pos: 46.5,-4.5 + parent: 2 + type: Transform + - uid: 4780 + components: + - pos: 47.5,-4.5 + parent: 2 + type: Transform + - uid: 4781 + components: + - pos: 39.5,-14.5 + parent: 2 + type: Transform + - uid: 4784 + components: + - pos: 39.5,-13.5 + parent: 2 + type: Transform + - uid: 4785 + components: + - pos: 38.5,-13.5 + parent: 2 + type: Transform + - uid: 4786 + components: + - pos: 37.5,-13.5 + parent: 2 + type: Transform + - uid: 4787 + components: + - pos: 36.5,-13.5 + parent: 2 + type: Transform + - uid: 4788 + components: + - pos: 35.5,-13.5 + parent: 2 + type: Transform + - uid: 4789 + components: + - pos: 34.5,-13.5 + parent: 2 + type: Transform + - uid: 4790 + components: + - pos: 34.5,-12.5 + parent: 2 + type: Transform + - uid: 4791 + components: + - pos: 34.5,-11.5 + parent: 2 + type: Transform + - uid: 4792 + components: + - pos: 33.5,-11.5 + parent: 2 + type: Transform + - uid: 4794 + components: + - pos: 39.5,-15.5 + parent: 2 + type: Transform + - uid: 4795 + components: + - pos: 39.5,-16.5 + parent: 2 + type: Transform + - uid: 4796 + components: + - pos: 39.5,-17.5 + parent: 2 + type: Transform + - uid: 4797 + components: + - pos: 39.5,-18.5 + parent: 2 + type: Transform + - uid: 4798 + components: + - pos: 38.5,-18.5 + parent: 2 + type: Transform + - uid: 4799 + components: + - pos: 37.5,-18.5 + parent: 2 + type: Transform + - uid: 4800 + components: + - pos: 36.5,-18.5 + parent: 2 + type: Transform + - uid: 4801 + components: + - pos: 35.5,-18.5 + parent: 2 + type: Transform + - uid: 4802 + components: + - pos: 34.5,-18.5 + parent: 2 + type: Transform + - uid: 4803 + components: + - pos: 33.5,-18.5 + parent: 2 + type: Transform + - uid: 4804 + components: + - pos: 32.5,-18.5 + parent: 2 + type: Transform + - uid: 4805 + components: + - pos: 31.5,-18.5 + parent: 2 + type: Transform + - uid: 4806 + components: + - pos: 30.5,-18.5 + parent: 2 + type: Transform + - uid: 4807 + components: + - pos: 29.5,-18.5 + parent: 2 + type: Transform + - uid: 4808 + components: + - pos: 28.5,-18.5 + parent: 2 + type: Transform + - uid: 4809 + components: + - pos: 28.5,-17.5 + parent: 2 + type: Transform + - uid: 4810 + components: + - pos: 28.5,-16.5 + parent: 2 + type: Transform + - uid: 4811 + components: + - pos: 28.5,-15.5 + parent: 2 + type: Transform + - uid: 4812 + components: + - pos: 27.5,-15.5 + parent: 2 + type: Transform + - uid: 4813 + components: + - pos: 26.5,-15.5 + parent: 2 + type: Transform + - uid: 4814 + components: + - pos: 25.5,-15.5 + parent: 2 + type: Transform + - uid: 4815 + components: + - pos: 24.5,-15.5 + parent: 2 + type: Transform + - uid: 4816 + components: + - pos: 23.5,-15.5 + parent: 2 + type: Transform + - uid: 4818 + components: + - pos: 19.5,-30.5 + parent: 2 + type: Transform + - uid: 4819 + components: + - pos: 18.5,-30.5 + parent: 2 + type: Transform + - uid: 4820 + components: + - pos: 17.5,-30.5 + parent: 2 + type: Transform + - uid: 4821 + components: + - pos: 17.5,-29.5 + parent: 2 + type: Transform + - uid: 4822 + components: + - pos: 17.5,-28.5 + parent: 2 + type: Transform + - uid: 4823 + components: + - pos: 19.5,-28.5 + parent: 2 + type: Transform + - uid: 4824 + components: + - pos: 18.5,-28.5 + parent: 2 + type: Transform + - uid: 4825 + components: + - pos: 20.5,-28.5 + parent: 2 + type: Transform + - uid: 4826 + components: + - pos: 21.5,-28.5 + parent: 2 + type: Transform + - uid: 4827 + components: + - pos: 22.5,-28.5 + parent: 2 + type: Transform + - uid: 4828 + components: + - pos: 23.5,-28.5 + parent: 2 + type: Transform + - uid: 4829 + components: + - pos: 24.5,-28.5 + parent: 2 + type: Transform + - uid: 4830 + components: + - pos: 24.5,-25.5 + parent: 2 + type: Transform + - uid: 4831 + components: + - pos: 24.5,-26.5 + parent: 2 + type: Transform + - uid: 4832 + components: + - pos: 24.5,-27.5 + parent: 2 + type: Transform + - uid: 4833 + components: + - pos: 25.5,-25.5 + parent: 2 + type: Transform + - uid: 4834 + components: + - pos: 26.5,-25.5 + parent: 2 + type: Transform + - uid: 4839 + components: + - pos: 16.5,-30.5 + parent: 2 + type: Transform + - uid: 4840 + components: + - pos: 15.5,-30.5 + parent: 2 + type: Transform + - uid: 4841 + components: + - pos: 14.5,-30.5 + parent: 2 + type: Transform + - uid: 4842 + components: + - pos: 13.5,-30.5 + parent: 2 + type: Transform + - uid: 4843 + components: + - pos: 12.5,-30.5 + parent: 2 + type: Transform + - uid: 4844 + components: + - pos: 11.5,-30.5 + parent: 2 + type: Transform + - uid: 4845 + components: + - pos: 10.5,-30.5 + parent: 2 + type: Transform + - uid: 4846 + components: + - pos: 9.5,-30.5 + parent: 2 + type: Transform + - uid: 4847 + components: + - pos: 8.5,-30.5 + parent: 2 + type: Transform + - uid: 4848 + components: + - pos: 8.5,-31.5 + parent: 2 + type: Transform + - uid: 4849 + components: + - pos: 7.5,-31.5 + parent: 2 + type: Transform + - uid: 4850 + components: + - pos: 6.5,-31.5 + parent: 2 + type: Transform + - uid: 4851 + components: + - pos: 5.5,-31.5 + parent: 2 + type: Transform + - uid: 4852 + components: + - pos: 4.5,-31.5 + parent: 2 + type: Transform + - uid: 4853 + components: + - pos: 3.5,-31.5 + parent: 2 + type: Transform + - uid: 4854 + components: + - pos: 2.5,-31.5 + parent: 2 + type: Transform + - uid: 4855 + components: + - pos: 1.5,-31.5 + parent: 2 + type: Transform + - uid: 4856 + components: + - pos: 0.5,-31.5 + parent: 2 + type: Transform + - uid: 4857 + components: + - pos: -0.5,-31.5 + parent: 2 + type: Transform + - uid: 4858 + components: + - pos: -1.5,-31.5 + parent: 2 + type: Transform + - uid: 4859 + components: + - pos: -2.5,-31.5 + parent: 2 + type: Transform + - uid: 4860 + components: + - pos: -3.5,-31.5 + parent: 2 + type: Transform + - uid: 4861 + components: + - pos: -4.5,-31.5 + parent: 2 + type: Transform + - uid: 4862 + components: + - pos: -5.5,-31.5 + parent: 2 + type: Transform + - uid: 4863 + components: + - pos: -6.5,-31.5 + parent: 2 + type: Transform + - uid: 4864 + components: + - pos: -7.5,-31.5 + parent: 2 + type: Transform + - uid: 4865 + components: + - pos: -7.5,-30.5 + parent: 2 + type: Transform + - uid: 4866 + components: + - pos: -7.5,-29.5 + parent: 2 + type: Transform + - uid: 4867 + components: + - pos: -7.5,-28.5 + parent: 2 + type: Transform + - uid: 4868 + components: + - pos: -7.5,-27.5 + parent: 2 + type: Transform + - uid: 4869 + components: + - pos: -7.5,-26.5 + parent: 2 + type: Transform + - uid: 4870 + components: + - pos: -8.5,-26.5 + parent: 2 + type: Transform + - uid: 4871 + components: + - pos: -9.5,-26.5 + parent: 2 + type: Transform + - uid: 4872 + components: + - pos: -10.5,-26.5 + parent: 2 + type: Transform + - uid: 4873 + components: + - pos: -11.5,-26.5 + parent: 2 + type: Transform + - uid: 4874 + components: + - pos: 8.5,-29.5 + parent: 2 + type: Transform + - uid: 4875 + components: + - pos: 8.5,-28.5 + parent: 2 + type: Transform + - uid: 4876 + components: + - pos: 8.5,-27.5 + parent: 2 + type: Transform + - uid: 4877 + components: + - pos: 8.5,-26.5 + parent: 2 + type: Transform + - uid: 4878 + components: + - pos: 8.5,-25.5 + parent: 2 + type: Transform + - uid: 4879 + components: + - pos: 8.5,-24.5 + parent: 2 + type: Transform + - uid: 4880 + components: + - pos: 8.5,-23.5 + parent: 2 + type: Transform + - uid: 4881 + components: + - pos: 8.5,-22.5 + parent: 2 + type: Transform + - uid: 4882 + components: + - pos: 8.5,-21.5 + parent: 2 + type: Transform + - uid: 4883 + components: + - pos: 7.5,-21.5 + parent: 2 + type: Transform + - uid: 4884 + components: + - pos: 6.5,-21.5 + parent: 2 + type: Transform + - uid: 4885 + components: + - pos: 5.5,-21.5 + parent: 2 + type: Transform + - uid: 4886 + components: + - pos: 4.5,-21.5 + parent: 2 + type: Transform + - uid: 4887 + components: + - pos: 4.5,-20.5 + parent: 2 + type: Transform + - uid: 4888 + components: + - pos: 3.5,-20.5 + parent: 2 + type: Transform + - uid: 4889 + components: + - pos: 14.5,7.5 + parent: 2 + type: Transform + - uid: 4890 + components: + - pos: 14.5,8.5 + parent: 2 + type: Transform + - uid: 4891 + components: + - pos: 14.5,9.5 + parent: 2 + type: Transform + - uid: 4892 + components: + - pos: 14.5,10.5 + parent: 2 + type: Transform + - uid: 4893 + components: + - pos: 14.5,11.5 + parent: 2 + type: Transform + - uid: 4894 + components: + - pos: 14.5,12.5 + parent: 2 + type: Transform + - uid: 4895 + components: + - pos: 14.5,13.5 + parent: 2 + type: Transform + - uid: 4896 + components: + - pos: 14.5,14.5 + parent: 2 + type: Transform + - uid: 4897 + components: + - pos: 13.5,14.5 + parent: 2 + type: Transform + - uid: 4898 + components: + - pos: 13.5,15.5 + parent: 2 + type: Transform + - uid: 4899 + components: + - pos: 13.5,16.5 + parent: 2 + type: Transform + - uid: 4900 + components: + - pos: 13.5,17.5 + parent: 2 + type: Transform + - uid: 4901 + components: + - pos: 13.5,18.5 + parent: 2 + type: Transform + - uid: 4902 + components: + - pos: 13.5,19.5 + parent: 2 + type: Transform + - uid: 4903 + components: + - pos: 13.5,20.5 + parent: 2 + type: Transform + - uid: 4904 + components: + - pos: 14.5,20.5 + parent: 2 + type: Transform + - uid: 4905 + components: + - pos: 15.5,20.5 + parent: 2 + type: Transform + - uid: 4906 + components: + - pos: 15.5,21.5 + parent: 2 + type: Transform + - uid: 4907 + components: + - pos: 15.5,22.5 + parent: 2 + type: Transform + - uid: 4908 + components: + - pos: 15.5,23.5 + parent: 2 + type: Transform + - uid: 4909 + components: + - pos: 15.5,24.5 + parent: 2 + type: Transform + - uid: 4910 + components: + - pos: 15.5,25.5 + parent: 2 + type: Transform + - uid: 4911 + components: + - pos: 15.5,26.5 + parent: 2 + type: Transform + - uid: 4912 + components: + - pos: 15.5,27.5 + parent: 2 + type: Transform + - uid: 4913 + components: + - pos: 15.5,28.5 + parent: 2 + type: Transform + - uid: 4914 + components: + - pos: 15.5,29.5 + parent: 2 + type: Transform + - uid: 4915 + components: + - pos: 16.5,29.5 + parent: 2 + type: Transform + - uid: 4917 + components: + - pos: 12.5,20.5 + parent: 2 + type: Transform + - uid: 4918 + components: + - pos: 11.5,20.5 + parent: 2 + type: Transform + - uid: 4919 + components: + - pos: 10.5,20.5 + parent: 2 + type: Transform + - uid: 4920 + components: + - pos: 9.5,20.5 + parent: 2 + type: Transform + - uid: 4921 + components: + - pos: 8.5,20.5 + parent: 2 + type: Transform + - uid: 4922 + components: + - pos: 7.5,20.5 + parent: 2 + type: Transform + - uid: 4923 + components: + - pos: 6.5,20.5 + parent: 2 + type: Transform + - uid: 4924 + components: + - pos: 5.5,20.5 + parent: 2 + type: Transform + - uid: 4925 + components: + - pos: 4.5,20.5 + parent: 2 + type: Transform + - uid: 4926 + components: + - pos: 4.5,21.5 + parent: 2 + type: Transform + - uid: 4927 + components: + - pos: 4.5,22.5 + parent: 2 + type: Transform + - uid: 4928 + components: + - pos: 4.5,23.5 + parent: 2 + type: Transform + - uid: 4929 + components: + - pos: 4.5,24.5 + parent: 2 + type: Transform + - uid: 4930 + components: + - pos: 4.5,25.5 + parent: 2 + type: Transform + - uid: 4931 + components: + - pos: 4.5,26.5 + parent: 2 + type: Transform + - uid: 4932 + components: + - pos: 3.5,26.5 + parent: 2 + type: Transform + - uid: 4933 + components: + - pos: 2.5,26.5 + parent: 2 + type: Transform + - uid: 4934 + components: + - pos: 1.5,26.5 + parent: 2 + type: Transform + - uid: 4935 + components: + - pos: 13.5,10.5 + parent: 2 + type: Transform + - uid: 4936 + components: + - pos: 12.5,10.5 + parent: 2 + type: Transform + - uid: 4937 + components: + - pos: 11.5,10.5 + parent: 2 + type: Transform + - uid: 4938 + components: + - pos: 10.5,10.5 + parent: 2 + type: Transform + - uid: 4939 + components: + - pos: 9.5,10.5 + parent: 2 + type: Transform + - uid: 4940 + components: + - pos: 8.5,10.5 + parent: 2 + type: Transform + - uid: 4941 + components: + - pos: 7.5,10.5 + parent: 2 + type: Transform + - uid: 4942 + components: + - pos: 6.5,10.5 + parent: 2 + type: Transform + - uid: 4943 + components: + - pos: 5.5,10.5 + parent: 2 + type: Transform + - uid: 4944 + components: + - pos: 4.5,10.5 + parent: 2 + type: Transform + - uid: 4945 + components: + - pos: 3.5,10.5 + parent: 2 + type: Transform + - uid: 4946 + components: + - pos: 2.5,10.5 + parent: 2 + type: Transform + - uid: 4947 + components: + - pos: 1.5,10.5 + parent: 2 + type: Transform + - uid: 4948 + components: + - pos: 1.5,9.5 + parent: 2 + type: Transform + - uid: 4949 + components: + - pos: 1.5,8.5 + parent: 2 + type: Transform + - uid: 4952 + components: + - pos: 14.5,4.5 + parent: 2 + type: Transform + - uid: 4953 + components: + - pos: 14.5,3.5 + parent: 2 + type: Transform + - uid: 4956 + components: + - pos: 13.5,1.5 + parent: 2 + type: Transform + - uid: 4957 + components: + - pos: -14.5,2.5 + parent: 2 + type: Transform + - uid: 4958 + components: + - pos: -13.5,2.5 + parent: 2 + type: Transform + - uid: 4959 + components: + - pos: -13.5,3.5 + parent: 2 + type: Transform + - uid: 4960 + components: + - pos: -13.5,4.5 + parent: 2 + type: Transform + - uid: 4961 + components: + - pos: -13.5,5.5 + parent: 2 + type: Transform + - uid: 4962 + components: + - pos: -14.5,5.5 + parent: 2 + type: Transform + - uid: 4963 + components: + - pos: -14.5,6.5 + parent: 2 + type: Transform + - uid: 4964 + components: + - pos: -14.5,7.5 + parent: 2 + type: Transform + - uid: 4965 + components: + - pos: -14.5,8.5 + parent: 2 + type: Transform + - uid: 4966 + components: + - pos: -14.5,9.5 + parent: 2 + type: Transform + - uid: 4967 + components: + - pos: -14.5,10.5 + parent: 2 + type: Transform + - uid: 4968 + components: + - pos: -14.5,11.5 + parent: 2 + type: Transform + - uid: 4969 + components: + - pos: -14.5,12.5 + parent: 2 + type: Transform + - uid: 4970 + components: + - pos: -14.5,13.5 + parent: 2 + type: Transform + - uid: 4971 + components: + - pos: -14.5,14.5 + parent: 2 + type: Transform + - uid: 4972 + components: + - pos: -13.5,14.5 + parent: 2 + type: Transform + - uid: 4973 + components: + - pos: -13.5,15.5 + parent: 2 + type: Transform + - uid: 4974 + components: + - pos: -13.5,16.5 + parent: 2 + type: Transform + - uid: 4975 + components: + - pos: -13.5,17.5 + parent: 2 + type: Transform + - uid: 4976 + components: + - pos: -12.5,17.5 + parent: 2 + type: Transform + - uid: 4977 + components: + - pos: -11.5,17.5 + parent: 2 + type: Transform + - uid: 4978 + components: + - pos: -10.5,17.5 + parent: 2 + type: Transform + - uid: 4979 + components: + - pos: -10.5,16.5 + parent: 2 + type: Transform + - uid: 4980 + components: + - pos: -12.5,5.5 + parent: 2 + type: Transform + - uid: 4981 + components: + - pos: -11.5,5.5 + parent: 2 + type: Transform + - uid: 4982 + components: + - pos: -10.5,5.5 + parent: 2 + type: Transform + - uid: 4983 + components: + - pos: -10.5,4.5 + parent: 2 + type: Transform + - uid: 4984 + components: + - pos: -10.5,3.5 + parent: 2 + type: Transform + - uid: 4985 + components: + - pos: -10.5,2.5 + parent: 2 + type: Transform + - uid: 4986 + components: + - pos: -10.5,1.5 + parent: 2 + type: Transform + - uid: 4987 + components: + - pos: -10.5,0.5 + parent: 2 + type: Transform + - uid: 4988 + components: + - pos: -10.5,-0.5 + parent: 2 + type: Transform + - uid: 4989 + components: + - pos: -9.5,-0.5 + parent: 2 + type: Transform + - uid: 4990 + components: + - pos: -8.5,-0.5 + parent: 2 + type: Transform + - uid: 4991 + components: + - pos: -7.5,-0.5 + parent: 2 + type: Transform + - uid: 4992 + components: + - pos: -7.5,-1.5 + parent: 2 + type: Transform + - uid: 4993 + components: + - pos: -7.5,-2.5 + parent: 2 + type: Transform + - uid: 4994 + components: + - pos: -7.5,-3.5 + parent: 2 + type: Transform + - uid: 4995 + components: + - pos: -7.5,-4.5 + parent: 2 + type: Transform + - uid: 4996 + components: + - pos: -7.5,-5.5 + parent: 2 + type: Transform + - uid: 4997 + components: + - pos: -7.5,-6.5 + parent: 2 + type: Transform + - uid: 4998 + components: + - pos: -7.5,-7.5 + parent: 2 + type: Transform + - uid: 4999 + components: + - pos: -7.5,-8.5 + parent: 2 + type: Transform + - uid: 5000 + components: + - pos: -7.5,-9.5 + parent: 2 + type: Transform + - uid: 5001 + components: + - pos: -7.5,-10.5 + parent: 2 + type: Transform + - uid: 5002 + components: + - pos: -7.5,-11.5 + parent: 2 + type: Transform + - uid: 5003 + components: + - pos: -7.5,-12.5 + parent: 2 + type: Transform + - uid: 5004 + components: + - pos: -7.5,-13.5 + parent: 2 + type: Transform + - uid: 5005 + components: + - pos: -7.5,-14.5 + parent: 2 + type: Transform + - uid: 5006 + components: + - pos: -7.5,-15.5 + parent: 2 + type: Transform + - uid: 5007 + components: + - pos: -6.5,-15.5 + parent: 2 + type: Transform + - uid: 5010 + components: + - pos: 21.5,0.5 + parent: 2 + type: Transform + - uid: 5011 + components: + - pos: 22.5,0.5 + parent: 2 + type: Transform + - uid: 5012 + components: + - pos: 22.5,1.5 + parent: 2 + type: Transform + - uid: 5014 + components: + - pos: 18.5,-0.5 + parent: 2 + type: Transform + - uid: 5015 + components: + - pos: 18.5,-1.5 + parent: 2 + type: Transform + - uid: 5016 + components: + - pos: 18.5,-2.5 + parent: 2 + type: Transform + - uid: 5017 + components: + - pos: 18.5,-3.5 + parent: 2 + type: Transform + - uid: 5018 + components: + - pos: 18.5,-4.5 + parent: 2 + type: Transform + - uid: 5019 + components: + - pos: 17.5,-4.5 + parent: 2 + type: Transform + - uid: 5020 + components: + - pos: 16.5,-4.5 + parent: 2 + type: Transform + - uid: 5021 + components: + - pos: 15.5,-4.5 + parent: 2 + type: Transform + - uid: 5022 + components: + - pos: 14.5,-4.5 + parent: 2 + type: Transform + - uid: 5023 + components: + - pos: 13.5,-4.5 + parent: 2 + type: Transform + - uid: 5024 + components: + - pos: 13.5,-3.5 + parent: 2 + type: Transform + - uid: 5026 + components: + - pos: -13.5,10.5 + parent: 2 + type: Transform + - uid: 5027 + components: + - pos: -12.5,10.5 + parent: 2 + type: Transform + - uid: 5028 + components: + - pos: -11.5,10.5 + parent: 2 + type: Transform + - uid: 5029 + components: + - pos: -10.5,10.5 + parent: 2 + type: Transform + - uid: 5030 + components: + - pos: -9.5,10.5 + parent: 2 + type: Transform + - uid: 5031 + components: + - pos: -9.5,11.5 + parent: 2 + type: Transform + - uid: 5035 + components: + - pos: -41.5,-22.5 + parent: 2 + type: Transform + - uid: 5036 + components: + - pos: -42.5,-22.5 + parent: 2 + type: Transform + - uid: 5037 + components: + - pos: -42.5,-21.5 + parent: 2 + type: Transform + - uid: 5038 + components: + - pos: -42.5,-20.5 + parent: 2 + type: Transform + - uid: 5039 + components: + - pos: -42.5,-19.5 + parent: 2 + type: Transform + - uid: 5040 + components: + - pos: -41.5,-19.5 + parent: 2 + type: Transform + - uid: 5041 + components: + - pos: -40.5,-19.5 + parent: 2 + type: Transform + - uid: 5042 + components: + - pos: -39.5,-19.5 + parent: 2 + type: Transform + - uid: 5043 + components: + - pos: -38.5,-19.5 + parent: 2 + type: Transform + - uid: 5044 + components: + - pos: -37.5,-19.5 + parent: 2 + type: Transform + - uid: 5045 + components: + - pos: -37.5,-18.5 + parent: 2 + type: Transform + - uid: 5046 + components: + - pos: -37.5,-17.5 + parent: 2 + type: Transform + - uid: 5047 + components: + - pos: -37.5,-16.5 + parent: 2 + type: Transform + - uid: 5048 + components: + - pos: -37.5,-15.5 + parent: 2 + type: Transform + - uid: 5049 + components: + - pos: -36.5,-15.5 + parent: 2 + type: Transform + - uid: 5050 + components: + - pos: -35.5,-15.5 + parent: 2 + type: Transform + - uid: 5051 + components: + - pos: -34.5,-15.5 + parent: 2 + type: Transform + - uid: 5052 + components: + - pos: -33.5,-15.5 + parent: 2 + type: Transform + - uid: 5053 + components: + - pos: -33.5,-14.5 + parent: 2 + type: Transform + - uid: 5054 + components: + - pos: -33.5,-13.5 + parent: 2 + type: Transform + - uid: 5055 + components: + - pos: -33.5,-12.5 + parent: 2 + type: Transform + - uid: 5056 + components: + - pos: -34.5,-12.5 + parent: 2 + type: Transform + - uid: 5057 + components: + - pos: -37.5,-20.5 + parent: 2 + type: Transform + - uid: 5058 + components: + - pos: -37.5,-21.5 + parent: 2 + type: Transform + - uid: 5059 + components: + - pos: -37.5,-22.5 + parent: 2 + type: Transform + - uid: 5060 + components: + - pos: -36.5,-22.5 + parent: 2 + type: Transform + - uid: 5061 + components: + - pos: -35.5,-22.5 + parent: 2 + type: Transform + - uid: 5062 + components: + - pos: -34.5,-22.5 + parent: 2 + type: Transform + - uid: 5063 + components: + - pos: -33.5,-22.5 + parent: 2 + type: Transform + - uid: 5064 + components: + - pos: -32.5,-22.5 + parent: 2 + type: Transform + - uid: 5065 + components: + - pos: -31.5,-22.5 + parent: 2 + type: Transform + - uid: 5066 + components: + - pos: -30.5,-22.5 + parent: 2 + type: Transform + - uid: 5067 + components: + - pos: -29.5,-22.5 + parent: 2 + type: Transform + - uid: 5068 + components: + - pos: -28.5,-22.5 + parent: 2 + type: Transform + - uid: 5069 + components: + - pos: -27.5,-22.5 + parent: 2 + type: Transform + - uid: 5070 + components: + - pos: -27.5,-21.5 + parent: 2 + type: Transform + - uid: 5071 + components: + - pos: -26.5,-21.5 + parent: 2 + type: Transform + - uid: 5072 + components: + - pos: -15.5,5.5 + parent: 2 + type: Transform + - uid: 5073 + components: + - pos: -16.5,5.5 + parent: 2 + type: Transform + - uid: 5074 + components: + - pos: -16.5,4.5 + parent: 2 + type: Transform + - uid: 5075 + components: + - pos: -17.5,4.5 + parent: 2 + type: Transform + - uid: 5076 + components: + - pos: -18.5,4.5 + parent: 2 + type: Transform + - uid: 5077 + components: + - pos: -19.5,4.5 + parent: 2 + type: Transform + - uid: 5078 + components: + - pos: -20.5,4.5 + parent: 2 + type: Transform + - uid: 5079 + components: + - pos: -21.5,4.5 + parent: 2 + type: Transform + - uid: 5080 + components: + - pos: -22.5,4.5 + parent: 2 + type: Transform + - uid: 5081 + components: + - pos: -23.5,4.5 + parent: 2 + type: Transform + - uid: 5082 + components: + - pos: -24.5,4.5 + parent: 2 + type: Transform + - uid: 5083 + components: + - pos: -25.5,4.5 + parent: 2 + type: Transform + - uid: 5084 + components: + - pos: -25.5,3.5 + parent: 2 + type: Transform + - uid: 5085 + components: + - pos: -25.5,2.5 + parent: 2 + type: Transform + - uid: 5086 + components: + - pos: -25.5,1.5 + parent: 2 + type: Transform + - uid: 5087 + components: + - pos: -25.5,0.5 + parent: 2 + type: Transform + - uid: 5088 + components: + - pos: -25.5,-0.5 + parent: 2 + type: Transform + - uid: 5089 + components: + - pos: -25.5,-1.5 + parent: 2 + type: Transform + - uid: 5090 + components: + - pos: -25.5,-2.5 + parent: 2 + type: Transform + - uid: 5091 + components: + - pos: -25.5,-3.5 + parent: 2 + type: Transform + - uid: 5092 + components: + - pos: -25.5,-4.5 + parent: 2 + type: Transform + - uid: 5093 + components: + - pos: -24.5,-4.5 + parent: 2 + type: Transform + - uid: 5094 + components: + - pos: -23.5,-4.5 + parent: 2 + type: Transform + - uid: 5095 + components: + - pos: -23.5,-3.5 + parent: 2 + type: Transform + - uid: 5098 + components: + - pos: -16.5,9.5 + parent: 2 + type: Transform + - uid: 5099 + components: + - pos: -17.5,9.5 + parent: 2 + type: Transform + - uid: 5100 + components: + - pos: -18.5,9.5 + parent: 2 + type: Transform + - uid: 5101 + components: + - pos: -19.5,9.5 + parent: 2 + type: Transform + - uid: 5102 + components: + - pos: -19.5,10.5 + parent: 2 + type: Transform + - uid: 5103 + components: + - pos: -19.5,11.5 + parent: 2 + type: Transform + - uid: 5104 + components: + - pos: -34.5,4.5 + parent: 2 + type: Transform + - uid: 5105 + components: + - pos: -34.5,3.5 + parent: 2 + type: Transform + - uid: 5108 + components: + - pos: -54.5,15.5 + parent: 2 + type: Transform + - uid: 5109 + components: + - pos: -54.5,14.5 + parent: 2 + type: Transform + - uid: 5110 + components: + - pos: -53.5,14.5 + parent: 2 + type: Transform + - uid: 5111 + components: + - pos: -52.5,14.5 + parent: 2 + type: Transform + - uid: 5112 + components: + - pos: -51.5,14.5 + parent: 2 + type: Transform + - uid: 5113 + components: + - pos: -51.5,13.5 + parent: 2 + type: Transform + - uid: 5114 + components: + - pos: -51.5,12.5 + parent: 2 + type: Transform + - uid: 5115 + components: + - pos: -51.5,11.5 + parent: 2 + type: Transform + - uid: 5116 + components: + - pos: -52.5,11.5 + parent: 2 + type: Transform + - uid: 5117 + components: + - pos: -52.5,10.5 + parent: 2 + type: Transform + - uid: 5118 + components: + - pos: -52.5,9.5 + parent: 2 + type: Transform + - uid: 5119 + components: + - pos: -52.5,8.5 + parent: 2 + type: Transform + - uid: 5120 + components: + - pos: -51.5,8.5 + parent: 2 + type: Transform + - uid: 5121 + components: + - pos: -50.5,8.5 + parent: 2 + type: Transform + - uid: 5122 + components: + - pos: -49.5,8.5 + parent: 2 + type: Transform + - uid: 5123 + components: + - pos: -48.5,8.5 + parent: 2 + type: Transform + - uid: 5124 + components: + - pos: -47.5,8.5 + parent: 2 + type: Transform + - uid: 5125 + components: + - pos: -46.5,8.5 + parent: 2 + type: Transform + - uid: 5126 + components: + - pos: -45.5,8.5 + parent: 2 + type: Transform + - uid: 5127 + components: + - pos: -45.5,9.5 + parent: 2 + type: Transform + - uid: 5128 + components: + - pos: -45.5,10.5 + parent: 2 + type: Transform + - uid: 5129 + components: + - pos: -44.5,8.5 + parent: 2 + type: Transform + - uid: 5130 + components: + - pos: -43.5,8.5 + parent: 2 + type: Transform + - uid: 5131 + components: + - pos: -42.5,8.5 + parent: 2 + type: Transform + - uid: 5132 + components: + - pos: -41.5,8.5 + parent: 2 + type: Transform + - uid: 5133 + components: + - pos: -40.5,8.5 + parent: 2 + type: Transform + - uid: 5134 + components: + - pos: -39.5,8.5 + parent: 2 + type: Transform + - uid: 5135 + components: + - pos: -38.5,8.5 + parent: 2 + type: Transform + - uid: 5136 + components: + - pos: -37.5,8.5 + parent: 2 + type: Transform + - uid: 5137 + components: + - pos: -36.5,8.5 + parent: 2 + type: Transform + - uid: 5138 + components: + - pos: -35.5,8.5 + parent: 2 + type: Transform + - uid: 5139 + components: + - pos: -34.5,8.5 + parent: 2 + type: Transform + - uid: 5140 + components: + - pos: -34.5,9.5 + parent: 2 + type: Transform + - uid: 5141 + components: + - pos: -34.5,10.5 + parent: 2 + type: Transform + - uid: 5142 + components: + - pos: -34.5,11.5 + parent: 2 + type: Transform + - uid: 5143 + components: + - pos: -33.5,11.5 + parent: 2 + type: Transform + - uid: 5144 + components: + - pos: -32.5,11.5 + parent: 2 + type: Transform + - uid: 5145 + components: + - pos: -34.5,7.5 + parent: 2 + type: Transform + - uid: 5146 + components: + - pos: -34.5,6.5 + parent: 2 + type: Transform + - uid: 5147 + components: + - pos: -34.5,5.5 + parent: 2 + type: Transform + - uid: 5148 + components: + - pos: -19.5,12.5 + parent: 2 + type: Transform + - uid: 5149 + components: + - pos: -19.5,13.5 + parent: 2 + type: Transform + - uid: 5150 + components: + - pos: -20.5,13.5 + parent: 2 + type: Transform + - uid: 5151 + components: + - pos: -20.5,14.5 + parent: 2 + type: Transform + - uid: 5153 + components: + - pos: -43.5,-19.5 + parent: 2 + type: Transform + - uid: 5154 + components: + - pos: -44.5,-19.5 + parent: 2 + type: Transform + - uid: 5155 + components: + - pos: -45.5,-19.5 + parent: 2 + type: Transform + - uid: 5156 + components: + - pos: -45.5,-18.5 + parent: 2 + type: Transform + - uid: 5157 + components: + - pos: -45.5,-17.5 + parent: 2 + type: Transform + - uid: 5158 + components: + - pos: -45.5,-16.5 + parent: 2 + type: Transform + - uid: 5159 + components: + - pos: -46.5,-16.5 + parent: 2 + type: Transform + - uid: 5160 + components: + - pos: -47.5,-16.5 + parent: 2 + type: Transform + - uid: 5161 + components: + - pos: -48.5,-16.5 + parent: 2 + type: Transform + - uid: 5162 + components: + - pos: -49.5,-16.5 + parent: 2 + type: Transform + - uid: 5163 + components: + - pos: -50.5,-16.5 + parent: 2 + type: Transform + - uid: 5164 + components: + - pos: -51.5,-16.5 + parent: 2 + type: Transform + - uid: 5165 + components: + - pos: -52.5,-16.5 + parent: 2 + type: Transform + - uid: 5166 + components: + - pos: -52.5,-15.5 + parent: 2 + type: Transform + - uid: 5167 + components: + - pos: -52.5,-14.5 + parent: 2 + type: Transform + - uid: 5168 + components: + - pos: -52.5,-13.5 + parent: 2 + type: Transform + - uid: 5169 + components: + - pos: -53.5,-13.5 + parent: 2 + type: Transform + - uid: 5171 + components: + - pos: -45.5,7.5 + parent: 2 + type: Transform + - uid: 5172 + components: + - pos: -45.5,6.5 + parent: 2 + type: Transform + - uid: 5173 + components: + - pos: -45.5,5.5 + parent: 2 + type: Transform + - uid: 5174 + components: + - pos: -45.5,4.5 + parent: 2 + type: Transform + - uid: 5175 + components: + - pos: -45.5,3.5 + parent: 2 + type: Transform + - uid: 5176 + components: + - pos: -45.5,2.5 + parent: 2 + type: Transform + - uid: 5177 + components: + - pos: -46.5,2.5 + parent: 2 + type: Transform + - uid: 5178 + components: + - pos: -47.5,2.5 + parent: 2 + type: Transform + - uid: 5180 + components: + - pos: -9.5,-1.5 + parent: 2 + type: Transform + - uid: 5182 + components: + - pos: -6.5,-10.5 + parent: 2 + type: Transform + - uid: 5183 + components: + - pos: -5.5,-10.5 + parent: 2 + type: Transform + - uid: 5184 + components: + - pos: -4.5,-10.5 + parent: 2 + type: Transform + - uid: 5185 + components: + - pos: -3.5,-10.5 + parent: 2 + type: Transform + - uid: 5186 + components: + - pos: -2.5,-10.5 + parent: 2 + type: Transform + - uid: 5187 + components: + - pos: -1.5,-10.5 + parent: 2 + type: Transform + - uid: 5188 + components: + - pos: -0.5,-10.5 + parent: 2 + type: Transform + - uid: 5189 + components: + - pos: -0.5,-9.5 + parent: 2 + type: Transform + - uid: 5190 + components: + - pos: -0.5,-8.5 + parent: 2 + type: Transform + - uid: 5191 + components: + - pos: -0.5,-7.5 + parent: 2 + type: Transform + - uid: 5192 + components: + - pos: -1.5,-7.5 + parent: 2 + type: Transform + - uid: 5194 + components: + - pos: -37.5,-23.5 + parent: 2 + type: Transform + - uid: 5195 + components: + - pos: -37.5,-24.5 + parent: 2 + type: Transform + - uid: 5196 + components: + - pos: -38.5,-24.5 + parent: 2 + type: Transform + - uid: 5197 + components: + - pos: -39.5,-24.5 + parent: 2 + type: Transform + - uid: 5199 + components: + - pos: -8.5,-14.5 + parent: 2 + type: Transform + - uid: 5200 + components: + - pos: -9.5,-14.5 + parent: 2 + type: Transform + - uid: 5201 + components: + - pos: -10.5,-14.5 + parent: 2 + type: Transform + - uid: 5202 + components: + - pos: -11.5,-14.5 + parent: 2 + type: Transform + - uid: 5203 + components: + - pos: -12.5,-14.5 + parent: 2 + type: Transform + - uid: 5204 + components: + - pos: -13.5,-14.5 + parent: 2 + type: Transform + - uid: 5205 + components: + - pos: -14.5,-14.5 + parent: 2 + type: Transform + - uid: 5206 + components: + - pos: -14.5,-13.5 + parent: 2 + type: Transform + - uid: 5208 + components: + - pos: -52.5,16.5 + parent: 2 + type: Transform + - uid: 5209 + components: + - pos: -51.5,16.5 + parent: 2 + type: Transform + - uid: 5210 + components: + - pos: -51.5,15.5 + parent: 2 + type: Transform + - uid: 5211 + components: + - pos: 38.5,10.5 + parent: 2 + type: Transform + - uid: 5212 + components: + - pos: 42.5,5.5 + parent: 2 + type: Transform + - uid: 5213 + components: + - pos: 42.5,6.5 + parent: 2 + type: Transform + - uid: 5214 + components: + - pos: 43.5,6.5 + parent: 2 + type: Transform + - uid: 5215 + components: + - pos: 44.5,6.5 + parent: 2 + type: Transform + - uid: 5216 + components: + - pos: 45.5,6.5 + parent: 2 + type: Transform + - uid: 5217 + components: + - pos: 46.5,6.5 + parent: 2 + type: Transform + - uid: 5218 + components: + - pos: 47.5,6.5 + parent: 2 + type: Transform + - uid: 5219 + components: + - pos: 47.5,5.5 + parent: 2 + type: Transform + - uid: 5571 + components: + - pos: 14.5,-29.5 + parent: 2 + type: Transform + - uid: 5572 + components: + - pos: 14.5,-28.5 + parent: 2 + type: Transform + - uid: 5585 + components: + - pos: 17.5,-5.5 + parent: 2 + type: Transform + - uid: 5586 + components: + - pos: 17.5,-6.5 + parent: 2 + type: Transform + - uid: 5587 + components: + - pos: 17.5,-7.5 + parent: 2 + type: Transform + - uid: 5588 + components: + - pos: 17.5,-8.5 + parent: 2 + type: Transform + - uid: 5589 + components: + - pos: 17.5,-9.5 + parent: 2 + type: Transform + - uid: 5590 + components: + - pos: 17.5,-10.5 + parent: 2 + type: Transform + - uid: 5591 + components: + - pos: 17.5,-11.5 + parent: 2 + type: Transform + - uid: 5592 + components: + - pos: 17.5,-12.5 + parent: 2 + type: Transform + - uid: 5593 + components: + - pos: 17.5,-13.5 + parent: 2 + type: Transform + - uid: 5594 + components: + - pos: 16.5,-13.5 + parent: 2 + type: Transform + - uid: 5595 + components: + - pos: 16.5,-14.5 + parent: 2 + type: Transform + - uid: 5596 + components: + - pos: 16.5,-15.5 + parent: 2 + type: Transform + - uid: 5597 + components: + - pos: 15.5,-15.5 + parent: 2 + type: Transform + - uid: 5598 + components: + - pos: 14.5,-15.5 + parent: 2 + type: Transform + - uid: 5599 + components: + - pos: 13.5,-15.5 + parent: 2 + type: Transform + - uid: 5600 + components: + - pos: 13.5,-14.5 + parent: 2 + type: Transform + - uid: 5749 + components: + - pos: -5.5,-15.5 + parent: 2 + type: Transform + - uid: 5842 + components: + - pos: -37.5,-27.5 + parent: 2 + type: Transform + - uid: 5843 + components: + - pos: -37.5,-26.5 + parent: 2 + type: Transform + - uid: 5844 + components: + - pos: -37.5,-25.5 + parent: 2 + type: Transform + - uid: 5872 + components: + - pos: -37.5,-28.5 + parent: 2 + type: Transform + - uid: 6392 + components: + - pos: -15.5,-14.5 + parent: 2 + type: Transform + - uid: 6393 + components: + - pos: -15.5,-15.5 + parent: 2 + type: Transform + - uid: 6394 + components: + - pos: -15.5,-16.5 + parent: 2 + type: Transform + - uid: 6395 + components: + - pos: -15.5,-17.5 + parent: 2 + type: Transform + - uid: 6396 + components: + - pos: -15.5,-18.5 + parent: 2 + type: Transform + - uid: 6397 + components: + - pos: -16.5,-18.5 + parent: 2 + type: Transform + - uid: 6398 + components: + - pos: -17.5,-18.5 + parent: 2 + type: Transform + - uid: 6399 + components: + - pos: -18.5,-18.5 + parent: 2 + type: Transform + - uid: 6400 + components: + - pos: -19.5,-18.5 + parent: 2 + type: Transform + - uid: 6401 + components: + - pos: -19.5,-17.5 + parent: 2 + type: Transform + - uid: 6402 + components: + - pos: -19.5,-16.5 + parent: 2 + type: Transform + - uid: 6403 + components: + - pos: -19.5,-15.5 + parent: 2 + type: Transform + - uid: 6556 + components: + - pos: -37.5,-29.5 + parent: 2 + type: Transform + - uid: 6557 + components: + - pos: -37.5,-30.5 + parent: 2 + type: Transform + - uid: 6558 + components: + - pos: -36.5,-30.5 + parent: 2 + type: Transform + - uid: 6559 + components: + - pos: -35.5,-30.5 + parent: 2 + type: Transform + - uid: 6560 + components: + - pos: -34.5,-30.5 + parent: 2 + type: Transform + - uid: 6561 + components: + - pos: -33.5,-30.5 + parent: 2 + type: Transform + - uid: 6562 + components: + - pos: -32.5,-30.5 + parent: 2 + type: Transform + - uid: 6563 + components: + - pos: -31.5,-30.5 + parent: 2 + type: Transform + - uid: 6564 + components: + - pos: -30.5,-30.5 + parent: 2 + type: Transform + - uid: 6565 + components: + - pos: -29.5,-30.5 + parent: 2 + type: Transform + - uid: 6566 + components: + - pos: -28.5,-30.5 + parent: 2 + type: Transform + - uid: 6567 + components: + - pos: -27.5,-30.5 + parent: 2 + type: Transform + - uid: 6568 + components: + - pos: -26.5,-30.5 + parent: 2 + type: Transform + - uid: 6569 + components: + - pos: -25.5,-30.5 + parent: 2 + type: Transform + - uid: 6570 + components: + - pos: -24.5,-30.5 + parent: 2 + type: Transform + - uid: 6571 + components: + - pos: -23.5,-30.5 + parent: 2 + type: Transform + - uid: 6572 + components: + - pos: -22.5,-30.5 + parent: 2 + type: Transform + - uid: 6573 + components: + - pos: -21.5,-30.5 + parent: 2 + type: Transform + - uid: 6574 + components: + - pos: -20.5,-30.5 + parent: 2 + type: Transform + - uid: 6575 + components: + - pos: -19.5,-30.5 + parent: 2 + type: Transform + - uid: 6576 + components: + - pos: -18.5,-30.5 + parent: 2 + type: Transform + - uid: 6577 + components: + - pos: -17.5,-30.5 + parent: 2 + type: Transform + - uid: 6578 + components: + - pos: -16.5,-30.5 + parent: 2 + type: Transform + - uid: 6579 + components: + - pos: -16.5,-29.5 + parent: 2 + type: Transform + - uid: 6580 + components: + - pos: -16.5,-28.5 + parent: 2 + type: Transform + - uid: 9347 + components: + - pos: 38.5,-16.5 + parent: 2 + type: Transform +- proto: CableTerminal + entities: + - uid: 2090 + components: + - pos: 28.5,7.5 + parent: 2 + type: Transform + - uid: 2159 + components: + - pos: 32.5,7.5 + parent: 2 + type: Transform + - uid: 2979 + components: + - pos: 43.5,6.5 + parent: 2 + type: Transform + - uid: 3013 + components: + - pos: 18.5,11.5 + parent: 2 + type: Transform +- proto: CargoRequestComputerCircuitboard + entities: + - uid: 9322 + components: + - pos: 44.41938,-16.510994 + parent: 2 + type: Transform +- proto: CargoShuttleConsoleCircuitboard + entities: + - uid: 9321 + components: + - pos: 44.658962,-16.312939 + parent: 2 + type: Transform +- proto: Carpet + entities: + - uid: 1567 + components: + - pos: -32.5,-2.5 + parent: 2 + type: Transform + - uid: 1568 + components: + - pos: -32.5,-1.5 + parent: 2 + type: Transform + - uid: 1569 + components: + - pos: -31.5,-2.5 + parent: 2 + type: Transform + - uid: 1570 + components: + - pos: -31.5,-1.5 + parent: 2 + type: Transform + - uid: 6962 + components: + - pos: 38.5,-32.5 + parent: 2 + type: Transform + - uid: 6963 + components: + - pos: 37.5,-32.5 + parent: 2 + type: Transform +- proto: CarpetBlack + entities: + - uid: 1576 + components: + - pos: -35.5,0.5 + parent: 2 + type: Transform + - uid: 1577 + components: + - pos: -35.5,-0.5 + parent: 2 + type: Transform + - uid: 1580 + components: + - pos: -34.5,0.5 + parent: 2 + type: Transform + - uid: 1581 + components: + - pos: -34.5,-0.5 + parent: 2 + type: Transform +- proto: CarpetBlue + entities: + - uid: 1571 + components: + - pos: -32.5,2.5 + parent: 2 + type: Transform + - uid: 1572 + components: + - pos: -32.5,1.5 + parent: 2 + type: Transform + - uid: 1573 + components: + - pos: -31.5,2.5 + parent: 2 + type: Transform + - uid: 1574 + components: + - pos: -31.5,1.5 + parent: 2 + type: Transform +- proto: CarpetChapel + entities: + - uid: 1583 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-8.5 + parent: 2 + type: Transform + - uid: 1584 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-11.5 + parent: 2 + type: Transform + - uid: 1585 + components: + - pos: -39.5,-12.5 + parent: 2 + type: Transform + - uid: 1586 + components: + - pos: -39.5,-9.5 + parent: 2 + type: Transform + - uid: 1587 + components: + - rot: 3.141592653589793 rad + pos: -35.5,-8.5 + parent: 2 + type: Transform + - uid: 1588 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-12.5 + parent: 2 + type: Transform + - uid: 1589 + components: + - rot: 3.141592653589793 rad + pos: -35.5,-11.5 + parent: 2 + type: Transform + - uid: 1590 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-9.5 + parent: 2 + type: Transform + - uid: 1591 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-8.5 + parent: 2 + type: Transform + - uid: 1592 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-9.5 + parent: 2 + type: Transform + - uid: 1593 + components: + - pos: -36.5,-9.5 + parent: 2 + type: Transform + - uid: 1594 + components: + - pos: -36.5,-12.5 + parent: 2 + type: Transform + - uid: 1595 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-11.5 + parent: 2 + type: Transform + - uid: 1596 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-11.5 + parent: 2 + type: Transform + - uid: 1597 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-8.5 + parent: 2 + type: Transform + - uid: 1598 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-12.5 + parent: 2 + type: Transform +- proto: CarpetGreen + entities: + - uid: 8716 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-21.5 + parent: 2 + type: Transform + - uid: 8717 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-22.5 + parent: 2 + type: Transform + - uid: 8718 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-21.5 + parent: 2 + type: Transform + - uid: 8719 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-22.5 + parent: 2 + type: Transform + - uid: 8720 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-21.5 + parent: 2 + type: Transform + - uid: 8721 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-22.5 + parent: 2 + type: Transform + - uid: 8722 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-26.5 + parent: 2 + type: Transform + - uid: 8723 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-25.5 + parent: 2 + type: Transform + - uid: 8724 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-24.5 + parent: 2 + type: Transform + - uid: 8725 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-26.5 + parent: 2 + type: Transform + - uid: 8726 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-25.5 + parent: 2 + type: Transform + - uid: 8727 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-24.5 + parent: 2 + type: Transform +- proto: CarpetOrange + entities: + - uid: 1652 + components: + - pos: 10.5,14.5 + parent: 2 + type: Transform + - uid: 1653 + components: + - pos: 10.5,15.5 + parent: 2 + type: Transform + - uid: 1654 + components: + - pos: 9.5,14.5 + parent: 2 + type: Transform + - uid: 1655 + components: + - pos: 9.5,15.5 + parent: 2 + type: Transform + - uid: 1656 + components: + - pos: 8.5,14.5 + parent: 2 + type: Transform + - uid: 1657 + components: + - pos: 8.5,15.5 + parent: 2 + type: Transform + - uid: 9552 + components: + - pos: 16.5,23.5 + parent: 2 + type: Transform + - uid: 9553 + components: + - pos: 17.5,23.5 + parent: 2 + type: Transform + - uid: 9554 + components: + - pos: 18.5,23.5 + parent: 2 + type: Transform +- proto: CarpetPurple + entities: + - uid: 1599 + components: + - pos: -42.5,-9.5 + parent: 2 + type: Transform + - uid: 1600 + components: + - pos: -42.5,-10.5 + parent: 2 + type: Transform + - uid: 1601 + components: + - pos: -42.5,-11.5 + parent: 2 + type: Transform + - uid: 1602 + components: + - pos: -41.5,-9.5 + parent: 2 + type: Transform + - uid: 1603 + components: + - pos: -41.5,-10.5 + parent: 2 + type: Transform + - uid: 1604 + components: + - pos: -41.5,-11.5 + parent: 2 + type: Transform + - uid: 8891 + components: + - pos: -51.5,-22.5 + parent: 2 + type: Transform + - uid: 8892 + components: + - pos: -51.5,-21.5 + parent: 2 + type: Transform + - uid: 8893 + components: + - pos: -50.5,-22.5 + parent: 2 + type: Transform + - uid: 8894 + components: + - pos: -50.5,-21.5 + parent: 2 + type: Transform + - uid: 8895 + components: + - pos: -49.5,-22.5 + parent: 2 + type: Transform + - uid: 8896 + components: + - pos: -49.5,-21.5 + parent: 2 + type: Transform +- proto: CarpetSBlue + entities: + - uid: 9555 + components: + - pos: 46.5,-11.5 + parent: 2 + type: Transform + - uid: 9556 + components: + - pos: 46.5,-10.5 + parent: 2 + type: Transform + - uid: 9557 + components: + - pos: 47.5,-11.5 + parent: 2 + type: Transform + - uid: 9558 + components: + - pos: 47.5,-10.5 + parent: 2 + type: Transform + - uid: 9559 + components: + - pos: 48.5,-11.5 + parent: 2 + type: Transform + - uid: 9560 + components: + - pos: 48.5,-10.5 + parent: 2 + type: Transform + - uid: 9561 + components: + - pos: 49.5,-11.5 + parent: 2 + type: Transform + - uid: 9562 + components: + - pos: 49.5,-10.5 + parent: 2 + type: Transform +- proto: Catwalk + entities: + - uid: 98 + components: + - pos: 37.5,-34.5 + parent: 2 + type: Transform + - uid: 248 + components: + - pos: -7.5,-36.5 + parent: 2 + type: Transform + - uid: 316 + components: + - pos: 3.5,-31.5 + parent: 2 + type: Transform + - uid: 317 + components: + - pos: 4.5,-31.5 + parent: 2 + type: Transform + - uid: 427 + components: + - pos: 41.5,-2.5 + parent: 2 + type: Transform + - uid: 617 + components: + - pos: 23.5,22.5 + parent: 2 + type: Transform + - uid: 834 + components: + - pos: 37.5,-18.5 + parent: 2 + type: Transform + - uid: 872 + components: + - pos: 38.5,-18.5 + parent: 2 + type: Transform + - uid: 900 + components: + - pos: 24.5,22.5 + parent: 2 + type: Transform + - uid: 935 + components: + - pos: 46.5,6.5 + parent: 2 + type: Transform + - uid: 961 + components: + - pos: 21.5,22.5 + parent: 2 + type: Transform + - uid: 1098 + components: + - pos: 41.5,-22.5 + parent: 2 + type: Transform + - uid: 1185 + components: + - pos: 41.5,-21.5 + parent: 2 + type: Transform + - uid: 1186 + components: + - pos: 41.5,-20.5 + parent: 2 + type: Transform + - uid: 1191 + components: + - pos: 41.5,-19.5 + parent: 2 + type: Transform + - uid: 1197 + components: + - pos: 41.5,-18.5 + parent: 2 + type: Transform + - uid: 1217 + components: + - pos: 40.5,-18.5 + parent: 2 + type: Transform + - uid: 1352 + components: + - pos: 35.5,-34.5 + parent: 2 + type: Transform + - uid: 1353 + components: + - pos: 36.5,-34.5 + parent: 2 + type: Transform + - uid: 1400 + components: + - pos: 38.5,-34.5 + parent: 2 + type: Transform + - uid: 1429 + components: + - pos: -51.5,-0.5 + parent: 2 + type: Transform + - uid: 1441 + components: + - pos: -51.5,0.5 + parent: 2 + type: Transform + - uid: 1472 + components: + - pos: 41.5,-25.5 + parent: 2 + type: Transform + - uid: 1479 + components: + - pos: 60.5,24.5 + parent: 2 + type: Transform + - uid: 1480 + components: + - pos: 60.5,16.5 + parent: 2 + type: Transform + - uid: 1792 + components: + - pos: 60.5,20.5 + parent: 2 + type: Transform + - uid: 1880 + components: + - pos: 17.5,27.5 + parent: 2 + type: Transform + - uid: 1882 + components: + - pos: 18.5,27.5 + parent: 2 + type: Transform + - uid: 1924 + components: + - pos: -51.5,-1.5 + parent: 2 + type: Transform + - uid: 1956 + components: + - pos: 21.5,25.5 + parent: 2 + type: Transform + - uid: 1991 + components: + - pos: 21.5,26.5 + parent: 2 + type: Transform + - uid: 1996 + components: + - pos: 21.5,27.5 + parent: 2 + type: Transform + - uid: 2003 + components: + - pos: 21.5,24.5 + parent: 2 + type: Transform + - uid: 2007 + components: + - pos: 21.5,23.5 + parent: 2 + type: Transform + - uid: 2070 + components: + - pos: 23.5,18.5 + parent: 2 + type: Transform + - uid: 2071 + components: + - pos: 23.5,19.5 + parent: 2 + type: Transform + - uid: 2072 + components: + - pos: 23.5,20.5 + parent: 2 + type: Transform + - uid: 2074 + components: + - pos: 21.5,20.5 + parent: 2 + type: Transform + - uid: 2076 + components: + - pos: 21.5,18.5 + parent: 2 + type: Transform + - uid: 2084 + components: + - pos: 26.5,22.5 + parent: 2 + type: Transform + - uid: 2085 + components: + - pos: 27.5,22.5 + parent: 2 + type: Transform + - uid: 2086 + components: + - pos: 28.5,22.5 + parent: 2 + type: Transform + - uid: 2146 + components: + - pos: 28.5,5.5 + parent: 2 + type: Transform + - uid: 2147 + components: + - pos: 32.5,5.5 + parent: 2 + type: Transform + - uid: 2149 + components: + - pos: 30.5,5.5 + parent: 2 + type: Transform + - uid: 2157 + components: + - pos: 40.5,-25.5 + parent: 2 + type: Transform + - uid: 2240 + components: + - pos: 40.5,-26.5 + parent: 2 + type: Transform + - uid: 2241 + components: + - pos: 39.5,-34.5 + parent: 2 + type: Transform + - uid: 2242 + components: + - pos: 40.5,-27.5 + parent: 2 + type: Transform + - uid: 2304 + components: + - pos: 40.5,-28.5 + parent: 2 + type: Transform + - uid: 2308 + components: + - pos: 34.5,-34.5 + parent: 2 + type: Transform + - uid: 2309 + components: + - pos: 33.5,-34.5 + parent: 2 + type: Transform + - uid: 2379 + components: + - pos: 31.5,-34.5 + parent: 2 + type: Transform + - uid: 2388 + components: + - pos: 30.5,-34.5 + parent: 2 + type: Transform + - uid: 2391 + components: + - pos: 29.5,-34.5 + parent: 2 + type: Transform + - uid: 2458 + components: + - pos: 28.5,-34.5 + parent: 2 + type: Transform + - uid: 2459 + components: + - pos: 27.5,-34.5 + parent: 2 + type: Transform + - uid: 2474 + components: + - pos: 17.5,-28.5 + parent: 2 + type: Transform + - uid: 2493 + components: + - pos: 20.5,-25.5 + parent: 2 + type: Transform + - uid: 2495 + components: + - pos: 25.5,-34.5 + parent: 2 + type: Transform + - uid: 2533 + components: + - pos: 24.5,-33.5 + parent: 2 + type: Transform + - uid: 2614 + components: + - pos: 20.5,-28.5 + parent: 2 + type: Transform + - uid: 2615 + components: + - pos: 18.5,-28.5 + parent: 2 + type: Transform + - uid: 2968 + components: + - pos: 32.5,4.5 + parent: 2 + type: Transform + - uid: 2969 + components: + - pos: 31.5,4.5 + parent: 2 + type: Transform + - uid: 2970 + components: + - pos: 30.5,4.5 + parent: 2 + type: Transform + - uid: 2971 + components: + - pos: 29.5,4.5 + parent: 2 + type: Transform + - uid: 2972 + components: + - pos: 28.5,4.5 + parent: 2 + type: Transform + - uid: 2973 + components: + - pos: 47.5,6.5 + parent: 2 + type: Transform + - uid: 3022 + components: + - pos: 20.5,28.5 + parent: 2 + type: Transform + - uid: 3023 + components: + - pos: 21.5,28.5 + parent: 2 + type: Transform + - uid: 3024 + components: + - pos: 24.5,28.5 + parent: 2 + type: Transform + - uid: 3025 + components: + - pos: 25.5,28.5 + parent: 2 + type: Transform + - uid: 3039 + components: + - pos: 20.5,27.5 + parent: 2 + type: Transform + - uid: 3040 + components: + - pos: 22.5,28.5 + parent: 2 + type: Transform + - uid: 3041 + components: + - pos: 23.5,28.5 + parent: 2 + type: Transform + - uid: 3042 + components: + - pos: 26.5,28.5 + parent: 2 + type: Transform + - uid: 3092 + components: + - pos: 52.5,16.5 + parent: 2 + type: Transform + - uid: 3093 + components: + - pos: 53.5,16.5 + parent: 2 + type: Transform + - uid: 3094 + components: + - pos: 54.5,16.5 + parent: 2 + type: Transform + - uid: 3095 + components: + - pos: 55.5,16.5 + parent: 2 + type: Transform + - uid: 3096 + components: + - pos: 56.5,16.5 + parent: 2 + type: Transform + - uid: 3097 + components: + - pos: 57.5,16.5 + parent: 2 + type: Transform + - uid: 3098 + components: + - pos: 58.5,16.5 + parent: 2 + type: Transform + - uid: 3099 + components: + - pos: 59.5,16.5 + parent: 2 + type: Transform + - uid: 3101 + components: + - pos: 61.5,16.5 + parent: 2 + type: Transform + - uid: 3102 + components: + - pos: 62.5,16.5 + parent: 2 + type: Transform + - uid: 3104 + components: + - pos: 52.5,20.5 + parent: 2 + type: Transform + - uid: 3105 + components: + - pos: 53.5,20.5 + parent: 2 + type: Transform + - uid: 3106 + components: + - pos: 54.5,20.5 + parent: 2 + type: Transform + - uid: 3107 + components: + - pos: 55.5,20.5 + parent: 2 + type: Transform + - uid: 3108 + components: + - pos: 56.5,20.5 + parent: 2 + type: Transform + - uid: 3109 + components: + - pos: 57.5,20.5 + parent: 2 + type: Transform + - uid: 3110 + components: + - pos: 58.5,20.5 + parent: 2 + type: Transform + - uid: 3111 + components: + - pos: 59.5,20.5 + parent: 2 + type: Transform + - uid: 3113 + components: + - pos: 61.5,20.5 + parent: 2 + type: Transform + - uid: 3114 + components: + - pos: 62.5,20.5 + parent: 2 + type: Transform + - uid: 3116 + components: + - pos: 52.5,24.5 + parent: 2 + type: Transform + - uid: 3117 + components: + - pos: 53.5,24.5 + parent: 2 + type: Transform + - uid: 3118 + components: + - pos: 54.5,24.5 + parent: 2 + type: Transform + - uid: 3119 + components: + - pos: 55.5,24.5 + parent: 2 + type: Transform + - uid: 3120 + components: + - pos: 56.5,24.5 + parent: 2 + type: Transform + - uid: 3121 + components: + - pos: 57.5,24.5 + parent: 2 + type: Transform + - uid: 3122 + components: + - pos: 58.5,24.5 + parent: 2 + type: Transform + - uid: 3123 + components: + - pos: 59.5,24.5 + parent: 2 + type: Transform + - uid: 3125 + components: + - pos: 61.5,24.5 + parent: 2 + type: Transform + - uid: 3126 + components: + - pos: 62.5,24.5 + parent: 2 + type: Transform + - uid: 3388 + components: + - pos: -24.5,-29.5 + parent: 2 + type: Transform + - uid: 3498 + components: + - pos: -51.5,1.5 + parent: 2 + type: Transform + - uid: 3499 + components: + - pos: -52.5,1.5 + parent: 2 + type: Transform + - uid: 3500 + components: + - pos: -52.5,2.5 + parent: 2 + type: Transform + - uid: 3501 + components: + - pos: -52.5,3.5 + parent: 2 + type: Transform + - uid: 3502 + components: + - pos: -52.5,4.5 + parent: 2 + type: Transform + - uid: 3503 + components: + - pos: -52.5,5.5 + parent: 2 + type: Transform + - uid: 3504 + components: + - pos: -53.5,5.5 + parent: 2 + type: Transform + - uid: 3505 + components: + - pos: -50.5,1.5 + parent: 2 + type: Transform + - uid: 3506 + components: + - pos: -49.5,1.5 + parent: 2 + type: Transform + - uid: 3507 + components: + - pos: -48.5,1.5 + parent: 2 + type: Transform + - uid: 3508 + components: + - pos: -47.5,1.5 + parent: 2 + type: Transform + - uid: 3509 + components: + - pos: -46.5,1.5 + parent: 2 + type: Transform + - uid: 3510 + components: + - pos: -45.5,1.5 + parent: 2 + type: Transform + - uid: 3511 + components: + - pos: -45.5,2.5 + parent: 2 + type: Transform + - uid: 3512 + components: + - pos: -45.5,3.5 + parent: 2 + type: Transform + - uid: 3513 + components: + - pos: -45.5,4.5 + parent: 2 + type: Transform + - uid: 3514 + components: + - pos: -45.5,5.5 + parent: 2 + type: Transform + - uid: 3515 + components: + - pos: -44.5,1.5 + parent: 2 + type: Transform + - uid: 3516 + components: + - pos: -43.5,1.5 + parent: 2 + type: Transform + - uid: 3517 + components: + - pos: -42.5,1.5 + parent: 2 + type: Transform + - uid: 3518 + components: + - pos: -42.5,0.5 + parent: 2 + type: Transform + - uid: 3519 + components: + - pos: -42.5,-0.5 + parent: 2 + type: Transform + - uid: 3520 + components: + - pos: -42.5,-1.5 + parent: 2 + type: Transform + - uid: 3521 + components: + - pos: -42.5,-2.5 + parent: 2 + type: Transform + - uid: 3522 + components: + - pos: -52.5,11.5 + parent: 2 + type: Transform + - uid: 3523 + components: + - pos: -51.5,11.5 + parent: 2 + type: Transform + - uid: 3524 + components: + - pos: -51.5,12.5 + parent: 2 + type: Transform + - uid: 3525 + components: + - pos: -51.5,13.5 + parent: 2 + type: Transform + - uid: 3526 + components: + - pos: -51.5,14.5 + parent: 2 + type: Transform + - uid: 3527 + components: + - pos: -16.5,-1.5 + parent: 2 + type: Transform + - uid: 3528 + components: + - pos: -16.5,-0.5 + parent: 2 + type: Transform + - uid: 3529 + components: + - pos: -16.5,0.5 + parent: 2 + type: Transform + - uid: 3530 + components: + - pos: -16.5,1.5 + parent: 2 + type: Transform + - uid: 3531 + components: + - pos: -16.5,2.5 + parent: 2 + type: Transform + - uid: 3532 + components: + - pos: -16.5,3.5 + parent: 2 + type: Transform + - uid: 3533 + components: + - pos: -16.5,4.5 + parent: 2 + type: Transform + - uid: 3534 + components: + - pos: -16.5,5.5 + parent: 2 + type: Transform + - uid: 3535 + components: + - pos: -15.5,5.5 + parent: 2 + type: Transform + - uid: 3536 + components: + - pos: -14.5,5.5 + parent: 2 + type: Transform + - uid: 3537 + components: + - pos: -13.5,5.5 + parent: 2 + type: Transform + - uid: 3538 + components: + - pos: -14.5,6.5 + parent: 2 + type: Transform + - uid: 3539 + components: + - pos: -14.5,7.5 + parent: 2 + type: Transform + - uid: 3540 + components: + - pos: -14.5,8.5 + parent: 2 + type: Transform + - uid: 3541 + components: + - pos: -14.5,9.5 + parent: 2 + type: Transform + - uid: 3542 + components: + - pos: -14.5,10.5 + parent: 2 + type: Transform + - uid: 3543 + components: + - pos: -14.5,11.5 + parent: 2 + type: Transform + - uid: 3544 + components: + - pos: -15.5,9.5 + parent: 2 + type: Transform + - uid: 3545 + components: + - pos: -12.5,5.5 + parent: 2 + type: Transform + - uid: 3546 + components: + - pos: -11.5,5.5 + parent: 2 + type: Transform + - uid: 3547 + components: + - pos: -10.5,5.5 + parent: 2 + type: Transform + - uid: 3548 + components: + - pos: -10.5,4.5 + parent: 2 + type: Transform + - uid: 3549 + components: + - pos: -10.5,3.5 + parent: 2 + type: Transform + - uid: 3550 + components: + - pos: -10.5,2.5 + parent: 2 + type: Transform + - uid: 3551 + components: + - pos: 13.5,16.5 + parent: 2 + type: Transform + - uid: 3552 + components: + - pos: 13.5,15.5 + parent: 2 + type: Transform + - uid: 3553 + components: + - pos: 13.5,14.5 + parent: 2 + type: Transform + - uid: 3554 + components: + - pos: 14.5,14.5 + parent: 2 + type: Transform + - uid: 3555 + components: + - pos: 14.5,13.5 + parent: 2 + type: Transform + - uid: 3556 + components: + - pos: 14.5,12.5 + parent: 2 + type: Transform + - uid: 3557 + components: + - pos: 14.5,11.5 + parent: 2 + type: Transform + - uid: 3558 + components: + - pos: 14.5,10.5 + parent: 2 + type: Transform + - uid: 3559 + components: + - pos: 14.5,6.5 + parent: 2 + type: Transform + - uid: 3561 + components: + - pos: 14.5,5.5 + parent: 2 + type: Transform + - uid: 3562 + components: + - pos: 14.5,4.5 + parent: 2 + type: Transform + - uid: 3563 + components: + - pos: 14.5,3.5 + parent: 2 + type: Transform + - uid: 3564 + components: + - pos: 14.5,2.5 + parent: 2 + type: Transform + - uid: 3565 + components: + - pos: 14.5,1.5 + parent: 2 + type: Transform + - uid: 3566 + components: + - pos: 14.5,0.5 + parent: 2 + type: Transform + - uid: 3567 + components: + - pos: 14.5,-0.5 + parent: 2 + type: Transform + - uid: 3568 + components: + - pos: 14.5,-1.5 + parent: 2 + type: Transform + - uid: 3570 + components: + - pos: 13.5,-1.5 + parent: 2 + type: Transform + - uid: 3571 + components: + - pos: 12.5,-1.5 + parent: 2 + type: Transform + - uid: 3572 + components: + - pos: 11.5,-1.5 + parent: 2 + type: Transform + - uid: 3573 + components: + - pos: 10.5,-1.5 + parent: 2 + type: Transform + - uid: 3574 + components: + - pos: 17.5,-8.5 + parent: 2 + type: Transform + - uid: 3575 + components: + - pos: 17.5,-9.5 + parent: 2 + type: Transform + - uid: 3576 + components: + - pos: 17.5,-10.5 + parent: 2 + type: Transform + - uid: 3577 + components: + - pos: 17.5,-11.5 + parent: 2 + type: Transform + - uid: 3578 + components: + - pos: 17.5,-12.5 + parent: 2 + type: Transform + - uid: 3579 + components: + - pos: 16.5,-12.5 + parent: 2 + type: Transform + - uid: 3580 + components: + - pos: 15.5,-12.5 + parent: 2 + type: Transform + - uid: 3581 + components: + - pos: 14.5,-12.5 + parent: 2 + type: Transform + - uid: 3582 + components: + - pos: 13.5,-12.5 + parent: 2 + type: Transform + - uid: 3583 + components: + - pos: 12.5,-12.5 + parent: 2 + type: Transform + - uid: 3584 + components: + - pos: 11.5,-12.5 + parent: 2 + type: Transform + - uid: 3585 + components: + - pos: 10.5,-12.5 + parent: 2 + type: Transform + - uid: 3586 + components: + - pos: 16.5,-13.5 + parent: 2 + type: Transform + - uid: 3587 + components: + - pos: 37.5,-2.5 + parent: 2 + type: Transform + - uid: 3588 + components: + - pos: 38.5,-2.5 + parent: 2 + type: Transform + - uid: 3589 + components: + - pos: 39.5,-2.5 + parent: 2 + type: Transform + - uid: 3590 + components: + - pos: 40.5,-2.5 + parent: 2 + type: Transform + - uid: 3592 + components: + - pos: 42.5,-2.5 + parent: 2 + type: Transform + - uid: 3593 + components: + - pos: 42.5,-1.5 + parent: 2 + type: Transform + - uid: 3594 + components: + - pos: 42.5,-0.5 + parent: 2 + type: Transform + - uid: 3595 + components: + - pos: 42.5,0.5 + parent: 2 + type: Transform + - uid: 3596 + components: + - pos: 42.5,1.5 + parent: 2 + type: Transform + - uid: 3597 + components: + - pos: 42.5,2.5 + parent: 2 + type: Transform + - uid: 3598 + components: + - pos: 39.5,11.5 + parent: 2 + type: Transform + - uid: 3599 + components: + - pos: 39.5,12.5 + parent: 2 + type: Transform + - uid: 3600 + components: + - pos: 39.5,13.5 + parent: 2 + type: Transform + - uid: 3601 + components: + - pos: 39.5,14.5 + parent: 2 + type: Transform + - uid: 3602 + components: + - pos: 39.5,15.5 + parent: 2 + type: Transform + - uid: 3603 + components: + - pos: 39.5,16.5 + parent: 2 + type: Transform + - uid: 3604 + components: + - pos: 38.5,16.5 + parent: 2 + type: Transform + - uid: 3605 + components: + - pos: 37.5,16.5 + parent: 2 + type: Transform + - uid: 3607 + components: + - pos: 37.5,17.5 + parent: 2 + type: Transform + - uid: 3608 + components: + - pos: 42.5,-9.5 + parent: 2 + type: Transform + - uid: 3609 + components: + - pos: 41.5,-9.5 + parent: 2 + type: Transform + - uid: 3610 + components: + - pos: 40.5,-9.5 + parent: 2 + type: Transform + - uid: 3611 + components: + - pos: 39.5,-9.5 + parent: 2 + type: Transform + - uid: 3612 + components: + - pos: 39.5,-10.5 + parent: 2 + type: Transform + - uid: 3613 + components: + - pos: 39.5,-11.5 + parent: 2 + type: Transform + - uid: 3614 + components: + - pos: 39.5,-12.5 + parent: 2 + type: Transform + - uid: 3615 + components: + - pos: 39.5,-13.5 + parent: 2 + type: Transform + - uid: 3616 + components: + - pos: 40.5,-12.5 + parent: 2 + type: Transform + - uid: 3617 + components: + - pos: 39.5,-14.5 + parent: 2 + type: Transform + - uid: 3618 + components: + - pos: 39.5,-15.5 + parent: 2 + type: Transform + - uid: 3619 + components: + - pos: 39.5,-16.5 + parent: 2 + type: Transform + - uid: 3620 + components: + - pos: 39.5,-17.5 + parent: 2 + type: Transform + - uid: 3621 + components: + - pos: 39.5,-18.5 + parent: 2 + type: Transform + - uid: 3622 + components: + - pos: 41.5,-23.5 + parent: 2 + type: Transform + - uid: 3624 + components: + - pos: -15.5,-9.5 + parent: 2 + type: Transform + - uid: 3625 + components: + - pos: -15.5,-10.5 + parent: 2 + type: Transform + - uid: 3626 + components: + - pos: -16.5,-10.5 + parent: 2 + type: Transform + - uid: 3627 + components: + - pos: -15.5,-11.5 + parent: 2 + type: Transform + - uid: 3628 + components: + - pos: -15.5,-12.5 + parent: 2 + type: Transform + - uid: 3629 + components: + - pos: -15.5,-13.5 + parent: 2 + type: Transform + - uid: 3630 + components: + - pos: -15.5,-14.5 + parent: 2 + type: Transform + - uid: 3631 + components: + - pos: -14.5,-14.5 + parent: 2 + type: Transform + - uid: 3632 + components: + - pos: -13.5,-14.5 + parent: 2 + type: Transform + - uid: 3633 + components: + - pos: -12.5,-14.5 + parent: 2 + type: Transform + - uid: 3634 + components: + - pos: -11.5,-14.5 + parent: 2 + type: Transform + - uid: 3635 + components: + - pos: -15.5,-15.5 + parent: 2 + type: Transform + - uid: 3636 + components: + - pos: -15.5,-16.5 + parent: 2 + type: Transform + - uid: 3637 + components: + - pos: -15.5,-17.5 + parent: 2 + type: Transform + - uid: 3638 + components: + - pos: -15.5,-18.5 + parent: 2 + type: Transform + - uid: 3685 + components: + - pos: 19.5,-28.5 + parent: 2 + type: Transform + - uid: 3686 + components: + - pos: 21.5,-28.5 + parent: 2 + type: Transform + - uid: 3688 + components: + - pos: 24.5,-34.5 + parent: 2 + type: Transform + - uid: 3689 + components: + - pos: 26.5,-34.5 + parent: 2 + type: Transform + - uid: 3691 + components: + - pos: 19.5,-24.5 + parent: 2 + type: Transform + - uid: 3693 + components: + - pos: 28.5,8.5 + parent: 2 + type: Transform + - uid: 3716 + components: + - pos: 10.5,6.5 + parent: 2 + type: Transform + - uid: 3718 + components: + - pos: 11.5,6.5 + parent: 2 + type: Transform + - uid: 3772 + components: + - pos: -44.5,17.5 + parent: 2 + type: Transform + - uid: 3773 + components: + - pos: -43.5,17.5 + parent: 2 + type: Transform + - uid: 3774 + components: + - pos: -42.5,17.5 + parent: 2 + type: Transform + - uid: 3775 + components: + - pos: -41.5,17.5 + parent: 2 + type: Transform + - uid: 3788 + components: + - pos: -9.5,-36.5 + parent: 2 + type: Transform + - uid: 3820 + components: + - pos: 12.5,6.5 + parent: 2 + type: Transform + - uid: 3850 + components: + - pos: -37.5,-15.5 + parent: 2 + type: Transform + - uid: 3851 + components: + - pos: -37.5,-16.5 + parent: 2 + type: Transform + - uid: 3858 + components: + - pos: -37.5,-17.5 + parent: 2 + type: Transform + - uid: 3859 + components: + - pos: -37.5,-18.5 + parent: 2 + type: Transform + - uid: 3860 + components: + - pos: -37.5,-19.5 + parent: 2 + type: Transform + - uid: 3861 + components: + - pos: -37.5,-20.5 + parent: 2 + type: Transform + - uid: 3862 + components: + - pos: -37.5,-21.5 + parent: 2 + type: Transform + - uid: 3863 + components: + - pos: -37.5,-22.5 + parent: 2 + type: Transform + - uid: 3864 + components: + - pos: -38.5,-19.5 + parent: 2 + type: Transform + - uid: 3865 + components: + - pos: -39.5,-19.5 + parent: 2 + type: Transform + - uid: 3866 + components: + - pos: -40.5,-19.5 + parent: 2 + type: Transform + - uid: 3867 + components: + - pos: -41.5,-19.5 + parent: 2 + type: Transform + - uid: 3868 + components: + - pos: -42.5,-19.5 + parent: 2 + type: Transform + - uid: 3869 + components: + - pos: -43.5,-19.5 + parent: 2 + type: Transform + - uid: 3870 + components: + - pos: -44.5,-19.5 + parent: 2 + type: Transform + - uid: 3871 + components: + - pos: -44.5,-18.5 + parent: 2 + type: Transform + - uid: 3872 + components: + - pos: -44.5,-17.5 + parent: 2 + type: Transform + - uid: 3873 + components: + - pos: -44.5,-16.5 + parent: 2 + type: Transform + - uid: 3874 + components: + - pos: -45.5,-16.5 + parent: 2 + type: Transform + - uid: 3875 + components: + - pos: -46.5,-16.5 + parent: 2 + type: Transform + - uid: 3876 + components: + - pos: -47.5,-16.5 + parent: 2 + type: Transform + - uid: 3878 + components: + - pos: -23.5,-29.5 + parent: 2 + type: Transform + - uid: 3879 + components: + - pos: -22.5,-29.5 + parent: 2 + type: Transform + - uid: 3880 + components: + - pos: -21.5,-29.5 + parent: 2 + type: Transform + - uid: 3881 + components: + - pos: -20.5,-29.5 + parent: 2 + type: Transform + - uid: 3882 + components: + - pos: -20.5,-30.5 + parent: 2 + type: Transform + - uid: 3883 + components: + - pos: -20.5,-28.5 + parent: 2 + type: Transform + - uid: 3884 + components: + - pos: -20.5,-27.5 + parent: 2 + type: Transform + - uid: 3885 + components: + - pos: -19.5,-27.5 + parent: 2 + type: Transform + - uid: 3886 + components: + - pos: -18.5,-27.5 + parent: 2 + type: Transform + - uid: 3887 + components: + - pos: -17.5,-27.5 + parent: 2 + type: Transform + - uid: 3888 + components: + - pos: -16.5,-27.5 + parent: 2 + type: Transform + - uid: 3889 + components: + - pos: -16.5,-26.5 + parent: 2 + type: Transform + - uid: 3891 + components: + - pos: -16.5,-24.5 + parent: 2 + type: Transform + - uid: 3892 + components: + - pos: -16.5,-23.5 + parent: 2 + type: Transform + - uid: 3893 + components: + - pos: -16.5,-22.5 + parent: 2 + type: Transform + - uid: 3894 + components: + - pos: -16.5,-21.5 + parent: 2 + type: Transform + - uid: 3895 + components: + - pos: -16.5,-20.5 + parent: 2 + type: Transform + - uid: 3896 + components: + - pos: -16.5,-19.5 + parent: 2 + type: Transform + - uid: 3898 + components: + - pos: -15.5,-24.5 + parent: 2 + type: Transform + - uid: 3899 + components: + - pos: -14.5,-24.5 + parent: 2 + type: Transform + - uid: 3900 + components: + - pos: -13.5,-24.5 + parent: 2 + type: Transform + - uid: 3901 + components: + - pos: -24.5,-30.5 + parent: 2 + type: Transform + - uid: 3902 + components: + - pos: -25.5,-30.5 + parent: 2 + type: Transform + - uid: 3903 + components: + - pos: -23.5,-12.5 + parent: 2 + type: Transform + - uid: 3904 + components: + - pos: -23.5,-13.5 + parent: 2 + type: Transform + - uid: 3905 + components: + - pos: -23.5,-14.5 + parent: 2 + type: Transform + - uid: 3990 + components: + - pos: -4.5,-31.5 + parent: 2 + type: Transform + - uid: 3992 + components: + - pos: -3.5,-31.5 + parent: 2 + type: Transform + - uid: 3993 + components: + - pos: -2.5,-31.5 + parent: 2 + type: Transform + - uid: 3994 + components: + - pos: -1.5,-31.5 + parent: 2 + type: Transform + - uid: 3995 + components: + - pos: -0.5,-31.5 + parent: 2 + type: Transform + - uid: 3996 + components: + - pos: 0.5,-31.5 + parent: 2 + type: Transform + - uid: 3997 + components: + - pos: 1.5,-31.5 + parent: 2 + type: Transform + - uid: 3998 + components: + - pos: 2.5,-31.5 + parent: 2 + type: Transform + - uid: 4001 + components: + - pos: 4.5,-30.5 + parent: 2 + type: Transform + - uid: 4002 + components: + - pos: 5.5,-30.5 + parent: 2 + type: Transform + - uid: 4003 + components: + - pos: 6.5,-30.5 + parent: 2 + type: Transform + - uid: 4004 + components: + - pos: 7.5,-30.5 + parent: 2 + type: Transform + - uid: 4005 + components: + - pos: 8.5,-30.5 + parent: 2 + type: Transform + - uid: 4006 + components: + - pos: 8.5,-29.5 + parent: 2 + type: Transform + - uid: 4008 + components: + - pos: 8.5,-27.5 + parent: 2 + type: Transform + - uid: 4009 + components: + - pos: 8.5,-26.5 + parent: 2 + type: Transform + - uid: 4010 + components: + - pos: 8.5,-25.5 + parent: 2 + type: Transform + - uid: 4011 + components: + - pos: 9.5,-26.5 + parent: 2 + type: Transform + - uid: 4012 + components: + - pos: 10.5,-26.5 + parent: 2 + type: Transform + - uid: 4013 + components: + - pos: 11.5,-26.5 + parent: 2 + type: Transform + - uid: 4014 + components: + - pos: 12.5,-26.5 + parent: 2 + type: Transform + - uid: 4016 + components: + - pos: 16.5,-23.5 + parent: 2 + type: Transform + - uid: 4017 + components: + - pos: 16.5,-24.5 + parent: 2 + type: Transform + - uid: 4018 + components: + - pos: 16.5,-25.5 + parent: 2 + type: Transform + - uid: 4019 + components: + - pos: 16.5,-26.5 + parent: 2 + type: Transform + - uid: 4020 + components: + - pos: 16.5,-27.5 + parent: 2 + type: Transform + - uid: 4021 + components: + - pos: 16.5,-28.5 + parent: 2 + type: Transform + - uid: 4023 + components: + - pos: 17.5,-29.5 + parent: 2 + type: Transform + - uid: 4036 + components: + - pos: 20.5,-24.5 + parent: 2 + type: Transform + - uid: 4038 + components: + - pos: 20.5,-23.5 + parent: 2 + type: Transform + - uid: 4089 + components: + - pos: -37.5,-25.5 + parent: 2 + type: Transform + - uid: 4092 + components: + - pos: -41.5,-24.5 + parent: 2 + type: Transform + - uid: 4093 + components: + - pos: -42.5,-24.5 + parent: 2 + type: Transform + - uid: 4094 + components: + - pos: -43.5,-24.5 + parent: 2 + type: Transform + - uid: 4095 + components: + - pos: -44.5,-24.5 + parent: 2 + type: Transform + - uid: 4096 + components: + - pos: -44.5,-23.5 + parent: 2 + type: Transform + - uid: 4097 + components: + - pos: -37.5,-26.5 + parent: 2 + type: Transform + - uid: 4098 + components: + - pos: -37.5,-27.5 + parent: 2 + type: Transform + - uid: 4099 + components: + - pos: -38.5,-26.5 + parent: 2 + type: Transform + - uid: 4100 + components: + - pos: -37.5,-24.5 + parent: 2 + type: Transform + - uid: 4101 + components: + - pos: -37.5,-23.5 + parent: 2 + type: Transform + - uid: 4102 + components: + - pos: -39.5,-26.5 + parent: 2 + type: Transform + - uid: 4103 + components: + - pos: -40.5,-26.5 + parent: 2 + type: Transform + - uid: 4213 + components: + - pos: 33.5,7.5 + parent: 2 + type: Transform + - uid: 4214 + components: + - pos: 34.5,7.5 + parent: 2 + type: Transform + - uid: 4215 + components: + - pos: 35.5,7.5 + parent: 2 + type: Transform + - uid: 4216 + components: + - pos: 33.5,4.5 + parent: 2 + type: Transform + - uid: 4217 + components: + - pos: 34.5,4.5 + parent: 2 + type: Transform + - uid: 4218 + components: + - pos: 35.5,4.5 + parent: 2 + type: Transform + - uid: 4219 + components: + - pos: 36.5,4.5 + parent: 2 + type: Transform + - uid: 4220 + components: + - pos: 37.5,4.5 + parent: 2 + type: Transform + - uid: 4221 + components: + - pos: 38.5,4.5 + parent: 2 + type: Transform + - uid: 4222 + components: + - pos: 39.5,4.5 + parent: 2 + type: Transform + - uid: 4223 + components: + - pos: 40.5,4.5 + parent: 2 + type: Transform + - uid: 4224 + components: + - pos: 41.5,4.5 + parent: 2 + type: Transform + - uid: 4225 + components: + - pos: 42.5,4.5 + parent: 2 + type: Transform + - uid: 4226 + components: + - pos: 43.5,4.5 + parent: 2 + type: Transform + - uid: 4227 + components: + - pos: 44.5,6.5 + parent: 2 + type: Transform + - uid: 4228 + components: + - pos: 19.5,11.5 + parent: 2 + type: Transform + - uid: 4229 + components: + - pos: 20.5,11.5 + parent: 2 + type: Transform + - uid: 4230 + components: + - pos: 21.5,11.5 + parent: 2 + type: Transform + - uid: 4231 + components: + - pos: 22.5,11.5 + parent: 2 + type: Transform + - uid: 4232 + components: + - pos: 23.5,11.5 + parent: 2 + type: Transform + - uid: 4233 + components: + - pos: 24.5,11.5 + parent: 2 + type: Transform + - uid: 4234 + components: + - pos: 25.5,11.5 + parent: 2 + type: Transform + - uid: 4235 + components: + - pos: 26.5,11.5 + parent: 2 + type: Transform + - uid: 4236 + components: + - pos: 27.5,11.5 + parent: 2 + type: Transform + - uid: 4238 + components: + - pos: 24.5,12.5 + parent: 2 + type: Transform + - uid: 4305 + components: + - pos: 13.5,-30.5 + parent: 2 + type: Transform + - uid: 4763 + components: + - pos: 39.5,-8.5 + parent: 2 + type: Transform + - uid: 4769 + components: + - pos: 15.5,5.5 + parent: 2 + type: Transform + - uid: 5327 + components: + - pos: 36.5,16.5 + parent: 2 + type: Transform + - uid: 5385 + components: + - pos: 25.5,22.5 + parent: 2 + type: Transform + - uid: 6944 + components: + - pos: 40.5,-34.5 + parent: 2 + type: Transform + - uid: 6945 + components: + - pos: 40.5,-33.5 + parent: 2 + type: Transform + - uid: 6946 + components: + - pos: 40.5,-32.5 + parent: 2 + type: Transform + - uid: 6948 + components: + - pos: 40.5,-30.5 + parent: 2 + type: Transform + - uid: 6949 + components: + - pos: 40.5,-29.5 + parent: 2 + type: Transform + - uid: 6950 + components: + - pos: 23.5,-33.5 + parent: 2 + type: Transform + - uid: 6951 + components: + - pos: 22.5,-33.5 + parent: 2 + type: Transform + - uid: 6952 + components: + - pos: 21.5,-33.5 + parent: 2 + type: Transform + - uid: 6953 + components: + - pos: 20.5,-33.5 + parent: 2 + type: Transform + - uid: 6954 + components: + - pos: 19.5,-33.5 + parent: 2 + type: Transform + - uid: 6956 + components: + - pos: 17.5,-33.5 + parent: 2 + type: Transform + - uid: 6957 + components: + - pos: 17.5,-32.5 + parent: 2 + type: Transform + - uid: 6958 + components: + - pos: 17.5,-31.5 + parent: 2 + type: Transform + - uid: 6996 + components: + - pos: -48.5,21.5 + parent: 2 + type: Transform + - uid: 6997 + components: + - pos: -48.5,22.5 + parent: 2 + type: Transform + - uid: 6998 + components: + - pos: -48.5,23.5 + parent: 2 + type: Transform + - uid: 7001 + components: + - pos: 11.5,-30.5 + parent: 2 + type: Transform + - uid: 7002 + components: + - pos: 10.5,-30.5 + parent: 2 + type: Transform + - uid: 7427 + components: + - pos: 28.5,9.5 + parent: 2 + type: Transform + - uid: 7428 + components: + - pos: 32.5,8.5 + parent: 2 + type: Transform + - uid: 7433 + components: + - pos: 28.5,11.5 + parent: 2 + type: Transform + - uid: 7450 + components: + - pos: 15.5,0.5 + parent: 2 + type: Transform + - uid: 7811 + components: + - pos: 42.5,-21.5 + parent: 2 + type: Transform + - uid: 8715 + components: + - pos: -16.5,-18.5 + parent: 2 + type: Transform + - uid: 8784 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-22.5 + parent: 2 + type: Transform + - uid: 9027 + components: + - pos: -9.5,-35.5 + parent: 2 + type: Transform + - uid: 9115 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,28.5 + parent: 2 + type: Transform + - uid: 9425 + components: + - rot: 3.141592653589793 rad + pos: 40.5,-15.5 + parent: 2 + type: Transform + - uid: 9426 + components: + - rot: 3.141592653589793 rad + pos: 41.5,-15.5 + parent: 2 + type: Transform + - uid: 9489 + components: + - pos: -13.5,3.5 + parent: 2 + type: Transform + - uid: 9490 + components: + - pos: -13.5,2.5 + parent: 2 + type: Transform + - uid: 9491 + components: + - pos: 37.5,19.5 + parent: 2 + type: Transform + - uid: 9492 + components: + - pos: 37.5,20.5 + parent: 2 + type: Transform + - uid: 9493 + components: + - pos: 42.5,-12.5 + parent: 2 + type: Transform + - uid: 9494 + components: + - pos: 43.5,-12.5 + parent: 2 + type: Transform + - uid: 9495 + components: + - pos: 19.5,-30.5 + parent: 2 + type: Transform + - uid: 9496 + components: + - pos: 20.5,-30.5 + parent: 2 + type: Transform + - uid: 9497 + components: + - pos: -42.5,-21.5 + parent: 2 + type: Transform + - uid: 9498 + components: + - pos: -42.5,-22.5 + parent: 2 + type: Transform + - uid: 9499 + components: + - pos: -53.5,14.5 + parent: 2 + type: Transform + - uid: 9500 + components: + - pos: -54.5,14.5 + parent: 2 + type: Transform + - uid: 9522 + components: + - pos: 20.5,-31.5 + parent: 2 + type: Transform + - uid: 9611 + components: + - pos: 22.5,22.5 + parent: 2 + type: Transform + - uid: 10124 + components: + - pos: 14.5,-30.5 + parent: 2 + type: Transform + - uid: 10134 + components: + - pos: 21.5,21.5 + parent: 2 + type: Transform + - uid: 10199 + components: + - pos: 43.5,-13.5 + parent: 2 + type: Transform + - uid: 10223 + components: + - pos: 21.5,19.5 + parent: 2 + type: Transform + - uid: 10227 + components: + - pos: 29.5,22.5 + parent: 2 + type: Transform + - uid: 10642 + components: + - pos: 16.5,-30.5 + parent: 2 + type: Transform + - uid: 10643 + components: + - pos: 17.5,-30.5 + parent: 2 + type: Transform + - uid: 10883 + components: + - pos: -7.5,-35.5 + parent: 2 + type: Transform +- proto: Chair + entities: + - uid: 897 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-11.5 + parent: 2 + type: Transform + - uid: 898 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-10.5 + parent: 2 + type: Transform + - uid: 1245 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-33.5 + parent: 2 + type: Transform + - uid: 1246 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-32.5 + parent: 2 + type: Transform + - uid: 1732 + components: + - rot: 3.141592653589793 rad + pos: -42.5,4.5 + parent: 2 + type: Transform + - uid: 1856 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-2.5 + parent: 2 + type: Transform + - uid: 2173 + components: + - pos: 30.5,7.5 + parent: 2 + type: Transform + - uid: 2274 + components: + - pos: -10.5,9.5 + parent: 2 + type: Transform + - uid: 2855 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,4.5 + parent: 2 + type: Transform + - uid: 2953 + components: + - pos: 34.5,19.5 + parent: 2 + type: Transform + - uid: 3252 + components: + - rot: 3.141592653589793 rad + pos: 34.5,11.5 + parent: 2 + type: Transform + - uid: 3467 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-28.5 + parent: 2 + type: Transform + - uid: 3839 + components: + - pos: -32.5,-17.5 + parent: 2 + type: Transform + - uid: 3842 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-19.5 + parent: 2 + type: Transform + - uid: 3976 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-30.5 + parent: 2 + type: Transform + - uid: 9721 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 2 + type: Transform + - uid: 9722 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 2 + type: Transform + - uid: 9870 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,7.5 + parent: 2 + type: Transform + - uid: 9871 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,8.5 + parent: 2 + type: Transform + - uid: 10075 + components: + - pos: -53.5,9.5 + parent: 2 + type: Transform + - uid: 10076 + components: + - pos: -54.5,9.5 + parent: 2 + type: Transform +- proto: ChairFolding + entities: + - uid: 669 + components: + - pos: 10.355555,-9.545514 + parent: 2 + type: Transform + - uid: 1068 + components: + - rot: -1.5707963267948966 rad + pos: -11.554297,15.665906 + parent: 2 + type: Transform + - uid: 1127 + components: + - rot: -1.5707963267948966 rad + pos: -8.576976,-21.329262 + parent: 2 + type: Transform + - uid: 1379 + components: + - rot: 3.141592653589793 rad + pos: -11.752069,-0.17622879 + parent: 2 + type: Transform + - uid: 1398 + components: + - pos: -12.328085,-11.750116 + parent: 2 + type: Transform + - uid: 2211 + components: + - rot: -1.5707963267948966 rad + pos: 36.253853,-14.282557 + parent: 2 + type: Transform + - uid: 2212 + components: + - rot: 3.141592653589793 rad + pos: 35.315887,-15.25198 + parent: 2 + type: Transform + - uid: 2342 + components: + - rot: 3.141592653589793 rad + pos: -12.6352005,14.869129 + parent: 2 + type: Transform + - uid: 2353 + components: + - rot: 1.5707963267948966 rad + pos: 0.6115749,-28.742308 + parent: 2 + type: Transform + - uid: 2420 + components: + - rot: -1.5707963267948966 rad + pos: 2.2157416,-28.773579 + parent: 2 + type: Transform + - uid: 2645 + components: + - pos: -21.369888,8.522291 + parent: 2 + type: Transform + - uid: 2649 + components: + - rot: 1.5707963267948966 rad + pos: -22.401138,7.6779532 + parent: 2 + type: Transform + - uid: 2818 + components: + - rot: 1.5707963267948966 rad + pos: -42.256134,13.59068 + parent: 2 + type: Transform + - uid: 2918 + components: + - rot: -1.5707963267948966 rad + pos: -29.690344,16.741674 + parent: 2 + type: Transform + - uid: 2919 + components: + - rot: -1.5707963267948966 rad + pos: -29.627844,17.888304 + parent: 2 + type: Transform + - uid: 2920 + components: + - rot: 1.5707963267948966 rad + pos: -31.32576,17.877882 + parent: 2 + type: Transform + - uid: 2921 + components: + - rot: 1.5707963267948966 rad + pos: -31.36501,16.569954 + parent: 2 + type: Transform + - uid: 2922 + components: + - rot: -1.5707963267948966 rad + pos: -35.639008,17.769152 + parent: 2 + type: Transform + - uid: 2923 + components: + - rot: 1.5707963267948966 rad + pos: -37.326508,17.446012 + parent: 2 + type: Transform + - uid: 2924 + components: + - rot: 3.141592653589793 rad + pos: -36.472343,16.851849 + parent: 2 + type: Transform + - uid: 3479 + components: + - pos: 1.6949084,-27.481014 + parent: 2 + type: Transform + - uid: 3736 + components: + - rot: 1.5707963267948966 rad + pos: -10.326976,-21.339685 + parent: 2 + type: Transform + - uid: 3737 + components: + - rot: 3.141592653589793 rad + pos: -9.212393,-22.225718 + parent: 2 + type: Transform + - uid: 3941 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,6.5 + parent: 2 + type: Transform + - uid: 3942 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,7.5 + parent: 2 + type: Transform + - uid: 3943 + components: + - pos: -32.5,8.5 + parent: 2 + type: Transform + - uid: 4107 + components: + - rot: -1.5707963267948966 rad + pos: -40.411804,-28.051004 + parent: 2 + type: Transform + - uid: 4108 + components: + - rot: 1.5707963267948966 rad + pos: -45.380554,-26.841831 + parent: 2 + type: Transform + - uid: 4109 + components: + - rot: 3.141592653589793 rad + pos: -42.98472,-29.281025 + parent: 2 + type: Transform + - uid: 4135 + components: + - pos: 8.662746,23.47937 + parent: 2 + type: Transform + - uid: 7006 + components: + - rot: -1.5707963267948966 rad + pos: 11.361829,-32.33933 + parent: 2 + type: Transform + - uid: 8885 + components: + - rot: -1.5707963267948966 rad + pos: -49.648132,-22.309862 + parent: 2 + type: Transform + - uid: 8886 + components: + - rot: 1.5707963267948966 rad + pos: -51.3148,-22.33071 + parent: 2 + type: Transform + - uid: 8887 + components: + - rot: -1.5707963267948966 rad + pos: -49.78355,-21.215351 + parent: 2 + type: Transform + - uid: 8888 + components: + - rot: 1.5707963267948966 rad + pos: -51.210632,-21.194504 + parent: 2 + type: Transform + - uid: 9693 + components: + - rot: 3.141592653589793 rad + pos: 38.5,19.5 + parent: 2 + type: Transform + - uid: 10268 + components: + - rot: 1.5707963267948966 rad + pos: -28.274065,-29.358017 + parent: 2 + type: Transform +- proto: ChairFoldingSpawnFolded + entities: + - uid: 4110 + components: + - pos: -45.474304,-22.463789 + parent: 2 + type: Transform + - uid: 4111 + components: + - pos: -45.48472,-23.203888 + parent: 2 + type: Transform +- proto: ChairOfficeDark + entities: + - uid: 802 + components: + - rot: -1.5707963267948966 rad + pos: -11.552323,8.232855 + parent: 2 + type: Transform + - uid: 819 + components: + - rot: -1.5707963267948966 rad + pos: 24.791039,-1.3027266 + parent: 2 + type: Transform + - uid: 925 + components: + - pos: -3.073781,4.6246743 + parent: 2 + type: Transform + - uid: 945 + components: + - rot: 1.5707963267948966 rad + pos: -2.3436592,7.1605005 + parent: 2 + type: Transform + - uid: 982 + components: + - pos: -32.5,2.5 + parent: 2 + type: Transform + - uid: 1076 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,1.5 + parent: 2 + type: Transform + - uid: 1431 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-1.5 + parent: 2 + type: Transform + - uid: 1483 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-2.5 + parent: 2 + type: Transform + - uid: 1532 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,2.5 + parent: 2 + type: Transform + - uid: 1647 + components: + - rot: -1.5707963267948966 rad + pos: 10.461771,15.192862 + parent: 2 + type: Transform + - uid: 1842 + components: + - rot: 3.141592653589793 rad + pos: 6.5,30.5 + parent: 2 + type: Transform + - uid: 1857 + components: + - pos: -40.46822,-0.61438906 + parent: 2 + type: Transform + - uid: 1884 + components: + - rot: 3.141592653589793 rad + pos: 7.3691397,23.826649 + parent: 2 + type: Transform + - uid: 2371 + components: + - pos: 51.05203,-6.406485 + parent: 2 + type: Transform + - uid: 2372 + components: + - rot: 1.5707963267948966 rad + pos: 51.58354,-3.9151719 + parent: 2 + type: Transform + - uid: 2590 + components: + - rot: 3.141592653589793 rad + pos: -14.534627,-27.203594 + parent: 2 + type: Transform + - uid: 2784 + components: + - rot: 1.5707963267948966 rad + pos: -37.027992,12.6673565 + parent: 2 + type: Transform + - uid: 2854 + components: + - rot: -1.5707963267948966 rad + pos: -38.590145,5.079644 + parent: 2 + type: Transform + - uid: 3243 + components: + - rot: 3.141592653589793 rad + pos: 43.46271,9.69908 + parent: 2 + type: Transform + - uid: 3250 + components: + - pos: 34.5,13.5 + parent: 2 + type: Transform + - uid: 3298 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,11.5 + parent: 2 + type: Transform + - uid: 3466 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-28.5 + parent: 2 + type: Transform + - uid: 4298 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,-10.5 + parent: 2 + type: Transform + - uid: 4656 + components: + - pos: 47.5,-9.5 + parent: 2 + type: Transform + - uid: 4658 + components: + - pos: 48.5,-9.5 + parent: 2 + type: Transform + - uid: 4663 + components: + - rot: 1.5707963267948966 rad + pos: 49.5,-5.5 + parent: 2 + type: Transform + - uid: 8979 + components: + - pos: -12.5,-18.5 + parent: 2 + type: Transform +- proto: ChairOfficeLight + entities: + - uid: 143 + components: + - rot: 1.5707963267948966 rad + pos: -35.185585,0.12409884 + parent: 2 + type: Transform + - uid: 144 + components: + - rot: -1.5707963267948966 rad + pos: 20.41494,-20.08529 + parent: 2 + type: Transform + - uid: 496 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,1.5 + parent: 2 + type: Transform + - uid: 555 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-17.5 + parent: 2 + type: Transform + - uid: 691 + components: + - rot: -1.5707963267948966 rad + pos: 22.439066,-18.519058 + parent: 2 + type: Transform + - uid: 757 + components: + - pos: 29.67943,-10.531257 + parent: 2 + type: Transform + - uid: 818 + components: + - rot: 3.141592653589793 rad + pos: 14.049882,-19.146595 + parent: 2 + type: Transform + - uid: 2451 + components: + - rot: 3.141592653589793 rad + pos: 38.955402,-23.184855 + parent: 2 + type: Transform + - uid: 2452 + components: + - pos: 38.9693,-21.496181 + parent: 2 + type: Transform + - uid: 2511 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-28.5 + parent: 2 + type: Transform + - uid: 2700 + components: + - rot: 3.141592653589793 rad + pos: -25.5,19.5 + parent: 2 + type: Transform + - uid: 3826 + components: + - rot: 1.5707963267948966 rad + pos: -19.460197,-9.390528 + parent: 2 + type: Transform + - uid: 3827 + components: + - pos: -19.475822,-19.444386 + parent: 2 + type: Transform + - uid: 3843 + components: + - rot: 3.141592653589793 rad + pos: -34.55633,-18.205904 + parent: 2 + type: Transform + - uid: 4299 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,-11.5 + parent: 2 + type: Transform + - uid: 4659 + components: + - rot: 3.141592653589793 rad + pos: 48.5,-12.5 + parent: 2 + type: Transform + - uid: 4661 + components: + - rot: 3.141592653589793 rad + pos: 47.5,-12.5 + parent: 2 + type: Transform +- proto: ChairWood + entities: + - uid: 551 + components: + - pos: 11.401662,-23.614157 + parent: 2 + type: Transform + - uid: 690 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,23.5 + parent: 2 + type: Transform + - uid: 993 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-13.5 + parent: 2 + type: Transform + - uid: 1129 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,-13.5 + parent: 2 + type: Transform + - uid: 1146 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-13.5 + parent: 2 + type: Transform + - uid: 1283 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-13.5 + parent: 2 + type: Transform + - uid: 1288 + components: + - pos: -28.5,-12.5 + parent: 2 + type: Transform + - uid: 1648 + components: + - rot: 1.5707963267948966 rad + pos: 8.659688,15.495154 + parent: 2 + type: Transform + - uid: 1649 + components: + - rot: 1.5707963267948966 rad + pos: 8.659688,14.619547 + parent: 2 + type: Transform + - uid: 1869 + components: + - rot: 1.5707963267948966 rad + pos: 16.738737,23.467503 + parent: 2 + type: Transform + - uid: 3443 + components: + - rot: 3.141592653589793 rad + pos: -48.59637,-12.205723 + parent: 2 + type: Transform + - uid: 3444 + components: + - pos: -48.34637,-10.6734085 + parent: 2 + type: Transform + - uid: 3854 + components: + - rot: 1.5707963267948966 rad + pos: -40.387375,-14.908118 + parent: 2 + type: Transform + - uid: 3986 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-16.5 + parent: 2 + type: Transform + - uid: 3987 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-17.5 + parent: 2 + type: Transform + - uid: 4000 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-16.5 + parent: 2 + type: Transform + - uid: 4127 + components: + - rot: -1.5707963267948966 rad + pos: 17.471434,19.578217 + parent: 2 + type: Transform + - uid: 4128 + components: + - pos: 16.3881,20.370432 + parent: 2 + type: Transform + - uid: 4129 + components: + - rot: 3.141592653589793 rad + pos: 15.617267,18.608791 + parent: 2 + type: Transform + - uid: 4130 + components: + - rot: 1.5707963267948966 rad + pos: 14.565184,19.672031 + parent: 2 + type: Transform + - uid: 4175 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-16.5 + parent: 2 + type: Transform + - uid: 4176 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-18.5 + parent: 2 + type: Transform + - uid: 4177 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-17.5 + parent: 2 + type: Transform + - uid: 4179 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-18.5 + parent: 2 + type: Transform + - uid: 4182 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-16.5 + parent: 2 + type: Transform + - uid: 4662 + components: + - rot: -1.5707963267948966 rad + pos: 49.400646,-10.892005 + parent: 2 + type: Transform + - uid: 8883 + components: + - pos: -52.53355,-19.693462 + parent: 2 + type: Transform + - uid: 8884 + components: + - rot: 3.141592653589793 rad + pos: -52.429382,-21.246624 + parent: 2 + type: Transform +- proto: chem_master + entities: + - uid: 525 + components: + - pos: 19.5,-20.5 + parent: 2 + type: Transform + - uid: 528 + components: + - pos: 22.5,-17.5 + parent: 2 + type: Transform +- proto: ChemistryHotplate + entities: + - uid: 561 + components: + - pos: 19.5,-17.5 + parent: 2 + type: Transform +- proto: ChurchOrganInstrument + entities: + - uid: 4191 + components: + - pos: -42.5,-12.5 + parent: 2 + type: Transform +- proto: Cigar + entities: + - uid: 3978 + components: + - pos: 1.6219916,-28.763155 + parent: 2 + type: Transform + - uid: 4185 + components: + - pos: 1.7469916,-28.825699 + parent: 2 + type: Transform +- proto: CigarCase + entities: + - uid: 4138 + components: + - pos: -10.355999,7.6035733 + parent: 2 + type: Transform +- proto: CigaretteSpent + entities: + - uid: 3272 + components: + - pos: -38.35213,2.400432 + parent: 2 + type: Transform + - uid: 3273 + components: + - rot: -1.5707963267948966 rad + pos: -39.185463,2.7444212 + parent: 2 + type: Transform + - uid: 3274 + components: + - pos: -38.60213,2.3066173 + parent: 2 + type: Transform +- proto: CigarSpent + entities: + - uid: 3806 + components: + - pos: 1.7261584,-28.241959 + parent: 2 + type: Transform + - uid: 4172 + components: + - pos: -10.560002,8.376559 + parent: 2 + type: Transform +- proto: CigPackBlue + entities: + - uid: 3463 + components: + - rot: -1.5707963267948966 rad + pos: 1.5575359,-29.232231 + parent: 2 + type: Transform +- proto: CigPackMixed + entities: + - uid: 9697 + components: + - pos: 38.771496,20.765911 + parent: 2 + type: Transform +- proto: CircuitImprinter + entities: + - uid: 2569 + components: + - pos: -30.5,-20.5 + parent: 2 + type: Transform +- proto: CloningPod + entities: + - uid: 2465 + components: + - pos: 30.5,-26.5 + parent: 2 + type: Transform +- proto: CloningPodMachineCircuitboard + entities: + - uid: 9320 + components: + - pos: 45.408962,-16.406755 + parent: 2 + type: Transform +- proto: ClosetBombFilled + entities: + - uid: 3333 + components: + - pos: -50.5,7.5 + parent: 2 + type: Transform + - uid: 3334 + components: + - pos: -48.5,7.5 + parent: 2 + type: Transform +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 1823 + components: + - pos: 16.5,-8.5 + parent: 2 + type: Transform + - uid: 8916 + components: + - pos: 41.5,-1.5 + parent: 2 + type: Transform + - uid: 8919 + components: + - pos: 15.5,-2.5 + parent: 2 + type: Transform + - uid: 9187 + components: + - pos: -11.5,2.5 + parent: 2 + type: Transform + - uid: 9188 + components: + - pos: -15.5,0.5 + parent: 2 + type: Transform + - uid: 9189 + components: + - pos: -15.5,11.5 + parent: 2 + type: Transform + - uid: 9215 + components: + - pos: 12.5,13.5 + parent: 2 + type: Transform + - uid: 10078 + components: + - pos: -43.5,-1.5 + parent: 2 + type: Transform + - uid: 10082 + components: + - pos: -16.5,-9.5 + parent: 2 + type: Transform + - uid: 10083 + components: + - pos: -4.5,-32.5 + parent: 2 + type: Transform + - uid: 10085 + components: + - pos: -1.5,-32.5 + parent: 2 + type: Transform + - uid: 10086 + components: + - pos: 15.5,-22.5 + parent: 2 + type: Transform + - uid: 10087 + components: + - pos: 37.5,-17.5 + parent: 2 + type: Transform + - uid: 10235 + components: + - pos: -39.5,-22.5 + parent: 2 + type: Transform + - uid: 10774 + components: + - pos: -47.5,-17.5 + parent: 2 + type: Transform +- proto: ClosetFireFilled + entities: + - uid: 3828 + components: + - pos: -18.5,-20.5 + parent: 2 + type: Transform + - uid: 7005 + components: + - pos: 14.5,-31.5 + parent: 2 + type: Transform + - uid: 8915 + components: + - pos: 16.5,-9.5 + parent: 2 + type: Transform + - uid: 10079 + components: + - pos: -43.5,-0.5 + parent: 2 + type: Transform + - uid: 10084 + components: + - pos: -12.5,-15.5 + parent: 2 + type: Transform + - uid: 10088 + components: + - pos: 13.5,13.5 + parent: 2 + type: Transform + - uid: 10296 + components: + - pos: 41.5,-8.5 + parent: 2 + type: Transform +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 7004 + components: + - pos: 14.5,-32.5 + parent: 2 + type: Transform + - uid: 8917 + components: + - pos: 14.5,-2.5 + parent: 2 + type: Transform + - uid: 8918 + components: + - pos: 43.5,2.5 + parent: 2 + type: Transform + - uid: 8920 + components: + - pos: 40.5,11.5 + parent: 2 + type: Transform + - uid: 10080 + components: + - pos: -11.5,-15.5 + parent: 2 + type: Transform + - uid: 10081 + components: + - pos: -50.5,-1.5 + parent: 2 + type: Transform + - uid: 10089 + components: + - pos: 31.5,-35.5 + parent: 2 + type: Transform + - uid: 10090 + components: + - pos: 21.5,-27.5 + parent: 2 + type: Transform + - uid: 10209 + components: + - pos: 4.5,-29.5 + parent: 2 + type: Transform + - uid: 10295 + components: + - pos: 42.5,-8.5 + parent: 2 + type: Transform +- proto: ClosetRadiationSuitFilled + entities: + - uid: 3717 + components: + - pos: -24.5,-8.5 + parent: 2 + type: Transform +- proto: ClosetToolFilled + entities: + - uid: 10980 + components: + - pos: -15.5,-29.5 + parent: 2 + type: Transform +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 9857 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,16.5 + parent: 2 + type: Transform + - uid: 9860 + components: + - pos: -0.5,15.5 + parent: 2 + type: Transform +- proto: ClothingBackpackDuffelSurgeryFilled + entities: + - uid: 2703 + components: + - pos: 38.379025,-26.42707 + parent: 2 + type: Transform +- proto: ClothingEyesGlassesOutlawGlasses + entities: + - uid: 9667 + components: + - pos: -12.316303,15.403546 + parent: 2 + type: Transform +- proto: ClothingEyesGlassesSunglasses + entities: + - uid: 3247 + components: + - pos: 42.576614,10.440177 + parent: 2 + type: Transform +- proto: ClothingHeadHatCone + entities: + - uid: 807 + components: + - pos: 26.222437,3.4074683 + parent: 2 + type: Transform + - uid: 808 + components: + - pos: 26.675562,3.3918338 + parent: 2 + type: Transform + - uid: 816 + components: + - pos: 26.456812,3.6889148 + parent: 2 + type: Transform +- proto: ClothingHeadHatPirate + entities: + - uid: 8899 + components: + - pos: -50.792625,-21.904589 + parent: 2 + type: Transform +- proto: ClothingHeadHatPwig + entities: + - uid: 9665 + components: + - pos: -34.629375,0.6194455 + parent: 2 + type: Transform +- proto: ClothingHeadHatWeldingMaskPainted + entities: + - uid: 3797 + components: + - pos: -35.715862,-32.165455 + parent: 2 + type: Transform +- proto: ClothingHeadHatWizardFake + entities: + - uid: 8897 + components: + - pos: -50.251892,-21.242592 + parent: 2 + type: Transform +- proto: ClothingHeadHelmetTemplar + entities: + - uid: 8898 + components: + - pos: -50.772728,-22.264135 + parent: 2 + type: Transform +- proto: ClothingMaskGasAtmos + entities: + - uid: 9524 + components: + - pos: 21.323086,-31.494173 + parent: 2 + type: Transform +- proto: ClothingNeckBling + entities: + - uid: 4630 + components: + - pos: -1.7185712,-6.5037665 + parent: 2 + type: Transform +- proto: ClothingNeckCloakMiner + entities: + - uid: 10109 + components: + - pos: 17.74839,23.581364 + parent: 2 + type: Transform +- proto: ClothingNeckHeadphones + entities: + - uid: 8862 + components: + - pos: -48.6502,11.465925 + parent: 2 + type: Transform + - uid: 8863 + components: + - pos: -48.348118,11.684827 + parent: 2 + type: Transform +- proto: ClothingNeckMantleQM + entities: + - uid: 3760 + components: + - pos: 9.489485,14.475175 + parent: 2 + type: Transform +- proto: ClothingOuterHoodieGrey + entities: + - uid: 9668 + components: + - pos: -12.656631,15.719198 + parent: 2 + type: Transform +- proto: ClothingOuterRobesJudge + entities: + - uid: 9666 + components: + - pos: -34.348125,0.50478333 + parent: 2 + type: Transform +- proto: ClothingOuterVestHazard + entities: + - uid: 9528 + components: + - pos: 10.291236,7.634842 + parent: 2 + type: Transform +- proto: ClothingShoesBootsMag + entities: + - uid: 2264 + components: + - pos: -13.628283,-29.590473 + parent: 2 + type: Transform + - uid: 3724 + components: + - pos: -13.35745,-29.37157 + parent: 2 + type: Transform +- proto: Cobweb1 + entities: + - uid: 3267 + components: + - pos: -39.5,2.5 + parent: 2 + type: Transform + - uid: 10957 + components: + - rot: 3.141592653589793 rad + pos: -41.5,4.5 + parent: 2 + type: Transform + - uid: 10960 + components: + - pos: -19.5,-26.5 + parent: 2 + type: Transform + - uid: 10962 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-35.5 + parent: 2 + type: Transform + - uid: 10964 + components: + - rot: 3.141592653589793 rad + pos: 43.5,-13.5 + parent: 2 + type: Transform + - uid: 10967 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-2.5 + parent: 2 + type: Transform + - uid: 10969 + components: + - rot: 3.141592653589793 rad + pos: 12.5,9.5 + parent: 2 + type: Transform + - uid: 10970 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,13.5 + parent: 2 + type: Transform + - uid: 10972 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,0.5 + parent: 2 + type: Transform + - uid: 10973 + components: + - rot: -1.5707963267948966 rad + pos: -52.5,5.5 + parent: 2 + type: Transform + - uid: 10976 + components: + - rot: 3.141592653589793 rad + pos: -45.5,21.5 + parent: 2 + type: Transform + - uid: 10977 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,-17.5 + parent: 2 + type: Transform +- proto: Cobweb2 + entities: + - uid: 3266 + components: + - pos: -37.5,2.5 + parent: 2 + type: Transform + - uid: 10958 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-17.5 + parent: 2 + type: Transform + - uid: 10959 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-32.5 + parent: 2 + type: Transform + - uid: 10961 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-31.5 + parent: 2 + type: Transform + - uid: 10963 + components: + - pos: 42.5,-18.5 + parent: 2 + type: Transform + - uid: 10965 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,0.5 + parent: 2 + type: Transform + - uid: 10966 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,17.5 + parent: 2 + type: Transform + - uid: 10968 + components: + - pos: 12.5,11.5 + parent: 2 + type: Transform + - uid: 10971 + components: + - rot: 3.141592653589793 rad + pos: -11.5,2.5 + parent: 2 + type: Transform + - uid: 10974 + components: + - pos: -43.5,19.5 + parent: 2 + type: Transform + - uid: 10975 + components: + - rot: 1.5707963267948966 rad + pos: -49.5,23.5 + parent: 2 + type: Transform +- proto: ColoredLightTubeFrostyBlue + entities: + - uid: 10234 + components: + - pos: -49.602737,21.34801 + parent: 2 + type: Transform +- proto: CombatKnife + entities: + - uid: 2521 + components: + - pos: 30.636324,-30.422478 + parent: 2 + type: Transform +- proto: ComfyChair + entities: + - uid: 846 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-27.5 + parent: 2 + type: Transform + - uid: 8879 + components: + - pos: -50.5,-19.5 + parent: 2 + type: Transform + - uid: 8880 + components: + - pos: -49.5,-19.5 + parent: 2 + type: Transform +- proto: CommsComputerCircuitboard + entities: + - uid: 7226 + components: + - pos: 47.461044,-14.58257 + parent: 2 + type: Transform +- proto: ComputerAlert + entities: + - uid: 3251 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,13.5 + parent: 2 + type: Transform +- proto: ComputerAnalysisConsole + entities: + - uid: 101 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-9.5 + parent: 2 + type: Transform + - linkedPorts: + 156: + - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver + type: DeviceLinkSource +- proto: ComputerBroken + entities: + - uid: 10942 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-34.5 + parent: 2 + type: Transform +- proto: ComputerCargoBounty + entities: + - uid: 4148 + components: + - pos: 7.5,24.5 + parent: 2 + type: Transform +- proto: ComputerCargoOrders + entities: + - uid: 926 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,4.5 + parent: 2 + type: Transform +- proto: ComputerCloningConsole + entities: + - uid: 2483 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,-28.5 + parent: 2 + type: Transform +- proto: ComputerComms + entities: + - uid: 2361 + components: + - rot: -1.5707963267948966 rad + pos: 50.5,-5.5 + parent: 2 + type: Transform +- proto: ComputerCrewMonitoring + entities: + - uid: 1748 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-11.5 + parent: 2 + type: Transform + - uid: 2369 + components: + - rot: -1.5707963267948966 rad + pos: 52.5,-4.5 + parent: 2 + type: Transform +- proto: ComputerCriminalRecords + entities: + - uid: 628 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,7.5 + parent: 2 + type: Transform + - uid: 1090 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,2.5 + parent: 2 + type: Transform + - uid: 2368 + components: + - rot: -1.5707963267948966 rad + pos: 52.5,-5.5 + parent: 2 + type: Transform + - uid: 2778 + components: + - pos: -36.5,13.5 + parent: 2 + type: Transform + - uid: 2853 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,5.5 + parent: 2 + type: Transform +- proto: ComputerId + entities: + - uid: 265 + components: + - rot: 3.141592653589793 rad + pos: 50.5,-7.5 + parent: 2 + type: Transform + - uid: 1643 + components: + - pos: 10.5,17.5 + parent: 2 + type: Transform + - uid: 2122 + components: + - pos: 36.5,14.5 + parent: 2 + type: Transform + - uid: 2453 + components: + - pos: 39.5,-20.5 + parent: 2 + type: Transform + - uid: 2848 + components: + - rot: 1.5707963267948966 rad + pos: -39.5,4.5 + parent: 2 + type: Transform + - uid: 3468 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-28.5 + parent: 2 + type: Transform + - uid: 4062 + components: + - rot: 3.141592653589793 rad + pos: 10.5,0.5 + parent: 2 + type: Transform +- proto: ComputerMassMedia + entities: + - uid: 3726 + components: + - pos: -11.5,-17.5 + parent: 2 + type: Transform +- proto: ComputerMedicalRecords + entities: + - uid: 2370 + components: + - rot: -1.5707963267948966 rad + pos: 52.5,-3.5 + parent: 2 + type: Transform + - uid: 2500 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-27.5 + parent: 2 + type: Transform +- proto: ComputerPowerMonitoring + entities: + - uid: 2172 + components: + - rot: 3.141592653589793 rad + pos: 30.5,6.5 + parent: 2 + type: Transform +- proto: ComputerRadar + entities: + - uid: 10761 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,28.5 + parent: 2 + type: Transform +- proto: ComputerResearchAndDevelopment + entities: + - uid: 2570 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-17.5 + parent: 2 + type: Transform +- proto: ComputerShuttleCargo + entities: + - uid: 1803 + components: + - pos: 6.5,31.5 + parent: 2 + type: Transform +- proto: ComputerShuttleSalvage + entities: + - uid: 1867 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,26.5 + parent: 2 + type: Transform +- proto: ComputerSolarControl + entities: + - uid: 3238 + components: + - pos: 43.5,10.5 + parent: 2 + type: Transform +- proto: ComputerStationRecords + entities: + - uid: 470 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,8.5 + parent: 2 + type: Transform + - uid: 2367 + components: + - rot: -1.5707963267948966 rad + pos: 52.5,-6.5 + parent: 2 + type: Transform + - uid: 3191 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,3.5 + parent: 2 + type: Transform + - uid: 3837 + components: + - pos: -34.5,-17.5 + parent: 2 + type: Transform +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 362 + components: + - rot: 3.141592653589793 rad + pos: 51.5,-7.5 + parent: 2 + type: Transform + - uid: 541 + components: + - pos: -37.5,13.5 + parent: 2 + type: Transform + - uid: 3100 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,9.5 + parent: 2 + type: Transform +- proto: ComputerTelevision + entities: + - uid: 2917 + components: + - pos: -30.5,14.5 + parent: 2 + type: Transform +- proto: ConveyorBelt + entities: + - uid: 939 + components: + - pos: 0.5,9.5 + parent: 2 + type: Transform + - links: + - 4151 + type: DeviceLinkSink + - uid: 940 + components: + - pos: 0.5,8.5 + parent: 2 + type: Transform + - links: + - 4151 + type: DeviceLinkSink + - uid: 941 + components: + - pos: 0.5,7.5 + parent: 2 + type: Transform + - links: + - 4151 + type: DeviceLinkSink + - uid: 1682 + components: + - rot: 3.141592653589793 rad + pos: 8.5,31.5 + parent: 2 + type: Transform + - links: + - 885 + type: DeviceLinkSink + - uid: 1683 + components: + - rot: 3.141592653589793 rad + pos: 8.5,32.5 + parent: 2 + type: Transform + - links: + - 885 + type: DeviceLinkSink + - uid: 1684 + components: + - rot: 3.141592653589793 rad + pos: 8.5,33.5 + parent: 2 + type: Transform + - links: + - 885 + type: DeviceLinkSink + - uid: 1685 + components: + - rot: 3.141592653589793 rad + pos: 8.5,34.5 + parent: 2 + type: Transform + - links: + - 885 + type: DeviceLinkSink + - uid: 1686 + components: + - rot: 3.141592653589793 rad + pos: 8.5,35.5 + parent: 2 + type: Transform + - links: + - 885 + type: DeviceLinkSink + - uid: 1687 + components: + - pos: 4.5,35.5 + parent: 2 + type: Transform + - links: + - 1859 + type: DeviceLinkSink + - uid: 1688 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,34.5 + parent: 2 + type: Transform + - links: + - 1859 + type: DeviceLinkSink + - uid: 1689 + components: + - pos: 3.5,34.5 + parent: 2 + type: Transform + - links: + - 1859 + type: DeviceLinkSink + - uid: 1690 + components: + - pos: 3.5,33.5 + parent: 2 + type: Transform + - links: + - 1859 + type: DeviceLinkSink + - uid: 1691 + components: + - pos: 3.5,32.5 + parent: 2 + type: Transform + - links: + - 1859 + type: DeviceLinkSink + - uid: 1692 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,31.5 + parent: 2 + type: Transform + - links: + - 1859 + type: DeviceLinkSink + - uid: 1693 + components: + - pos: 2.5,31.5 + parent: 2 + type: Transform + - links: + - 1859 + type: DeviceLinkSink + - uid: 1694 + components: + - pos: 2.5,30.5 + parent: 2 + type: Transform + - links: + - 1859 + type: DeviceLinkSink + - uid: 1695 + components: + - pos: 2.5,29.5 + parent: 2 + type: Transform + - links: + - 1859 + type: DeviceLinkSink + - uid: 1696 + components: + - pos: 2.5,28.5 + parent: 2 + type: Transform + - links: + - 1859 + type: DeviceLinkSink + - uid: 1700 + components: + - pos: 2.5,24.5 + parent: 2 + type: Transform + - links: + - 9570 + type: DeviceLinkSink + - uid: 1701 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,31.5 + parent: 2 + type: Transform + - links: + - 885 + type: DeviceLinkSink + - uid: 1702 + components: + - rot: 3.141592653589793 rad + pos: 9.5,30.5 + parent: 2 + type: Transform + - links: + - 885 + type: DeviceLinkSink + - uid: 1703 + components: + - rot: 3.141592653589793 rad + pos: 9.5,29.5 + parent: 2 + type: Transform + - links: + - 885 + type: DeviceLinkSink + - uid: 1704 + components: + - rot: 3.141592653589793 rad + pos: 9.5,28.5 + parent: 2 + type: Transform + - links: + - 885 + type: DeviceLinkSink + - uid: 1716 + components: + - pos: 2.5,23.5 + parent: 2 + type: Transform + - links: + - 9570 + type: DeviceLinkSink + - uid: 1717 + components: + - pos: 2.5,22.5 + parent: 2 + type: Transform + - links: + - 9570 + type: DeviceLinkSink + - uid: 1718 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,21.5 + parent: 2 + type: Transform + - links: + - 9570 + type: DeviceLinkSink + - uid: 1719 + components: + - pos: 3.5,21.5 + parent: 2 + type: Transform + - links: + - 9570 + type: DeviceLinkSink + - uid: 1720 + components: + - pos: 3.5,20.5 + parent: 2 + type: Transform + - links: + - 9570 + type: DeviceLinkSink + - uid: 1721 + components: + - pos: 3.5,19.5 + parent: 2 + type: Transform + - links: + - 9570 + type: DeviceLinkSink + - uid: 1722 + components: + - pos: 3.5,18.5 + parent: 2 + type: Transform + - links: + - 9570 + type: DeviceLinkSink + - uid: 1723 + components: + - pos: 3.5,17.5 + parent: 2 + type: Transform + - links: + - 9570 + type: DeviceLinkSink + - uid: 1724 + components: + - pos: 3.5,16.5 + parent: 2 + type: Transform + - links: + - 9570 + type: DeviceLinkSink + - uid: 1725 + components: + - pos: 3.5,15.5 + parent: 2 + type: Transform + - links: + - 9570 + type: DeviceLinkSink + - uid: 1726 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,14.5 + parent: 2 + type: Transform + - links: + - 9570 + type: DeviceLinkSink + - uid: 1727 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,14.5 + parent: 2 + type: Transform + - links: + - 9570 + type: DeviceLinkSink + - uid: 1728 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,14.5 + parent: 2 + type: Transform + - links: + - 9570 + type: DeviceLinkSink + - uid: 1802 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,30.5 + parent: 2 + type: Transform + - links: + - 1855 + type: DeviceLinkSink + - uid: 1828 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,21.5 + parent: 2 + type: Transform + - links: + - 4134 + type: DeviceLinkSink + - uid: 1829 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,21.5 + parent: 2 + type: Transform + - links: + - 4134 + type: DeviceLinkSink + - uid: 1830 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,21.5 + parent: 2 + type: Transform + - links: + - 4134 + type: DeviceLinkSink + - uid: 1831 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,21.5 + parent: 2 + type: Transform + - links: + - 4134 + type: DeviceLinkSink + - uid: 1832 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,21.5 + parent: 2 + type: Transform + - links: + - 4134 + type: DeviceLinkSink + - uid: 1833 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,21.5 + parent: 2 + type: Transform + - links: + - 4134 + type: DeviceLinkSink + - uid: 1836 + components: + - rot: 3.141592653589793 rad + pos: 9.5,27.5 + parent: 2 + type: Transform + - links: + - 885 + type: DeviceLinkSink + - uid: 1845 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,21.5 + parent: 2 + type: Transform + - links: + - 4134 + type: DeviceLinkSink + - uid: 1846 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,21.5 + parent: 2 + type: Transform + - links: + - 4134 + type: DeviceLinkSink + - uid: 1849 + components: + - pos: 13.5,22.5 + parent: 2 + type: Transform + - links: + - 4134 + type: DeviceLinkSink + - uid: 1850 + components: + - pos: 13.5,23.5 + parent: 2 + type: Transform + - links: + - 4134 + type: DeviceLinkSink + - uid: 1851 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,30.5 + parent: 2 + type: Transform + - links: + - 1855 + type: DeviceLinkSink + - uid: 1852 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,30.5 + parent: 2 + type: Transform + - links: + - 1855 + type: DeviceLinkSink + - uid: 1853 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,30.5 + parent: 2 + type: Transform + - links: + - 1855 + type: DeviceLinkSink + - uid: 1854 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,30.5 + parent: 2 + type: Transform + - links: + - 1855 + type: DeviceLinkSink + - uid: 2617 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-29.5 + parent: 2 + type: Transform + - links: + - 7000 + type: DeviceLinkSink + - uid: 2618 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-30.5 + parent: 2 + type: Transform + - links: + - 7000 + type: DeviceLinkSink + - uid: 2619 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-31.5 + parent: 2 + type: Transform + - links: + - 7000 + type: DeviceLinkSink +- proto: CrateArtifactContainer + entities: + - uid: 3823 + components: + - pos: -18.5,-13.5 + parent: 2 + type: Transform + - uid: 3825 + components: + - pos: 29.5,28.5 + parent: 2 + type: Transform +- proto: CrateEmergencyInflatablewall + entities: + - uid: 142 + components: + - pos: 25.5,-2.5 + parent: 2 + type: Transform +- proto: CrateEmptySpawner + entities: + - uid: 3765 + components: + - pos: 10.5,11.5 + parent: 2 + type: Transform + - uid: 3766 + components: + - pos: 11.5,11.5 + parent: 2 + type: Transform + - uid: 3770 + components: + - pos: 10.5,9.5 + parent: 2 + type: Transform + - uid: 3771 + components: + - pos: 9.5,9.5 + parent: 2 + type: Transform + - uid: 4139 + components: + - pos: 8.5,21.5 + parent: 2 + type: Transform + - uid: 4140 + components: + - pos: 12.5,21.5 + parent: 2 + type: Transform + - uid: 4144 + components: + - pos: 3.5,24.5 + parent: 2 + type: Transform + - uid: 4145 + components: + - pos: 7.5,27.5 + parent: 2 + type: Transform + - uid: 4146 + components: + - pos: 7.5,29.5 + parent: 2 + type: Transform + - uid: 4147 + components: + - pos: 3.5,29.5 + parent: 2 + type: Transform + - uid: 4150 + components: + - pos: -4.5,14.5 + parent: 2 + type: Transform + - uid: 4152 + components: + - pos: -4.5,13.5 + parent: 2 + type: Transform + - uid: 4153 + components: + - pos: -1.5,14.5 + parent: 2 + type: Transform + - uid: 4155 + components: + - pos: 2.5,22.5 + parent: 2 + type: Transform + - uid: 9106 + components: + - pos: 12.5,30.5 + parent: 2 + type: Transform + - uid: 9109 + components: + - pos: 13.5,30.5 + parent: 2 + type: Transform + - uid: 9110 + components: + - pos: 14.5,30.5 + parent: 2 + type: Transform +- proto: CrateEngineeringAMEJar + entities: + - uid: 4625 + components: + - pos: 35.5,5.5 + parent: 2 + type: Transform +- proto: CrateEngineeringAMEShielding + entities: + - uid: 2301 + components: + - pos: 41.5,6.5 + parent: 2 + type: Transform + - uid: 4624 + components: + - pos: 41.5,7.5 + parent: 2 + type: Transform +- proto: CrateEngineeringCableBulk + entities: + - uid: 10107 + components: + - pos: 35.5,-0.5 + parent: 2 + type: Transform +- proto: CrateEngineeringSolar + entities: + - uid: 2998 + components: + - pos: 59.5,8.5 + parent: 2 + type: Transform + - uid: 3223 + components: + - pos: 54.5,16.5 + parent: 2 + type: Transform +- proto: CrateFilledSpawner + entities: + - uid: 2582 + components: + - pos: -2.5,11.5 + parent: 2 + type: Transform + - uid: 3768 + components: + - pos: 7.5,11.5 + parent: 2 + type: Transform + - uid: 4141 + components: + - pos: 9.5,28.5 + parent: 2 + type: Transform + - uid: 4142 + components: + - pos: 6.5,28.5 + parent: 2 + type: Transform + - uid: 4143 + components: + - pos: 3.5,23.5 + parent: 2 + type: Transform + - uid: 9107 + components: + - pos: 13.5,23.5 + parent: 2 + type: Transform + - uid: 9108 + components: + - pos: 12.5,23.5 + parent: 2 + type: Transform +- proto: CrateFreezer + entities: + - uid: 1401 + components: + - pos: -1.5,-24.5 + parent: 2 + type: Transform +- proto: CrateFunATV + entities: + - uid: 1538 + components: + - pos: 31.5,-11.5 + parent: 2 + type: Transform +- proto: CrateFunBoardGames + entities: + - uid: 9306 + components: + - pos: 43.5,-16.5 + parent: 2 + type: Transform +- proto: CrateHydroponics + entities: + - uid: 616 + components: + - pos: 12.5,-20.5 + parent: 2 + type: Transform + - uid: 10647 + components: + - pos: 17.5,-19.5 + parent: 2 + type: Transform +- proto: CrateHydroponicsSeeds + entities: + - uid: 1294 + components: + - pos: -13.5,-9.5 + parent: 2 + type: Transform +- proto: CrateHydroponicsTools + entities: + - uid: 1312 + components: + - pos: -13.5,-8.5 + parent: 2 + type: Transform +- proto: CrateMedicalScrubs + entities: + - uid: 2510 + components: + - pos: 28.5,-25.5 + parent: 2 + type: Transform +- proto: CrateMedicalSurgery + entities: + - uid: 9765 + components: + - pos: 38.5,-30.5 + parent: 2 + type: Transform +- proto: CrateNPCHamster + entities: + - uid: 4064 + components: + - pos: -6.5,-28.5 + parent: 2 + type: Transform +- proto: CrateSurgery + entities: + - uid: 9617 + components: + - pos: -19.5,-22.5 + parent: 2 + type: Transform +- proto: CrateTrainingBombs + entities: + - uid: 3339 + components: + - pos: -46.5,7.5 + parent: 2 + type: Transform +- proto: CrateTrashCart + entities: + - uid: 3802 + components: + - pos: -13.5,-0.5 + parent: 2 + type: Transform +- proto: CrayonBox + entities: + - uid: 836 + components: + - pos: -2.3623934,-26.472786 + parent: 2 + type: Transform +- proto: Crematorium + entities: + - uid: 3855 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,-17.5 + parent: 2 + type: Transform +- proto: CrewMonitoringComputerCircuitboard + entities: + - uid: 6882 + components: + - pos: 47.41938,-15.510298 + parent: 2 + type: Transform +- proto: CrewMonitoringServer + entities: + - uid: 4665 + components: + - pos: 46.5,-4.5 + parent: 2 + type: Transform +- proto: CrewMonitoringServerMachineCircuitboard + entities: + - uid: 4313 + components: + - pos: 47.679794,-15.312244 + parent: 2 + type: Transform +- proto: CriminalRecordsComputerCircuitboard + entities: + - uid: 9316 + components: + - pos: 47.679794,-16.292091 + parent: 2 + type: Transform +- proto: CryoPod + entities: + - uid: 2219 + components: + - pos: 19.5,-22.5 + parent: 2 + type: Transform +- proto: d6Dice + entities: + - uid: 1282 + components: + - pos: -28.180807,-13.210001 + parent: 2 + type: Transform +- proto: DefibrillatorCabinetFilled + entities: + - uid: 1103 + components: + - pos: 31.5,-7.5 + parent: 2 + type: Transform + - uid: 6722 + components: + - pos: 26.5,-21.5 + parent: 2 + type: Transform + - uid: 9809 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-13.5 + parent: 2 + type: Transform +- proto: DeployableBarrier + entities: + - uid: 349 + components: + - pos: -18.5,2.5 + parent: 2 + type: Transform + - uid: 1101 + components: + - pos: -18.5,3.5 + parent: 2 + type: Transform + - uid: 3464 + components: + - pos: -17.5,19.5 + parent: 2 + type: Transform + - uid: 3937 + components: + - pos: -18.5,19.5 + parent: 2 + type: Transform +- proto: DeskBell + entities: + - uid: 447 + components: + - pos: -2.248689,3.5965745 + parent: 2 + type: Transform + - type: Anchorable + - uid: 817 + components: + - pos: 23.338093,-1.2348757 + parent: 2 + type: Transform + - type: Anchorable + - uid: 3678 + components: + - pos: -22.729122,1.4945035 + parent: 2 + type: Transform + - type: Anchorable + - uid: 9332 + components: + - pos: 21.70397,-14.213312 + parent: 2 + type: Transform + - type: Anchorable + - uid: 9333 + components: + - pos: -29.772127,-16.184164 + parent: 2 + type: Transform + - type: Anchorable +- proto: DiceBag + entities: + - uid: 2935 + components: + - pos: -30.297337,16.57338 + parent: 2 + type: Transform + - uid: 8889 + components: + - pos: -48.32532,-19.424814 + parent: 2 + type: Transform +- proto: DisposalBend + entities: + - uid: 10395 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-30.5 + parent: 2 + type: Transform + - uid: 10396 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-31.5 + parent: 2 + type: Transform + - uid: 10410 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-31.5 + parent: 2 + type: Transform + - uid: 10461 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,19.5 + parent: 2 + type: Transform + - uid: 10496 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-30.5 + parent: 2 + type: Transform + - uid: 10497 + components: + - pos: -24.5,-26.5 + parent: 2 + type: Transform + - uid: 10498 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-26.5 + parent: 2 + type: Transform + - uid: 10515 + components: + - rot: 3.141592653589793 rad + pos: -27.5,-10.5 + parent: 2 + type: Transform + - uid: 10516 + components: + - pos: -26.5,-10.5 + parent: 2 + type: Transform + - uid: 10517 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-14.5 + parent: 2 + type: Transform + - uid: 10518 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-14.5 + parent: 2 + type: Transform + - uid: 10562 + components: + - pos: -18.5,16.5 + parent: 2 + type: Transform + - uid: 10565 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,4.5 + parent: 2 + type: Transform + - uid: 10589 + components: + - rot: 3.141592653589793 rad + pos: -52.5,-6.5 + parent: 2 + type: Transform + - uid: 10591 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-7.5 + parent: 2 + type: Transform + - uid: 10633 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,1.5 + parent: 2 + type: Transform + - uid: 10638 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,26.5 + parent: 2 + type: Transform + - uid: 10639 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,26.5 + parent: 2 + type: Transform + - uid: 10654 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-16.5 + parent: 2 + type: Transform + - uid: 10657 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-20.5 + parent: 2 + type: Transform + - uid: 10658 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-30.5 + parent: 2 + type: Transform + - uid: 10689 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-28.5 + parent: 2 + type: Transform + - uid: 10727 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-4.5 + parent: 2 + type: Transform + - uid: 10728 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-1.5 + parent: 2 + type: Transform + - uid: 10729 + components: + - pos: 26.5,-1.5 + parent: 2 + type: Transform + - uid: 10738 + components: + - pos: 24.5,-4.5 + parent: 2 + type: Transform + - uid: 10756 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-15.5 + parent: 2 + type: Transform +- proto: DisposalJunction + entities: + - uid: 10469 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-16.5 + parent: 2 + type: Transform + - uid: 10471 + components: + - pos: -7.5,-28.5 + parent: 2 + type: Transform + - uid: 10473 + components: + - pos: -7.5,-30.5 + parent: 2 + type: Transform + - uid: 10503 + components: + - pos: -25.5,-24.5 + parent: 2 + type: Transform + - uid: 10592 + components: + - pos: -29.5,-6.5 + parent: 2 + type: Transform + - uid: 10687 + components: + - pos: 24.5,-27.5 + parent: 2 + type: Transform +- proto: DisposalJunctionFlipped + entities: + - uid: 3259 + components: + - pos: 24.5,-15.5 + parent: 2 + type: Transform + - uid: 10440 + components: + - pos: -7.5,1.5 + parent: 2 + type: Transform + - uid: 10464 + components: + - pos: -7.5,2.5 + parent: 2 + type: Transform + - uid: 10470 + components: + - pos: -7.5,-16.5 + parent: 2 + type: Transform + - uid: 10504 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-24.5 + parent: 2 + type: Transform + - uid: 10610 + components: + - pos: 3.5,9.5 + parent: 2 + type: Transform + - uid: 10637 + components: + - pos: 3.5,23.5 + parent: 2 + type: Transform + - uid: 10686 + components: + - pos: 24.5,-9.5 + parent: 2 + type: Transform + - uid: 10736 + components: + - pos: 24.5,-6.5 + parent: 2 + type: Transform + - uid: 10737 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-4.5 + parent: 2 + type: Transform + - uid: 10740 + components: + - pos: 16.5,-28.5 + parent: 2 + type: Transform +- proto: DisposalPipe + entities: + - uid: 10390 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-30.5 + parent: 2 + type: Transform + - uid: 10391 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-30.5 + parent: 2 + type: Transform + - uid: 10392 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-30.5 + parent: 2 + type: Transform + - uid: 10393 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-30.5 + parent: 2 + type: Transform + - uid: 10394 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-30.5 + parent: 2 + type: Transform + - uid: 10397 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-31.5 + parent: 2 + type: Transform + - uid: 10398 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-31.5 + parent: 2 + type: Transform + - uid: 10399 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-31.5 + parent: 2 + type: Transform + - uid: 10400 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-31.5 + parent: 2 + type: Transform + - uid: 10401 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-31.5 + parent: 2 + type: Transform + - uid: 10402 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-31.5 + parent: 2 + type: Transform + - uid: 10403 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-31.5 + parent: 2 + type: Transform + - uid: 10404 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-31.5 + parent: 2 + type: Transform + - uid: 10405 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-31.5 + parent: 2 + type: Transform + - uid: 10406 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-31.5 + parent: 2 + type: Transform + - uid: 10407 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-31.5 + parent: 2 + type: Transform + - uid: 10408 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-31.5 + parent: 2 + type: Transform + - uid: 10409 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-31.5 + parent: 2 + type: Transform + - uid: 10411 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-29.5 + parent: 2 + type: Transform + - uid: 10412 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-27.5 + parent: 2 + type: Transform + - uid: 10413 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-26.5 + parent: 2 + type: Transform + - uid: 10414 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-25.5 + parent: 2 + type: Transform + - uid: 10415 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-24.5 + parent: 2 + type: Transform + - uid: 10416 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-23.5 + parent: 2 + type: Transform + - uid: 10417 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-22.5 + parent: 2 + type: Transform + - uid: 10418 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-21.5 + parent: 2 + type: Transform + - uid: 10419 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-20.5 + parent: 2 + type: Transform + - uid: 10420 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-19.5 + parent: 2 + type: Transform + - uid: 10421 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-18.5 + parent: 2 + type: Transform + - uid: 10422 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-17.5 + parent: 2 + type: Transform + - uid: 10423 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-15.5 + parent: 2 + type: Transform + - uid: 10424 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-14.5 + parent: 2 + type: Transform + - uid: 10425 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-13.5 + parent: 2 + type: Transform + - uid: 10426 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-12.5 + parent: 2 + type: Transform + - uid: 10427 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-11.5 + parent: 2 + type: Transform + - uid: 10428 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-10.5 + parent: 2 + type: Transform + - uid: 10429 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-9.5 + parent: 2 + type: Transform + - uid: 10430 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-8.5 + parent: 2 + type: Transform + - uid: 10431 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-7.5 + parent: 2 + type: Transform + - uid: 10432 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-6.5 + parent: 2 + type: Transform + - uid: 10433 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-5.5 + parent: 2 + type: Transform + - uid: 10434 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-4.5 + parent: 2 + type: Transform + - uid: 10435 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-3.5 + parent: 2 + type: Transform + - uid: 10436 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-2.5 + parent: 2 + type: Transform + - uid: 10437 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-1.5 + parent: 2 + type: Transform + - uid: 10438 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-0.5 + parent: 2 + type: Transform + - uid: 10439 + components: + - rot: 3.141592653589793 rad + pos: -7.5,0.5 + parent: 2 + type: Transform + - uid: 10441 + components: + - rot: 3.141592653589793 rad + pos: -7.5,3.5 + parent: 2 + type: Transform + - uid: 10442 + components: + - rot: 3.141592653589793 rad + pos: -7.5,4.5 + parent: 2 + type: Transform + - uid: 10443 + components: + - rot: 3.141592653589793 rad + pos: -7.5,5.5 + parent: 2 + type: Transform + - uid: 10444 + components: + - rot: 3.141592653589793 rad + pos: -7.5,6.5 + parent: 2 + type: Transform + - uid: 10445 + components: + - rot: 3.141592653589793 rad + pos: -7.5,7.5 + parent: 2 + type: Transform + - uid: 10446 + components: + - rot: 3.141592653589793 rad + pos: -7.5,8.5 + parent: 2 + type: Transform + - uid: 10447 + components: + - rot: 3.141592653589793 rad + pos: -7.5,9.5 + parent: 2 + type: Transform + - uid: 10448 + components: + - rot: 3.141592653589793 rad + pos: -7.5,10.5 + parent: 2 + type: Transform + - uid: 10449 + components: + - rot: 3.141592653589793 rad + pos: -7.5,11.5 + parent: 2 + type: Transform + - uid: 10450 + components: + - rot: 3.141592653589793 rad + pos: -7.5,12.5 + parent: 2 + type: Transform + - uid: 10451 + components: + - rot: 3.141592653589793 rad + pos: -7.5,13.5 + parent: 2 + type: Transform + - uid: 10452 + components: + - rot: 3.141592653589793 rad + pos: -7.5,14.5 + parent: 2 + type: Transform + - uid: 10453 + components: + - rot: 3.141592653589793 rad + pos: -7.5,15.5 + parent: 2 + type: Transform + - uid: 10454 + components: + - rot: 3.141592653589793 rad + pos: -7.5,16.5 + parent: 2 + type: Transform + - uid: 10455 + components: + - rot: 3.141592653589793 rad + pos: -7.5,17.5 + parent: 2 + type: Transform + - uid: 10456 + components: + - rot: 3.141592653589793 rad + pos: -7.5,18.5 + parent: 2 + type: Transform + - uid: 10457 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,19.5 + parent: 2 + type: Transform + - uid: 10458 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,19.5 + parent: 2 + type: Transform + - uid: 10459 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,19.5 + parent: 2 + type: Transform + - uid: 10463 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,2.5 + parent: 2 + type: Transform + - uid: 10465 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-16.5 + parent: 2 + type: Transform + - uid: 10466 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-16.5 + parent: 2 + type: Transform + - uid: 10467 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-15.5 + parent: 2 + type: Transform + - uid: 10474 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-30.5 + parent: 2 + type: Transform + - uid: 10475 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-30.5 + parent: 2 + type: Transform + - uid: 10476 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-30.5 + parent: 2 + type: Transform + - uid: 10477 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-30.5 + parent: 2 + type: Transform + - uid: 10478 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-30.5 + parent: 2 + type: Transform + - uid: 10479 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-30.5 + parent: 2 + type: Transform + - uid: 10480 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-30.5 + parent: 2 + type: Transform + - uid: 10481 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-30.5 + parent: 2 + type: Transform + - uid: 10482 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-30.5 + parent: 2 + type: Transform + - uid: 10483 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-30.5 + parent: 2 + type: Transform + - uid: 10484 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-30.5 + parent: 2 + type: Transform + - uid: 10485 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-30.5 + parent: 2 + type: Transform + - uid: 10486 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-30.5 + parent: 2 + type: Transform + - uid: 10487 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-30.5 + parent: 2 + type: Transform + - uid: 10488 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-30.5 + parent: 2 + type: Transform + - uid: 10489 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-30.5 + parent: 2 + type: Transform + - uid: 10490 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-29.5 + parent: 2 + type: Transform + - uid: 10491 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-28.5 + parent: 2 + type: Transform + - uid: 10492 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-27.5 + parent: 2 + type: Transform + - uid: 10493 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-25.5 + parent: 2 + type: Transform + - uid: 10495 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-23.5 + parent: 2 + type: Transform + - uid: 10500 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,-24.5 + parent: 2 + type: Transform + - uid: 10501 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-24.5 + parent: 2 + type: Transform + - uid: 10502 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-24.5 + parent: 2 + type: Transform + - uid: 10505 + components: + - pos: -27.5,-23.5 + parent: 2 + type: Transform + - uid: 10506 + components: + - pos: -27.5,-22.5 + parent: 2 + type: Transform + - uid: 10507 + components: + - pos: -27.5,-21.5 + parent: 2 + type: Transform + - uid: 10508 + components: + - pos: -27.5,-20.5 + parent: 2 + type: Transform + - uid: 10509 + components: + - pos: -27.5,-19.5 + parent: 2 + type: Transform + - uid: 10510 + components: + - pos: -27.5,-18.5 + parent: 2 + type: Transform + - uid: 10511 + components: + - pos: -27.5,-17.5 + parent: 2 + type: Transform + - uid: 10512 + components: + - pos: -27.5,-16.5 + parent: 2 + type: Transform + - uid: 10513 + components: + - pos: -27.5,-15.5 + parent: 2 + type: Transform + - uid: 10519 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-13.5 + parent: 2 + type: Transform + - uid: 10520 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-12.5 + parent: 2 + type: Transform + - uid: 10521 + components: + - rot: 3.141592653589793 rad + pos: -26.5,-11.5 + parent: 2 + type: Transform + - uid: 10522 + components: + - rot: 3.141592653589793 rad + pos: -27.5,-9.5 + parent: 2 + type: Transform + - uid: 10523 + components: + - rot: 3.141592653589793 rad + pos: -27.5,-8.5 + parent: 2 + type: Transform + - uid: 10525 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-6.5 + parent: 2 + type: Transform + - uid: 10526 + components: + - pos: -29.5,-5.5 + parent: 2 + type: Transform + - uid: 10527 + components: + - pos: -29.5,-4.5 + parent: 2 + type: Transform + - uid: 10528 + components: + - pos: -29.5,-3.5 + parent: 2 + type: Transform + - uid: 10529 + components: + - pos: -29.5,-2.5 + parent: 2 + type: Transform + - uid: 10530 + components: + - pos: -29.5,-1.5 + parent: 2 + type: Transform + - uid: 10531 + components: + - pos: -29.5,-0.5 + parent: 2 + type: Transform + - uid: 10532 + components: + - pos: -29.5,0.5 + parent: 2 + type: Transform + - uid: 10533 + components: + - pos: -29.5,1.5 + parent: 2 + type: Transform + - uid: 10534 + components: + - pos: -29.5,2.5 + parent: 2 + type: Transform + - uid: 10535 + components: + - pos: -29.5,3.5 + parent: 2 + type: Transform + - uid: 10537 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,4.5 + parent: 2 + type: Transform + - uid: 10538 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,4.5 + parent: 2 + type: Transform + - uid: 10539 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,4.5 + parent: 2 + type: Transform + - uid: 10540 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,4.5 + parent: 2 + type: Transform + - uid: 10542 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,4.5 + parent: 2 + type: Transform + - uid: 10543 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,4.5 + parent: 2 + type: Transform + - uid: 10544 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,4.5 + parent: 2 + type: Transform + - uid: 10545 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,4.5 + parent: 2 + type: Transform + - uid: 10546 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,4.5 + parent: 2 + type: Transform + - uid: 10547 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,4.5 + parent: 2 + type: Transform + - uid: 10548 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,4.5 + parent: 2 + type: Transform + - uid: 10549 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,4.5 + parent: 2 + type: Transform + - uid: 10550 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,4.5 + parent: 2 + type: Transform + - uid: 10551 + components: + - rot: 3.141592653589793 rad + pos: -18.5,5.5 + parent: 2 + type: Transform + - uid: 10552 + components: + - rot: 3.141592653589793 rad + pos: -18.5,6.5 + parent: 2 + type: Transform + - uid: 10553 + components: + - rot: 3.141592653589793 rad + pos: -18.5,7.5 + parent: 2 + type: Transform + - uid: 10554 + components: + - rot: 3.141592653589793 rad + pos: -18.5,8.5 + parent: 2 + type: Transform + - uid: 10555 + components: + - rot: 3.141592653589793 rad + pos: -18.5,9.5 + parent: 2 + type: Transform + - uid: 10556 + components: + - rot: 3.141592653589793 rad + pos: -18.5,10.5 + parent: 2 + type: Transform + - uid: 10557 + components: + - rot: 3.141592653589793 rad + pos: -18.5,11.5 + parent: 2 + type: Transform + - uid: 10558 + components: + - rot: 3.141592653589793 rad + pos: -18.5,12.5 + parent: 2 + type: Transform + - uid: 10559 + components: + - rot: 3.141592653589793 rad + pos: -18.5,13.5 + parent: 2 + type: Transform + - uid: 10560 + components: + - rot: 3.141592653589793 rad + pos: -18.5,14.5 + parent: 2 + type: Transform + - uid: 10561 + components: + - rot: 3.141592653589793 rad + pos: -18.5,15.5 + parent: 2 + type: Transform + - uid: 10564 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,4.5 + parent: 2 + type: Transform + - uid: 10566 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-7.5 + parent: 2 + type: Transform + - uid: 10568 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-6.5 + parent: 2 + type: Transform + - uid: 10569 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-6.5 + parent: 2 + type: Transform + - uid: 10570 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-6.5 + parent: 2 + type: Transform + - uid: 10571 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-6.5 + parent: 2 + type: Transform + - uid: 10572 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-6.5 + parent: 2 + type: Transform + - uid: 10573 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-6.5 + parent: 2 + type: Transform + - uid: 10574 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-6.5 + parent: 2 + type: Transform + - uid: 10575 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-6.5 + parent: 2 + type: Transform + - uid: 10576 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-6.5 + parent: 2 + type: Transform + - uid: 10577 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,-6.5 + parent: 2 + type: Transform + - uid: 10578 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,-6.5 + parent: 2 + type: Transform + - uid: 10579 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-6.5 + parent: 2 + type: Transform + - uid: 10580 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,-6.5 + parent: 2 + type: Transform + - uid: 10581 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,-6.5 + parent: 2 + type: Transform + - uid: 10582 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,-6.5 + parent: 2 + type: Transform + - uid: 10583 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,-6.5 + parent: 2 + type: Transform + - uid: 10584 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,-6.5 + parent: 2 + type: Transform + - uid: 10585 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,-6.5 + parent: 2 + type: Transform + - uid: 10586 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,-6.5 + parent: 2 + type: Transform + - uid: 10587 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,-6.5 + parent: 2 + type: Transform + - uid: 10588 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,-6.5 + parent: 2 + type: Transform + - uid: 10593 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,1.5 + parent: 2 + type: Transform + - uid: 10594 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,1.5 + parent: 2 + type: Transform + - uid: 10595 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,1.5 + parent: 2 + type: Transform + - uid: 10596 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,1.5 + parent: 2 + type: Transform + - uid: 10597 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,1.5 + parent: 2 + type: Transform + - uid: 10598 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 2 + type: Transform + - uid: 10599 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 2 + type: Transform + - uid: 10600 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 2 + type: Transform + - uid: 10601 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 2 + type: Transform + - uid: 10602 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 2 + type: Transform + - uid: 10603 + components: + - rot: 3.141592653589793 rad + pos: 3.5,2.5 + parent: 2 + type: Transform + - uid: 10604 + components: + - rot: 3.141592653589793 rad + pos: 3.5,3.5 + parent: 2 + type: Transform + - uid: 10605 + components: + - rot: 3.141592653589793 rad + pos: 3.5,4.5 + parent: 2 + type: Transform + - uid: 10606 + components: + - rot: 3.141592653589793 rad + pos: 3.5,5.5 + parent: 2 + type: Transform + - uid: 10607 + components: + - rot: 3.141592653589793 rad + pos: 3.5,6.5 + parent: 2 + type: Transform + - uid: 10608 + components: + - rot: 3.141592653589793 rad + pos: 3.5,7.5 + parent: 2 + type: Transform + - uid: 10609 + components: + - rot: 3.141592653589793 rad + pos: 3.5,8.5 + parent: 2 + type: Transform + - uid: 10611 + components: + - rot: 3.141592653589793 rad + pos: 3.5,10.5 + parent: 2 + type: Transform + - uid: 10612 + components: + - rot: 3.141592653589793 rad + pos: 3.5,11.5 + parent: 2 + type: Transform + - uid: 10613 + components: + - rot: 3.141592653589793 rad + pos: 3.5,12.5 + parent: 2 + type: Transform + - uid: 10614 + components: + - rot: 3.141592653589793 rad + pos: 3.5,13.5 + parent: 2 + type: Transform + - uid: 10615 + components: + - rot: 3.141592653589793 rad + pos: 3.5,14.5 + parent: 2 + type: Transform + - uid: 10616 + components: + - rot: 3.141592653589793 rad + pos: 3.5,15.5 + parent: 2 + type: Transform + - uid: 10617 + components: + - rot: 3.141592653589793 rad + pos: 3.5,16.5 + parent: 2 + type: Transform + - uid: 10618 + components: + - rot: 3.141592653589793 rad + pos: 3.5,17.5 + parent: 2 + type: Transform + - uid: 10619 + components: + - rot: 3.141592653589793 rad + pos: 3.5,18.5 + parent: 2 + type: Transform + - uid: 10620 + components: + - rot: 3.141592653589793 rad + pos: 3.5,19.5 + parent: 2 + type: Transform + - uid: 10621 + components: + - rot: 3.141592653589793 rad + pos: 3.5,20.5 + parent: 2 + type: Transform + - uid: 10622 + components: + - rot: 3.141592653589793 rad + pos: 3.5,21.5 + parent: 2 + type: Transform + - uid: 10623 + components: + - rot: 3.141592653589793 rad + pos: 3.5,22.5 + parent: 2 + type: Transform + - uid: 10624 + components: + - rot: 3.141592653589793 rad + pos: 3.5,24.5 + parent: 2 + type: Transform + - uid: 10625 + components: + - rot: 3.141592653589793 rad + pos: 3.5,25.5 + parent: 2 + type: Transform + - uid: 10626 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,26.5 + parent: 2 + type: Transform + - uid: 10627 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,26.5 + parent: 2 + type: Transform + - uid: 10628 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,26.5 + parent: 2 + type: Transform + - uid: 10629 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,26.5 + parent: 2 + type: Transform + - uid: 10630 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,26.5 + parent: 2 + type: Transform + - uid: 10631 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,26.5 + parent: 2 + type: Transform + - uid: 10632 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,26.5 + parent: 2 + type: Transform + - uid: 10640 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,23.5 + parent: 2 + type: Transform + - uid: 10641 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,23.5 + parent: 2 + type: Transform + - uid: 10644 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-30.5 + parent: 2 + type: Transform + - uid: 10645 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-30.5 + parent: 2 + type: Transform + - uid: 10646 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-30.5 + parent: 2 + type: Transform + - uid: 10648 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-16.5 + parent: 2 + type: Transform + - uid: 10649 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-16.5 + parent: 2 + type: Transform + - uid: 10650 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-16.5 + parent: 2 + type: Transform + - uid: 10651 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-16.5 + parent: 2 + type: Transform + - uid: 10652 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-16.5 + parent: 2 + type: Transform + - uid: 10653 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-15.5 + parent: 2 + type: Transform + - uid: 10659 + components: + - pos: 16.5,-29.5 + parent: 2 + type: Transform + - uid: 10660 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-28.5 + parent: 2 + type: Transform + - uid: 10661 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-28.5 + parent: 2 + type: Transform + - uid: 10662 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-28.5 + parent: 2 + type: Transform + - uid: 10663 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-28.5 + parent: 2 + type: Transform + - uid: 10664 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-28.5 + parent: 2 + type: Transform + - uid: 10665 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-28.5 + parent: 2 + type: Transform + - uid: 10666 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-28.5 + parent: 2 + type: Transform + - uid: 10667 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-26.5 + parent: 2 + type: Transform + - uid: 10668 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-25.5 + parent: 2 + type: Transform + - uid: 10669 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-24.5 + parent: 2 + type: Transform + - uid: 10670 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-23.5 + parent: 2 + type: Transform + - uid: 10671 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-22.5 + parent: 2 + type: Transform + - uid: 10672 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-21.5 + parent: 2 + type: Transform + - uid: 10673 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-20.5 + parent: 2 + type: Transform + - uid: 10674 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-19.5 + parent: 2 + type: Transform + - uid: 10675 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-18.5 + parent: 2 + type: Transform + - uid: 10676 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-17.5 + parent: 2 + type: Transform + - uid: 10677 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-16.5 + parent: 2 + type: Transform + - uid: 10679 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-14.5 + parent: 2 + type: Transform + - uid: 10680 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-13.5 + parent: 2 + type: Transform + - uid: 10681 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-12.5 + parent: 2 + type: Transform + - uid: 10682 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-11.5 + parent: 2 + type: Transform + - uid: 10683 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-10.5 + parent: 2 + type: Transform + - uid: 10684 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-8.5 + parent: 2 + type: Transform + - uid: 10685 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-7.5 + parent: 2 + type: Transform + - uid: 10692 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,-6.5 + parent: 2 + type: Transform + - uid: 10693 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,-6.5 + parent: 2 + type: Transform + - uid: 10694 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-6.5 + parent: 2 + type: Transform + - uid: 10695 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-6.5 + parent: 2 + type: Transform + - uid: 10696 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-6.5 + parent: 2 + type: Transform + - uid: 10697 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,-6.5 + parent: 2 + type: Transform + - uid: 10698 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,-6.5 + parent: 2 + type: Transform + - uid: 10699 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,-6.5 + parent: 2 + type: Transform + - uid: 10700 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-6.5 + parent: 2 + type: Transform + - uid: 10701 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-6.5 + parent: 2 + type: Transform + - uid: 10702 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,-6.5 + parent: 2 + type: Transform + - uid: 10703 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,-6.5 + parent: 2 + type: Transform + - uid: 10704 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,-6.5 + parent: 2 + type: Transform + - uid: 10705 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,-6.5 + parent: 2 + type: Transform + - uid: 10706 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,-6.5 + parent: 2 + type: Transform + - uid: 10707 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,-6.5 + parent: 2 + type: Transform + - uid: 10708 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,-6.5 + parent: 2 + type: Transform + - uid: 10709 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,-6.5 + parent: 2 + type: Transform + - uid: 10710 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,-6.5 + parent: 2 + type: Transform + - uid: 10711 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,-6.5 + parent: 2 + type: Transform + - uid: 10712 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,-6.5 + parent: 2 + type: Transform + - uid: 10715 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-4.5 + parent: 2 + type: Transform + - uid: 10716 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-4.5 + parent: 2 + type: Transform + - uid: 10717 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-4.5 + parent: 2 + type: Transform + - uid: 10718 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-4.5 + parent: 2 + type: Transform + - uid: 10719 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-4.5 + parent: 2 + type: Transform + - uid: 10720 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-4.5 + parent: 2 + type: Transform + - uid: 10721 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-4.5 + parent: 2 + type: Transform + - uid: 10722 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-4.5 + parent: 2 + type: Transform + - uid: 10723 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-4.5 + parent: 2 + type: Transform + - uid: 10724 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-4.5 + parent: 2 + type: Transform + - uid: 10725 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-4.5 + parent: 2 + type: Transform + - uid: 10726 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-4.5 + parent: 2 + type: Transform + - uid: 10730 + components: + - pos: 21.5,-2.5 + parent: 2 + type: Transform + - uid: 10731 + components: + - pos: 21.5,-3.5 + parent: 2 + type: Transform + - uid: 10732 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-1.5 + parent: 2 + type: Transform + - uid: 10733 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-1.5 + parent: 2 + type: Transform + - uid: 10734 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-1.5 + parent: 2 + type: Transform + - uid: 10735 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-1.5 + parent: 2 + type: Transform + - uid: 10739 + components: + - pos: 24.5,-5.5 + parent: 2 + type: Transform + - uid: 10741 + components: + - pos: 16.5,-27.5 + parent: 2 + type: Transform + - uid: 10742 + components: + - pos: 16.5,-26.5 + parent: 2 + type: Transform + - uid: 10743 + components: + - pos: 16.5,-25.5 + parent: 2 + type: Transform + - uid: 10744 + components: + - pos: 16.5,-24.5 + parent: 2 + type: Transform + - uid: 10745 + components: + - pos: 16.5,-23.5 + parent: 2 + type: Transform + - uid: 10746 + components: + - pos: 16.5,-22.5 + parent: 2 + type: Transform + - uid: 10747 + components: + - pos: 16.5,-21.5 + parent: 2 + type: Transform + - uid: 10748 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-15.5 + parent: 2 + type: Transform + - uid: 10749 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-15.5 + parent: 2 + type: Transform + - uid: 10750 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-15.5 + parent: 2 + type: Transform + - uid: 10751 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-15.5 + parent: 2 + type: Transform + - uid: 10752 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-15.5 + parent: 2 + type: Transform + - uid: 10753 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-15.5 + parent: 2 + type: Transform + - uid: 10754 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-14.5 + parent: 2 + type: Transform +- proto: DisposalTrunk + entities: + - uid: 10388 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-31.5 + parent: 2 + type: Transform + - uid: 10460 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,19.5 + parent: 2 + type: Transform + - uid: 10462 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,2.5 + parent: 2 + type: Transform + - uid: 10468 + components: + - pos: -4.5,-14.5 + parent: 2 + type: Transform + - uid: 10472 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-28.5 + parent: 2 + type: Transform + - uid: 10494 + components: + - pos: -25.5,-22.5 + parent: 2 + type: Transform + - uid: 10499 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-24.5 + parent: 2 + type: Transform + - uid: 10514 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-7.5 + parent: 2 + type: Transform + - uid: 10541 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,4.5 + parent: 2 + type: Transform + - uid: 10563 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,16.5 + parent: 2 + type: Transform + - uid: 10590 + components: + - pos: -52.5,-5.5 + parent: 2 + type: Transform + - uid: 10634 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,9.5 + parent: 2 + type: Transform + - uid: 10635 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,23.5 + parent: 2 + type: Transform + - uid: 10636 + components: + - pos: 11.5,27.5 + parent: 2 + type: Transform + - uid: 10655 + components: + - pos: 1.5,-14.5 + parent: 2 + type: Transform + - uid: 10656 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-20.5 + parent: 2 + type: Transform + - uid: 10688 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-27.5 + parent: 2 + type: Transform + - uid: 10690 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-9.5 + parent: 2 + type: Transform + - uid: 10691 + components: + - pos: 10.5,-3.5 + parent: 2 + type: Transform + - uid: 10713 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,-6.5 + parent: 2 + type: Transform + - uid: 10714 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-2.5 + parent: 2 + type: Transform + - uid: 10755 + components: + - pos: 31.5,-13.5 + parent: 2 + type: Transform +- proto: DisposalUnit + entities: + - uid: 539 + components: + - pos: 1.5,-14.5 + parent: 2 + type: Transform + - uid: 639 + components: + - pos: 26.5,-2.5 + parent: 2 + type: Transform + - uid: 837 + components: + - pos: -19.5,16.5 + parent: 2 + type: Transform + - uid: 1930 + components: + - pos: 25.5,-9.5 + parent: 2 + type: Transform + - uid: 2079 + components: + - pos: 17.5,-20.5 + parent: 2 + type: Transform + - uid: 2377 + components: + - pos: 46.5,-6.5 + parent: 2 + type: Transform + - uid: 2561 + components: + - pos: -25.5,-22.5 + parent: 2 + type: Transform + - uid: 2575 + components: + - pos: -4.5,-14.5 + parent: 2 + type: Transform + - uid: 2622 + components: + - pos: -3.5,19.5 + parent: 2 + type: Transform + - uid: 2623 + components: + - pos: -5.5,2.5 + parent: 2 + type: Transform + - uid: 2866 + components: + - pos: -34.5,4.5 + parent: 2 + type: Transform + - uid: 3953 + components: + - pos: 4.5,9.5 + parent: 2 + type: Transform + - uid: 4304 + components: + - pos: 23.5,-27.5 + parent: 2 + type: Transform + - uid: 4674 + components: + - pos: 10.5,-3.5 + parent: 2 + type: Transform + - uid: 8728 + components: + - pos: -8.5,-28.5 + parent: 2 + type: Transform + - uid: 9710 + components: + - pos: -30.5,-24.5 + parent: 2 + type: Transform + - uid: 9711 + components: + - pos: -26.5,-7.5 + parent: 2 + type: Transform + - uid: 9712 + components: + - pos: 11.5,27.5 + parent: 2 + type: Transform + - uid: 9713 + components: + - pos: 6.5,23.5 + parent: 2 + type: Transform + - uid: 10567 + components: + - pos: -52.5,-5.5 + parent: 2 + type: Transform + - uid: 10678 + components: + - pos: 31.5,-13.5 + parent: 2 + type: Transform +- proto: DisposalYJunction + entities: + - uid: 10389 + components: + - pos: 12.5,-30.5 + parent: 2 + type: Transform + - uid: 10524 + components: + - pos: -27.5,-7.5 + parent: 2 + type: Transform + - uid: 10536 + components: + - pos: -29.5,4.5 + parent: 2 + type: Transform +- proto: DogBed + entities: + - uid: 1307 + components: + - pos: -37.5,6.5 + parent: 2 + type: Transform + - uid: 2448 + components: + - pos: 36.5,-23.5 + parent: 2 + type: Transform + - uid: 3473 + components: + - pos: -35.5,-21.5 + parent: 2 + type: Transform + - uid: 4131 + components: + - pos: 12.5,18.5 + parent: 2 + type: Transform + - uid: 4655 + components: + - pos: 49.5,1.5 + parent: 2 + type: Transform + - uid: 4668 + components: + - pos: 12.5,2.5 + parent: 2 + type: Transform + - uid: 9088 + components: + - pos: -42.5,-15.5 + parent: 2 + type: Transform + - uid: 10097 + components: + - pos: 40.5,9.5 + parent: 2 + type: Transform +- proto: DonkpocketBoxSpawner + entities: + - uid: 612 + components: + - pos: -2.5,-21.5 + parent: 2 + type: Transform + - uid: 2201 + components: + - pos: 33.5,-13.5 + parent: 2 + type: Transform + - uid: 2938 + components: + - pos: -39.5,15.5 + parent: 2 + type: Transform +- proto: Dresser + entities: + - uid: 843 + components: + - pos: 5.5,-25.5 + parent: 2 + type: Transform +- proto: DresserFilled + entities: + - uid: 2588 + components: + - pos: -13.5,-21.5 + parent: 2 + type: Transform +- proto: DrinkBeerBottleFull + entities: + - uid: 4650 + components: + - pos: 45.27724,2.0493681 + parent: 2 + type: Transform + - uid: 4651 + components: + - pos: 45.516823,2.0597918 + parent: 2 + type: Transform + - uid: 4652 + components: + - pos: 45.381405,1.9138573 + parent: 2 + type: Transform + - uid: 6747 + components: + - pos: 17.326635,24.07865 + parent: 2 + type: Transform + - uid: 9551 + components: + - pos: 17.243301,23.724237 + parent: 2 + type: Transform +- proto: DrinkBottleTequila + entities: + - uid: 3269 + components: + - rot: 1.5707963267948966 rad + pos: -38.581295,2.629758 + parent: 2 + type: Transform +- proto: DrinkBottleWine + entities: + - uid: 1562 + components: + - pos: -42.697353,-7.97267 + parent: 2 + type: Transform +- proto: DrinkCafeLatte + entities: + - uid: 951 + components: + - pos: -4.510326,5.617763 + parent: 2 + type: Transform + - uid: 952 + components: + - pos: -4.239493,5.722001 + parent: 2 + type: Transform + - uid: 9545 + components: + - pos: -48.22356,-11.293325 + parent: 2 + type: Transform +- proto: DrinkCoffee + entities: + - uid: 9544 + components: + - pos: -48.69231,-11.043152 + parent: 2 + type: Transform + - uid: 10099 + components: + - pos: -32.758877,6.750649 + parent: 2 + type: Transform + - uid: 10100 + components: + - pos: -32.48804,6.750649 + parent: 2 + type: Transform + - uid: 10101 + components: + - pos: -32.61304,6.604714 + parent: 2 + type: Transform + - uid: 10102 + components: + - pos: -32.383877,6.59429 + parent: 2 + type: Transform + - uid: 10765 + components: + - pos: 47.292942,-10.566395 + parent: 2 + type: Transform + - uid: 10766 + components: + - pos: 47.77211,-10.274525 + parent: 2 + type: Transform + - uid: 10767 + components: + - pos: 47.42836,-11.243948 + parent: 2 + type: Transform + - uid: 10768 + components: + - pos: 47.855442,-11.535817 + parent: 2 + type: Transform + - uid: 10769 + components: + - pos: 48.574192,-11.46285 + parent: 2 + type: Transform + - uid: 10770 + components: + - pos: 48.542942,-10.149438 + parent: 2 + type: Transform +- proto: DrinkEnergyDrinkCan + entities: + - uid: 803 + components: + - pos: 28.158022,-11.179657 + parent: 2 + type: Transform + - uid: 10771 + components: + - pos: 48.667942,-10.733177 + parent: 2 + type: Transform +- proto: DrinkGlass + entities: + - uid: 6990 + components: + - pos: -47.65199,23.690222 + parent: 2 + type: Transform + - uid: 6991 + components: + - pos: -47.454075,23.47132 + parent: 2 + type: Transform +- proto: DrinkGoldenCup + entities: + - uid: 3945 + components: + - pos: 1.6448126,-5.0273385 + parent: 2 + type: Transform +- proto: DrinkGrapeCan + entities: + - uid: 2872 + components: + - pos: -29.702105,12.914859 + parent: 2 + type: Transform +- proto: DrinkIcedTeaCan + entities: + - uid: 9724 + components: + - pos: 6.2860065,-1.5735263 + parent: 2 + type: Transform + - uid: 10269 + components: + - pos: -27.680315,-29.170387 + parent: 2 + type: Transform +- proto: DrinkMugMetal + entities: + - uid: 2907 + components: + - pos: -36.237564,17.775959 + parent: 2 + type: Transform + - uid: 2908 + components: + - pos: -36.727146,17.525785 + parent: 2 + type: Transform + - uid: 2909 + components: + - pos: -36.664646,17.817654 + parent: 2 + type: Transform +- proto: DrinkMugOne + entities: + - uid: 2634 + components: + - pos: -37.213333,4.7909184 + parent: 2 + type: Transform + - solutions: + drink: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 20 + reagents: + - data: null + ReagentId: Coffee + Quantity: 20 + type: SolutionContainerManager +- proto: DrinkMugRed + entities: + - uid: 2863 + components: + - pos: -36.673702,11.715245 + parent: 2 + type: Transform + - solutions: + drink: + temperature: 293.15 + canMix: True + canReact: True + maxVol: 20 + reagents: + - data: null + ReagentId: Coffee + Quantity: 16 + - data: null + ReagentId: Cream + Quantity: 2 + - data: null + ReagentId: Sugar + Quantity: 2 + type: SolutionContainerManager +- proto: DrinkShaker + entities: + - uid: 6993 + components: + - pos: -45.672825,22.56444 + parent: 2 + type: Transform +- proto: DrinkShotGlass + entities: + - uid: 342 + components: + - pos: 1.2186892,-28.460861 + parent: 2 + type: Transform + - uid: 344 + components: + - pos: 1.3332726,-28.565102 + parent: 2 + type: Transform + - uid: 4181 + components: + - pos: 1.2562087,-29.362349 + parent: 2 + type: Transform + - solutions: + drink: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 7 + reagents: + - data: null + ReagentId: Vodka + Quantity: 7 + type: SolutionContainerManager + - uid: 6992 + components: + - pos: -47.599907,22.56444 + parent: 2 + type: Transform +- proto: DrinkSpaceUpCan + entities: + - uid: 9725 + components: + - pos: 6.8068395,-1.0314829 + parent: 2 + type: Transform +- proto: DrinkVodkaBottleFull + entities: + - uid: 340 + components: + - pos: 1.3020226,-27.981361 + parent: 2 + type: Transform + - solutions: + drink: + temperature: 293.15 + canMix: False + canReact: True + maxVol: 100 + reagents: + - data: null + ReagentId: Vodka + Quantity: 93 + type: SolutionContainerManager +- proto: DrinkWaterBottleFull + entities: + - uid: 863 + components: + - pos: 35.309998,-14.048043 + parent: 2 + type: Transform + - uid: 1747 + components: + - pos: 35.48717,-14.183555 + parent: 2 + type: Transform + - uid: 9616 + components: + - pos: -21.663212,19.839113 + parent: 2 + type: Transform + - uid: 10798 + components: + - pos: -21.527796,19.693178 + parent: 2 + type: Transform +- proto: Dropper + entities: + - uid: 569 + components: + - pos: 15.394513,-20.546741 + parent: 2 + type: Transform + - uid: 571 + components: + - pos: 21.378887,-18.576622 + parent: 2 + type: Transform +- proto: EmergencyLight + entities: + - uid: 4315 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-19.5 + parent: 2 + type: Transform + - uid: 8797 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,26.5 + parent: 2 + type: Transform + - uid: 8798 + components: + - rot: 3.141592653589793 rad + pos: 6.5,19.5 + parent: 2 + type: Transform + - uid: 8799 + components: + - rot: 3.141592653589793 rad + pos: -0.5,9.5 + parent: 2 + type: Transform + - uid: 8800 + components: + - pos: -0.5,2.5 + parent: 2 + type: Transform + - uid: 8801 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-7.5 + parent: 2 + type: Transform + - uid: 8802 + components: + - pos: -6.5,19.5 + parent: 2 + type: Transform + - uid: 8803 + components: + - rot: 3.141592653589793 rad + pos: 3.5,-19.5 + parent: 2 + type: Transform + - uid: 8804 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-7.5 + parent: 2 + type: Transform + - uid: 8805 + components: + - pos: 15.5,-4.5 + parent: 2 + type: Transform + - uid: 8806 + components: + - pos: 31.5,-4.5 + parent: 2 + type: Transform + - uid: 8807 + components: + - rot: 3.141592653589793 rad + pos: 44.5,-6.5 + parent: 2 + type: Transform + - uid: 8808 + components: + - pos: 51.5,-3.5 + parent: 2 + type: Transform + - uid: 8809 + components: + - pos: 24.5,6.5 + parent: 2 + type: Transform + - uid: 8810 + components: + - pos: 35.5,9.5 + parent: 2 + type: Transform + - uid: 8811 + components: + - rot: 1.5707963267948966 rad + pos: 49.5,5.5 + parent: 2 + type: Transform + - uid: 8812 + components: + - pos: 22.5,16.5 + parent: 2 + type: Transform + - uid: 8813 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,8.5 + parent: 2 + type: Transform + - uid: 8814 + components: + - rot: 3.141592653589793 rad + pos: -18.5,-6.5 + parent: 2 + type: Transform + - uid: 8815 + components: + - pos: 1.5,-10.5 + parent: 2 + type: Transform + - uid: 8817 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-17.5 + parent: 2 + type: Transform + - uid: 9249 + components: + - pos: -19.5,-22.5 + parent: 2 + type: Transform + - uid: 9250 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-12.5 + parent: 2 + type: Transform + - uid: 9470 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,3.5 + parent: 2 + type: Transform + - uid: 9471 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,7.5 + parent: 2 + type: Transform + - uid: 9472 + components: + - rot: 3.141592653589793 rad + pos: -10.5,17.5 + parent: 2 + type: Transform + - uid: 9473 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,12.5 + parent: 2 + type: Transform + - uid: 9474 + components: + - pos: -21.5,5.5 + parent: 2 + type: Transform + - uid: 9475 + components: + - pos: -31.5,2.5 + parent: 2 + type: Transform + - uid: 9476 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,7.5 + parent: 2 + type: Transform + - uid: 9477 + components: + - rot: 3.141592653589793 rad + pos: -47.5,7.5 + parent: 2 + type: Transform + - uid: 9478 + components: + - pos: -32.5,18.5 + parent: 2 + type: Transform + - uid: 9479 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,16.5 + parent: 2 + type: Transform + - uid: 9480 + components: + - pos: -27.5,-4.5 + parent: 2 + type: Transform + - uid: 9481 + components: + - rot: 3.141592653589793 rad + pos: -49.5,-6.5 + parent: 2 + type: Transform + - uid: 9482 + components: + - pos: -0.5,14.5 + parent: 2 + type: Transform + - uid: 9624 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-23.5 + parent: 2 + type: Transform + - uid: 10893 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-30.5 + parent: 2 + type: Transform +- proto: EmergencyMedipen + entities: + - uid: 1619 + components: + - pos: 37.556107,-25.582733 + parent: 2 + type: Transform + - uid: 3929 + components: + - pos: -25.386505,20.41433 + parent: 2 + type: Transform +- proto: EmptyFlashlightLantern + entities: + - uid: 10948 + components: + - pos: -35.366966,-32.485588 + parent: 2 + type: Transform +- proto: EncryptionKeyBinary + entities: + - uid: 6707 + components: + - flags: InContainer + type: MetaData + - parent: 2155 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyCargo + entities: + - uid: 1384 + components: + - flags: InContainer + type: MetaData + - parent: 1258 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyCommand + entities: + - uid: 5008 + components: + - flags: InContainer + type: MetaData + - parent: 738 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyCommon + entities: + - uid: 4022 + components: + - flags: InContainer + type: MetaData + - parent: 3968 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyEngineering + entities: + - uid: 6675 + components: + - flags: InContainer + type: MetaData + - parent: 2155 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyMedical + entities: + - uid: 1633 + components: + - flags: InContainer + type: MetaData + - parent: 1560 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyMedicalScience + entities: + - uid: 6784 + components: + - flags: InContainer + type: MetaData + - parent: 3381 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyRobo + entities: + - uid: 6765 + components: + - flags: InContainer + type: MetaData + - parent: 3381 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyScience + entities: + - uid: 6751 + components: + - flags: InContainer + type: MetaData + - parent: 3381 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeySecurity + entities: + - uid: 4672 + components: + - flags: InContainer + type: MetaData + - parent: 634 + type: Transform + - canCollide: False + type: Physics +- proto: EncryptionKeyService + entities: + - uid: 3969 + components: + - flags: InContainer + type: MetaData + - parent: 3968 + type: Transform + - canCollide: False + type: Physics +- proto: ExosuitFabricator + entities: + - uid: 2558 + components: + - pos: -22.5,-25.5 + parent: 2 + type: Transform +- proto: ExtinguisherCabinetFilled + entities: + - uid: 10125 + components: + - pos: 32.5,-24.5 + parent: 2 + type: Transform + - uid: 10126 + components: + - pos: 18.5,-7.5 + parent: 2 + type: Transform + - uid: 10127 + components: + - pos: 41.5,10.5 + parent: 2 + type: Transform + - uid: 10128 + components: + - pos: 20.5,10.5 + parent: 2 + type: Transform + - uid: 10129 + components: + - pos: -9.5,12.5 + parent: 2 + type: Transform + - uid: 10130 + components: + - pos: -4.5,8.5 + parent: 2 + type: Transform + - uid: 10131 + components: + - pos: -14.5,-3.5 + parent: 2 + type: Transform + - uid: 10132 + components: + - pos: -49.5,-7.5 + parent: 2 + type: Transform + - uid: 10133 + components: + - pos: -35.5,7.5 + parent: 2 + type: Transform + - uid: 10136 + components: + - pos: 44.5,-14.5 + parent: 2 + type: Transform + - uid: 10823 + components: + - pos: -26.5,14.5 + parent: 2 + type: Transform +- proto: FaxMachineBase + entities: + - uid: 946 + components: + - pos: -1.5,7.5 + parent: 2 + type: Transform + - name: Logistics + type: FaxMachine + - uid: 2374 + components: + - pos: 48.5,-3.5 + parent: 2 + type: Transform + - name: Bridge + type: FaxMachine + - uid: 9533 + components: + - pos: 12.5,0.5 + parent: 2 + type: Transform + - name: Office, HoP + type: FaxMachine + - uid: 9572 + components: + - pos: -20.5,3.5 + parent: 2 + type: Transform + - name: Security + type: FaxMachine +- proto: FaxMachineCaptain + entities: + - uid: 4642 + components: + - pos: 44.5,-1.5 + parent: 2 + type: Transform +- proto: FenceMetalStraight + entities: + - uid: 1253 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,8.5 + parent: 2 + type: Transform + - uid: 1255 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,8.5 + parent: 2 + type: Transform + - uid: 3127 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,8.5 + parent: 2 + type: Transform +- proto: filingCabinet + entities: + - uid: 1646 + components: + - pos: 7.2836757,14.5 + parent: 2 + type: Transform + - uid: 3831 + components: + - pos: -21.5,-8.5 + parent: 2 + type: Transform +- proto: filingCabinetDrawerRandom + entities: + - uid: 1909 + components: + - pos: -38.5,-2.5 + parent: 2 + type: Transform + - uid: 1941 + components: + - pos: -38.5,11.5 + parent: 2 + type: Transform + - uid: 3103 + components: + - pos: 6.5,24.5 + parent: 2 + type: Transform +- proto: filingCabinetRandom + entities: + - uid: 949 + components: + - pos: -1.5,5.5 + parent: 2 + type: Transform + - uid: 1645 + components: + - pos: 7.276731,15.5 + parent: 2 + type: Transform + - uid: 2456 + components: + - pos: 37.72926,-20.5 + parent: 2 + type: Transform + - uid: 4654 + components: + - pos: 46.5,-2.5 + parent: 2 + type: Transform + - uid: 8980 + components: + - pos: -11.5,-19.5 + parent: 2 + type: Transform +- proto: filingCabinetTallRandom + entities: + - uid: 1620 + components: + - pos: 1.7206354,19.5 + parent: 2 + type: Transform + - uid: 2373 + components: + - pos: 50.5,-3.5 + parent: 2 + type: Transform + - uid: 4627 + components: + - pos: 11.5,0.5 + parent: 2 + type: Transform +- proto: FireAlarm + entities: + - uid: 9574 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-9.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 1371 + - 9466 + - 9467 + - 9468 + - 9773 + - 9774 + - 9863 + - 9876 + - 9875 + type: DeviceNetwork + - devices: + - 1371 + - 9466 + - 9467 + - 9468 + - 9773 + - 9774 + - 9863 + - 9876 + - 9875 + type: DeviceList + - uid: 9575 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9773 + - 9778 + type: DeviceNetwork + - devices: + - 9774 + - 9773 + - 9778 + - 9777 + - 9776 + - 9775 + - 9772 + - 9771 + - 9770 + - 9769 + - 1234 + type: DeviceList + - uid: 9576 + components: + - pos: 5.5,3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 3714 + - 8985 + - 8987 + - 9767 + - 9766 + - 1234 + type: DeviceNetwork + - devices: + - 3714 + - 8985 + - 8987 + - 9767 + - 9766 + - 1234 + type: DeviceList + - uid: 9577 + components: + - pos: -0.5,3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9767 + - 9766 + - 9858 + - 9859 + - 9861 + - 9862 + - 9863 + type: DeviceNetwork + - devices: + - 9767 + - 9766 + - 9858 + - 9859 + - 9861 + - 9862 + - 9863 + type: DeviceList +- proto: FireAxeCabinetFilled + entities: + - uid: 1290 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,9.5 + parent: 2 + type: Transform + - uid: 9615 + components: + - pos: 51.5,-2.5 + parent: 2 + type: Transform +- proto: Firelock + entities: + - uid: 162 + components: + - pos: -33.5,-16.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10122 + type: DeviceNetwork + - uid: 858 + components: + - pos: -47.5,-3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9952 + type: DeviceNetwork + - uid: 1713 + components: + - pos: 14.5,8.5 + parent: 2 + type: Transform + - uid: 2524 + components: + - pos: 8.5,-28.5 + parent: 2 + type: Transform + - uid: 2660 + components: + - pos: 41.5,-24.5 + parent: 2 + type: Transform + - uid: 3714 + components: + - pos: 6.5,4.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 3401 + - 9768 + - 9779 + - 9576 + type: DeviceNetwork + - uid: 8985 + components: + - pos: 7.5,4.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 3401 + - 9768 + - 9779 + - 9576 + type: DeviceNetwork + - uid: 8987 + components: + - pos: 8.5,4.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 3401 + - 9768 + - 9779 + - 9576 + type: DeviceNetwork + - uid: 9337 + components: + - pos: -39.5,-26.5 + parent: 2 + type: Transform + - uid: 9338 + components: + - pos: -16.5,-25.5 + parent: 2 + type: Transform + - uid: 9466 + components: + - pos: -6.5,-13.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9877 + - 9884 + - 9574 + type: DeviceNetwork + - uid: 9467 + components: + - pos: -7.5,-13.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9877 + - 9884 + - 9574 + type: DeviceNetwork + - uid: 9468 + components: + - pos: -8.5,-13.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9877 + - 9884 + - 9574 + type: DeviceNetwork + - uid: 9708 + components: + - pos: -44.5,-21.5 + parent: 2 + type: Transform + - uid: 9783 + components: + - pos: 10.5,-22.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9786 + type: DeviceNetwork + - uid: 9787 + components: + - pos: 1.5,-24.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9786 + - 9891 + type: DeviceNetwork + - uid: 9805 + components: + - pos: 35.5,-7.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9811 + - 10787 + type: DeviceNetwork + - uid: 9808 + components: + - pos: 32.5,-14.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9796 + - 9811 + type: DeviceNetwork + - uid: 9814 + components: + - pos: 29.5,-29.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9813 + type: DeviceNetwork + - uid: 9815 + components: + - pos: 32.5,-31.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9813 + type: DeviceNetwork + - uid: 9819 + components: + - pos: 30.5,3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9837 + type: DeviceNetwork + - uid: 9820 + components: + - pos: 29.5,3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9837 + type: DeviceNetwork + - uid: 9821 + components: + - pos: 27.5,-0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9836 + type: DeviceNetwork + - uid: 9833 + components: + - pos: 18.5,2.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9836 + - 10119 + type: DeviceNetwork + - uid: 9851 + components: + - pos: 4.5,18.5 + parent: 2 + type: Transform + - uid: 9852 + components: + - pos: 5.5,18.5 + parent: 2 + type: Transform + - uid: 9865 + components: + - pos: -9.5,-0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9864 + type: DeviceNetwork + - uid: 9872 + components: + - pos: -9.5,10.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9714 + type: DeviceNetwork + - uid: 9878 + components: + - pos: -11.5,-22.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9890 + type: DeviceNetwork + - uid: 9879 + components: + - pos: -5.5,-27.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9890 + - 9891 + type: DeviceNetwork + - uid: 9883 + components: + - pos: -9.5,-18.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9884 + type: DeviceNetwork + - uid: 9885 + components: + - pos: -11.5,-27.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9890 + type: DeviceNetwork + - uid: 9893 + components: + - pos: -22.5,-21.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9894 + type: DeviceNetwork + - uid: 9898 + components: + - pos: -23.5,-15.5 + parent: 2 + type: Transform + - uid: 9908 + components: + - pos: -27.5,-16.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10122 + type: DeviceNetwork + - uid: 9913 + components: + - pos: -29.5,-3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9915 + - 9943 + type: DeviceNetwork + - uid: 9914 + components: + - pos: -39.5,-3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9952 + type: DeviceNetwork + - uid: 9916 + components: + - pos: -12.5,-3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9915 + type: DeviceNetwork + - uid: 9928 + components: + - pos: -26.5,9.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9927 + - 9932 + type: DeviceNetwork + - uid: 9933 + components: + - pos: -33.5,3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9932 + - 9943 + type: DeviceNetwork + - uid: 9938 + components: + - pos: -37.5,10.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9932 + type: DeviceNetwork + - uid: 9939 + components: + - pos: -26.5,2.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9932 + - 9943 + type: DeviceNetwork + - uid: 9940 + components: + - pos: -25.5,2.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9932 + - 9943 + type: DeviceNetwork + - uid: 9959 + components: + - pos: 47.5,-5.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9961 + type: DeviceNetwork + - uid: 10856 + components: + - pos: 10.5,24.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9853 + - 9845 + type: DeviceNetwork +- proto: FirelockEdge + entities: + - uid: 7129 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-13.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9904 + type: DeviceNetwork + - uid: 9775 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-13.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9779 + type: DeviceNetwork + - uid: 9776 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-13.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9779 + type: DeviceNetwork + - uid: 9777 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-13.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9779 + type: DeviceNetwork + - uid: 9778 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-13.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9779 + - 9575 + type: DeviceNetwork + - uid: 9780 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-17.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9786 + - 9788 + type: DeviceNetwork + - uid: 9781 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-18.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9786 + - 9788 + type: DeviceNetwork + - uid: 9784 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-17.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9786 + type: DeviceNetwork + - uid: 9785 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-16.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9786 + type: DeviceNetwork + - uid: 9840 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,7.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9837 + type: DeviceNetwork + - uid: 9841 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,6.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9837 + type: DeviceNetwork + - uid: 9843 + components: + - rot: 3.141592653589793 rad + pos: 24.5,16.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9842 + type: DeviceNetwork + - uid: 9844 + components: + - rot: 3.141592653589793 rad + pos: 23.5,16.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9842 + type: DeviceNetwork + - uid: 9846 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,27.5 + parent: 2 + type: Transform + - uid: 9847 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,28.5 + parent: 2 + type: Transform + - uid: 9873 + components: + - pos: -2.5,3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9714 + type: DeviceNetwork + - uid: 9874 + components: + - pos: -3.5,3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9714 + type: DeviceNetwork + - uid: 9919 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-8.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9903 + type: DeviceNetwork + - uid: 9920 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-8.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9903 + type: DeviceNetwork + - uid: 9941 + components: + - pos: -22.5,1.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9932 + - 9943 + type: DeviceNetwork + - uid: 9942 + components: + - pos: -21.5,1.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9932 + - 9943 + type: DeviceNetwork +- proto: FirelockGlass + entities: + - uid: 293 + components: + - pos: 40.5,-6.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9958 + - 10787 + type: DeviceNetwork + - uid: 453 + components: + - pos: 40.5,-4.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9958 + - 10787 + type: DeviceNetwork + - uid: 1234 + components: + - pos: 7.5,-3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9768 + - 9779 + - 9576 + type: DeviceNetwork + - uid: 3791 + components: + - pos: -34.5,14.5 + parent: 2 + type: Transform + - uid: 9766 + components: + - pos: 4.5,0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9768 + - 9779 + - 9864 + - 9576 + - 9577 + type: DeviceNetwork + - uid: 9767 + components: + - pos: 4.5,1.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9768 + - 9779 + - 9864 + - 9576 + - 9577 + type: DeviceNetwork + - uid: 9769 + components: + - pos: 9.5,-4.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10119 + type: DeviceNetwork + - uid: 9770 + components: + - pos: 9.5,-6.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10119 + type: DeviceNetwork + - uid: 9771 + components: + - pos: 7.5,-13.5 + parent: 2 + type: Transform + - uid: 9772 + components: + - pos: 3.5,-13.5 + parent: 2 + type: Transform + - uid: 9773 + components: + - pos: -5.5,-11.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9779 + - 9877 + - 9574 + - 9575 + type: DeviceNetwork + - uid: 9774 + components: + - pos: -5.5,-10.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9779 + - 9877 + - 9574 + type: DeviceNetwork + - uid: 9782 + components: + - pos: 10.5,-15.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9788 + type: DeviceNetwork + - uid: 9789 + components: + - pos: 18.5,-18.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9788 + - 9796 + type: DeviceNetwork + - uid: 9790 + components: + - pos: 24.5,-8.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9796 + - 10119 + type: DeviceNetwork + - uid: 9791 + components: + - pos: 20.5,-8.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9796 + - 10119 + type: DeviceNetwork + - uid: 9792 + components: + - pos: 30.5,-7.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9811 + - 10787 + type: DeviceNetwork + - uid: 9793 + components: + - pos: 29.5,-7.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9811 + - 10787 + type: DeviceNetwork + - uid: 9794 + components: + - pos: 24.5,-26.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 2603 + - 9813 + type: DeviceNetwork + - uid: 9795 + components: + - pos: 25.5,-26.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 2603 + - 9813 + type: DeviceNetwork + - uid: 9797 + components: + - pos: 29.5,-24.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 2603 + - 9816 + type: DeviceNetwork + - uid: 9798 + components: + - pos: 33.5,-25.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 2603 + - 9816 + type: DeviceNetwork + - uid: 9799 + components: + - pos: 34.5,-25.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 2603 + - 9816 + type: DeviceNetwork + - uid: 9800 + components: + - pos: 24.5,-21.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9796 + - 2603 + type: DeviceNetwork + - uid: 9801 + components: + - pos: 25.5,-21.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9796 + - 2603 + type: DeviceNetwork + - uid: 9802 + components: + - pos: 32.5,-19.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9796 + - 2603 + type: DeviceNetwork + - uid: 9803 + components: + - pos: 32.5,-18.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9796 + - 2603 + type: DeviceNetwork + - uid: 9804 + components: + - pos: 34.5,-16.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9811 + - 2603 + type: DeviceNetwork + - uid: 9806 + components: + - pos: 26.5,-10.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9811 + - 9796 + type: DeviceNetwork + - uid: 9807 + components: + - pos: 30.5,-12.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9796 + - 9811 + type: DeviceNetwork + - uid: 9810 + components: + - pos: 23.5,-23.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 2603 + - 9812 + type: DeviceNetwork + - uid: 9817 + components: + - pos: 34.5,3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9837 + - 10787 + type: DeviceNetwork + - uid: 9818 + components: + - pos: 33.5,3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9837 + - 10787 + type: DeviceNetwork + - uid: 9823 + components: + - pos: 27.5,-4.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10119 + - 10787 + type: DeviceNetwork + - uid: 9824 + components: + - pos: 27.5,-6.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10119 + - 10787 + type: DeviceNetwork + - uid: 9830 + components: + - pos: 27.5,5.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9836 + - 9837 + type: DeviceNetwork + - uid: 9831 + components: + - pos: 27.5,4.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9836 + - 9837 + type: DeviceNetwork + - uid: 9832 + components: + - pos: 18.5,7.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9836 + - 9842 + type: DeviceNetwork + - uid: 9834 + components: + - pos: 23.5,0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9836 + - 10119 + type: DeviceNetwork + - uid: 9835 + components: + - pos: 23.5,-1.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9836 + - 10119 + type: DeviceNetwork + - uid: 9838 + components: + - pos: 29.5,10.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9837 + - 9842 + type: DeviceNetwork + - uid: 9839 + components: + - pos: 28.5,10.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9837 + - 9842 + type: DeviceNetwork + - uid: 9848 + components: + - pos: 10.5,26.5 + parent: 2 + type: Transform + - uid: 9849 + components: + - pos: 10.5,25.5 + parent: 2 + type: Transform + - uid: 9855 + components: + - pos: -3.5,15.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9715 + type: DeviceNetwork + - uid: 9856 + components: + - pos: 0.5,15.5 + parent: 2 + type: Transform + - uid: 9858 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,8.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9577 + type: DeviceNetwork + - uid: 9859 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,8.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9577 + type: DeviceNetwork + - uid: 9861 + components: + - pos: -3.5,8.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9577 + - 9714 + type: DeviceNetwork + - uid: 9862 + components: + - pos: -7.5,4.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9864 + - 9714 + - 9577 + type: DeviceNetwork + - uid: 9863 + components: + - pos: -7.5,-3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9864 + - 9877 + - 9574 + - 9577 + type: DeviceNetwork + - uid: 9866 + components: + - pos: -15.5,18.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9715 + - 9927 + type: DeviceNetwork + - uid: 9867 + components: + - pos: -15.5,17.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9715 + - 9927 + type: DeviceNetwork + - uid: 9868 + components: + - pos: -7.5,15.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9715 + - 9714 + type: DeviceNetwork + - uid: 9869 + components: + - pos: -10.5,14.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9715 + - 9714 + type: DeviceNetwork + - uid: 9875 + components: + - pos: -12.5,-7.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9877 + - 9915 + - 9574 + type: DeviceNetwork + - uid: 9876 + components: + - pos: -10.5,-5.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9877 + - 9915 + - 9574 + type: DeviceNetwork + - uid: 9880 + components: + - pos: -5.5,-16.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9884 + type: DeviceNetwork + - uid: 9881 + components: + - pos: -7.5,-20.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9884 + - 9890 + type: DeviceNetwork + - uid: 9892 + components: + - pos: -26.5,-23.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9894 + - 10122 + type: DeviceNetwork + - uid: 9896 + components: + - pos: -25.5,-19.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10122 + type: DeviceNetwork + - uid: 9897 + components: + - pos: -25.5,-18.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10122 + type: DeviceNetwork + - uid: 9901 + components: + - pos: -25.5,-9.5 + parent: 2 + type: Transform + - uid: 9902 + components: + - pos: -25.5,-10.5 + parent: 2 + type: Transform + - uid: 9905 + components: + - pos: -27.5,-8.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9915 + type: DeviceNetwork + - uid: 9906 + components: + - pos: -32.5,-8.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9915 + type: DeviceNetwork + - uid: 9907 + components: + - pos: -40.5,-7.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9952 + type: DeviceNetwork + - uid: 9909 + components: + - pos: -29.5,-16.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10122 + - 9910 + type: DeviceNetwork + - uid: 9911 + components: + - pos: -35.5,-4.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9915 + - 9952 + type: DeviceNetwork + - uid: 9912 + components: + - pos: -35.5,-6.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9915 + - 9952 + type: DeviceNetwork + - uid: 9917 + components: + - pos: -25.5,-2.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9915 + - 9943 + type: DeviceNetwork + - uid: 9918 + components: + - pos: -26.5,-2.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9915 + - 9943 + type: DeviceNetwork + - uid: 9923 + components: + - pos: -33.5,14.5 + parent: 2 + type: Transform + - uid: 9924 + components: + - pos: -25.5,13.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9927 + type: DeviceNetwork + - uid: 9925 + components: + - pos: -25.5,12.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9927 + type: DeviceNetwork + - uid: 9926 + components: + - pos: -26.5,16.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9927 + type: DeviceNetwork + - uid: 9929 + components: + - pos: -24.5,6.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9927 + - 9932 + type: DeviceNetwork + - uid: 9930 + components: + - pos: -19.5,6.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9927 + - 9932 + type: DeviceNetwork + - uid: 9931 + components: + - pos: -18.5,6.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9927 + - 9932 + type: DeviceNetwork + - uid: 9934 + components: + - pos: -40.5,8.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9932 + - 9946 + - 9952 + type: DeviceNetwork + - uid: 9935 + components: + - pos: -40.5,9.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9932 + - 9946 + - 9952 + type: DeviceNetwork + - uid: 9936 + components: + - pos: -33.5,10.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9932 + type: DeviceNetwork + - uid: 9937 + components: + - pos: -34.5,10.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9932 + type: DeviceNetwork + - uid: 9944 + components: + - pos: -36.5,-1.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9943 + type: DeviceNetwork + - uid: 9947 + components: + - pos: -51.5,8.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9946 + - 9952 + type: DeviceNetwork + - uid: 9948 + components: + - pos: -50.5,-11.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9952 + - 9951 + type: DeviceNetwork + - uid: 9949 + components: + - pos: -52.5,-11.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9952 + - 9951 + type: DeviceNetwork + - uid: 9950 + components: + - pos: -46.5,-7.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9952 + - 9956 + type: DeviceNetwork + - uid: 9955 + components: + - pos: -49.5,-13.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9951 + - 9956 + type: DeviceNetwork + - uid: 9960 + components: + - pos: 45.5,-7.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9961 + type: DeviceNetwork + - uid: 10120 + components: + - pos: 11.5,-7.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10119 + type: DeviceNetwork + - uid: 10121 + components: + - pos: 13.5,-7.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10119 + type: DeviceNetwork +- proto: Fireplace + entities: + - uid: 2360 + components: + - pos: 46.5,1.5 + parent: 2 + type: Transform +- proto: Floodlight + entities: + - uid: 730 + components: + - pos: -19.291332,2.5156505 + parent: 2 + type: Transform + - uid: 1094 + components: + - pos: -19.718414,2.5052264 + parent: 2 + type: Transform +- proto: FloodlightBroken + entities: + - uid: 10939 + components: + - pos: -33.45545,-34.38575 + parent: 2 + type: Transform +- proto: FloorDrain + entities: + - uid: 218 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-18.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 589 + components: + - pos: -2.5,-22.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 590 + components: + - pos: 8.5,-22.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 1380 + components: + - pos: -11.5,-1.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 1416 + components: + - pos: -24.5,-13.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 3991 + components: + - pos: -25.5,-26.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures + - uid: 4030 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-31.5 + parent: 2 + type: Transform + - fixtures: {} + type: Fixtures +- proto: FloorTileItemBoxing + entities: + - uid: 3799 + components: + - pos: -43.489838,-28.492174 + parent: 2 + type: Transform + - uid: 4088 + components: + - pos: -44.469,-28.408783 + parent: 2 + type: Transform +- proto: FloraTree01 + entities: + - uid: 971 + components: + - pos: -30.035734,-10.704402 + parent: 2 + type: Transform +- proto: FloraTreeSnow02 + entities: + - uid: 7928 + components: + - pos: -45.007706,-11.700656 + parent: 2 + type: Transform +- proto: FoamCutlass + entities: + - uid: 8900 + components: + - pos: -50.34961,-22.396107 + parent: 2 + type: Transform +- proto: FoodApple + entities: + - uid: 685 + components: + - pos: -0.38851315,-23.55967 + parent: 2 + type: Transform + - uid: 686 + components: + - pos: -0.18538815,-23.55967 + parent: 2 + type: Transform + - uid: 687 + components: + - pos: -0.29476315,-23.37204 + parent: 2 + type: Transform +- proto: FoodBoxDonut + entities: + - uid: 950 + components: + - pos: -4.583243,5.847089 + parent: 2 + type: Transform + - uid: 10098 + components: + - pos: -32.48804,7.1571813 + parent: 2 + type: Transform + - uid: 10764 + components: + - pos: 50.55319,-11.271022 + parent: 2 + type: Transform +- proto: FoodBoxPizzaFilled + entities: + - uid: 4124 + components: + - pos: 15.632443,19.821487 + parent: 2 + type: Transform + - uid: 10222 + components: + - pos: -1.6700966,-13.276583 + parent: 2 + type: Transform +- proto: FoodBreadPlain + entities: + - uid: 1555 + components: + - pos: -42.40048,-8.316658 + parent: 2 + type: Transform +- proto: FoodBurgerBig + entities: + - uid: 4653 + components: + - pos: 45.704323,1.4760534 + parent: 2 + type: Transform +- proto: FoodBurgerChicken + entities: + - uid: 9696 + components: + - pos: 38.400703,20.549768 + parent: 2 + type: Transform +- proto: FoodCakeVanillaSlice + entities: + - uid: 848 + components: + - pos: 6.3731074,-27.406065 + parent: 2 + type: Transform +- proto: FoodCartCold + entities: + - uid: 3977 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-24.5 + parent: 2 + type: Transform +- proto: FoodCartHot + entities: + - uid: 4291 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-24.5 + parent: 2 + type: Transform +- proto: FoodCorn + entities: + - uid: 675 + components: + - pos: -4.371362,-21.685156 + parent: 2 + type: Transform + - uid: 676 + components: + - pos: -4.261987,-21.513163 + parent: 2 + type: Transform +- proto: FoodDonutCaramel + entities: + - uid: 2647 + components: + - pos: -36.581367,11.491827 + parent: 2 + type: Transform +- proto: FoodFrozenSundae + entities: + - uid: 847 + components: + - pos: 6.6387324,-27.04644 + parent: 2 + type: Transform +- proto: FoodMealFriesCarrot + entities: + - uid: 1395 + components: + - pos: -12.527652,-12.407237 + parent: 2 + type: Transform +- proto: FoodOnion + entities: + - uid: 679 + components: + - pos: -4.216108,-22.663141 + parent: 2 + type: Transform +- proto: FoodOrange + entities: + - uid: 682 + components: + - pos: -0.76351315,-23.293861 + parent: 2 + type: Transform + - uid: 683 + components: + - pos: -0.54476315,-23.278225 + parent: 2 + type: Transform + - uid: 684 + components: + - pos: -0.63851315,-23.418947 + parent: 2 + type: Transform +- proto: FoodPieBananaCream + entities: + - uid: 4196 + components: + - pos: -4.6609187,-28.988283 + parent: 2 + type: Transform + - uid: 4198 + components: + - pos: -4.296335,-29.280153 + parent: 2 + type: Transform +- proto: FoodPieFrosty + entities: + - uid: 10233 + components: + - pos: -45.331593,-8.512912 + parent: 2 + type: Transform +- proto: FoodPotato + entities: + - uid: 677 + components: + - pos: -4.747358,-22.412968 + parent: 2 + type: Transform + - uid: 678 + components: + - pos: -4.559858,-22.303516 + parent: 2 + type: Transform + - uid: 680 + components: + - pos: -4.450483,-22.506783 + parent: 2 + type: Transform +- proto: FoodSnackCnDs + entities: + - uid: 9201 + components: + - pos: -9.699375,-21.57564 + parent: 2 + type: Transform +- proto: FoodTartMime + entities: + - uid: 4192 + components: + - pos: -1.3519769,-26.44201 + parent: 2 + type: Transform +- proto: FoodTinMRE + entities: + - uid: 10387 + components: + - pos: -27.382847,-29.338755 + parent: 2 + type: Transform +- proto: FoodTinMRETrash + entities: + - uid: 3276 + components: + - pos: -39.39173,2.3326972 + parent: 2 + type: Transform +- proto: FoodTinPeachesMaint + entities: + - uid: 10292 + components: + - pos: 10.706638,7.624447 + parent: 2 + type: Transform +- proto: FoodTomato + entities: + - uid: 672 + components: + - pos: -4.699487,-21.21608 + parent: 2 + type: Transform + - uid: 673 + components: + - pos: -4.574487,-21.388075 + parent: 2 + type: Transform + - uid: 674 + components: + - pos: -4.449487,-21.21608 + parent: 2 + type: Transform +- proto: GasAnalyzer + entities: + - uid: 7158 + components: + - pos: 22.332891,-22.458138 + parent: 2 + type: Transform + - uid: 9526 + components: + - pos: 21.73281,-31.327389 + parent: 2 + type: Transform + - uid: 10229 + components: + - pos: 18.342808,9.529277 + parent: 2 + type: Transform + - uid: 10230 + components: + - pos: 18.717808,9.6856365 + parent: 2 + type: Transform + - uid: 10978 + components: + - pos: -18.70092,-32.440784 + parent: 2 + type: Transform +- proto: GasCanisterBrokenBase + entities: + - uid: 3762 + components: + - pos: 11.5,9.5 + parent: 2 + type: Transform + - uid: 10797 + components: + - pos: 13.5,-28.5 + parent: 2 + type: Transform +- proto: GasFilterFlipped + entities: + - uid: 742 + components: + - name: nitrogen filter + type: MetaData + - pos: 24.5,4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 743 + components: + - name: oxygen filter + type: MetaData + - pos: 24.5,5.5 + parent: 2 + type: Transform + - color: '#FFAA00FF' + type: AtmosPipeColor + - uid: 1967 + components: + - rot: 3.141592653589793 rad + pos: 17.5,14.5 + parent: 2 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 2054 + components: + - pos: 30.5,13.5 + parent: 2 + type: Transform + - color: '#FF6600FF' + type: AtmosPipeColor + - uid: 2224 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-25.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 2227 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-24.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor +- proto: GasMinerNitrogenStation + entities: + - uid: 754 + components: + - rot: 3.141592653589793 rad + pos: 21.5,9.5 + parent: 2 + type: Transform +- proto: GasMinerOxygenStation + entities: + - uid: 755 + components: + - rot: 3.141592653589793 rad + pos: 23.5,9.5 + parent: 2 + type: Transform +- proto: GasMixerFlipped + entities: + - uid: 707 + components: + - rot: 3.141592653589793 rad + pos: 20.5,5.5 + parent: 2 + type: Transform + - inletTwoConcentration: 0.22000003 + inletOneConcentration: 0.78 + targetPressure: 500 + type: GasMixer + - color: '#0088FFFF' + type: AtmosPipeColor +- proto: GasOutletInjector + entities: + - uid: 722 + components: + - pos: 21.5,8.5 + parent: 2 + type: Transform + - uid: 723 + components: + - pos: 23.5,8.5 + parent: 2 + type: Transform + - uid: 2029 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,19.5 + parent: 2 + type: Transform + - color: '#0099FFFF' + type: AtmosPipeColor + - uid: 2062 + components: + - pos: 27.5,18.5 + parent: 2 + type: Transform + - color: '#FF66FFFF' + type: AtmosPipeColor + - uid: 2846 + components: + - rot: 3.141592653589793 rad + pos: -41.5,5.5 + parent: 2 + type: Transform + - uid: 3813 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-14.5 + parent: 2 + type: Transform +- proto: GasPassiveGate + entities: + - uid: 758 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,3.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8212 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-22.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8962 + components: + - pos: -46.5,-7.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor +- proto: GasPassiveVent + entities: + - uid: 720 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,9.5 + parent: 2 + type: Transform + - uid: 721 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,9.5 + parent: 2 + type: Transform + - uid: 1784 + components: + - pos: 26.5,8.5 + parent: 2 + type: Transform + - color: '#FFAA00FF' + type: AtmosPipeColor + - uid: 2030 + components: + - pos: 26.5,20.5 + parent: 2 + type: Transform + - color: '#FF6600FF' + type: AtmosPipeColor + - uid: 2847 + components: + - rot: 3.141592653589793 rad + pos: -43.5,5.5 + parent: 2 + type: Transform + - uid: 3814 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-12.5 + parent: 2 + type: Transform +- proto: GasPipeBend + entities: + - uid: 428 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,3.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 726 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,9.5 + parent: 2 + type: Transform + - uid: 727 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,9.5 + parent: 2 + type: Transform + - uid: 739 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,5.5 + parent: 2 + type: Transform + - uid: 744 + components: + - rot: 3.141592653589793 rad + pos: 21.5,4.5 + parent: 2 + type: Transform + - uid: 745 + components: + - rot: 3.141592653589793 rad + pos: 23.5,5.5 + parent: 2 + type: Transform + - uid: 746 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,6.5 + parent: 2 + type: Transform + - color: '#FFAA00FF' + type: AtmosPipeColor + - uid: 892 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-31.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 896 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-31.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 955 + components: + - rot: 3.141592653589793 rad + pos: 25.5,12.5 + parent: 2 + type: Transform + - color: '#FF6600FF' + type: AtmosPipeColor + - uid: 957 + components: + - rot: 3.141592653589793 rad + pos: 21.5,15.5 + parent: 2 + type: Transform + - color: '#0099FFFF' + type: AtmosPipeColor + - uid: 1783 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,6.5 + parent: 2 + type: Transform + - color: '#FFAA00FF' + type: AtmosPipeColor + - uid: 1925 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,4.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 1947 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,19.5 + parent: 2 + type: Transform + - color: '#0099FFFF' + type: AtmosPipeColor + - uid: 1960 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,12.5 + parent: 2 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 1964 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,15.5 + parent: 2 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 1965 + components: + - rot: 3.141592653589793 rad + pos: 17.5,12.5 + parent: 2 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 2036 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,15.5 + parent: 2 + type: Transform + - color: '#FF6600FF' + type: AtmosPipeColor + - uid: 2042 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,20.5 + parent: 2 + type: Transform + - color: '#FF6600FF' + type: AtmosPipeColor + - uid: 2043 + components: + - pos: 29.5,20.5 + parent: 2 + type: Transform + - color: '#FF6600FF' + type: AtmosPipeColor + - uid: 2044 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,18.5 + parent: 2 + type: Transform + - color: '#FF6600FF' + type: AtmosPipeColor + - uid: 2056 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,12.5 + parent: 2 + type: Transform + - color: '#FF6600FF' + type: AtmosPipeColor + - uid: 2226 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-25.5 + parent: 2 + type: Transform + - uid: 2228 + components: + - pos: 20.5,-23.5 + parent: 2 + type: Transform + - uid: 2849 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-30.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 2912 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-30.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 3352 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-30.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 3411 + components: + - pos: -47.5,1.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 3694 + components: + - pos: 39.5,16.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 3711 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,1.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 3715 + components: + - pos: 46.5,-8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 4024 + components: + - rot: 3.141592653589793 rad + pos: 1.5,9.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7043 + components: + - rot: -1.5707963267948966 rad + pos: 48.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7053 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,-0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7100 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-1.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7125 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7139 + components: + - pos: 35.5,-10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7155 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-24.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7195 + components: + - rot: 3.141592653589793 rad + pos: 35.5,-8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7231 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-33.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7239 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-26.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7256 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-16.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7264 + components: + - pos: 29.5,-23.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7290 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7292 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-33.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7305 + components: + - rot: 3.141592653589793 rad + pos: 45.5,-8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7343 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7379 + components: + - rot: 3.141592653589793 rad + pos: 29.5,6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7391 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,11.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7420 + components: + - rot: -1.5707963267948966 rad + pos: 41.5,8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7460 + components: + - pos: 15.5,7.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7469 + components: + - rot: 3.141592653589793 rad + pos: 14.5,7.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7470 + components: + - rot: 3.141592653589793 rad + pos: 13.5,14.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7471 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,14.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7490 + components: + - pos: 13.5,19.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7570 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,11.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7617 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7641 + components: + - pos: -6.5,10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7662 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,0.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7861 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-23.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7863 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-19.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7914 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-15.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7915 + components: + - rot: 3.141592653589793 rad + pos: -51.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8018 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8061 + components: + - rot: 3.141592653589793 rad + pos: -27.5,17.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8070 + components: + - pos: -17.5,17.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8082 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,8.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8083 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,8.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8089 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,5.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8109 + components: + - pos: 8.5,-21.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8116 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-27.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8122 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,-6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8136 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,-9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8148 + components: + - rot: -1.5707963267948966 rad + pos: 49.5,-9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8153 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,0.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8174 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8207 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-22.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8214 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-21.5 + parent: 2 + type: Transform + - uid: 8231 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-31.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8274 + components: + - pos: -3.5,-27.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8294 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-10.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8320 + components: + - pos: -7.5,5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8321 + components: + - rot: 3.141592653589793 rad + pos: -8.5,5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8346 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,4.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8352 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8359 + components: + - pos: 3.5,13.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8367 + components: + - rot: 3.141592653589793 rad + pos: 0.5,13.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8376 + components: + - pos: -2.5,17.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8382 + components: + - rot: 3.141592653589793 rad + pos: -14.5,17.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8383 + components: + - pos: -14.5,18.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8401 + components: + - pos: -22.5,19.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8405 + components: + - pos: -21.5,20.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8406 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,20.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8452 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,17.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8501 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,9.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8502 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8526 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,4.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8528 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,4.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8533 + components: + - pos: -20.5,0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8539 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8614 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-15.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8648 + components: + - rot: 3.141592653589793 rad + pos: -27.5,-24.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8674 + components: + - pos: -24.5,-24.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8680 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-29.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8682 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,-15.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8683 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-18.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8708 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-22.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8743 + components: + - pos: 7.5,1.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8781 + components: + - pos: 17.5,-27.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8782 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-27.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8783 + components: + - pos: 15.5,-26.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8785 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-26.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8950 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,-19.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8959 + components: + - rot: 3.141592653589793 rad + pos: -52.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 9114 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,28.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 9160 + components: + - pos: -42.5,-2.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 10118 + components: + - pos: 14.5,-4.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 10218 + components: + - pos: 21.5,20.5 + parent: 2 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 10219 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,20.5 + parent: 2 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 10859 + components: + - pos: -15.5,9.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor +- proto: GasPipeFourway + entities: + - uid: 3703 + components: + - pos: 34.5,-28.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 3707 + components: + - pos: -22.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7040 + components: + - pos: 45.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7074 + components: + - pos: 30.5,-6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7092 + components: + - pos: 21.5,-6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7093 + components: + - pos: 21.5,-11.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7214 + components: + - pos: 34.5,-22.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7232 + components: + - pos: 33.5,-23.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7240 + components: + - pos: 33.5,-26.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7314 + components: + - pos: 33.5,-0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7350 + components: + - pos: 34.5,0.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7368 + components: + - pos: 34.5,6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7494 + components: + - pos: 9.5,19.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7683 + components: + - pos: -0.5,-10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7740 + components: + - pos: 5.5,-17.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7874 + components: + - pos: -33.5,-23.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7992 + components: + - pos: -37.5,9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7998 + components: + - pos: -43.5,9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8030 + components: + - pos: -33.5,18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8055 + components: + - pos: -30.5,18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8206 + components: + - pos: 2.5,-22.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8267 + components: + - pos: -7.5,-27.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8285 + components: + - pos: -12.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8332 + components: + - pos: -2.5,1.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8498 + components: + - pos: -34.5,8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8520 + components: + - pos: -18.5,9.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8668 + components: + - pos: -16.5,-18.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 138 + components: + - pos: 20.5,6.5 + parent: 2 + type: Transform + - uid: 140 + components: + - pos: 22.5,6.5 + parent: 2 + type: Transform + - uid: 728 + components: + - pos: 22.5,8.5 + parent: 2 + type: Transform + - uid: 729 + components: + - pos: 22.5,7.5 + parent: 2 + type: Transform + - uid: 731 + components: + - pos: 20.5,8.5 + parent: 2 + type: Transform + - uid: 732 + components: + - pos: 20.5,7.5 + parent: 2 + type: Transform + - uid: 735 + components: + - rot: 3.141592653589793 rad + pos: 19.5,5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 740 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,5.5 + parent: 2 + type: Transform + - uid: 747 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,4.5 + parent: 2 + type: Transform + - uid: 748 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,4.5 + parent: 2 + type: Transform + - uid: 749 + components: + - pos: 21.5,5.5 + parent: 2 + type: Transform + - uid: 752 + components: + - rot: 3.141592653589793 rad + pos: 21.5,7.5 + parent: 2 + type: Transform + - uid: 753 + components: + - rot: 3.141592653589793 rad + pos: 23.5,7.5 + parent: 2 + type: Transform + - uid: 919 + components: + - pos: 23.5,17.5 + parent: 2 + type: Transform + - color: '#0099FFFF' + type: AtmosPipeColor + - uid: 959 + components: + - pos: 21.5,17.5 + parent: 2 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 1442 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,1.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 1443 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,1.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 1781 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,6.5 + parent: 2 + type: Transform + - color: '#FFAA00FF' + type: AtmosPipeColor + - uid: 1782 + components: + - rot: 3.141592653589793 rad + pos: 26.5,7.5 + parent: 2 + type: Transform + - color: '#FFAA00FF' + type: AtmosPipeColor + - uid: 1950 + components: + - pos: 23.5,18.5 + parent: 2 + type: Transform + - color: '#0099FFFF' + type: AtmosPipeColor + - uid: 1958 + components: + - pos: 19.5,17.5 + parent: 2 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 1970 + components: + - pos: 19.5,13.5 + parent: 2 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 1971 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,12.5 + parent: 2 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 1972 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,15.5 + parent: 2 + type: Transform + - color: '#0099FFFF' + type: AtmosPipeColor + - uid: 1998 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,19.5 + parent: 2 + type: Transform + - color: '#0099FFFF' + type: AtmosPipeColor + - uid: 2022 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,19.5 + parent: 2 + type: Transform + - color: '#0099FFFF' + type: AtmosPipeColor + - uid: 2027 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,19.5 + parent: 2 + type: Transform + - color: '#0099FFFF' + type: AtmosPipeColor + - uid: 2032 + components: + - pos: 23.5,14.5 + parent: 2 + type: Transform + - color: '#0099FFFF' + type: AtmosPipeColor + - uid: 2033 + components: + - pos: 26.5,19.5 + parent: 2 + type: Transform + - color: '#FF6600FF' + type: AtmosPipeColor + - uid: 2034 + components: + - pos: 26.5,18.5 + parent: 2 + type: Transform + - color: '#FF6600FF' + type: AtmosPipeColor + - uid: 2035 + components: + - pos: 26.5,17.5 + parent: 2 + type: Transform + - color: '#FF6600FF' + type: AtmosPipeColor + - uid: 2046 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,15.5 + parent: 2 + type: Transform + - color: '#FF6600FF' + type: AtmosPipeColor + - uid: 2060 + components: + - pos: 27.5,15.5 + parent: 2 + type: Transform + - color: '#FF00FFFF' + type: AtmosPipeColor + - uid: 2061 + components: + - pos: 27.5,17.5 + parent: 2 + type: Transform + - color: '#FF66FFFF' + type: AtmosPipeColor + - uid: 2065 + components: + - pos: 28.5,17.5 + parent: 2 + type: Transform + - color: '#FF6600FF' + type: AtmosPipeColor + - uid: 2221 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-24.5 + parent: 2 + type: Transform + - uid: 2913 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-30.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 3359 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-31.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 3360 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-31.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 3446 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-30.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 3465 + components: + - rot: 3.141592653589793 rad + pos: 39.5,12.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 3623 + components: + - pos: -16.5,-19.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 3683 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-27.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 3692 + components: + - rot: 3.141592653589793 rad + pos: 39.5,14.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 3708 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-31.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 3721 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-31.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 3722 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-31.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 3815 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-12.5 + parent: 2 + type: Transform + - uid: 3816 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-14.5 + parent: 2 + type: Transform + - uid: 3817 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-14.5 + parent: 2 + type: Transform + - uid: 3818 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-12.5 + parent: 2 + type: Transform + - uid: 4026 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 4049 + components: + - pos: -13.5,-29.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7007 + components: + - pos: 20.5,2.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7008 + components: + - pos: 20.5,1.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7010 + components: + - pos: 20.5,-0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7012 + components: + - pos: 20.5,-2.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7013 + components: + - pos: 20.5,-3.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7014 + components: + - pos: 20.5,-4.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7016 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7017 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7018 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7021 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7022 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7023 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7025 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7026 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7027 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7029 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7031 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7032 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7033 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7034 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7035 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7036 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7038 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7039 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7041 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7042 + components: + - rot: -1.5707963267948966 rad + pos: 47.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7044 + components: + - rot: 3.141592653589793 rad + pos: 45.5,-7.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7045 + components: + - rot: 3.141592653589793 rad + pos: 45.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7046 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,-6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7047 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,-6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7048 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,-6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7049 + components: + - rot: 3.141592653589793 rad + pos: 45.5,-4.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7050 + components: + - rot: 3.141592653589793 rad + pos: 45.5,-3.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7051 + components: + - rot: 3.141592653589793 rad + pos: 45.5,-2.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7052 + components: + - rot: 3.141592653589793 rad + pos: 45.5,-1.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7054 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,-0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7055 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,-0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7057 + components: + - pos: 21.5,2.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7058 + components: + - pos: 21.5,1.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7059 + components: + - pos: 21.5,0.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7061 + components: + - pos: 21.5,-1.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7062 + components: + - pos: 21.5,-2.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7063 + components: + - pos: 21.5,-3.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7064 + components: + - pos: 21.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7065 + components: + - pos: 21.5,-5.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7073 + components: + - pos: 32.5,-5.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7075 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7076 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7077 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7078 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7079 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7080 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,-6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7081 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7082 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7083 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,-6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7084 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,-6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7085 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7086 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7087 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7088 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,-6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7090 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7094 + components: + - pos: 21.5,-7.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7095 + components: + - pos: 21.5,-8.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7096 + components: + - pos: 21.5,-9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7097 + components: + - pos: 21.5,-10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7098 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-11.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7099 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-11.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7106 + components: + - pos: 30.5,-7.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7107 + components: + - pos: 30.5,-8.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7109 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7114 + components: + - pos: 30.5,-11.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7115 + components: + - pos: 30.5,-12.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7116 + components: + - pos: 30.5,-13.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7117 + components: + - pos: 30.5,-14.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7118 + components: + - pos: 30.5,-16.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7119 + components: + - pos: 30.5,-17.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7122 + components: + - pos: 29.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7123 + components: + - pos: 29.5,-7.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7124 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7135 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7136 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7137 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7138 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7140 + components: + - pos: 35.5,-11.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7142 + components: + - pos: 21.5,-12.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7143 + components: + - pos: 21.5,-13.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7144 + components: + - pos: 21.5,-14.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7145 + components: + - pos: 21.5,-15.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7149 + components: + - pos: 21.5,-18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7150 + components: + - pos: 21.5,-19.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7151 + components: + - pos: 21.5,-20.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7152 + components: + - pos: 21.5,-21.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7157 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-24.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7160 + components: + - pos: 24.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7161 + components: + - pos: 24.5,-7.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7162 + components: + - pos: 24.5,-8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7163 + components: + - pos: 24.5,-9.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7164 + components: + - pos: 24.5,-10.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7165 + components: + - pos: 24.5,-11.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7166 + components: + - pos: 24.5,-12.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7168 + components: + - pos: 24.5,-14.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7169 + components: + - pos: 24.5,-15.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7170 + components: + - pos: 24.5,-16.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7171 + components: + - pos: 24.5,-17.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7174 + components: + - pos: 24.5,-20.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7175 + components: + - pos: 24.5,-21.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7176 + components: + - pos: 24.5,-22.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7177 + components: + - pos: 24.5,-23.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7179 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-24.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7183 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-19.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7184 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-19.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7185 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-19.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7186 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-19.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7187 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-19.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7188 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-19.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7193 + components: + - pos: 35.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7194 + components: + - pos: 35.5,-7.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7197 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-19.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7198 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-20.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7199 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-21.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7200 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-22.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7201 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-23.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7202 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,-23.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7203 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,-23.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7204 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,-23.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7205 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,-23.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7208 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-22.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7210 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-22.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7211 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-22.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7215 + components: + - pos: 34.5,-19.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7216 + components: + - pos: 34.5,-20.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7217 + components: + - pos: 34.5,-21.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7218 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7219 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7220 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7221 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-23.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7222 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-24.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7223 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-25.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7224 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-26.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7225 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-27.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7227 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-29.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7228 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-30.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7229 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-31.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7230 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-32.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7233 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-23.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7234 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-23.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7236 + components: + - pos: 33.5,-24.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7237 + components: + - pos: 33.5,-25.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7238 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-26.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7241 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-26.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7242 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,-26.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7246 + components: + - pos: 33.5,-27.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7247 + components: + - pos: 33.5,-28.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7248 + components: + - pos: 33.5,-29.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7249 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-28.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7251 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-16.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7252 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-16.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7253 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-16.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7257 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-23.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7258 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-23.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7259 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-23.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7261 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-23.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7262 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-23.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7263 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-23.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7265 + components: + - pos: 29.5,-24.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7266 + components: + - pos: 29.5,-25.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7267 + components: + - pos: 29.5,-27.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7269 + components: + - pos: 29.5,-29.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7273 + components: + - pos: 24.5,-25.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7274 + components: + - pos: 24.5,-26.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7275 + components: + - pos: 24.5,-27.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7277 + components: + - pos: 24.5,-30.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7278 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-31.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7279 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,-31.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7284 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7285 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7286 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7287 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7291 + components: + - pos: 24.5,-32.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7295 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7296 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7297 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-7.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7298 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-8.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7306 + components: + - rot: 1.5707963267948966 rad + pos: 38.5,-6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7307 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,-6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7308 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,-6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7309 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,-6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7313 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-4.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7315 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-2.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7316 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-1.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7317 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7318 + components: + - rot: 1.5707963267948966 rad + pos: 35.5,-0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7319 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,-0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7320 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,-0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7322 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7323 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7324 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7325 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7326 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7330 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-3.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7332 + components: + - pos: 26.5,0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7334 + components: + - pos: 26.5,1.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7335 + components: + - pos: 26.5,2.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7336 + components: + - pos: 26.5,3.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7337 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7340 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7341 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-3.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7347 + components: + - pos: 34.5,-2.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7348 + components: + - pos: 34.5,-1.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7349 + components: + - pos: 34.5,-0.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7351 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,0.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7352 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,0.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7353 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,0.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7354 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,0.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7357 + components: + - pos: 34.5,1.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7358 + components: + - pos: 34.5,2.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7359 + components: + - pos: 34.5,3.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7360 + components: + - pos: 34.5,4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7361 + components: + - pos: 34.5,5.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7362 + components: + - pos: 34.5,7.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7363 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7365 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7366 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7367 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7369 + components: + - pos: 36.5,7.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7370 + components: + - pos: 36.5,8.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7371 + components: + - pos: 36.5,9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7372 + components: + - pos: 36.5,10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7373 + components: + - pos: 36.5,11.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7375 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7376 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7377 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7378 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7380 + components: + - rot: 3.141592653589793 rad + pos: 29.5,7.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7381 + components: + - rot: 3.141592653589793 rad + pos: 29.5,8.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7382 + components: + - rot: 3.141592653589793 rad + pos: 29.5,9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7383 + components: + - rot: 3.141592653589793 rad + pos: 29.5,10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7387 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,11.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7388 + components: + - rot: 3.141592653589793 rad + pos: 31.5,12.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7389 + components: + - rot: 3.141592653589793 rad + pos: 31.5,13.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7390 + components: + - rot: 3.141592653589793 rad + pos: 31.5,14.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7392 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,11.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7393 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,11.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7394 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,11.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7395 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,11.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7396 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,11.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7397 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,11.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7398 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,11.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7399 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,11.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7400 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,11.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7401 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,11.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7402 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,11.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7403 + components: + - rot: 3.141592653589793 rad + pos: 33.5,0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7405 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,1.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7408 + components: + - pos: 33.5,2.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7409 + components: + - pos: 33.5,3.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7410 + components: + - pos: 33.5,4.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7411 + components: + - pos: 33.5,5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7412 + components: + - pos: 33.5,6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7413 + components: + - pos: 33.5,7.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7415 + components: + - pos: 33.5,9.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7416 + components: + - pos: 33.5,10.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7421 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7423 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7424 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7425 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7426 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7429 + components: + - rot: 3.141592653589793 rad + pos: 39.5,9.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7430 + components: + - rot: 3.141592653589793 rad + pos: 39.5,10.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7431 + components: + - rot: 3.141592653589793 rad + pos: 39.5,11.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7432 + components: + - rot: 3.141592653589793 rad + pos: 39.5,13.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7434 + components: + - rot: 3.141592653589793 rad + pos: 39.5,15.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7435 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,16.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7436 + components: + - rot: -1.5707963267948966 rad + pos: 37.5,16.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7437 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,16.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7438 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,16.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7439 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,16.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7440 + components: + - rot: -1.5707963267948966 rad + pos: 33.5,16.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7444 + components: + - pos: 32.5,17.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7445 + components: + - pos: 32.5,18.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7446 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7447 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7448 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7449 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7451 + components: + - rot: 3.141592653589793 rad + pos: 15.5,1.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7452 + components: + - rot: 3.141592653589793 rad + pos: 15.5,2.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7454 + components: + - rot: 3.141592653589793 rad + pos: 15.5,4.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7455 + components: + - rot: 3.141592653589793 rad + pos: 15.5,5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7456 + components: + - rot: 3.141592653589793 rad + pos: 15.5,6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7457 + components: + - pos: 15.5,-0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7458 + components: + - pos: 15.5,-1.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7461 + components: + - pos: 14.5,8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7462 + components: + - pos: 14.5,9.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7464 + components: + - pos: 14.5,11.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7465 + components: + - pos: 14.5,12.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7466 + components: + - pos: 14.5,13.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7467 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,14.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7468 + components: + - rot: 3.141592653589793 rad + pos: 16.5,15.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7476 + components: + - rot: 3.141592653589793 rad + pos: 13.5,15.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7477 + components: + - rot: 3.141592653589793 rad + pos: 13.5,17.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7478 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,18.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7479 + components: + - rot: 1.5707963267948966 rad + pos: 16.5,18.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7484 + components: + - pos: 15.5,19.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7485 + components: + - pos: 15.5,20.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7486 + components: + - pos: 15.5,21.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7487 + components: + - pos: 15.5,22.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7488 + components: + - pos: 15.5,23.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7489 + components: + - pos: 15.5,24.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7491 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,19.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7492 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,19.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7493 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,19.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7496 + components: + - pos: 9.5,18.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7497 + components: + - pos: 9.5,17.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7498 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,19.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7499 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,19.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7501 + components: + - pos: 9.5,20.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7502 + components: + - pos: 9.5,21.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7503 + components: + - pos: 9.5,22.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7504 + components: + - pos: 9.5,23.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7506 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,3.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7507 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,3.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7510 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,10.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7511 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,10.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7512 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7513 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7514 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7516 + components: + - pos: 8.5,-5.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7517 + components: + - pos: 8.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7518 + components: + - pos: 8.5,-3.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7519 + components: + - pos: 8.5,-2.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7520 + components: + - pos: 8.5,-1.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7521 + components: + - pos: 8.5,-0.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7523 + components: + - pos: 8.5,1.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7524 + components: + - pos: 8.5,2.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7525 + components: + - pos: 8.5,4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7526 + components: + - pos: 8.5,5.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7527 + components: + - pos: 8.5,6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7528 + components: + - pos: 8.5,7.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7529 + components: + - pos: 8.5,8.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7530 + components: + - pos: 8.5,9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7531 + components: + - pos: 8.5,11.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7532 + components: + - pos: 8.5,12.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7536 + components: + - pos: 8.5,13.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7537 + components: + - pos: 8.5,14.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7538 + components: + - pos: 8.5,15.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7540 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,3.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7541 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,3.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7545 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,0.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7546 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,0.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7547 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,0.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7548 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,0.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7551 + components: + - pos: 2.5,1.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7552 + components: + - pos: 2.5,2.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7553 + components: + - pos: 2.5,3.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7554 + components: + - pos: 2.5,4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7555 + components: + - pos: 2.5,5.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7557 + components: + - pos: 2.5,7.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7558 + components: + - pos: 2.5,8.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7559 + components: + - pos: 2.5,9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7560 + components: + - pos: 2.5,10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7562 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,11.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7563 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,11.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7567 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,0.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7569 + components: + - pos: -3.5,10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7571 + components: + - rot: 3.141592653589793 rad + pos: 4.5,12.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7572 + components: + - rot: 3.141592653589793 rad + pos: 4.5,13.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7573 + components: + - rot: 3.141592653589793 rad + pos: 4.5,14.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7574 + components: + - rot: 3.141592653589793 rad + pos: 4.5,15.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7575 + components: + - rot: 3.141592653589793 rad + pos: 4.5,16.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7576 + components: + - rot: 3.141592653589793 rad + pos: 4.5,17.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7577 + components: + - rot: 3.141592653589793 rad + pos: 4.5,18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7578 + components: + - rot: 3.141592653589793 rad + pos: 4.5,19.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7580 + components: + - rot: 3.141592653589793 rad + pos: 4.5,21.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7582 + components: + - rot: 3.141592653589793 rad + pos: 4.5,23.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7583 + components: + - rot: 3.141592653589793 rad + pos: 4.5,24.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7585 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,22.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7586 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,22.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7589 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,25.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7590 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,25.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7591 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,25.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7592 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,25.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7593 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,25.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7594 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,25.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7595 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,25.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7599 + components: + - pos: -3.5,12.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7600 + components: + - pos: -3.5,13.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7601 + components: + - pos: -3.5,14.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7602 + components: + - pos: -3.5,15.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7603 + components: + - pos: -3.5,16.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7604 + components: + - pos: -3.5,17.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7605 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7606 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7607 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7608 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7609 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7618 + components: + - rot: 3.141592653589793 rad + pos: -13.5,17.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7619 + components: + - rot: 3.141592653589793 rad + pos: -13.5,16.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7620 + components: + - rot: 3.141592653589793 rad + pos: -13.5,15.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7621 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7622 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7623 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7624 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7625 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7626 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,11.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7627 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,11.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7628 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,11.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7630 + components: + - pos: -3.5,9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7631 + components: + - pos: -3.5,8.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7632 + components: + - pos: -3.5,7.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7633 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7634 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7638 + components: + - pos: -7.5,11.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7639 + components: + - pos: -6.5,8.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7640 + components: + - pos: -6.5,9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7645 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7646 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7647 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7650 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,0.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7651 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,0.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7652 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7653 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7654 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,0.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7655 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,0.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7658 + components: + - rot: 3.141592653589793 rad + pos: -6.5,3.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7659 + components: + - rot: 3.141592653589793 rad + pos: -6.5,4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7660 + components: + - rot: 3.141592653589793 rad + pos: -6.5,5.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7661 + components: + - pos: -6.5,1.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7664 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7665 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-0.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7667 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,0.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7672 + components: + - pos: 8.5,-7.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7673 + components: + - pos: 8.5,-9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7674 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7675 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7676 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7677 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7678 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7679 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7680 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7681 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7684 + components: + - pos: -0.5,-9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7685 + components: + - pos: 8.5,-11.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7686 + components: + - pos: 8.5,-12.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7687 + components: + - pos: 8.5,-13.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7688 + components: + - pos: 8.5,-14.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7689 + components: + - pos: 8.5,-15.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7690 + components: + - pos: 8.5,-16.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7692 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-17.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7693 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-17.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7694 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-17.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7695 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-17.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7696 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-17.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7697 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-17.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7701 + components: + - pos: 6.5,-18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7702 + components: + - pos: 6.5,-19.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7703 + components: + - pos: 6.5,-20.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7709 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-17.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7711 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-17.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7712 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-17.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7713 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-17.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7715 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-17.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7716 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-17.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7717 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-17.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7718 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-17.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7721 + components: + - pos: -3.5,-18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7722 + components: + - pos: -3.5,-19.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7723 + components: + - pos: -3.5,-20.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7724 + components: + - pos: -3.5,-21.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7726 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-27.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7728 + components: + - pos: 1.5,-18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7729 + components: + - pos: 1.5,-19.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7730 + components: + - pos: 1.5,-20.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7731 + components: + - pos: 1.5,-21.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7732 + components: + - pos: 1.5,-22.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7733 + components: + - pos: 1.5,-23.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7734 + components: + - pos: 1.5,-24.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7735 + components: + - pos: 1.5,-25.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7736 + components: + - pos: 1.5,-26.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7738 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-27.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7739 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-27.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7741 + components: + - pos: 5.5,-16.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7742 + components: + - pos: -8.5,-1.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7743 + components: + - pos: -8.5,-2.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7744 + components: + - pos: -8.5,-3.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7747 + components: + - pos: -8.5,-6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7748 + components: + - pos: -8.5,-7.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7749 + components: + - pos: -8.5,-8.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7750 + components: + - pos: -8.5,-9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7753 + components: + - pos: -8.5,-12.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7754 + components: + - pos: -8.5,-13.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7756 + components: + - pos: -8.5,-15.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7757 + components: + - pos: -8.5,-16.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7758 + components: + - pos: -8.5,-17.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7760 + components: + - pos: -8.5,-19.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7761 + components: + - pos: -8.5,-20.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7762 + components: + - pos: -8.5,-21.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7764 + components: + - pos: -8.5,-23.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7766 + components: + - pos: -8.5,-25.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7767 + components: + - pos: -8.5,-26.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7768 + components: + - pos: -8.5,-27.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7769 + components: + - pos: -8.5,-28.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7770 + components: + - pos: -8.5,-29.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7772 + components: + - pos: -8.5,-31.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7773 + components: + - pos: -8.5,-32.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7776 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-30.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7777 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-30.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7778 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-30.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7779 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-30.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7781 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-30.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7783 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7784 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7787 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-11.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7788 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-11.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7789 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7790 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7791 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7792 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7793 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7794 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7795 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7798 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7799 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7800 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7801 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7802 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7804 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7805 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7806 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7807 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7808 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7809 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7810 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7813 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7814 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7815 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7816 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7817 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7818 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7821 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7822 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7823 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7824 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7825 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7826 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7827 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7830 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7831 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7832 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7833 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7834 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7835 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7836 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7837 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7838 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7839 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-5.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7840 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7841 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-7.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7842 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-8.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7844 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7845 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-11.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7846 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-12.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7848 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-14.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7849 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-15.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7850 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-16.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7851 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-17.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7856 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7857 + components: + - pos: -23.5,-18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7858 + components: + - pos: -22.5,-20.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7859 + components: + - pos: -22.5,-21.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7860 + components: + - pos: -22.5,-22.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7865 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-23.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7866 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-23.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7867 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-23.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7868 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-23.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7870 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,-23.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7871 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-23.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7872 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-23.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7873 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-23.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7875 + components: + - pos: -33.5,-24.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7879 + components: + - rot: 3.141592653589793 rad + pos: -28.5,-21.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7880 + components: + - rot: 3.141592653589793 rad + pos: -28.5,-22.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7881 + components: + - pos: -33.5,-25.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7882 + components: + - pos: -33.5,-26.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7883 + components: + - pos: -33.5,-27.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7886 + components: + - pos: -33.5,-22.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7887 + components: + - pos: -33.5,-21.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7888 + components: + - pos: -33.5,-20.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7889 + components: + - pos: -33.5,-19.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7892 + components: + - pos: -33.5,-17.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7893 + components: + - pos: -33.5,-16.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7894 + components: + - pos: -33.5,-15.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7899 + components: + - pos: -33.5,-13.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7900 + components: + - pos: -33.5,-12.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7901 + components: + - pos: -33.5,-11.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7902 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7903 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7904 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7905 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7906 + components: + - rot: -1.5707963267948966 rad + pos: -38.5,-10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7909 + components: + - pos: -39.5,-11.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7910 + components: + - pos: -39.5,-12.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7911 + components: + - pos: -39.5,-13.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7912 + components: + - pos: -39.5,-14.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7919 + components: + - rot: 3.141592653589793 rad + pos: -50.5,-5.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7920 + components: + - rot: 3.141592653589793 rad + pos: -50.5,-6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7921 + components: + - rot: 3.141592653589793 rad + pos: -50.5,-7.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7922 + components: + - rot: 3.141592653589793 rad + pos: -50.5,-9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7923 + components: + - rot: 3.141592653589793 rad + pos: -50.5,-10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7924 + components: + - rot: 3.141592653589793 rad + pos: -50.5,-11.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7925 + components: + - rot: 3.141592653589793 rad + pos: -50.5,-12.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7931 + components: + - pos: -39.5,-3.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7932 + components: + - pos: -39.5,-2.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7947 + components: + - pos: -30.5,-3.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7948 + components: + - pos: -30.5,-2.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7949 + components: + - pos: -30.5,-1.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7950 + components: + - pos: -30.5,-0.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7954 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,0.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7956 + components: + - pos: -22.5,-3.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7957 + components: + - pos: -22.5,-2.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7958 + components: + - pos: -22.5,-1.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7960 + components: + - pos: -22.5,0.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7961 + components: + - pos: -22.5,1.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7962 + components: + - pos: -22.5,2.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7965 + components: + - pos: -22.5,4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7969 + components: + - pos: -23.5,6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7970 + components: + - pos: -23.5,7.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7971 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,5.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7972 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,5.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7973 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,5.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7974 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,5.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7975 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,5.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7976 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,5.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7983 + components: + - pos: -30.5,6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7984 + components: + - pos: -30.5,7.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7985 + components: + - pos: -30.5,8.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7986 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7987 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7989 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7990 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7991 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7993 + components: + - pos: -37.5,10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7994 + components: + - pos: -37.5,11.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7995 + components: + - pos: -37.5,8.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7996 + components: + - pos: -37.5,7.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7997 + components: + - pos: -37.5,6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7999 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8000 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8001 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8002 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8003 + components: + - rot: 3.141592653589793 rad + pos: -43.5,8.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8004 + components: + - rot: 3.141592653589793 rad + pos: -43.5,7.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8005 + components: + - rot: 3.141592653589793 rad + pos: -43.5,10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8006 + components: + - rot: 3.141592653589793 rad + pos: -43.5,11.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8012 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8013 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8014 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8015 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8016 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8017 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8019 + components: + - pos: -52.5,10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8020 + components: + - pos: -52.5,11.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8024 + components: + - pos: -51.5,-3.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8025 + components: + - pos: -51.5,-2.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8026 + components: + - pos: -51.5,-1.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8031 + components: + - pos: -33.5,10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8032 + components: + - pos: -33.5,11.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8033 + components: + - pos: -33.5,12.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8035 + components: + - pos: -33.5,14.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8036 + components: + - pos: -33.5,15.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8037 + components: + - pos: -33.5,16.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8038 + components: + - pos: -33.5,17.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8041 + components: + - pos: -33.5,19.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8042 + components: + - pos: -36.5,19.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8043 + components: + - pos: -30.5,19.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8044 + components: + - pos: -27.5,19.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8049 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8050 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8051 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8052 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8053 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8054 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8056 + components: + - pos: -30.5,17.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8057 + components: + - pos: -30.5,16.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8060 + components: + - pos: -36.5,17.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8063 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,17.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8064 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,17.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8065 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,17.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8066 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,17.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8068 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,17.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8071 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,17.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8072 + components: + - pos: -17.5,16.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8073 + components: + - pos: -17.5,14.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8074 + components: + - pos: -17.5,12.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8075 + components: + - pos: -17.5,15.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8076 + components: + - pos: -17.5,13.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8080 + components: + - pos: -17.5,10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8081 + components: + - pos: -17.5,9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8084 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,8.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8085 + components: + - rot: 3.141592653589793 rad + pos: -19.5,7.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8086 + components: + - rot: 3.141592653589793 rad + pos: -19.5,6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8087 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,5.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8088 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,5.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8094 + components: + - pos: -13.5,-28.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8096 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-30.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8099 + components: + - pos: 8.5,-23.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8100 + components: + - pos: 8.5,-24.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8101 + components: + - pos: 8.5,-25.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8102 + components: + - pos: 8.5,-26.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8103 + components: + - pos: 8.5,-27.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8104 + components: + - pos: 8.5,-28.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8105 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-22.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8106 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-22.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8107 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-22.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8110 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-21.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8114 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-27.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8115 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-27.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8119 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,-6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8120 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,-6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8121 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,-6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8123 + components: + - rot: 3.141592653589793 rad + pos: 46.5,-5.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8124 + components: + - rot: 3.141592653589793 rad + pos: 46.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8125 + components: + - rot: 3.141592653589793 rad + pos: 46.5,-3.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8126 + components: + - rot: 3.141592653589793 rad + pos: 46.5,-2.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8128 + components: + - rot: 3.141592653589793 rad + pos: 39.5,-17.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8129 + components: + - rot: 3.141592653589793 rad + pos: 39.5,-16.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8130 + components: + - rot: 3.141592653589793 rad + pos: 39.5,-15.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8131 + components: + - rot: 3.141592653589793 rad + pos: 39.5,-14.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8132 + components: + - rot: 3.141592653589793 rad + pos: 39.5,-13.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8133 + components: + - rot: 3.141592653589793 rad + pos: 39.5,-12.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8134 + components: + - rot: 3.141592653589793 rad + pos: 39.5,-11.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8135 + components: + - rot: 3.141592653589793 rad + pos: 39.5,-10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8137 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,-9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8138 + components: + - rot: 1.5707963267948966 rad + pos: 41.5,-9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8139 + components: + - rot: 1.5707963267948966 rad + pos: 42.5,-9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8140 + components: + - rot: 1.5707963267948966 rad + pos: 43.5,-9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8141 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,-9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8143 + components: + - pos: 45.5,-10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8145 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,-9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8146 + components: + - rot: -1.5707963267948966 rad + pos: 47.5,-9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8147 + components: + - rot: -1.5707963267948966 rad + pos: 48.5,-9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8150 + components: + - pos: 49.5,-8.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8154 + components: + - pos: 46.5,-0.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8155 + components: + - rot: -1.5707963267948966 rad + pos: 47.5,0.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8156 + components: + - rot: -1.5707963267948966 rad + pos: 48.5,0.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8158 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8159 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8160 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8161 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8162 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8164 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8165 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8167 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8168 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8169 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8172 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8173 + components: + - rot: 3.141592653589793 rad + pos: 11.5,-7.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8175 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8176 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-7.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8177 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8178 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-9.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8179 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-10.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8181 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-12.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8182 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-13.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8183 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-14.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8184 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-15.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8186 + components: + - pos: 2.5,-17.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8187 + components: + - pos: 2.5,-18.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8188 + components: + - pos: 2.5,-19.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8189 + components: + - pos: 2.5,-20.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8190 + components: + - pos: 2.5,-21.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8194 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-16.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8195 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-16.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8196 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-15.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8198 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-16.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8199 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-16.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8200 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-16.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8201 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-16.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8203 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-16.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8204 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-16.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8208 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-22.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8210 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-22.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8211 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-22.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8216 + components: + - pos: 2.5,-23.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8217 + components: + - pos: 2.5,-24.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8218 + components: + - pos: 2.5,-25.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8219 + components: + - pos: 2.5,-27.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8220 + components: + - pos: 2.5,-28.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8224 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-26.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8225 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-29.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8228 + components: + - pos: 2.5,-30.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8229 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-31.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8230 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-31.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8234 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-11.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8235 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-11.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8236 + components: + - rot: 1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8237 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8238 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-11.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8239 + components: + - pos: 0.5,-10.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8240 + components: + - pos: 0.5,-9.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8245 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-11.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8246 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-11.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8247 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-11.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8248 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-11.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8249 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-11.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8250 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-11.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8251 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-11.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8252 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-10.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8253 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-12.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8254 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-13.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8255 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-14.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8256 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-15.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8257 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-16.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8258 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-18.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8259 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-19.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8260 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-20.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8261 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-21.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8263 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-23.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8264 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-24.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8265 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-25.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8266 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-26.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8268 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-28.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8269 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-29.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8270 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-30.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8271 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-27.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8272 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-27.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8273 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-27.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8279 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8280 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-7.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8281 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8282 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8283 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8284 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8286 + components: + - pos: -12.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8287 + components: + - pos: -12.5,-4.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8288 + components: + - pos: -12.5,-3.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8289 + components: + - pos: -12.5,-2.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8290 + components: + - pos: -12.5,-1.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8291 + components: + - pos: -12.5,-7.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8292 + components: + - pos: -12.5,-8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8293 + components: + - pos: -12.5,-9.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8297 + components: + - pos: -7.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8298 + components: + - pos: -7.5,-4.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8299 + components: + - pos: -7.5,-3.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8303 + components: + - pos: -7.5,-1.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8304 + components: + - pos: -7.5,-0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8305 + components: + - pos: -7.5,0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8306 + components: + - pos: -7.5,2.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8307 + components: + - pos: -7.5,3.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8308 + components: + - pos: -7.5,4.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8309 + components: + - pos: -8.5,6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8310 + components: + - pos: -8.5,7.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8311 + components: + - pos: -8.5,8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8312 + components: + - pos: -8.5,9.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8313 + components: + - pos: -8.5,10.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8314 + components: + - pos: -8.5,11.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8315 + components: + - pos: -8.5,12.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8318 + components: + - pos: -8.5,15.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8319 + components: + - pos: -8.5,16.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8324 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,14.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8325 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,14.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8326 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,14.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8328 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,1.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8329 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,1.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8330 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,1.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8331 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,1.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8333 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,1.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8334 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,1.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8335 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,1.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8337 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,1.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8338 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,1.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8339 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,1.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8341 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,1.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8344 + components: + - pos: -2.5,2.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8345 + components: + - pos: -2.5,3.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8348 + components: + - pos: 1.5,2.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8349 + components: + - pos: 1.5,3.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8350 + components: + - pos: 1.5,4.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8351 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8353 + components: + - rot: 3.141592653589793 rad + pos: 3.5,6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8354 + components: + - rot: 3.141592653589793 rad + pos: 3.5,7.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8355 + components: + - rot: 3.141592653589793 rad + pos: 3.5,8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8358 + components: + - rot: 3.141592653589793 rad + pos: 3.5,10.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8360 + components: + - pos: 3.5,11.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8361 + components: + - pos: 3.5,12.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8362 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,9.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8364 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,13.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8366 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,13.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8368 + components: + - rot: 3.141592653589793 rad + pos: 0.5,14.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8369 + components: + - rot: 3.141592653589793 rad + pos: 0.5,15.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8371 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,17.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8372 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,17.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8373 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,17.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8374 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,17.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8375 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,17.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8377 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,17.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8378 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,17.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8379 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,17.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8380 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,17.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8381 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,17.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8384 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,18.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8385 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,18.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8386 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,18.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8388 + components: + - pos: -18.5,17.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8391 + components: + - pos: -18.5,15.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8394 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,18.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8395 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,18.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8396 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,18.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8398 + components: + - rot: 3.141592653589793 rad + pos: -21.5,18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8400 + components: + - rot: 3.141592653589793 rad + pos: -22.5,17.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8404 + components: + - rot: 3.141592653589793 rad + pos: -21.5,19.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8407 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,20.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8408 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,20.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8410 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,16.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8411 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,16.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8412 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,16.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8413 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,16.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8414 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,16.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8416 + components: + - pos: -28.5,15.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8417 + components: + - pos: -28.5,14.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8418 + components: + - pos: -28.5,13.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8421 + components: + - pos: -28.5,18.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8422 + components: + - pos: -28.5,19.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8427 + components: + - pos: -31.5,19.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8428 + components: + - pos: -31.5,18.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8429 + components: + - pos: -34.5,19.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8430 + components: + - pos: -34.5,18.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8431 + components: + - pos: -37.5,19.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8432 + components: + - pos: -37.5,18.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8436 + components: + - rot: 1.5707963267948966 rad + pos: -29.5,17.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8437 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,17.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8438 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,17.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8439 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,17.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8440 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,17.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8441 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,17.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8445 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,17.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8446 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,17.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8447 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,17.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8448 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,17.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8450 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,17.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8451 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,17.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8453 + components: + - pos: -46.5,16.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8454 + components: + - pos: -46.5,15.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8455 + components: + - pos: -46.5,14.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8456 + components: + - pos: -46.5,13.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8458 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,12.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8465 + components: + - pos: -46.5,11.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8466 + components: + - pos: -46.5,10.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8467 + components: + - pos: -46.5,9.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8469 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8470 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8471 + components: + - pos: -49.5,9.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8472 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8473 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8474 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8475 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8476 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8477 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8478 + components: + - rot: 3.141592653589793 rad + pos: -38.5,7.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8479 + components: + - rot: 3.141592653589793 rad + pos: -38.5,6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8480 + components: + - rot: 3.141592653589793 rad + pos: -38.5,5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8484 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8485 + components: + - pos: -36.5,9.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8486 + components: + - pos: -36.5,10.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8488 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8494 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8495 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8496 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8497 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8499 + components: + - rot: 3.141592653589793 rad + pos: -34.5,9.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8500 + components: + - rot: 3.141592653589793 rad + pos: -34.5,10.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8503 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,9.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8504 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,9.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8505 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,9.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8508 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,9.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8509 + components: + - rot: 3.141592653589793 rad + pos: -23.5,10.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8510 + components: + - rot: 3.141592653589793 rad + pos: -23.5,11.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8511 + components: + - rot: 3.141592653589793 rad + pos: -23.5,12.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8514 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,9.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8515 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,9.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8516 + components: + - pos: -18.5,10.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8517 + components: + - pos: -18.5,11.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8518 + components: + - pos: -18.5,12.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8519 + components: + - pos: -18.5,13.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8521 + components: + - pos: -18.5,8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8522 + components: + - pos: -18.5,7.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8523 + components: + - pos: -18.5,6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8524 + components: + - pos: -18.5,5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8529 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,4.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8530 + components: + - pos: -21.5,3.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8531 + components: + - pos: -21.5,2.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8532 + components: + - pos: -21.5,1.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8536 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8537 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8538 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8541 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8542 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,-0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8545 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,-0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8546 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8547 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8551 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8552 + components: + - rot: 3.141592653589793 rad + pos: -33.5,0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8553 + components: + - rot: 3.141592653589793 rad + pos: -33.5,1.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8554 + components: + - rot: 3.141592653589793 rad + pos: -33.5,2.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8555 + components: + - rot: 3.141592653589793 rad + pos: -33.5,3.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8556 + components: + - rot: 3.141592653589793 rad + pos: -33.5,4.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8557 + components: + - rot: 3.141592653589793 rad + pos: -33.5,5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8558 + components: + - rot: 3.141592653589793 rad + pos: -33.5,6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8559 + components: + - rot: 3.141592653589793 rad + pos: -33.5,7.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8560 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-1.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8561 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-1.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8562 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-1.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8563 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-1.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8565 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8567 + components: + - pos: -38.5,-2.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8568 + components: + - pos: -38.5,-3.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8569 + components: + - pos: -38.5,-4.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8570 + components: + - pos: -25.5,-1.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8571 + components: + - pos: -25.5,-2.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8572 + components: + - pos: -25.5,-3.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8573 + components: + - pos: -25.5,-4.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8574 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8575 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8577 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8578 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-4.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8580 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8581 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8582 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8583 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8584 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8585 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8586 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8587 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8588 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8589 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8591 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8592 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8593 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8594 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8595 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8597 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8598 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8600 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8603 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8604 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8605 + components: + - rot: 3.141592653589793 rad + pos: -27.5,-7.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8606 + components: + - rot: 3.141592653589793 rad + pos: -27.5,-8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8609 + components: + - pos: -26.5,-10.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8610 + components: + - pos: -26.5,-11.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8611 + components: + - pos: -26.5,-12.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8612 + components: + - pos: -26.5,-13.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8619 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-9.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8620 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-9.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8622 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,-15.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8623 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,-15.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8624 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-15.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8625 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-15.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8626 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-15.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8627 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-15.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8628 + components: + - rot: 3.141592653589793 rad + pos: -34.5,-16.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8629 + components: + - rot: 3.141592653589793 rad + pos: -34.5,-17.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8631 + components: + - rot: 3.141592653589793 rad + pos: -34.5,-19.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8632 + components: + - rot: 3.141592653589793 rad + pos: -34.5,-20.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8633 + components: + - rot: 3.141592653589793 rad + pos: -34.5,-21.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8635 + components: + - rot: 3.141592653589793 rad + pos: -34.5,-23.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8637 + components: + - rot: 3.141592653589793 rad + pos: -34.5,-25.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8642 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-22.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8643 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-22.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8644 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-22.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8645 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-22.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8646 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-22.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8649 + components: + - rot: 3.141592653589793 rad + pos: -27.5,-23.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8651 + components: + - pos: -27.5,-21.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8652 + components: + - pos: -27.5,-20.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8653 + components: + - pos: -27.5,-19.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8655 + components: + - pos: -27.5,-17.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8656 + components: + - pos: -27.5,-16.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8657 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-18.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8658 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-18.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8659 + components: + - rot: -1.5707963267948966 rad + pos: -24.5,-18.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8660 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-18.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8661 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-18.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8662 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-18.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8663 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-18.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8664 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-17.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8669 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-18.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8670 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-18.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8671 + components: + - pos: -29.5,-23.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8672 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-24.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8673 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-24.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8676 + components: + - pos: -24.5,-26.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8677 + components: + - pos: -24.5,-27.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8678 + components: + - pos: -24.5,-28.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8684 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-15.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8685 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,-15.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8686 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-16.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8687 + components: + - rot: 3.141592653589793 rad + pos: -37.5,-17.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8689 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-18.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8690 + components: + - rot: 1.5707963267948966 rad + pos: -14.5,-18.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8691 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-18.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8694 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-31.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8695 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-31.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8696 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-31.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8697 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-31.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8701 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-27.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8702 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-27.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8703 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-27.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8704 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-27.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8706 + components: + - pos: -16.5,-20.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8707 + components: + - pos: -16.5,-21.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8710 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-22.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8711 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-22.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8712 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-22.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8713 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-22.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8744 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-4.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8745 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-3.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8746 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-2.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8747 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-1.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8748 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8749 + components: + - rot: 3.141592653589793 rad + pos: 7.5,0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8774 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-28.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8775 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-28.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8776 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-28.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8777 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-28.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8779 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-28.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8786 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,-26.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8787 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-26.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8788 + components: + - pos: 12.5,-25.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8791 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-29.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8850 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,-13.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8851 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,-13.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8926 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8928 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8930 + components: + - rot: -1.5707963267948966 rad + pos: -43.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8931 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8932 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8935 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8936 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8937 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8938 + components: + - pos: -51.5,-7.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8939 + components: + - pos: -51.5,-8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8940 + components: + - pos: -51.5,-9.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8941 + components: + - pos: -51.5,-10.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8942 + components: + - pos: -51.5,-11.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8943 + components: + - pos: -51.5,-12.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8944 + components: + - pos: -51.5,-13.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8945 + components: + - pos: -51.5,-14.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8947 + components: + - pos: -51.5,-16.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8948 + components: + - pos: -51.5,-17.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8949 + components: + - pos: -51.5,-18.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8953 + components: + - rot: 3.141592653589793 rad + pos: -50.5,-15.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8954 + components: + - rot: 3.141592653589793 rad + pos: -50.5,-16.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8955 + components: + - rot: 3.141592653589793 rad + pos: -50.5,-17.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8956 + components: + - rot: 3.141592653589793 rad + pos: -50.5,-18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8957 + components: + - rot: 3.141592653589793 rad + pos: -50.5,-19.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8960 + components: + - pos: -52.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8966 + components: + - rot: 1.5707963267948966 rad + pos: -47.5,-8.5 + parent: 2 + type: Transform + - uid: 9112 + components: + - pos: 12.5,26.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 9113 + components: + - pos: 12.5,27.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 9155 + components: + - pos: -40.5,-7.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 9157 + components: + - pos: -42.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 9158 + components: + - pos: -42.5,-4.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 9159 + components: + - pos: -42.5,-3.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 9163 + components: + - rot: -1.5707963267948966 rad + pos: -48.5,1.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 9164 + components: + - rot: 3.141592653589793 rad + pos: -51.5,0.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 9165 + components: + - rot: 3.141592653589793 rad + pos: -47.5,0.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 9168 + components: + - pos: -47.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 9169 + components: + - pos: -47.5,-4.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 9170 + components: + - pos: -47.5,-3.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 9171 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 9172 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 9240 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-9.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 9241 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-10.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 9242 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-11.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 9243 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-12.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 9244 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-13.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 9245 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-14.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 9246 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-15.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 9298 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-28.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 9299 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-28.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 9300 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,-28.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 9417 + components: + - pos: 46.5,-9.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 9418 + components: + - rot: -1.5707963267948966 rad + pos: 47.5,-10.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 9419 + components: + - rot: -1.5707963267948966 rad + pos: 48.5,-10.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 9420 + components: + - rot: -1.5707963267948966 rad + pos: 49.5,-10.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 9421 + components: + - rot: 3.141592653589793 rad + pos: 46.5,-11.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 9422 + components: + - rot: 3.141592653589793 rad + pos: 46.5,-12.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 9423 + components: + - rot: 3.141592653589793 rad + pos: 46.5,-13.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 9424 + components: + - rot: 3.141592653589793 rad + pos: 46.5,-14.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 9502 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 9503 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-19.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 9504 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-20.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 9505 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-21.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 9506 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-22.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 9507 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-23.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 9508 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-24.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 9509 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-25.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 9510 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-26.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 9511 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-27.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 9512 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-28.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 9513 + components: + - rot: 3.141592653589793 rad + pos: 16.5,-29.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 9515 + components: + - pos: 17.5,-30.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 9516 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-30.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 9517 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-30.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 9518 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-30.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 9519 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-30.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 9622 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-18.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 9623 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-18.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 9953 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,-15.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 10857 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,9.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 10858 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,9.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 10861 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,20.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 10862 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,20.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 10863 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,20.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 10864 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,20.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 10865 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,20.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 10866 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,20.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 10867 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,20.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 10868 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,20.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 10869 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,20.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 734 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,4.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 759 + components: + - pos: 23.5,3.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 766 + components: + - rot: 3.141592653589793 rad + pos: 19.5,4.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 853 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,18.5 + parent: 2 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 958 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,18.5 + parent: 2 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 1227 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,20.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 1961 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,15.5 + parent: 2 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 1966 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,13.5 + parent: 2 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 1968 + components: + - rot: 3.141592653589793 rad + pos: 19.5,12.5 + parent: 2 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 1993 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,15.5 + parent: 2 + type: Transform + - color: '#0099FFFF' + type: AtmosPipeColor + - uid: 2000 + components: + - rot: 3.141592653589793 rad + pos: 21.5,12.5 + parent: 2 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 2031 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,15.5 + parent: 2 + type: Transform + - color: '#FF6600FF' + type: AtmosPipeColor + - uid: 2041 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,18.5 + parent: 2 + type: Transform + - color: '#FF6600FF' + type: AtmosPipeColor + - uid: 2045 + components: + - rot: 3.141592653589793 rad + pos: 26.5,15.5 + parent: 2 + type: Transform + - color: '#FF6600FF' + type: AtmosPipeColor + - uid: 2047 + components: + - rot: 3.141592653589793 rad + pos: 27.5,12.5 + parent: 2 + type: Transform + - color: '#FF6600FF' + type: AtmosPipeColor + - uid: 2048 + components: + - rot: 3.141592653589793 rad + pos: 28.5,12.5 + parent: 2 + type: Transform + - color: '#FF6600FF' + type: AtmosPipeColor + - uid: 2049 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,19.5 + parent: 2 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 2053 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,14.5 + parent: 2 + type: Transform + - color: '#FF6600FF' + type: AtmosPipeColor + - uid: 2055 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,14.5 + parent: 2 + type: Transform + - color: '#FF6600FF' + type: AtmosPipeColor + - uid: 2080 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,19.5 + parent: 2 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 2082 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,13.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 2222 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-23.5 + parent: 2 + type: Transform + - uid: 2223 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-23.5 + parent: 2 + type: Transform + - uid: 2225 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-25.5 + parent: 2 + type: Transform + - uid: 2961 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 2962 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-18.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 3289 + components: + - rot: 3.141592653589793 rad + pos: 14.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 3363 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-15.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 3374 + components: + - rot: -1.5707963267948966 rad + pos: 16.5,-17.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 3410 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,-14.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 3412 + components: + - rot: 3.141592653589793 rad + pos: 12.5,25.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 3413 + components: + - pos: -31.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 3428 + components: + - pos: -14.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 3430 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-0.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 3482 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 3496 + components: + - pos: -33.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 3497 + components: + - rot: 3.141592653589793 rad + pos: -36.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 3569 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,-8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 3697 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-28.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 4025 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,3.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7009 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7011 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,-1.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7015 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7019 + components: + - pos: 24.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7024 + components: + - pos: 29.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7028 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7030 + components: + - pos: 35.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7037 + components: + - rot: 3.141592653589793 rad + pos: 42.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7056 + components: + - pos: 47.5,-0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7060 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-0.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7069 + components: + - rot: 3.141592653589793 rad + pos: 22.5,-6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7070 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7089 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7110 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7113 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,-10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7120 + components: + - rot: -1.5707963267948966 rad + pos: 30.5,-15.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7121 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7146 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-16.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7147 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-17.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7148 + components: + - pos: 19.5,-24.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7153 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-22.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7154 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-23.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7167 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-13.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7178 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-24.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7182 + components: + - pos: 25.5,-19.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7190 + components: + - pos: 28.5,-19.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7191 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-19.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7192 + components: + - pos: 33.5,-19.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7212 + components: + - pos: 34.5,-18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7260 + components: + - pos: 25.5,-23.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7272 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-26.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7276 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-28.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7281 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-29.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7282 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-31.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7288 + components: + - rot: 3.141592653589793 rad + pos: 39.5,-18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7294 + components: + - pos: 12.5,-6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7310 + components: + - rot: 3.141592653589793 rad + pos: 42.5,-6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7327 + components: + - pos: 30.5,-0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7328 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-3.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7338 + components: + - rot: 3.141592653589793 rad + pos: 26.5,-0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7342 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7364 + components: + - rot: 3.141592653589793 rad + pos: 36.5,6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7384 + components: + - pos: 29.5,11.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7404 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,1.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7414 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7417 + components: + - rot: 3.141592653589793 rad + pos: 35.5,8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7422 + components: + - rot: 3.141592653589793 rad + pos: 39.5,8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7441 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,16.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7453 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,3.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7463 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,10.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7473 + components: + - pos: 14.5,14.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7475 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,16.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7480 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,18.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7481 + components: + - rot: 3.141592653589793 rad + pos: 15.5,18.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7515 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7522 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,0.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7539 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7542 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,3.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7543 + components: + - rot: 3.141592653589793 rad + pos: 6.5,0.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7549 + components: + - rot: 3.141592653589793 rad + pos: 2.5,0.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7550 + components: + - rot: 3.141592653589793 rad + pos: 0.5,0.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7556 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7561 + components: + - pos: 2.5,11.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7564 + components: + - rot: 3.141592653589793 rad + pos: 0.5,11.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7581 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,22.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7584 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,25.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7598 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,11.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7614 + components: + - pos: -3.5,18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7615 + components: + - pos: -6.5,18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7616 + components: + - pos: -11.5,18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7635 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7636 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,7.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7642 + components: + - rot: 3.141592653589793 rad + pos: -7.5,10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7644 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7649 + components: + - rot: 3.141592653589793 rad + pos: -6.5,0.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7656 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-0.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7657 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,2.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7670 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7671 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7691 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-17.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7698 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-17.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7704 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-21.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7707 + components: + - pos: 6.5,-17.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7710 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,-17.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7714 + components: + - pos: 1.5,-17.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7725 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-27.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7737 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-27.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7745 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7746 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-5.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7751 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7752 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-11.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7755 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-14.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7759 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7763 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-22.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7765 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-24.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7771 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,-30.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7780 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-30.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7812 + components: + - pos: -23.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7819 + components: + - rot: 3.141592653589793 rad + pos: -30.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7828 + components: + - rot: 3.141592653589793 rad + pos: -39.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7829 + components: + - pos: -40.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7843 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7847 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-13.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7862 + components: + - pos: -23.5,-23.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7864 + components: + - pos: -22.5,-19.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7869 + components: + - rot: 3.141592653589793 rad + pos: -28.5,-23.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7891 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7895 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-14.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7896 + components: + - pos: -33.5,-10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7907 + components: + - pos: -39.5,-10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7917 + components: + - pos: -50.5,-4.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7918 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,-8.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7926 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,-13.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7953 + components: + - pos: -30.5,0.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7959 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-0.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7964 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,3.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7966 + components: + - pos: -22.5,5.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7968 + components: + - rot: 3.141592653589793 rad + pos: -23.5,5.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7980 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,5.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7982 + components: + - pos: -30.5,9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7988 + components: + - rot: 3.141592653589793 rad + pos: -33.5,9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8008 + components: + - pos: -44.5,9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8009 + components: + - pos: -47.5,9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8023 + components: + - rot: 3.141592653589793 rad + pos: -52.5,9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8039 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8040 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8067 + components: + - rot: 3.141592653589793 rad + pos: -21.5,17.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8069 + components: + - rot: 3.141592653589793 rad + pos: -19.5,17.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8077 + components: + - pos: -23.5,17.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8079 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,11.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8097 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-29.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8098 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-22.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8127 + components: + - rot: -1.5707963267948966 rad + pos: 46.5,-1.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8142 + components: + - pos: 45.5,-9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8166 + components: + - pos: 11.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8170 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8180 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,-11.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8185 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-16.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8197 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-16.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8202 + components: + - pos: 2.5,-16.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8213 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-22.5 + parent: 2 + type: Transform + - uid: 8221 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-29.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8222 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-26.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8232 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-11.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8233 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-11.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8244 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-11.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8262 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-22.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8276 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-17.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8277 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-9.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8278 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8301 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8302 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,1.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8317 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,13.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8322 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,14.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8327 + components: + - pos: -8.5,17.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8336 + components: + - rot: 3.141592653589793 rad + pos: 1.5,1.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8340 + components: + - rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8347 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,5.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8356 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,9.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8387 + components: + - pos: -18.5,18.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8390 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,16.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8392 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,14.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8397 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,18.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8399 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,16.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8415 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,16.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8420 + components: + - rot: -1.5707963267948966 rad + pos: -28.5,17.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8433 + components: + - rot: 3.141592653589793 rad + pos: -31.5,17.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8434 + components: + - rot: 3.141592653589793 rad + pos: -34.5,17.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8435 + components: + - rot: 3.141592653589793 rad + pos: -37.5,17.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8442 + components: + - rot: 3.141592653589793 rad + pos: -38.5,17.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8449 + components: + - rot: 3.141592653589793 rad + pos: -43.5,17.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8457 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,12.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8462 + components: + - rot: 3.141592653589793 rad + pos: -46.5,8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8463 + components: + - pos: -45.5,8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8464 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,7.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8468 + components: + - rot: 3.141592653589793 rad + pos: -49.5,8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8482 + components: + - pos: -38.5,8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8483 + components: + - rot: 3.141592653589793 rad + pos: -36.5,8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8492 + components: + - rot: 3.141592653589793 rad + pos: -28.5,8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8493 + components: + - pos: -33.5,8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8506 + components: + - rot: 3.141592653589793 rad + pos: -23.5,9.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8507 + components: + - pos: -21.5,9.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8527 + components: + - pos: -19.5,4.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8535 + components: + - rot: 3.141592653589793 rad + pos: -21.5,0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8540 + components: + - rot: -1.5707963267948966 rad + pos: -25.5,-0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8543 + components: + - rot: 3.141592653589793 rad + pos: -28.5,-0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8548 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8550 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-1.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8564 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-1.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8576 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8590 + components: + - pos: -27.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8601 + components: + - rot: 3.141592653589793 rad + pos: -25.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8602 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8607 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-9.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8608 + components: + - pos: -26.5,-9.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8613 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-14.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8615 + components: + - pos: -27.5,-15.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8616 + components: + - pos: -34.5,-15.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8630 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,-18.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8634 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-22.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8636 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-24.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8647 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,-22.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8650 + components: + - pos: -29.5,-22.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8654 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-18.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8666 + components: + - rot: 3.141592653589793 rad + pos: -19.5,-18.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8675 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-25.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8693 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-31.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8778 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-28.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8780 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,-28.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8927 + components: + - pos: -40.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8929 + components: + - rot: 3.141592653589793 rad + pos: -42.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8933 + components: + - pos: -46.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8934 + components: + - rot: 3.141592653589793 rad + pos: -47.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8958 + components: + - pos: -51.5,-6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8964 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,-8.5 + parent: 2 + type: Transform + - uid: 9416 + components: + - rot: 1.5707963267948966 rad + pos: 46.5,-10.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor +- proto: GasPort + entities: + - uid: 465 + components: + - rot: 3.141592653589793 rad + pos: 27.5,14.5 + parent: 2 + type: Transform + - color: '#FF00FFFF' + type: AtmosPipeColor + - uid: 765 + components: + - rot: 3.141592653589793 rad + pos: 23.5,2.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 1929 + components: + - rot: 3.141592653589793 rad + pos: 17.5,3.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 1975 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,13.5 + parent: 2 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 2002 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,14.5 + parent: 2 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 2057 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,13.5 + parent: 2 + type: Transform + - color: '#FF6600FF' + type: AtmosPipeColor + - uid: 2058 + components: + - pos: 30.5,15.5 + parent: 2 + type: Transform + - color: '#FF6600FF' + type: AtmosPipeColor + - uid: 2220 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-25.5 + parent: 2 + type: Transform + - uid: 2842 + components: + - pos: -41.5,7.5 + parent: 2 + type: Transform + - uid: 3809 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-14.5 + parent: 2 + type: Transform + - uid: 3810 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-12.5 + parent: 2 + type: Transform + - uid: 9520 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-30.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor +- proto: GasPressurePump + entities: + - uid: 737 + components: + - pos: 20.5,3.5 + parent: 2 + type: Transform + - targetPressure: 200 + type: GasPressurePump + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 750 + components: + - rot: 3.141592653589793 rad + pos: 21.5,6.5 + parent: 2 + type: Transform + - targetPressure: 4500 + type: GasPressurePump + - uid: 751 + components: + - rot: 3.141592653589793 rad + pos: 23.5,6.5 + parent: 2 + type: Transform + - targetPressure: 4500 + type: GasPressurePump + - uid: 1963 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,15.5 + parent: 2 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 1969 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,12.5 + parent: 2 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 2050 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,12.5 + parent: 2 + type: Transform + - color: '#FF6600FF' + type: AtmosPipeColor + - uid: 2051 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,14.5 + parent: 2 + type: Transform + - color: '#FF6600FF' + type: AtmosPipeColor + - uid: 2088 + components: + - rot: 3.141592653589793 rad + pos: 27.5,16.5 + parent: 2 + type: Transform + - color: '#FF00FFFF' + type: AtmosPipeColor + - uid: 2229 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,-25.5 + parent: 2 + type: Transform + - uid: 3811 + components: + - rot: 1.5707963267948966 rad + pos: -22.5,-14.5 + parent: 2 + type: Transform + - uid: 3812 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-12.5 + parent: 2 + type: Transform + - uid: 4028 + components: + - rot: 3.141592653589793 rad + pos: -43.5,6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 4622 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,4.5 + parent: 2 + type: Transform + - targetPressure: 4500 + type: GasPressurePump + - color: '#0088FFFF' + type: AtmosPipeColor +- proto: GasThermoMachineFreezer + entities: + - uid: 2083 + components: + - pos: 21.5,13.5 + parent: 2 + type: Transform +- proto: GasThermoMachineFreezerEnabled + entities: + - uid: 631 + components: + - pos: 18.5,-22.5 + parent: 2 + type: Transform + - uid: 4027 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-21.5 + parent: 2 + type: Transform + - uid: 8965 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,-8.5 + parent: 2 + type: Transform +- proto: GasThermoMachineHeaterEnabled + entities: + - uid: 741 + components: + - pos: 19.5,6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 2297 + components: + - pos: 27.5,13.5 + parent: 2 + type: Transform +- proto: GasValve + entities: + - uid: 904 + components: + - pos: 23.5,16.5 + parent: 2 + type: Transform + - open: False + type: GasValve + - color: '#0099FFFF' + type: AtmosPipeColor + - uid: 1962 + components: + - pos: 19.5,14.5 + parent: 2 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 2037 + components: + - pos: 26.5,16.5 + parent: 2 + type: Transform + - open: False + type: GasValve + - color: '#FF6600FF' + type: AtmosPipeColor + - uid: 2038 + components: + - pos: 28.5,16.5 + parent: 2 + type: Transform + - color: '#FF6600FF' + type: AtmosPipeColor + - uid: 2052 + components: + - pos: 28.5,13.5 + parent: 2 + type: Transform + - color: '#FF6600FF' + type: AtmosPipeColor + - uid: 2843 + components: + - pos: -41.5,6.5 + parent: 2 + type: Transform + - open: False + type: GasValve +- proto: GasVentPump + entities: + - uid: 1371 + components: + - pos: 1.5,10.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9854 + - 9574 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 3723 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-31.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 3782 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,-18.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9796 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7102 + components: + - pos: 19.5,-0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10119 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7126 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-8.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9811 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7173 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-20.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9796 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7180 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-24.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9812 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7181 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-13.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9796 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7189 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-19.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 2603 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7196 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-8.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9811 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7206 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,-23.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 2603 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7235 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,-23.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 2603 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7243 + components: + - pos: 31.5,-25.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9816 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7244 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-26.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9816 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7245 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-30.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9816 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7255 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-20.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9796 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7280 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-31.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7283 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-29.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9813 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7293 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-33.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7301 + components: + - rot: 3.141592653589793 rad + pos: 47.5,-1.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7302 + components: + - rot: -1.5707963267948966 rad + pos: 49.5,-0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7303 + components: + - pos: 48.5,-4.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9961 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7311 + components: + - pos: 42.5,-4.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7312 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10787 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7321 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7329 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-1.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7331 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9836 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7333 + components: + - pos: 26.5,4.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9836 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7406 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,1.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7407 + components: + - pos: 33.5,11.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9837 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7418 + components: + - pos: 41.5,9.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9837 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7419 + components: + - pos: 35.5,9.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9837 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7442 + components: + - rot: 3.141592653589793 rad + pos: 32.5,15.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9842 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7443 + components: + - pos: 32.5,19.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9842 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7459 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-2.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7472 + components: + - pos: 16.5,16.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9842 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7474 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,16.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7482 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,18.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7483 + components: + - pos: 15.5,25.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7495 + components: + - rot: 3.141592653589793 rad + pos: 9.5,16.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7500 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,19.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7505 + components: + - pos: 9.5,24.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7508 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9768 + - 9779 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 7509 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,10.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 3401 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8171 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8191 + components: + - pos: 5.5,-10.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9779 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8192 + components: + - pos: 9.5,-14.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9786 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8193 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,-16.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9788 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8205 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-16.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8209 + components: + - pos: 4.5,-21.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9786 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8215 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-23.5 + parent: 2 + type: Transform + - uid: 8223 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-26.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9891 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8226 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-29.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9891 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8227 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-31.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8241 + components: + - pos: 0.5,-8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8242 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-9.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9877 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8243 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-17.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9884 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8275 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-28.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9891 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8295 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-10.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9877 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8296 + components: + - pos: -12.5,-0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8300 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-2.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9864 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8316 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,13.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9714 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8323 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,14.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9715 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8342 + components: + - rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9864 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8343 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,4.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9714 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8357 + components: + - pos: 1.5,6.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8365 + components: + - pos: 0.5,16.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8370 + components: + - rot: 3.141592653589793 rad + pos: -2.5,16.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9715 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8389 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,16.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9927 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8393 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,14.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9927 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8402 + components: + - rot: 3.141592653589793 rad + pos: -22.5,15.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9927 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8403 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,19.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9927 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8419 + components: + - rot: 3.141592653589793 rad + pos: -28.5,12.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8423 + components: + - pos: -28.5,20.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8424 + components: + - pos: -31.5,20.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8425 + components: + - pos: -34.5,20.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8426 + components: + - pos: -37.5,20.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8443 + components: + - pos: -38.5,18.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8444 + components: + - pos: -43.5,18.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8459 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,12.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9946 + - 9952 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8460 + components: + - rot: -1.5707963267948966 rad + pos: -44.5,7.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9946 + - 9952 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8461 + components: + - pos: -49.5,10.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9946 + - 9952 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8481 + components: + - rot: 3.141592653589793 rad + pos: -38.5,4.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8487 + components: + - pos: -36.5,11.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8489 + components: + - rot: 3.141592653589793 rad + pos: -34.5,7.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9932 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8490 + components: + - pos: -34.5,11.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8491 + components: + - pos: -28.5,9.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9932 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8512 + components: + - pos: -23.5,13.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9927 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8513 + components: + - rot: 3.141592653589793 rad + pos: -21.5,8.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9927 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8525 + components: + - rot: 3.141592653589793 rad + pos: -19.5,3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9932 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8534 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9943 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8544 + components: + - pos: -28.5,0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9943 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8549 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-2.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9943 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8566 + components: + - pos: -38.5,0.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8579 + components: + - pos: -15.5,-3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9915 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8617 + components: + - rot: 3.141592653589793 rad + pos: -27.5,-10.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8618 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-9.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8621 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-14.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8638 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-18.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10122 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8639 + components: + - rot: -1.5707963267948966 rad + pos: -33.5,-24.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10122 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8640 + components: + - rot: 3.141592653589793 rad + pos: -34.5,-26.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10122 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8641 + components: + - rot: 3.141592653589793 rad + pos: -29.5,-24.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10122 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8665 + components: + - pos: -19.5,-16.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8667 + components: + - pos: -16.5,-17.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8679 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-29.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8681 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,-25.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9894 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8688 + components: + - rot: 1.5707963267948966 rad + pos: -38.5,-18.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8692 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-18.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8698 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-31.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9890 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8700 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-22.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9890 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8705 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-27.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8709 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-22.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8754 + components: + - pos: 5.5,2.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9768 + - 9779 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8773 + components: + - pos: 19.5,-27.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8789 + components: + - pos: 12.5,-24.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8794 + components: + - pos: 14.5,-29.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8951 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,-19.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8961 + components: + - pos: -52.5,-4.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9952 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 8963 + components: + - rot: 3.141592653589793 rad + pos: -46.5,-9.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9956 + type: DeviceNetwork + - uid: 8968 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-7.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9915 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 9153 + components: + - pos: -36.5,-5.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9952 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 9154 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,-8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 9161 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,-2.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 9167 + components: + - pos: -47.5,-2.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 9173 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 9247 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-16.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 9414 + components: + - rot: -1.5707963267948966 rad + pos: 50.5,-10.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9961 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 9415 + components: + - rot: 3.141592653589793 rad + pos: 46.5,-15.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9961 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 9954 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,-15.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9951 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 10116 + components: + - pos: 25.5,-4.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10119 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 10117 + components: + - rot: 1.5707963267948966 rad + pos: 13.5,-4.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10119 + type: DeviceNetwork + - color: '#0088FFFF' + type: AtmosPipeColor + - uid: 10860 + components: + - rot: 3.141592653589793 rad + pos: -15.5,8.5 + parent: 2 + type: Transform + - color: '#0088FFFF' + type: AtmosPipeColor +- proto: GasVentScrubber + entities: + - uid: 2844 + components: + - pos: 11.5,-29.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 3974 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-14.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9951 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7066 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-11.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9796 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7067 + components: + - pos: 15.5,-5.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10119 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7068 + components: + - pos: 22.5,-5.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10119 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7071 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7072 + components: + - pos: 30.5,-5.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10787 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7091 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-11.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9796 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7101 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10119 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7108 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-9.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9811 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7111 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-15.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9796 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7112 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-18.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9796 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7134 + components: + - rot: 3.141592653589793 rad + pos: 35.5,-12.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9811 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7141 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-17.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9796 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7156 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,-22.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9812 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7207 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-22.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 2603 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7209 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-22.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 2603 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7213 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-33.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7250 + components: + - rot: -1.5707963267948966 rad + pos: 36.5,-28.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9816 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7254 + components: + - pos: 25.5,-15.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9796 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7270 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-26.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9816 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7271 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-30.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7289 + components: + - pos: 40.5,-17.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7339 + components: + - rot: 3.141592653589793 rad + pos: 24.5,2.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9836 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7344 + components: + - rot: 3.141592653589793 rad + pos: 34.5,-5.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10787 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7345 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,0.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7346 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,0.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7355 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,6.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9837 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7356 + components: + - pos: 34.5,8.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9837 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7374 + components: + - pos: 36.5,12.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9837 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7385 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,11.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9842 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7386 + components: + - pos: 31.5,15.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9842 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7533 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9768 + - 9779 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7534 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,10.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 3401 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7535 + components: + - pos: 8.5,16.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7544 + components: + - pos: 6.5,1.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9768 + - 9779 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7565 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,6.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7566 + components: + - pos: 0.5,1.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9864 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7568 + components: + - pos: 0.5,12.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7587 + components: + - pos: 4.5,26.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7588 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,25.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7597 + components: + - rot: -1.5707963267948966 rad + pos: 7.5,22.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7610 + components: + - rot: 3.141592653589793 rad + pos: -6.5,17.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9715 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7611 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7612 + components: + - rot: 3.141592653589793 rad + pos: -13.5,14.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9715 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7613 + components: + - rot: 3.141592653589793 rad + pos: -11.5,17.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9715 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7629 + components: + - rot: 3.141592653589793 rad + pos: -3.5,5.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9714 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7637 + components: + - pos: -7.5,12.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9714 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7643 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,7.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9714 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7648 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7663 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,2.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9864 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7666 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7668 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-8.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9779 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7669 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-11.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9779 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7682 + components: + - pos: -0.5,-8.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7699 + components: + - pos: 12.5,-16.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9788 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7705 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-22.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9786 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7706 + components: + - pos: 5.5,-15.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9786 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7708 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-18.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9786 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7719 + components: + - pos: -3.5,-16.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7720 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-22.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7727 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-27.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9891 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7774 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-33.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9890 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7775 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-24.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9890 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7782 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,-30.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7785 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-18.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7786 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,-11.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9877 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7796 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-5.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9877 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7797 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-14.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9884 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7852 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-9.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7853 + components: + - rot: -1.5707963267948966 rad + pos: -22.5,-13.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7854 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-19.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7855 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-24.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9894 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7876 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-23.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10122 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7884 + components: + - rot: 3.141592653589793 rad + pos: -33.5,-28.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10122 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7885 + components: + - pos: -28.5,-20.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10122 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7890 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-18.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 10122 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7897 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-14.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7898 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7908 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,-10.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7913 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,-15.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7927 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,-13.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9956 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7929 + components: + - rot: 1.5707963267948966 rad + pos: -51.5,-8.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9952 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7930 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-5.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9952 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7933 + components: + - pos: -39.5,-1.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7951 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9943 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7952 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9943 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7955 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-0.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9943 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7963 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,3.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9932 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7967 + components: + - pos: -23.5,8.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9927 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7977 + components: + - rot: 3.141592653589793 rad + pos: -30.5,4.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9932 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7978 + components: + - rot: 3.141592653589793 rad + pos: -37.5,5.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7979 + components: + - pos: -37.5,12.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 7981 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,9.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9932 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8007 + components: + - pos: -43.5,12.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9946 + - 9952 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8010 + components: + - rot: 3.141592653589793 rad + pos: -44.5,8.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9946 + - 9952 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8011 + components: + - rot: 3.141592653589793 rad + pos: -47.5,8.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9946 + - 9952 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8021 + components: + - pos: -52.5,12.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8022 + components: + - rot: 3.141592653589793 rad + pos: -53.5,8.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8045 + components: + - pos: -36.5,20.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8046 + components: + - pos: -33.5,20.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8047 + components: + - pos: -30.5,20.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8048 + components: + - pos: -27.5,20.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8058 + components: + - rot: 3.141592653589793 rad + pos: -30.5,15.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8059 + components: + - rot: 3.141592653589793 rad + pos: -36.5,16.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8062 + components: + - rot: 3.141592653589793 rad + pos: -23.5,16.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9927 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8078 + components: + - pos: -19.5,18.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9927 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8090 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,11.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9927 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8095 + components: + - pos: -13.5,-27.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8108 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-22.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8111 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-29.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8113 + components: + - pos: 0.5,-26.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9891 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8117 + components: + - pos: 5.5,-26.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9891 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8118 + components: + - pos: 42.5,-5.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8144 + components: + - rot: 3.141592653589793 rad + pos: 45.5,-11.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9961 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8149 + components: + - pos: 49.5,-7.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9961 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8151 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,-1.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8152 + components: + - rot: -1.5707963267948966 rad + pos: 49.5,0.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8157 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-24.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 2603 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8409 + components: + - rot: 3.141592653589793 rad + pos: -24.5,19.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9927 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8714 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,-22.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8952 + components: + - rot: 3.141592653589793 rad + pos: -50.5,-20.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8967 + components: + - rot: 3.141592653589793 rad + pos: -31.5,-5.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9915 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8969 + components: + - rot: 3.141592653589793 rad + pos: -14.5,-5.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9915 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 8970 + components: + - rot: 3.141592653589793 rad + pos: -22.5,-5.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9915 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 9111 + components: + - rot: -1.5707963267948966 rad + pos: 13.5,28.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 9162 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,-0.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 9166 + components: + - rot: 3.141592653589793 rad + pos: -47.5,-0.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 9295 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-28.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9816 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 9297 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,-28.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9813 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 9501 + components: + - pos: 16.5,-16.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 9788 + type: DeviceNetwork + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 10384 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,13.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor + - uid: 10870 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,20.5 + parent: 2 + type: Transform + - color: '#FF8800FF' + type: AtmosPipeColor +- proto: GasVolumePump + entities: + - uid: 956 + components: + - rot: 3.141592653589793 rad + pos: 21.5,16.5 + parent: 2 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 1959 + components: + - pos: 19.5,16.5 + parent: 2 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 1995 + components: + - pos: 25.5,14.5 + parent: 2 + type: Transform + - color: '#FF6600FF' + type: AtmosPipeColor + - uid: 1999 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,12.5 + parent: 2 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 2028 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,12.5 + parent: 2 + type: Transform + - color: '#FF6600FF' + type: AtmosPipeColor +- proto: Gauze + entities: + - uid: 3927 + components: + - pos: -24.61474,17.47948 + parent: 2 + type: Transform + - uid: 4629 + components: + - pos: 28.43166,-20.443384 + parent: 2 + type: Transform +- proto: GlimmerProber + entities: + - uid: 2537 + components: + - pos: -28.5,-27.5 + parent: 2 + type: Transform +- proto: GravityGenerator + entities: + - uid: 2726 + components: + - pos: 39.5,1.5 + parent: 2 + type: Transform +- proto: Grille + entities: + - uid: 7 + components: + - pos: -4.5,-9.5 + parent: 2 + type: Transform + - uid: 8 + components: + - pos: -3.5,-9.5 + parent: 2 + type: Transform + - uid: 9 + components: + - pos: -2.5,-9.5 + parent: 2 + type: Transform + - uid: 14 + components: + - pos: 2.5,-9.5 + parent: 2 + type: Transform + - uid: 15 + components: + - pos: 3.5,-9.5 + parent: 2 + type: Transform + - uid: 16 + components: + - pos: 4.5,-9.5 + parent: 2 + type: Transform + - uid: 17 + components: + - pos: 5.5,-8.5 + parent: 2 + type: Transform + - uid: 18 + components: + - pos: 5.5,-7.5 + parent: 2 + type: Transform + - uid: 23 + components: + - pos: 5.5,-2.5 + parent: 2 + type: Transform + - uid: 24 + components: + - pos: 5.5,-1.5 + parent: 2 + type: Transform + - uid: 26 + components: + - pos: 3.5,-0.5 + parent: 2 + type: Transform + - uid: 27 + components: + - pos: 2.5,-0.5 + parent: 2 + type: Transform + - uid: 28 + components: + - pos: 1.5,-0.5 + parent: 2 + type: Transform + - uid: 31 + components: + - pos: -1.5,-0.5 + parent: 2 + type: Transform + - uid: 32 + components: + - pos: -2.5,-0.5 + parent: 2 + type: Transform + - uid: 33 + components: + - pos: -3.5,-0.5 + parent: 2 + type: Transform + - uid: 35 + components: + - pos: -5.5,-1.5 + parent: 2 + type: Transform + - uid: 36 + components: + - pos: -5.5,-2.5 + parent: 2 + type: Transform + - uid: 41 + components: + - pos: -5.5,-7.5 + parent: 2 + type: Transform + - uid: 42 + components: + - pos: -5.5,-8.5 + parent: 2 + type: Transform + - uid: 100 + components: + - pos: 9.5,-5.5 + parent: 2 + type: Transform + - uid: 105 + components: + - pos: -9.5,-9.5 + parent: 2 + type: Transform + - uid: 106 + components: + - pos: -9.5,-10.5 + parent: 2 + type: Transform + - uid: 107 + components: + - pos: -9.5,-8.5 + parent: 2 + type: Transform + - uid: 123 + components: + - pos: -8.5,-3.5 + parent: 2 + type: Transform + - uid: 132 + components: + - pos: -6.5,4.5 + parent: 2 + type: Transform + - uid: 147 + components: + - pos: -20.5,-7.5 + parent: 2 + type: Transform + - uid: 155 + components: + - pos: -19.5,-7.5 + parent: 2 + type: Transform + - uid: 183 + components: + - pos: -1.5,3.5 + parent: 2 + type: Transform + - uid: 193 + components: + - pos: -19.5,-11.5 + parent: 2 + type: Transform + - uid: 203 + components: + - pos: -13.5,-7.5 + parent: 2 + type: Transform + - uid: 224 + components: + - pos: 9.5,0.5 + parent: 2 + type: Transform + - uid: 225 + components: + - pos: 9.5,2.5 + parent: 2 + type: Transform + - uid: 231 + components: + - pos: 6.5,-3.5 + parent: 2 + type: Transform + - uid: 233 + components: + - pos: 8.5,-3.5 + parent: 2 + type: Transform + - uid: 241 + components: + - pos: -1.5,8.5 + parent: 2 + type: Transform + - uid: 256 + components: + - pos: 0.5,-18.5 + parent: 2 + type: Transform + - uid: 264 + components: + - pos: 10.5,-16.5 + parent: 2 + type: Transform + - uid: 280 + components: + - pos: 4.5,-20.5 + parent: 2 + type: Transform + - uid: 298 + components: + - pos: 9.5,-10.5 + parent: 2 + type: Transform + - uid: 302 + components: + - pos: -5.5,11.5 + parent: 2 + type: Transform + - uid: 303 + components: + - pos: -5.5,12.5 + parent: 2 + type: Transform + - uid: 323 + components: + - pos: 2.5,-13.5 + parent: 2 + type: Transform + - uid: 331 + components: + - pos: 9.5,-9.5 + parent: 2 + type: Transform + - uid: 332 + components: + - pos: 9.5,-8.5 + parent: 2 + type: Transform + - uid: 377 + components: + - pos: 12.5,-7.5 + parent: 2 + type: Transform + - uid: 417 + components: + - pos: 23.5,-0.5 + parent: 2 + type: Transform + - uid: 421 + components: + - pos: 20.5,-2.5 + parent: 2 + type: Transform + - uid: 422 + components: + - pos: 19.5,-2.5 + parent: 2 + type: Transform + - uid: 429 + components: + - pos: 20.5,2.5 + parent: 2 + type: Transform + - uid: 430 + components: + - pos: 21.5,2.5 + parent: 2 + type: Transform + - uid: 446 + components: + - pos: -2.5,8.5 + parent: 2 + type: Transform + - uid: 456 + components: + - pos: -51.5,-11.5 + parent: 2 + type: Transform + - uid: 457 + components: + - pos: -9.5,7.5 + parent: 2 + type: Transform + - uid: 459 + components: + - pos: -9.5,8.5 + parent: 2 + type: Transform + - uid: 477 + components: + - pos: 23.5,-8.5 + parent: 2 + type: Transform + - uid: 478 + components: + - pos: 22.5,-8.5 + parent: 2 + type: Transform + - uid: 479 + components: + - pos: 21.5,-8.5 + parent: 2 + type: Transform + - uid: 494 + components: + - pos: 29.5,-12.5 + parent: 2 + type: Transform + - uid: 513 + components: + - pos: 23.5,-25.5 + parent: 2 + type: Transform + - uid: 545 + components: + - pos: 8.5,-13.5 + parent: 2 + type: Transform + - uid: 574 + components: + - pos: -23.5,6.5 + parent: 2 + type: Transform + - uid: 599 + components: + - pos: -9.5,-19.5 + parent: 2 + type: Transform + - uid: 607 + components: + - pos: -18.5,-11.5 + parent: 2 + type: Transform + - uid: 653 + components: + - pos: 27.5,9.5 + parent: 2 + type: Transform + - uid: 692 + components: + - pos: -17.5,15.5 + parent: 2 + type: Transform + - uid: 702 + components: + - pos: -9.5,0.5 + parent: 2 + type: Transform + - uid: 710 + components: + - pos: 21.5,7.5 + parent: 2 + type: Transform + - uid: 711 + components: + - pos: 19.5,7.5 + parent: 2 + type: Transform + - uid: 717 + components: + - pos: 23.5,7.5 + parent: 2 + type: Transform + - uid: 857 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-31.5 + parent: 2 + type: Transform + - uid: 879 + components: + - pos: 32.5,12.5 + parent: 2 + type: Transform + - uid: 901 + components: + - pos: -2.5,-5.5 + parent: 2 + type: Transform + - uid: 902 + components: + - pos: 33.5,21.5 + parent: 2 + type: Transform + - uid: 908 + components: + - pos: 32.5,21.5 + parent: 2 + type: Transform + - uid: 916 + components: + - pos: -0.5,5.5 + parent: 2 + type: Transform + - uid: 917 + components: + - pos: -0.5,6.5 + parent: 2 + type: Transform + - uid: 928 + components: + - pos: -7.5,20.5 + parent: 2 + type: Transform + - uid: 929 + components: + - pos: -9.5,20.5 + parent: 2 + type: Transform + - uid: 936 + components: + - pos: 5.5,6.5 + parent: 2 + type: Transform + - uid: 960 + components: + - pos: 22.5,19.5 + parent: 2 + type: Transform + - uid: 969 + components: + - pos: -8.5,-29.5 + parent: 2 + type: Transform + - uid: 990 + components: + - pos: -20.5,-11.5 + parent: 2 + type: Transform + - uid: 997 + components: + - pos: -8.5,20.5 + parent: 2 + type: Transform + - uid: 1007 + components: + - pos: 2.5,17.5 + parent: 2 + type: Transform + - uid: 1009 + components: + - pos: 5.5,5.5 + parent: 2 + type: Transform + - uid: 1023 + components: + - pos: -10.5,20.5 + parent: 2 + type: Transform + - uid: 1033 + components: + - pos: -1.5,17.5 + parent: 2 + type: Transform + - uid: 1036 + components: + - pos: 9.5,12.5 + parent: 2 + type: Transform + - uid: 1038 + components: + - pos: -12.5,16.5 + parent: 2 + type: Transform + - uid: 1043 + components: + - pos: -21.5,21.5 + parent: 2 + type: Transform + - uid: 1056 + components: + - pos: -22.5,21.5 + parent: 2 + type: Transform + - uid: 1060 + components: + - pos: -11.5,16.5 + parent: 2 + type: Transform + - uid: 1063 + components: + - pos: -21.5,-14.5 + parent: 2 + type: Transform + - uid: 1084 + components: + - pos: 8.5,12.5 + parent: 2 + type: Transform + - uid: 1096 + components: + - pos: -20.5,1.5 + parent: 2 + type: Transform + - uid: 1102 + components: + - pos: -18.5,20.5 + parent: 2 + type: Transform + - uid: 1104 + components: + - pos: -22.5,14.5 + parent: 2 + type: Transform + - uid: 1107 + components: + - pos: -22.5,-3.5 + parent: 2 + type: Transform + - uid: 1110 + components: + - pos: 26.5,10.5 + parent: 2 + type: Transform + - uid: 1118 + components: + - pos: -20.5,18.5 + parent: 2 + type: Transform + - uid: 1125 + components: + - pos: -20.5,8.5 + parent: 2 + type: Transform + - uid: 1143 + components: + - pos: -17.5,20.5 + parent: 2 + type: Transform + - uid: 1153 + components: + - pos: -37.5,-7.5 + parent: 2 + type: Transform + - uid: 1156 + components: + - pos: 25.5,10.5 + parent: 2 + type: Transform + - uid: 1158 + components: + - pos: 36.5,1.5 + parent: 2 + type: Transform + - uid: 1165 + components: + - pos: 9.5,18.5 + parent: 2 + type: Transform + - uid: 1166 + components: + - pos: 10.5,29.5 + parent: 2 + type: Transform + - uid: 1168 + components: + - pos: 1.5,24.5 + parent: 2 + type: Transform + - uid: 1169 + components: + - pos: 1.5,23.5 + parent: 2 + type: Transform + - uid: 1183 + components: + - pos: 18.5,-19.5 + parent: 2 + type: Transform + - uid: 1209 + components: + - pos: -8.5,-20.5 + parent: 2 + type: Transform + - uid: 1210 + components: + - pos: -3.5,20.5 + parent: 2 + type: Transform + - uid: 1212 + components: + - pos: -21.5,-12.5 + parent: 2 + type: Transform + - uid: 1213 + components: + - pos: 11.5,-33.5 + parent: 2 + type: Transform + - uid: 1215 + components: + - pos: 13.5,-33.5 + parent: 2 + type: Transform + - uid: 1216 + components: + - pos: -26.5,17.5 + parent: 2 + type: Transform + - uid: 1231 + components: + - pos: -8.5,-34.5 + parent: 2 + type: Transform + - uid: 1237 + components: + - pos: -6.5,-20.5 + parent: 2 + type: Transform + - uid: 1242 + components: + - pos: -53.5,-12.5 + parent: 2 + type: Transform + - uid: 1243 + components: + - pos: -53.5,-10.5 + parent: 2 + type: Transform + - uid: 1249 + components: + - pos: -8.5,15.5 + parent: 2 + type: Transform + - uid: 1250 + components: + - pos: -6.5,15.5 + parent: 2 + type: Transform + - uid: 1275 + components: + - pos: -24.5,-15.5 + parent: 2 + type: Transform + - uid: 1284 + components: + - pos: -29.5,-8.5 + parent: 2 + type: Transform + - uid: 1285 + components: + - pos: -28.5,-8.5 + parent: 2 + type: Transform + - uid: 1292 + components: + - pos: -38.5,-7.5 + parent: 2 + type: Transform + - uid: 1298 + components: + - pos: -30.5,-16.5 + parent: 2 + type: Transform + - uid: 1308 + components: + - pos: -30.5,-8.5 + parent: 2 + type: Transform + - uid: 1309 + components: + - pos: -31.5,-8.5 + parent: 2 + type: Transform + - uid: 1323 + components: + - pos: -44.5,10.5 + parent: 2 + type: Transform + - uid: 1336 + components: + - pos: -10.5,-4.5 + parent: 2 + type: Transform + - uid: 1337 + components: + - pos: -10.5,-6.5 + parent: 2 + type: Transform + - uid: 1393 + components: + - pos: -15.5,-33.5 + parent: 2 + type: Transform + - uid: 1394 + components: + - pos: -34.5,-16.5 + parent: 2 + type: Transform + - uid: 1396 + components: + - pos: -35.5,-16.5 + parent: 2 + type: Transform + - uid: 1402 + components: + - pos: -42.5,10.5 + parent: 2 + type: Transform + - uid: 1418 + components: + - pos: -29.5,-25.5 + parent: 2 + type: Transform + - uid: 1437 + components: + - pos: -13.5,-33.5 + parent: 2 + type: Transform + - uid: 1453 + components: + - pos: -39.5,-13.5 + parent: 2 + type: Transform + - uid: 1454 + components: + - pos: -40.5,-13.5 + parent: 2 + type: Transform + - uid: 1470 + components: + - pos: -32.5,-3.5 + parent: 2 + type: Transform + - uid: 1474 + components: + - pos: -16.5,-33.5 + parent: 2 + type: Transform + - uid: 1475 + components: + - pos: -45.5,-7.5 + parent: 2 + type: Transform + - uid: 1481 + components: + - pos: -31.5,-3.5 + parent: 2 + type: Transform + - uid: 1482 + components: + - pos: -30.5,-3.5 + parent: 2 + type: Transform + - uid: 1501 + components: + - pos: -28.5,-16.5 + parent: 2 + type: Transform + - uid: 1509 + components: + - pos: -32.5,13.5 + parent: 2 + type: Transform + - uid: 1510 + components: + - pos: -11.5,-32.5 + parent: 2 + type: Transform + - uid: 1533 + components: + - pos: -23.5,1.5 + parent: 2 + type: Transform + - uid: 1545 + components: + - pos: -33.5,-3.5 + parent: 2 + type: Transform + - uid: 1549 + components: + - pos: -1.5,-8.5 + parent: 2 + type: Transform + - uid: 1550 + components: + - pos: 0.5,-3.5 + parent: 2 + type: Transform + - uid: 1552 + components: + - pos: -36.5,-7.5 + parent: 2 + type: Transform + - uid: 1553 + components: + - pos: -34.5,-11.5 + parent: 2 + type: Transform + - uid: 1607 + components: + - pos: -34.5,-9.5 + parent: 2 + type: Transform + - uid: 1636 + components: + - pos: 35.5,-23.5 + parent: 2 + type: Transform + - uid: 1674 + components: + - pos: 26.5,-11.5 + parent: 2 + type: Transform + - uid: 1675 + components: + - pos: 6.5,32.5 + parent: 2 + type: Transform + - uid: 1733 + components: + - pos: 36.5,-0.5 + parent: 2 + type: Transform + - uid: 1741 + components: + - pos: 25.5,7.5 + parent: 2 + type: Transform + - uid: 1743 + components: + - pos: 27.5,8.5 + parent: 2 + type: Transform + - uid: 1744 + components: + - pos: 26.5,7.5 + parent: 2 + type: Transform + - uid: 1750 + components: + - pos: 28.5,-12.5 + parent: 2 + type: Transform + - uid: 1771 + components: + - pos: 51.5,0.5 + parent: 2 + type: Transform + - uid: 1791 + components: + - pos: 12.5,22.5 + parent: 2 + type: Transform + - uid: 1808 + components: + - pos: 12.5,31.5 + parent: 2 + type: Transform + - uid: 1809 + components: + - pos: 13.5,31.5 + parent: 2 + type: Transform + - uid: 1810 + components: + - pos: 14.5,31.5 + parent: 2 + type: Transform + - uid: 1815 + components: + - pos: 6.5,35.5 + parent: 2 + type: Transform + - uid: 1840 + components: + - pos: 1.5,29.5 + parent: 2 + type: Transform + - uid: 1841 + components: + - pos: 1.5,28.5 + parent: 2 + type: Transform + - uid: 1862 + components: + - pos: 18.5,26.5 + parent: 2 + type: Transform + - uid: 1863 + components: + - pos: 17.5,26.5 + parent: 2 + type: Transform + - uid: 1889 + components: + - pos: -37.5,-3.5 + parent: 2 + type: Transform + - uid: 1890 + components: + - pos: -38.5,-3.5 + parent: 2 + type: Transform + - uid: 1931 + components: + - pos: -36.5,10.5 + parent: 2 + type: Transform + - uid: 1937 + components: + - pos: 1.5,-8.5 + parent: 2 + type: Transform + - uid: 1942 + components: + - pos: 2.5,-5.5 + parent: 2 + type: Transform + - uid: 1948 + components: + - pos: 32.5,13.5 + parent: 2 + type: Transform + - uid: 1954 + components: + - pos: 18.5,20.5 + parent: 2 + type: Transform + - uid: 1955 + components: + - pos: 18.5,19.5 + parent: 2 + type: Transform + - uid: 1957 + components: + - pos: 22.5,20.5 + parent: 2 + type: Transform + - uid: 1973 + components: + - pos: 25.5,20.5 + parent: 2 + type: Transform + - uid: 1979 + components: + - pos: 21.5,17.5 + parent: 2 + type: Transform + - uid: 1980 + components: + - pos: 20.5,17.5 + parent: 2 + type: Transform + - uid: 1981 + components: + - pos: 19.5,17.5 + parent: 2 + type: Transform + - uid: 1985 + components: + - pos: 25.5,18.5 + parent: 2 + type: Transform + - uid: 1988 + components: + - pos: 25.5,19.5 + parent: 2 + type: Transform + - uid: 2015 + components: + - pos: 28.5,17.5 + parent: 2 + type: Transform + - uid: 2016 + components: + - pos: 27.5,17.5 + parent: 2 + type: Transform + - uid: 2017 + components: + - pos: 26.5,17.5 + parent: 2 + type: Transform + - uid: 2023 + components: + - pos: 45.5,10.5 + parent: 2 + type: Transform + - uid: 2100 + components: + - pos: 34.5,10.5 + parent: 2 + type: Transform + - uid: 2104 + components: + - pos: 33.5,10.5 + parent: 2 + type: Transform + - uid: 2135 + components: + - pos: 32.5,-0.5 + parent: 2 + type: Transform + - uid: 2143 + components: + - pos: -32.5,12.5 + parent: 2 + type: Transform + - uid: 2175 + components: + - pos: 18.5,29.5 + parent: 2 + type: Transform + - uid: 2176 + components: + - pos: 17.5,29.5 + parent: 2 + type: Transform + - uid: 2178 + components: + - pos: 33.5,17.5 + parent: 2 + type: Transform + - uid: 2214 + components: + - pos: 26.5,-17.5 + parent: 2 + type: Transform + - uid: 2215 + components: + - pos: 26.5,-18.5 + parent: 2 + type: Transform + - uid: 2230 + components: + - pos: 23.5,-24.5 + parent: 2 + type: Transform + - uid: 2249 + components: + - pos: 32.5,-17.5 + parent: 2 + type: Transform + - uid: 2269 + components: + - pos: 37.5,-5.5 + parent: 2 + type: Transform + - uid: 2271 + components: + - pos: 26.5,-16.5 + parent: 2 + type: Transform + - uid: 2299 + components: + - pos: 51.5,-9.5 + parent: 2 + type: Transform + - uid: 2302 + components: + - pos: 51.5,-10.5 + parent: 2 + type: Transform + - uid: 2303 + components: + - pos: 51.5,-11.5 + parent: 2 + type: Transform + - uid: 2320 + components: + - pos: 53.5,-4.5 + parent: 2 + type: Transform + - uid: 2321 + components: + - pos: 53.5,-5.5 + parent: 2 + type: Transform + - uid: 2323 + components: + - pos: 53.5,-6.5 + parent: 2 + type: Transform + - uid: 2343 + components: + - pos: 51.5,-0.5 + parent: 2 + type: Transform + - uid: 2346 + components: + - pos: 18.5,-17.5 + parent: 2 + type: Transform + - uid: 2376 + components: + - pos: -0.5,-3.5 + parent: 2 + type: Transform + - uid: 2413 + components: + - pos: 27.5,-24.5 + parent: 2 + type: Transform + - uid: 2415 + components: + - pos: 28.5,-24.5 + parent: 2 + type: Transform + - uid: 2419 + components: + - pos: 32.5,-26.5 + parent: 2 + type: Transform + - uid: 2441 + components: + - pos: 40.5,-5.5 + parent: 2 + type: Transform + - uid: 2462 + components: + - pos: 35.5,-27.5 + parent: 2 + type: Transform + - uid: 2469 + components: + - pos: 35.5,-26.5 + parent: 2 + type: Transform + - uid: 2536 + components: + - pos: -26.5,-24.5 + parent: 2 + type: Transform + - uid: 2543 + components: + - pos: -27.5,-25.5 + parent: 2 + type: Transform + - uid: 2559 + components: + - pos: -11.5,-31.5 + parent: 2 + type: Transform + - uid: 2597 + components: + - pos: -25.5,-12.5 + parent: 2 + type: Transform + - uid: 2598 + components: + - pos: -25.5,-13.5 + parent: 2 + type: Transform + - uid: 2604 + components: + - pos: -29.5,3.5 + parent: 2 + type: Transform + - uid: 2640 + components: + - pos: -23.5,14.5 + parent: 2 + type: Transform + - uid: 2659 + components: + - pos: -24.5,14.5 + parent: 2 + type: Transform + - uid: 2711 + components: + - pos: -38.5,14.5 + parent: 2 + type: Transform + - uid: 2713 + components: + - pos: -37.5,14.5 + parent: 2 + type: Transform + - uid: 2752 + components: + - pos: -35.5,13.5 + parent: 2 + type: Transform + - uid: 2753 + components: + - pos: -37.5,7.5 + parent: 2 + type: Transform + - uid: 2756 + components: + - pos: -35.5,11.5 + parent: 2 + type: Transform + - uid: 2763 + components: + - pos: -36.5,14.5 + parent: 2 + type: Transform + - uid: 2767 + components: + - pos: -20.5,-3.5 + parent: 2 + type: Transform + - uid: 2812 + components: + - pos: -40.5,13.5 + parent: 2 + type: Transform + - uid: 2865 + components: + - pos: -28.5,22.5 + parent: 2 + type: Transform + - uid: 2876 + components: + - pos: -27.5,22.5 + parent: 2 + type: Transform + - uid: 2878 + components: + - pos: -30.5,22.5 + parent: 2 + type: Transform + - uid: 2879 + components: + - pos: -31.5,22.5 + parent: 2 + type: Transform + - uid: 2881 + components: + - pos: -33.5,22.5 + parent: 2 + type: Transform + - uid: 2882 + components: + - pos: -34.5,22.5 + parent: 2 + type: Transform + - uid: 2884 + components: + - pos: -36.5,22.5 + parent: 2 + type: Transform + - uid: 2885 + components: + - pos: -37.5,22.5 + parent: 2 + type: Transform + - uid: 2888 + components: + - pos: -30.5,19.5 + parent: 2 + type: Transform + - uid: 2889 + components: + - pos: -27.5,19.5 + parent: 2 + type: Transform + - uid: 2890 + components: + - pos: -33.5,19.5 + parent: 2 + type: Transform + - uid: 2891 + components: + - pos: -36.5,19.5 + parent: 2 + type: Transform + - uid: 2963 + components: + - pos: 45.5,11.5 + parent: 2 + type: Transform + - uid: 2964 + components: + - pos: 44.5,11.5 + parent: 2 + type: Transform + - uid: 2990 + components: + - pos: 46.5,8.5 + parent: 2 + type: Transform + - uid: 2991 + components: + - pos: 47.5,8.5 + parent: 2 + type: Transform + - uid: 3211 + components: + - pos: -39.5,-27.5 + parent: 2 + type: Transform + - uid: 3232 + components: + - pos: -39.5,-28.5 + parent: 2 + type: Transform + - uid: 3233 + components: + - pos: 45.5,9.5 + parent: 2 + type: Transform + - uid: 3281 + components: + - pos: -33.5,-25.5 + parent: 2 + type: Transform + - uid: 3285 + components: + - pos: -31.5,-23.5 + parent: 2 + type: Transform + - uid: 3320 + components: + - pos: -51.5,9.5 + parent: 2 + type: Transform + - uid: 3327 + components: + - pos: -55.5,7.5 + parent: 2 + type: Transform + - uid: 3414 + components: + - pos: -53.5,-7.5 + parent: 2 + type: Transform + - uid: 3415 + components: + - pos: -53.5,-15.5 + parent: 2 + type: Transform + - uid: 3416 + components: + - pos: -56.5,-15.5 + parent: 2 + type: Transform + - uid: 3417 + components: + - pos: -56.5,-7.5 + parent: 2 + type: Transform + - uid: 3434 + components: + - pos: -48.5,-7.5 + parent: 2 + type: Transform + - uid: 3435 + components: + - pos: -47.5,-7.5 + parent: 2 + type: Transform + - uid: 3436 + components: + - pos: -49.5,-8.5 + parent: 2 + type: Transform + - uid: 3437 + components: + - pos: -49.5,-9.5 + parent: 2 + type: Transform + - uid: 3438 + components: + - pos: -49.5,-10.5 + parent: 2 + type: Transform + - uid: 3439 + components: + - pos: 26.5,-27.5 + parent: 2 + type: Transform + - uid: 3440 + components: + - pos: -49.5,-12.5 + parent: 2 + type: Transform + - uid: 3643 + components: + - pos: -21.5,-3.5 + parent: 2 + type: Transform + - uid: 3663 + components: + - pos: -19.5,-3.5 + parent: 2 + type: Transform + - uid: 3702 + components: + - pos: -14.5,-33.5 + parent: 2 + type: Transform + - uid: 3728 + components: + - pos: -0.5,-28.5 + parent: 2 + type: Transform + - uid: 3783 + components: + - pos: 29.5,-21.5 + parent: 2 + type: Transform + - uid: 3801 + components: + - pos: 14.5,22.5 + parent: 2 + type: Transform + - uid: 3970 + components: + - pos: 27.5,-5.5 + parent: 2 + type: Transform + - uid: 3972 + components: + - pos: -35.5,-5.5 + parent: 2 + type: Transform + - uid: 3983 + components: + - pos: 2.5,-24.5 + parent: 2 + type: Transform + - uid: 4007 + components: + - pos: 47.5,-13.5 + parent: 2 + type: Transform + - uid: 4075 + components: + - pos: -43.5,-30.5 + parent: 2 + type: Transform + - uid: 4076 + components: + - pos: -42.5,-30.5 + parent: 2 + type: Transform + - uid: 4307 + components: + - pos: -35.5,-20.5 + parent: 2 + type: Transform + - uid: 4308 + components: + - pos: -34.5,-20.5 + parent: 2 + type: Transform + - uid: 4955 + components: + - pos: 46.5,-3.5 + parent: 2 + type: Transform + - uid: 5278 + components: + - pos: 50.5,-8.5 + parent: 2 + type: Transform + - uid: 5744 + components: + - pos: 3.5,-27.5 + parent: 2 + type: Transform + - uid: 6761 + components: + - pos: -52.5,-18.5 + parent: 2 + type: Transform + - uid: 6773 + components: + - pos: -13.5,-28.5 + parent: 2 + type: Transform + - uid: 6788 + components: + - pos: -14.5,-28.5 + parent: 2 + type: Transform + - uid: 6839 + components: + - pos: -5.5,-28.5 + parent: 2 + type: Transform + - uid: 6844 + components: + - pos: 48.5,0.5 + parent: 2 + type: Transform + - uid: 6879 + components: + - pos: 35.5,-35.5 + parent: 2 + type: Transform + - uid: 6880 + components: + - pos: 39.5,-35.5 + parent: 2 + type: Transform + - uid: 6887 + components: + - pos: -50.5,-18.5 + parent: 2 + type: Transform + - uid: 6888 + components: + - pos: -49.5,-18.5 + parent: 2 + type: Transform + - uid: 6894 + components: + - pos: 5.5,-32.5 + parent: 2 + type: Transform + - uid: 6895 + components: + - pos: 6.5,-32.5 + parent: 2 + type: Transform + - uid: 6905 + components: + - pos: 34.5,-35.5 + parent: 2 + type: Transform + - uid: 6908 + components: + - pos: 38.5,-35.5 + parent: 2 + type: Transform + - uid: 6971 + components: + - pos: -47.5,24.5 + parent: 2 + type: Transform + - uid: 6974 + components: + - pos: -48.5,24.5 + parent: 2 + type: Transform + - uid: 6977 + components: + - pos: -50.5,22.5 + parent: 2 + type: Transform + - uid: 6999 + components: + - pos: 39.5,20.5 + parent: 2 + type: Transform + - uid: 7020 + components: + - pos: 39.5,19.5 + parent: 2 + type: Transform + - uid: 7128 + components: + - pos: -53.5,18.5 + parent: 2 + type: Transform + - uid: 7172 + components: + - pos: -53.5,17.5 + parent: 2 + type: Transform + - uid: 7700 + components: + - pos: -53.5,0.5 + parent: 2 + type: Transform + - uid: 8028 + components: + - pos: -43.5,-8.5 + parent: 2 + type: Transform + - uid: 8029 + components: + - pos: -43.5,-12.5 + parent: 2 + type: Transform + - uid: 8092 + components: + - pos: -43.5,-11.5 + parent: 2 + type: Transform + - uid: 8093 + components: + - pos: -43.5,-9.5 + parent: 2 + type: Transform + - uid: 8163 + components: + - pos: -53.5,1.5 + parent: 2 + type: Transform + - uid: 8596 + components: + - pos: 48.5,-8.5 + parent: 2 + type: Transform + - uid: 8792 + components: + - pos: -53.5,-3.5 + parent: 2 + type: Transform + - uid: 8793 + components: + - pos: -53.5,-4.5 + parent: 2 + type: Transform + - uid: 8830 + components: + - pos: 26.5,-28.5 + parent: 2 + type: Transform + - uid: 8832 + components: + - pos: 35.5,-29.5 + parent: 2 + type: Transform + - uid: 8837 + components: + - pos: 43.5,-22.5 + parent: 2 + type: Transform + - uid: 8839 + components: + - pos: 43.5,-20.5 + parent: 2 + type: Transform + - uid: 8853 + components: + - pos: -49.5,-23.5 + parent: 2 + type: Transform + - uid: 8865 + components: + - pos: -53.5,-19.5 + parent: 2 + type: Transform + - uid: 8866 + components: + - pos: -53.5,-20.5 + parent: 2 + type: Transform + - uid: 8867 + components: + - pos: -53.5,-21.5 + parent: 2 + type: Transform + - uid: 8869 + components: + - pos: -50.5,-23.5 + parent: 2 + type: Transform + - uid: 8870 + components: + - pos: -48.5,-23.5 + parent: 2 + type: Transform + - uid: 9051 + components: + - pos: -46.5,-26.5 + parent: 2 + type: Transform + - uid: 9053 + components: + - pos: -46.5,-27.5 + parent: 2 + type: Transform + - uid: 9096 + components: + - pos: 21.5,-35.5 + parent: 2 + type: Transform + - uid: 9174 + components: + - pos: 20.5,-35.5 + parent: 2 + type: Transform + - uid: 9276 + components: + - pos: 42.5,-27.5 + parent: 2 + type: Transform + - uid: 9278 + components: + - pos: -25.5,18.5 + parent: 2 + type: Transform + - uid: 9309 + components: + - pos: 46.5,-17.5 + parent: 2 + type: Transform + - uid: 9310 + components: + - pos: 45.5,-17.5 + parent: 2 + type: Transform + - uid: 9336 + components: + - pos: 42.5,-28.5 + parent: 2 + type: Transform + - uid: 9455 + components: + - pos: 2.5,16.5 + parent: 2 + type: Transform + - uid: 9457 + components: + - pos: 28.5,-21.5 + parent: 2 + type: Transform + - uid: 9458 + components: + - pos: 30.5,-21.5 + parent: 2 + type: Transform + - uid: 9460 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-31.5 + parent: 2 + type: Transform + - uid: 9578 + components: + - pos: -23.5,18.5 + parent: 2 + type: Transform + - uid: 9579 + components: + - pos: -24.5,18.5 + parent: 2 + type: Transform + - uid: 10878 + components: + - pos: -10.5,-35.5 + parent: 2 + type: Transform + - uid: 10880 + components: + - pos: -8.5,-37.5 + parent: 2 + type: Transform + - uid: 10888 + components: + - pos: -6.5,-35.5 + parent: 2 + type: Transform + - uid: 10891 + components: + - pos: -10.5,-36.5 + parent: 2 + type: Transform + - uid: 10892 + components: + - pos: -6.5,-36.5 + parent: 2 + type: Transform + - uid: 10894 + components: + - pos: -35.5,-35.5 + parent: 2 + type: Transform + - uid: 10902 + components: + - pos: -34.5,-35.5 + parent: 2 + type: Transform + - uid: 10903 + components: + - pos: -33.5,-35.5 + parent: 2 + type: Transform +- proto: GrilleSpawner + entities: + - uid: 3640 + components: + - pos: 37.5,23.5 + parent: 2 + type: Transform + - uid: 4157 + components: + - pos: -11.5,31.5 + parent: 2 + type: Transform + - uid: 4158 + components: + - pos: -12.5,31.5 + parent: 2 + type: Transform + - uid: 4160 + components: + - pos: -10.5,31.5 + parent: 2 + type: Transform + - uid: 4161 + components: + - pos: -9.5,31.5 + parent: 2 + type: Transform + - uid: 4162 + components: + - pos: -8.5,31.5 + parent: 2 + type: Transform + - uid: 4163 + components: + - pos: -6.5,31.5 + parent: 2 + type: Transform + - uid: 4164 + components: + - pos: -5.5,31.5 + parent: 2 + type: Transform + - uid: 4165 + components: + - pos: -4.5,31.5 + parent: 2 + type: Transform + - uid: 4166 + components: + - pos: -3.5,31.5 + parent: 2 + type: Transform + - uid: 9185 + components: + - pos: 15.5,37.5 + parent: 2 + type: Transform + - uid: 9329 + components: + - pos: 15.5,36.5 + parent: 2 + type: Transform + - uid: 9389 + components: + - pos: 60.5,-7.5 + parent: 2 + type: Transform + - uid: 9390 + components: + - pos: 60.5,-6.5 + parent: 2 + type: Transform + - uid: 9391 + components: + - pos: 60.5,-4.5 + parent: 2 + type: Transform + - uid: 9392 + components: + - pos: 60.5,-3.5 + parent: 2 + type: Transform + - uid: 9393 + components: + - pos: 59.5,-8.5 + parent: 2 + type: Transform + - uid: 9394 + components: + - pos: 59.5,-9.5 + parent: 2 + type: Transform + - uid: 9395 + components: + - pos: 58.5,-9.5 + parent: 2 + type: Transform + - uid: 9396 + components: + - pos: 57.5,-9.5 + parent: 2 + type: Transform + - uid: 9397 + components: + - pos: 56.5,-9.5 + parent: 2 + type: Transform + - uid: 9398 + components: + - pos: 59.5,-2.5 + parent: 2 + type: Transform + - uid: 9399 + components: + - pos: 59.5,-1.5 + parent: 2 + type: Transform + - uid: 9400 + components: + - pos: 58.5,-1.5 + parent: 2 + type: Transform + - uid: 9401 + components: + - pos: 57.5,-1.5 + parent: 2 + type: Transform + - uid: 9402 + components: + - pos: 56.5,-1.5 + parent: 2 + type: Transform + - uid: 9406 + components: + - pos: 59.5,-5.5 + parent: 2 + type: Transform + - uid: 9407 + components: + - pos: 58.5,-5.5 + parent: 2 + type: Transform + - uid: 9408 + components: + - pos: 57.5,-5.5 + parent: 2 + type: Transform + - uid: 9409 + components: + - pos: 56.5,-5.5 + parent: 2 + type: Transform + - uid: 9410 + components: + - pos: 55.5,-10.5 + parent: 2 + type: Transform + - uid: 9411 + components: + - pos: 55.5,-11.5 + parent: 2 + type: Transform + - uid: 9412 + components: + - pos: 55.5,-12.5 + parent: 2 + type: Transform + - uid: 10982 + components: + - pos: 15.5,35.5 + parent: 2 + type: Transform + - uid: 10984 + components: + - pos: 15.5,34.5 + parent: 2 + type: Transform + - uid: 10985 + components: + - pos: 15.5,33.5 + parent: 2 + type: Transform + - uid: 10986 + components: + - pos: -1.5,31.5 + parent: 2 + type: Transform + - uid: 10987 + components: + - pos: -2.5,36.5 + parent: 2 + type: Transform + - uid: 10988 + components: + - pos: -2.5,35.5 + parent: 2 + type: Transform + - uid: 10989 + components: + - pos: -2.5,34.5 + parent: 2 + type: Transform + - uid: 10990 + components: + - pos: -2.5,33.5 + parent: 2 + type: Transform + - uid: 10993 + components: + - pos: 19.5,30.5 + parent: 2 + type: Transform + - uid: 10994 + components: + - pos: 19.5,31.5 + parent: 2 + type: Transform + - uid: 10995 + components: + - pos: 31.5,28.5 + parent: 2 + type: Transform + - uid: 10996 + components: + - pos: 32.5,23.5 + parent: 2 + type: Transform + - uid: 10997 + components: + - pos: 54.5,-13.5 + parent: 2 + type: Transform + - uid: 10998 + components: + - pos: 53.5,-13.5 + parent: 2 + type: Transform + - uid: 10999 + components: + - pos: 52.5,-13.5 + parent: 2 + type: Transform + - uid: 11000 + components: + - pos: 51.5,-13.5 + parent: 2 + type: Transform + - uid: 11001 + components: + - pos: 45.5,-27.5 + parent: 2 + type: Transform + - uid: 11002 + components: + - pos: 44.5,-27.5 + parent: 2 + type: Transform + - uid: 11003 + components: + - pos: 44.5,-32.5 + parent: 2 + type: Transform + - uid: 11019 + components: + - pos: -2.5,32.5 + parent: 2 + type: Transform + - uid: 11020 + components: + - pos: -0.5,31.5 + parent: 2 + type: Transform + - uid: 11021 + components: + - pos: 0.5,31.5 + parent: 2 + type: Transform + - uid: 11022 + components: + - pos: -2.5,37.5 + parent: 2 + type: Transform + - uid: 11023 + components: + - pos: 15.5,32.5 + parent: 2 + type: Transform +- proto: GunSafePistolMk58 + entities: + - uid: 1081 + components: + - pos: -1.5,-5.5 + parent: 2 + type: Transform +- proto: GunSafeSubMachineGunDrozd + entities: + - uid: 2804 + components: + - pos: -43.5,14.5 + parent: 2 + type: Transform +- proto: GunSafeVulcanRifle + entities: + - uid: 2802 + components: + - pos: -42.5,14.5 + parent: 2 + type: Transform +- proto: HandheldHealthAnalyzer + entities: + - uid: 6721 + components: + - pos: 27.402857,-14.144175 + parent: 2 + type: Transform +- proto: HandheldStationMap + entities: + - uid: 10979 + components: + - pos: -18.401232,-32.00298 + parent: 2 + type: Transform +- proto: HandLabeler + entities: + - uid: 526 + components: + - pos: 19.456472,-16.061235 + parent: 2 + type: Transform + - uid: 1046 + components: + - pos: -1.5946248,6.4961658 + parent: 2 + type: Transform +- proto: HatSpawner + entities: + - uid: 3761 + components: + - pos: -15.5,14.5 + parent: 2 + type: Transform + - chance: 1 + type: RandomSpawner +- proto: HeatExchanger + entities: + - uid: 963 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,18.5 + parent: 2 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 966 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,19.5 + parent: 2 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor + - uid: 2039 + components: + - pos: 28.5,19.5 + parent: 2 + type: Transform + - color: '#FF6600FF' + type: AtmosPipeColor + - uid: 2040 + components: + - pos: 29.5,19.5 + parent: 2 + type: Transform + - color: '#FF6600FF' + type: AtmosPipeColor + - uid: 10220 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,20.5 + parent: 2 + type: Transform + - color: '#00AAFFFF' + type: AtmosPipeColor +- proto: HighSecCommandLocked + entities: + - uid: 2354 + components: + - pos: 0.5,-9.5 + parent: 2 + type: Transform + - uid: 2355 + components: + - pos: -0.5,-9.5 + parent: 2 + type: Transform +- proto: HoloprojectorEngineering + entities: + - uid: 2166 + components: + - pos: 31.650194,-0.29853484 + parent: 2 + type: Transform + - uid: 2837 + components: + - pos: 31.35332,-0.62688875 + parent: 2 + type: Transform +- proto: HoloprojectorSecurity + entities: + - uid: 10781 + components: + - pos: -29.290266,7.6750813 + parent: 2 + type: Transform +- proto: HospitalCurtainsOpen + entities: + - uid: 3490 + components: + - pos: -45.5,-0.5 + parent: 2 + type: Transform + - uid: 3491 + components: + - pos: -45.5,-2.5 + parent: 2 + type: Transform +- proto: hydroponicsSoil + entities: + - uid: 247 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-8.5 + parent: 2 + type: Transform + - uid: 249 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-9.5 + parent: 2 + type: Transform + - uid: 250 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-10.5 + parent: 2 + type: Transform + - uid: 251 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-8.5 + parent: 2 + type: Transform + - uid: 252 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-9.5 + parent: 2 + type: Transform + - uid: 253 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-10.5 + parent: 2 + type: Transform +- proto: HydroponicsToolClippers + entities: + - uid: 2904 + components: + - pos: -36.352306,15.338483 + parent: 2 + type: Transform +- proto: HydroponicsToolMiniHoe + entities: + - uid: 2906 + components: + - pos: -36.522217,15.541486 + parent: 2 + type: Transform +- proto: hydroponicsTray + entities: + - uid: 363 + components: + - pos: 13.5,-15.5 + parent: 2 + type: Transform + - uid: 367 + components: + - pos: 17.5,-17.5 + parent: 2 + type: Transform + - uid: 374 + components: + - pos: 15.5,-16.5 + parent: 2 + type: Transform + - uid: 406 + components: + - pos: 17.5,-16.5 + parent: 2 + type: Transform + - uid: 407 + components: + - pos: 17.5,-15.5 + parent: 2 + type: Transform + - uid: 466 + components: + - pos: 14.5,-16.5 + parent: 2 + type: Transform + - uid: 482 + components: + - pos: 15.5,-15.5 + parent: 2 + type: Transform + - uid: 483 + components: + - pos: 14.5,-15.5 + parent: 2 + type: Transform + - uid: 534 + components: + - pos: 13.5,-16.5 + parent: 2 + type: Transform + - uid: 2898 + components: + - pos: -38.5,15.5 + parent: 2 + type: Transform + - uid: 2899 + components: + - pos: -37.5,15.5 + parent: 2 + type: Transform +- proto: IDComputerCircuitboard + entities: + - uid: 4032 + components: + - pos: 47.658962,-14.321973 + parent: 2 + type: Transform +- proto: Igniter + entities: + - uid: 2063 + components: + - pos: 27.557285,20.384415 + parent: 2 + type: Transform + - links: + - 2018 + type: DeviceLinkSink +- proto: IngotSilver + entities: + - uid: 2120 + components: + - pos: -1.3227379,-6.347409 + parent: 2 + type: Transform +- proto: IntercomAll + entities: + - uid: 10838 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,0.5 + parent: 2 + type: Transform +- proto: IntercomCommand + entities: + - uid: 4677 + components: + - rot: 3.141592653589793 rad + pos: 43.5,-7.5 + parent: 2 + type: Transform +- proto: IntercomCommon + entities: + - uid: 10842 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-32.5 + parent: 2 + type: Transform + - uid: 10843 + components: + - pos: 11.5,-27.5 + parent: 2 + type: Transform + - uid: 10844 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-6.5 + parent: 2 + type: Transform + - uid: 10845 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,5.5 + parent: 2 + type: Transform + - uid: 10846 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,-9.5 + parent: 2 + type: Transform + - uid: 10847 + components: + - rot: 1.5707963267948966 rad + pos: -53.5,-17.5 + parent: 2 + type: Transform +- proto: IntercomEngineering + entities: + - uid: 10834 + components: + - rot: 3.141592653589793 rad + pos: 25.5,21.5 + parent: 2 + type: Transform + - uid: 10835 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,1.5 + parent: 2 + type: Transform + - uid: 10836 + components: + - rot: 1.5707963267948966 rad + pos: 32.5,1.5 + parent: 2 + type: Transform + - uid: 10837 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,8.5 + parent: 2 + type: Transform + - uid: 10849 + components: + - pos: -53.5,16.5 + parent: 2 + type: Transform + - uid: 10850 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,-21.5 + parent: 2 + type: Transform + - uid: 10851 + components: + - pos: 20.5,-29.5 + parent: 2 + type: Transform + - uid: 10852 + components: + - rot: -1.5707963267948966 rad + pos: 44.5,-12.5 + parent: 2 + type: Transform + - uid: 10853 + components: + - pos: 37.5,21.5 + parent: 2 + type: Transform +- proto: IntercomMedical + entities: + - uid: 10839 + components: + - rot: 3.141592653589793 rad + pos: 23.5,-14.5 + parent: 2 + type: Transform + - uid: 10840 + components: + - pos: 28.5,-29.5 + parent: 2 + type: Transform + - uid: 10841 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-15.5 + parent: 2 + type: Transform +- proto: IntercomScience + entities: + - uid: 10825 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-11.5 + parent: 2 + type: Transform + - uid: 10826 + components: + - rot: 3.141592653589793 rad + pos: -31.5,-16.5 + parent: 2 + type: Transform +- proto: IntercomSecurity + entities: + - uid: 2081 + components: + - rot: 3.141592653589793 rad + pos: -32.5,14.5 + parent: 2 + type: Transform + - uid: 10824 + components: + - pos: -35.5,10.5 + parent: 2 + type: Transform + - uid: 10848 + components: + - pos: -19.5,1.5 + parent: 2 + type: Transform +- proto: IntercomService + entities: + - uid: 10827 + components: + - pos: 15.5,-14.5 + parent: 2 + type: Transform + - uid: 10828 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-21.5 + parent: 2 + type: Transform + - uid: 10829 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-2.5 + parent: 2 + type: Transform +- proto: IntercomSupply + entities: + - uid: 1990 + components: + - rot: 3.141592653589793 rad + pos: 15.5,17.5 + parent: 2 + type: Transform + - uid: 10830 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,7.5 + parent: 2 + type: Transform + - uid: 10831 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,14.5 + parent: 2 + type: Transform + - uid: 10832 + components: + - pos: 4.5,8.5 + parent: 2 + type: Transform + - uid: 10833 + components: + - rot: 1.5707963267948966 rad + pos: 20.5,26.5 + parent: 2 + type: Transform +- proto: JetpackMiniFilled + entities: + - uid: 1881 + components: + - pos: -14.440783,-29.277756 + parent: 2 + type: Transform + - uid: 2326 + components: + - pos: -14.597033,-29.527931 + parent: 2 + type: Transform +- proto: KalimbaInstrument + entities: + - uid: 850 + components: + - pos: 4.3574824,-27.57806 + parent: 2 + type: Transform +- proto: KitchenDeepFryer + entities: + - uid: 324 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-17.5 + parent: 2 + type: Transform +- proto: KitchenElectricGrill + entities: + - uid: 2428 + components: + - pos: -1.5,-19.5 + parent: 2 + type: Transform +- proto: KitchenMicrowave + entities: + - uid: 411 + components: + - pos: -0.5,-19.5 + parent: 2 + type: Transform + - uid: 2200 + components: + - pos: 33.5,-12.5 + parent: 2 + type: Transform + - uid: 2900 + components: + - pos: -39.5,16.5 + parent: 2 + type: Transform +- proto: KitchenReagentGrinder + entities: + - uid: 320 + components: + - pos: 13.5,-18.5 + parent: 2 + type: Transform + - uid: 558 + components: + - pos: -2.5,-16.5 + parent: 2 + type: Transform + - uid: 1399 + components: + - pos: -11.5,-12.5 + parent: 2 + type: Transform + - uid: 1503 + components: + - pos: 19.5,-15.5 + parent: 2 + type: Transform +- proto: KitchenSpike + entities: + - uid: 12 + components: + - pos: -1.5,-21.5 + parent: 2 + type: Transform +- proto: KnifePlastic + entities: + - uid: 4133 + components: + - rot: 1.5707963267948966 rad + pos: 16.434526,19.404531 + parent: 2 + type: Transform +- proto: Lamp + entities: + - uid: 2591 + components: + - pos: -14.659627,-25.879757 + parent: 2 + type: Transform + - uid: 3255 + components: + - pos: 33.385597,13.135147 + parent: 2 + type: Transform + - uid: 3343 + components: + - pos: -10.535331,9.017616 + parent: 2 + type: Transform +- proto: LampBanana + entities: + - uid: 4195 + components: + - pos: -4.286608,-28.50877 + parent: 2 + type: Transform +- proto: LampGold + entities: + - uid: 1774 + components: + - rot: -1.5707963267948966 rad + pos: -37.316463,0.11373499 + parent: 2 + type: Transform + - uid: 3852 + components: + - pos: -39.63938,-14.010583 + parent: 2 + type: Transform + - uid: 6965 + components: + - pos: 37.690796,-31.968172 + parent: 2 + type: Transform + - uid: 8876 + components: + - pos: -48.648132,-18.942598 + parent: 2 + type: Transform +- proto: LampInterrogator + entities: + - uid: 3841 + components: + - pos: -32.61883,-17.940096 + parent: 2 + type: Transform +- proto: Lantern + entities: + - uid: 10780 + components: + - pos: 15.319621,-24.2798 + parent: 2 + type: Transform + - uid: 10796 + components: + - pos: 10.331046,-32.073578 + parent: 2 + type: Transform +- proto: LargeBeaker + entities: + - uid: 560 + components: + - pos: 14.286431,-18.17447 + parent: 2 + type: Transform +- proto: Lighter + entities: + - uid: 2432 + components: + - pos: 1.7242026,-29.565796 + parent: 2 + type: Transform +- proto: LightReplacer + entities: + - uid: 1388 + components: + - pos: -13.671011,-1.4744892 + parent: 2 + type: Transform +- proto: LockerAtmosphericsFilledHardsuit + entities: + - uid: 10896 + components: + - pos: 31.5,-1.5 + parent: 2 + type: Transform +- proto: LockerBoozeFilled + entities: + - uid: 549 + components: + - pos: 13.5,-23.5 + parent: 2 + type: Transform +- proto: LockerBotanistFilled + entities: + - uid: 562 + components: + - pos: 12.5,-14.5 + parent: 2 + type: Transform +- proto: LockerBrigmedicFilledHardsuit + entities: + - uid: 2693 + components: + - pos: -23.5,20.5 + parent: 2 + type: Transform +- proto: LockerCaptainFilled + entities: + - uid: 1936 + components: + - pos: 50.5,-1.5 + parent: 2 + type: Transform +- proto: LockerChemistryFilled + entities: + - uid: 467 + components: + - pos: 22.5,-20.5 + parent: 2 + type: Transform +- proto: LockerChiefEngineerFilled + entities: + - uid: 1921 + components: + - pos: 37.5,12.5 + parent: 2 + type: Transform +- proto: LockerChiefMedicalOfficerFilled + entities: + - uid: 2455 + components: + - pos: 37.25989,-20.5 + parent: 2 + type: Transform +- proto: LockerDetectiveFilled + entities: + - uid: 490 + components: + - pos: -12.5,11.5 + parent: 2 + type: Transform +- proto: LockerElectricalSuppliesFilled + entities: + - uid: 10193 + components: + - pos: 42.5,-11.5 + parent: 2 + type: Transform +- proto: LockerEngineerFilled + entities: + - uid: 774 + components: + - pos: 30.5,-2.5 + parent: 2 + type: Transform + - uid: 775 + components: + - pos: 29.5,-2.5 + parent: 2 + type: Transform + - uid: 776 + components: + - pos: 28.5,-2.5 + parent: 2 + type: Transform + - uid: 9527 + components: + - pos: -14.5,3.5 + parent: 2 + type: Transform +- proto: LockerEvidence + entities: + - uid: 2803 + components: + - pos: -38.5,13.5 + parent: 2 + type: Transform + - uid: 2939 + components: + - pos: -30.5,10.5 + parent: 2 + type: Transform + - uid: 2940 + components: + - pos: -31.5,10.5 + parent: 2 + type: Transform +- proto: LockerForensicMantisFilled + entities: + - uid: 1221 + components: + - pos: -35.5,-19.5 + parent: 2 + type: Transform +- proto: LockerHeadOfPersonnelFilled + entities: + - uid: 4069 + components: + - pos: 10.5,4.5 + parent: 2 + type: Transform +- proto: LockerHeadOfSecurityFilledHardsuit + entities: + - uid: 2851 + components: + - pos: -39.5,6.5 + parent: 2 + type: Transform +- proto: LockerMedicalFilled + entities: + - uid: 2202 + components: + - pos: 37.5,-10.5 + parent: 2 + type: Transform + - uid: 2203 + components: + - pos: 37.5,-9.5 + parent: 2 + type: Transform + - uid: 2204 + components: + - pos: 37.5,-11.5 + parent: 2 + type: Transform + - uid: 2205 + components: + - pos: 37.5,-8.5 + parent: 2 + type: Transform +- proto: LockerParamedicFilled + entities: + - uid: 2206 + components: + - pos: 34.5,-8.5 + parent: 2 + type: Transform + - uid: 2207 + components: + - pos: 34.5,-9.5 + parent: 2 + type: Transform +- proto: LockerQuarterMasterFilled + entities: + - uid: 4168 + components: + - pos: 7.279407,16.5 + parent: 2 + type: Transform +- proto: LockerResearchDirectorFilled + entities: + - uid: 3727 + components: + - pos: -35.5,-27.5 + parent: 2 + type: Transform +- proto: LockerSalvageSpecialistFilledHardsuit + entities: + - uid: 1868 + components: + - pos: 18.5,25.5 + parent: 2 + type: Transform + - uid: 1870 + components: + - pos: 17.5,25.5 + parent: 2 + type: Transform + - uid: 1873 + components: + - pos: 19.5,25.5 + parent: 2 + type: Transform +- proto: LockerScienceFilled + entities: + - uid: 1303 + components: + - pos: -35.5,-23.5 + parent: 2 + type: Transform + - uid: 1304 + components: + - pos: -32.5,-23.5 + parent: 2 + type: Transform + - uid: 1414 + components: + - pos: -35.5,-24.5 + parent: 2 + type: Transform + - uid: 1507 + components: + - pos: -32.5,-24.5 + parent: 2 + type: Transform +- proto: LockerSecurityFilled + entities: + - uid: 1137 + components: + - pos: -24.5,10.5 + parent: 2 + type: Transform + - uid: 2638 + components: + - pos: -21.5,10.5 + parent: 2 + type: Transform + - uid: 2639 + components: + - pos: -22.5,10.5 + parent: 2 + type: Transform + - uid: 2642 + components: + - pos: -25.5,10.5 + parent: 2 + type: Transform +- proto: LockerWardenFilledHardsuit + entities: + - uid: 2781 + components: + - pos: -39.5,13.5 + parent: 2 + type: Transform +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 9484 + components: + - pos: 12.5,7.5 + parent: 2 + type: Transform + - uid: 10938 + components: + - pos: -30.5,-32.5 + parent: 2 + type: Transform +- proto: MachineAnomalyGenerator + entities: + - uid: 1089 + components: + - pos: -21.5,-17.5 + parent: 2 + type: Transform +- proto: MachineAnomalyVessel + entities: + - uid: 1518 + components: + - pos: -24.5,-20.5 + parent: 2 + type: Transform + - uid: 1519 + components: + - pos: -23.5,-20.5 + parent: 2 + type: Transform +- proto: MachineAPE + entities: + - uid: 1138 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-17.5 + parent: 2 + type: Transform + - uid: 3656 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-16.5 + parent: 2 + type: Transform +- proto: MachineArtifactAnalyzer + entities: + - uid: 156 + components: + - pos: -19.5,-13.5 + parent: 2 + type: Transform + - links: + - 101 + type: DeviceLinkSink +- proto: MachineFrameDestroyed + entities: + - uid: 3769 + components: + - pos: 6.5,9.5 + parent: 2 + type: Transform + - uid: 10943 + components: + - pos: -32.5,-31.5 + parent: 2 + type: Transform +- proto: MailTeleporter + entities: + - uid: 291 + components: + - pos: -0.5,16.5 + parent: 2 + type: Transform +- proto: MaintenanceFluffSpawner + entities: + - uid: 10274 + components: + - pos: 14.5,-13.5 + parent: 2 + type: Transform + - uid: 10275 + components: + - pos: 15.5,-1.5 + parent: 2 + type: Transform + - uid: 10276 + components: + - pos: 15.5,6.5 + parent: 2 + type: Transform + - uid: 10277 + components: + - pos: -15.5,6.5 + parent: 2 + type: Transform + - uid: 10278 + components: + - pos: -10.5,4.5 + parent: 2 + type: Transform + - uid: 10279 + components: + - pos: 12.5,15.5 + parent: 2 + type: Transform + - uid: 10291 + components: + - pos: -45.5,19.5 + parent: 2 + type: Transform + - uid: 10293 + components: + - pos: 40.5,-10.5 + parent: 2 + type: Transform + - uid: 10294 + components: + - pos: 41.5,-16.5 + parent: 2 + type: Transform + - uid: 10298 + components: + - pos: -40.5,19.5 + parent: 2 + type: Transform + - uid: 10299 + components: + - pos: -54.5,12.5 + parent: 2 + type: Transform + - uid: 10305 + components: + - pos: -26.5,-32.5 + parent: 2 + type: Transform + - uid: 10306 + components: + - pos: -20.5,-32.5 + parent: 2 + type: Transform + - uid: 10309 + components: + - pos: 2.5,-33.5 + parent: 2 + type: Transform + - uid: 10310 + components: + - pos: 3.5,-33.5 + parent: 2 + type: Transform + - uid: 10311 + components: + - pos: 44.5,-27.5 + parent: 2 + type: Transform + - uid: 10312 + components: + - pos: 45.5,-32.5 + parent: 2 + type: Transform + - uid: 10313 + components: + - pos: 54.5,-5.5 + parent: 2 + type: Transform +- proto: MaintenancePlantSpawner + entities: + - uid: 2008 + components: + - pos: -40.5,-24.5 + parent: 2 + type: Transform + - uid: 2078 + components: + - pos: -44.5,-29.5 + parent: 2 + type: Transform +- proto: MaintenanceToolSpawner + entities: + - uid: 10272 + components: + - pos: 15.5,-13.5 + parent: 2 + type: Transform + - uid: 10273 + components: + - pos: 16.5,-11.5 + parent: 2 + type: Transform + - uid: 10282 + components: + - pos: 42.5,-19.5 + parent: 2 + type: Transform + - uid: 10283 + components: + - pos: 42.5,-23.5 + parent: 2 + type: Transform + - uid: 10284 + components: + - pos: 20.5,-27.5 + parent: 2 + type: Transform + - uid: 10285 + components: + - pos: 9.5,-25.5 + parent: 2 + type: Transform + - uid: 10286 + components: + - pos: 15.5,3.5 + parent: 2 + type: Transform + - uid: 10287 + components: + - pos: -15.5,-0.5 + parent: 2 + type: Transform + - uid: 10288 + components: + - pos: -43.5,17.5 + parent: 2 + type: Transform + - uid: 10289 + components: + - pos: -52.5,17.5 + parent: 2 + type: Transform + - uid: 10304 + components: + - pos: -45.5,-31.5 + parent: 2 + type: Transform + - uid: 10308 + components: + - pos: -3.5,-34.5 + parent: 2 + type: Transform +- proto: MaintenanceWeaponSpawner + entities: + - uid: 5381 + components: + - pos: 43.5,0.5 + parent: 2 + type: Transform + - uid: 10270 + components: + - pos: -2.5,-32.5 + parent: 2 + type: Transform + - uid: 10271 + components: + - pos: 15.5,-27.5 + parent: 2 + type: Transform + - uid: 10280 + components: + - pos: 12.5,14.5 + parent: 2 + type: Transform + - uid: 10281 + components: + - pos: 41.5,-30.5 + parent: 2 + type: Transform + - uid: 10290 + components: + - pos: -52.5,12.5 + parent: 2 + type: Transform + - uid: 10300 + components: + - pos: -53.5,-1.5 + parent: 2 + type: Transform + - uid: 10301 + components: + - pos: -54.5,1.5 + parent: 2 + type: Transform + - uid: 10303 + components: + - pos: -54.5,-18.5 + parent: 2 + type: Transform + - uid: 10307 + components: + - pos: -21.5,-32.5 + parent: 2 + type: Transform + - uid: 10947 + components: + - pos: -29.5,-33.5 + parent: 2 + type: Transform +- proto: Matchbox + entities: + - uid: 4170 + components: + - pos: -10.637249,7.3846707 + parent: 2 + type: Transform +- proto: MatchstickSpent + entities: + - uid: 3275 + components: + - rot: 3.141592653589793 rad + pos: -39.78963,2.2336497 + parent: 2 + type: Transform +- proto: MaterialBiomass + entities: + - uid: 9568 + components: + - pos: 27.669483,-25.602472 + parent: 2 + type: Transform +- proto: MaterialCloth + entities: + - uid: 4666 + components: + - pos: 44.399048,-4.319527 + parent: 2 + type: Transform +- proto: MaterialDiamond + entities: + - uid: 826 + components: + - pos: 1.3230954,-5.367562 + parent: 2 + type: Transform +- proto: MaterialDurathread + entities: + - uid: 4667 + components: + - pos: 44.742798,-4.6113973 + parent: 2 + type: Transform +- proto: MaterialReclaimer + entities: + - uid: 8977 + components: + - pos: -11.5,0.5 + parent: 2 + type: Transform +- proto: MedicalBed + entities: + - uid: 1122 + components: + - pos: -21.5,15.5 + parent: 2 + type: Transform + - uid: 2189 + components: + - pos: 27.5,-20.5 + parent: 2 + type: Transform + - uid: 2194 + components: + - pos: 31.5,-20.5 + parent: 2 + type: Transform + - uid: 2248 + components: + - pos: 29.5,-20.5 + parent: 2 + type: Transform + - uid: 2426 + components: + - pos: 27.5,-18.5 + parent: 2 + type: Transform + - uid: 2442 + components: + - pos: 27.5,-16.5 + parent: 2 + type: Transform + - uid: 2683 + components: + - pos: -23.5,15.5 + parent: 2 + type: Transform + - uid: 2684 + components: + - pos: -25.5,15.5 + parent: 2 + type: Transform +- proto: MedicalRecordsComputerCircuitboard + entities: + - uid: 9317 + components: + - pos: 45.679794,-16.292091 + parent: 2 + type: Transform +- proto: MedicalScanner + entities: + - uid: 2484 + components: + - pos: 28.5,-27.5 + parent: 2 + type: Transform +- proto: MedicalTechFab + entities: + - uid: 505 + components: + - pos: 37.5,-12.5 + parent: 2 + type: Transform +- proto: MedicalTechFabCircuitboard + entities: + - uid: 9318 + components: + - pos: 45.45063,-16.594385 + parent: 2 + type: Transform +- proto: MedkitAdvancedFilled + entities: + - uid: 824 + components: + - pos: 27.386627,-11.625767 + parent: 2 + type: Transform + - uid: 6719 + components: + - pos: 39.581184,-22.465118 + parent: 2 + type: Transform +- proto: MedkitBruteFilled + entities: + - uid: 1735 + components: + - pos: 27.636751,-11.354746 + parent: 2 + type: Transform +- proto: MedkitBurnFilled + entities: + - uid: 6718 + components: + - pos: 29.684996,-13.485921 + parent: 2 + type: Transform +- proto: MedkitCombatFilled + entities: + - uid: 3925 + components: + - pos: -25.661615,20.794283 + parent: 2 + type: Transform +- proto: MedkitFilled + entities: + - uid: 1635 + components: + - pos: 19.557234,-9.418174 + parent: 2 + type: Transform + - uid: 3926 + components: + - pos: -25.474115,17.526388 + parent: 2 + type: Transform + - uid: 6713 + components: + - pos: 31.686785,-17.263697 + parent: 2 + type: Transform + - uid: 6714 + components: + - pos: 31.41595,-17.440903 + parent: 2 + type: Transform +- proto: MedkitOxygenFilled + entities: + - uid: 6715 + components: + - pos: 28.309996,-13.298291 + parent: 2 + type: Transform +- proto: MedkitRadiationFilled + entities: + - uid: 6717 + components: + - pos: 29.341246,-13.298291 + parent: 2 + type: Transform +- proto: MedkitToxinFilled + entities: + - uid: 6716 + components: + - pos: 28.664162,-13.444225 + parent: 2 + type: Transform +- proto: MinimoogInstrument + entities: + - uid: 333 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-14.5 + parent: 2 + type: Transform +- proto: Mirror + entities: + - uid: 3488 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,-1.5 + parent: 2 + type: Transform +- proto: MopBucket + entities: + - uid: 611 + components: + - pos: 12.346293,-8.28697 + parent: 2 + type: Transform +- proto: MopBucketFull + entities: + - uid: 1373 + components: + - pos: -11.619304,-2.5068288 + parent: 2 + type: Transform + - uid: 1374 + components: + - pos: -11.275554,-2.0481763 + parent: 2 + type: Transform + - uid: 10065 + components: + - pos: -38.332294,18.862593 + parent: 2 + type: Transform +- proto: MopItem + entities: + - uid: 661 + components: + - pos: -13.713254,-2.4941702 + parent: 2 + type: Transform + - uid: 662 + components: + - pos: 14.668055,-9.521283 + parent: 2 + type: Transform + - uid: 1377 + components: + - pos: -13.338254,-2.4941702 + parent: 2 + type: Transform + - uid: 10064 + components: + - pos: -38.551044,18.852169 + parent: 2 + type: Transform +- proto: Morgue + entities: + - uid: 2513 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-32.5 + parent: 2 + type: Transform + - uid: 2514 + components: + - rot: 3.141592653589793 rad + pos: 28.5,-32.5 + parent: 2 + type: Transform + - uid: 2515 + components: + - rot: 3.141592653589793 rad + pos: 29.5,-32.5 + parent: 2 + type: Transform + - uid: 2516 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-32.5 + parent: 2 + type: Transform + - uid: 2517 + components: + - rot: 3.141592653589793 rad + pos: 31.5,-32.5 + parent: 2 + type: Transform +- proto: Multitool + entities: + - uid: 3338 + components: + - pos: -47.653408,7.6024804 + parent: 2 + type: Transform + - uid: 9567 + components: + - pos: 27.346567,-25.498234 + parent: 2 + type: Transform + - uid: 9827 + components: + - pos: -19.402908,-8.505455 + parent: 2 + type: Transform +- proto: MusicBoxInstrument + entities: + - uid: 849 + components: + - pos: 4.6231074,-27.31225 + parent: 2 + type: Transform +- proto: NitrogenCanister + entities: + - uid: 2489 + components: + - pos: -18.5,-29.5 + parent: 2 + type: Transform +- proto: NitrousOxideCanister + entities: + - uid: 1320 + components: + - pos: -44.5,13.5 + parent: 2 + type: Transform +- proto: NuclearBombUnanchored + entities: + - uid: 2349 + components: + - pos: -0.042339146,-4.474762 + parent: 2 + type: Transform +- proto: OperatingTable + entities: + - uid: 2530 + components: + - pos: 37.5,-29.5 + parent: 2 + type: Transform + - uid: 2560 + components: + - pos: -19.5,-23.5 + parent: 2 + type: Transform +- proto: Oracle + entities: + - uid: 2363 + components: + - pos: -32.5,-11.5 + parent: 2 + type: Transform +- proto: OreBox + entities: + - uid: 8796 + components: + - pos: 29.5,27.5 + parent: 2 + type: Transform +- proto: OreProcessor + entities: + - uid: 1787 + components: + - pos: 10.5,24.5 + parent: 2 + type: Transform +- proto: OxygenCanister + entities: + - uid: 3083 + components: + - pos: 31.5,11.5 + parent: 2 + type: Transform + - uid: 3084 + components: + - pos: 31.5,12.5 + parent: 2 + type: Transform + - uid: 3091 + components: + - pos: 20.5,13.5 + parent: 2 + type: Transform + - uid: 3258 + components: + - pos: 26.5,13.5 + parent: 2 + type: Transform + - uid: 3382 + components: + - pos: -17.5,-29.5 + parent: 2 + type: Transform + - uid: 4209 + components: + - pos: 34.5,15.5 + parent: 2 + type: Transform + - uid: 5384 + components: + - pos: -43.5,19.5 + parent: 2 + type: Transform + - uid: 10212 + components: + - pos: 42.5,-18.5 + parent: 2 + type: Transform + - uid: 10232 + components: + - pos: 40.5,15.5 + parent: 2 + type: Transform +- proto: PaintingBlunt + entities: + - uid: 4633 + components: + - pos: 2.5,-4.5 + parent: 2 + type: Transform +- proto: Paper + entities: + - uid: 1579 + components: + - pos: -1.8311434,-26.285652 + parent: 2 + type: Transform + - uid: 1582 + components: + - pos: -1.7686434,-26.431587 + parent: 2 + type: Transform + - uid: 2862 + components: + - pos: -20.594444,2.8397748 + parent: 2 + type: Transform + - uid: 9543 + components: + - desc: Another one, huh... + name: the paper + type: MetaData + - pos: -48.586292,-11.4989605 + parent: 2 + type: Transform + - content: Asterisk station is made with love for Space Station 14 and the Delta-V community. Everything is made possible with the help of the friends I've made and the people I spend my days with on stations much like this one. + type: Paper + - uid: 10808 + components: + - pos: -20.41736,2.6729925 + parent: 2 + type: Transform +- proto: PaperBin10 + entities: + - uid: 1659 + components: + - pos: 9.5,15.5 + parent: 2 + type: Transform + - uid: 1914 + components: + - pos: -37.5,0.5 + parent: 2 + type: Transform + - uid: 2375 + components: + - pos: 49.5,-3.5 + parent: 2 + type: Transform + - uid: 8877 + components: + - pos: -47.5,-19.5 + parent: 2 + type: Transform +- proto: PaperOffice + entities: + - uid: 947 + components: + - pos: -1.4648452,6.8575406 + parent: 2 + type: Transform + - uid: 948 + components: + - pos: -1.2877619,6.690758 + parent: 2 + type: Transform + - uid: 1171 + components: + - pos: -14.46025,-26.499851 + parent: 2 + type: Transform + - uid: 1848 + components: + - pos: 8.412746,22.708002 + parent: 2 + type: Transform + - uid: 3833 + components: + - pos: -18.625223,-8.264786 + parent: 2 + type: Transform + - uid: 3834 + components: + - pos: -18.625223,-8.374237 + parent: 2 + type: Transform + - uid: 3835 + components: + - pos: -18.625223,-8.499325 + parent: 2 + type: Transform + - uid: 4136 + components: + - pos: 8.360663,22.54122 + parent: 2 + type: Transform + - uid: 4643 + components: + - pos: 44.271183,-2.1762183 + parent: 2 + type: Transform + - uid: 4644 + components: + - pos: 44.271183,-2.3117292 + parent: 2 + type: Transform + - uid: 4645 + components: + - pos: 44.271183,-2.4576635 + parent: 2 + type: Transform + - uid: 8981 + components: + - pos: -13.610128,-19.346096 + parent: 2 + type: Transform + - uid: 8982 + components: + - pos: -13.443461,-19.512878 + parent: 2 + type: Transform + - uid: 8983 + components: + - pos: -13.203878,-19.325249 + parent: 2 + type: Transform + - uid: 9536 + components: + - pos: 10.633109,2.6985278 + parent: 2 + type: Transform +- proto: PartRodMetal + entities: + - uid: 3036 + components: + - pos: 52.400215,8.562579 + parent: 2 + type: Transform +- proto: Pen + entities: + - uid: 2593 + components: + - pos: -14.679,-26.60409 + parent: 2 + type: Transform +- proto: PillMindbreakerToxin + entities: + - uid: 3847 + components: + - pos: -34.321957,-19.300413 + parent: 2 + type: Transform +- proto: PlasmaCanister + entities: + - uid: 1578 + components: + - pos: 33.5,15.5 + parent: 2 + type: Transform + - uid: 2174 + components: + - pos: 31.5,13.5 + parent: 2 + type: Transform + - uid: 2914 + components: + - pos: 26.5,14.5 + parent: 2 + type: Transform +- proto: PlasticFlapsAirtightClear + entities: + - uid: 306 + components: + - pos: 0.5,8.5 + parent: 2 + type: Transform + - uid: 865 + components: + - pos: 8.5,32.5 + parent: 2 + type: Transform + - uid: 1006 + components: + - pos: 3.5,15.5 + parent: 2 + type: Transform + - uid: 1167 + components: + - pos: 10.5,30.5 + parent: 2 + type: Transform + - uid: 1790 + components: + - pos: 13.5,22.5 + parent: 2 + type: Transform + - uid: 1805 + components: + - pos: 8.5,35.5 + parent: 2 + type: Transform + - uid: 1822 + components: + - pos: 3.5,32.5 + parent: 2 + type: Transform + - uid: 1835 + components: + - pos: 4.5,35.5 + parent: 2 + type: Transform + - uid: 3684 + components: + - pos: 3.5,18.5 + parent: 2 + type: Transform + - uid: 4116 + components: + - pos: 11.5,21.5 + parent: 2 + type: Transform +- proto: PlushieHampter + entities: + - uid: 10760 + components: + - pos: -44.723747,-8.556638 + parent: 2 + type: Transform +- proto: PlushieMothBartender + entities: + - uid: 4631 + components: + - pos: -1.4164879,-6.211898 + parent: 2 + type: Transform +- proto: PlushieMothMusician + entities: + - uid: 10759 + components: + - pos: -46.296665,-14.287658 + parent: 2 + type: Transform +- proto: PlushieRGBee + entities: + - uid: 10908 + components: + - pos: -38.47342,-34.569202 + parent: 2 + type: Transform +- proto: PlushieSlime + entities: + - uid: 10758 + components: + - pos: -46.202915,-12.890854 + parent: 2 + type: Transform +- proto: PlushieSpaceLizard + entities: + - uid: 10757 + components: + - pos: -44.390415,-13.516289 + parent: 2 + type: Transform + - uid: 10811 + components: + - pos: -3.5293686,-2.3354518 + parent: 2 + type: Transform +- proto: PortableGeneratorJrPacman + entities: + - uid: 10194 + components: + - pos: 42.5,-13.5 + parent: 2 + type: Transform + - uid: 10200 + components: + - pos: 17.5,4.5 + parent: 2 + type: Transform + - uid: 10201 + components: + - pos: -41.5,-21.5 + parent: 2 + type: Transform +- proto: PortableGeneratorPacman + entities: + - uid: 3090 + components: + - pos: 31.5,9.5 + parent: 2 + type: Transform + - uid: 4087 + components: + - pos: 32.5,9.5 + parent: 2 + type: Transform +- proto: PortableScrubber + entities: + - uid: 3375 + components: + - pos: 26.5,6.5 + parent: 2 + type: Transform + - uid: 3387 + components: + - pos: 25.5,6.5 + parent: 2 + type: Transform + - uid: 9521 + components: + - pos: 21.5,-30.5 + parent: 2 + type: Transform +- proto: PosterContrabandAyaya + entities: + - uid: 9566 + components: + - pos: 12.5,-13.5 + parent: 2 + type: Transform +- proto: PosterContrabandBeachStarYamamoto + entities: + - uid: 10314 + components: + - pos: -26.5,-29.5 + parent: 2 + type: Transform +- proto: PosterContrabandClown + entities: + - uid: 3730 + components: + - pos: -0.48713166,-26.425602 + parent: 2 + type: Transform +- proto: PosterLegitBarDrinks + entities: + - uid: 831 + components: + - pos: 10.5,-23.5 + parent: 2 + type: Transform +- proto: PosterLegitHotDonkExplosion + entities: + - uid: 613 + components: + - pos: -2.5,-20.5 + parent: 2 + type: Transform +- proto: PosterLegitJustAWeekAway + entities: + - uid: 10809 + components: + - pos: -2.5,-6.5 + parent: 2 + type: Transform +- proto: PosterLegitPeriodicTable + entities: + - uid: 1065 + components: + - pos: 22.5,-14.5 + parent: 2 + type: Transform +- proto: PottedPlant12 + entities: + - uid: 647 + components: + - pos: 1.2275798,19.5 + parent: 2 + type: Transform +- proto: PottedPlant2 + entities: + - uid: 11008 + components: + - pos: -35.5,2.5 + parent: 2 + type: Transform + - uid: 11010 + components: + - pos: -35.5,-2.5 + parent: 2 + type: Transform +- proto: PottedPlant21 + entities: + - uid: 4649 + components: + - pos: 47.5,1.5 + parent: 2 + type: Transform +- proto: PottedPlant28 + entities: + - uid: 10315 + components: + - pos: -29.649065,-29.681158 + parent: 2 + type: Transform +- proto: PottedPlantRandom + entities: + - uid: 337 + components: + - pos: 6.5,-14.5 + parent: 2 + type: Transform + - uid: 338 + components: + - pos: 4.5,-14.5 + parent: 2 + type: Transform + - uid: 1658 + components: + - pos: 10.5,13.5 + parent: 2 + type: Transform + - uid: 1912 + components: + - pos: -37.5,-2.5 + parent: 2 + type: Transform + - uid: 2365 + components: + - pos: 52.5,-7.5 + parent: 2 + type: Transform + - uid: 3729 + components: + - pos: -6.5,-21.5 + parent: 2 + type: Transform + - uid: 3756 + components: + - pos: -9.5,16.5 + parent: 2 + type: Transform + - uid: 3757 + components: + - pos: -2.5,19.5 + parent: 2 + type: Transform + - uid: 3829 + components: + - pos: -24.5,-16.5 + parent: 2 + type: Transform + - uid: 3830 + components: + - pos: -20.5,-8.5 + parent: 2 + type: Transform + - uid: 8730 + components: + - pos: -10.5,-28.5 + parent: 2 + type: Transform + - uid: 8760 + components: + - pos: 45.5,-12.5 + parent: 2 + type: Transform + - uid: 9716 + components: + - pos: -6.5,5.5 + parent: 2 + type: Transform + - uid: 9717 + components: + - pos: -6.5,-1.5 + parent: 2 + type: Transform + - uid: 9718 + components: + - pos: -6.5,-19.5 + parent: 2 + type: Transform + - uid: 9719 + components: + - pos: 8.5,-2.5 + parent: 2 + type: Transform + - uid: 10077 + components: + - pos: -54.5,7.5 + parent: 2 + type: Transform + - uid: 10123 + components: + - pos: -26.5,-17.5 + parent: 2 + type: Transform + - uid: 10238 + components: + - pos: -6.5,-4.5 + parent: 2 + type: Transform + - uid: 10762 + components: + - pos: 50.5,-9.5 + parent: 2 + type: Transform + - uid: 10772 + components: + - pos: -52.5,-17.5 + parent: 2 + type: Transform + - uid: 10773 + components: + - pos: -52.5,-4.5 + parent: 2 + type: Transform +- proto: PottedPlantRandomPlastic + entities: + - uid: 2707 + components: + - pos: -21.5,18.5 + parent: 2 + type: Transform + - uid: 3253 + components: + - pos: 33.5,11.5 + parent: 2 + type: Transform + - uid: 3492 + components: + - pos: -48.5,-2.5 + parent: 2 + type: Transform + - uid: 3672 + components: + - pos: -18.5,0.5 + parent: 2 + type: Transform + - uid: 3934 + components: + - pos: -16.5,19.5 + parent: 2 + type: Transform + - uid: 4015 + components: + - pos: 23.5,-29.5 + parent: 2 + type: Transform + - uid: 5380 + components: + - pos: 25.5,-7.5 + parent: 2 + type: Transform + - uid: 10385 + components: + - pos: 19.5,-13.5 + parent: 2 + type: Transform + - uid: 10386 + components: + - pos: 19.5,-7.5 + parent: 2 + type: Transform +- proto: PottedPlantRD + entities: + - uid: 3469 + components: + - pos: -33.5,-26.5 + parent: 2 + type: Transform +- proto: PowerCellRecharger + entities: + - uid: 780 + components: + - pos: 28.5,0.5 + parent: 2 + type: Transform + - uid: 2670 + components: + - pos: 27.5,-13.5 + parent: 2 + type: Transform + - uid: 2911 + components: + - pos: -21.5,7.5 + parent: 2 + type: Transform + - uid: 9529 + components: + - pos: 17.5,1.5 + parent: 2 + type: Transform + - uid: 9604 + components: + - pos: -14.5,-15.5 + parent: 2 + type: Transform + - uid: 10981 + components: + - pos: -18.5,-31.5 + parent: 2 + type: Transform +- proto: Poweredlight + entities: + - uid: 938 + components: + - pos: -4.5,19.5 + parent: 2 + type: Transform + - uid: 1226 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-32.5 + parent: 2 + type: Transform + - uid: 3402 + components: + - rot: -1.5707963267948966 rad + pos: -27.5,15.5 + parent: 2 + type: Transform + - uid: 3476 + components: + - rot: 3.141592653589793 rad + pos: -29.5,12.5 + parent: 2 + type: Transform + - uid: 3731 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-22.5 + parent: 2 + type: Transform + - uid: 3790 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-16.5 + parent: 2 + type: Transform + - uid: 4048 + components: + - pos: -26.5,-17.5 + parent: 2 + type: Transform + - uid: 4056 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,-27.5 + parent: 2 + type: Transform + - uid: 4319 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-29.5 + parent: 2 + type: Transform + - uid: 4621 + components: + - rot: 3.141592653589793 rad + pos: -24.5,12.5 + parent: 2 + type: Transform + - uid: 6723 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-2.5 + parent: 2 + type: Transform + - uid: 6724 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,2.5 + parent: 2 + type: Transform + - uid: 6725 + components: + - rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 2 + type: Transform + - uid: 6726 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 2 + type: Transform + - uid: 6727 + components: + - pos: 0.5,2.5 + parent: 2 + type: Transform + - uid: 6730 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,10.5 + parent: 2 + type: Transform + - uid: 6731 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,4.5 + parent: 2 + type: Transform + - uid: 6732 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,7.5 + parent: 2 + type: Transform + - uid: 6733 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,13.5 + parent: 2 + type: Transform + - uid: 6734 + components: + - pos: 2.5,14.5 + parent: 2 + type: Transform + - uid: 6735 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,11.5 + parent: 2 + type: Transform + - uid: 6736 + components: + - pos: 0.5,19.5 + parent: 2 + type: Transform + - uid: 6737 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,16.5 + parent: 2 + type: Transform + - uid: 6738 + components: + - rot: 3.141592653589793 rad + pos: 7.5,13.5 + parent: 2 + type: Transform + - uid: 6739 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,23.5 + parent: 2 + type: Transform + - uid: 6740 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,27.5 + parent: 2 + type: Transform + - uid: 6741 + components: + - pos: 4.5,31.5 + parent: 2 + type: Transform + - uid: 6742 + components: + - pos: 9.5,31.5 + parent: 2 + type: Transform + - uid: 6743 + components: + - rot: 3.141592653589793 rad + pos: 4.5,33.5 + parent: 2 + type: Transform + - uid: 6744 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,34.5 + parent: 2 + type: Transform + - uid: 6745 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,23.5 + parent: 2 + type: Transform + - uid: 6746 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,28.5 + parent: 2 + type: Transform + - uid: 6748 + components: + - pos: 16.5,21.5 + parent: 2 + type: Transform + - uid: 6749 + components: + - rot: 3.141592653589793 rad + pos: 14.5,18.5 + parent: 2 + type: Transform + - uid: 6750 + components: + - rot: 3.141592653589793 rad + pos: 7.5,19.5 + parent: 2 + type: Transform + - uid: 6752 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,15.5 + parent: 2 + type: Transform + - uid: 6753 + components: + - pos: -11.5,19.5 + parent: 2 + type: Transform + - uid: 6754 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,14.5 + parent: 2 + type: Transform + - uid: 6755 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,13.5 + parent: 2 + type: Transform + - uid: 6756 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,8.5 + parent: 2 + type: Transform + - uid: 6757 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,2.5 + parent: 2 + type: Transform + - uid: 6758 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,9.5 + parent: 2 + type: Transform + - uid: 6762 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-9.5 + parent: 2 + type: Transform + - uid: 6763 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-12.5 + parent: 2 + type: Transform + - uid: 6764 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 2 + type: Transform + - uid: 6766 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,-9.5 + parent: 2 + type: Transform + - uid: 6767 + components: + - pos: 4.5,-14.5 + parent: 2 + type: Transform + - uid: 6768 + components: + - pos: 6.5,-14.5 + parent: 2 + type: Transform + - uid: 6770 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-23.5 + parent: 2 + type: Transform + - uid: 6771 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-20.5 + parent: 2 + type: Transform + - uid: 6772 + components: + - pos: 14.5,-15.5 + parent: 2 + type: Transform + - uid: 6774 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-16.5 + parent: 2 + type: Transform + - uid: 6775 + components: + - rot: -1.5707963267948966 rad + pos: 22.5,-20.5 + parent: 2 + type: Transform + - uid: 6776 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-17.5 + parent: 2 + type: Transform + - uid: 6777 + components: + - rot: 3.141592653589793 rad + pos: 23.5,-13.5 + parent: 2 + type: Transform + - uid: 6778 + components: + - rot: 1.5707963267948966 rad + pos: 19.5,-10.5 + parent: 2 + type: Transform + - uid: 6779 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-11.5 + parent: 2 + type: Transform + - uid: 6780 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-9.5 + parent: 2 + type: Transform + - uid: 6781 + components: + - rot: 1.5707963267948966 rad + pos: 34.5,-9.5 + parent: 2 + type: Transform + - uid: 6782 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-14.5 + parent: 2 + type: Transform + - uid: 6783 + components: + - rot: 3.141592653589793 rad + pos: 35.5,-15.5 + parent: 2 + type: Transform + - uid: 6785 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,-1.5 + parent: 2 + type: Transform + - uid: 6786 + components: + - rot: -1.5707963267948966 rad + pos: 25.5,-24.5 + parent: 2 + type: Transform + - uid: 6787 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-24.5 + parent: 2 + type: Transform + - uid: 6789 + components: + - rot: 3.141592653589793 rad + pos: 30.5,-28.5 + parent: 2 + type: Transform + - uid: 6790 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,-29.5 + parent: 2 + type: Transform + - uid: 6792 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,-21.5 + parent: 2 + type: Transform + - uid: 6793 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,-29.5 + parent: 2 + type: Transform + - uid: 6794 + components: + - pos: 37.5,-25.5 + parent: 2 + type: Transform + - uid: 6795 + components: + - pos: 33.5,-17.5 + parent: 2 + type: Transform + - uid: 6796 + components: + - pos: 23.5,-4.5 + parent: 2 + type: Transform + - uid: 6797 + components: + - rot: 3.141592653589793 rad + pos: 18.5,-6.5 + parent: 2 + type: Transform + - uid: 6798 + components: + - pos: 29.5,-4.5 + parent: 2 + type: Transform + - uid: 6799 + components: + - rot: 3.141592653589793 rad + pos: 33.5,-6.5 + parent: 2 + type: Transform + - uid: 6800 + components: + - rot: -1.5707963267948966 rad + pos: 35.5,-3.5 + parent: 2 + type: Transform + - uid: 6801 + components: + - rot: 1.5707963267948966 rad + pos: 33.5,1.5 + parent: 2 + type: Transform + - uid: 6802 + components: + - rot: 3.141592653589793 rad + pos: 39.5,-0.5 + parent: 2 + type: Transform + - uid: 6803 + components: + - rot: 3.141592653589793 rad + pos: 25.5,-2.5 + parent: 2 + type: Transform + - uid: 6804 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-1.5 + parent: 2 + type: Transform + - uid: 6805 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,2.5 + parent: 2 + type: Transform + - uid: 6806 + components: + - rot: -1.5707963267948966 rad + pos: 26.5,3.5 + parent: 2 + type: Transform + - uid: 6807 + components: + - rot: 1.5707963267948966 rad + pos: 17.5,4.5 + parent: 2 + type: Transform + - uid: 6808 + components: + - rot: 3.141592653589793 rad + pos: 22.5,3.5 + parent: 2 + type: Transform + - uid: 6809 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,10.5 + parent: 2 + type: Transform + - uid: 6810 + components: + - rot: 3.141592653589793 rad + pos: 21.5,11.5 + parent: 2 + type: Transform + - uid: 6811 + components: + - rot: 3.141592653589793 rad + pos: 23.5,11.5 + parent: 2 + type: Transform + - uid: 6812 + components: + - pos: 25.5,16.5 + parent: 2 + type: Transform + - uid: 6813 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,14.5 + parent: 2 + type: Transform + - uid: 6814 + components: + - pos: 34.5,16.5 + parent: 2 + type: Transform + - uid: 6815 + components: + - pos: 18.5,16.5 + parent: 2 + type: Transform + - uid: 6816 + components: + - rot: 3.141592653589793 rad + pos: 32.5,4.5 + parent: 2 + type: Transform + - uid: 6817 + components: + - rot: 3.141592653589793 rad + pos: 39.5,4.5 + parent: 2 + type: Transform + - uid: 6818 + components: + - pos: 43.5,10.5 + parent: 2 + type: Transform + - uid: 6819 + components: + - pos: 35.5,13.5 + parent: 2 + type: Transform + - uid: 6820 + components: + - pos: 37.5,9.5 + parent: 2 + type: Transform + - uid: 6825 + components: + - pos: 38.5,-20.5 + parent: 2 + type: Transform + - uid: 6826 + components: + - rot: 3.141592653589793 rad + pos: 38.5,-23.5 + parent: 2 + type: Transform + - uid: 6828 + components: + - pos: -1.5,-10.5 + parent: 2 + type: Transform + - uid: 6829 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-18.5 + parent: 2 + type: Transform + - uid: 6830 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-19.5 + parent: 2 + type: Transform + - uid: 6831 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-14.5 + parent: 2 + type: Transform + - uid: 6832 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-14.5 + parent: 2 + type: Transform + - uid: 6833 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-9.5 + parent: 2 + type: Transform + - uid: 6834 + components: + - rot: 1.5707963267948966 rad + pos: -13.5,-9.5 + parent: 2 + type: Transform + - uid: 6835 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-6.5 + parent: 2 + type: Transform + - uid: 6836 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-12.5 + parent: 2 + type: Transform + - uid: 6837 + components: + - rot: 3.141592653589793 rad + pos: -16.5,-7.5 + parent: 2 + type: Transform + - uid: 6847 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-28.5 + parent: 2 + type: Transform + - uid: 6848 + components: + - pos: -3.5,-26.5 + parent: 2 + type: Transform + - uid: 6849 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-24.5 + parent: 2 + type: Transform + - uid: 6850 + components: + - pos: -0.5,-21.5 + parent: 2 + type: Transform + - uid: 6852 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 2 + type: Transform + - uid: 6857 + components: + - pos: 19.5,1.5 + parent: 2 + type: Transform + - uid: 6860 + components: + - pos: 30.5,9.5 + parent: 2 + type: Transform + - uid: 8112 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-28.5 + parent: 2 + type: Transform + - uid: 8599 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,-14.5 + parent: 2 + type: Transform + - uid: 8731 + components: + - pos: -9.5,-21.5 + parent: 2 + type: Transform + - uid: 8732 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-28.5 + parent: 2 + type: Transform + - uid: 8734 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-32.5 + parent: 2 + type: Transform + - uid: 8736 + components: + - pos: -17.5,-29.5 + parent: 2 + type: Transform + - uid: 8737 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-20.5 + parent: 2 + type: Transform + - uid: 8738 + components: + - rot: 1.5707963267948966 rad + pos: 11.5,-19.5 + parent: 2 + type: Transform + - uid: 8750 + components: + - pos: 44.5,-4.5 + parent: 2 + type: Transform + - uid: 8751 + components: + - rot: 1.5707963267948966 rad + pos: 44.5,-1.5 + parent: 2 + type: Transform + - uid: 8752 + components: + - pos: 49.5,1.5 + parent: 2 + type: Transform + - uid: 8753 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,0.5 + parent: 2 + type: Transform + - uid: 8755 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,-4.5 + parent: 2 + type: Transform + - uid: 8756 + components: + - rot: 1.5707963267948966 rad + pos: 48.5,-6.5 + parent: 2 + type: Transform + - uid: 8757 + components: + - pos: 48.5,-9.5 + parent: 2 + type: Transform + - uid: 8758 + components: + - pos: 46.5,-8.5 + parent: 2 + type: Transform + - uid: 8818 + components: + - rot: 3.141592653589793 rad + pos: -24.5,-6.5 + parent: 2 + type: Transform + - uid: 8819 + components: + - pos: -28.5,-4.5 + parent: 2 + type: Transform + - uid: 8820 + components: + - rot: 3.141592653589793 rad + pos: -34.5,-6.5 + parent: 2 + type: Transform + - uid: 8821 + components: + - pos: -40.5,-4.5 + parent: 2 + type: Transform + - uid: 8822 + components: + - rot: 3.141592653589793 rad + pos: -44.5,-6.5 + parent: 2 + type: Transform + - uid: 8823 + components: + - pos: -49.5,-4.5 + parent: 2 + type: Transform + - uid: 8824 + components: + - rot: 1.5707963267948966 rad + pos: -52.5,-9.5 + parent: 2 + type: Transform + - uid: 8826 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-14.5 + parent: 2 + type: Transform + - uid: 8827 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-11.5 + parent: 2 + type: Transform + - uid: 8828 + components: + - rot: 1.5707963267948966 rad + pos: -33.5,-13.5 + parent: 2 + type: Transform + - uid: 8829 + components: + - pos: -35.5,-14.5 + parent: 2 + type: Transform + - uid: 8831 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-18.5 + parent: 2 + type: Transform + - uid: 8834 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-23.5 + parent: 2 + type: Transform + - uid: 8835 + components: + - pos: -53.5,9.5 + parent: 2 + type: Transform + - uid: 8984 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,2.5 + parent: 2 + type: Transform + - uid: 8986 + components: + - rot: -1.5707963267948966 rad + pos: 8.5,5.5 + parent: 2 + type: Transform + - uid: 9186 + components: + - pos: 39.5,-4.5 + parent: 2 + type: Transform + - uid: 9191 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-10.5 + parent: 2 + type: Transform + - uid: 9192 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-14.5 + parent: 2 + type: Transform + - uid: 9193 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-20.5 + parent: 2 + type: Transform + - uid: 9194 + components: + - pos: -18.5,-16.5 + parent: 2 + type: Transform + - uid: 9195 + components: + - rot: 3.141592653589793 rad + pos: -28.5,-27.5 + parent: 2 + type: Transform + - uid: 9196 + components: + - rot: 1.5707963267948966 rad + pos: -35.5,-23.5 + parent: 2 + type: Transform + - uid: 9202 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,19.5 + parent: 2 + type: Transform + - type: Timer + - uid: 9203 + components: + - rot: -1.5707963267948966 rad + pos: 34.5,19.5 + parent: 2 + type: Transform + - uid: 9214 + components: + - pos: -19.5,0.5 + parent: 2 + type: Transform + - uid: 9216 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-1.5 + parent: 2 + type: Transform + - uid: 9217 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,-1.5 + parent: 2 + type: Transform + - uid: 9218 + components: + - pos: -41.5,-8.5 + parent: 2 + type: Transform + - uid: 9219 + components: + - rot: 3.141592653589793 rad + pos: -28.5,-2.5 + parent: 2 + type: Transform + - uid: 9220 + components: + - pos: -28.5,2.5 + parent: 2 + type: Transform + - uid: 9221 + components: + - pos: -34.5,2.5 + parent: 2 + type: Transform + - uid: 9222 + components: + - rot: 3.141592653589793 rad + pos: -34.5,-2.5 + parent: 2 + type: Transform + - uid: 9223 + components: + - rot: 3.141592653589793 rad + pos: -38.5,-12.5 + parent: 2 + type: Transform + - uid: 9224 + components: + - pos: -35.5,-8.5 + parent: 2 + type: Transform + - uid: 9225 + components: + - rot: 1.5707963267948966 rad + pos: -42.5,-15.5 + parent: 2 + type: Transform + - uid: 9239 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,-25.5 + parent: 2 + type: Transform + - uid: 9251 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,10.5 + parent: 2 + type: Transform + - uid: 9257 + components: + - rot: 3.141592653589793 rad + pos: -22.5,7.5 + parent: 2 + type: Transform + - uid: 9258 + components: + - pos: -32.5,9.5 + parent: 2 + type: Transform + - uid: 9259 + components: + - rot: 3.141592653589793 rad + pos: -28.5,7.5 + parent: 2 + type: Transform + - uid: 9260 + components: + - rot: 3.141592653589793 rad + pos: -32.5,4.5 + parent: 2 + type: Transform + - uid: 9261 + components: + - pos: -38.5,9.5 + parent: 2 + type: Transform + - uid: 9262 + components: + - rot: -1.5707963267948966 rad + pos: -36.5,5.5 + parent: 2 + type: Transform + - uid: 9263 + components: + - pos: -45.5,9.5 + parent: 2 + type: Transform + - uid: 9264 + components: + - rot: 3.141592653589793 rad + pos: -42.5,4.5 + parent: 2 + type: Transform + - uid: 9265 + components: + - pos: -43.5,14.5 + parent: 2 + type: Transform + - uid: 9266 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,13.5 + parent: 2 + type: Transform + - uid: 9267 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,16.5 + parent: 2 + type: Transform + - uid: 9268 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,4.5 + parent: 2 + type: Transform + - uid: 9269 + components: + - rot: 3.141592653589793 rad + pos: -38.5,11.5 + parent: 2 + type: Transform + - uid: 9270 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,21.5 + parent: 2 + type: Transform + - uid: 9271 + components: + - rot: 3.141592653589793 rad + pos: -35.5,15.5 + parent: 2 + type: Transform + - uid: 9272 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,21.5 + parent: 2 + type: Transform + - uid: 9273 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,21.5 + parent: 2 + type: Transform + - uid: 9274 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,21.5 + parent: 2 + type: Transform + - uid: 9275 + components: + - pos: -12.5,-17.5 + parent: 2 + type: Transform + - uid: 9279 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,16.5 + parent: 2 + type: Transform + - uid: 9281 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,10.5 + parent: 2 + type: Transform + - uid: 9282 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,13.5 + parent: 2 + type: Transform + - uid: 9292 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-21.5 + parent: 2 + type: Transform + - uid: 9334 + components: + - rot: -1.5707963267948966 rad + pos: -47.5,-21.5 + parent: 2 + type: Transform + - uid: 9335 + components: + - rot: 3.141592653589793 rad + pos: -52.5,-21.5 + parent: 2 + type: Transform + - uid: 9456 + components: + - pos: 27.5,-22.5 + parent: 2 + type: Transform + - uid: 9485 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,-7.5 + parent: 2 + type: Transform + - uid: 9486 + components: + - rot: 1.5707963267948966 rad + pos: -55.5,-15.5 + parent: 2 + type: Transform + - uid: 9541 + components: + - pos: 44.5,-15.5 + parent: 2 + type: Transform + - uid: 9542 + components: + - rot: 1.5707963267948966 rad + pos: 45.5,-14.5 + parent: 2 + type: Transform + - uid: 9550 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,29.5 + parent: 2 + type: Transform + - uid: 9621 + components: + - pos: 11.5,-3.5 + parent: 2 + type: Transform + - uid: 9850 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,17.5 + parent: 2 + type: Transform + - uid: 9921 + components: + - pos: -25.5,5.5 + parent: 2 + type: Transform + - uid: 9922 + components: + - pos: -20.5,5.5 + parent: 2 + type: Transform + - uid: 9945 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-1.5 + parent: 2 + type: Transform + - uid: 10783 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,15.5 + parent: 2 + type: Transform + - uid: 10785 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,19.5 + parent: 2 + type: Transform + - uid: 10901 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-36.5 + parent: 2 + type: Transform +- proto: PoweredLightColoredBlack + entities: + - uid: 6845 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-29.5 + parent: 2 + type: Transform +- proto: PoweredLightColoredFrostyBlue + entities: + - uid: 6769 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-23.5 + parent: 2 + type: Transform + - uid: 6846 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-26.5 + parent: 2 + type: Transform +- proto: PoweredlightEmpty + entities: + - uid: 3045 + components: + - pos: -46.5,23.5 + parent: 2 + type: Transform +- proto: PoweredlightExterior + entities: + - uid: 458 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-5.5 + parent: 2 + type: Transform + - uid: 3952 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 2 + type: Transform + - uid: 6842 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 2 + type: Transform + - uid: 8795 + components: + - rot: 1.5707963267948966 rad + pos: 21.5,26.5 + parent: 2 + type: Transform + - uid: 9283 + components: + - rot: 1.5707963267948966 rad + pos: 49.5,8.5 + parent: 2 + type: Transform + - uid: 9433 + components: + - rot: 1.5707963267948966 rad + pos: 54.5,-2.5 + parent: 2 + type: Transform + - uid: 9434 + components: + - rot: 1.5707963267948966 rad + pos: 54.5,-8.5 + parent: 2 + type: Transform + - uid: 9731 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,26.5 + parent: 2 + type: Transform + - uid: 9732 + components: + - rot: 3.141592653589793 rad + pos: 1.5,33.5 + parent: 2 + type: Transform + - uid: 9733 + components: + - rot: 3.141592653589793 rad + pos: 10.5,33.5 + parent: 2 + type: Transform +- proto: PoweredLightPostSmall + entities: + - uid: 9738 + components: + - pos: 57.5,25.5 + parent: 2 + type: Transform + - uid: 9739 + components: + - pos: 57.5,5.5 + parent: 2 + type: Transform + - uid: 9740 + components: + - pos: 29.5,30.5 + parent: 2 + type: Transform + - uid: 9741 + components: + - pos: 23.5,30.5 + parent: 2 + type: Transform + - uid: 9742 + components: + - pos: 28.5,23.5 + parent: 2 + type: Transform + - type: Timer +- proto: PoweredSmallLight + entities: + - uid: 629 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,9.5 + parent: 2 + type: Transform + - uid: 630 + components: + - rot: -1.5707963267948966 rad + pos: 21.5,9.5 + parent: 2 + type: Transform + - uid: 1319 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-13.5 + parent: 2 + type: Transform + - uid: 6728 + components: + - pos: 4.5,7.5 + parent: 2 + type: Transform + - uid: 6729 + components: + - pos: 1.5,7.5 + parent: 2 + type: Transform + - uid: 6760 + components: + - rot: 3.141592653589793 rad + pos: 11.5,9.5 + parent: 2 + type: Transform + - uid: 6791 + components: + - pos: 28.5,-30.5 + parent: 2 + type: Transform + - uid: 6838 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-1.5 + parent: 2 + type: Transform + - uid: 6855 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,18.5 + parent: 2 + type: Transform + - uid: 6858 + components: + - pos: 20.5,21.5 + parent: 2 + type: Transform + - uid: 6859 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,19.5 + parent: 2 + type: Transform + - type: Timer + - uid: 8762 + components: + - rot: -1.5707963267948966 rad + pos: 43.5,-12.5 + parent: 2 + type: Transform + - uid: 8767 + components: + - rot: -1.5707963267948966 rad + pos: -41.5,-21.5 + parent: 2 + type: Transform + - uid: 8768 + components: + - pos: 20.5,-30.5 + parent: 2 + type: Transform + - uid: 8769 + components: + - rot: 3.141592653589793 rad + pos: -53.5,14.5 + parent: 2 + type: Transform + - uid: 8770 + components: + - rot: 3.141592653589793 rad + pos: -13.5,2.5 + parent: 2 + type: Transform + - uid: 8772 + components: + - pos: 12.5,-22.5 + parent: 2 + type: Transform + - uid: 8990 + components: + - rot: 3.141592653589793 rad + pos: 11.5,6.5 + parent: 2 + type: Transform + - uid: 9209 + components: + - pos: 12.5,-28.5 + parent: 2 + type: Transform + - uid: 9549 + components: + - rot: -1.5707963267948966 rad + pos: 19.5,24.5 + parent: 2 + type: Transform + - uid: 9707 + components: + - pos: -42.5,-24.5 + parent: 2 + type: Transform +- proto: PoweredSmallLightMaintenance + entities: + - uid: 6823 + components: + - pos: 37.5,20.5 + parent: 2 + type: Transform + - uid: 7304 + components: + - pos: -13.5,-21.5 + parent: 2 + type: Transform + - uid: 9199 + components: + - pos: -13.5,-26.5 + parent: 2 + type: Transform + - uid: 9737 + components: + - rot: 3.141592653589793 rad + pos: 46.5,6.5 + parent: 2 + type: Transform +- proto: PoweredSmallLightMaintenanceRed + entities: + - uid: 4289 + components: + - rot: 1.5707963267948966 rad + pos: -11.5,3.5 + parent: 2 + type: Transform + - uid: 6759 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-1.5 + parent: 2 + type: Transform + - uid: 6821 + components: + - rot: 1.5707963267948966 rad + pos: 39.5,12.5 + parent: 2 + type: Transform + - uid: 6822 + components: + - rot: 3.141592653589793 rad + pos: 38.5,16.5 + parent: 2 + type: Transform + - uid: 6824 + components: + - pos: 41.5,-1.5 + parent: 2 + type: Transform + - uid: 6827 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-13.5 + parent: 2 + type: Transform + - uid: 6840 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,10.5 + parent: 2 + type: Transform + - uid: 6841 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-0.5 + parent: 2 + type: Transform + - uid: 6843 + components: + - pos: 15.5,-12.5 + parent: 2 + type: Transform + - uid: 6853 + components: + - rot: 1.5707963267948966 rad + pos: 14.5,5.5 + parent: 2 + type: Transform + - uid: 6854 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,10.5 + parent: 2 + type: Transform + - uid: 6856 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,14.5 + parent: 2 + type: Transform + - uid: 8761 + components: + - pos: 41.5,-8.5 + parent: 2 + type: Transform + - uid: 8763 + components: + - rot: 3.141592653589793 rad + pos: 40.5,-18.5 + parent: 2 + type: Transform + - uid: 8764 + components: + - pos: 31.5,-34.5 + parent: 2 + type: Transform + - uid: 8765 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-34.5 + parent: 2 + type: Transform + - uid: 8766 + components: + - rot: 1.5707963267948966 rad + pos: 40.5,-30.5 + parent: 2 + type: Transform + - uid: 8771 + components: + - rot: -1.5707963267948966 rad + pos: -16.5,4.5 + parent: 2 + type: Transform + - uid: 9204 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-23.5 + parent: 2 + type: Transform + - uid: 9205 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,-29.5 + parent: 2 + type: Transform + - uid: 9206 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-26.5 + parent: 2 + type: Transform + - uid: 9207 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-30.5 + parent: 2 + type: Transform + - uid: 9208 + components: + - pos: -3.5,-31.5 + parent: 2 + type: Transform + - uid: 9210 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-17.5 + parent: 2 + type: Transform + - uid: 9211 + components: + - rot: 3.141592653589793 rad + pos: -20.5,-30.5 + parent: 2 + type: Transform + - uid: 9212 + components: + - rot: 1.5707963267948966 rad + pos: -16.5,-24.5 + parent: 2 + type: Transform + - uid: 9213 + components: + - rot: -1.5707963267948966 rad + pos: -15.5,-10.5 + parent: 2 + type: Transform + - uid: 9226 + components: + - pos: -32.5,-30.5 + parent: 2 + type: Transform + - uid: 9227 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-27.5 + parent: 2 + type: Transform + - uid: 9228 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,-19.5 + parent: 2 + type: Transform + - uid: 9229 + components: + - pos: -45.5,-16.5 + parent: 2 + type: Transform + - uid: 9252 + components: + - rot: 1.5707963267948966 rad + pos: -43.5,0.5 + parent: 2 + type: Transform + - uid: 9253 + components: + - pos: -51.5,1.5 + parent: 2 + type: Transform + - uid: 9254 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,11.5 + parent: 2 + type: Transform + - uid: 9255 + components: + - pos: -47.5,19.5 + parent: 2 + type: Transform + - uid: 9256 + components: + - rot: 3.141592653589793 rad + pos: -43.5,17.5 + parent: 2 + type: Transform + - uid: 9280 + components: + - rot: 3.141592653589793 rad + pos: -12.5,-15.5 + parent: 2 + type: Transform + - uid: 10924 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-33.5 + parent: 2 + type: Transform + - uid: 10946 + components: + - pos: -29.5,-32.5 + parent: 2 + type: Transform +- proto: Protolathe + entities: + - uid: 2568 + components: + - pos: -30.5,-19.5 + parent: 2 + type: Transform +- proto: ProtolatheMachineCircuitboard + entities: + - uid: 9326 + components: + - pos: 46.658962,-16.646505 + parent: 2 + type: Transform +- proto: Rack + entities: + - uid: 165 + components: + - pos: -0.5,-23.5 + parent: 2 + type: Transform + - uid: 266 + components: + - pos: -4.5,-22.5 + parent: 2 + type: Transform + - uid: 267 + components: + - pos: -4.5,-21.5 + parent: 2 + type: Transform + - uid: 290 + components: + - pos: -29.5,7.5 + parent: 2 + type: Transform + - uid: 381 + components: + - pos: 14.5,-9.5 + parent: 2 + type: Transform + - uid: 609 + components: + - rot: -1.5707963267948966 rad + pos: -13.5,-29.5 + parent: 2 + type: Transform + - uid: 635 + components: + - pos: 44.5,-4.5 + parent: 2 + type: Transform + - uid: 655 + components: + - pos: 14.5,-10.5 + parent: 2 + type: Transform + - uid: 657 + components: + - pos: 13.5,-10.5 + parent: 2 + type: Transform + - uid: 658 + components: + - pos: 12.5,-10.5 + parent: 2 + type: Transform + - uid: 795 + components: + - pos: 26.5,2.5 + parent: 2 + type: Transform + - uid: 796 + components: + - pos: 26.5,1.5 + parent: 2 + type: Transform + - uid: 797 + components: + - pos: 26.5,0.5 + parent: 2 + type: Transform + - uid: 844 + components: + - pos: 4.5,-27.5 + parent: 2 + type: Transform + - uid: 932 + components: + - pos: -0.5,9.5 + parent: 2 + type: Transform + - uid: 1010 + components: + - pos: -1.5,9.5 + parent: 2 + type: Transform + - uid: 1040 + components: + - pos: -2.5,9.5 + parent: 2 + type: Transform + - uid: 1126 + components: + - pos: -29.5,8.5 + parent: 2 + type: Transform + - uid: 1324 + components: + - pos: -42.5,11.5 + parent: 2 + type: Transform + - uid: 1368 + components: + - pos: -13.5,-2.5 + parent: 2 + type: Transform + - uid: 1369 + components: + - pos: -13.5,-1.5 + parent: 2 + type: Transform + - uid: 1405 + components: + - pos: -41.5,11.5 + parent: 2 + type: Transform + - uid: 1888 + components: + - pos: 31.5,-0.5 + parent: 2 + type: Transform + - uid: 2152 + components: + - pos: 34.5,20.5 + parent: 2 + type: Transform + - uid: 2154 + components: + - pos: 33.5,20.5 + parent: 2 + type: Transform + - uid: 2191 + components: + - rot: 1.5707963267948966 rad + pos: 28.5,-13.5 + parent: 2 + type: Transform + - uid: 2243 + components: + - rot: 1.5707963267948966 rad + pos: 31.5,-17.5 + parent: 2 + type: Transform + - uid: 2425 + components: + - rot: 1.5707963267948966 rad + pos: 29.5,-13.5 + parent: 2 + type: Transform + - uid: 2490 + components: + - pos: 27.5,-25.5 + parent: 2 + type: Transform + - uid: 2562 + components: + - pos: -22.5,-27.5 + parent: 2 + type: Transform + - uid: 2563 + components: + - pos: -22.5,-26.5 + parent: 2 + type: Transform + - uid: 2663 + components: + - pos: -27.5,7.5 + parent: 2 + type: Transform + - uid: 2664 + components: + - pos: -27.5,8.5 + parent: 2 + type: Transform + - uid: 2697 + components: + - pos: -25.5,17.5 + parent: 2 + type: Transform + - uid: 2698 + components: + - pos: -24.5,17.5 + parent: 2 + type: Transform + - uid: 2901 + components: + - pos: -36.5,15.5 + parent: 2 + type: Transform + - uid: 2946 + components: + - pos: 32.5,20.5 + parent: 2 + type: Transform + - uid: 3018 + components: + - pos: 53.5,8.5 + parent: 2 + type: Transform + - uid: 3019 + components: + - pos: 52.5,8.5 + parent: 2 + type: Transform + - uid: 3141 + components: + - pos: 9.5,23.5 + parent: 2 + type: Transform + - uid: 3332 + components: + - pos: -47.5,7.5 + parent: 2 + type: Transform + - uid: 3477 + components: + - pos: -1.5,-6.5 + parent: 2 + type: Transform + - uid: 3719 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-29.5 + parent: 2 + type: Transform + - uid: 3742 + components: + - pos: -15.5,14.5 + parent: 2 + type: Transform + - uid: 4039 + components: + - pos: 22.5,-22.5 + parent: 2 + type: Transform + - uid: 9301 + components: + - pos: 47.5,-14.5 + parent: 2 + type: Transform + - uid: 9302 + components: + - pos: 47.5,-15.5 + parent: 2 + type: Transform + - uid: 9303 + components: + - pos: 47.5,-16.5 + parent: 2 + type: Transform + - uid: 9304 + components: + - pos: 45.5,-16.5 + parent: 2 + type: Transform + - uid: 9305 + components: + - pos: 44.5,-16.5 + parent: 2 + type: Transform + - uid: 9323 + components: + - pos: 46.5,-16.5 + parent: 2 + type: Transform + - uid: 9483 + components: + - pos: 10.5,7.5 + parent: 2 + type: Transform + - uid: 10225 + components: + - pos: 33.5,9.5 + parent: 2 + type: Transform + - uid: 10228 + components: + - pos: 18.5,9.5 + parent: 2 + type: Transform +- proto: RadioHandheld + entities: + - uid: 9569 + components: + - pos: -13.115881,-19.548454 + parent: 2 + type: Transform +- proto: RagItem + entities: + - uid: 4070 + components: + - pos: 5.377792,-20.374823 + parent: 2 + type: Transform +- proto: Railing + entities: + - uid: 282 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-14.5 + parent: 2 + type: Transform + - uid: 1159 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,14.5 + parent: 2 + type: Transform + - uid: 1334 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-12.5 + parent: 2 + type: Transform + - uid: 1496 + components: + - rot: -1.5707963267948966 rad + pos: -32.5,-13.5 + parent: 2 + type: Transform + - uid: 1498 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-12.5 + parent: 2 + type: Transform + - uid: 1499 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-13.5 + parent: 2 + type: Transform + - uid: 1786 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,22.5 + parent: 2 + type: Transform + - uid: 1821 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,23.5 + parent: 2 + type: Transform + - uid: 1834 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,21.5 + parent: 2 + type: Transform + - uid: 1837 + components: + - pos: 9.5,27.5 + parent: 2 + type: Transform + - uid: 1877 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,31.5 + parent: 2 + type: Transform + - uid: 4149 + components: + - rot: 3.141592653589793 rad + pos: 7.5,24.5 + parent: 2 + type: Transform +- proto: RailingCorner + entities: + - uid: 283 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-15.5 + parent: 2 + type: Transform + - uid: 1328 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-11.5 + parent: 2 + type: Transform + - uid: 1497 + components: + - rot: 3.141592653589793 rad + pos: -32.5,-11.5 + parent: 2 + type: Transform + - uid: 1817 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,30.5 + parent: 2 + type: Transform + - uid: 1824 + components: + - rot: 3.141592653589793 rad + pos: 6.5,24.5 + parent: 2 + type: Transform +- proto: RandomArtifactSpawner + entities: + - uid: 3822 + components: + - pos: -19.5,-13.5 + parent: 2 + type: Transform +- proto: RandomBoards + entities: + - uid: 670 + components: + - pos: 10.5,-10.5 + parent: 2 + type: Transform + - uid: 3241 + components: + - pos: 42.5,9.5 + parent: 2 + type: Transform +- proto: RandomDrinkBottle + entities: + - uid: 10818 + components: + - pos: 6.5,-23.5 + parent: 2 + type: Transform +- proto: RandomDrinkGlass + entities: + - uid: 10221 + components: + - pos: 7.5,-16.5 + parent: 2 + type: Transform + - uid: 10231 + components: + - pos: 3.5,-18.5 + parent: 2 + type: Transform + - uid: 10817 + components: + - pos: 7.5,-20.5 + parent: 2 + type: Transform +- proto: RandomFoodBakedWhole + entities: + - uid: 10814 + components: + - pos: -2.5,-17.5 + parent: 2 + type: Transform + - chance: 1 + type: RandomSpawner +- proto: RandomFoodMeal + entities: + - uid: 10812 + components: + - pos: 0.5,-17.5 + parent: 2 + type: Transform + - uid: 10813 + components: + - pos: 0.5,-16.5 + parent: 2 + type: Transform +- proto: RandomItem + entities: + - uid: 10815 + components: + - pos: 3.5,-16.5 + parent: 2 + type: Transform + - uid: 10816 + components: + - pos: 7.5,-17.5 + parent: 2 + type: Transform + - uid: 10876 + components: + - pos: -9.5,-21.5 + parent: 2 + type: Transform +- proto: RandomPainting + entities: + - uid: 9563 + components: + - pos: 44.5,-11.5 + parent: 2 + type: Transform + - uid: 9564 + components: + - pos: 46.5,-7.5 + parent: 2 + type: Transform + - uid: 9565 + components: + - pos: 48.5,1.5 + parent: 2 + type: Transform + - uid: 10247 + components: + - pos: 36.5,-20.5 + parent: 2 + type: Transform + - uid: 10345 + components: + - pos: 22.5,-29.5 + parent: 2 + type: Transform + - uid: 10357 + components: + - pos: 3.5,-21.5 + parent: 2 + type: Transform + - uid: 10358 + components: + - pos: 11.5,14.5 + parent: 2 + type: Transform + - uid: 11009 + components: + - pos: -36.5,1.5 + parent: 2 + type: Transform +- proto: RandomPosterAny + entities: + - uid: 10245 + components: + - pos: 3.5,-28.5 + parent: 2 + type: Transform + - uid: 10246 + components: + - pos: 0.5,-30.5 + parent: 2 + type: Transform + - uid: 10261 + components: + - pos: 40.5,16.5 + parent: 2 + type: Transform + - uid: 10265 + components: + - pos: 20.5,-32.5 + parent: 2 + type: Transform + - uid: 10266 + components: + - pos: 41.5,-0.5 + parent: 2 + type: Transform + - uid: 10328 + components: + - pos: -46.5,-21.5 + parent: 2 + type: Transform + - uid: 10343 + components: + - pos: 13.5,11.5 + parent: 2 + type: Transform + - uid: 10348 + components: + - pos: 41.5,-10.5 + parent: 2 + type: Transform + - uid: 10350 + components: + - pos: 42.5,-24.5 + parent: 2 + type: Transform + - uid: 10351 + components: + - pos: 41.5,-33.5 + parent: 2 + type: Transform + - uid: 10352 + components: + - pos: 9.5,-32.5 + parent: 2 + type: Transform + - uid: 10353 + components: + - pos: 10.5,-28.5 + parent: 2 + type: Transform + - uid: 10354 + components: + - pos: 15.5,-32.5 + parent: 2 + type: Transform + - uid: 10950 + components: + - pos: -37.5,-33.5 + parent: 2 + type: Transform + - uid: 10953 + components: + - pos: -41.5,-23.5 + parent: 2 + type: Transform + - uid: 10956 + components: + - pos: 9.5,8.5 + parent: 2 + type: Transform +- proto: RandomPosterContraband + entities: + - uid: 10949 + components: + - pos: -31.5,-32.5 + parent: 2 + type: Transform + - uid: 10951 + components: + - pos: -45.5,-29.5 + parent: 2 + type: Transform +- proto: RandomPosterLegit + entities: + - uid: 10240 + components: + - pos: 9.5,-13.5 + parent: 2 + type: Transform + - uid: 10241 + components: + - pos: 0.5,-14.5 + parent: 2 + type: Transform + - uid: 10242 + components: + - pos: -5.5,-18.5 + parent: 2 + type: Transform + - uid: 10243 + components: + - pos: -5.5,-14.5 + parent: 2 + type: Transform + - uid: 10244 + components: + - pos: -5.5,-22.5 + parent: 2 + type: Transform + - uid: 10248 + components: + - pos: 9.5,-20.5 + parent: 2 + type: Transform + - uid: 10249 + components: + - pos: 0.5,-19.5 + parent: 2 + type: Transform + - uid: 10250 + components: + - pos: 14.5,-3.5 + parent: 2 + type: Transform + - uid: 10251 + components: + - pos: 11.5,-21.5 + parent: 2 + type: Transform + - uid: 10252 + components: + - pos: 14.5,-21.5 + parent: 2 + type: Transform + - uid: 10253 + components: + - pos: 23.5,-3.5 + parent: 2 + type: Transform + - uid: 10254 + components: + - pos: 36.5,-3.5 + parent: 2 + type: Transform + - uid: 10255 + components: + - pos: 27.5,1.5 + parent: 2 + type: Transform + - uid: 10256 + components: + - pos: 36.5,3.5 + parent: 2 + type: Transform + - uid: 10257 + components: + - pos: 31.5,10.5 + parent: 2 + type: Transform + - uid: 10258 + components: + - pos: 15.5,12.5 + parent: 2 + type: Transform + - uid: 10259 + components: + - pos: 16.5,8.5 + parent: 2 + type: Transform + - uid: 10260 + components: + - pos: 35.5,15.5 + parent: 2 + type: Transform + - uid: 10262 + components: + - pos: 44.5,3.5 + parent: 2 + type: Transform + - uid: 10263 + components: + - pos: 43.5,-3.5 + parent: 2 + type: Transform + - uid: 10264 + components: + - pos: 43.5,-14.5 + parent: 2 + type: Transform + - uid: 10323 + components: + - pos: -12.5,-13.5 + parent: 2 + type: Transform + - uid: 10324 + components: + - pos: -10.5,-7.5 + parent: 2 + type: Transform + - uid: 10325 + components: + - pos: -34.5,-7.5 + parent: 2 + type: Transform + - uid: 10326 + components: + - pos: -44.5,-3.5 + parent: 2 + type: Transform + - uid: 10327 + components: + - pos: -52.5,-22.5 + parent: 2 + type: Transform + - uid: 10329 + components: + - pos: -48.5,-15.5 + parent: 2 + type: Transform + - uid: 10330 + components: + - pos: -45.5,14.5 + parent: 2 + type: Transform + - uid: 10331 + components: + - pos: -50.5,16.5 + parent: 2 + type: Transform + - uid: 10332 + components: + - pos: -35.5,5.5 + parent: 2 + type: Transform + - uid: 10333 + components: + - pos: -21.5,6.5 + parent: 2 + type: Transform + - uid: 10334 + components: + - pos: -22.5,11.5 + parent: 2 + type: Transform + - uid: 10336 + components: + - pos: -26.5,8.5 + parent: 2 + type: Transform + - uid: 10337 + components: + - pos: -17.5,-2.5 + parent: 2 + type: Transform + - uid: 10338 + components: + - pos: -24.5,-1.5 + parent: 2 + type: Transform + - uid: 10339 + components: + - pos: -18.5,1.5 + parent: 2 + type: Transform + - uid: 10340 + components: + - pos: -10.5,15.5 + parent: 2 + type: Transform + - uid: 10341 + components: + - pos: -1.5,16.5 + parent: 2 + type: Transform + - uid: 10342 + components: + - pos: 5.5,11.5 + parent: 2 + type: Transform + - uid: 10344 + components: + - pos: 16.5,-0.5 + parent: 2 + type: Transform + - uid: 10346 + components: + - pos: 33.5,-9.5 + parent: 2 + type: Transform + - uid: 10347 + components: + - pos: 38.5,-10.5 + parent: 2 + type: Transform + - uid: 10349 + components: + - pos: 36.5,-16.5 + parent: 2 + type: Transform + - uid: 10355 + components: + - pos: 15.5,-9.5 + parent: 2 + type: Transform + - uid: 10356 + components: + - pos: 35.5,19.5 + parent: 2 + type: Transform + - uid: 10801 + components: + - pos: -16.5,12.5 + parent: 2 + type: Transform + - uid: 10952 + components: + - pos: -15.5,-28.5 + parent: 2 + type: Transform + - uid: 10954 + components: + - pos: -13.5,-20.5 + parent: 2 + type: Transform + - uid: 10955 + components: + - pos: -11.5,-33.5 + parent: 2 + type: Transform +- proto: RandomSnacks + entities: + - uid: 2873 + components: + - pos: -29.5,12.5 + parent: 2 + type: Transform + - uid: 4125 + components: + - pos: 16.5,21.5 + parent: 2 + type: Transform + - uid: 9723 + components: + - pos: 6.5,-1.5 + parent: 2 + type: Transform +- proto: RandomSpawner + entities: + - uid: 9701 + components: + - pos: -16.5,-13.5 + parent: 2 + type: Transform + - uid: 10144 + components: + - pos: 6.5,-31.5 + parent: 2 + type: Transform + - uid: 10145 + components: + - pos: 7.5,-30.5 + parent: 2 + type: Transform + - uid: 10146 + components: + - pos: 16.5,-25.5 + parent: 2 + type: Transform + - uid: 10147 + components: + - pos: 16.5,-33.5 + parent: 2 + type: Transform + - uid: 10148 + components: + - pos: 21.5,-34.5 + parent: 2 + type: Transform + - uid: 10149 + components: + - pos: 23.5,-33.5 + parent: 2 + type: Transform + - uid: 10150 + components: + - pos: 28.5,-35.5 + parent: 2 + type: Transform + - uid: 10151 + components: + - pos: 31.5,-34.5 + parent: 2 + type: Transform + - uid: 10152 + components: + - pos: 37.5,-33.5 + parent: 2 + type: Transform + - uid: 10153 + components: + - pos: 39.5,-34.5 + parent: 2 + type: Transform + - uid: 10154 + components: + - pos: 39.5,-33.5 + parent: 2 + type: Transform + - uid: 10155 + components: + - pos: 41.5,-27.5 + parent: 2 + type: Transform + - uid: 10157 + components: + - pos: 39.5,-2.5 + parent: 2 + type: Transform + - uid: 10158 + components: + - pos: 42.5,-1.5 + parent: 2 + type: Transform + - uid: 10159 + components: + - pos: 40.5,13.5 + parent: 2 + type: Transform + - uid: 10160 + components: + - pos: 39.5,17.5 + parent: 2 + type: Transform + - uid: 10161 + components: + - pos: 37.5,19.5 + parent: 2 + type: Transform + - uid: 10162 + components: + - pos: 14.5,15.5 + parent: 2 + type: Transform + - uid: 10163 + components: + - pos: 15.5,2.5 + parent: 2 + type: Transform + - uid: 10164 + components: + - pos: 12.5,-1.5 + parent: 2 + type: Transform + - uid: 10165 + components: + - pos: 14.5,-0.5 + parent: 2 + type: Transform + - uid: 10166 + components: + - pos: 15.5,0.5 + parent: 2 + type: Transform + - uid: 10167 + components: + - pos: 7.5,10.5 + parent: 2 + type: Transform + - uid: 10168 + components: + - pos: 10.5,10.5 + parent: 2 + type: Transform + - uid: 10169 + components: + - pos: 8.5,9.5 + parent: 2 + type: Transform + - uid: 10170 + components: + - pos: 9.5,11.5 + parent: 2 + type: Transform + - uid: 10171 + components: + - pos: 12.5,10.5 + parent: 2 + type: Transform + - uid: 10172 + components: + - pos: -11.5,4.5 + parent: 2 + type: Transform + - uid: 10173 + components: + - pos: -10.5,5.5 + parent: 2 + type: Transform + - uid: 10174 + components: + - pos: -15.5,8.5 + parent: 2 + type: Transform + - uid: 10175 + components: + - pos: -16.5,-0.5 + parent: 2 + type: Transform + - uid: 10176 + components: + - pos: -15.5,-1.5 + parent: 2 + type: Transform + - uid: 10178 + components: + - pos: -37.5,-22.5 + parent: 2 + type: Transform + - uid: 10179 + components: + - pos: -37.5,-20.5 + parent: 2 + type: Transform + - uid: 10180 + components: + - pos: -46.5,-16.5 + parent: 2 + type: Transform + - uid: 10181 + components: + - pos: -44.5,-18.5 + parent: 2 + type: Transform + - uid: 10182 + components: + - pos: -37.5,-30.5 + parent: 2 + type: Transform + - uid: 10183 + components: + - pos: -36.5,-29.5 + parent: 2 + type: Transform + - uid: 10184 + components: + - pos: -23.5,-30.5 + parent: 2 + type: Transform + - uid: 10186 + components: + - pos: 12.5,-30.5 + parent: 2 + type: Transform + - uid: 10187 + components: + - pos: 13.5,-32.5 + parent: 2 + type: Transform + - uid: 10188 + components: + - pos: 11.5,-28.5 + parent: 2 + type: Transform + - uid: 10189 + components: + - pos: 11.5,-31.5 + parent: 2 + type: Transform + - uid: 10190 + components: + - pos: 14.5,-29.5 + parent: 2 + type: Transform + - uid: 10191 + components: + - pos: 16.5,-10.5 + parent: 2 + type: Transform + - uid: 10192 + components: + - pos: 17.5,-13.5 + parent: 2 + type: Transform + - uid: 10236 + components: + - pos: -39.5,-20.5 + parent: 2 + type: Transform +- proto: RandomVending + entities: + - uid: 832 + components: + - pos: -6.5,-2.5 + parent: 2 + type: Transform + - uid: 2384 + components: + - pos: -6.5,-30.5 + parent: 2 + type: Transform + - uid: 9463 + components: + - pos: -50.5,-3.5 + parent: 2 + type: Transform + - uid: 10094 + components: + - pos: -49.5,-17.5 + parent: 2 + type: Transform +- proto: RandomVendingDrinks + entities: + - uid: 988 + components: + - pos: 0.5,-12.5 + parent: 2 + type: Transform + - uid: 1564 + components: + - pos: -16.5,-7.5 + parent: 2 + type: Transform + - uid: 3758 + components: + - pos: -14.5,19.5 + parent: 2 + type: Transform + - uid: 4122 + components: + - pos: 17.5,21.5 + parent: 2 + type: Transform + - uid: 9022 + components: + - pos: 32.5,-3.5 + parent: 2 + type: Transform + - uid: 10810 + components: + - pos: 6.5,7.5 + parent: 2 + type: Transform +- proto: RandomVendingSnacks + entities: + - uid: 3759 + components: + - pos: -13.5,19.5 + parent: 2 + type: Transform + - uid: 6664 + components: + - pos: 11.5,-3.5 + parent: 2 + type: Transform +- proto: RCD + entities: + - uid: 3305 + components: + - pos: 34.632618,12.821988 + parent: 2 + type: Transform +- proto: RCDAmmo + entities: + - uid: 9330 + components: + - pos: 34.4347,12.540542 + parent: 2 + type: Transform + - uid: 9331 + components: + - pos: 34.143036,12.540542 + parent: 2 + type: Transform +- proto: ReagentContainerSugar + entities: + - uid: 7104 + components: + - pos: 21.362215,-17.260815 + parent: 2 + type: Transform +- proto: Recycler + entities: + - uid: 2616 + components: + - rot: 3.141592653589793 rad + pos: 12.5,-29.5 + parent: 2 + type: Transform + - links: + - 7000 + type: DeviceLinkSink +- proto: ReinforcedGirder + entities: + - uid: 3142 + components: + - pos: 57.5,26.5 + parent: 2 + type: Transform + - uid: 3148 + components: + - pos: 77.5,6.5 + parent: 2 + type: Transform + - uid: 3152 + components: + - pos: 71.5,11.5 + parent: 2 + type: Transform + - uid: 3156 + components: + - pos: 67.5,11.5 + parent: 2 + type: Transform + - uid: 3157 + components: + - pos: 75.5,1.5 + parent: 2 + type: Transform + - uid: 3182 + components: + - pos: 71.5,1.5 + parent: 2 + type: Transform + - uid: 3186 + components: + - pos: 59.5,5.5 + parent: 2 + type: Transform + - uid: 4072 + components: + - pos: 75.5,11.5 + parent: 2 + type: Transform + - uid: 4113 + components: + - pos: 67.5,1.5 + parent: 2 + type: Transform + - uid: 4114 + components: + - pos: -13.5,31.5 + parent: 2 + type: Transform + - uid: 4115 + components: + - pos: 55.5,5.5 + parent: 2 + type: Transform + - uid: 4117 + components: + - pos: 51.5,5.5 + parent: 2 + type: Transform + - uid: 4156 + components: + - pos: -7.5,31.5 + parent: 2 + type: Transform + - uid: 4159 + components: + - pos: -2.5,31.5 + parent: 2 + type: Transform + - uid: 4167 + components: + - pos: 15.5,38.5 + parent: 2 + type: Transform + - uid: 9383 + components: + - pos: -61.5,13.5 + parent: 2 + type: Transform + - uid: 9386 + components: + - pos: 60.5,-5.5 + parent: 2 + type: Transform + - uid: 9387 + components: + - pos: 60.5,-8.5 + parent: 2 + type: Transform + - uid: 9388 + components: + - pos: 60.5,-2.5 + parent: 2 + type: Transform + - uid: 9403 + components: + - pos: 55.5,-9.5 + parent: 2 + type: Transform + - uid: 9404 + components: + - pos: 55.5,-1.5 + parent: 2 + type: Transform + - uid: 9405 + components: + - pos: 55.5,-5.5 + parent: 2 + type: Transform + - uid: 9413 + components: + - pos: 55.5,-13.5 + parent: 2 + type: Transform + - uid: 9465 + components: + - pos: 32.5,24.5 + parent: 2 + type: Transform + - uid: 9727 + components: + - pos: -26.5,28.5 + parent: 2 + type: Transform + - uid: 9729 + components: + - pos: -32.5,27.5 + parent: 2 + type: Transform + - uid: 9730 + components: + - pos: -38.5,28.5 + parent: 2 + type: Transform + - uid: 9759 + components: + - pos: 37.5,24.5 + parent: 2 + type: Transform + - uid: 9760 + components: + - pos: 46.5,-27.5 + parent: 2 + type: Transform + - uid: 9761 + components: + - pos: 34.5,-37.5 + parent: 2 + type: Transform + - uid: 9762 + components: + - pos: 38.5,-37.5 + parent: 2 + type: Transform + - uid: 9763 + components: + - pos: 46.5,-32.5 + parent: 2 + type: Transform + - uid: 10983 + components: + - pos: -2.5,38.5 + parent: 2 + type: Transform + - uid: 10991 + components: + - pos: 32.5,28.5 + parent: 2 + type: Transform + - uid: 10992 + components: + - pos: 19.5,32.5 + parent: 2 + type: Transform + - uid: 11004 + components: + - pos: -15.5,-36.5 + parent: 2 + type: Transform + - uid: 11005 + components: + - pos: -1.5,-36.5 + parent: 2 + type: Transform +- proto: ReinforcedPlasmaWindow + entities: + - uid: 718 + components: + - pos: 21.5,7.5 + parent: 2 + type: Transform + - uid: 719 + components: + - pos: 23.5,7.5 + parent: 2 + type: Transform + - uid: 1293 + components: + - pos: -42.5,10.5 + parent: 2 + type: Transform + - uid: 1325 + components: + - pos: -44.5,10.5 + parent: 2 + type: Transform + - uid: 2004 + components: + - pos: 26.5,17.5 + parent: 2 + type: Transform + - uid: 2005 + components: + - pos: 27.5,17.5 + parent: 2 + type: Transform + - uid: 2006 + components: + - pos: 28.5,17.5 + parent: 2 + type: Transform + - uid: 2019 + components: + - pos: 25.5,18.5 + parent: 2 + type: Transform + - uid: 2020 + components: + - pos: 25.5,19.5 + parent: 2 + type: Transform + - uid: 2021 + components: + - pos: 25.5,20.5 + parent: 2 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 44 + components: + - pos: -3.5,-0.5 + parent: 2 + type: Transform + - uid: 45 + components: + - pos: -2.5,-0.5 + parent: 2 + type: Transform + - uid: 46 + components: + - pos: -1.5,-0.5 + parent: 2 + type: Transform + - uid: 49 + components: + - pos: 1.5,-0.5 + parent: 2 + type: Transform + - uid: 50 + components: + - pos: 2.5,-0.5 + parent: 2 + type: Transform + - uid: 51 + components: + - pos: 3.5,-0.5 + parent: 2 + type: Transform + - uid: 53 + components: + - pos: 5.5,-1.5 + parent: 2 + type: Transform + - uid: 54 + components: + - pos: 5.5,-2.5 + parent: 2 + type: Transform + - uid: 59 + components: + - pos: 5.5,-7.5 + parent: 2 + type: Transform + - uid: 60 + components: + - pos: 5.5,-8.5 + parent: 2 + type: Transform + - uid: 61 + components: + - pos: 4.5,-9.5 + parent: 2 + type: Transform + - uid: 62 + components: + - pos: 3.5,-9.5 + parent: 2 + type: Transform + - uid: 63 + components: + - pos: 2.5,-9.5 + parent: 2 + type: Transform + - uid: 68 + components: + - pos: -2.5,-9.5 + parent: 2 + type: Transform + - uid: 69 + components: + - pos: -3.5,-9.5 + parent: 2 + type: Transform + - uid: 70 + components: + - pos: -4.5,-9.5 + parent: 2 + type: Transform + - uid: 71 + components: + - pos: -5.5,-8.5 + parent: 2 + type: Transform + - uid: 72 + components: + - pos: -5.5,-7.5 + parent: 2 + type: Transform + - uid: 77 + components: + - pos: -5.5,-2.5 + parent: 2 + type: Transform + - uid: 78 + components: + - pos: -5.5,-1.5 + parent: 2 + type: Transform + - uid: 226 + components: + - pos: 9.5,2.5 + parent: 2 + type: Transform + - uid: 227 + components: + - pos: 9.5,0.5 + parent: 2 + type: Transform + - uid: 416 + components: + - pos: 23.5,-0.5 + parent: 2 + type: Transform + - uid: 489 + components: + - pos: 18.5,-19.5 + parent: 2 + type: Transform + - uid: 619 + components: + - pos: -20.5,-11.5 + parent: 2 + type: Transform + - uid: 648 + components: + - pos: -8.5,-34.5 + parent: 2 + type: Transform + - uid: 761 + components: + - pos: 20.5,2.5 + parent: 2 + type: Transform + - uid: 762 + components: + - pos: 21.5,2.5 + parent: 2 + type: Transform + - uid: 791 + components: + - pos: -33.5,-35.5 + parent: 2 + type: Transform + - uid: 829 + components: + - pos: 2.5,-5.5 + parent: 2 + type: Transform + - uid: 909 + components: + - pos: 36.5,1.5 + parent: 2 + type: Transform + - uid: 911 + components: + - pos: 33.5,21.5 + parent: 2 + type: Transform + - uid: 930 + components: + - pos: -10.5,20.5 + parent: 2 + type: Transform + - uid: 931 + components: + - pos: -8.5,20.5 + parent: 2 + type: Transform + - uid: 953 + components: + - pos: 46.5,8.5 + parent: 2 + type: Transform + - uid: 954 + components: + - pos: 32.5,13.5 + parent: 2 + type: Transform + - uid: 987 + components: + - pos: -19.5,-11.5 + parent: 2 + type: Transform + - uid: 994 + components: + - pos: -9.5,20.5 + parent: 2 + type: Transform + - uid: 996 + components: + - pos: -7.5,20.5 + parent: 2 + type: Transform + - uid: 1004 + components: + - pos: 26.5,10.5 + parent: 2 + type: Transform + - uid: 1121 + components: + - pos: -20.5,18.5 + parent: 2 + type: Transform + - uid: 1190 + components: + - pos: -21.5,-12.5 + parent: 2 + type: Transform + - uid: 1193 + components: + - pos: -21.5,-14.5 + parent: 2 + type: Transform + - uid: 1262 + components: + - pos: -18.5,-11.5 + parent: 2 + type: Transform + - uid: 1264 + components: + - pos: -19.5,-7.5 + parent: 2 + type: Transform + - uid: 1265 + components: + - pos: -20.5,-7.5 + parent: 2 + type: Transform + - uid: 1363 + components: + - pos: 1.5,23.5 + parent: 2 + type: Transform + - uid: 1365 + components: + - pos: 1.5,24.5 + parent: 2 + type: Transform + - uid: 1421 + components: + - pos: -27.5,-25.5 + parent: 2 + type: Transform + - uid: 1485 + components: + - pos: -30.5,-3.5 + parent: 2 + type: Transform + - uid: 1486 + components: + - pos: -31.5,-3.5 + parent: 2 + type: Transform + - uid: 1487 + components: + - pos: -32.5,-3.5 + parent: 2 + type: Transform + - uid: 1537 + components: + - pos: -1.5,-8.5 + parent: 2 + type: Transform + - uid: 1546 + components: + - pos: -33.5,-3.5 + parent: 2 + type: Transform + - uid: 1650 + components: + - pos: 9.5,12.5 + parent: 2 + type: Transform + - uid: 1651 + components: + - pos: 8.5,12.5 + parent: 2 + type: Transform + - uid: 1731 + components: + - pos: 0.5,-3.5 + parent: 2 + type: Transform + - uid: 1776 + components: + - pos: 25.5,10.5 + parent: 2 + type: Transform + - uid: 1777 + components: + - pos: 27.5,9.5 + parent: 2 + type: Transform + - uid: 1778 + components: + - pos: 27.5,8.5 + parent: 2 + type: Transform + - uid: 1779 + components: + - pos: 26.5,7.5 + parent: 2 + type: Transform + - uid: 1780 + components: + - pos: 25.5,7.5 + parent: 2 + type: Transform + - uid: 1785 + components: + - pos: -9.5,7.5 + parent: 2 + type: Transform + - uid: 1794 + components: + - pos: -9.5,8.5 + parent: 2 + type: Transform + - uid: 1804 + components: + - pos: 6.5,35.5 + parent: 2 + type: Transform + - uid: 1818 + components: + - pos: 14.5,31.5 + parent: 2 + type: Transform + - uid: 1819 + components: + - pos: 13.5,31.5 + parent: 2 + type: Transform + - uid: 1820 + components: + - pos: 12.5,31.5 + parent: 2 + type: Transform + - uid: 1838 + components: + - pos: 1.5,28.5 + parent: 2 + type: Transform + - uid: 1839 + components: + - pos: 1.5,29.5 + parent: 2 + type: Transform + - uid: 1865 + components: + - pos: 18.5,26.5 + parent: 2 + type: Transform + - uid: 1866 + components: + - pos: 17.5,26.5 + parent: 2 + type: Transform + - uid: 1883 + components: + - pos: 9.5,18.5 + parent: 2 + type: Transform + - uid: 1932 + components: + - pos: 36.5,-0.5 + parent: 2 + type: Transform + - uid: 1934 + components: + - pos: 51.5,-0.5 + parent: 2 + type: Transform + - uid: 1935 + components: + - pos: -36.5,10.5 + parent: 2 + type: Transform + - uid: 1943 + components: + - pos: -2.5,-5.5 + parent: 2 + type: Transform + - uid: 1977 + components: + - pos: 18.5,20.5 + parent: 2 + type: Transform + - uid: 1978 + components: + - pos: 18.5,19.5 + parent: 2 + type: Transform + - uid: 1982 + components: + - pos: 21.5,17.5 + parent: 2 + type: Transform + - uid: 1983 + components: + - pos: 20.5,17.5 + parent: 2 + type: Transform + - uid: 1984 + components: + - pos: 19.5,17.5 + parent: 2 + type: Transform + - uid: 1986 + components: + - pos: 22.5,20.5 + parent: 2 + type: Transform + - uid: 1987 + components: + - pos: 22.5,19.5 + parent: 2 + type: Transform + - uid: 2093 + components: + - pos: 34.5,10.5 + parent: 2 + type: Transform + - uid: 2098 + components: + - pos: 33.5,10.5 + parent: 2 + type: Transform + - uid: 2106 + components: + - pos: 32.5,12.5 + parent: 2 + type: Transform + - uid: 2118 + components: + - pos: -32.5,12.5 + parent: 2 + type: Transform + - uid: 2132 + components: + - pos: 1.5,-8.5 + parent: 2 + type: Transform + - uid: 2148 + components: + - pos: -32.5,13.5 + parent: 2 + type: Transform + - uid: 2177 + components: + - pos: 32.5,21.5 + parent: 2 + type: Transform + - uid: 2231 + components: + - pos: 23.5,-25.5 + parent: 2 + type: Transform + - uid: 2232 + components: + - pos: 23.5,-24.5 + parent: 2 + type: Transform + - uid: 2253 + components: + - pos: -0.5,-3.5 + parent: 2 + type: Transform + - uid: 2270 + components: + - pos: 37.5,-5.5 + parent: 2 + type: Transform + - uid: 2305 + components: + - pos: 34.5,-35.5 + parent: 2 + type: Transform + - uid: 2322 + components: + - pos: 53.5,-4.5 + parent: 2 + type: Transform + - uid: 2336 + components: + - pos: 53.5,-5.5 + parent: 2 + type: Transform + - uid: 2337 + components: + - pos: 53.5,-6.5 + parent: 2 + type: Transform + - uid: 2339 + components: + - pos: 51.5,-9.5 + parent: 2 + type: Transform + - uid: 2340 + components: + - pos: 51.5,-10.5 + parent: 2 + type: Transform + - uid: 2341 + components: + - pos: 51.5,-11.5 + parent: 2 + type: Transform + - uid: 2437 + components: + - pos: 35.5,-23.5 + parent: 2 + type: Transform + - uid: 2440 + components: + - pos: 40.5,-5.5 + parent: 2 + type: Transform + - uid: 2487 + components: + - pos: -15.5,-33.5 + parent: 2 + type: Transform + - uid: 2545 + components: + - pos: -29.5,-25.5 + parent: 2 + type: Transform + - uid: 2596 + components: + - pos: -16.5,-33.5 + parent: 2 + type: Transform + - uid: 2661 + components: + - pos: -17.5,15.5 + parent: 2 + type: Transform + - uid: 2701 + components: + - pos: -21.5,21.5 + parent: 2 + type: Transform + - uid: 2702 + components: + - pos: -22.5,21.5 + parent: 2 + type: Transform + - uid: 2714 + components: + - pos: -37.5,14.5 + parent: 2 + type: Transform + - uid: 2715 + components: + - pos: -38.5,14.5 + parent: 2 + type: Transform + - uid: 2717 + components: + - pos: -36.5,14.5 + parent: 2 + type: Transform + - uid: 2724 + components: + - pos: 47.5,8.5 + parent: 2 + type: Transform + - uid: 2735 + components: + - pos: -27.5,22.5 + parent: 2 + type: Transform + - uid: 2738 + components: + - pos: -28.5,22.5 + parent: 2 + type: Transform + - uid: 2741 + components: + - pos: -30.5,22.5 + parent: 2 + type: Transform + - uid: 2744 + components: + - pos: -31.5,22.5 + parent: 2 + type: Transform + - uid: 2751 + components: + - pos: -35.5,13.5 + parent: 2 + type: Transform + - uid: 2759 + components: + - pos: -35.5,11.5 + parent: 2 + type: Transform + - uid: 2762 + components: + - pos: -37.5,7.5 + parent: 2 + type: Transform + - uid: 2834 + components: + - pos: -40.5,13.5 + parent: 2 + type: Transform + - uid: 2868 + components: + - pos: -37.5,22.5 + parent: 2 + type: Transform + - uid: 2869 + components: + - pos: -33.5,22.5 + parent: 2 + type: Transform + - uid: 2870 + components: + - pos: -34.5,22.5 + parent: 2 + type: Transform + - uid: 2871 + components: + - pos: -36.5,22.5 + parent: 2 + type: Transform + - uid: 2892 + components: + - pos: -36.5,19.5 + parent: 2 + type: Transform + - uid: 2893 + components: + - pos: -33.5,19.5 + parent: 2 + type: Transform + - uid: 2894 + components: + - pos: -30.5,19.5 + parent: 2 + type: Transform + - uid: 2895 + components: + - pos: -27.5,19.5 + parent: 2 + type: Transform + - uid: 2966 + components: + - pos: 44.5,11.5 + parent: 2 + type: Transform + - uid: 3020 + components: + - pos: 18.5,29.5 + parent: 2 + type: Transform + - uid: 3038 + components: + - pos: 17.5,29.5 + parent: 2 + type: Transform + - uid: 3235 + components: + - pos: 45.5,10.5 + parent: 2 + type: Transform + - uid: 3236 + components: + - pos: 45.5,9.5 + parent: 2 + type: Transform + - uid: 3237 + components: + - pos: 45.5,11.5 + parent: 2 + type: Transform + - uid: 3284 + components: + - pos: -33.5,-25.5 + parent: 2 + type: Transform + - uid: 3321 + components: + - pos: -51.5,9.5 + parent: 2 + type: Transform + - uid: 3328 + components: + - pos: -55.5,7.5 + parent: 2 + type: Transform + - uid: 3389 + components: + - pos: -14.5,-33.5 + parent: 2 + type: Transform + - uid: 3418 + components: + - pos: -56.5,-7.5 + parent: 2 + type: Transform + - uid: 3419 + components: + - pos: -53.5,-7.5 + parent: 2 + type: Transform + - uid: 3420 + components: + - pos: -53.5,-15.5 + parent: 2 + type: Transform + - uid: 3421 + components: + - pos: -56.5,-15.5 + parent: 2 + type: Transform + - uid: 3648 + components: + - pos: -17.5,20.5 + parent: 2 + type: Transform + - uid: 3649 + components: + - pos: -18.5,20.5 + parent: 2 + type: Transform + - uid: 3654 + components: + - pos: -22.5,14.5 + parent: 2 + type: Transform + - uid: 3655 + components: + - pos: -23.5,14.5 + parent: 2 + type: Transform + - uid: 3657 + components: + - pos: -24.5,14.5 + parent: 2 + type: Transform + - uid: 3698 + components: + - pos: 13.5,-33.5 + parent: 2 + type: Transform + - uid: 3699 + components: + - pos: 11.5,-33.5 + parent: 2 + type: Transform + - uid: 3706 + components: + - pos: -13.5,-33.5 + parent: 2 + type: Transform + - uid: 3709 + components: + - pos: -11.5,-31.5 + parent: 2 + type: Transform + - uid: 3710 + components: + - pos: -11.5,-32.5 + parent: 2 + type: Transform + - uid: 3749 + components: + - pos: -3.5,20.5 + parent: 2 + type: Transform + - uid: 3776 + components: + - pos: -53.5,-10.5 + parent: 2 + type: Transform + - uid: 3778 + components: + - pos: -53.5,-12.5 + parent: 2 + type: Transform + - uid: 3911 + components: + - pos: -26.5,17.5 + parent: 2 + type: Transform + - uid: 3912 + components: + - pos: -29.5,3.5 + parent: 2 + type: Transform + - uid: 4090 + components: + - pos: -43.5,-30.5 + parent: 2 + type: Transform + - uid: 4091 + components: + - pos: -42.5,-30.5 + parent: 2 + type: Transform + - uid: 4292 + components: + - pos: 33.5,17.5 + parent: 2 + type: Transform + - uid: 4297 + components: + - pos: 47.5,-13.5 + parent: 2 + type: Transform + - uid: 4620 + components: + - pos: -24.5,18.5 + parent: 2 + type: Transform + - uid: 4638 + components: + - pos: 51.5,0.5 + parent: 2 + type: Transform + - uid: 4837 + components: + - pos: 18.5,-17.5 + parent: 2 + type: Transform + - uid: 6906 + components: + - pos: 35.5,-35.5 + parent: 2 + type: Transform + - uid: 6907 + components: + - pos: 39.5,-35.5 + parent: 2 + type: Transform + - uid: 6959 + components: + - pos: 38.5,-35.5 + parent: 2 + type: Transform + - uid: 6986 + components: + - pos: -47.5,24.5 + parent: 2 + type: Transform + - uid: 6987 + components: + - pos: -48.5,24.5 + parent: 2 + type: Transform + - uid: 6988 + components: + - pos: -50.5,22.5 + parent: 2 + type: Transform + - uid: 7299 + components: + - pos: 46.5,-3.5 + parent: 2 + type: Transform + - uid: 7300 + components: + - pos: 48.5,0.5 + parent: 2 + type: Transform + - uid: 7596 + components: + - pos: 43.5,-22.5 + parent: 2 + type: Transform + - uid: 8790 + components: + - pos: -53.5,-3.5 + parent: 2 + type: Transform + - uid: 8838 + components: + - pos: 43.5,-20.5 + parent: 2 + type: Transform + - uid: 8857 + components: + - pos: -48.5,-23.5 + parent: 2 + type: Transform + - uid: 8858 + components: + - pos: -53.5,-21.5 + parent: 2 + type: Transform + - uid: 8859 + components: + - pos: -53.5,-20.5 + parent: 2 + type: Transform + - uid: 8861 + components: + - pos: -49.5,-23.5 + parent: 2 + type: Transform + - uid: 8872 + components: + - pos: -50.5,-23.5 + parent: 2 + type: Transform + - uid: 8902 + components: + - pos: -53.5,-19.5 + parent: 2 + type: Transform + - uid: 9277 + components: + - pos: -23.5,18.5 + parent: 2 + type: Transform + - uid: 9384 + components: + - pos: 46.5,-17.5 + parent: 2 + type: Transform + - uid: 9385 + components: + - pos: 45.5,-17.5 + parent: 2 + type: Transform + - uid: 9694 + components: + - pos: 39.5,20.5 + parent: 2 + type: Transform + - uid: 9695 + components: + - pos: 39.5,19.5 + parent: 2 + type: Transform + - uid: 9706 + components: + - pos: -53.5,-4.5 + parent: 2 + type: Transform + - uid: 9743 + components: + - pos: 6.5,-32.5 + parent: 2 + type: Transform + - uid: 9744 + components: + - pos: 5.5,-32.5 + parent: 2 + type: Transform + - uid: 9749 + components: + - pos: -46.5,-26.5 + parent: 2 + type: Transform + - uid: 9750 + components: + - pos: -46.5,-27.5 + parent: 2 + type: Transform + - uid: 9751 + components: + - pos: -53.5,1.5 + parent: 2 + type: Transform + - uid: 9752 + components: + - pos: -53.5,0.5 + parent: 2 + type: Transform + - uid: 9753 + components: + - pos: -53.5,18.5 + parent: 2 + type: Transform + - uid: 9754 + components: + - pos: -53.5,17.5 + parent: 2 + type: Transform + - uid: 9755 + components: + - pos: 42.5,-27.5 + parent: 2 + type: Transform + - uid: 9756 + components: + - pos: 42.5,-28.5 + parent: 2 + type: Transform + - uid: 9757 + components: + - pos: 21.5,-35.5 + parent: 2 + type: Transform + - uid: 9758 + components: + - pos: 20.5,-35.5 + parent: 2 + type: Transform + - uid: 10784 + components: + - pos: -25.5,18.5 + parent: 2 + type: Transform + - uid: 10879 + components: + - pos: -6.5,-36.5 + parent: 2 + type: Transform + - uid: 10881 + components: + - pos: -8.5,-37.5 + parent: 2 + type: Transform + - uid: 10889 + components: + - pos: -6.5,-35.5 + parent: 2 + type: Transform + - uid: 10890 + components: + - pos: -10.5,-36.5 + parent: 2 + type: Transform + - uid: 10895 + components: + - pos: -10.5,-35.5 + parent: 2 + type: Transform + - uid: 10922 + components: + - pos: -34.5,-35.5 + parent: 2 + type: Transform + - uid: 10923 + components: + - pos: -35.5,-35.5 + parent: 2 + type: Transform +- proto: ResearchAndDevelopmentServer + entities: + - uid: 3293 + components: + - pos: -32.5,-26.5 + parent: 2 + type: Transform +- proto: ResearchAndDevelopmentServerMachineCircuitboard + entities: + - uid: 9324 + components: + - pos: 46.398544,-16.44845 + parent: 2 + type: Transform +- proto: ResearchComputerCircuitboard + entities: + - uid: 9325 + components: + - pos: 46.658962,-16.312939 + parent: 2 + type: Transform +- proto: RiotShield + entities: + - uid: 1018 + components: + - pos: -27.628956,8.474274 + parent: 2 + type: Transform + - uid: 2667 + components: + - pos: -27.316456,8.620208 + parent: 2 + type: Transform +- proto: Roboisseur + entities: + - uid: 2535 + components: + - pos: -4.5,-12.5 + parent: 2 + type: Transform +- proto: RollerBed + entities: + - uid: 893 + components: + - pos: 23.5,-9.5 + parent: 2 + type: Transform + - uid: 894 + components: + - pos: 23.5,-10.5 + parent: 2 + type: Transform + - uid: 895 + components: + - pos: 23.5,-11.5 + parent: 2 + type: Transform +- proto: RubberStampApproved + entities: + - uid: 1660 + components: + - pos: 9.587218,15.039861 + parent: 2 + type: Transform + - uid: 9534 + components: + - pos: 10.303195,2.6495352 + parent: 2 + type: Transform +- proto: RubberStampDenied + entities: + - uid: 1661 + components: + - pos: 9.753884,14.8105345 + parent: 2 + type: Transform + - uid: 9535 + components: + - pos: 10.438612,2.493177 + parent: 2 + type: Transform +- proto: SalvageCanisterSpawner + entities: + - uid: 3767 + components: + - pos: 12.5,9.5 + parent: 2 + type: Transform + - uid: 4154 + components: + - pos: 2.5,12.5 + parent: 2 + type: Transform + - uid: 5382 + components: + - pos: -39.5,-21.5 + parent: 2 + type: Transform + - chance: 1 + type: RandomSpawner + - uid: 10208 + components: + - pos: 5.5,-29.5 + parent: 2 + type: Transform + - chance: 1 + type: RandomSpawner +- proto: SalvageMagnet + entities: + - uid: 3043 + components: + - rot: 3.141592653589793 rad + pos: 26.5,27.5 + parent: 2 + type: Transform +- proto: SchoolgirlUniformSpawner + entities: + - uid: 10877 + components: + - pos: -13.5,-21.5 + parent: 2 + type: Transform +- proto: Screwdriver + entities: + - uid: 3336 + components: + - pos: -47.609417,7.24538 + parent: 2 + type: Transform + - uid: 8363 + components: + - pos: -12.5785,0.4221762 + parent: 2 + type: Transform +- proto: SecBreachingHammer + entities: + - uid: 3299 + components: + - pos: -42.5,11.5 + parent: 2 + type: Transform +- proto: SecurityTechFab + entities: + - uid: 1488 + components: + - pos: -44.5,14.5 + parent: 2 + type: Transform +- proto: SecurityTechFabCircuitboard + entities: + - uid: 9327 + components: + - pos: 47.45063,-16.542267 + parent: 2 + type: Transform +- proto: SeedExtractor + entities: + - uid: 566 + components: + - pos: 11.5,-19.5 + parent: 2 + type: Transform + - uid: 1392 + components: + - pos: -13.5,-12.5 + parent: 2 + type: Transform +- proto: ShardGlass + entities: + - uid: 3270 + components: + - pos: -38.925045,2.2961931 + parent: 2 + type: Transform + - uid: 3271 + components: + - pos: -38.00838,2.6714537 + parent: 2 + type: Transform +- proto: SheetGlass + entities: + - uid: 806 + components: + - pos: 26.5,2.5 + parent: 2 + type: Transform + - uid: 1054 + components: + - pos: -1.5,9.5 + parent: 2 + type: Transform + - uid: 2951 + components: + - pos: 34.5,20.5 + parent: 2 + type: Transform + - uid: 3037 + components: + - pos: 52.587715,8.59385 + parent: 2 + type: Transform + - uid: 9573 + components: + - pos: 14.5,-10.5 + parent: 2 + type: Transform +- proto: SheetPlasma + entities: + - uid: 576 + components: + - pos: 19.46682,-16.897707 + parent: 2 + type: Transform + - count: 5 + type: Stack + - size: 5 + type: Item + - uid: 4058 + components: + - pos: -33.41769,-28.445965 + parent: 2 + type: Transform + - count: 15 + type: Stack + - size: 15 + type: Item + - uid: 4314 + components: + - pos: -20.41623,-20.380306 + parent: 2 + type: Transform + - uid: 10224 + components: + - pos: 33.5,9.5 + parent: 2 + type: Transform + - uid: 10226 + components: + - pos: 33.5,9.5 + parent: 2 + type: Transform +- proto: SheetPlasteel + entities: + - uid: 2949 + components: + - pos: 32.5,20.5 + parent: 2 + type: Transform +- proto: SheetPlastic + entities: + - uid: 668 + components: + - pos: 12.5,-10.5 + parent: 2 + type: Transform + - uid: 805 + components: + - pos: 26.5,1.5 + parent: 2 + type: Transform + - uid: 1053 + components: + - pos: -0.5,9.5 + parent: 2 + type: Transform + - uid: 2566 + components: + - pos: -22.5,-27.5 + parent: 2 + type: Transform +- proto: SheetRGlass + entities: + - uid: 2952 + components: + - pos: 33.5,18.5 + parent: 2 + type: Transform + - count: 15 + type: Stack + - size: 15 + type: Item +- proto: SheetSteel + entities: + - uid: 667 + components: + - pos: 13.5,-10.5 + parent: 2 + type: Transform + - uid: 804 + components: + - pos: 26.5,0.5 + parent: 2 + type: Transform + - uid: 1052 + components: + - pos: -2.5,9.5 + parent: 2 + type: Transform + - uid: 2565 + components: + - pos: -22.5,-26.5 + parent: 2 + type: Transform + - uid: 2859 + components: + - pos: -42.481293,11.638343 + parent: 2 + type: Transform + - uid: 2950 + components: + - pos: 33.5,20.5 + parent: 2 + type: Transform +- proto: ShuttersNormal + entities: + - uid: 176 + components: + - pos: 3.5,3.5 + parent: 2 + type: Transform + - links: + - 927 + type: DeviceLinkSink + - uid: 238 + components: + - pos: 2.5,3.5 + parent: 2 + type: Transform + - links: + - 927 + type: DeviceLinkSink + - uid: 240 + components: + - pos: 1.5,3.5 + parent: 2 + type: Transform + - links: + - 927 + type: DeviceLinkSink + - uid: 4173 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,8.5 + parent: 2 + type: Transform + - links: + - 1385 + type: DeviceLinkSink + - uid: 4174 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,7.5 + parent: 2 + type: Transform + - links: + - 1385 + type: DeviceLinkSink +- proto: ShuttersNormalOpen + entities: + - uid: 1885 + components: + - pos: 9.5,12.5 + parent: 2 + type: Transform + - links: + - 1887 + type: DeviceLinkSink + - uid: 1886 + components: + - pos: 8.5,12.5 + parent: 2 + type: Transform + - links: + - 1887 + type: DeviceLinkSink + - uid: 1900 + components: + - pos: -38.5,-3.5 + parent: 2 + type: Transform + - uid: 1901 + components: + - pos: -37.5,-3.5 + parent: 2 + type: Transform + - uid: 2114 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,13.5 + parent: 2 + type: Transform + - uid: 2115 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,12.5 + parent: 2 + type: Transform + - links: + - 2116 + type: DeviceLinkSink +- proto: ShuttersRadiationOpen + entities: + - uid: 1315 + components: + - pos: -20.5,-11.5 + parent: 2 + type: Transform + - links: + - 1314 + type: DeviceLinkSink + - uid: 1316 + components: + - pos: -19.5,-11.5 + parent: 2 + type: Transform + - links: + - 1314 + type: DeviceLinkSink + - uid: 1317 + components: + - pos: -18.5,-11.5 + parent: 2 + type: Transform + - links: + - 1314 + type: DeviceLinkSink + - uid: 3807 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-12.5 + parent: 2 + type: Transform + - links: + - 1314 + type: DeviceLinkSink + - uid: 3808 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-14.5 + parent: 2 + type: Transform + - links: + - 1314 + type: DeviceLinkSink +- proto: ShuttersWindowOpen + entities: + - uid: 2113 + components: + - pos: 34.5,10.5 + parent: 2 + type: Transform + - links: + - 2116 + type: DeviceLinkSink + - uid: 2117 + components: + - pos: 33.5,10.5 + parent: 2 + type: Transform + - links: + - 2116 + type: DeviceLinkSink +- proto: SignalButtonDirectional + entities: + - uid: 2018 + components: + - pos: 29.5,17.5 + parent: 2 + type: Transform + - linkedPorts: + 2063: + - Pressed: Trigger + type: DeviceLinkSource +- proto: SignalSwitchDirectional + entities: + - uid: 885 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,27.5 + parent: 2 + type: Transform + - linkedPorts: + 1836: + - On: Forward + - Off: Off + 1704: + - On: Forward + - Off: Off + 1703: + - On: Forward + - Off: Off + 1702: + - On: Forward + - Off: Off + 1701: + - On: Forward + - Off: Off + 1682: + - On: Forward + - Off: Off + 1683: + - On: Forward + - Off: Off + 1684: + - On: Forward + - Off: Off + 1685: + - On: Forward + - Off: Off + 1686: + - On: Forward + - Off: Off + type: DeviceLinkSource + - uid: 927 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,4.5 + parent: 2 + type: Transform + - linkedPorts: + 240: + - On: Open + - Off: Close + 238: + - On: Open + - Off: Close + 176: + - On: Open + - Off: Close + type: DeviceLinkSource + - uid: 1189 + components: + - pos: -21.5,-7.5 + parent: 2 + type: Transform + - linkedPorts: + 998: + - On: Open + - Off: Close + 1244: + - On: Open + - Off: Close + type: DeviceLinkSource + - uid: 1314 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-11.5 + parent: 2 + type: Transform + - linkedPorts: + 1315: + - On: Close + - Off: Open + 1316: + - On: Close + - Off: Open + 1317: + - On: Close + - Off: Open + 3807: + - On: Close + - Off: Open + 3808: + - On: Close + - Off: Open + type: DeviceLinkSource + - uid: 1385 + components: + - rot: 3.141592653589793 rad + pos: -11.5,6.5 + parent: 2 + type: Transform + - linkedPorts: + 4174: + - On: Open + - Off: Close + 4173: + - On: Open + - Off: Close + type: DeviceLinkSource + - uid: 1775 + components: + - pos: -40.5,0.5 + parent: 2 + type: Transform + - uid: 1855 + components: + - pos: 15.5,31.5 + parent: 2 + type: Transform + - linkedPorts: + 1854: + - On: Forward + - Off: Off + 1853: + - On: Forward + - Off: Off + 1852: + - On: Forward + - Off: Off + 1851: + - On: Forward + - Off: Off + 1802: + - On: Forward + - Off: Off + type: DeviceLinkSource + - uid: 1859 + components: + - pos: 4.5,32.5 + parent: 2 + type: Transform + - linkedPorts: + 1687: + - On: Forward + - Off: Off + 1688: + - On: Forward + - Off: Off + 1689: + - On: Forward + - Off: Off + 1690: + - On: Forward + - Off: Off + 1691: + - On: Forward + - Off: Off + 1692: + - On: Forward + - Off: Off + 1693: + - On: Forward + - Off: Off + 1694: + - On: Forward + - Off: Off + 1695: + - On: Forward + - Off: Off + 1696: + - On: Forward + - Off: Off + type: DeviceLinkSource + - uid: 1887 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,16.5 + parent: 2 + type: Transform + - linkedPorts: + 1885: + - On: Close + - Off: Open + 1886: + - On: Close + - Off: Open + type: DeviceLinkSource + - uid: 2087 + components: + - pos: 30.5,17.5 + parent: 2 + type: Transform + - linkedPorts: + 2026: + - On: Open + - Off: Close + 2025: + - On: Open + - Off: Close + 8034: + - On: Open + - Off: Close + 10156: + - On: Open + - Off: Close + type: DeviceLinkSource + - uid: 2116 + components: + - pos: 35.5,14.5 + parent: 2 + type: Transform + - linkedPorts: + 2113: + - On: Close + - Off: Open + 2117: + - On: Close + - Off: Open + 2115: + - On: Close + - Off: Open + type: DeviceLinkSource + - uid: 4134 + components: + - rot: 3.141592653589793 rad + pos: 11.5,22.5 + parent: 2 + type: Transform + - linkedPorts: + 1850: + - On: Forward + - Off: Off + 1849: + - On: Forward + - Off: Off + 1846: + - On: Forward + - Off: Off + 1845: + - On: Forward + - Off: Off + 1833: + - On: Forward + - Off: Off + 1832: + - On: Forward + - Off: Off + 1831: + - On: Forward + - Off: Off + 1830: + - On: Forward + - Off: Off + 1829: + - On: Forward + - Off: Off + 1828: + - On: Forward + - Off: Off + type: DeviceLinkSource + - uid: 9570 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,25.5 + parent: 2 + type: Transform + - linkedPorts: + 1700: + - On: Forward + - Off: Off + 1716: + - On: Forward + - Off: Off + 1717: + - On: Forward + - Off: Off + 1718: + - On: Forward + - Off: Off + 1719: + - On: Forward + - Off: Off + 1720: + - On: Forward + - Off: Off + 1721: + - On: Forward + - Off: Off + 1722: + - On: Forward + - Off: Off + 1723: + - On: Forward + - Off: Off + 1724: + - On: Forward + - Off: Off + 1725: + - On: Forward + - Off: Off + 1726: + - On: Forward + - Off: Off + 1727: + - On: Forward + - Off: Off + 1728: + - On: Forward + - Off: Off + type: DeviceLinkSource +- proto: SignAnomaly + entities: + - uid: 1335 + components: + - pos: -25.5,-11.5 + parent: 2 + type: Transform +- proto: SignAnomaly2 + entities: + - uid: 4203 + components: + - pos: -25.5,-17.5 + parent: 2 + type: Transform +- proto: SignArmory + entities: + - uid: 2852 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,10.5 + parent: 2 + type: Transform +- proto: SignAtmos + entities: + - uid: 9531 + components: + - pos: 19.5,2.5 + parent: 2 + type: Transform +- proto: SignBridge + entities: + - uid: 3478 + components: + - pos: 47.5,-6.5 + parent: 2 + type: Transform +- proto: SignCargo + entities: + - uid: 296 + components: + - pos: -4.5,2.5 + parent: 2 + type: Transform +- proto: SignCargoDock + entities: + - uid: 10111 + components: + - pos: 3.5,35.5 + parent: 2 + type: Transform +- proto: SignChapel + entities: + - uid: 9086 + components: + - pos: -39.5,-7.5 + parent: 2 + type: Transform +- proto: SignChem + entities: + - uid: 529 + components: + - pos: 19.5,-14.5 + parent: 2 + type: Transform + - uid: 530 + components: + - pos: 23.5,-17.5 + parent: 2 + type: Transform +- proto: SignCloning + entities: + - uid: 2479 + components: + - pos: 26.5,-24.5 + parent: 2 + type: Transform +- proto: SignConference + entities: + - uid: 2356 + components: + - pos: 44.5,-7.5 + parent: 2 + type: Transform +- proto: SignCourt + entities: + - uid: 1575 + components: + - pos: -32.5,3.5 + parent: 2 + type: Transform + - uid: 11006 + components: + - pos: -27.5,-1.5 + parent: 2 + type: Transform +- proto: SignCryogenicsMed + entities: + - uid: 2064 + components: + - desc: A sign indicating the chamber used for eliminating heat. + name: cold sign + type: MetaData + - pos: 22.5,17.5 + parent: 2 + type: Transform + - uid: 9600 + components: + - desc: A sign indicating that it's cold inside. + name: cold sign + type: MetaData + - pos: -45.5,-7.5 + parent: 2 + type: Transform + - uid: 9601 + components: + - desc: A sign indicating that it's cold inside. + name: cold sign + type: MetaData + - pos: -49.5,-12.5 + parent: 2 + type: Transform +- proto: SignDirectionalBar + entities: + - uid: 716 + components: + - pos: 5.5,-0.5 + parent: 2 + type: Transform +- proto: SignDirectionalBridge + entities: + - uid: 2392 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 2 + type: Transform + - uid: 2409 + components: + - rot: 1.5707963267948966 rad + pos: -17.496706,-3.2978244 + parent: 2 + type: Transform +- proto: SignDirectionalDorms + entities: + - uid: 2406 + components: + - pos: -5.5,-12.5 + parent: 2 + type: Transform +- proto: SignDirectionalEng + entities: + - uid: 2394 + components: + - rot: 1.5707963267948966 rad + pos: 5.4926877,-5.2815375 + parent: 2 + type: Transform + - uid: 2407 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-3.5 + parent: 2 + type: Transform +- proto: SignDirectionalEvac + entities: + - uid: 10137 + components: + - rot: -1.5707963267948966 rad + pos: -5.5176334,-5.71458 + parent: 2 + type: Transform + - uid: 10138 + components: + - rot: -1.5707963267948966 rad + pos: 5.4989843,-4.928568 + parent: 2 + type: Transform + - uid: 10139 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-7.5 + parent: 2 + type: Transform + - uid: 10140 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-20.5 + parent: 2 + type: Transform + - uid: 10141 + components: + - pos: -5.5,15.5 + parent: 2 + type: Transform + - uid: 10142 + components: + - rot: -1.5707963267948966 rad + pos: 9.5,-11.5 + parent: 2 + type: Transform + - uid: 10143 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-3.5 + parent: 2 + type: Transform + - uid: 10239 + components: + - rot: 3.141592653589793 rad + pos: -5.5039496,-12.705793 + parent: 2 + type: Transform +- proto: SignDirectionalFood + entities: + - uid: 705 + components: + - rot: 1.5707963267948966 rad + pos: -5.5031505,-12.271661 + parent: 2 + type: Transform +- proto: SignDirectionalHop + entities: + - uid: 2396 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 2 + type: Transform + - uid: 2402 + components: + - rot: 3.141592653589793 rad + pos: 5.5042305,-4.717524 + parent: 2 + type: Transform +- proto: SignDirectionalHydro + entities: + - uid: 2399 + components: + - pos: 5.509362,-0.7134799 + parent: 2 + type: Transform +- proto: SignDirectionalJanitor + entities: + - uid: 2398 + components: + - rot: -1.5707963267948966 rad + pos: -5.501563,-0.29061517 + parent: 2 + type: Transform + - uid: 2400 + components: + - rot: -1.5707963267948966 rad + pos: 5.5042305,-0.29095575 + parent: 2 + type: Transform +- proto: SignDirectionalLogistics + entities: + - uid: 2401 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-4.5 + parent: 2 + type: Transform + - uid: 2403 + components: + - rot: -1.5707963267948966 rad + pos: 27.5,-3.5 + parent: 2 + type: Transform +- proto: SignDirectionalMed + entities: + - uid: 2395 + components: + - rot: 1.5707963267948966 rad + pos: 5.4926877,-5.708918 + parent: 2 + type: Transform + - uid: 2408 + components: + - rot: 1.5707963267948966 rad + pos: -17.507128,-3.704357 + parent: 2 + type: Transform +- proto: SignDirectionalSci + entities: + - uid: 2393 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 2 + type: Transform + - uid: 2405 + components: + - rot: -1.5707963267948966 rad + pos: 27.508427,-3.287473 + parent: 2 + type: Transform +- proto: SignDirectionalSec + entities: + - uid: 2397 + components: + - rot: -1.5707963267948966 rad + pos: -5.5060353,-5.2739244 + parent: 2 + type: Transform + - uid: 2404 + components: + - rot: -1.5707963267948966 rad + pos: 27.498005,-3.7252772 + parent: 2 + type: Transform +- proto: SignDrones + entities: + - uid: 2943 + components: + - pos: 31.5,17.5 + parent: 2 + type: Transform +- proto: SignEngineering + entities: + - uid: 438 + components: + - pos: 22.5,-2.5 + parent: 2 + type: Transform +- proto: SignEscapePods + entities: + - uid: 3331 + components: + - rot: -1.5707963267948966 rad + pos: -55.5,9.5 + parent: 2 + type: Transform + - uid: 7916 + components: + - pos: 43.5,-19.5 + parent: 2 + type: Transform + - uid: 8842 + components: + - rot: 1.5707963267948966 rad + pos: 36.5,-17.5 + parent: 2 + type: Transform + - uid: 8843 + components: + - rot: 3.141592653589793 rad + pos: -50.5,-2.5 + parent: 2 + type: Transform + - uid: 8844 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,18.5 + parent: 2 + type: Transform + - uid: 8845 + components: + - rot: -1.5707963267948966 rad + pos: -40.5,7.5 + parent: 2 + type: Transform + - uid: 8852 + components: + - rot: -1.5707963267948966 rad + pos: -51.5,2.5 + parent: 2 + type: Transform +- proto: SignFlammableMed + entities: + - uid: 2059 + components: + - desc: A sign indicating burn chamber. + name: flame sign + type: MetaData + - pos: 25.5,17.5 + parent: 2 + type: Transform +- proto: SignHead + entities: + - uid: 2111 + components: + - desc: A sign designating the Chief Engineer's office. + type: MetaData + - pos: 35.5,10.5 + parent: 2 + type: Transform +- proto: SignHydro2 + entities: + - uid: 693 + components: + - pos: 10.5,-19.5 + parent: 2 + type: Transform +- proto: SignInterrogation + entities: + - uid: 4171 + components: + - pos: -9.5,9.5 + parent: 2 + type: Transform +- proto: SignJanitor + entities: + - uid: 1844 + components: + - pos: -11.5,-3.5 + parent: 2 + type: Transform +- proto: SignLawyer + entities: + - uid: 11007 + components: + - pos: -40.5,-3.5 + parent: 2 + type: Transform +- proto: SignMail + entities: + - uid: 1034 + components: + - pos: -1.5,19.5 + parent: 2 + type: Transform + - uid: 1621 + components: + - pos: 1.5,15.5 + parent: 2 + type: Transform +- proto: SignMedical + entities: + - uid: 583 + components: + - pos: 19.5,-8.5 + parent: 2 + type: Transform + - uid: 584 + components: + - pos: 25.5,-8.5 + parent: 2 + type: Transform + - uid: 1194 + components: + - desc: A sign indicating the security medbay, managed by the corpsman. + name: security medbay sign + type: MetaData + - pos: -26.5,15.5 + parent: 2 + type: Transform +- proto: SignMinerDock + entities: + - uid: 10110 + components: + - pos: 19.5,29.5 + parent: 2 + type: Transform +- proto: SignMorgue + entities: + - uid: 2423 + components: + - pos: 32.5,-30.5 + parent: 2 + type: Transform + - uid: 2512 + components: + - pos: 26.5,-30.5 + parent: 2 + type: Transform +- proto: SignRobo + entities: + - uid: 1299 + components: + - pos: -26.5,-22.5 + parent: 2 + type: Transform +- proto: SignScience + entities: + - uid: 1557 + components: + - pos: -26.5,-8.5 + parent: 2 + type: Transform + - uid: 1558 + components: + - pos: -33.5,-8.5 + parent: 2 + type: Transform +- proto: SignSec + entities: + - uid: 3646 + components: + - pos: -24.5,-2.5 + parent: 2 + type: Transform + - uid: 3662 + components: + - pos: -19.5,15.5 + parent: 2 + type: Transform +- proto: SignShipDock + entities: + - uid: 10112 + components: + - pos: -6.5,20.5 + parent: 2 + type: Transform + - uid: 10114 + components: + - pos: -56.5,-9.5 + parent: 2 + type: Transform + - uid: 10115 + components: + - pos: -56.5,-13.5 + parent: 2 + type: Transform + - uid: 10884 + components: + - pos: -10.5,-37.5 + parent: 2 + type: Transform + - uid: 10887 + components: + - pos: -6.5,-37.5 + parent: 2 + type: Transform +- proto: SignSurgery + entities: + - uid: 2523 + components: + - pos: 35.5,-25.5 + parent: 2 + type: Transform +- proto: SignToolStorage + entities: + - uid: 654 + components: + - pos: 9.5,-7.5 + parent: 2 + type: Transform +- proto: Sink + entities: + - uid: 2532 + components: + - pos: 36.5,-25.5 + parent: 2 + type: Transform + - uid: 3489 + components: + - rot: -1.5707963267948966 rad + pos: -46.5,-1.5 + parent: 2 + type: Transform +- proto: SinkStemlessWater + entities: + - uid: 2905 + components: + - rot: 3.141592653589793 rad + pos: -32.5,15.5 + parent: 2 + type: Transform +- proto: SinkWide + entities: + - uid: 66 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-23.5 + parent: 2 + type: Transform + - uid: 544 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-15.5 + parent: 2 + type: Transform + - uid: 1372 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-2.5 + parent: 2 + type: Transform +- proto: SMESBasic + entities: + - uid: 903 + components: + - name: SMES (TEG dexter) + type: MetaData + - pos: 28.5,6.5 + parent: 2 + type: Transform + - uid: 2158 + components: + - name: SMES (AME and generators) + type: MetaData + - pos: 32.5,6.5 + parent: 2 + type: Transform + - uid: 2725 + components: + - name: SMES (solar array) + type: MetaData + - pos: 43.5,5.5 + parent: 2 + type: Transform + - uid: 3012 + components: + - name: SMES (TEG sinister) + type: MetaData + - pos: 18.5,10.5 + parent: 2 + type: Transform +- proto: soda_dispenser + entities: + - uid: 321 + components: + - rot: 3.141592653589793 rad + pos: 7.5,-23.5 + parent: 2 + type: Transform +- proto: SolarAssembly + entities: + - uid: 3227 + components: + - pos: 53.5,19.5 + parent: 2 + type: Transform + - uid: 3228 + components: + - pos: 54.5,19.5 + parent: 2 + type: Transform + - uid: 3229 + components: + - pos: 55.5,19.5 + parent: 2 + type: Transform + - uid: 3231 + components: + - pos: 52.5,19.5 + parent: 2 + type: Transform +- proto: SolarAssemblyPart + entities: + - uid: 3224 + components: + - pos: 55.5403,21.580292 + parent: 2 + type: Transform + - uid: 3225 + components: + - pos: 54.456963,21.455204 + parent: 2 + type: Transform + - uid: 3226 + components: + - pos: 53.6028,21.382236 + parent: 2 + type: Transform + - uid: 3230 + components: + - pos: 52.6653,21.44478 + parent: 2 + type: Transform +- proto: SolarPanel + entities: + - uid: 1092 + components: + - pos: 59.5,17.5 + parent: 2 + type: Transform + - uid: 1521 + components: + - pos: 59.5,21.5 + parent: 2 + type: Transform + - uid: 1639 + components: + - pos: 59.5,25.5 + parent: 2 + type: Transform + - uid: 1793 + components: + - pos: 59.5,23.5 + parent: 2 + type: Transform + - uid: 1816 + components: + - pos: 59.5,15.5 + parent: 2 + type: Transform + - uid: 1826 + components: + - pos: 59.5,19.5 + parent: 2 + type: Transform + - uid: 3192 + components: + - pos: 62.5,19.5 + parent: 2 + type: Transform + - uid: 3193 + components: + - pos: 61.5,19.5 + parent: 2 + type: Transform + - uid: 3194 + components: + - pos: 60.5,19.5 + parent: 2 + type: Transform + - uid: 3195 + components: + - pos: 60.5,21.5 + parent: 2 + type: Transform + - uid: 3196 + components: + - pos: 61.5,21.5 + parent: 2 + type: Transform + - uid: 3197 + components: + - pos: 62.5,21.5 + parent: 2 + type: Transform + - uid: 3200 + components: + - pos: 62.5,23.5 + parent: 2 + type: Transform + - uid: 3201 + components: + - pos: 61.5,23.5 + parent: 2 + type: Transform + - uid: 3202 + components: + - pos: 60.5,23.5 + parent: 2 + type: Transform + - uid: 3203 + components: + - pos: 60.5,25.5 + parent: 2 + type: Transform + - uid: 3204 + components: + - pos: 61.5,25.5 + parent: 2 + type: Transform + - uid: 3205 + components: + - pos: 62.5,25.5 + parent: 2 + type: Transform + - uid: 3207 + components: + - pos: 60.5,17.5 + parent: 2 + type: Transform + - uid: 3208 + components: + - pos: 61.5,17.5 + parent: 2 + type: Transform + - uid: 3209 + components: + - pos: 62.5,17.5 + parent: 2 + type: Transform + - uid: 3212 + components: + - pos: 62.5,15.5 + parent: 2 + type: Transform + - uid: 3213 + components: + - pos: 61.5,15.5 + parent: 2 + type: Transform + - uid: 3214 + components: + - pos: 60.5,15.5 + parent: 2 + type: Transform + - uid: 3215 + components: + - pos: 55.5,25.5 + parent: 2 + type: Transform + - uid: 3216 + components: + - pos: 54.5,25.5 + parent: 2 + type: Transform + - uid: 3217 + components: + - pos: 53.5,25.5 + parent: 2 + type: Transform + - uid: 3218 + components: + - pos: 52.5,25.5 + parent: 2 + type: Transform + - uid: 3219 + components: + - pos: 55.5,23.5 + parent: 2 + type: Transform + - uid: 3220 + components: + - pos: 54.5,23.5 + parent: 2 + type: Transform + - uid: 3221 + components: + - pos: 53.5,23.5 + parent: 2 + type: Transform + - uid: 3222 + components: + - pos: 52.5,23.5 + parent: 2 + type: Transform +- proto: SolarTracker + entities: + - uid: 4118 + components: + - pos: 53.5,5.5 + parent: 2 + type: Transform +- proto: SophicScribe + entities: + - uid: 8973 + components: + - pos: -27.5,-11.5 + parent: 2 + type: Transform +- proto: SpaceVillainArcadeFilled + entities: + - uid: 10062 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-23.5 + parent: 2 + type: Transform +- proto: SpawnMobBee + entities: + - uid: 9233 + components: + - pos: -29.5,-12.5 + parent: 2 + type: Transform + - uid: 9234 + components: + - pos: -31.5,-12.5 + parent: 2 + type: Transform +- proto: SpawnMobBoxingKangaroo + entities: + - uid: 10073 + components: + - pos: -43.5,-27.5 + parent: 2 + type: Transform +- proto: SpawnMobButterfly + entities: + - uid: 9230 + components: + - pos: -31.5,-14.5 + parent: 2 + type: Transform + - uid: 9231 + components: + - pos: -28.5,-9.5 + parent: 2 + type: Transform + - uid: 9232 + components: + - pos: -28.5,-14.5 + parent: 2 + type: Transform +- proto: SpawnMobCatRuntime + entities: + - uid: 2450 + components: + - pos: 36.5,-23.5 + parent: 2 + type: Transform +- proto: SpawnMobCatSpace + entities: + - uid: 10096 + components: + - pos: 40.5,9.5 + parent: 2 + type: Transform +- proto: SpawnMobCleanBot + entities: + - uid: 9728 + components: + - pos: 5.5,-17.5 + parent: 2 + type: Transform +- proto: SpawnMobCorgi + entities: + - uid: 4669 + components: + - pos: 12.5,2.5 + parent: 2 + type: Transform +- proto: SpawnMobCow + entities: + - uid: 2577 + components: + - pos: -0.5,-14.5 + parent: 2 + type: Transform +- proto: SpawnMobDrone + entities: + - uid: 2254 + components: + - pos: 31.5,18.5 + parent: 2 + type: Transform + - uid: 2944 + components: + - pos: 31.5,19.5 + parent: 2 + type: Transform + - uid: 2945 + components: + - pos: 31.5,20.5 + parent: 2 + type: Transform +- proto: SpawnMobFoxRenault + entities: + - uid: 9284 + components: + - pos: 49.5,1.5 + parent: 2 + type: Transform +- proto: SpawnMobLizard + entities: + - uid: 10091 + components: + - pos: -12.5,-10.5 + parent: 2 + type: Transform +- proto: SpawnMobMcGriff + entities: + - uid: 10092 + components: + - pos: -38.5,12.5 + parent: 2 + type: Transform +- proto: SpawnMobMedibot + entities: + - uid: 9726 + components: + - pos: 22.5,-12.5 + parent: 2 + type: Transform +- proto: SpawnMobMonkeyPunpun + entities: + - uid: 10095 + components: + - pos: 8.5,-21.5 + parent: 2 + type: Transform +- proto: SpawnMobMouse + entities: + - uid: 10093 + components: + - pos: -28.5,-30.5 + parent: 2 + type: Transform + - uid: 10316 + components: + - pos: -14.5,10.5 + parent: 2 + type: Transform + - uid: 10319 + components: + - pos: 41.5,-22.5 + parent: 2 + type: Transform + - uid: 10320 + components: + - pos: 40.5,12.5 + parent: 2 + type: Transform + - uid: 10321 + components: + - pos: 21.5,-33.5 + parent: 2 + type: Transform +- proto: SpawnMobSecDogLaika + entities: + - uid: 1306 + components: + - pos: -37.5,6.5 + parent: 2 + type: Transform +- proto: SpawnMobSlothPaperwork + entities: + - uid: 4132 + components: + - pos: 12.5,18.5 + parent: 2 + type: Transform +- proto: SpawnMobSmile + entities: + - uid: 3472 + components: + - pos: -35.5,-21.5 + parent: 2 + type: Transform +- proto: SpawnPointAssistant + entities: + - uid: 9764 + components: + - pos: 7.5,-9.5 + parent: 2 + type: Transform + - uid: 9982 + components: + - pos: -7.5,-6.5 + parent: 2 + type: Transform + - uid: 10011 + components: + - pos: 2.5,-17.5 + parent: 2 + type: Transform + - uid: 10012 + components: + - pos: 4.5,-17.5 + parent: 2 + type: Transform + - uid: 10013 + components: + - pos: 2.5,-11.5 + parent: 2 + type: Transform + - uid: 10014 + components: + - pos: -2.5,-11.5 + parent: 2 + type: Transform + - uid: 10015 + components: + - pos: -7.5,-8.5 + parent: 2 + type: Transform + - uid: 10016 + components: + - pos: -7.5,-11.5 + parent: 2 + type: Transform + - uid: 10017 + components: + - pos: 7.5,-6.5 + parent: 2 + type: Transform + - uid: 10018 + components: + - pos: 7.5,-1.5 + parent: 2 + type: Transform + - uid: 10019 + components: + - pos: 7.5,0.5 + parent: 2 + type: Transform + - uid: 10020 + components: + - pos: -6.5,16.5 + parent: 2 + type: Transform + - uid: 10021 + components: + - pos: -8.5,16.5 + parent: 2 + type: Transform + - uid: 10050 + components: + - pos: 1.5,1.5 + parent: 2 + type: Transform + - uid: 10051 + components: + - pos: -7.5,0.5 + parent: 2 + type: Transform + - uid: 10052 + components: + - pos: -0.5,1.5 + parent: 2 + type: Transform + - uid: 10053 + components: + - pos: -3.5,17.5 + parent: 2 + type: Transform + - uid: 10054 + components: + - pos: -7.5,-1.5 + parent: 2 + type: Transform + - uid: 10055 + components: + - pos: -7.5,17.5 + parent: 2 + type: Transform + - uid: 10056 + components: + - pos: -9.5,19.5 + parent: 2 + type: Transform + - uid: 10057 + components: + - pos: -7.5,19.5 + parent: 2 + type: Transform + - uid: 10058 + components: + - pos: -9.5,-23.5 + parent: 2 + type: Transform + - uid: 10059 + components: + - pos: -10.5,-24.5 + parent: 2 + type: Transform + - uid: 10060 + components: + - pos: -8.5,-26.5 + parent: 2 + type: Transform + - uid: 10061 + components: + - pos: -9.5,-27.5 + parent: 2 + type: Transform +- proto: SpawnPointAtmos + entities: + - uid: 10897 + components: + - pos: 39.5,8.5 + parent: 2 + type: Transform +- proto: SpawnPointBartender + entities: + - uid: 9962 + components: + - pos: 7.5,-22.5 + parent: 2 + type: Transform + - uid: 9963 + components: + - pos: 5.5,-22.5 + parent: 2 + type: Transform + - uid: 9964 + components: + - pos: 12.5,-23.5 + parent: 2 + type: Transform +- proto: SpawnPointBorg + entities: + - uid: 9986 + components: + - pos: -24.5,-23.5 + parent: 2 + type: Transform + - uid: 9987 + components: + - pos: -22.5,-23.5 + parent: 2 + type: Transform +- proto: SpawnPointBotanist + entities: + - uid: 9965 + components: + - pos: 12.5,-17.5 + parent: 2 + type: Transform + - uid: 9966 + components: + - pos: 14.5,-19.5 + parent: 2 + type: Transform + - uid: 9967 + components: + - pos: 16.5,-17.5 + parent: 2 + type: Transform + - uid: 9968 + components: + - pos: 15.5,-19.5 + parent: 2 + type: Transform + - uid: 9969 + components: + - pos: 13.5,-19.5 + parent: 2 + type: Transform +- proto: SpawnPointBrigmedic + entities: + - uid: 9984 + components: + - pos: -24.5,19.5 + parent: 2 + type: Transform +- proto: SpawnPointCaptain + entities: + - uid: 2295 + components: + - pos: 49.5,-10.5 + parent: 2 + type: Transform +- proto: SpawnPointCargoTechnician + entities: + - uid: 9970 + components: + - pos: 0.5,10.5 + parent: 2 + type: Transform + - uid: 9972 + components: + - pos: 2.5,10.5 + parent: 2 + type: Transform + - uid: 9973 + components: + - pos: 1.5,10.5 + parent: 2 + type: Transform + - uid: 9976 + components: + - pos: -1.5,10.5 + parent: 2 + type: Transform + - uid: 9977 + components: + - pos: -2.5,10.5 + parent: 2 + type: Transform +- proto: SpawnPointChaplain + entities: + - uid: 9971 + components: + - pos: -39.5,-10.5 + parent: 2 + type: Transform +- proto: SpawnPointChef + entities: + - uid: 9974 + components: + - pos: -1.5,-18.5 + parent: 2 + type: Transform + - uid: 9975 + components: + - pos: -3.5,-17.5 + parent: 2 + type: Transform + - uid: 9978 + components: + - pos: -1.5,-16.5 + parent: 2 + type: Transform +- proto: SpawnPointChemist + entities: + - uid: 9979 + components: + - pos: 20.5,-19.5 + parent: 2 + type: Transform + - uid: 9980 + components: + - pos: 22.5,-19.5 + parent: 2 + type: Transform + - uid: 9981 + components: + - pos: 20.5,-16.5 + parent: 2 + type: Transform +- proto: SpawnPointChiefEngineer + entities: + - uid: 2385 + components: + - pos: 48.5,-9.5 + parent: 2 + type: Transform +- proto: SpawnPointChiefMedicalOfficer + entities: + - uid: 2296 + components: + - pos: 48.5,-12.5 + parent: 2 + type: Transform +- proto: SpawnPointClown + entities: + - uid: 10008 + components: + - pos: 0.5,-28.5 + parent: 2 + type: Transform +- proto: SpawnPointDetective + entities: + - uid: 9988 + components: + - pos: -11.5,8.5 + parent: 2 + type: Transform +- proto: SpawnPointForensicMantis + entities: + - uid: 10022 + components: + - pos: -33.5,-18.5 + parent: 2 + type: Transform +- proto: SpawnPointHeadOfPersonnel + entities: + - uid: 2390 + components: + - pos: 47.5,-12.5 + parent: 2 + type: Transform +- proto: SpawnPointHeadOfSecurity + entities: + - uid: 4303 + components: + - pos: 46.5,-10.5 + parent: 2 + type: Transform +- proto: SpawnPointJanitor + entities: + - uid: 9989 + components: + - pos: -12.5,-1.5 + parent: 2 + type: Transform + - uid: 9990 + components: + - pos: -11.5,-0.5 + parent: 2 + type: Transform +- proto: SpawnPointLatejoin + entities: + - uid: 9991 + components: + - pos: -10.5,18.5 + parent: 2 + type: Transform + - uid: 9992 + components: + - pos: -8.5,18.5 + parent: 2 + type: Transform + - uid: 9993 + components: + - pos: -6.5,18.5 + parent: 2 + type: Transform + - uid: 9994 + components: + - pos: -4.5,18.5 + parent: 2 + type: Transform + - uid: 9995 + components: + - pos: -12.5,18.5 + parent: 2 + type: Transform +- proto: SpawnPointLawyer + entities: + - uid: 9996 + components: + - pos: -39.5,-0.5 + parent: 2 + type: Transform +- proto: SpawnPointMailCarrier + entities: + - uid: 9983 + components: + - pos: 0.5,17.5 + parent: 2 + type: Transform + - uid: 9985 + components: + - pos: 1.5,18.5 + parent: 2 + type: Transform +- proto: SpawnPointMedicalDoctor + entities: + - uid: 10000 + components: + - pos: 28.5,-16.5 + parent: 2 + type: Transform + - uid: 10001 + components: + - pos: 28.5,-17.5 + parent: 2 + type: Transform + - uid: 10002 + components: + - pos: 28.5,-18.5 + parent: 2 + type: Transform + - uid: 10003 + components: + - pos: 30.5,-16.5 + parent: 2 + type: Transform + - uid: 10004 + components: + - pos: 30.5,-17.5 + parent: 2 + type: Transform + - uid: 10005 + components: + - pos: 30.5,-18.5 + parent: 2 + type: Transform +- proto: SpawnPointMedicalIntern + entities: + - uid: 9997 + components: + - pos: 28.5,-14.5 + parent: 2 + type: Transform + - uid: 9998 + components: + - pos: 29.5,-14.5 + parent: 2 + type: Transform + - uid: 9999 + components: + - pos: 30.5,-14.5 + parent: 2 + type: Transform +- proto: SpawnPointMime + entities: + - uid: 10009 + components: + - pos: 1.5,-27.5 + parent: 2 + type: Transform +- proto: SpawnPointMusician + entities: + - uid: 10007 + components: + - pos: 2.5,-28.5 + parent: 2 + type: Transform +- proto: SpawnPointObserver + entities: + - uid: 6851 + components: + - pos: -0.5,-2.5 + parent: 2 + type: Transform +- proto: SpawnPointParamedic + entities: + - uid: 10006 + components: + - pos: 28.5,-10.5 + parent: 2 + type: Transform + - uid: 10010 + components: + - pos: 30.5,-10.5 + parent: 2 + type: Transform +- proto: SpawnPointPrisoner + entities: + - uid: 10819 + components: + - pos: -32.5,16.5 + parent: 2 + type: Transform + - uid: 10820 + components: + - pos: -34.5,17.5 + parent: 2 + type: Transform + - uid: 10821 + components: + - pos: -32.5,17.5 + parent: 2 + type: Transform + - uid: 10822 + components: + - pos: -34.5,16.5 + parent: 2 + type: Transform +- proto: SpawnPointQuartermaster + entities: + - uid: 2389 + components: + - pos: 47.5,-9.5 + parent: 2 + type: Transform +- proto: SpawnPointReporter + entities: + - uid: 10023 + components: + - pos: -11.5,-18.5 + parent: 2 + type: Transform +- proto: SpawnPointResearchAssistant + entities: + - uid: 10024 + components: + - pos: -27.5,-20.5 + parent: 2 + type: Transform + - uid: 10025 + components: + - pos: -27.5,-21.5 + parent: 2 + type: Transform + - uid: 10026 + components: + - pos: -27.5,-22.5 + parent: 2 + type: Transform +- proto: SpawnPointResearchDirector + entities: + - uid: 4302 + components: + - pos: 46.5,-11.5 + parent: 2 + type: Transform +- proto: SpawnPointSalvageSpecialist + entities: + - uid: 9546 + components: + - pos: 12.5,24.5 + parent: 2 + type: Transform + - uid: 9547 + components: + - pos: 13.5,26.5 + parent: 2 + type: Transform + - uid: 9548 + components: + - pos: 15.5,24.5 + parent: 2 + type: Transform +- proto: SpawnPointScientist + entities: + - uid: 10027 + components: + - pos: -29.5,-19.5 + parent: 2 + type: Transform + - uid: 10028 + components: + - pos: -29.5,-20.5 + parent: 2 + type: Transform + - uid: 10029 + components: + - pos: -29.5,-21.5 + parent: 2 + type: Transform + - uid: 10030 + components: + - pos: -29.5,-22.5 + parent: 2 + type: Transform +- proto: SpawnPointSecurityCadet + entities: + - uid: 10031 + components: + - pos: -31.5,4.5 + parent: 2 + type: Transform + - uid: 10032 + components: + - pos: -30.5,5.5 + parent: 2 + type: Transform + - uid: 10033 + components: + - pos: -32.5,4.5 + parent: 2 + type: Transform + - uid: 10034 + components: + - pos: -33.5,5.5 + parent: 2 + type: Transform +- proto: SpawnPointSecurityOfficer + entities: + - uid: 10035 + components: + - pos: -33.5,6.5 + parent: 2 + type: Transform + - uid: 10036 + components: + - pos: -33.5,7.5 + parent: 2 + type: Transform + - uid: 10038 + components: + - pos: -31.5,8.5 + parent: 2 + type: Transform + - uid: 10039 + components: + - pos: -30.5,7.5 + parent: 2 + type: Transform +- proto: SpawnPointStationEngineer + entities: + - uid: 10037 + components: + - pos: 35.5,8.5 + parent: 2 + type: Transform + - uid: 10040 + components: + - pos: 36.5,8.5 + parent: 2 + type: Transform + - uid: 10041 + components: + - pos: 37.5,8.5 + parent: 2 + type: Transform + - uid: 10042 + components: + - pos: 40.5,7.5 + parent: 2 + type: Transform + - uid: 10043 + components: + - pos: 40.5,6.5 + parent: 2 + type: Transform + - uid: 10044 + components: + - pos: 40.5,5.5 + parent: 2 + type: Transform +- proto: SpawnPointTechnicalAssistant + entities: + - uid: 10045 + components: + - pos: 33.5,6.5 + parent: 2 + type: Transform + - uid: 10046 + components: + - pos: 34.5,6.5 + parent: 2 + type: Transform + - uid: 10047 + components: + - pos: 34.5,5.5 + parent: 2 + type: Transform + - uid: 10048 + components: + - pos: 33.5,5.5 + parent: 2 + type: Transform +- proto: SpawnPointWarden + entities: + - uid: 10049 + components: + - pos: -33.5,8.5 + parent: 2 + type: Transform +- proto: SpeedLoaderSpecial + entities: + - uid: 2666 + components: + - pos: -37.787407,4.6658316 + parent: 2 + type: Transform + - uid: 2861 + components: + - pos: -37.787407,4.6658316 + parent: 2 + type: Transform +- proto: SprayBottleSpaceCleaner + entities: + - uid: 1381 + components: + - pos: -12.820137,0.6810938 + parent: 2 + type: Transform + - uid: 1382 + components: + - pos: -12.611803,0.85830045 + parent: 2 + type: Transform + - uid: 9602 + components: + - pos: -48.517387,-1.4072679 + parent: 2 + type: Transform +- proto: StasisBed + entities: + - uid: 799 + components: + - pos: 27.5,-8.5 + parent: 2 + type: Transform + - uid: 1749 + components: + - pos: 27.5,-9.5 + parent: 2 + type: Transform +- proto: StationMap + entities: + - uid: 10775 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,10.5 + parent: 2 + type: Transform + - uid: 10776 + components: + - pos: 1.5,-9.5 + parent: 2 + type: Transform + - uid: 10777 + components: + - pos: -10.5,-29.5 + parent: 2 + type: Transform + - uid: 10778 + components: + - pos: -35.5,-13.5 + parent: 2 + type: Transform + - uid: 10779 + components: + - pos: -49.5,-3.5 + parent: 2 + type: Transform + - uid: 10786 + components: + - pos: 29.5,-3.5 + parent: 2 + type: Transform +- proto: StationMapBroken + entities: + - uid: 3763 + components: + - pos: 11.5,12.5 + parent: 2 + type: Transform +- proto: StationRecordsComputerCircuitboard + entities: + - uid: 9319 + components: + - pos: 47.367294,-14.384516 + parent: 2 + type: Transform +- proto: SteelBench + entities: + - uid: 3664 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-1.5 + parent: 2 + type: Transform + - uid: 3665 + components: + - rot: -1.5707963267948966 rad + pos: -21.5,-2.5 + parent: 2 + type: Transform + - uid: 3666 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-1.5 + parent: 2 + type: Transform + - uid: 3667 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,-2.5 + parent: 2 + type: Transform + - uid: 3668 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-1.5 + parent: 2 + type: Transform + - uid: 3669 + components: + - rot: 1.5707963267948966 rad + pos: -20.5,-2.5 + parent: 2 + type: Transform + - uid: 3670 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-1.5 + parent: 2 + type: Transform + - uid: 3671 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-2.5 + parent: 2 + type: Transform + - uid: 3747 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,17.5 + parent: 2 + type: Transform + - uid: 3748 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,16.5 + parent: 2 + type: Transform + - uid: 3750 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,17.5 + parent: 2 + type: Transform + - uid: 3751 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,16.5 + parent: 2 + type: Transform +- proto: Stool + entities: + - uid: 1095 + components: + - rot: 3.141592653589793 rad + pos: 5.5114126,-15.149324 + parent: 2 + type: Transform +- proto: StoolBar + entities: + - uid: 58 + components: + - pos: 5.5,-19.5 + parent: 2 + type: Transform + - uid: 65 + components: + - pos: 6.5,-19.5 + parent: 2 + type: Transform + - uid: 76 + components: + - pos: 7.5,-19.5 + parent: 2 + type: Transform + - uid: 178 + components: + - pos: -4.5,-12.5 + parent: 2 + type: Transform + - uid: 258 + components: + - pos: 8.5,-19.5 + parent: 2 + type: Transform + - uid: 357 + components: + - pos: -3.5,-12.5 + parent: 2 + type: Transform + - uid: 358 + components: + - pos: -2.5,-12.5 + parent: 2 + type: Transform + - uid: 359 + components: + - pos: -1.5,-12.5 + parent: 2 + type: Transform + - uid: 6994 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,23.5 + parent: 2 + type: Transform + - uid: 6995 + components: + - rot: 1.5707963267948966 rad + pos: -48.5,22.5 + parent: 2 + type: Transform +- proto: StorageCanister + entities: + - uid: 3082 + components: + - pos: 16.5,9.5 + parent: 2 + type: Transform + - uid: 3260 + components: + - pos: 16.5,10.5 + parent: 2 + type: Transform + - uid: 4623 + components: + - pos: 17.5,3.5 + parent: 2 + type: Transform + - uid: 8921 + components: + - pos: -24.5,-12.5 + parent: 2 + type: Transform +- proto: Stunbaton + entities: + - uid: 10805 + components: + - pos: -28.50663,10.559534 + parent: 2 + type: Transform + - uid: 10806 + components: + - pos: -28.13163,10.524787 + parent: 2 + type: Transform +- proto: SubstationBasic + entities: + - uid: 1075 + components: + - name: substation (east sec, arrivals, north service) + type: MetaData + - pos: -14.5,2.5 + parent: 2 + type: Transform + - uid: 2958 + components: + - name: substation (eng & bridge) + type: MetaData + - pos: 36.5,19.5 + parent: 2 + type: Transform + - uid: 2959 + components: + - name: substation (med & bridge) + type: MetaData + - pos: 43.5,-11.5 + parent: 2 + type: Transform + - uid: 3372 + components: + - name: substation (west sec) + type: MetaData + - pos: -54.5,15.5 + parent: 2 + type: Transform + - uid: 4112 + components: + - name: substation (evac & epi main) + type: MetaData + - pos: -41.5,-22.5 + parent: 2 + type: Transform + - uid: 4954 + components: + - name: substation (south service & med) + type: MetaData + - pos: 19.5,-31.5 + parent: 2 + type: Transform + - uid: 8989 + components: + - name: substation (logi, eng, hydro) + type: MetaData + - pos: 11.5,7.5 + parent: 2 + type: Transform +- proto: SuitStorageCaptain + entities: + - uid: 4639 + components: + - pos: 49.5,-1.5 + parent: 2 + type: Transform +- proto: SuitStorageCE + entities: + - uid: 4626 + components: + - pos: 37.5,13.5 + parent: 2 + type: Transform +- proto: SuitStorageCMO + entities: + - uid: 2457 + components: + - pos: 36.5,-21.5 + parent: 2 + type: Transform +- proto: SuitStorageEngi + entities: + - uid: 779 + components: + - pos: 28.5,2.5 + parent: 2 + type: Transform + - uid: 793 + components: + - pos: 28.5,1.5 + parent: 2 + type: Transform + - uid: 3242 + components: + - pos: 44.5,10.5 + parent: 2 + type: Transform + - uid: 3256 + components: + - pos: 22.5,16.5 + parent: 2 + type: Transform + - uid: 3257 + components: + - pos: 25.5,16.5 + parent: 2 + type: Transform +- proto: SuitStorageEVA + entities: + - uid: 610 + components: + - pos: -12.5,-32.5 + parent: 2 + type: Transform + - uid: 1491 + components: + - pos: -16.5,-31.5 + parent: 2 + type: Transform + - uid: 3409 + components: + - pos: -14.5,-32.5 + parent: 2 + type: Transform + - uid: 3712 + components: + - pos: -14.5,-31.5 + parent: 2 + type: Transform + - uid: 3713 + components: + - pos: -12.5,-31.5 + parent: 2 + type: Transform + - uid: 3725 + components: + - pos: -16.5,-32.5 + parent: 2 + type: Transform +- proto: SuitStorageEVAEmergency + entities: + - uid: 10237 + components: + - pos: -37.5,-14.5 + parent: 2 + type: Transform +- proto: SuitStorageParamedic + entities: + - uid: 1734 + components: + - pos: 32.5,-9.5 + parent: 2 + type: Transform + - uid: 1746 + components: + - pos: 32.5,-8.5 + parent: 2 + type: Transform +- proto: SuitStorageRD + entities: + - uid: 3480 + components: + - pos: -35.5,-26.5 + parent: 2 + type: Transform +- proto: SuitStorageSec + entities: + - uid: 10800 + components: + - pos: -17.5,11.5 + parent: 2 + type: Transform + - uid: 10802 + components: + - pos: -17.5,13.5 + parent: 2 + type: Transform + - uid: 10803 + components: + - pos: -17.5,10.5 + parent: 2 + type: Transform + - uid: 10807 + components: + - pos: -17.5,14.5 + parent: 2 + type: Transform +- proto: SurveillanceCameraCommand + entities: + - uid: 9190 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-1.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: vault exterior dexter + type: SurveillanceCamera + - uid: 9438 + components: + - rot: 3.141592653589793 rad + pos: 50.5,-3.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: bridge main + type: SurveillanceCamera + - uid: 9439 + components: + - pos: 46.5,-6.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: bridge foyer + type: SurveillanceCamera + - uid: 9440 + components: + - rot: -1.5707963267948966 rad + pos: 45.5,-11.5 + parent: 2 + type: Transform + - uid: 9441 + components: + - rot: 1.5707963267948966 rad + pos: 47.5,-15.5 + parent: 2 + type: Transform + - uid: 9450 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-4.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: vault interior + type: SurveillanceCamera + - uid: 9451 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-1.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: vault exterior sinister + type: SurveillanceCamera + - uid: 9645 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-29.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: EVA room + type: SurveillanceCamera + - uid: 9690 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,19.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: drones + type: SurveillanceCamera + - uid: 9736 + components: + - rot: 3.141592653589793 rad + pos: 38.5,2.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: gravity + type: SurveillanceCamera +- proto: SurveillanceCameraEngineering + entities: + - uid: 9683 + components: + - rot: 3.141592653589793 rad + pos: 22.5,6.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: atmospherics + type: SurveillanceCamera + - uid: 9684 + components: + - rot: 1.5707963267948966 rad + pos: 26.5,-1.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: front desk + type: SurveillanceCamera + - uid: 9685 + components: + - rot: 3.141592653589793 rad + pos: 18.5,16.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: TEG sinister + type: SurveillanceCamera + - uid: 9686 + components: + - rot: 3.141592653589793 rad + pos: 29.5,16.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: TEG dexter + type: SurveillanceCamera + - uid: 9689 + components: + - rot: 1.5707963267948966 rad + pos: 37.5,12.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: office, CE's + type: SurveillanceCamera + - uid: 9734 + components: + - rot: 3.141592653589793 rad + pos: 37.5,9.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: power + type: SurveillanceCamera + - uid: 9735 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,0.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: lockers + type: SurveillanceCamera +- proto: SurveillanceCameraGeneral + entities: + - uid: 9442 + components: + - pos: 32.5,-6.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: east hall distal + type: SurveillanceCamera + - uid: 9443 + components: + - pos: 16.5,-6.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: east hall proximal + type: SurveillanceCamera + - uid: 9444 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,9.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: arrivals hall + type: SurveillanceCamera + - uid: 9445 + components: + - pos: -5.5,16.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: arrivals lobby + type: SurveillanceCamera + - uid: 9446 + components: + - rot: -1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: origin east + type: SurveillanceCamera + - uid: 9447 + components: + - rot: 3.141592653589793 rad + pos: 1.5,-10.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: origin south + type: SurveillanceCamera + - uid: 9448 + components: + - pos: -0.5,0.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: origin north + type: SurveillanceCamera + - uid: 9449 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-6.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: origin west + type: SurveillanceCamera + - uid: 9643 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-24.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: dorms + type: SurveillanceCamera + - uid: 9644 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-32.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: evac, alternate + type: SurveillanceCamera + - uid: 9646 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,-14.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: evac, primary south + type: SurveillanceCamera + - uid: 9647 + components: + - rot: 1.5707963267948966 rad + pos: -50.5,-7.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: evac, primary north + type: SurveillanceCamera + - uid: 9648 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-4.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: west hall proximal + type: SurveillanceCamera + - uid: 9649 + components: + - rot: 3.141592653589793 rad + pos: -40.5,-4.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: west hall distal + type: SurveillanceCamera +- proto: SurveillanceCameraRouterCommand + entities: + - uid: 4664 + components: + - name: camera router (command) + type: MetaData + - pos: 44.5,-8.5 + parent: 2 + type: Transform +- proto: SurveillanceCameraRouterEngineering + entities: + - uid: 4210 + components: + - name: camera router (engineering) + type: MetaData + - pos: 37.5,2.5 + parent: 2 + type: Transform +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 3481 + components: + - name: camera router (general) + type: MetaData + - pos: -1.5,-4.5 + parent: 2 + type: Transform +- proto: SurveillanceCameraRouterMedical + entities: + - uid: 4207 + components: + - name: camera router (medical) + type: MetaData + - pos: 35.5,-17.5 + parent: 2 + type: Transform +- proto: SurveillanceCameraRouterScience + entities: + - uid: 4205 + components: + - name: camera router (epistemics) + type: MetaData + - pos: -26.5,-20.5 + parent: 2 + type: Transform +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 2357 + components: + - name: camera router (security) + type: MetaData + - pos: -19.5,19.5 + parent: 2 + type: Transform +- proto: SurveillanceCameraRouterService + entities: + - uid: 4211 + components: + - name: camera router (service) + type: MetaData + - pos: 11.5,4.5 + parent: 2 + type: Transform +- proto: SurveillanceCameraRouterSupply + entities: + - uid: 4206 + components: + - name: camera router (logistics) + type: MetaData + - pos: 5.5,12.5 + parent: 2 + type: Transform +- proto: SurveillanceCameraScience + entities: + - uid: 9672 + components: + - rot: 1.5707963267948966 rad + pos: -26.5,-14.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: park + type: SurveillanceCamera + - uid: 9673 + components: + - rot: 3.141592653589793 rad + pos: -21.5,-8.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: artifact lab upper + type: SurveillanceCamera + - uid: 9674 + components: + - pos: -22.5,-14.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: artifact lab lower + type: SurveillanceCamera + - uid: 9675 + components: + - pos: -21.5,-20.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: anomaly lab + type: SurveillanceCamera + - uid: 9676 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-22.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: robotics + type: SurveillanceCamera + - uid: 9677 + components: + - rot: 1.5707963267948966 rad + pos: -27.5,-27.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: probers + type: SurveillanceCamera + - uid: 9678 + components: + - rot: -1.5707963267948966 rad + pos: -30.5,-20.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: front desk + type: SurveillanceCamera + - uid: 9679 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-24.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: lockers + type: SurveillanceCamera + - uid: 9680 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-27.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: office, mystagogue's + type: SurveillanceCamera + - uid: 9681 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,-18.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: office, mantis's + type: SurveillanceCamera + - uid: 9682 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-15.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: office, chapel's + type: SurveillanceCamera +- proto: SurveillanceCameraSecurity + entities: + - uid: 9650 + components: + - rot: 3.141592653589793 rad + pos: -11.5,11.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: office, detective's + type: SurveillanceCamera + - uid: 9651 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,19.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: entrance, arrivals + type: SurveillanceCamera + - uid: 9652 + components: + - rot: 3.141592653589793 rad + pos: -23.5,17.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: medbay, security + type: SurveillanceCamera + - uid: 9653 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,11.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: east hall + type: SurveillanceCamera + - uid: 9654 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-1.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: entrance, main + type: SurveillanceCamera + - uid: 9655 + components: + - rot: 3.141592653589793 rad + pos: -21.5,5.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: entrance, reception + type: SurveillanceCamera + - uid: 9656 + components: + - rot: 3.141592653589793 rad + pos: -22.5,10.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: lockers + type: SurveillanceCamera + - uid: 9657 + components: + - rot: -1.5707963267948966 rad + pos: -34.5,6.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: center room + type: SurveillanceCamera + - uid: 9658 + components: + - rot: -1.5707963267948966 rad + pos: -39.5,6.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: office, HoS + type: SurveillanceCamera + - uid: 9659 + components: + - pos: -38.5,11.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: office, warden's + type: SurveillanceCamera + - uid: 9660 + components: + - rot: 3.141592653589793 rad + pos: -42.5,14.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: armory + type: SurveillanceCamera + - uid: 9661 + components: + - rot: 1.5707963267948966 rad + pos: -46.5,14.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: range, firing + type: SurveillanceCamera + - uid: 9662 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,5.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: range, EOD + type: SurveillanceCamera + - uid: 9663 + components: + - rot: 1.5707963267948966 rad + pos: -41.5,7.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: execution + type: SurveillanceCamera + - uid: 9664 + components: + - rot: 3.141592653589793 rad + pos: -31.5,2.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: courtroom + type: SurveillanceCamera +- proto: SurveillanceCameraService + entities: + - uid: 9634 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,1.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: office, HoP + type: SurveillanceCamera + - uid: 9636 + components: + - rot: 3.141592653589793 rad + pos: 10.5,-8.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: service storage + type: SurveillanceCamera + - uid: 9637 + components: + - rot: 3.141592653589793 rad + pos: 15.5,-15.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: hydroponics + type: SurveillanceCamera + - uid: 9638 + components: + - rot: 3.141592653589793 rad + pos: 5.5,-14.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: bar room + type: SurveillanceCamera + - uid: 9639 + components: + - pos: 5.5,-23.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: bar counter + type: SurveillanceCamera + - uid: 9640 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-17.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: kitchen + type: SurveillanceCamera + - uid: 9641 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-2.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: office, janitor + type: SurveillanceCamera + - uid: 9642 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-17.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: office, reporter's + type: SurveillanceCamera + - uid: 9671 + components: + - rot: 3.141592653589793 rad + pos: -38.5,0.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: office, lawyer's + type: SurveillanceCamera +- proto: SurveillanceCameraSupply + entities: + - uid: 9625 + components: + - rot: 3.141592653589793 rad + pos: -4.5,7.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: logi front desk + type: SurveillanceCamera + - uid: 9626 + components: + - rot: 3.141592653589793 rad + pos: 1.5,7.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: logi public staging + type: SurveillanceCamera + - uid: 9627 + components: + - rot: 3.141592653589793 rad + pos: 1.5,14.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: logi front staging + type: SurveillanceCamera + - uid: 9628 + components: + - rot: 3.141592653589793 rad + pos: 0.5,19.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: mail + type: SurveillanceCamera + - uid: 9629 + components: + - pos: 6.5,19.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: docking proximal + type: SurveillanceCamera + - uid: 9630 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,30.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: docking distal + type: SurveillanceCamera + - uid: 9631 + components: + - rot: -1.5707963267948966 rad + pos: 11.5,27.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: salvage interior + type: SurveillanceCamera + - uid: 9632 + components: + - rot: -1.5707963267948966 rad + pos: 20.5,29.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: salvage exterior + type: SurveillanceCamera + - uid: 9633 + components: + - pos: 15.5,18.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: break room + type: SurveillanceCamera + - uid: 9635 + components: + - pos: 9.5,9.5 + parent: 2 + type: Transform + - setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: junkyard + type: SurveillanceCamera +- proto: SurveillanceCameraWirelessRouterEntertainment + entities: + - uid: 4071 + components: + - pos: -10.5,-17.5 + parent: 2 + type: Transform +- proto: SurveillanceWirelessCameraMovableEntertainment + entities: + - uid: 8976 + components: + - rot: 1.5707963267948966 rad + pos: -10.5,-19.5 + parent: 2 + type: Transform +- proto: Table + entities: + - uid: 257 + components: + - pos: 14.5,-18.5 + parent: 2 + type: Transform + - uid: 276 + components: + - pos: 13.5,-18.5 + parent: 2 + type: Transform + - uid: 504 + components: + - pos: 35.5,-14.5 + parent: 2 + type: Transform + - uid: 567 + components: + - pos: 14.5,-20.5 + parent: 2 + type: Transform + - uid: 568 + components: + - pos: 15.5,-20.5 + parent: 2 + type: Transform + - uid: 633 + components: + - pos: 19.5,-9.5 + parent: 2 + type: Transform + - uid: 656 + components: + - pos: 10.5,-10.5 + parent: 2 + type: Transform + - uid: 794 + components: + - pos: 28.5,0.5 + parent: 2 + type: Transform + - uid: 942 + components: + - pos: -4.5,5.5 + parent: 2 + type: Transform + - uid: 943 + components: + - pos: -1.5,6.5 + parent: 2 + type: Transform + - uid: 944 + components: + - pos: -1.5,7.5 + parent: 2 + type: Transform + - uid: 1031 + components: + - rot: 3.141592653589793 rad + pos: 0.5,19.5 + parent: 2 + type: Transform + - uid: 1041 + components: + - pos: -12.5,15.5 + parent: 2 + type: Transform + - uid: 1058 + components: + - rot: 3.141592653589793 rad + pos: -0.5,19.5 + parent: 2 + type: Transform + - uid: 1806 + components: + - pos: 9.5,22.5 + parent: 2 + type: Transform + - uid: 2362 + components: + - pos: 49.5,-3.5 + parent: 2 + type: Transform + - uid: 2364 + components: + - pos: 48.5,-3.5 + parent: 2 + type: Transform + - uid: 2589 + components: + - pos: -14.5,-26.5 + parent: 2 + type: Transform + - uid: 2836 + components: + - pos: -32.5,7.5 + parent: 2 + type: Transform + - uid: 2875 + components: + - pos: -29.5,12.5 + parent: 2 + type: Transform + - uid: 2896 + components: + - pos: -39.5,15.5 + parent: 2 + type: Transform + - uid: 2897 + components: + - pos: -39.5,16.5 + parent: 2 + type: Transform + - uid: 2937 + components: + - pos: -32.5,6.5 + parent: 2 + type: Transform + - uid: 3190 + components: + - pos: 8.5,22.5 + parent: 2 + type: Transform + - uid: 3295 + components: + - pos: -48.5,11.5 + parent: 2 + type: Transform + - uid: 3297 + components: + - pos: -49.5,11.5 + parent: 2 + type: Transform + - uid: 7003 + components: + - pos: 10.5,-32.5 + parent: 2 + type: Transform + - uid: 9523 + components: + - pos: 21.5,-31.5 + parent: 2 + type: Transform + - uid: 9530 + components: + - pos: 17.5,1.5 + parent: 2 + type: Transform + - uid: 9603 + components: + - pos: -14.5,-15.5 + parent: 2 + type: Transform + - uid: 9691 + components: + - rot: -1.5707963267948966 rad + pos: 38.5,20.5 + parent: 2 + type: Transform + - uid: 10267 + components: + - pos: -27.5,-29.5 + parent: 2 + type: Transform +- proto: TableCarpet + entities: + - uid: 141 + components: + - pos: 1.5,-29.5 + parent: 2 + type: Transform + - uid: 2915 + components: + - pos: -30.5,17.5 + parent: 2 + type: Transform + - uid: 2916 + components: + - pos: -30.5,16.5 + parent: 2 + type: Transform + - uid: 3999 + components: + - pos: 1.5,-28.5 + parent: 2 + type: Transform + - uid: 4121 + components: + - pos: 16.5,19.5 + parent: 2 + type: Transform + - uid: 4123 + components: + - pos: 15.5,19.5 + parent: 2 + type: Transform + - uid: 8878 + components: + - pos: -52.5,-20.5 + parent: 2 + type: Transform + - uid: 8881 + components: + - pos: -50.5,-22.5 + parent: 2 + type: Transform + - uid: 8882 + components: + - pos: -50.5,-21.5 + parent: 2 + type: Transform +- proto: TableCounterMetal + entities: + - uid: 92 + components: + - pos: -2.5,-17.5 + parent: 2 + type: Transform + - uid: 95 + components: + - pos: -2.5,-16.5 + parent: 2 + type: Transform + - uid: 97 + components: + - pos: -2.5,-21.5 + parent: 2 + type: Transform + - uid: 289 + components: + - pos: -1.5,-17.5 + parent: 2 + type: Transform + - uid: 300 + components: + - pos: -1.5,-19.5 + parent: 2 + type: Transform + - uid: 348 + components: + - pos: -2.5,-26.5 + parent: 2 + type: Transform + - uid: 460 + components: + - pos: -2.5,-19.5 + parent: 2 + type: Transform + - uid: 464 + components: + - pos: -0.5,-19.5 + parent: 2 + type: Transform + - uid: 491 + components: + - pos: 28.5,-11.5 + parent: 2 + type: Transform + - uid: 632 + components: + - pos: 27.5,-11.5 + parent: 2 + type: Transform + - uid: 1100 + components: + - pos: -1.5,-26.5 + parent: 2 + type: Transform + - uid: 1142 + components: + - pos: -20.5,2.5 + parent: 2 + type: Transform + - uid: 1224 + components: + - pos: -24.5,-22.5 + parent: 2 + type: Transform + - uid: 1920 + components: + - pos: 44.5,-2.5 + parent: 2 + type: Transform + - uid: 2198 + components: + - pos: 33.5,-12.5 + parent: 2 + type: Transform + - uid: 2199 + components: + - pos: 33.5,-13.5 + parent: 2 + type: Transform + - uid: 2310 + components: + - pos: 44.5,-1.5 + parent: 2 + type: Transform + - uid: 2501 + components: + - pos: 38.5,-26.5 + parent: 2 + type: Transform + - uid: 2519 + components: + - pos: 31.5,-30.5 + parent: 2 + type: Transform + - uid: 2522 + components: + - pos: 30.5,-30.5 + parent: 2 + type: Transform + - uid: 2529 + components: + - pos: 38.5,-25.5 + parent: 2 + type: Transform + - uid: 2531 + components: + - pos: 37.5,-25.5 + parent: 2 + type: Transform + - uid: 2556 + components: + - pos: -23.5,-22.5 + parent: 2 + type: Transform + - uid: 2572 + components: + - pos: -30.5,-17.5 + parent: 2 + type: Transform + - uid: 2573 + components: + - pos: -30.5,-18.5 + parent: 2 + type: Transform + - uid: 2704 + components: + - pos: -21.5,19.5 + parent: 2 + type: Transform + - uid: 2864 + components: + - pos: -27.5,10.5 + parent: 2 + type: Transform + - uid: 3124 + components: + - pos: -20.5,3.5 + parent: 2 + type: Transform + - uid: 3493 + components: + - pos: -48.5,-1.5 + parent: 2 + type: Transform + - uid: 4126 + components: + - pos: 16.5,21.5 + parent: 2 + type: Transform + - uid: 6985 + components: + - pos: -45.5,22.5 + parent: 2 + type: Transform + - uid: 6989 + components: + - pos: -45.5,21.5 + parent: 2 + type: Transform + - uid: 10335 + components: + - pos: -28.5,10.5 + parent: 2 + type: Transform + - uid: 10763 + components: + - pos: 50.5,-11.5 + parent: 2 + type: Transform +- proto: TableCounterWood + entities: + - uid: 281 + components: + - pos: -10.5,7.5 + parent: 2 + type: Transform + - uid: 542 + components: + - pos: 5.5,-23.5 + parent: 2 + type: Transform + - uid: 823 + components: + - pos: -10.5,8.5 + parent: 2 + type: Transform + - uid: 1432 + components: + - pos: -32.5,1.5 + parent: 2 + type: Transform + - uid: 1433 + components: + - pos: -34.5,0.5 + parent: 2 + type: Transform + - uid: 1434 + components: + - pos: -32.5,-1.5 + parent: 2 + type: Transform + - uid: 1542 + components: + - pos: -34.5,-0.5 + parent: 2 + type: Transform + - uid: 1565 + components: + - rot: -1.5707963267948966 rad + pos: -42.5,-8.5 + parent: 2 + type: Transform + - uid: 1908 + components: + - pos: -37.5,0.5 + parent: 2 + type: Transform + - uid: 1913 + components: + - pos: -37.5,-0.5 + parent: 2 + type: Transform + - uid: 2366 + components: + - pos: 6.5,-23.5 + parent: 2 + type: Transform + - uid: 2780 + components: + - pos: 7.5,-23.5 + parent: 2 + type: Transform + - uid: 3844 + components: + - pos: -34.5,-19.5 + parent: 2 + type: Transform + - uid: 4066 + components: + - pos: 12.5,0.5 + parent: 2 + type: Transform + - uid: 4106 + components: + - pos: -45.5,-25.5 + parent: 2 + type: Transform + - uid: 6947 + components: + - pos: 37.5,-32.5 + parent: 2 + type: Transform + - uid: 6982 + components: + - pos: -47.5,23.5 + parent: 2 + type: Transform + - uid: 6983 + components: + - pos: -47.5,22.5 + parent: 2 + type: Transform + - uid: 8874 + components: + - pos: -47.5,-19.5 + parent: 2 + type: Transform + - uid: 8875 + components: + - pos: -48.5,-19.5 + parent: 2 + type: Transform + - uid: 9532 + components: + - pos: 10.5,2.5 + parent: 2 + type: Transform +- proto: TableGlass + entities: + - uid: 845 + components: + - pos: 6.5,-27.5 + parent: 2 + type: Transform + - uid: 1099 + components: + - pos: -20.5,-20.5 + parent: 2 + type: Transform + - uid: 1123 + components: + - pos: -19.5,-20.5 + parent: 2 + type: Transform + - uid: 1247 + components: + - pos: -4.5,-28.5 + parent: 2 + type: Transform + - uid: 1370 + components: + - pos: -12.5,0.5 + parent: 2 + type: Transform + - uid: 2435 + components: + - pos: 38.5,-22.5 + parent: 2 + type: Transform + - uid: 2438 + components: + - pos: 39.5,-22.5 + parent: 2 + type: Transform + - uid: 2646 + components: + - pos: -21.5,7.5 + parent: 2 + type: Transform + - uid: 2705 + components: + - pos: -24.5,15.5 + parent: 2 + type: Transform + - uid: 2706 + components: + - pos: -22.5,15.5 + parent: 2 + type: Transform + - uid: 3239 + components: + - pos: 42.5,10.5 + parent: 2 + type: Transform + - uid: 3240 + components: + - pos: 42.5,9.5 + parent: 2 + type: Transform + - uid: 3819 + components: + - rot: -1.5707963267948966 rad + pos: -18.5,-8.5 + parent: 2 + type: Transform + - uid: 3821 + components: + - rot: -1.5707963267948966 rad + pos: -19.5,-8.5 + parent: 2 + type: Transform + - uid: 3909 + components: + - pos: -4.5,-29.5 + parent: 2 + type: Transform + - uid: 4212 + components: + - pos: 23.5,-31.5 + parent: 2 + type: Transform + - uid: 4648 + components: + - pos: 45.5,1.5 + parent: 2 + type: Transform + - uid: 8974 + components: + - pos: -13.5,-19.5 + parent: 2 + type: Transform + - uid: 8975 + components: + - pos: -12.5,-19.5 + parent: 2 + type: Transform + - uid: 9720 + components: + - pos: 6.5,-1.5 + parent: 2 + type: Transform +- proto: TablePlasmaGlass + entities: + - uid: 2695 + components: + - pos: -25.5,20.5 + parent: 2 + type: Transform + - uid: 3935 + components: + - pos: -33.5,-28.5 + parent: 2 + type: Transform +- proto: TableReinforced + entities: + - uid: 74 + components: + - pos: 10.5,-18.5 + parent: 2 + type: Transform + - uid: 80 + components: + - pos: 0.5,-17.5 + parent: 2 + type: Transform + - uid: 89 + components: + - pos: 0.5,-16.5 + parent: 2 + type: Transform + - uid: 182 + components: + - pos: -2.5,3.5 + parent: 2 + type: Transform + - uid: 184 + components: + - pos: -3.5,3.5 + parent: 2 + type: Transform + - uid: 222 + components: + - pos: 9.5,1.5 + parent: 2 + type: Transform + - uid: 262 + components: + - pos: -4.5,-13.5 + parent: 2 + type: Transform + - uid: 269 + components: + - pos: -2.5,-13.5 + parent: 2 + type: Transform + - uid: 270 + components: + - pos: -3.5,-13.5 + parent: 2 + type: Transform + - uid: 309 + components: + - pos: -1.5,-13.5 + parent: 2 + type: Transform + - uid: 387 + components: + - pos: 21.5,-14.5 + parent: 2 + type: Transform + - uid: 418 + components: + - pos: 23.5,-1.5 + parent: 2 + type: Transform + - uid: 434 + components: + - pos: 10.5,-17.5 + parent: 2 + type: Transform + - uid: 468 + components: + - pos: 23.5,-18.5 + parent: 2 + type: Transform + - uid: 475 + components: + - pos: 20.5,-14.5 + parent: 2 + type: Transform + - uid: 492 + components: + - pos: 18.5,-18.5 + parent: 2 + type: Transform + - uid: 493 + components: + - pos: 23.5,-19.5 + parent: 2 + type: Transform + - uid: 572 + components: + - pos: 20.5,-21.5 + parent: 2 + type: Transform + - uid: 625 + components: + - pos: 21.5,-21.5 + parent: 2 + type: Transform + - uid: 979 + components: + - rot: 3.141592653589793 rad + pos: -22.5,1.5 + parent: 2 + type: Transform + - uid: 1059 + components: + - rot: 3.141592653589793 rad + pos: -1.5,18.5 + parent: 2 + type: Transform + - uid: 1225 + components: + - pos: -18.5,-31.5 + parent: 2 + type: Transform + - uid: 1300 + components: + - pos: -29.5,-16.5 + parent: 2 + type: Transform + - uid: 1490 + components: + - pos: -45.5,12.5 + parent: 2 + type: Transform + - uid: 1493 + components: + - pos: -45.5,11.5 + parent: 2 + type: Transform + - uid: 1858 + components: + - rot: 3.141592653589793 rad + pos: -21.5,1.5 + parent: 2 + type: Transform + - uid: 2380 + components: + - pos: 47.5,-11.5 + parent: 2 + type: Transform + - uid: 2381 + components: + - pos: 47.5,-10.5 + parent: 2 + type: Transform + - uid: 2382 + components: + - pos: 48.5,-11.5 + parent: 2 + type: Transform + - uid: 2383 + components: + - pos: 48.5,-10.5 + parent: 2 + type: Transform + - uid: 2750 + components: + - pos: -35.5,12.5 + parent: 2 + type: Transform + - uid: 3254 + components: + - pos: -18.5,-32.5 + parent: 2 + type: Transform +- proto: TableReinforcedGlass + entities: + - uid: 10 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-14.5 + parent: 2 + type: Transform + - uid: 19 + components: + - pos: 21.5,-17.5 + parent: 2 + type: Transform + - uid: 531 + components: + - pos: 19.5,-15.5 + parent: 2 + type: Transform + - uid: 532 + components: + - pos: 19.5,-16.5 + parent: 2 + type: Transform + - uid: 533 + components: + - pos: 19.5,-17.5 + parent: 2 + type: Transform + - uid: 573 + components: + - pos: 21.5,-18.5 + parent: 2 + type: Transform + - uid: 1184 + components: + - pos: 19.5,-19.5 + parent: 2 + type: Transform + - uid: 2217 + components: + - rot: 1.5707963267948966 rad + pos: 27.5,-13.5 + parent: 2 + type: Transform + - uid: 2350 + components: + - pos: 1.5,-4.5 + parent: 2 + type: Transform + - uid: 2351 + components: + - pos: 1.5,-5.5 + parent: 2 + type: Transform + - uid: 2782 + components: + - pos: -41.5,14.5 + parent: 2 + type: Transform + - uid: 2783 + components: + - pos: -36.5,11.5 + parent: 2 + type: Transform + - uid: 2788 + components: + - pos: -41.5,13.5 + parent: 2 + type: Transform + - uid: 2947 + components: + - pos: 34.5,18.5 + parent: 2 + type: Transform + - uid: 2948 + components: + - pos: 33.5,18.5 + parent: 2 + type: Transform + - uid: 10215 + components: + - pos: 28.5,-20.5 + parent: 2 + type: Transform + - uid: 10216 + components: + - pos: 30.5,-20.5 + parent: 2 + type: Transform + - uid: 10217 + components: + - pos: 27.5,-17.5 + parent: 2 + type: Transform +- proto: TableStone + entities: + - uid: 1147 + components: + - pos: -28.5,-13.5 + parent: 2 + type: Transform + - uid: 1281 + components: + - pos: -31.5,-13.5 + parent: 2 + type: Transform +- proto: TableWood + entities: + - uid: 550 + components: + - pos: 11.5,-24.5 + parent: 2 + type: Transform + - uid: 1240 + components: + - pos: -35.5,-32.5 + parent: 2 + type: Transform + - uid: 1271 + components: + - pos: -39.5,-14.5 + parent: 2 + type: Transform + - uid: 1390 + components: + - pos: -11.5,-12.5 + parent: 2 + type: Transform + - uid: 1391 + components: + - pos: -12.5,-12.5 + parent: 2 + type: Transform + - uid: 1871 + components: + - pos: 17.5,23.5 + parent: 2 + type: Transform + - uid: 2903 + components: + - pos: -36.5,17.5 + parent: 2 + type: Transform + - uid: 2942 + components: + - pos: 33.5,12.5 + parent: 2 + type: Transform + - uid: 3249 + components: + - pos: 34.5,12.5 + parent: 2 + type: Transform + - uid: 3442 + components: + - pos: -48.5,-11.5 + parent: 2 + type: Transform + - uid: 3840 + components: + - pos: -32.5,-18.5 + parent: 2 + type: Transform + - uid: 3849 + components: + - pos: -39.5,-15.5 + parent: 2 + type: Transform + - uid: 4178 + components: + - pos: 7.5,-17.5 + parent: 2 + type: Transform + - uid: 4186 + components: + - pos: 7.5,-16.5 + parent: 2 + type: Transform + - uid: 4187 + components: + - pos: 3.5,-16.5 + parent: 2 + type: Transform + - uid: 4188 + components: + - pos: 3.5,-18.5 + parent: 2 + type: Transform + - uid: 4301 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-21.5 + parent: 2 + type: Transform +- proto: TableWoodReinforced + entities: + - uid: 57 + components: + - pos: 8.5,-20.5 + parent: 2 + type: Transform + - uid: 73 + components: + - pos: 5.5,-20.5 + parent: 2 + type: Transform + - uid: 326 + components: + - pos: 6.5,-20.5 + parent: 2 + type: Transform + - uid: 361 + components: + - pos: 7.5,-20.5 + parent: 2 + type: Transform + - uid: 1641 + components: + - pos: 9.5,14.5 + parent: 2 + type: Transform + - uid: 1642 + components: + - pos: 9.5,15.5 + parent: 2 + type: Transform + - uid: 1905 + components: + - pos: -40.5,-1.5 + parent: 2 + type: Transform + - uid: 2850 + components: + - rot: -1.5707963267948966 rad + pos: -37.5,4.5 + parent: 2 + type: Transform +- proto: TargetHuman + entities: + - uid: 2829 + components: + - pos: -47.5,14.5 + parent: 2 + type: Transform +- proto: TargetStrange + entities: + - uid: 2857 + components: + - pos: -48.5,17.5 + parent: 2 + type: Transform +- proto: TargetSyndicate + entities: + - uid: 2791 + components: + - pos: -47.5,15.5 + parent: 2 + type: Transform + - uid: 2792 + components: + - pos: -49.5,17.5 + parent: 2 + type: Transform +- proto: TegCenter + entities: + - uid: 5383 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,13.5 + parent: 2 + type: Transform +- proto: TegCirculator + entities: + - uid: 1992 + components: + - rot: 3.141592653589793 rad + pos: 23.5,13.5 + parent: 2 + type: Transform + - color: '#FF3300FF' + type: PointLight + - uid: 1997 + components: + - pos: 25.5,13.5 + parent: 2 + type: Transform + - color: '#FF3300FF' + type: PointLight +- proto: TelecomServer + entities: + - uid: 634 + components: + - pos: -36.5,6.5 + parent: 2 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 4672 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 738 + components: + - pos: 48.5,-7.5 + parent: 2 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 5008 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 1258 + components: + - pos: 9.5,17.5 + parent: 2 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 1384 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 1560 + components: + - pos: 38.5,-20.5 + parent: 2 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 1633 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 2155 + components: + - pos: 37.5,14.5 + parent: 2 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 6675 + - 6707 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 3381 + components: + - pos: -31.5,-26.5 + parent: 2 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 6751 + - 6765 + - 6784 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 3968 + components: + - pos: 1.5,-6.5 + parent: 2 + type: Transform + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 3969 + - 4022 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer +- proto: TintedWindow + entities: + - uid: 318 + components: + - pos: -14.5,-28.5 + parent: 2 + type: Transform + - uid: 1152 + components: + - pos: -36.5,-7.5 + parent: 2 + type: Transform + - uid: 1302 + components: + - pos: -40.5,-13.5 + parent: 2 + type: Transform + - uid: 1332 + components: + - pos: -34.5,-16.5 + parent: 2 + type: Transform + - uid: 1349 + components: + - pos: -39.5,-13.5 + parent: 2 + type: Transform + - uid: 1495 + components: + - pos: -35.5,-16.5 + parent: 2 + type: Transform + - uid: 1554 + components: + - pos: -37.5,-7.5 + parent: 2 + type: Transform + - uid: 1556 + components: + - pos: -38.5,-7.5 + parent: 2 + type: Transform + - uid: 3199 + components: + - pos: -39.5,-28.5 + parent: 2 + type: Transform + - uid: 3800 + components: + - pos: -39.5,-27.5 + parent: 2 + type: Transform + - uid: 3985 + components: + - pos: 2.5,-24.5 + parent: 2 + type: Transform + - uid: 4237 + components: + - pos: 3.5,-27.5 + parent: 2 + type: Transform + - uid: 5745 + components: + - pos: -0.5,-28.5 + parent: 2 + type: Transform + - uid: 7877 + components: + - pos: -35.5,-20.5 + parent: 2 + type: Transform + - uid: 7878 + components: + - pos: -34.5,-20.5 + parent: 2 + type: Transform + - uid: 8091 + components: + - pos: -13.5,-28.5 + parent: 2 + type: Transform + - uid: 8729 + components: + - pos: -5.5,-28.5 + parent: 2 + type: Transform + - uid: 9461 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,-31.5 + parent: 2 + type: Transform + - uid: 9514 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-31.5 + parent: 2 + type: Transform +- proto: ToiletDirtyWater + entities: + - uid: 1534 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,-0.5 + parent: 2 + type: Transform + - uid: 3483 + components: + - rot: -1.5707963267948966 rad + pos: -45.5,-2.5 + parent: 2 + type: Transform +- proto: ToolboxArtistic + entities: + - uid: 1358 + components: + - pos: -2.5603101,-26.170492 + parent: 2 + type: Transform +- proto: ToolboxElectricalFilled + entities: + - uid: 3021 + components: + - pos: 54.43511,8.59385 + parent: 2 + type: Transform + - uid: 9525 + components: + - pos: 20.42031,-31.633158 + parent: 2 + type: Transform +- proto: ToolboxEmergencyFilled + entities: + - uid: 671 + components: + - pos: 10.949305,-9.764417 + parent: 2 + type: Transform + - uid: 1548 + components: + - pos: 31.617891,-8.290117 + parent: 2 + type: Transform + - uid: 4290 + components: + - pos: -1.9278483,-23.740517 + parent: 2 + type: Transform + - uid: 9607 + components: + - pos: 36.683266,-15.69988 + parent: 2 + type: Transform + - uid: 9608 + components: + - pos: 11.89649,-22.285051 + parent: 2 + type: Transform + - uid: 9609 + components: + - pos: -34.648773,-21.259705 + parent: 2 + type: Transform + - uid: 9610 + components: + - pos: -44.56911,12.862951 + parent: 2 + type: Transform + - uid: 9612 + components: + - pos: -16.52111,6.669479 + parent: 2 + type: Transform + - uid: 9613 + components: + - pos: -12.684138,-0.2950686 + parent: 2 + type: Transform + - uid: 9614 + components: + - pos: 9.342322,24.092367 + parent: 2 + type: Transform + - uid: 10297 + components: + - pos: -43.824863,18.81081 + parent: 2 + type: Transform +- proto: ToolboxGoldFilled + entities: + - uid: 3944 + components: + - pos: 1.4468958,-4.370632 + parent: 2 + type: Transform +- proto: ToolboxMechanicalFilled + entities: + - uid: 2567 + components: + - pos: -23.53207,-22.47357 + parent: 2 + type: Transform + - uid: 2954 + components: + - pos: 33.667255,19.80337 + parent: 2 + type: Transform + - uid: 8864 + components: + - pos: -46.67161,7.9694457 + parent: 2 + type: Transform + - uid: 9248 + components: + - pos: -19.172682,-8.248888 + parent: 2 + type: Transform + - uid: 9606 + components: + - pos: 37.30212,-21.256792 + parent: 2 + type: Transform +- proto: ToyFigurineCargoTech + entities: + - uid: 4137 + components: + - pos: 9.693996,22.62461 + parent: 2 + type: Transform +- proto: ToyFigurineClown + entities: + - uid: 4193 + components: + - pos: -4.661608,-28.102238 + parent: 2 + type: Transform +- proto: ToyFigurineEngineer + entities: + - uid: 3246 + components: + - pos: 42.295807,10.81633 + parent: 2 + type: Transform +- proto: ToyFigurineMime + entities: + - uid: 4194 + components: + - pos: -4.317858,-27.977152 + parent: 2 + type: Transform +- proto: ToyFigurinePassenger + entities: + - uid: 9540 + components: + - pos: 47.984764,-10.842892 + parent: 2 + type: Transform +- proto: ToyFigurineResearchDirector + entities: + - uid: 2574 + components: + - pos: -30.655186,-17.27881 + parent: 2 + type: Transform +- proto: ToyFigurineScientist + entities: + - uid: 3836 + components: + - pos: -18.234598,-8.045885 + parent: 2 + type: Transform +- proto: ToySpawner + entities: + - uid: 1149 + components: + - pos: -30.5,-13.5 + parent: 2 + type: Transform + - uid: 1326 + components: + - pos: -32.5,-13.5 + parent: 2 + type: Transform + - uid: 1330 + components: + - pos: -28.5,-12.5 + parent: 2 + type: Transform + - uid: 4199 + components: + - pos: -3.5,-29.5 + parent: 2 + type: Transform + - uid: 4200 + components: + - pos: -1.5,-28.5 + parent: 2 + type: Transform + - uid: 4201 + components: + - pos: -3.5,-26.5 + parent: 2 + type: Transform + - uid: 8971 + components: + - pos: -29.5,-14.5 + parent: 2 + type: Transform + - uid: 10871 + components: + - pos: -12.5,-22.5 + parent: 2 + type: Transform + - uid: 10872 + components: + - pos: -13.5,-27.5 + parent: 2 + type: Transform + - uid: 10873 + components: + - pos: -6.5,-26.5 + parent: 2 + type: Transform + - uid: 10874 + components: + - pos: -8.5,-27.5 + parent: 2 + type: Transform + - uid: 10875 + components: + - pos: -8.5,-22.5 + parent: 2 + type: Transform +- proto: TrainingBomb + entities: + - uid: 3323 + components: + - pos: -49.5,4.5 + parent: 2 + type: Transform +- proto: TrashBag + entities: + - uid: 1387 + components: + - pos: -12.348348,0.5902637 + parent: 2 + type: Transform +- proto: TwoWayLever + entities: + - uid: 4151 + components: + - pos: 1.5,9.5 + parent: 2 + type: Transform + - linkedPorts: + 939: + - Left: Forward + - Right: Reverse + - Middle: Off + 940: + - Left: Forward + - Right: Reverse + - Middle: Off + 941: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource + - uid: 7000 + components: + - pos: 13.5,-29.5 + parent: 2 + type: Transform + - linkedPorts: + 2619: + - Left: Forward + - Right: Reverse + - Middle: Off + 2618: + - Left: Forward + - Right: Reverse + - Middle: Off + 2616: + - Left: Forward + - Right: Reverse + - Middle: Off + 2617: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource +- proto: UniformPrinter + entities: + - uid: 2318 + components: + - pos: 43.5,-4.5 + parent: 2 + type: Transform +- proto: UnstableMutagenChemistryBottle + entities: + - uid: 570 + components: + - pos: 15.660138,-20.218388 + parent: 2 + type: Transform +- proto: VendingBarDrobe + entities: + - uid: 548 + components: + - flags: SessionSpecific + type: MetaData + - pos: 13.5,-24.5 + parent: 2 + type: Transform +- proto: VendingMachineAtmosDrobe + entities: + - uid: 8816 + components: + - pos: 31.5,1.5 + parent: 2 + type: Transform +- proto: VendingMachineBooze + entities: + - uid: 543 + components: + - flags: SessionSpecific + type: MetaData + - pos: 4.5,-23.5 + parent: 2 + type: Transform + - uid: 6984 + components: + - pos: -45.5,23.5 + parent: 2 + type: Transform +- proto: VendingMachineBoxingDrobe + entities: + - uid: 2454 + components: + - pos: -45.5,-24.5 + parent: 2 + type: Transform +- proto: VendingMachineCargoDrobe + entities: + - uid: 681 + components: + - pos: -4.5,10.5 + parent: 2 + type: Transform +- proto: VendingMachineCart + entities: + - uid: 4063 + components: + - pos: 12.5,4.5 + parent: 2 + type: Transform +- proto: VendingMachineChapel + entities: + - uid: 3856 + components: + - pos: -42.5,-17.5 + parent: 2 + type: Transform +- proto: VendingMachineChefDrobe + entities: + - uid: 134 + components: + - flags: SessionSpecific + type: MetaData + - pos: -4.5,-24.5 + parent: 2 + type: Transform +- proto: VendingMachineChefvend + entities: + - uid: 553 + components: + - flags: SessionSpecific + type: MetaData + - pos: -4.5,-18.5 + parent: 2 + type: Transform +- proto: VendingMachineChemDrobe + entities: + - uid: 503 + components: + - pos: 37.5,-14.5 + parent: 2 + type: Transform +- proto: VendingMachineChemicals + entities: + - uid: 527 + components: + - flags: SessionSpecific + type: MetaData + - pos: 22.5,-15.5 + parent: 2 + type: Transform +- proto: VendingMachineCigs + entities: + - uid: 4189 + components: + - pos: 9.5,-19.5 + parent: 2 + type: Transform +- proto: VendingMachineClothing + entities: + - uid: 3741 + components: + - pos: -15.5,15.5 + parent: 2 + type: Transform +- proto: VendingMachineCoffee + entities: + - uid: 8759 + components: + - pos: 50.5,-12.5 + parent: 2 + type: Transform +- proto: VendingMachineCondiments + entities: + - uid: 439 + components: + - flags: SessionSpecific + type: MetaData + - pos: -4.5,-13.5 + parent: 2 + type: Transform +- proto: VendingMachineCourierDrobe + entities: + - uid: 649 + components: + - pos: 1.5,16.5 + parent: 2 + type: Transform +- proto: VendingMachineDetDrobe + entities: + - uid: 2644 + components: + - pos: -25.5,7.5 + parent: 2 + type: Transform +- proto: VendingMachineDinnerware + entities: + - uid: 552 + components: + - flags: SessionSpecific + type: MetaData + - pos: -4.5,-19.5 + parent: 2 + type: Transform +- proto: VendingMachineDonut + entities: + - uid: 652 + components: + - pos: -17.5,8.5 + parent: 2 + type: Transform +- proto: VendingMachineEngiDrobe + entities: + - uid: 778 + components: + - flags: SessionSpecific + type: MetaData + - pos: 31.5,2.5 + parent: 2 + type: Transform +- proto: VendingMachineEngivend + entities: + - uid: 10900 + components: + - pos: 17.5,6.5 + parent: 2 + type: Transform +- proto: VendingMachineGames + entities: + - uid: 2110 + components: + - pos: -31.5,14.5 + parent: 2 + type: Transform + - uid: 8860 + components: + - pos: -47.5,-21.5 + parent: 2 + type: Transform +- proto: VendingMachineHydrobe + entities: + - uid: 563 + components: + - flags: SessionSpecific + type: MetaData + - pos: 11.5,-14.5 + parent: 2 + type: Transform +- proto: VendingMachineJaniDrobe + entities: + - uid: 1367 + components: + - flags: SessionSpecific + type: MetaData + - pos: -13.5,0.5 + parent: 2 + type: Transform +- proto: VendingMachineLawDrobe + entities: + - uid: 1899 + components: + - pos: -39.5,0.5 + parent: 2 + type: Transform +- proto: VendingMachineMedical + entities: + - uid: 2193 + components: + - pos: 31.5,-16.5 + parent: 2 + type: Transform + - uid: 3930 + components: + - pos: -21.5,20.5 + parent: 2 + type: Transform +- proto: VendingMachineMediDrobe + entities: + - uid: 508 + components: + - pos: 37.5,-15.5 + parent: 2 + type: Transform +- proto: VendingMachineMNKDrobe + entities: + - uid: 1196 + components: + - pos: -15.5,13.5 + parent: 2 + type: Transform +- proto: VendingMachineNutri + entities: + - uid: 565 + components: + - flags: SessionSpecific + type: MetaData + - pos: 13.5,-20.5 + parent: 2 + type: Transform +- proto: VendingMachinePride + entities: + - uid: 4671 + components: + - pos: 12.5,-3.5 + parent: 2 + type: Transform +- proto: VendingMachineRepDrobe + entities: + - uid: 3408 + components: + - pos: -13.5,-17.5 + parent: 2 + type: Transform +- proto: VendingMachineRestockChemVend + entities: + - uid: 9605 + components: + - pos: 38.43754,-22.267912 + parent: 2 + type: Transform +- proto: VendingMachineRoboDrobe + entities: + - uid: 2557 + components: + - pos: -25.5,-27.5 + parent: 2 + type: Transform +- proto: VendingMachineRobotics + entities: + - uid: 1296 + components: + - pos: -21.5,-25.5 + parent: 2 + type: Transform +- proto: VendingMachineSalvage + entities: + - uid: 1872 + components: + - pos: 16.5,25.5 + parent: 2 + type: Transform +- proto: VendingMachineSciDrobe + entities: + - uid: 3379 + components: + - pos: -32.5,-21.5 + parent: 2 + type: Transform +- proto: VendingMachineSec + entities: + - uid: 2665 + components: + - pos: -29.5,10.5 + parent: 2 + type: Transform +- proto: VendingMachineSecDrobe + entities: + - uid: 2643 + components: + - pos: -25.5,8.5 + parent: 2 + type: Transform +- proto: VendingMachineSeeds + entities: + - uid: 564 + components: + - flags: SessionSpecific + type: MetaData + - pos: 11.5,-20.5 + parent: 2 + type: Transform +- proto: VendingMachineSeedsUnlocked + entities: + - uid: 2902 + components: + - pos: -35.5,15.5 + parent: 2 + type: Transform +- proto: VendingMachineSovietSoda + entities: + - uid: 6955 + components: + - pos: 36.5,-32.5 + parent: 2 + type: Transform +- proto: VendingMachineTankDispenserEngineering + entities: + - uid: 10898 + components: + - pos: 44.5,8.5 + parent: 2 + type: Transform +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 2348 + components: + - pos: -12.5,-29.5 + parent: 2 + type: Transform +- proto: VendingMachineTheater + entities: + - uid: 436 + components: + - pos: 0.5,-25.5 + parent: 2 + type: Transform +- proto: VendingMachineWallMedical + entities: + - uid: 471 + components: + - pos: 28.5,-7.5 + parent: 2 + type: Transform + - uid: 9293 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,-29.5 + parent: 2 + type: Transform +- proto: VendingMachineWinter + entities: + - uid: 3792 + components: + - pos: -52.5,-3.5 + parent: 2 + type: Transform +- proto: VendingMachineYouTool + entities: + - uid: 659 + components: + - flags: SessionSpecific + type: MetaData + - pos: 10.5,-8.5 + parent: 2 + type: Transform +- proto: WallmountTelevision + entities: + - uid: 3732 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-25.5 + parent: 2 + type: Transform +- proto: WallReinforced + entities: + - uid: 3 + components: + - pos: -5.5,-9.5 + parent: 2 + type: Transform + - uid: 4 + components: + - pos: -5.5,-0.5 + parent: 2 + type: Transform + - uid: 5 + components: + - pos: 5.5,-0.5 + parent: 2 + type: Transform + - uid: 6 + components: + - pos: 5.5,-9.5 + parent: 2 + type: Transform + - uid: 20 + components: + - pos: 38.5,-19.5 + parent: 2 + type: Transform + - uid: 22 + components: + - pos: 5.5,-5.5 + parent: 2 + type: Transform + - uid: 25 + components: + - pos: 5.5,-3.5 + parent: 2 + type: Transform + - uid: 30 + components: + - pos: 4.5,-0.5 + parent: 2 + type: Transform + - uid: 34 + components: + - pos: 0.5,-0.5 + parent: 2 + type: Transform + - uid: 38 + components: + - pos: -4.5,-0.5 + parent: 2 + type: Transform + - uid: 39 + components: + - pos: -5.5,-3.5 + parent: 2 + type: Transform + - uid: 40 + components: + - pos: -5.5,-5.5 + parent: 2 + type: Transform + - uid: 43 + components: + - pos: -5.5,-4.5 + parent: 2 + type: Transform + - uid: 47 + components: + - pos: -5.5,-6.5 + parent: 2 + type: Transform + - uid: 67 + components: + - pos: 39.5,-19.5 + parent: 2 + type: Transform + - uid: 128 + components: + - pos: -11.5,20.5 + parent: 2 + type: Transform + - uid: 139 + components: + - pos: -17.5,7.5 + parent: 2 + type: Transform + - uid: 177 + components: + - pos: 1.5,20.5 + parent: 2 + type: Transform + - uid: 179 + components: + - pos: -0.5,-0.5 + parent: 2 + type: Transform + - uid: 194 + components: + - pos: 5.5,-4.5 + parent: 2 + type: Transform + - uid: 196 + components: + - pos: 13.5,8.5 + parent: 2 + type: Transform + - uid: 197 + components: + - pos: 5.5,-6.5 + parent: 2 + type: Transform + - uid: 200 + components: + - pos: 36.5,-1.5 + parent: 2 + type: Transform + - uid: 202 + components: + - pos: -0.5,20.5 + parent: 2 + type: Transform + - uid: 204 + components: + - pos: 37.5,-7.5 + parent: 2 + type: Transform + - uid: 205 + components: + - pos: 9.5,-0.5 + parent: 2 + type: Transform + - uid: 206 + components: + - pos: 10.5,-0.5 + parent: 2 + type: Transform + - uid: 207 + components: + - pos: 11.5,-0.5 + parent: 2 + type: Transform + - uid: 208 + components: + - pos: 12.5,-0.5 + parent: 2 + type: Transform + - uid: 209 + components: + - pos: 13.5,-0.5 + parent: 2 + type: Transform + - uid: 212 + components: + - pos: 9.5,5.5 + parent: 2 + type: Transform + - uid: 213 + components: + - pos: 10.5,5.5 + parent: 2 + type: Transform + - uid: 214 + components: + - pos: 11.5,5.5 + parent: 2 + type: Transform + - uid: 215 + components: + - pos: 12.5,5.5 + parent: 2 + type: Transform + - uid: 216 + components: + - pos: 13.5,5.5 + parent: 2 + type: Transform + - uid: 217 + components: + - pos: 13.5,4.5 + parent: 2 + type: Transform + - uid: 219 + components: + - pos: 13.5,2.5 + parent: 2 + type: Transform + - uid: 220 + components: + - pos: 13.5,1.5 + parent: 2 + type: Transform + - uid: 221 + components: + - pos: 13.5,0.5 + parent: 2 + type: Transform + - uid: 242 + components: + - pos: -14.5,1.5 + parent: 2 + type: Transform + - uid: 243 + components: + - pos: -13.5,1.5 + parent: 2 + type: Transform + - uid: 244 + components: + - pos: -12.5,1.5 + parent: 2 + type: Transform + - uid: 245 + components: + - pos: -11.5,1.5 + parent: 2 + type: Transform + - uid: 287 + components: + - pos: -12.5,3.5 + parent: 2 + type: Transform + - uid: 288 + components: + - pos: -12.5,2.5 + parent: 2 + type: Transform + - uid: 292 + components: + - pos: -15.5,4.5 + parent: 2 + type: Transform + - uid: 305 + components: + - pos: -15.5,2.5 + parent: 2 + type: Transform + - uid: 311 + components: + - pos: -15.5,1.5 + parent: 2 + type: Transform + - uid: 312 + components: + - pos: 20.5,7.5 + parent: 2 + type: Transform + - uid: 345 + components: + - pos: -53.5,-0.5 + parent: 2 + type: Transform + - uid: 355 + components: + - pos: 20.5,8.5 + parent: 2 + type: Transform + - uid: 366 + components: + - pos: 18.5,-21.5 + parent: 2 + type: Transform + - uid: 376 + components: + - pos: -14.5,4.5 + parent: 2 + type: Transform + - uid: 378 + components: + - pos: -12.5,4.5 + parent: 2 + type: Transform + - uid: 408 + components: + - pos: 16.5,2.5 + parent: 2 + type: Transform + - uid: 409 + components: + - pos: 16.5,3.5 + parent: 2 + type: Transform + - uid: 410 + components: + - pos: 16.5,4.5 + parent: 2 + type: Transform + - uid: 412 + components: + - pos: 22.5,-2.5 + parent: 2 + type: Transform + - uid: 415 + components: + - pos: 23.5,-2.5 + parent: 2 + type: Transform + - uid: 425 + components: + - pos: 23.5,1.5 + parent: 2 + type: Transform + - uid: 426 + components: + - pos: 17.5,2.5 + parent: 2 + type: Transform + - uid: 431 + components: + - pos: 22.5,2.5 + parent: 2 + type: Transform + - uid: 432 + components: + - pos: 22.5,1.5 + parent: 2 + type: Transform + - uid: 454 + components: + - pos: -16.5,12.5 + parent: 2 + type: Transform + - uid: 461 + components: + - pos: -16.5,7.5 + parent: 2 + type: Transform + - uid: 462 + components: + - pos: -16.5,8.5 + parent: 2 + type: Transform + - uid: 463 + components: + - pos: -16.5,10.5 + parent: 2 + type: Transform + - uid: 469 + components: + - pos: 37.5,-3.5 + parent: 2 + type: Transform + - uid: 499 + components: + - pos: 19.5,-21.5 + parent: 2 + type: Transform + - uid: 546 + components: + - pos: -2.5,20.5 + parent: 2 + type: Transform + - uid: 557 + components: + - pos: -15.5,19.5 + parent: 2 + type: Transform + - uid: 587 + components: + - pos: -15.5,3.5 + parent: 2 + type: Transform + - uid: 626 + components: + - pos: 20.5,9.5 + parent: 2 + type: Transform + - uid: 637 + components: + - pos: 24.5,-3.5 + parent: 2 + type: Transform + - uid: 638 + components: + - pos: 26.5,-3.5 + parent: 2 + type: Transform + - uid: 640 + components: + - pos: 27.5,-3.5 + parent: 2 + type: Transform + - uid: 641 + components: + - pos: 28.5,-3.5 + parent: 2 + type: Transform + - uid: 642 + components: + - pos: 29.5,-3.5 + parent: 2 + type: Transform + - uid: 643 + components: + - pos: 30.5,-3.5 + parent: 2 + type: Transform + - uid: 644 + components: + - pos: 31.5,-3.5 + parent: 2 + type: Transform + - uid: 645 + components: + - pos: 16.5,6.5 + parent: 2 + type: Transform + - uid: 646 + components: + - pos: 16.5,7.5 + parent: 2 + type: Transform + - uid: 651 + components: + - pos: -17.5,6.5 + parent: 2 + type: Transform + - uid: 704 + components: + - pos: 20.5,10.5 + parent: 2 + type: Transform + - uid: 706 + components: + - pos: 22.5,10.5 + parent: 2 + type: Transform + - uid: 708 + components: + - pos: 22.5,8.5 + parent: 2 + type: Transform + - uid: 709 + components: + - pos: 22.5,7.5 + parent: 2 + type: Transform + - uid: 712 + components: + - pos: 24.5,7.5 + parent: 2 + type: Transform + - uid: 713 + components: + - pos: 24.5,8.5 + parent: 2 + type: Transform + - uid: 714 + components: + - pos: 24.5,9.5 + parent: 2 + type: Transform + - uid: 715 + components: + - pos: 24.5,10.5 + parent: 2 + type: Transform + - uid: 736 + components: + - pos: 22.5,9.5 + parent: 2 + type: Transform + - uid: 763 + components: + - pos: 17.5,7.5 + parent: 2 + type: Transform + - uid: 768 + components: + - pos: 23.5,-3.5 + parent: 2 + type: Transform + - uid: 770 + components: + - pos: 25.5,-3.5 + parent: 2 + type: Transform + - uid: 773 + components: + - pos: 31.5,-2.5 + parent: 2 + type: Transform + - uid: 777 + components: + - pos: 23.5,-22.5 + parent: 2 + type: Transform + - uid: 783 + components: + - pos: 32.5,-2.5 + parent: 2 + type: Transform + - uid: 792 + components: + - pos: 48.5,5.5 + parent: 2 + type: Transform + - uid: 811 + components: + - pos: 38.5,-1.5 + parent: 2 + type: Transform + - uid: 812 + components: + - pos: 37.5,-1.5 + parent: 2 + type: Transform + - uid: 815 + components: + - pos: 45.5,4.5 + parent: 2 + type: Transform + - uid: 830 + components: + - pos: 23.5,-21.5 + parent: 2 + type: Transform + - uid: 851 + components: + - pos: 22.5,-21.5 + parent: 2 + type: Transform + - uid: 854 + components: + - pos: 23.5,10.5 + parent: 2 + type: Transform + - uid: 864 + components: + - pos: -32.5,-16.5 + parent: 2 + type: Transform + - uid: 866 + components: + - pos: 39.5,-1.5 + parent: 2 + type: Transform + - uid: 876 + components: + - pos: 38.5,10.5 + parent: 2 + type: Transform + - uid: 877 + components: + - pos: 35.5,3.5 + parent: 2 + type: Transform + - uid: 878 + components: + - pos: 32.5,10.5 + parent: 2 + type: Transform + - uid: 883 + components: + - pos: 40.5,-1.5 + parent: 2 + type: Transform + - uid: 884 + components: + - pos: 45.5,3.5 + parent: 2 + type: Transform + - uid: 905 + components: + - pos: 38.5,13.5 + parent: 2 + type: Transform + - uid: 910 + components: + - pos: 41.5,-0.5 + parent: 2 + type: Transform + - uid: 920 + components: + - pos: -16.5,11.5 + parent: 2 + type: Transform + - uid: 933 + components: + - pos: -6.5,20.5 + parent: 2 + type: Transform + - uid: 962 + components: + - pos: 22.5,21.5 + parent: 2 + type: Transform + - uid: 965 + components: + - pos: 36.5,2.5 + parent: 2 + type: Transform + - uid: 972 + components: + - pos: -17.5,-11.5 + parent: 2 + type: Transform + - uid: 973 + components: + - pos: -17.5,-12.5 + parent: 2 + type: Transform + - uid: 974 + components: + - pos: -17.5,-13.5 + parent: 2 + type: Transform + - uid: 975 + components: + - pos: -17.5,-14.5 + parent: 2 + type: Transform + - uid: 977 + components: + - pos: -17.5,-15.5 + parent: 2 + type: Transform + - uid: 980 + components: + - pos: 18.5,17.5 + parent: 2 + type: Transform + - uid: 986 + components: + - pos: -35.5,14.5 + parent: 2 + type: Transform + - uid: 989 + components: + - pos: -27.5,6.5 + parent: 2 + type: Transform + - uid: 991 + components: + - pos: -13.5,20.5 + parent: 2 + type: Transform + - uid: 999 + components: + - pos: -26.5,6.5 + parent: 2 + type: Transform + - uid: 1000 + components: + - pos: -4.5,20.5 + parent: 2 + type: Transform + - uid: 1002 + components: + - pos: 38.5,3.5 + parent: 2 + type: Transform + - uid: 1005 + components: + - pos: 9.5,7.5 + parent: 2 + type: Transform + - uid: 1012 + components: + - pos: 9.5,8.5 + parent: 2 + type: Transform + - uid: 1020 + components: + - pos: -19.5,15.5 + parent: 2 + type: Transform + - uid: 1026 + components: + - pos: 10.5,8.5 + parent: 2 + type: Transform + - uid: 1027 + components: + - pos: 12.5,8.5 + parent: 2 + type: Transform + - uid: 1028 + components: + - pos: 10.5,12.5 + parent: 2 + type: Transform + - uid: 1032 + components: + - pos: -22.5,-15.5 + parent: 2 + type: Transform + - uid: 1037 + components: + - pos: 11.5,12.5 + parent: 2 + type: Transform + - uid: 1044 + components: + - pos: 6.5,12.5 + parent: 2 + type: Transform + - uid: 1047 + components: + - pos: -1.5,20.5 + parent: 2 + type: Transform + - uid: 1048 + components: + - pos: -16.5,20.5 + parent: 2 + type: Transform + - uid: 1049 + components: + - pos: -15.5,20.5 + parent: 2 + type: Transform + - uid: 1050 + components: + - pos: -14.5,20.5 + parent: 2 + type: Transform + - uid: 1057 + components: + - pos: 7.5,12.5 + parent: 2 + type: Transform + - uid: 1064 + components: + - pos: -32.5,10.5 + parent: 2 + type: Transform + - uid: 1069 + components: + - pos: -39.5,10.5 + parent: 2 + type: Transform + - uid: 1071 + components: + - pos: 0.5,20.5 + parent: 2 + type: Transform + - uid: 1072 + components: + - pos: 40.5,3.5 + parent: 2 + type: Transform + - uid: 1074 + components: + - pos: -18.5,-15.5 + parent: 2 + type: Transform + - uid: 1083 + components: + - pos: 11.5,8.5 + parent: 2 + type: Transform + - uid: 1086 + components: + - pos: -20.5,21.5 + parent: 2 + type: Transform + - uid: 1087 + components: + - pos: -20.5,16.5 + parent: 2 + type: Transform + - uid: 1088 + components: + - pos: -19.5,20.5 + parent: 2 + type: Transform + - uid: 1105 + components: + - pos: -20.5,15.5 + parent: 2 + type: Transform + - uid: 1106 + components: + - pos: -17.5,2.5 + parent: 2 + type: Transform + - uid: 1111 + components: + - pos: 6.5,15.5 + parent: 2 + type: Transform + - uid: 1112 + components: + - pos: -17.5,3.5 + parent: 2 + type: Transform + - uid: 1114 + components: + - pos: -16.5,15.5 + parent: 2 + type: Transform + - uid: 1116 + components: + - pos: -16.5,13.5 + parent: 2 + type: Transform + - uid: 1119 + components: + - pos: -16.5,14.5 + parent: 2 + type: Transform + - uid: 1120 + components: + - pos: -20.5,19.5 + parent: 2 + type: Transform + - uid: 1131 + components: + - pos: -17.5,1.5 + parent: 2 + type: Transform + - uid: 1134 + components: + - pos: -17.5,5.5 + parent: 2 + type: Transform + - uid: 1140 + components: + - pos: -36.5,3.5 + parent: 2 + type: Transform + - uid: 1157 + components: + - pos: 39.5,3.5 + parent: 2 + type: Transform + - uid: 1161 + components: + - pos: 11.5,16.5 + parent: 2 + type: Transform + - uid: 1162 + components: + - pos: 37.5,3.5 + parent: 2 + type: Transform + - uid: 1163 + components: + - pos: 36.5,3.5 + parent: 2 + type: Transform + - uid: 1170 + components: + - pos: 18.5,-20.5 + parent: 2 + type: Transform + - uid: 1205 + components: + - pos: -11.5,-34.5 + parent: 2 + type: Transform + - uid: 1207 + components: + - pos: 11.5,15.5 + parent: 2 + type: Transform + - uid: 1228 + components: + - pos: -4.5,-33.5 + parent: 2 + type: Transform + - uid: 1229 + components: + - pos: -5.5,-33.5 + parent: 2 + type: Transform + - uid: 1230 + components: + - pos: -5.5,-32.5 + parent: 2 + type: Transform + - uid: 1232 + components: + - pos: -5.5,-34.5 + parent: 2 + type: Transform + - uid: 1233 + components: + - pos: -3.5,-33.5 + parent: 2 + type: Transform + - uid: 1235 + components: + - pos: -1.5,-33.5 + parent: 2 + type: Transform + - uid: 1236 + components: + - pos: -0.5,-33.5 + parent: 2 + type: Transform + - uid: 1238 + components: + - pos: -10.5,-34.5 + parent: 2 + type: Transform + - uid: 1256 + components: + - pos: 6.5,16.5 + parent: 2 + type: Transform + - uid: 1257 + components: + - pos: 6.5,18.5 + parent: 2 + type: Transform + - uid: 1259 + components: + - pos: -19.5,-15.5 + parent: 2 + type: Transform + - uid: 1260 + components: + - pos: -20.5,-15.5 + parent: 2 + type: Transform + - uid: 1261 + components: + - pos: -21.5,-11.5 + parent: 2 + type: Transform + - uid: 1263 + components: + - pos: -21.5,-15.5 + parent: 2 + type: Transform + - uid: 1267 + components: + - pos: -20.5,14.5 + parent: 2 + type: Transform + - uid: 1272 + components: + - pos: -34.5,3.5 + parent: 2 + type: Transform + - uid: 1280 + components: + - pos: -28.5,3.5 + parent: 2 + type: Transform + - uid: 1291 + components: + - pos: -41.5,10.5 + parent: 2 + type: Transform + - uid: 1301 + components: + - pos: -31.5,-16.5 + parent: 2 + type: Transform + - uid: 1318 + components: + - pos: -21.5,14.5 + parent: 2 + type: Transform + - uid: 1327 + components: + - pos: -27.5,3.5 + parent: 2 + type: Transform + - uid: 1331 + components: + - pos: -36.5,-16.5 + parent: 2 + type: Transform + - uid: 1340 + components: + - pos: 6.5,14.5 + parent: 2 + type: Transform + - uid: 1341 + components: + - pos: -10.5,6.5 + parent: 2 + type: Transform + - uid: 1342 + components: + - pos: 7.5,18.5 + parent: 2 + type: Transform + - uid: 1343 + components: + - pos: 6.5,17.5 + parent: 2 + type: Transform + - uid: 1344 + components: + - pos: -32.5,3.5 + parent: 2 + type: Transform + - uid: 1345 + components: + - pos: -31.5,-17.5 + parent: 2 + type: Transform + - uid: 1346 + components: + - pos: -31.5,-18.5 + parent: 2 + type: Transform + - uid: 1347 + components: + - pos: -31.5,-19.5 + parent: 2 + type: Transform + - uid: 1348 + components: + - pos: -31.5,-20.5 + parent: 2 + type: Transform + - uid: 1350 + components: + - pos: -32.5,-20.5 + parent: 2 + type: Transform + - uid: 1354 + components: + - pos: -36.5,-20.5 + parent: 2 + type: Transform + - uid: 1355 + components: + - pos: -36.5,-19.5 + parent: 2 + type: Transform + - uid: 1356 + components: + - pos: -36.5,-18.5 + parent: 2 + type: Transform + - uid: 1357 + components: + - pos: -36.5,-17.5 + parent: 2 + type: Transform + - uid: 1361 + components: + - pos: 11.5,13.5 + parent: 2 + type: Transform + - uid: 1366 + components: + - pos: 10.5,18.5 + parent: 2 + type: Transform + - uid: 1420 + components: + - pos: -30.5,-25.5 + parent: 2 + type: Transform + - uid: 1435 + components: + - pos: -12.5,-33.5 + parent: 2 + type: Transform + - uid: 1436 + components: + - pos: -11.5,-33.5 + parent: 2 + type: Transform + - uid: 1447 + components: + - pos: -39.5,-23.5 + parent: 2 + type: Transform + - uid: 1449 + components: + - pos: -40.5,-22.5 + parent: 2 + type: Transform + - uid: 1450 + components: + - pos: -40.5,-23.5 + parent: 2 + type: Transform + - uid: 1455 + components: + - pos: -40.5,-21.5 + parent: 2 + type: Transform + - uid: 1456 + components: + - pos: -41.5,-23.5 + parent: 2 + type: Transform + - uid: 1457 + components: + - pos: -42.5,-23.5 + parent: 2 + type: Transform + - uid: 1458 + components: + - pos: -43.5,-23.5 + parent: 2 + type: Transform + - uid: 1459 + components: + - pos: -43.5,-22.5 + parent: 2 + type: Transform + - uid: 1460 + components: + - pos: -43.5,-21.5 + parent: 2 + type: Transform + - uid: 1461 + components: + - pos: -43.5,-20.5 + parent: 2 + type: Transform + - uid: 1462 + components: + - pos: -41.5,-20.5 + parent: 2 + type: Transform + - uid: 1463 + components: + - pos: -40.5,-20.5 + parent: 2 + type: Transform + - uid: 1494 + components: + - pos: -50.5,18.5 + parent: 2 + type: Transform + - uid: 1500 + components: + - pos: -45.5,16.5 + parent: 2 + type: Transform + - uid: 1502 + components: + - pos: -9.5,6.5 + parent: 2 + type: Transform + - uid: 1504 + components: + - pos: 18.5,-14.5 + parent: 2 + type: Transform + - uid: 1505 + components: + - pos: -11.5,6.5 + parent: 2 + type: Transform + - uid: 1506 + components: + - pos: -12.5,6.5 + parent: 2 + type: Transform + - uid: 1508 + components: + - pos: -26.5,-25.5 + parent: 2 + type: Transform + - uid: 1513 + components: + - pos: -50.5,17.5 + parent: 2 + type: Transform + - uid: 1517 + components: + - pos: -50.5,16.5 + parent: 2 + type: Transform + - uid: 1524 + components: + - pos: -9.5,11.5 + parent: 2 + type: Transform + - uid: 1525 + components: + - pos: -9.5,9.5 + parent: 2 + type: Transform + - uid: 1526 + components: + - pos: 23.5,-14.5 + parent: 2 + type: Transform + - uid: 1527 + components: + - pos: 18.5,-16.5 + parent: 2 + type: Transform + - uid: 1528 + components: + - pos: 22.5,-14.5 + parent: 2 + type: Transform + - uid: 1535 + components: + - pos: 2.5,-4.5 + parent: 2 + type: Transform + - uid: 1539 + components: + - pos: 18.5,-15.5 + parent: 2 + type: Transform + - uid: 1540 + components: + - pos: 19.5,-14.5 + parent: 2 + type: Transform + - uid: 1541 + components: + - pos: 23.5,-15.5 + parent: 2 + type: Transform + - uid: 1543 + components: + - pos: 23.5,-17.5 + parent: 2 + type: Transform + - uid: 1544 + components: + - pos: 23.5,-20.5 + parent: 2 + type: Transform + - uid: 1559 + components: + - pos: 11.5,18.5 + parent: 2 + type: Transform + - uid: 1561 + components: + - pos: 11.5,17.5 + parent: 2 + type: Transform + - uid: 1623 + components: + - pos: -35.5,3.5 + parent: 2 + type: Transform + - uid: 1626 + components: + - pos: 13.5,7.5 + parent: 2 + type: Transform + - uid: 1629 + components: + - pos: -44.5,4.5 + parent: 2 + type: Transform + - uid: 1630 + components: + - pos: -44.5,5.5 + parent: 2 + type: Transform + - uid: 1631 + components: + - pos: 36.5,-3.5 + parent: 2 + type: Transform + - uid: 1637 + components: + - pos: 36.5,-7.5 + parent: 2 + type: Transform + - uid: 1638 + components: + - pos: 16.5,8.5 + parent: 2 + type: Transform + - uid: 1662 + components: + - pos: 1.5,32.5 + parent: 2 + type: Transform + - uid: 1663 + components: + - pos: 2.5,32.5 + parent: 2 + type: Transform + - uid: 1664 + components: + - pos: 2.5,33.5 + parent: 2 + type: Transform + - uid: 1665 + components: + - pos: 2.5,34.5 + parent: 2 + type: Transform + - uid: 1666 + components: + - pos: 2.5,35.5 + parent: 2 + type: Transform + - uid: 1667 + components: + - pos: 3.5,35.5 + parent: 2 + type: Transform + - uid: 1668 + components: + - pos: 9.5,35.5 + parent: 2 + type: Transform + - uid: 1669 + components: + - pos: 9.5,34.5 + parent: 2 + type: Transform + - uid: 1670 + components: + - pos: 9.5,33.5 + parent: 2 + type: Transform + - uid: 1671 + components: + - pos: 9.5,32.5 + parent: 2 + type: Transform + - uid: 1672 + components: + - pos: 10.5,32.5 + parent: 2 + type: Transform + - uid: 1673 + components: + - pos: 15.5,15.5 + parent: 2 + type: Transform + - uid: 1676 + components: + - pos: -44.5,6.5 + parent: 2 + type: Transform + - uid: 1679 + components: + - pos: 15.5,13.5 + parent: 2 + type: Transform + - uid: 1697 + components: + - pos: 10.5,31.5 + parent: 2 + type: Transform + - uid: 1698 + components: + - pos: 15.5,8.5 + parent: 2 + type: Transform + - uid: 1699 + components: + - pos: 15.5,9.5 + parent: 2 + type: Transform + - uid: 1705 + components: + - pos: 1.5,31.5 + parent: 2 + type: Transform + - uid: 1706 + components: + - pos: 1.5,30.5 + parent: 2 + type: Transform + - uid: 1707 + components: + - pos: 15.5,10.5 + parent: 2 + type: Transform + - uid: 1708 + components: + - pos: 15.5,11.5 + parent: 2 + type: Transform + - uid: 1709 + components: + - pos: 1.5,27.5 + parent: 2 + type: Transform + - uid: 1710 + components: + - pos: 1.5,26.5 + parent: 2 + type: Transform + - uid: 1711 + components: + - pos: 1.5,25.5 + parent: 2 + type: Transform + - uid: 1712 + components: + - pos: 15.5,12.5 + parent: 2 + type: Transform + - uid: 1714 + components: + - pos: 1.5,22.5 + parent: 2 + type: Transform + - uid: 1715 + components: + - pos: 1.5,21.5 + parent: 2 + type: Transform + - uid: 1729 + components: + - pos: 15.5,16.5 + parent: 2 + type: Transform + - uid: 1736 + components: + - pos: 41.5,0.5 + parent: 2 + type: Transform + - uid: 1737 + components: + - pos: 41.5,1.5 + parent: 2 + type: Transform + - uid: 1738 + components: + - pos: 41.5,2.5 + parent: 2 + type: Transform + - uid: 1739 + components: + - pos: 41.5,3.5 + parent: 2 + type: Transform + - uid: 1740 + components: + - pos: 27.5,10.5 + parent: 2 + type: Transform + - uid: 1742 + components: + - pos: 27.5,7.5 + parent: 2 + type: Transform + - uid: 1751 + components: + - pos: 35.5,-21.5 + parent: 2 + type: Transform + - uid: 1752 + components: + - pos: -13.5,7.5 + parent: 2 + type: Transform + - uid: 1753 + components: + - pos: -13.5,6.5 + parent: 2 + type: Transform + - uid: 1754 + components: + - pos: -13.5,8.5 + parent: 2 + type: Transform + - uid: 1755 + components: + - pos: -13.5,11.5 + parent: 2 + type: Transform + - uid: 1756 + components: + - pos: -13.5,9.5 + parent: 2 + type: Transform + - uid: 1757 + components: + - pos: -13.5,12.5 + parent: 2 + type: Transform + - uid: 1758 + components: + - pos: -12.5,12.5 + parent: 2 + type: Transform + - uid: 1759 + components: + - pos: -11.5,12.5 + parent: 2 + type: Transform + - uid: 1760 + components: + - pos: -10.5,12.5 + parent: 2 + type: Transform + - uid: 1761 + components: + - pos: -9.5,12.5 + parent: 2 + type: Transform + - uid: 1763 + components: + - pos: 15.5,17.5 + parent: 2 + type: Transform + - uid: 1765 + components: + - pos: 16.5,17.5 + parent: 2 + type: Transform + - uid: 1766 + components: + - pos: 27.5,6.5 + parent: 2 + type: Transform + - uid: 1767 + components: + - pos: 19.5,22.5 + parent: 2 + type: Transform + - uid: 1768 + components: + - pos: 17.5,22.5 + parent: 2 + type: Transform + - uid: 1769 + components: + - pos: 18.5,22.5 + parent: 2 + type: Transform + - uid: 1770 + components: + - pos: 16.5,22.5 + parent: 2 + type: Transform + - uid: 1772 + components: + - pos: 18.5,18.5 + parent: 2 + type: Transform + - uid: 1795 + components: + - pos: 16.5,31.5 + parent: 2 + type: Transform + - uid: 1796 + components: + - pos: 16.5,29.5 + parent: 2 + type: Transform + - uid: 1797 + components: + - pos: 16.5,30.5 + parent: 2 + type: Transform + - uid: 1798 + components: + - pos: 20.5,26.5 + parent: 2 + type: Transform + - uid: 1799 + components: + - pos: 40.5,-0.5 + parent: 2 + type: Transform + - uid: 1800 + components: + - pos: 19.5,26.5 + parent: 2 + type: Transform + - uid: 1801 + components: + - pos: 19.5,29.5 + parent: 2 + type: Transform + - uid: 1807 + components: + - pos: 11.5,31.5 + parent: 2 + type: Transform + - uid: 1811 + components: + - pos: 15.5,31.5 + parent: 2 + type: Transform + - uid: 1812 + components: + - pos: 20.5,25.5 + parent: 2 + type: Transform + - uid: 1813 + components: + - pos: 20.5,23.5 + parent: 2 + type: Transform + - uid: 1814 + components: + - pos: 20.5,24.5 + parent: 2 + type: Transform + - uid: 1843 + components: + - pos: 20.5,22.5 + parent: 2 + type: Transform + - uid: 1860 + components: + - pos: 16.5,26.5 + parent: 2 + type: Transform + - uid: 1861 + components: + - pos: 51.5,-1.5 + parent: 2 + type: Transform + - uid: 1902 + components: + - pos: -37.5,3.5 + parent: 2 + type: Transform + - uid: 1903 + components: + - pos: -39.5,3.5 + parent: 2 + type: Transform + - uid: 1938 + components: + - pos: -31.5,11.5 + parent: 2 + type: Transform + - uid: 1939 + components: + - pos: -30.5,11.5 + parent: 2 + type: Transform + - uid: 1940 + components: + - pos: -42.5,20.5 + parent: 2 + type: Transform + - uid: 1944 + components: + - pos: -38.5,10.5 + parent: 2 + type: Transform + - uid: 1949 + components: + - pos: 21.5,10.5 + parent: 2 + type: Transform + - uid: 1951 + components: + - pos: 32.5,11.5 + parent: 2 + type: Transform + - uid: 1952 + components: + - pos: 18.5,21.5 + parent: 2 + type: Transform + - uid: 1953 + components: + - pos: 17.5,17.5 + parent: 2 + type: Transform + - uid: 1974 + components: + - pos: 25.5,21.5 + parent: 2 + type: Transform + - uid: 1976 + components: + - pos: 22.5,17.5 + parent: 2 + type: Transform + - uid: 1989 + components: + - pos: 22.5,18.5 + parent: 2 + type: Transform + - uid: 1994 + components: + - pos: 25.5,17.5 + parent: 2 + type: Transform + - uid: 2009 + components: + - pos: 30.5,21.5 + parent: 2 + type: Transform + - uid: 2010 + components: + - pos: 30.5,20.5 + parent: 2 + type: Transform + - uid: 2011 + components: + - pos: 30.5,18.5 + parent: 2 + type: Transform + - uid: 2012 + components: + - pos: 30.5,19.5 + parent: 2 + type: Transform + - uid: 2013 + components: + - pos: 30.5,17.5 + parent: 2 + type: Transform + - uid: 2014 + components: + - pos: 29.5,17.5 + parent: 2 + type: Transform + - uid: 2024 + components: + - pos: 32.5,14.5 + parent: 2 + type: Transform + - uid: 2089 + components: + - pos: 45.5,5.5 + parent: 2 + type: Transform + - uid: 2091 + components: + - pos: 31.5,17.5 + parent: 2 + type: Transform + - uid: 2092 + components: + - pos: 35.5,14.5 + parent: 2 + type: Transform + - uid: 2094 + components: + - pos: 35.5,15.5 + parent: 2 + type: Transform + - uid: 2095 + components: + - pos: 38.5,11.5 + parent: 2 + type: Transform + - uid: 2096 + components: + - pos: 34.5,14.5 + parent: 2 + type: Transform + - uid: 2097 + components: + - pos: 38.5,14.5 + parent: 2 + type: Transform + - uid: 2099 + components: + - pos: 38.5,12.5 + parent: 2 + type: Transform + - uid: 2101 + components: + - pos: 37.5,10.5 + parent: 2 + type: Transform + - uid: 2102 + components: + - pos: 35.5,10.5 + parent: 2 + type: Transform + - uid: 2103 + components: + - pos: 36.5,15.5 + parent: 2 + type: Transform + - uid: 2105 + components: + - pos: 33.5,14.5 + parent: 2 + type: Transform + - uid: 2107 + components: + - pos: 37.5,15.5 + parent: 2 + type: Transform + - uid: 2108 + components: + - pos: 38.5,15.5 + parent: 2 + type: Transform + - uid: 2121 + components: + - pos: 36.5,18.5 + parent: 2 + type: Transform + - uid: 2123 + components: + - pos: 38.5,18.5 + parent: 2 + type: Transform + - uid: 2124 + components: + - pos: 39.5,18.5 + parent: 2 + type: Transform + - uid: 2125 + components: + - pos: 40.5,18.5 + parent: 2 + type: Transform + - uid: 2126 + components: + - pos: 40.5,17.5 + parent: 2 + type: Transform + - uid: 2127 + components: + - pos: 40.5,16.5 + parent: 2 + type: Transform + - uid: 2128 + components: + - pos: 41.5,16.5 + parent: 2 + type: Transform + - uid: 2129 + components: + - pos: 41.5,15.5 + parent: 2 + type: Transform + - uid: 2130 + components: + - pos: 41.5,14.5 + parent: 2 + type: Transform + - uid: 2131 + components: + - pos: 41.5,13.5 + parent: 2 + type: Transform + - uid: 2133 + components: + - pos: 41.5,11.5 + parent: 2 + type: Transform + - uid: 2134 + components: + - pos: 41.5,10.5 + parent: 2 + type: Transform + - uid: 2136 + components: + - pos: -43.5,20.5 + parent: 2 + type: Transform + - uid: 2137 + components: + - pos: 34.5,21.5 + parent: 2 + type: Transform + - uid: 2138 + components: + - pos: 31.5,21.5 + parent: 2 + type: Transform + - uid: 2140 + components: + - pos: 41.5,12.5 + parent: 2 + type: Transform + - uid: 2142 + components: + - pos: 46.5,5.5 + parent: 2 + type: Transform + - uid: 2144 + components: + - pos: -2.5,-4.5 + parent: 2 + type: Transform + - uid: 2150 + components: + - pos: 40.5,10.5 + parent: 2 + type: Transform + - uid: 2156 + components: + - pos: 35.5,-1.5 + parent: 2 + type: Transform + - uid: 2168 + components: + - pos: 43.5,3.5 + parent: 2 + type: Transform + - uid: 2179 + components: + - pos: 36.5,21.5 + parent: 2 + type: Transform + - uid: 2180 + components: + - pos: 47.5,5.5 + parent: 2 + type: Transform + - uid: 2181 + components: + - pos: 34.5,17.5 + parent: 2 + type: Transform + - uid: 2182 + components: + - pos: 35.5,21.5 + parent: 2 + type: Transform + - uid: 2183 + components: + - pos: 44.5,3.5 + parent: 2 + type: Transform + - uid: 2184 + components: + - pos: 44.5,2.5 + parent: 2 + type: Transform + - uid: 2185 + components: + - pos: 35.5,20.5 + parent: 2 + type: Transform + - uid: 2187 + components: + - pos: 38.5,-7.5 + parent: 2 + type: Transform + - uid: 2192 + components: + - pos: 37.5,-19.5 + parent: 2 + type: Transform + - uid: 2234 + components: + - pos: 41.5,-10.5 + parent: 2 + type: Transform + - uid: 2235 + components: + - pos: 42.5,-10.5 + parent: 2 + type: Transform + - uid: 2236 + components: + - pos: 41.5,-13.5 + parent: 2 + type: Transform + - uid: 2237 + components: + - pos: 41.5,-14.5 + parent: 2 + type: Transform + - uid: 2245 + components: + - pos: 36.5,-19.5 + parent: 2 + type: Transform + - uid: 2246 + components: + - pos: 36.5,-24.5 + parent: 2 + type: Transform + - uid: 2247 + components: + - pos: 35.5,-20.5 + parent: 2 + type: Transform + - uid: 2251 + components: + - pos: 39.5,-3.5 + parent: 2 + type: Transform + - uid: 2252 + components: + - pos: 40.5,-3.5 + parent: 2 + type: Transform + - uid: 2255 + components: + - pos: 43.5,-3.5 + parent: 2 + type: Transform + - uid: 2256 + components: + - pos: 43.5,-2.5 + parent: 2 + type: Transform + - uid: 2257 + components: + - pos: 43.5,-0.5 + parent: 2 + type: Transform + - uid: 2258 + components: + - pos: 43.5,-1.5 + parent: 2 + type: Transform + - uid: 2259 + components: + - pos: 42.5,-7.5 + parent: 2 + type: Transform + - uid: 2260 + components: + - pos: 43.5,-7.5 + parent: 2 + type: Transform + - uid: 2261 + components: + - pos: 44.5,-0.5 + parent: 2 + type: Transform + - uid: 2262 + components: + - pos: 44.5,0.5 + parent: 2 + type: Transform + - uid: 2263 + components: + - pos: 44.5,1.5 + parent: 2 + type: Transform + - uid: 2265 + components: + - pos: 40.5,-7.5 + parent: 2 + type: Transform + - uid: 2266 + components: + - pos: 41.5,-7.5 + parent: 2 + type: Transform + - uid: 2268 + components: + - pos: 44.5,-13.5 + parent: 2 + type: Transform + - uid: 2273 + components: + - pos: 43.5,-8.5 + parent: 2 + type: Transform + - uid: 2275 + components: + - pos: 43.5,-10.5 + parent: 2 + type: Transform + - uid: 2276 + components: + - pos: 44.5,-10.5 + parent: 2 + type: Transform + - uid: 2277 + components: + - pos: 44.5,-11.5 + parent: 2 + type: Transform + - uid: 2278 + components: + - pos: 44.5,-12.5 + parent: 2 + type: Transform + - uid: 2279 + components: + - pos: 41.5,-11.5 + parent: 2 + type: Transform + - uid: 2280 + components: + - pos: 44.5,-14.5 + parent: 2 + type: Transform + - uid: 2281 + components: + - pos: 43.5,-14.5 + parent: 2 + type: Transform + - uid: 2282 + components: + - pos: 42.5,-14.5 + parent: 2 + type: Transform + - uid: 2289 + components: + - pos: 35.5,18.5 + parent: 2 + type: Transform + - uid: 2290 + components: + - pos: 35.5,17.5 + parent: 2 + type: Transform + - uid: 2291 + components: + - pos: 35.5,19.5 + parent: 2 + type: Transform + - uid: 2293 + components: + - pos: -1.5,-3.5 + parent: 2 + type: Transform + - uid: 2298 + components: + - pos: 48.5,-2.5 + parent: 2 + type: Transform + - uid: 2300 + components: + - pos: 50.5,-2.5 + parent: 2 + type: Transform + - uid: 2306 + components: + - pos: 50.5,-13.5 + parent: 2 + type: Transform + - uid: 2307 + components: + - pos: 45.5,-13.5 + parent: 2 + type: Transform + - uid: 2311 + components: + - pos: 51.5,-12.5 + parent: 2 + type: Transform + - uid: 2312 + components: + - pos: 45.5,2.5 + parent: 2 + type: Transform + - uid: 2313 + components: + - pos: 46.5,2.5 + parent: 2 + type: Transform + - uid: 2314 + components: + - pos: 47.5,2.5 + parent: 2 + type: Transform + - uid: 2315 + components: + - pos: 48.5,2.5 + parent: 2 + type: Transform + - uid: 2316 + components: + - pos: 49.5,2.5 + parent: 2 + type: Transform + - uid: 2317 + components: + - pos: 50.5,2.5 + parent: 2 + type: Transform + - uid: 2319 + components: + - pos: 51.5,1.5 + parent: 2 + type: Transform + - uid: 2327 + components: + - pos: 51.5,-8.5 + parent: 2 + type: Transform + - uid: 2328 + components: + - pos: 52.5,-8.5 + parent: 2 + type: Transform + - uid: 2329 + components: + - pos: 53.5,-8.5 + parent: 2 + type: Transform + - uid: 2330 + components: + - pos: 53.5,-3.5 + parent: 2 + type: Transform + - uid: 2331 + components: + - pos: 47.5,-2.5 + parent: 2 + type: Transform + - uid: 2332 + components: + - pos: 51.5,-2.5 + parent: 2 + type: Transform + - uid: 2333 + components: + - pos: 52.5,-2.5 + parent: 2 + type: Transform + - uid: 2334 + components: + - pos: 53.5,-2.5 + parent: 2 + type: Transform + - uid: 2335 + components: + - pos: 53.5,-7.5 + parent: 2 + type: Transform + - uid: 2358 + components: + - pos: 49.5,-2.5 + parent: 2 + type: Transform + - uid: 2378 + components: + - pos: 36.5,-35.5 + parent: 2 + type: Transform + - uid: 2386 + components: + - pos: -2.5,-6.5 + parent: 2 + type: Transform + - uid: 2387 + components: + - pos: 2.5,-6.5 + parent: 2 + type: Transform + - uid: 2411 + components: + - pos: 35.5,-32.5 + parent: 2 + type: Transform + - uid: 2414 + components: + - pos: 32.5,-32.5 + parent: 2 + type: Transform + - uid: 2429 + components: + - pos: 40.5,-19.5 + parent: 2 + type: Transform + - uid: 2430 + components: + - pos: 40.5,-20.5 + parent: 2 + type: Transform + - uid: 2433 + components: + - pos: 40.5,-23.5 + parent: 2 + type: Transform + - uid: 2434 + components: + - pos: 35.5,-24.5 + parent: 2 + type: Transform + - uid: 2436 + components: + - pos: 40.5,-24.5 + parent: 2 + type: Transform + - uid: 2439 + components: + - pos: 33.5,-32.5 + parent: 2 + type: Transform + - uid: 2445 + components: + - pos: 36.5,-20.5 + parent: 2 + type: Transform + - uid: 2446 + components: + - pos: 38.5,-24.5 + parent: 2 + type: Transform + - uid: 2447 + components: + - pos: 37.5,-24.5 + parent: 2 + type: Transform + - uid: 2449 + components: + - pos: 39.5,-24.5 + parent: 2 + type: Transform + - uid: 2460 + components: + - pos: 25.5,-32.5 + parent: 2 + type: Transform + - uid: 2464 + components: + - pos: 27.5,-33.5 + parent: 2 + type: Transform + - uid: 2478 + components: + - pos: 26.5,-32.5 + parent: 2 + type: Transform + - uid: 2482 + components: + - pos: 35.5,-31.5 + parent: 2 + type: Transform + - uid: 2486 + components: + - pos: -18.5,-33.5 + parent: 2 + type: Transform + - uid: 2492 + components: + - pos: 39.5,-25.5 + parent: 2 + type: Transform + - uid: 2494 + components: + - pos: 39.5,-27.5 + parent: 2 + type: Transform + - uid: 2496 + components: + - pos: 39.5,-29.5 + parent: 2 + type: Transform + - uid: 2497 + components: + - pos: 26.5,-33.5 + parent: 2 + type: Transform + - uid: 2503 + components: + - pos: 39.5,-30.5 + parent: 2 + type: Transform + - uid: 2504 + components: + - pos: 28.5,-33.5 + parent: 2 + type: Transform + - uid: 2505 + components: + - pos: 29.5,-33.5 + parent: 2 + type: Transform + - uid: 2506 + components: + - pos: 30.5,-33.5 + parent: 2 + type: Transform + - uid: 2507 + components: + - pos: 31.5,-33.5 + parent: 2 + type: Transform + - uid: 2508 + components: + - pos: 32.5,-33.5 + parent: 2 + type: Transform + - uid: 2509 + components: + - pos: 23.5,-32.5 + parent: 2 + type: Transform + - uid: 2525 + components: + - pos: 36.5,-31.5 + parent: 2 + type: Transform + - uid: 2526 + components: + - pos: 37.5,-31.5 + parent: 2 + type: Transform + - uid: 2527 + components: + - pos: 38.5,-31.5 + parent: 2 + type: Transform + - uid: 2528 + components: + - pos: 39.5,-31.5 + parent: 2 + type: Transform + - uid: 2546 + components: + - pos: -26.5,-26.5 + parent: 2 + type: Transform + - uid: 2547 + components: + - pos: -26.5,-27.5 + parent: 2 + type: Transform + - uid: 2548 + components: + - pos: -26.5,-28.5 + parent: 2 + type: Transform + - uid: 2549 + components: + - pos: -27.5,-28.5 + parent: 2 + type: Transform + - uid: 2550 + components: + - pos: -28.5,-28.5 + parent: 2 + type: Transform + - uid: 2551 + components: + - pos: -29.5,-28.5 + parent: 2 + type: Transform + - uid: 2552 + components: + - pos: -30.5,-28.5 + parent: 2 + type: Transform + - uid: 2553 + components: + - pos: -30.5,-27.5 + parent: 2 + type: Transform + - uid: 2554 + components: + - pos: -30.5,-26.5 + parent: 2 + type: Transform + - uid: 2602 + components: + - pos: 8.5,-32.5 + parent: 2 + type: Transform + - uid: 2605 + components: + - pos: 9.5,-33.5 + parent: 2 + type: Transform + - uid: 2606 + components: + - pos: 10.5,-33.5 + parent: 2 + type: Transform + - uid: 2607 + components: + - pos: -31.5,3.5 + parent: 2 + type: Transform + - uid: 2608 + components: + - pos: 12.5,-33.5 + parent: 2 + type: Transform + - uid: 2609 + components: + - pos: -30.5,3.5 + parent: 2 + type: Transform + - uid: 2610 + components: + - pos: 14.5,-33.5 + parent: 2 + type: Transform + - uid: 2611 + components: + - pos: 15.5,-33.5 + parent: 2 + type: Transform + - uid: 2612 + components: + - pos: -20.5,-31.5 + parent: 2 + type: Transform + - uid: 2613 + components: + - pos: 22.5,-29.5 + parent: 2 + type: Transform + - uid: 2620 + components: + - pos: 18.5,-34.5 + parent: 2 + type: Transform + - uid: 2621 + components: + - pos: 7.5,-32.5 + parent: 2 + type: Transform + - uid: 2624 + components: + - pos: 4.5,-32.5 + parent: 2 + type: Transform + - uid: 2625 + components: + - pos: 3.5,-32.5 + parent: 2 + type: Transform + - uid: 2626 + components: + - pos: 2.5,-32.5 + parent: 2 + type: Transform + - uid: 2627 + components: + - pos: 1.5,-32.5 + parent: 2 + type: Transform + - uid: 2628 + components: + - pos: 0.5,-32.5 + parent: 2 + type: Transform + - uid: 2629 + components: + - pos: -0.5,-32.5 + parent: 2 + type: Transform + - uid: 2630 + components: + - pos: -38.5,3.5 + parent: 2 + type: Transform + - uid: 2631 + components: + - pos: 17.5,-34.5 + parent: 2 + type: Transform + - uid: 2632 + components: + - pos: -26.5,11.5 + parent: 2 + type: Transform + - uid: 2633 + components: + - pos: -26.5,10.5 + parent: 2 + type: Transform + - uid: 2635 + components: + - pos: -26.5,8.5 + parent: 2 + type: Transform + - uid: 2636 + components: + - pos: -26.5,7.5 + parent: 2 + type: Transform + - uid: 2641 + components: + - pos: -20.5,20.5 + parent: 2 + type: Transform + - uid: 2650 + components: + - pos: -28.5,6.5 + parent: 2 + type: Transform + - uid: 2651 + components: + - pos: -27.5,11.5 + parent: 2 + type: Transform + - uid: 2652 + components: + - pos: -28.5,11.5 + parent: 2 + type: Transform + - uid: 2653 + components: + - pos: -29.5,11.5 + parent: 2 + type: Transform + - uid: 2654 + components: + - pos: -29.5,6.5 + parent: 2 + type: Transform + - uid: 2662 + components: + - pos: -32.5,14.5 + parent: 2 + type: Transform + - uid: 2671 + components: + - pos: -23.5,21.5 + parent: 2 + type: Transform + - uid: 2672 + components: + - pos: -24.5,21.5 + parent: 2 + type: Transform + - uid: 2674 + components: + - pos: -26.5,19.5 + parent: 2 + type: Transform + - uid: 2675 + components: + - pos: -26.5,18.5 + parent: 2 + type: Transform + - uid: 2677 + components: + - pos: 9.5,-32.5 + parent: 2 + type: Transform + - uid: 2678 + components: + - pos: -26.5,15.5 + parent: 2 + type: Transform + - uid: 2679 + components: + - pos: -26.5,14.5 + parent: 2 + type: Transform + - uid: 2680 + components: + - pos: -25.5,21.5 + parent: 2 + type: Transform + - uid: 2681 + components: + - pos: -26.5,20.5 + parent: 2 + type: Transform + - uid: 2682 + components: + - pos: -26.5,21.5 + parent: 2 + type: Transform + - uid: 2688 + components: + - pos: 15.5,-32.5 + parent: 2 + type: Transform + - uid: 2689 + components: + - pos: -39.5,-25.5 + parent: 2 + type: Transform + - uid: 2709 + components: + - pos: -25.5,11.5 + parent: 2 + type: Transform + - uid: 2710 + components: + - pos: -32.5,11.5 + parent: 2 + type: Transform + - uid: 2712 + components: + - pos: -40.5,6.5 + parent: 2 + type: Transform + - uid: 2718 + components: + - pos: -35.5,4.5 + parent: 2 + type: Transform + - uid: 2719 + components: + - pos: -35.5,5.5 + parent: 2 + type: Transform + - uid: 2720 + components: + - pos: 1.5,-3.5 + parent: 2 + type: Transform + - uid: 2721 + components: + - pos: -40.5,4.5 + parent: 2 + type: Transform + - uid: 2722 + components: + - pos: -40.5,5.5 + parent: 2 + type: Transform + - uid: 2727 + components: + - pos: -29.5,21.5 + parent: 2 + type: Transform + - uid: 2729 + components: + - pos: 38.5,-3.5 + parent: 2 + type: Transform + - uid: 2730 + components: + - pos: -32.5,21.5 + parent: 2 + type: Transform + - uid: 2733 + components: + - pos: -35.5,21.5 + parent: 2 + type: Transform + - uid: 2736 + components: + - pos: -29.5,20.5 + parent: 2 + type: Transform + - uid: 2737 + components: + - pos: -29.5,19.5 + parent: 2 + type: Transform + - uid: 2739 + components: + - pos: -32.5,20.5 + parent: 2 + type: Transform + - uid: 2740 + components: + - pos: -32.5,19.5 + parent: 2 + type: Transform + - uid: 2742 + components: + - pos: -35.5,20.5 + parent: 2 + type: Transform + - uid: 2743 + components: + - pos: -35.5,19.5 + parent: 2 + type: Transform + - uid: 2745 + components: + - pos: -38.5,21.5 + parent: 2 + type: Transform + - uid: 2746 + components: + - pos: -38.5,20.5 + parent: 2 + type: Transform + - uid: 2747 + components: + - pos: -38.5,19.5 + parent: 2 + type: Transform + - uid: 2755 + components: + - pos: -35.5,10.5 + parent: 2 + type: Transform + - uid: 2757 + components: + - pos: -39.5,14.5 + parent: 2 + type: Transform + - uid: 2760 + components: + - pos: -39.5,7.5 + parent: 2 + type: Transform + - uid: 2761 + components: + - pos: -35.5,7.5 + parent: 2 + type: Transform + - uid: 2764 + components: + - pos: -40.5,7.5 + parent: 2 + type: Transform + - uid: 2765 + components: + - pos: -35.5,6.5 + parent: 2 + type: Transform + - uid: 2766 + components: + - pos: -36.5,7.5 + parent: 2 + type: Transform + - uid: 2773 + components: + - pos: -40.5,3.5 + parent: 2 + type: Transform + - uid: 2775 + components: + - pos: -39.5,19.5 + parent: 2 + type: Transform + - uid: 2776 + components: + - pos: -42.5,18.5 + parent: 2 + type: Transform + - uid: 2777 + components: + - pos: 32.5,-1.5 + parent: 2 + type: Transform + - uid: 2779 + components: + - pos: -41.5,3.5 + parent: 2 + type: Transform + - uid: 2786 + components: + - pos: -44.5,20.5 + parent: 2 + type: Transform + - uid: 2787 + components: + - pos: -45.5,18.5 + parent: 2 + type: Transform + - uid: 2789 + components: + - pos: -43.5,15.5 + parent: 2 + type: Transform + - uid: 2790 + components: + - pos: -50.5,15.5 + parent: 2 + type: Transform + - uid: 2794 + components: + - pos: -44.5,3.5 + parent: 2 + type: Transform + - uid: 2795 + components: + - pos: -40.5,15.5 + parent: 2 + type: Transform + - uid: 2796 + components: + - pos: -41.5,15.5 + parent: 2 + type: Transform + - uid: 2797 + components: + - pos: -42.5,15.5 + parent: 2 + type: Transform + - uid: 2798 + components: + - pos: -40.5,11.5 + parent: 2 + type: Transform + - uid: 2799 + components: + - pos: -50.5,13.5 + parent: 2 + type: Transform + - uid: 2801 + components: + - pos: -40.5,10.5 + parent: 2 + type: Transform + - uid: 2805 + components: + - pos: -45.5,10.5 + parent: 2 + type: Transform + - uid: 2806 + components: + - pos: -50.5,14.5 + parent: 2 + type: Transform + - uid: 2807 + components: + - pos: -50.5,11.5 + parent: 2 + type: Transform + - uid: 2808 + components: + - pos: -45.5,13.5 + parent: 2 + type: Transform + - uid: 2809 + components: + - pos: -45.5,14.5 + parent: 2 + type: Transform + - uid: 2810 + components: + - pos: -44.5,15.5 + parent: 2 + type: Transform + - uid: 2811 + components: + - pos: -40.5,14.5 + parent: 2 + type: Transform + - uid: 2813 + components: + - pos: -40.5,18.5 + parent: 2 + type: Transform + - uid: 2814 + components: + - pos: -39.5,18.5 + parent: 2 + type: Transform + - uid: 2815 + components: + - pos: -41.5,18.5 + parent: 2 + type: Transform + - uid: 2816 + components: + - pos: -50.5,12.5 + parent: 2 + type: Transform + - uid: 2819 + components: + - pos: -53.5,10.5 + parent: 2 + type: Transform + - uid: 2820 + components: + - pos: -46.5,18.5 + parent: 2 + type: Transform + - uid: 2821 + components: + - pos: -40.5,16.5 + parent: 2 + type: Transform + - uid: 2822 + components: + - pos: -41.5,16.5 + parent: 2 + type: Transform + - uid: 2823 + components: + - pos: -42.5,16.5 + parent: 2 + type: Transform + - uid: 2824 + components: + - pos: -43.5,16.5 + parent: 2 + type: Transform + - uid: 2825 + components: + - pos: -43.5,3.5 + parent: 2 + type: Transform + - uid: 2826 + components: + - pos: -42.5,19.5 + parent: 2 + type: Transform + - uid: 2827 + components: + - pos: -53.5,11.5 + parent: 2 + type: Transform + - uid: 2828 + components: + - pos: -53.5,12.5 + parent: 2 + type: Transform + - uid: 2830 + components: + - pos: -47.5,5.5 + parent: 2 + type: Transform + - uid: 2831 + components: + - pos: -47.5,4.5 + parent: 2 + type: Transform + - uid: 2832 + components: + - pos: -45.5,15.5 + parent: 2 + type: Transform + - uid: 2833 + components: + - pos: -44.5,16.5 + parent: 2 + type: Transform + - uid: 2835 + components: + - pos: -42.5,3.5 + parent: 2 + type: Transform + - uid: 2845 + components: + - pos: -47.5,3.5 + parent: 2 + type: Transform + - uid: 2858 + components: + - pos: -46.5,6.5 + parent: 2 + type: Transform + - uid: 2874 + components: + - pos: -26.5,22.5 + parent: 2 + type: Transform + - uid: 2877 + components: + - pos: -29.5,22.5 + parent: 2 + type: Transform + - uid: 2880 + components: + - pos: -32.5,22.5 + parent: 2 + type: Transform + - uid: 2883 + components: + - pos: -35.5,22.5 + parent: 2 + type: Transform + - uid: 2886 + components: + - pos: -38.5,22.5 + parent: 2 + type: Transform + - uid: 2941 + components: + - pos: 1.5,-7.5 + parent: 2 + type: Transform + - uid: 2956 + components: + - pos: 37.5,21.5 + parent: 2 + type: Transform + - uid: 2957 + components: + - pos: 38.5,21.5 + parent: 2 + type: Transform + - uid: 2960 + components: + - pos: 39.5,21.5 + parent: 2 + type: Transform + - uid: 2965 + components: + - pos: 43.5,11.5 + parent: 2 + type: Transform + - uid: 2975 + components: + - pos: 48.5,8.5 + parent: 2 + type: Transform + - uid: 2976 + components: + - pos: 45.5,8.5 + parent: 2 + type: Transform + - uid: 3055 + components: + - pos: -1.5,-9.5 + parent: 2 + type: Transform + - uid: 3078 + components: + - pos: 1.5,-9.5 + parent: 2 + type: Transform + - uid: 3085 + components: + - pos: -1.5,-7.5 + parent: 2 + type: Transform + - uid: 3198 + components: + - pos: 11.5,14.5 + parent: 2 + type: Transform + - uid: 3234 + components: + - pos: 42.5,11.5 + parent: 2 + type: Transform + - uid: 3280 + components: + - pos: -31.5,-25.5 + parent: 2 + type: Transform + - uid: 3282 + components: + - pos: -32.5,-25.5 + parent: 2 + type: Transform + - uid: 3283 + components: + - pos: -35.5,-25.5 + parent: 2 + type: Transform + - uid: 3286 + components: + - pos: -36.5,-25.5 + parent: 2 + type: Transform + - uid: 3294 + components: + - pos: -47.5,6.5 + parent: 2 + type: Transform + - uid: 3296 + components: + - pos: -50.5,10.5 + parent: 2 + type: Transform + - uid: 3300 + components: + - pos: -49.5,18.5 + parent: 2 + type: Transform + - uid: 3301 + components: + - pos: -48.5,18.5 + parent: 2 + type: Transform + - uid: 3302 + components: + - pos: -47.5,18.5 + parent: 2 + type: Transform + - uid: 3303 + components: + - pos: -47.5,2.5 + parent: 2 + type: Transform + - uid: 3304 + components: + - pos: -48.5,2.5 + parent: 2 + type: Transform + - uid: 3306 + components: + - pos: -50.5,2.5 + parent: 2 + type: Transform + - uid: 3307 + components: + - pos: -51.5,2.5 + parent: 2 + type: Transform + - uid: 3308 + components: + - pos: -51.5,3.5 + parent: 2 + type: Transform + - uid: 3309 + components: + - pos: -51.5,4.5 + parent: 2 + type: Transform + - uid: 3310 + components: + - pos: -51.5,5.5 + parent: 2 + type: Transform + - uid: 3311 + components: + - pos: -51.5,6.5 + parent: 2 + type: Transform + - uid: 3312 + components: + - pos: -53.5,13.5 + parent: 2 + type: Transform + - uid: 3313 + components: + - pos: -54.5,5.5 + parent: 2 + type: Transform + - uid: 3314 + components: + - pos: -54.5,6.5 + parent: 2 + type: Transform + - uid: 3315 + components: + - pos: -54.5,4.5 + parent: 2 + type: Transform + - uid: 3316 + components: + - pos: -51.5,10.5 + parent: 2 + type: Transform + - uid: 3317 + components: + - pos: -54.5,3.5 + parent: 2 + type: Transform + - uid: 3318 + components: + - pos: -54.5,2.5 + parent: 2 + type: Transform + - uid: 3319 + components: + - pos: -52.5,6.5 + parent: 2 + type: Transform + - uid: 3322 + components: + - pos: -51.5,7.5 + parent: 2 + type: Transform + - uid: 3324 + components: + - pos: -54.5,10.5 + parent: 2 + type: Transform + - uid: 3325 + components: + - pos: -55.5,10.5 + parent: 2 + type: Transform + - uid: 3326 + components: + - pos: -55.5,6.5 + parent: 2 + type: Transform + - uid: 3330 + components: + - pos: -55.5,9.5 + parent: 2 + type: Transform + - uid: 3342 + components: + - pos: -25.5,14.5 + parent: 2 + type: Transform + - uid: 3344 + components: + - pos: -45.5,20.5 + parent: 2 + type: Transform + - uid: 3350 + components: + - pos: -46.5,20.5 + parent: 2 + type: Transform + - uid: 3351 + components: + - pos: -47.5,20.5 + parent: 2 + type: Transform + - uid: 3353 + components: + - pos: -49.5,20.5 + parent: 2 + type: Transform + - uid: 3354 + components: + - pos: -50.5,20.5 + parent: 2 + type: Transform + - uid: 3355 + components: + - pos: -51.5,20.5 + parent: 2 + type: Transform + - uid: 3356 + components: + - pos: -52.5,20.5 + parent: 2 + type: Transform + - uid: 3357 + components: + - pos: -52.5,19.5 + parent: 2 + type: Transform + - uid: 3358 + components: + - pos: -53.5,19.5 + parent: 2 + type: Transform + - uid: 3361 + components: + - pos: -53.5,16.5 + parent: 2 + type: Transform + - uid: 3362 + components: + - pos: -53.5,2.5 + parent: 2 + type: Transform + - uid: 3364 + components: + - pos: -54.5,13.5 + parent: 2 + type: Transform + - uid: 3365 + components: + - pos: -55.5,13.5 + parent: 2 + type: Transform + - uid: 3366 + components: + - pos: -55.5,14.5 + parent: 2 + type: Transform + - uid: 3367 + components: + - pos: -55.5,15.5 + parent: 2 + type: Transform + - uid: 3368 + components: + - pos: -55.5,16.5 + parent: 2 + type: Transform + - uid: 3369 + components: + - pos: -54.5,16.5 + parent: 2 + type: Transform + - uid: 3370 + components: + - pos: -52.5,16.5 + parent: 2 + type: Transform + - uid: 3371 + components: + - pos: -52.5,13.5 + parent: 2 + type: Transform + - uid: 3373 + components: + - pos: -52.5,15.5 + parent: 2 + type: Transform + - uid: 3376 + components: + - pos: -52.5,-0.5 + parent: 2 + type: Transform + - uid: 3383 + components: + - pos: -52.5,-1.5 + parent: 2 + type: Transform + - uid: 3384 + components: + - pos: -52.5,-2.5 + parent: 2 + type: Transform + - uid: 3386 + components: + - pos: -53.5,-9.5 + parent: 2 + type: Transform + - uid: 3390 + components: + - pos: -53.5,-13.5 + parent: 2 + type: Transform + - uid: 3391 + components: + - pos: -54.5,-13.5 + parent: 2 + type: Transform + - uid: 3392 + components: + - pos: -55.5,-13.5 + parent: 2 + type: Transform + - uid: 3393 + components: + - pos: -56.5,-13.5 + parent: 2 + type: Transform + - uid: 3394 + components: + - pos: -54.5,-9.5 + parent: 2 + type: Transform + - uid: 3395 + components: + - pos: -55.5,-9.5 + parent: 2 + type: Transform + - uid: 3396 + components: + - pos: -56.5,-9.5 + parent: 2 + type: Transform + - uid: 3397 + components: + - pos: -56.5,-5.5 + parent: 2 + type: Transform + - uid: 3398 + components: + - pos: -55.5,-5.5 + parent: 2 + type: Transform + - uid: 3399 + components: + - pos: -54.5,-5.5 + parent: 2 + type: Transform + - uid: 3400 + components: + - pos: -53.5,-5.5 + parent: 2 + type: Transform + - uid: 3403 + components: + - pos: -56.5,-17.5 + parent: 2 + type: Transform + - uid: 3404 + components: + - pos: -55.5,-17.5 + parent: 2 + type: Transform + - uid: 3405 + components: + - pos: -54.5,-17.5 + parent: 2 + type: Transform + - uid: 3406 + components: + - pos: -53.5,-17.5 + parent: 2 + type: Transform + - uid: 3407 + components: + - pos: -53.5,-18.5 + parent: 2 + type: Transform + - uid: 3452 + components: + - pos: -35.5,-28.5 + parent: 2 + type: Transform + - uid: 3453 + components: + - pos: -35.5,-29.5 + parent: 2 + type: Transform + - uid: 3454 + components: + - pos: -34.5,-29.5 + parent: 2 + type: Transform + - uid: 3455 + components: + - pos: -33.5,-29.5 + parent: 2 + type: Transform + - uid: 3456 + components: + - pos: -32.5,-29.5 + parent: 2 + type: Transform + - uid: 3457 + components: + - pos: -31.5,-29.5 + parent: 2 + type: Transform + - uid: 3458 + components: + - pos: -30.5,-29.5 + parent: 2 + type: Transform + - uid: 3459 + components: + - pos: -36.5,-26.5 + parent: 2 + type: Transform + - uid: 3460 + components: + - pos: -36.5,-27.5 + parent: 2 + type: Transform + - uid: 3461 + components: + - pos: -36.5,-28.5 + parent: 2 + type: Transform + - uid: 3560 + components: + - pos: 17.5,-14.5 + parent: 2 + type: Transform + - uid: 3591 + components: + - pos: 18.5,-13.5 + parent: 2 + type: Transform + - uid: 3606 + components: + - pos: 47.5,-3.5 + parent: 2 + type: Transform + - uid: 3679 + components: + - pos: 18.5,-32.5 + parent: 2 + type: Transform + - uid: 3681 + components: + - pos: 18.5,-31.5 + parent: 2 + type: Transform + - uid: 3682 + components: + - pos: 18.5,-29.5 + parent: 2 + type: Transform + - uid: 3687 + components: + - pos: 21.5,-32.5 + parent: 2 + type: Transform + - uid: 3690 + components: + - pos: 21.5,-29.5 + parent: 2 + type: Transform + - uid: 3695 + components: + - pos: 19.5,-29.5 + parent: 2 + type: Transform + - uid: 3696 + components: + - pos: 20.5,-29.5 + parent: 2 + type: Transform + - uid: 3701 + components: + - pos: -17.5,-33.5 + parent: 2 + type: Transform + - uid: 3704 + components: + - pos: 44.5,-7.5 + parent: 2 + type: Transform + - uid: 3705 + components: + - pos: -19.5,-32.5 + parent: 2 + type: Transform + - uid: 3777 + components: + - pos: -53.5,-11.5 + parent: 2 + type: Transform + - uid: 3779 + components: + - pos: -21.5,-31.5 + parent: 2 + type: Transform + - uid: 3780 + components: + - pos: -22.5,-31.5 + parent: 2 + type: Transform + - uid: 3781 + components: + - pos: -23.5,-31.5 + parent: 2 + type: Transform + - uid: 3786 + components: + - pos: -38.5,-33.5 + parent: 2 + type: Transform + - uid: 3787 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,-35.5 + parent: 2 + type: Transform + - uid: 3789 + components: + - rot: 1.5707963267948966 rad + pos: -36.5,-35.5 + parent: 2 + type: Transform + - uid: 3793 + components: + - pos: -6.5,-34.5 + parent: 2 + type: Transform + - uid: 3804 + components: + - pos: -39.5,-24.5 + parent: 2 + type: Transform + - uid: 3805 + components: + - pos: -26.5,-29.5 + parent: 2 + type: Transform + - uid: 3897 + components: + - pos: 15.5,-34.5 + parent: 2 + type: Transform + - uid: 3947 + components: + - pos: 44.5,-3.5 + parent: 2 + type: Transform + - uid: 3967 + components: + - pos: 9.5,4.5 + parent: 2 + type: Transform + - uid: 4029 + components: + - pos: 40.5,-21.5 + parent: 2 + type: Transform + - uid: 4033 + components: + - pos: 49.5,-13.5 + parent: 2 + type: Transform + - uid: 4040 + components: + - pos: 39.5,-26.5 + parent: 2 + type: Transform + - uid: 4041 + components: + - pos: 22.5,-31.5 + parent: 2 + type: Transform + - uid: 4042 + components: + - pos: 22.5,-30.5 + parent: 2 + type: Transform + - uid: 4073 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,-33.5 + parent: 2 + type: Transform + - uid: 4074 + components: + - pos: -41.5,-30.5 + parent: 2 + type: Transform + - uid: 4077 + components: + - pos: -44.5,-30.5 + parent: 2 + type: Transform + - uid: 4078 + components: + - pos: -45.5,-30.5 + parent: 2 + type: Transform + - uid: 4079 + components: + - pos: -45.5,-29.5 + parent: 2 + type: Transform + - uid: 4080 + components: + - pos: -46.5,-29.5 + parent: 2 + type: Transform + - uid: 4081 + components: + - pos: -46.5,-28.5 + parent: 2 + type: Transform + - uid: 4084 + components: + - pos: -46.5,-25.5 + parent: 2 + type: Transform + - uid: 4085 + components: + - pos: -46.5,-24.5 + parent: 2 + type: Transform + - uid: 4086 + components: + - pos: -46.5,-23.5 + parent: 2 + type: Transform + - uid: 4202 + components: + - pos: 48.5,-13.5 + parent: 2 + type: Transform + - uid: 4208 + components: + - pos: -19.5,-31.5 + parent: 2 + type: Transform + - uid: 4293 + components: + - pos: 19.5,-35.5 + parent: 2 + type: Transform + - uid: 4294 + components: + - pos: 22.5,-32.5 + parent: 2 + type: Transform + - uid: 4295 + components: + - pos: 40.5,-22.5 + parent: 2 + type: Transform + - uid: 4300 + components: + - pos: 16.5,-34.5 + parent: 2 + type: Transform + - uid: 4325 + components: + - pos: 18.5,-35.5 + parent: 2 + type: Transform + - uid: 4742 + components: + - pos: 41.5,-3.5 + parent: 2 + type: Transform + - uid: 4776 + components: + - pos: 19.5,2.5 + parent: 2 + type: Transform + - uid: 4817 + components: + - pos: 23.5,-35.5 + parent: 2 + type: Transform + - uid: 4950 + components: + - pos: 22.5,-35.5 + parent: 2 + type: Transform + - uid: 5279 + components: + - pos: -52.5,-23.5 + parent: 2 + type: Transform + - uid: 6543 + components: + - rot: 1.5707963267948966 rad + pos: -37.5,-34.5 + parent: 2 + type: Transform + - uid: 6865 + components: + - pos: 19.5,-32.5 + parent: 2 + type: Transform + - uid: 6866 + components: + - pos: 20.5,-32.5 + parent: 2 + type: Transform + - uid: 6867 + components: + - pos: 24.5,-35.5 + parent: 2 + type: Transform + - uid: 6868 + components: + - pos: 25.5,-35.5 + parent: 2 + type: Transform + - uid: 6869 + components: + - pos: 26.5,-35.5 + parent: 2 + type: Transform + - uid: 6870 + components: + - pos: 26.5,-36.5 + parent: 2 + type: Transform + - uid: 6871 + components: + - pos: 27.5,-36.5 + parent: 2 + type: Transform + - uid: 6872 + components: + - pos: 28.5,-36.5 + parent: 2 + type: Transform + - uid: 6873 + components: + - pos: 29.5,-36.5 + parent: 2 + type: Transform + - uid: 6874 + components: + - pos: 30.5,-36.5 + parent: 2 + type: Transform + - uid: 6875 + components: + - pos: 31.5,-36.5 + parent: 2 + type: Transform + - uid: 6876 + components: + - pos: 32.5,-36.5 + parent: 2 + type: Transform + - uid: 6877 + components: + - pos: 32.5,-35.5 + parent: 2 + type: Transform + - uid: 6878 + components: + - pos: 33.5,-35.5 + parent: 2 + type: Transform + - uid: 6883 + components: + - pos: 42.5,-16.5 + parent: 2 + type: Transform + - uid: 6884 + components: + - pos: 42.5,-17.5 + parent: 2 + type: Transform + - uid: 6885 + components: + - pos: -2.5,-33.5 + parent: 2 + type: Transform + - uid: 6891 + components: + - pos: 42.5,-24.5 + parent: 2 + type: Transform + - uid: 6892 + components: + - pos: 42.5,-25.5 + parent: 2 + type: Transform + - uid: 6893 + components: + - pos: 42.5,-26.5 + parent: 2 + type: Transform + - uid: 6896 + components: + - pos: 42.5,-29.5 + parent: 2 + type: Transform + - uid: 6897 + components: + - pos: 42.5,-30.5 + parent: 2 + type: Transform + - uid: 6898 + components: + - pos: 42.5,-31.5 + parent: 2 + type: Transform + - uid: 6899 + components: + - pos: 41.5,-31.5 + parent: 2 + type: Transform + - uid: 6900 + components: + - pos: 41.5,-32.5 + parent: 2 + type: Transform + - uid: 6901 + components: + - pos: 41.5,-33.5 + parent: 2 + type: Transform + - uid: 6902 + components: + - pos: 41.5,-34.5 + parent: 2 + type: Transform + - uid: 6903 + components: + - pos: 41.5,-35.5 + parent: 2 + type: Transform + - uid: 6904 + components: + - pos: 40.5,-35.5 + parent: 2 + type: Transform + - uid: 6961 + components: + - pos: 37.5,-35.5 + parent: 2 + type: Transform + - uid: 6966 + components: + - pos: -44.5,21.5 + parent: 2 + type: Transform + - uid: 6967 + components: + - pos: -44.5,23.5 + parent: 2 + type: Transform + - uid: 6968 + components: + - pos: -44.5,22.5 + parent: 2 + type: Transform + - uid: 6969 + components: + - pos: -45.5,24.5 + parent: 2 + type: Transform + - uid: 6970 + components: + - pos: -44.5,24.5 + parent: 2 + type: Transform + - uid: 6972 + components: + - pos: -46.5,24.5 + parent: 2 + type: Transform + - uid: 6973 + components: + - pos: -49.5,24.5 + parent: 2 + type: Transform + - uid: 6975 + components: + - pos: -50.5,24.5 + parent: 2 + type: Transform + - uid: 6976 + components: + - pos: -50.5,23.5 + parent: 2 + type: Transform + - uid: 6978 + components: + - pos: -50.5,21.5 + parent: 2 + type: Transform + - uid: 7803 + components: + - pos: 43.5,-18.5 + parent: 2 + type: Transform + - uid: 8836 + components: + - pos: 43.5,-19.5 + parent: 2 + type: Transform + - uid: 8840 + components: + - pos: 43.5,-23.5 + parent: 2 + type: Transform + - uid: 8841 + components: + - pos: 43.5,-24.5 + parent: 2 + type: Transform + - uid: 8854 + components: + - pos: -51.5,-23.5 + parent: 2 + type: Transform + - uid: 8856 + components: + - pos: -52.5,-22.5 + parent: 2 + type: Transform + - uid: 8868 + components: + - pos: -53.5,-22.5 + parent: 2 + type: Transform + - uid: 8871 + components: + - pos: -47.5,-23.5 + parent: 2 + type: Transform + - uid: 9197 + components: + - pos: -19.5,-33.5 + parent: 2 + type: Transform + - uid: 9307 + components: + - pos: 43.5,-17.5 + parent: 2 + type: Transform + - uid: 9308 + components: + - pos: 44.5,-17.5 + parent: 2 + type: Transform + - uid: 9311 + components: + - pos: 47.5,-17.5 + parent: 2 + type: Transform + - uid: 9312 + components: + - pos: 48.5,-17.5 + parent: 2 + type: Transform + - uid: 9313 + components: + - pos: 48.5,-16.5 + parent: 2 + type: Transform + - uid: 9314 + components: + - pos: 48.5,-15.5 + parent: 2 + type: Transform + - uid: 9315 + components: + - pos: 48.5,-14.5 + parent: 2 + type: Transform + - uid: 9705 + components: + - pos: -53.5,-2.5 + parent: 2 + type: Transform + - uid: 10885 + components: + - pos: -10.5,-37.5 + parent: 2 + type: Transform + - uid: 10886 + components: + - pos: -6.5,-37.5 + parent: 2 + type: Transform + - uid: 10904 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-35.5 + parent: 2 + type: Transform + - uid: 10905 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-35.5 + parent: 2 + type: Transform + - uid: 10906 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-34.5 + parent: 2 + type: Transform + - uid: 10909 + components: + - pos: -39.5,-33.5 + parent: 2 + type: Transform + - uid: 10910 + components: + - pos: -40.5,-33.5 + parent: 2 + type: Transform + - uid: 10911 + components: + - pos: -40.5,-32.5 + parent: 2 + type: Transform + - uid: 10912 + components: + - pos: -41.5,-32.5 + parent: 2 + type: Transform + - uid: 10913 + components: + - pos: -41.5,-31.5 + parent: 2 + type: Transform + - uid: 10925 + components: + - pos: -30.5,-34.5 + parent: 2 + type: Transform + - uid: 10926 + components: + - pos: -29.5,-34.5 + parent: 2 + type: Transform + - uid: 10927 + components: + - pos: -28.5,-34.5 + parent: 2 + type: Transform + - uid: 10928 + components: + - pos: -27.5,-34.5 + parent: 2 + type: Transform + - uid: 10929 + components: + - pos: -27.5,-33.5 + parent: 2 + type: Transform + - uid: 10930 + components: + - pos: -26.5,-33.5 + parent: 2 + type: Transform + - uid: 10931 + components: + - pos: -25.5,-33.5 + parent: 2 + type: Transform + - uid: 10932 + components: + - pos: -24.5,-33.5 + parent: 2 + type: Transform + - uid: 10933 + components: + - pos: -23.5,-33.5 + parent: 2 + type: Transform + - uid: 10934 + components: + - pos: -23.5,-32.5 + parent: 2 + type: Transform +- proto: WallSolid + entities: + - uid: 13 + components: + - pos: 33.5,-11.5 + parent: 2 + type: Transform + - uid: 21 + components: + - pos: -5.5,-26.5 + parent: 2 + type: Transform + - uid: 29 + components: + - pos: -3.5,-25.5 + parent: 2 + type: Transform + - uid: 52 + components: + - pos: -5.5,14.5 + parent: 2 + type: Transform + - uid: 55 + components: + - pos: 3.5,-24.5 + parent: 2 + type: Transform + - uid: 56 + components: + - pos: 0.5,-24.5 + parent: 2 + type: Transform + - uid: 75 + components: + - pos: 10.5,-24.5 + parent: 2 + type: Transform + - uid: 79 + components: + - pos: -5.5,-12.5 + parent: 2 + type: Transform + - uid: 81 + components: + - pos: -5.5,-13.5 + parent: 2 + type: Transform + - uid: 82 + components: + - pos: -1.5,-20.5 + parent: 2 + type: Transform + - uid: 83 + components: + - pos: -0.5,-20.5 + parent: 2 + type: Transform + - uid: 84 + components: + - pos: 0.5,-20.5 + parent: 2 + type: Transform + - uid: 85 + components: + - pos: -2.5,-20.5 + parent: 2 + type: Transform + - uid: 86 + components: + - pos: 9.5,-20.5 + parent: 2 + type: Transform + - uid: 87 + components: + - pos: 0.5,-19.5 + parent: 2 + type: Transform + - uid: 88 + components: + - pos: -4.5,-20.5 + parent: 2 + type: Transform + - uid: 90 + components: + - pos: 9.5,-3.5 + parent: 2 + type: Transform + - uid: 91 + components: + - pos: -9.5,-3.5 + parent: 2 + type: Transform + - uid: 94 + components: + - pos: -9.5,-7.5 + parent: 2 + type: Transform + - uid: 96 + components: + - pos: 9.5,-7.5 + parent: 2 + type: Transform + - uid: 99 + components: + - pos: -6.5,-3.5 + parent: 2 + type: Transform + - uid: 103 + components: + - pos: -9.5,-12.5 + parent: 2 + type: Transform + - uid: 108 + components: + - pos: -10.5,-7.5 + parent: 2 + type: Transform + - uid: 109 + components: + - pos: -10.5,-3.5 + parent: 2 + type: Transform + - uid: 110 + components: + - pos: -9.5,-2.5 + parent: 2 + type: Transform + - uid: 111 + components: + - pos: 9.5,-2.5 + parent: 2 + type: Transform + - uid: 112 + components: + - pos: 10.5,-2.5 + parent: 2 + type: Transform + - uid: 113 + components: + - pos: 11.5,-2.5 + parent: 2 + type: Transform + - uid: 114 + components: + - pos: 14.5,-22.5 + parent: 2 + type: Transform + - uid: 115 + components: + - pos: -11.5,-7.5 + parent: 2 + type: Transform + - uid: 117 + components: + - pos: -14.5,-7.5 + parent: 2 + type: Transform + - uid: 118 + components: + - pos: -14.5,-9.5 + parent: 2 + type: Transform + - uid: 119 + components: + - pos: -14.5,-8.5 + parent: 2 + type: Transform + - uid: 120 + components: + - pos: -9.5,-1.5 + parent: 2 + type: Transform + - uid: 121 + components: + - pos: -16.5,-8.5 + parent: 2 + type: Transform + - uid: 122 + components: + - pos: -17.5,-8.5 + parent: 2 + type: Transform + - uid: 126 + components: + - pos: -9.5,15.5 + parent: 2 + type: Transform + - uid: 129 + components: + - pos: -8.5,4.5 + parent: 2 + type: Transform + - uid: 130 + components: + - pos: -11.5,-3.5 + parent: 2 + type: Transform + - uid: 131 + components: + - pos: -10.5,15.5 + parent: 2 + type: Transform + - uid: 133 + components: + - pos: -15.5,-28.5 + parent: 2 + type: Transform + - uid: 135 + components: + - pos: -14.5,-2.5 + parent: 2 + type: Transform + - uid: 136 + components: + - pos: -15.5,-2.5 + parent: 2 + type: Transform + - uid: 146 + components: + - pos: -14.5,-10.5 + parent: 2 + type: Transform + - uid: 148 + components: + - pos: -14.5,-12.5 + parent: 2 + type: Transform + - uid: 149 + components: + - pos: -14.5,-13.5 + parent: 2 + type: Transform + - uid: 150 + components: + - pos: -13.5,-13.5 + parent: 2 + type: Transform + - uid: 151 + components: + - pos: -12.5,-13.5 + parent: 2 + type: Transform + - uid: 152 + components: + - pos: -11.5,-13.5 + parent: 2 + type: Transform + - uid: 153 + components: + - pos: -10.5,-13.5 + parent: 2 + type: Transform + - uid: 154 + components: + - pos: -9.5,-13.5 + parent: 2 + type: Transform + - uid: 157 + components: + - pos: -18.5,-7.5 + parent: 2 + type: Transform + - uid: 158 + components: + - pos: -9.5,1.5 + parent: 2 + type: Transform + - uid: 159 + components: + - pos: -9.5,2.5 + parent: 2 + type: Transform + - uid: 161 + components: + - pos: -9.5,4.5 + parent: 2 + type: Transform + - uid: 164 + components: + - pos: -5.5,-15.5 + parent: 2 + type: Transform + - uid: 166 + components: + - pos: -5.5,-17.5 + parent: 2 + type: Transform + - uid: 167 + components: + - pos: -5.5,-18.5 + parent: 2 + type: Transform + - uid: 168 + components: + - pos: -5.5,-19.5 + parent: 2 + type: Transform + - uid: 169 + components: + - pos: -5.5,-20.5 + parent: 2 + type: Transform + - uid: 170 + components: + - pos: -5.5,-21.5 + parent: 2 + type: Transform + - uid: 171 + components: + - pos: -5.5,-22.5 + parent: 2 + type: Transform + - uid: 174 + components: + - pos: -5.5,3.5 + parent: 2 + type: Transform + - uid: 175 + components: + - pos: 5.5,3.5 + parent: 2 + type: Transform + - uid: 180 + components: + - pos: 0.5,3.5 + parent: 2 + type: Transform + - uid: 181 + components: + - pos: -0.5,3.5 + parent: 2 + type: Transform + - uid: 185 + components: + - pos: -4.5,3.5 + parent: 2 + type: Transform + - uid: 186 + components: + - pos: -5.5,4.5 + parent: 2 + type: Transform + - uid: 187 + components: + - pos: -5.5,5.5 + parent: 2 + type: Transform + - uid: 188 + components: + - pos: 4.5,2.5 + parent: 2 + type: Transform + - uid: 189 + components: + - pos: -5.5,7.5 + parent: 2 + type: Transform + - uid: 190 + components: + - pos: -5.5,8.5 + parent: 2 + type: Transform + - uid: 191 + components: + - pos: -5.5,9.5 + parent: 2 + type: Transform + - uid: 192 + components: + - pos: -5.5,10.5 + parent: 2 + type: Transform + - uid: 195 + components: + - pos: 5.5,4.5 + parent: 2 + type: Transform + - uid: 198 + components: + - pos: 5.5,7.5 + parent: 2 + type: Transform + - uid: 199 + components: + - pos: 5.5,8.5 + parent: 2 + type: Transform + - uid: 201 + components: + - pos: 2.5,19.5 + parent: 2 + type: Transform + - uid: 210 + components: + - pos: 16.5,-0.5 + parent: 2 + type: Transform + - uid: 211 + components: + - pos: 16.5,-2.5 + parent: 2 + type: Transform + - uid: 228 + components: + - pos: -14.5,0.5 + parent: 2 + type: Transform + - uid: 229 + components: + - pos: -14.5,-1.5 + parent: 2 + type: Transform + - uid: 230 + components: + - pos: 3.5,-25.5 + parent: 2 + type: Transform + - uid: 236 + components: + - pos: 4.5,3.5 + parent: 2 + type: Transform + - uid: 237 + components: + - pos: 4.5,8.5 + parent: 2 + type: Transform + - uid: 239 + components: + - pos: -14.5,-0.5 + parent: 2 + type: Transform + - uid: 246 + components: + - pos: 2.5,15.5 + parent: 2 + type: Transform + - uid: 254 + components: + - pos: -0.5,-25.5 + parent: 2 + type: Transform + - uid: 255 + components: + - pos: -0.5,-13.5 + parent: 2 + type: Transform + - uid: 259 + components: + - pos: 9.5,-11.5 + parent: 2 + type: Transform + - uid: 263 + components: + - pos: 5.5,-13.5 + parent: 2 + type: Transform + - uid: 268 + components: + - pos: 3.5,-21.5 + parent: 2 + type: Transform + - uid: 271 + components: + - pos: 0.5,-21.5 + parent: 2 + type: Transform + - uid: 272 + components: + - pos: -4.5,-25.5 + parent: 2 + type: Transform + - uid: 273 + components: + - pos: -1.5,-25.5 + parent: 2 + type: Transform + - uid: 274 + components: + - pos: -2.5,-25.5 + parent: 2 + type: Transform + - uid: 275 + components: + - pos: 9.5,-13.5 + parent: 2 + type: Transform + - uid: 278 + components: + - pos: -5.5,-24.5 + parent: 2 + type: Transform + - uid: 279 + components: + - pos: -5.5,-25.5 + parent: 2 + type: Transform + - uid: 284 + components: + - pos: 0.5,-13.5 + parent: 2 + type: Transform + - uid: 285 + components: + - pos: 1.5,-13.5 + parent: 2 + type: Transform + - uid: 286 + components: + - pos: -0.5,-12.5 + parent: 2 + type: Transform + - uid: 295 + components: + - pos: 0.5,-15.5 + parent: 2 + type: Transform + - uid: 299 + components: + - pos: -36.5,-3.5 + parent: 2 + type: Transform + - uid: 301 + components: + - pos: -4.5,8.5 + parent: 2 + type: Transform + - uid: 304 + components: + - pos: -13.5,-3.5 + parent: 2 + type: Transform + - uid: 307 + components: + - pos: 1.5,8.5 + parent: 2 + type: Transform + - uid: 310 + components: + - pos: -5.5,13.5 + parent: 2 + type: Transform + - uid: 313 + components: + - pos: 11.5,-25.5 + parent: 2 + type: Transform + - uid: 314 + components: + - pos: 0.5,-14.5 + parent: 2 + type: Transform + - uid: 319 + components: + - pos: 10.5,-25.5 + parent: 2 + type: Transform + - uid: 322 + components: + - pos: 4.5,-13.5 + parent: 2 + type: Transform + - uid: 325 + components: + - pos: 13.5,-25.5 + parent: 2 + type: Transform + - uid: 327 + components: + - pos: 10.5,-20.5 + parent: 2 + type: Transform + - uid: 328 + components: + - pos: 3.5,-20.5 + parent: 2 + type: Transform + - uid: 329 + components: + - pos: 14.5,-24.5 + parent: 2 + type: Transform + - uid: 330 + components: + - pos: 10.5,-19.5 + parent: 2 + type: Transform + - uid: 334 + components: + - pos: 14.5,-25.5 + parent: 2 + type: Transform + - uid: 335 + components: + - pos: 10.5,-14.5 + parent: 2 + type: Transform + - uid: 336 + components: + - pos: 10.5,-13.5 + parent: 2 + type: Transform + - uid: 339 + components: + - pos: 14.5,-14.5 + parent: 2 + type: Transform + - uid: 341 + components: + - pos: 10.5,-23.5 + parent: 2 + type: Transform + - uid: 343 + components: + - pos: 13.5,-13.5 + parent: 2 + type: Transform + - uid: 346 + components: + - pos: 11.5,-13.5 + parent: 2 + type: Transform + - uid: 347 + components: + - pos: 12.5,-13.5 + parent: 2 + type: Transform + - uid: 351 + components: + - pos: 14.5,-23.5 + parent: 2 + type: Transform + - uid: 354 + components: + - pos: 10.5,-21.5 + parent: 2 + type: Transform + - uid: 360 + components: + - pos: 15.5,-14.5 + parent: 2 + type: Transform + - uid: 364 + components: + - pos: 11.5,-21.5 + parent: 2 + type: Transform + - uid: 365 + components: + - pos: 13.5,-21.5 + parent: 2 + type: Transform + - uid: 369 + components: + - pos: 15.5,-8.5 + parent: 2 + type: Transform + - uid: 370 + components: + - pos: 15.5,-10.5 + parent: 2 + type: Transform + - uid: 371 + components: + - pos: 15.5,-9.5 + parent: 2 + type: Transform + - uid: 372 + components: + - pos: 15.5,-7.5 + parent: 2 + type: Transform + - uid: 373 + components: + - pos: 14.5,-7.5 + parent: 2 + type: Transform + - uid: 375 + components: + - pos: 17.5,-21.5 + parent: 2 + type: Transform + - uid: 383 + components: + - pos: -10.5,-15.5 + parent: 2 + type: Transform + - uid: 384 + components: + - pos: 12.5,-2.5 + parent: 2 + type: Transform + - uid: 385 + components: + - pos: 13.5,-2.5 + parent: 2 + type: Transform + - uid: 386 + components: + - pos: 16.5,-7.5 + parent: 2 + type: Transform + - uid: 388 + components: + - pos: 15.5,-11.5 + parent: 2 + type: Transform + - uid: 390 + components: + - pos: 13.5,-11.5 + parent: 2 + type: Transform + - uid: 391 + components: + - pos: 12.5,-11.5 + parent: 2 + type: Transform + - uid: 392 + components: + - pos: 14.5,-11.5 + parent: 2 + type: Transform + - uid: 393 + components: + - pos: 10.5,-11.5 + parent: 2 + type: Transform + - uid: 395 + components: + - pos: 12.5,-21.5 + parent: 2 + type: Transform + - uid: 396 + components: + - pos: 10.5,-7.5 + parent: 2 + type: Transform + - uid: 397 + components: + - pos: 15.5,-21.5 + parent: 2 + type: Transform + - uid: 398 + components: + - pos: 18.5,-7.5 + parent: 2 + type: Transform + - uid: 399 + components: + - pos: 18.5,-8.5 + parent: 2 + type: Transform + - uid: 400 + components: + - pos: 18.5,-9.5 + parent: 2 + type: Transform + - uid: 401 + components: + - pos: 18.5,-10.5 + parent: 2 + type: Transform + - uid: 402 + components: + - pos: 18.5,-11.5 + parent: 2 + type: Transform + - uid: 403 + components: + - pos: 14.5,-21.5 + parent: 2 + type: Transform + - uid: 413 + components: + - pos: -25.5,6.5 + parent: 2 + type: Transform + - uid: 414 + components: + - pos: 16.5,1.5 + parent: 2 + type: Transform + - uid: 419 + components: + - pos: 16.5,-1.5 + parent: 2 + type: Transform + - uid: 420 + components: + - pos: 17.5,-2.5 + parent: 2 + type: Transform + - uid: 433 + components: + - pos: 3.5,-23.5 + parent: 2 + type: Transform + - uid: 437 + components: + - pos: 0.5,-23.5 + parent: 2 + type: Transform + - uid: 440 + components: + - pos: 13.5,-3.5 + parent: 2 + type: Transform + - uid: 441 + components: + - pos: 14.5,-3.5 + parent: 2 + type: Transform + - uid: 442 + components: + - pos: 15.5,-3.5 + parent: 2 + type: Transform + - uid: 443 + components: + - pos: 16.5,-3.5 + parent: 2 + type: Transform + - uid: 455 + components: + - pos: 38.5,-15.5 + parent: 2 + type: Transform + - uid: 473 + components: + - pos: 36.5,-16.5 + parent: 2 + type: Transform + - uid: 474 + components: + - pos: 28.5,-7.5 + parent: 2 + type: Transform + - uid: 476 + components: + - pos: 19.5,-8.5 + parent: 2 + type: Transform + - uid: 480 + components: + - pos: 26.5,-20.5 + parent: 2 + type: Transform + - uid: 481 + components: + - pos: 13.5,-14.5 + parent: 2 + type: Transform + - uid: 484 + components: + - pos: 38.5,-14.5 + parent: 2 + type: Transform + - uid: 485 + components: + - pos: 27.5,-7.5 + parent: 2 + type: Transform + - uid: 486 + components: + - pos: 26.5,-7.5 + parent: 2 + type: Transform + - uid: 487 + components: + - pos: 25.5,-8.5 + parent: 2 + type: Transform + - uid: 500 + components: + - pos: 26.5,-14.5 + parent: 2 + type: Transform + - uid: 501 + components: + - pos: 26.5,-13.5 + parent: 2 + type: Transform + - uid: 506 + components: + - pos: 26.5,-8.5 + parent: 2 + type: Transform + - uid: 507 + components: + - pos: 31.5,-7.5 + parent: 2 + type: Transform + - uid: 509 + components: + - pos: 26.5,-9.5 + parent: 2 + type: Transform + - uid: 510 + components: + - pos: 33.5,-7.5 + parent: 2 + type: Transform + - uid: 511 + components: + - pos: 32.5,-7.5 + parent: 2 + type: Transform + - uid: 515 + components: + - pos: 34.5,-7.5 + parent: 2 + type: Transform + - uid: 516 + components: + - pos: 32.5,-20.5 + parent: 2 + type: Transform + - uid: 517 + components: + - pos: -49.5,-11.5 + parent: 2 + type: Transform + - uid: 535 + components: + - pos: 4.5,-24.5 + parent: 2 + type: Transform + - uid: 536 + components: + - pos: 5.5,-24.5 + parent: 2 + type: Transform + - uid: 537 + components: + - pos: 6.5,-24.5 + parent: 2 + type: Transform + - uid: 538 + components: + - pos: 7.5,-24.5 + parent: 2 + type: Transform + - uid: 540 + components: + - pos: 9.5,-24.5 + parent: 2 + type: Transform + - uid: 547 + components: + - pos: 6.5,-13.5 + parent: 2 + type: Transform + - uid: 554 + components: + - pos: -20.5,7.5 + parent: 2 + type: Transform + - uid: 591 + components: + - pos: -9.5,-16.5 + parent: 2 + type: Transform + - uid: 592 + components: + - pos: -10.5,-16.5 + parent: 2 + type: Transform + - uid: 593 + components: + - pos: -11.5,-16.5 + parent: 2 + type: Transform + - uid: 594 + components: + - pos: -12.5,-16.5 + parent: 2 + type: Transform + - uid: 595 + components: + - pos: -13.5,-16.5 + parent: 2 + type: Transform + - uid: 596 + components: + - pos: -14.5,-16.5 + parent: 2 + type: Transform + - uid: 597 + components: + - pos: -14.5,-19.5 + parent: 2 + type: Transform + - uid: 600 + components: + - pos: -14.5,-20.5 + parent: 2 + type: Transform + - uid: 601 + components: + - pos: -13.5,-20.5 + parent: 2 + type: Transform + - uid: 602 + components: + - pos: -12.5,-20.5 + parent: 2 + type: Transform + - uid: 603 + components: + - pos: -11.5,-20.5 + parent: 2 + type: Transform + - uid: 604 + components: + - pos: -10.5,-20.5 + parent: 2 + type: Transform + - uid: 605 + components: + - pos: -9.5,-17.5 + parent: 2 + type: Transform + - uid: 606 + components: + - pos: -14.5,-17.5 + parent: 2 + type: Transform + - uid: 608 + components: + - pos: -9.5,-20.5 + parent: 2 + type: Transform + - uid: 622 + components: + - pos: 7.5,-27.5 + parent: 2 + type: Transform + - uid: 623 + components: + - pos: 7.5,-26.5 + parent: 2 + type: Transform + - uid: 624 + components: + - pos: 7.5,-25.5 + parent: 2 + type: Transform + - uid: 636 + components: + - pos: 27.5,-2.5 + parent: 2 + type: Transform + - uid: 650 + components: + - pos: 5.5,9.5 + parent: 2 + type: Transform + - uid: 688 + components: + - pos: -0.5,-24.5 + parent: 2 + type: Transform + - uid: 694 + components: + - pos: 3.5,-28.5 + parent: 2 + type: Transform + - uid: 695 + components: + - pos: 4.5,-28.5 + parent: 2 + type: Transform + - uid: 696 + components: + - pos: 5.5,-28.5 + parent: 2 + type: Transform + - uid: 697 + components: + - pos: 6.5,-28.5 + parent: 2 + type: Transform + - uid: 698 + components: + - pos: 7.5,-28.5 + parent: 2 + type: Transform + - uid: 733 + components: + - pos: -28.5,-3.5 + parent: 2 + type: Transform + - uid: 769 + components: + - pos: 27.5,-1.5 + parent: 2 + type: Transform + - uid: 771 + components: + - pos: 27.5,0.5 + parent: 2 + type: Transform + - uid: 772 + components: + - pos: 27.5,1.5 + parent: 2 + type: Transform + - uid: 782 + components: + - pos: 27.5,2.5 + parent: 2 + type: Transform + - uid: 785 + components: + - pos: 27.5,-12.5 + parent: 2 + type: Transform + - uid: 786 + components: + - pos: 33.5,-8.5 + parent: 2 + type: Transform + - uid: 787 + components: + - pos: 33.5,-9.5 + parent: 2 + type: Transform + - uid: 788 + components: + - pos: 32.5,2.5 + parent: 2 + type: Transform + - uid: 801 + components: + - pos: 32.5,-11.5 + parent: 2 + type: Transform + - uid: 809 + components: + - pos: 27.5,3.5 + parent: 2 + type: Transform + - uid: 810 + components: + - pos: 28.5,3.5 + parent: 2 + type: Transform + - uid: 813 + components: + - pos: 31.5,3.5 + parent: 2 + type: Transform + - uid: 814 + components: + - pos: 32.5,3.5 + parent: 2 + type: Transform + - uid: 821 + components: + - pos: 4.5,32.5 + parent: 2 + type: Transform + - uid: 822 + components: + - pos: -1.5,15.5 + parent: 2 + type: Transform + - uid: 827 + components: + - pos: 32.5,-12.5 + parent: 2 + type: Transform + - uid: 828 + components: + - pos: 32.5,-13.5 + parent: 2 + type: Transform + - uid: 833 + components: + - pos: -0.5,-26.5 + parent: 2 + type: Transform + - uid: 835 + components: + - pos: -0.5,-29.5 + parent: 2 + type: Transform + - uid: 839 + components: + - pos: 3.5,-29.5 + parent: 2 + type: Transform + - uid: 852 + components: + - pos: 17.5,-22.5 + parent: 2 + type: Transform + - uid: 856 + components: + - pos: 17.5,-24.5 + parent: 2 + type: Transform + - uid: 860 + components: + - pos: 27.5,-21.5 + parent: 2 + type: Transform + - uid: 861 + components: + - pos: 26.5,-21.5 + parent: 2 + type: Transform + - uid: 862 + components: + - pos: 17.5,-25.5 + parent: 2 + type: Transform + - uid: 867 + components: + - pos: 38.5,-12.5 + parent: 2 + type: Transform + - uid: 868 + components: + - pos: 17.5,-26.5 + parent: 2 + type: Transform + - uid: 869 + components: + - pos: 18.5,-26.5 + parent: 2 + type: Transform + - uid: 870 + components: + - pos: 31.5,-21.5 + parent: 2 + type: Transform + - uid: 871 + components: + - pos: 19.5,-26.5 + parent: 2 + type: Transform + - uid: 873 + components: + - pos: 21.5,-26.5 + parent: 2 + type: Transform + - uid: 874 + components: + - pos: 22.5,-26.5 + parent: 2 + type: Transform + - uid: 875 + components: + - pos: 23.5,-26.5 + parent: 2 + type: Transform + - uid: 881 + components: + - pos: 32.5,-16.5 + parent: 2 + type: Transform + - uid: 882 + components: + - pos: 32.5,-15.5 + parent: 2 + type: Transform + - uid: 887 + components: + - pos: 30.5,10.5 + parent: 2 + type: Transform + - uid: 907 + components: + - pos: 2.5,20.5 + parent: 2 + type: Transform + - uid: 912 + components: + - pos: -0.5,7.5 + parent: 2 + type: Transform + - uid: 913 + components: + - pos: -0.5,4.5 + parent: 2 + type: Transform + - uid: 915 + components: + - pos: -0.5,8.5 + parent: 2 + type: Transform + - uid: 937 + components: + - pos: 5.5,11.5 + parent: 2 + type: Transform + - uid: 967 + components: + - pos: 14.5,17.5 + parent: 2 + type: Transform + - uid: 968 + components: + - pos: -17.5,-9.5 + parent: 2 + type: Transform + - uid: 976 + components: + - pos: -17.5,-7.5 + parent: 2 + type: Transform + - uid: 978 + components: + - pos: -14.5,-3.5 + parent: 2 + type: Transform + - uid: 981 + components: + - pos: -36.5,-2.5 + parent: 2 + type: Transform + - uid: 984 + components: + - pos: -21.5,-7.5 + parent: 2 + type: Transform + - uid: 995 + components: + - pos: 32.5,1.5 + parent: 2 + type: Transform + - uid: 1003 + components: + - pos: -5.5,15.5 + parent: 2 + type: Transform + - uid: 1008 + components: + - pos: -24.5,11.5 + parent: 2 + type: Transform + - uid: 1014 + components: + - pos: -4.5,15.5 + parent: 2 + type: Transform + - uid: 1016 + components: + - pos: -2.5,15.5 + parent: 2 + type: Transform + - uid: 1017 + components: + - pos: 12.5,12.5 + parent: 2 + type: Transform + - uid: 1039 + components: + - pos: -1.5,19.5 + parent: 2 + type: Transform + - uid: 1042 + components: + - pos: -15.5,12.5 + parent: 2 + type: Transform + - uid: 1045 + components: + - pos: -10.5,16.5 + parent: 2 + type: Transform + - uid: 1055 + components: + - pos: -4.5,2.5 + parent: 2 + type: Transform + - uid: 1061 + components: + - pos: -1.5,16.5 + parent: 2 + type: Transform + - uid: 1066 + components: + - pos: -21.5,11.5 + parent: 2 + type: Transform + - uid: 1070 + components: + - pos: 1.5,15.5 + parent: 2 + type: Transform + - uid: 1077 + components: + - pos: -36.5,1.5 + parent: 2 + type: Transform + - uid: 1078 + components: + - pos: -36.5,2.5 + parent: 2 + type: Transform + - uid: 1079 + components: + - pos: -36.5,0.5 + parent: 2 + type: Transform + - uid: 1082 + components: + - pos: -36.5,-14.5 + parent: 2 + type: Transform + - uid: 1085 + components: + - pos: -22.5,11.5 + parent: 2 + type: Transform + - uid: 1091 + components: + - pos: -36.5,-0.5 + parent: 2 + type: Transform + - uid: 1093 + components: + - pos: -18.5,1.5 + parent: 2 + type: Transform + - uid: 1097 + components: + - pos: -19.5,1.5 + parent: 2 + type: Transform + - uid: 1109 + components: + - pos: -0.5,15.5 + parent: 2 + type: Transform + - uid: 1113 + components: + - pos: -17.5,-2.5 + parent: 2 + type: Transform + - uid: 1115 + components: + - pos: -20.5,10.5 + parent: 2 + type: Transform + - uid: 1117 + components: + - pos: -20.5,11.5 + parent: 2 + type: Transform + - uid: 1124 + components: + - pos: -17.5,-3.5 + parent: 2 + type: Transform + - uid: 1128 + components: + - pos: -17.5,-1.5 + parent: 2 + type: Transform + - uid: 1130 + components: + - pos: -17.5,0.5 + parent: 2 + type: Transform + - uid: 1136 + components: + - pos: -24.5,2.5 + parent: 2 + type: Transform + - uid: 1139 + components: + - pos: -34.5,-3.5 + parent: 2 + type: Transform + - uid: 1141 + components: + - pos: -35.5,-3.5 + parent: 2 + type: Transform + - uid: 1144 + components: + - pos: -27.5,-3.5 + parent: 2 + type: Transform + - uid: 1154 + components: + - pos: -35.5,-7.5 + parent: 2 + type: Transform + - uid: 1155 + components: + - pos: -39.5,-7.5 + parent: 2 + type: Transform + - uid: 1160 + components: + - pos: 13.5,9.5 + parent: 2 + type: Transform + - uid: 1173 + components: + - pos: -14.5,-23.5 + parent: 2 + type: Transform + - uid: 1174 + components: + - pos: -13.5,-23.5 + parent: 2 + type: Transform + - uid: 1175 + components: + - pos: -12.5,-23.5 + parent: 2 + type: Transform + - uid: 1176 + components: + - pos: -11.5,-21.5 + parent: 2 + type: Transform + - uid: 1177 + components: + - pos: -11.5,-23.5 + parent: 2 + type: Transform + - uid: 1178 + components: + - pos: -13.5,-25.5 + parent: 2 + type: Transform + - uid: 1179 + components: + - pos: -14.5,-25.5 + parent: 2 + type: Transform + - uid: 1181 + components: + - pos: -6.5,-29.5 + parent: 2 + type: Transform + - uid: 1182 + components: + - pos: -12.5,-25.5 + parent: 2 + type: Transform + - uid: 1187 + components: + - pos: -12.5,-28.5 + parent: 2 + type: Transform + - uid: 1188 + components: + - pos: -11.5,-28.5 + parent: 2 + type: Transform + - uid: 1195 + components: + - pos: -11.5,-29.5 + parent: 2 + type: Transform + - uid: 1198 + components: + - pos: -5.5,-29.5 + parent: 2 + type: Transform + - uid: 1199 + components: + - pos: -5.5,-30.5 + parent: 2 + type: Transform + - uid: 1200 + components: + - pos: -4.5,-30.5 + parent: 2 + type: Transform + - uid: 1201 + components: + - pos: -3.5,-30.5 + parent: 2 + type: Transform + - uid: 1202 + components: + - pos: -14.5,16.5 + parent: 2 + type: Transform + - uid: 1203 + components: + - pos: -1.5,-30.5 + parent: 2 + type: Transform + - uid: 1204 + components: + - pos: -0.5,-30.5 + parent: 2 + type: Transform + - uid: 1206 + components: + - pos: -16.5,-28.5 + parent: 2 + type: Transform + - uid: 1208 + components: + - pos: -10.5,-29.5 + parent: 2 + type: Transform + - uid: 1211 + components: + - pos: -15.5,16.5 + parent: 2 + type: Transform + - uid: 1214 + components: + - pos: -17.5,-28.5 + parent: 2 + type: Transform + - uid: 1218 + components: + - pos: -17.5,-19.5 + parent: 2 + type: Transform + - uid: 1219 + components: + - pos: -17.5,-20.5 + parent: 2 + type: Transform + - uid: 1220 + components: + - pos: -17.5,-21.5 + parent: 2 + type: Transform + - uid: 1222 + components: + - pos: -38.5,-13.5 + parent: 2 + type: Transform + - uid: 1248 + components: + - pos: -22.5,6.5 + parent: 2 + type: Transform + - uid: 1266 + components: + - pos: -20.5,6.5 + parent: 2 + type: Transform + - uid: 1268 + components: + - pos: -24.5,-7.5 + parent: 2 + type: Transform + - uid: 1269 + components: + - pos: -24.5,-11.5 + parent: 2 + type: Transform + - uid: 1270 + components: + - pos: -25.5,-11.5 + parent: 2 + type: Transform + - uid: 1273 + components: + - pos: -25.5,-14.5 + parent: 2 + type: Transform + - uid: 1274 + components: + - pos: -25.5,-15.5 + parent: 2 + type: Transform + - uid: 1276 + components: + - pos: -25.5,-8.5 + parent: 2 + type: Transform + - uid: 1277 + components: + - pos: -25.5,-7.5 + parent: 2 + type: Transform + - uid: 1278 + components: + - pos: -26.5,-8.5 + parent: 2 + type: Transform + - uid: 1279 + components: + - pos: -21.5,6.5 + parent: 2 + type: Transform + - uid: 1289 + components: + - pos: -38.5,-14.5 + parent: 2 + type: Transform + - uid: 1295 + components: + - pos: -25.5,-16.5 + parent: 2 + type: Transform + - uid: 1311 + components: + - pos: -33.5,-8.5 + parent: 2 + type: Transform + - uid: 1313 + components: + - pos: -34.5,-8.5 + parent: 2 + type: Transform + - uid: 1321 + components: + - pos: -34.5,-13.5 + parent: 2 + type: Transform + - uid: 1322 + components: + - pos: -34.5,-12.5 + parent: 2 + type: Transform + - uid: 1329 + components: + - pos: -35.5,-13.5 + parent: 2 + type: Transform + - uid: 1333 + components: + - pos: -43.5,-13.5 + parent: 2 + type: Transform + - uid: 1359 + components: + - pos: -17.5,-17.5 + parent: 2 + type: Transform + - uid: 1360 + components: + - pos: -17.5,-16.5 + parent: 2 + type: Transform + - uid: 1364 + components: + - pos: -10.5,13.5 + parent: 2 + type: Transform + - uid: 1403 + components: + - pos: -36.5,-21.5 + parent: 2 + type: Transform + - uid: 1406 + components: + - pos: -36.5,-24.5 + parent: 2 + type: Transform + - uid: 1407 + components: + - pos: -38.5,-15.5 + parent: 2 + type: Transform + - uid: 1408 + components: + - pos: -38.5,-16.5 + parent: 2 + type: Transform + - uid: 1409 + components: + - pos: -25.5,-20.5 + parent: 2 + type: Transform + - uid: 1410 + components: + - pos: -25.5,-17.5 + parent: 2 + type: Transform + - uid: 1411 + components: + - pos: -20.5,-21.5 + parent: 2 + type: Transform + - uid: 1412 + components: + - pos: -31.5,-24.5 + parent: 2 + type: Transform + - uid: 1413 + components: + - pos: -20.5,-25.5 + parent: 2 + type: Transform + - uid: 1417 + components: + - pos: -31.5,-21.5 + parent: 2 + type: Transform + - uid: 1419 + components: + - pos: -25.5,-21.5 + parent: 2 + type: Transform + - uid: 1422 + components: + - pos: -26.5,-21.5 + parent: 2 + type: Transform + - uid: 1423 + components: + - pos: -24.5,-21.5 + parent: 2 + type: Transform + - uid: 1424 + components: + - pos: -23.5,-21.5 + parent: 2 + type: Transform + - uid: 1425 + components: + - pos: -17.5,-22.5 + parent: 2 + type: Transform + - uid: 1426 + components: + - pos: -17.5,-23.5 + parent: 2 + type: Transform + - uid: 1427 + components: + - pos: -19.5,-21.5 + parent: 2 + type: Transform + - uid: 1428 + components: + - pos: -18.5,-21.5 + parent: 2 + type: Transform + - uid: 1430 + components: + - pos: -37.5,-13.5 + parent: 2 + type: Transform + - uid: 1438 + components: + - pos: -34.5,-7.5 + parent: 2 + type: Transform + - uid: 1439 + components: + - pos: -40.5,-18.5 + parent: 2 + type: Transform + - uid: 1440 + components: + - pos: -39.5,-18.5 + parent: 2 + type: Transform + - uid: 1444 + components: + - pos: -36.5,-13.5 + parent: 2 + type: Transform + - uid: 1445 + components: + - pos: -42.5,-13.5 + parent: 2 + type: Transform + - uid: 1446 + components: + - pos: -18.5,-25.5 + parent: 2 + type: Transform + - uid: 1448 + components: + - pos: -19.5,-25.5 + parent: 2 + type: Transform + - uid: 1451 + components: + - pos: -42.5,-7.5 + parent: 2 + type: Transform + - uid: 1452 + components: + - pos: -41.5,-7.5 + parent: 2 + type: Transform + - uid: 1464 + components: + - pos: -43.5,-7.5 + parent: 2 + type: Transform + - uid: 1465 + components: + - pos: -48.5,-14.5 + parent: 2 + type: Transform + - uid: 1467 + components: + - pos: -44.5,-7.5 + parent: 2 + type: Transform + - uid: 1469 + components: + - pos: -49.5,-7.5 + parent: 2 + type: Transform + - uid: 1484 + components: + - pos: -27.5,-2.5 + parent: 2 + type: Transform + - uid: 1492 + components: + - rot: 1.5707963267948966 rad + pos: -34.5,-32.5 + parent: 2 + type: Transform + - uid: 1511 + components: + - pos: -25.5,-28.5 + parent: 2 + type: Transform + - uid: 1512 + components: + - pos: -26.5,-16.5 + parent: 2 + type: Transform + - uid: 1514 + components: + - pos: -36.5,-23.5 + parent: 2 + type: Transform + - uid: 1515 + components: + - pos: -17.5,-25.5 + parent: 2 + type: Transform + - uid: 1516 + components: + - pos: -17.5,-24.5 + parent: 2 + type: Transform + - uid: 1520 + components: + - pos: 10.5,28.5 + parent: 2 + type: Transform + - uid: 1522 + components: + - pos: -21.5,-21.5 + parent: 2 + type: Transform + - uid: 1530 + components: + - pos: -27.5,1.5 + parent: 2 + type: Transform + - uid: 1531 + components: + - pos: -27.5,2.5 + parent: 2 + type: Transform + - uid: 1536 + components: + - pos: -27.5,-1.5 + parent: 2 + type: Transform + - uid: 1547 + components: + - pos: 26.5,-12.5 + parent: 2 + type: Transform + - uid: 1624 + components: + - pos: 13.5,11.5 + parent: 2 + type: Transform + - uid: 1625 + components: + - pos: 13.5,12.5 + parent: 2 + type: Transform + - uid: 1628 + components: + - pos: 10.5,27.5 + parent: 2 + type: Transform + - uid: 1730 + components: + - pos: 31.5,-12.5 + parent: 2 + type: Transform + - uid: 1764 + components: + - pos: 12.5,17.5 + parent: 2 + type: Transform + - uid: 1773 + components: + - pos: 38.5,-16.5 + parent: 2 + type: Transform + - uid: 1788 + components: + - pos: 10.5,23.5 + parent: 2 + type: Transform + - uid: 1789 + components: + - pos: 10.5,22.5 + parent: 2 + type: Transform + - uid: 1892 + components: + - pos: -40.5,-3.5 + parent: 2 + type: Transform + - uid: 1893 + components: + - pos: -41.5,-3.5 + parent: 2 + type: Transform + - uid: 1894 + components: + - pos: -41.5,-2.5 + parent: 2 + type: Transform + - uid: 1895 + components: + - pos: -41.5,-1.5 + parent: 2 + type: Transform + - uid: 1896 + components: + - pos: -45.5,0.5 + parent: 2 + type: Transform + - uid: 1897 + components: + - pos: -41.5,0.5 + parent: 2 + type: Transform + - uid: 1898 + components: + - pos: -40.5,0.5 + parent: 2 + type: Transform + - uid: 1904 + components: + - pos: -39.5,1.5 + parent: 2 + type: Transform + - uid: 1906 + components: + - pos: -37.5,1.5 + parent: 2 + type: Transform + - uid: 1910 + components: + - pos: -40.5,1.5 + parent: 2 + type: Transform + - uid: 1928 + components: + - pos: -49.5,-0.5 + parent: 2 + type: Transform + - uid: 1946 + components: + - pos: 31.5,10.5 + parent: 2 + type: Transform + - uid: 2186 + components: + - pos: 37.5,-16.5 + parent: 2 + type: Transform + - uid: 2188 + components: + - pos: 38.5,-11.5 + parent: 2 + type: Transform + - uid: 2195 + components: + - pos: 35.5,-16.5 + parent: 2 + type: Transform + - uid: 2196 + components: + - pos: -23.5,-28.5 + parent: 2 + type: Transform + - uid: 2197 + components: + - pos: 33.5,-16.5 + parent: 2 + type: Transform + - uid: 2208 + components: + - pos: 38.5,-10.5 + parent: 2 + type: Transform + - uid: 2209 + components: + - pos: 38.5,-9.5 + parent: 2 + type: Transform + - uid: 2210 + components: + - pos: 38.5,-8.5 + parent: 2 + type: Transform + - uid: 2218 + components: + - pos: 36.5,-17.5 + parent: 2 + type: Transform + - uid: 2244 + components: + - pos: -22.5,-28.5 + parent: 2 + type: Transform + - uid: 2292 + components: + - pos: 46.5,-7.5 + parent: 2 + type: Transform + - uid: 2294 + components: + - pos: 47.5,-7.5 + parent: 2 + type: Transform + - uid: 2324 + components: + - pos: 47.5,-6.5 + parent: 2 + type: Transform + - uid: 2325 + components: + - pos: 47.5,-4.5 + parent: 2 + type: Transform + - uid: 2338 + components: + - pos: 47.5,-8.5 + parent: 2 + type: Transform + - uid: 2352 + components: + - pos: -45.5,-3.5 + parent: 2 + type: Transform + - uid: 2410 + components: + - pos: 32.5,-30.5 + parent: 2 + type: Transform + - uid: 2412 + components: + - pos: 26.5,-25.5 + parent: 2 + type: Transform + - uid: 2417 + components: + - pos: 31.5,-24.5 + parent: 2 + type: Transform + - uid: 2418 + components: + - pos: 30.5,-24.5 + parent: 2 + type: Transform + - uid: 2421 + components: + - pos: 26.5,-24.5 + parent: 2 + type: Transform + - uid: 2422 + components: + - pos: 32.5,-25.5 + parent: 2 + type: Transform + - uid: 2461 + components: + - pos: 26.5,-29.5 + parent: 2 + type: Transform + - uid: 2463 + components: + - pos: 20.5,-26.5 + parent: 2 + type: Transform + - uid: 2466 + components: + - pos: 32.5,-28.5 + parent: 2 + type: Transform + - uid: 2467 + components: + - pos: 35.5,-25.5 + parent: 2 + type: Transform + - uid: 2472 + components: + - pos: 32.5,-29.5 + parent: 2 + type: Transform + - uid: 2473 + components: + - pos: 27.5,-29.5 + parent: 2 + type: Transform + - uid: 2475 + components: + - pos: 28.5,-29.5 + parent: 2 + type: Transform + - uid: 2476 + components: + - pos: 31.5,-29.5 + parent: 2 + type: Transform + - uid: 2477 + components: + - pos: 30.5,-29.5 + parent: 2 + type: Transform + - uid: 2480 + components: + - pos: 26.5,-30.5 + parent: 2 + type: Transform + - uid: 2481 + components: + - pos: 35.5,-30.5 + parent: 2 + type: Transform + - uid: 2485 + components: + - pos: 22.5,-27.5 + parent: 2 + type: Transform + - uid: 2488 + components: + - pos: -19.5,-28.5 + parent: 2 + type: Transform + - uid: 2538 + components: + - pos: -26.5,-22.5 + parent: 2 + type: Transform + - uid: 2540 + components: + - pos: -21.5,-28.5 + parent: 2 + type: Transform + - uid: 2541 + components: + - pos: -21.5,-27.5 + parent: 2 + type: Transform + - uid: 2542 + components: + - pos: -21.5,-26.5 + parent: 2 + type: Transform + - uid: 2544 + components: + - pos: -20.5,-26.5 + parent: 2 + type: Transform + - uid: 2571 + components: + - pos: -19.5,-29.5 + parent: 2 + type: Transform + - uid: 2578 + components: + - pos: -15.5,-26.5 + parent: 2 + type: Transform + - uid: 2579 + components: + - pos: -15.5,-25.5 + parent: 2 + type: Transform + - uid: 2581 + components: + - pos: -15.5,-23.5 + parent: 2 + type: Transform + - uid: 2583 + components: + - pos: -15.5,-21.5 + parent: 2 + type: Transform + - uid: 2584 + components: + - pos: -15.5,-20.5 + parent: 2 + type: Transform + - uid: 2592 + components: + - pos: -11.5,-26.5 + parent: 2 + type: Transform + - uid: 2594 + components: + - pos: 9.5,-28.5 + parent: 2 + type: Transform + - uid: 2595 + components: + - pos: 10.5,-28.5 + parent: 2 + type: Transform + - uid: 2599 + components: + - pos: 14.5,-28.5 + parent: 2 + type: Transform + - uid: 2600 + components: + - pos: 15.5,-28.5 + parent: 2 + type: Transform + - uid: 2601 + components: + - pos: 9.5,-29.5 + parent: 2 + type: Transform + - uid: 2669 + components: + - pos: 12.5,-27.5 + parent: 2 + type: Transform + - uid: 2673 + components: + - pos: 11.5,-27.5 + parent: 2 + type: Transform + - uid: 2676 + components: + - pos: 10.5,-27.5 + parent: 2 + type: Transform + - uid: 2690 + components: + - pos: 13.5,-27.5 + parent: 2 + type: Transform + - uid: 2708 + components: + - pos: 15.5,-29.5 + parent: 2 + type: Transform + - uid: 2769 + components: + - pos: -44.5,-3.5 + parent: 2 + type: Transform + - uid: 2770 + components: + - pos: -44.5,-2.5 + parent: 2 + type: Transform + - uid: 2771 + components: + - pos: -44.5,-0.5 + parent: 2 + type: Transform + - uid: 2772 + components: + - pos: -44.5,0.5 + parent: 2 + type: Transform + - uid: 3206 + components: + - pos: -45.5,-21.5 + parent: 2 + type: Transform + - uid: 3210 + components: + - pos: -39.5,-29.5 + parent: 2 + type: Transform + - uid: 3265 + components: + - pos: -38.5,1.5 + parent: 2 + type: Transform + - uid: 3278 + components: + - pos: -44.5,-1.5 + parent: 2 + type: Transform + - uid: 3279 + components: + - pos: -46.5,0.5 + parent: 2 + type: Transform + - uid: 3287 + components: + - pos: -43.5,-14.5 + parent: 2 + type: Transform + - uid: 3288 + components: + - pos: -43.5,-15.5 + parent: 2 + type: Transform + - uid: 3290 + components: + - pos: -48.5,-15.5 + parent: 2 + type: Transform + - uid: 3291 + components: + - pos: -47.5,-15.5 + parent: 2 + type: Transform + - uid: 3292 + components: + - pos: -44.5,-15.5 + parent: 2 + type: Transform + - uid: 3377 + components: + - pos: -48.5,0.5 + parent: 2 + type: Transform + - uid: 3378 + components: + - pos: -49.5,0.5 + parent: 2 + type: Transform + - uid: 3385 + components: + - pos: 2.5,18.5 + parent: 2 + type: Transform + - uid: 3422 + components: + - pos: -43.5,-3.5 + parent: 2 + type: Transform + - uid: 3423 + components: + - pos: -49.5,-14.5 + parent: 2 + type: Transform + - uid: 3425 + components: + - pos: -49.5,-3.5 + parent: 2 + type: Transform + - uid: 3426 + components: + - pos: -49.5,-2.5 + parent: 2 + type: Transform + - uid: 3427 + components: + - pos: -45.5,-15.5 + parent: 2 + type: Transform + - uid: 3429 + components: + - pos: -18.5,-28.5 + parent: 2 + type: Transform + - uid: 3431 + components: + - pos: -23.5,-3.5 + parent: 2 + type: Transform + - uid: 3433 + components: + - pos: -24.5,-2.5 + parent: 2 + type: Transform + - uid: 3449 + components: + - pos: -43.5,-18.5 + parent: 2 + type: Transform + - uid: 3450 + components: + - pos: -42.5,-18.5 + parent: 2 + type: Transform + - uid: 3451 + components: + - pos: -41.5,-18.5 + parent: 2 + type: Transform + - uid: 3470 + components: + - pos: -39.5,-16.5 + parent: 2 + type: Transform + - uid: 3471 + components: + - pos: -39.5,-17.5 + parent: 2 + type: Transform + - uid: 3475 + components: + - pos: -5.5,-14.5 + parent: 2 + type: Transform + - uid: 3484 + components: + - pos: -45.5,-1.5 + parent: 2 + type: Transform + - uid: 3485 + components: + - pos: -50.5,-2.5 + parent: 2 + type: Transform + - uid: 3486 + components: + - pos: -49.5,-1.5 + parent: 2 + type: Transform + - uid: 3487 + components: + - pos: -46.5,-3.5 + parent: 2 + type: Transform + - uid: 3494 + components: + - pos: -48.5,-3.5 + parent: 2 + type: Transform + - uid: 3644 + components: + - pos: -18.5,-3.5 + parent: 2 + type: Transform + - uid: 3677 + components: + - pos: -24.5,-1.5 + parent: 2 + type: Transform + - uid: 3680 + components: + - pos: 14.5,-27.5 + parent: 2 + type: Transform + - uid: 3700 + components: + - pos: -43.5,-17.5 + parent: 2 + type: Transform + - uid: 3720 + components: + - pos: 26.5,-26.5 + parent: 2 + type: Transform + - uid: 3784 + components: + - pos: -31.5,-32.5 + parent: 2 + type: Transform + - uid: 3794 + components: + - rot: 1.5707963267948966 rad + pos: -32.5,-32.5 + parent: 2 + type: Transform + - uid: 3803 + components: + - pos: 11.5,22.5 + parent: 2 + type: Transform + - uid: 3877 + components: + - pos: -46.5,-21.5 + parent: 2 + type: Transform + - uid: 4180 + components: + - pos: 1.5,-30.5 + parent: 2 + type: Transform + - uid: 4183 + components: + - pos: 0.5,-30.5 + parent: 2 + type: Transform + - uid: 4184 + components: + - pos: 3.5,-30.5 + parent: 2 + type: Transform + - uid: 4190 + components: + - pos: -46.5,-18.5 + parent: 2 + type: Transform + - uid: 4254 + components: + - pos: -46.5,-19.5 + parent: 2 + type: Transform + - uid: 4632 + components: + - pos: 48.5,1.5 + parent: 2 + type: Transform + - uid: 4636 + components: + - pos: 48.5,-1.5 + parent: 2 + type: Transform + - uid: 6889 + components: + - pos: -48.5,-18.5 + parent: 2 + type: Transform + - uid: 6890 + components: + - pos: -47.5,-18.5 + parent: 2 + type: Transform + - uid: 8027 + components: + - pos: -43.5,-10.5 + parent: 2 + type: Transform + - uid: 8699 + components: + - pos: -48.5,-17.5 + parent: 2 + type: Transform + - uid: 8833 + components: + - pos: 32.5,-24.5 + parent: 2 + type: Transform + - uid: 9028 + components: + - pos: -26.5,-31.5 + parent: 2 + type: Transform + - uid: 9043 + components: + - pos: -27.5,-31.5 + parent: 2 + type: Transform + - uid: 9045 + components: + - pos: -28.5,-31.5 + parent: 2 + type: Transform + - uid: 9102 + components: + - pos: -29.5,-31.5 + parent: 2 + type: Transform + - uid: 9103 + components: + - pos: -30.5,-31.5 + parent: 2 + type: Transform + - uid: 9198 + components: + - pos: -31.5,-31.5 + parent: 2 + type: Transform + - uid: 9745 + components: + - pos: -34.5,-31.5 + parent: 2 + type: Transform + - uid: 9746 + components: + - pos: -36.5,-31.5 + parent: 2 + type: Transform + - uid: 9747 + components: + - pos: -37.5,-31.5 + parent: 2 + type: Transform + - uid: 9748 + components: + - pos: -38.5,-31.5 + parent: 2 + type: Transform + - uid: 10113 + components: + - pos: -38.5,-30.5 + parent: 2 + type: Transform + - uid: 10177 + components: + - pos: -46.5,-22.5 + parent: 2 + type: Transform + - uid: 10302 + components: + - pos: -39.5,-30.5 + parent: 2 + type: Transform + - uid: 10318 + components: + - pos: -35.5,-31.5 + parent: 2 + type: Transform + - uid: 10944 + components: + - pos: -25.5,-31.5 + parent: 2 + type: Transform +- proto: WallSolidDiagonal + entities: + - uid: 350 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,1.5 + parent: 2 + type: Transform + - uid: 1035 + components: + - rot: 3.141592653589793 rad + pos: 6.5,11.5 + parent: 2 + type: Transform + - uid: 1067 + components: + - pos: -16.5,16.5 + parent: 2 + type: Transform + - uid: 1151 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-25.5 + parent: 2 + type: Transform + - uid: 1933 + components: + - rot: -1.5707963267948966 rad + pos: 51.5,2.5 + parent: 2 + type: Transform + - uid: 2431 + components: + - rot: 3.141592653589793 rad + pos: 32.5,-21.5 + parent: 2 + type: Transform + - uid: 3086 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 2 + type: Transform + - uid: 3248 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-7.5 + parent: 2 + type: Transform + - uid: 3424 + components: + - pos: -2.5,-3.5 + parent: 2 + type: Transform + - uid: 3474 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,-3.5 + parent: 2 + type: Transform + - uid: 3641 + components: + - rot: 1.5707963267948966 rad + pos: -24.5,-3.5 + parent: 2 + type: Transform + - uid: 4635 + components: + - rot: 3.141592653589793 rad + pos: 51.5,-13.5 + parent: 2 + type: Transform +- proto: WardrobeEngineeringFilled + entities: + - uid: 9692 + components: + - pos: 36.5,20.5 + parent: 2 + type: Transform +- proto: WardrobeFormal + entities: + - uid: 842 + components: + - pos: 6.5,-25.5 + parent: 2 + type: Transform + - uid: 8978 + components: + - pos: -12.5,-17.5 + parent: 2 + type: Transform +- proto: WardrobePrisonFilled + entities: + - uid: 2748 + components: + - pos: -37.5,21.5 + parent: 2 + type: Transform + - uid: 2754 + components: + - pos: -31.5,21.5 + parent: 2 + type: Transform + - uid: 2768 + components: + - pos: -28.5,21.5 + parent: 2 + type: Transform + - uid: 2774 + components: + - pos: -34.5,21.5 + parent: 2 + type: Transform +- proto: WarningN2 + entities: + - uid: 725 + components: + - pos: 20.5,7.5 + parent: 2 + type: Transform +- proto: WarningO2 + entities: + - uid: 724 + components: + - pos: 22.5,7.5 + parent: 2 + type: Transform +- proto: WarningWaste + entities: + - uid: 3785 + components: + - pos: 26.5,7.5 + parent: 2 + type: Transform +- proto: WarpPoint + entities: + - uid: 10360 + components: + - pos: -51.5,-10.5 + parent: 2 + type: Transform + - location: evac, primary + type: WarpPoint + - color: '#FFFFFFFF' + text: evac, primary + type: NavMapBeacon + - uid: 10362 + components: + - pos: -8.5,-32.5 + parent: 2 + type: Transform + - location: evac, secondary + type: WarpPoint + - color: '#FFFFFFFF' + text: evac, secondary + type: NavMapBeacon +- proto: WarpPointBeaconCargo + entities: + - uid: 10366 + components: + - pos: 0.5,6.5 + parent: 2 + type: Transform + - location: logistics + type: WarpPoint +- proto: WarpPointBeaconCommand + entities: + - uid: 10370 + components: + - pos: 44.5,-5.5 + parent: 2 + type: Transform +- proto: WarpPointBeaconEngineering + entities: + - uid: 10368 + components: + - pos: 24.5,1.5 + parent: 2 + type: Transform +- proto: WarpPointBeaconMedical + entities: + - uid: 10359 + components: + - pos: 23.5,-12.5 + parent: 2 + type: Transform +- proto: WarpPointBeaconNeutral + entities: + - uid: 10378 + components: + - pos: -8.5,17.5 + parent: 2 + type: Transform + - color: '#FFFFFFFF' + text: arrivals + type: NavMapBeacon + - location: arrivals + type: WarpPoint +- proto: WarpPointBeaconScience + entities: + - uid: 10374 + components: + - pos: -30.5,-12.5 + parent: 2 + type: Transform + - location: epistemics + type: WarpPoint +- proto: WarpPointBeaconSecurity + entities: + - uid: 10375 + components: + - pos: -22.5,3.5 + parent: 2 + type: Transform +- proto: WarpPointBeaconService + entities: + - uid: 10361 + components: + - pos: 5.5,-18.5 + parent: 2 + type: Transform +- proto: WarpPointBombing + entities: + - uid: 10363 + components: + - pos: -8.5,-24.5 + parent: 2 + type: Transform + - location: dorms + type: WarpPoint + - uid: 10364 + components: + - pos: -13.5,14.5 + parent: 2 + type: Transform + - location: laundry + type: WarpPoint + - uid: 10365 + components: + - pos: 9.5,10.5 + parent: 2 + type: Transform + - location: junkyard + type: WarpPoint + - uid: 10367 + components: + - pos: 5.5,27.5 + parent: 2 + type: Transform + - location: logistics dock + type: WarpPoint + - uid: 10369 + components: + - pos: 38.5,6.5 + parent: 2 + type: Transform + - location: power room + type: WarpPoint + - uid: 10371 + components: + - pos: 29.5,-27.5 + parent: 2 + type: Transform + - location: cloning + type: WarpPoint + - uid: 10372 + components: + - pos: 12.5,-31.5 + parent: 2 + type: Transform + - location: disposals + type: WarpPoint + - uid: 10373 + components: + - pos: -15.5,-30.5 + parent: 2 + type: Transform + - location: EVA room + type: WarpPoint + - uid: 10376 + components: + - pos: -42.5,12.5 + parent: 2 + type: Transform + - location: armory + type: WarpPoint + - uid: 10377 + components: + - pos: -23.5,17.5 + parent: 2 + type: Transform + - location: security medbay + type: WarpPoint + - uid: 10379 + components: + - pos: 14.5,27.5 + parent: 2 + type: Transform + - location: salvage + type: WarpPoint + - uid: 10380 + components: + - pos: 24.5,14.5 + parent: 2 + type: Transform + - location: TEG room + type: WarpPoint + - uid: 10381 + components: + - pos: -31.5,-0.5 + parent: 2 + type: Transform + - location: courtroom + type: WarpPoint + - uid: 10382 + components: + - pos: -22.5,-24.5 + parent: 2 + type: Transform + - location: robotics + type: WarpPoint + - uid: 10383 + components: + - pos: -40.5,-10.5 + parent: 2 + type: Transform + - location: chapel + type: WarpPoint +- proto: WashingMachineBroken + entities: + - uid: 3764 + components: + - pos: 12.5,11.5 + parent: 2 + type: Transform + - uid: 10940 + components: + - pos: -35.5,-34.5 + parent: 2 + type: Transform +- proto: WashingMachineFilledClothes + entities: + - uid: 1013 + components: + - pos: -11.5,13.5 + parent: 2 + type: Transform + - uid: 1019 + components: + - pos: -13.5,13.5 + parent: 2 + type: Transform + - uid: 1024 + components: + - pos: -12.5,13.5 + parent: 2 + type: Transform +- proto: WaterCooler + entities: + - uid: 2213 + components: + - pos: 33.5,-15.5 + parent: 2 + type: Transform + - uid: 2668 + components: + - pos: -23.5,7.5 + parent: 2 + type: Transform +- proto: WaterTankFull + entities: + - uid: 660 + components: + - pos: 14.5,-8.5 + parent: 2 + type: Transform + - uid: 1383 + components: + - pos: -10.5,-12.5 + parent: 2 + type: Transform + - uid: 10203 + components: + - pos: -11.5,3.5 + parent: 2 + type: Transform + - uid: 10206 + components: + - pos: 41.5,-29.5 + parent: 2 + type: Transform +- proto: WaterTankHighCapacity + entities: + - uid: 559 + components: + - pos: 15.5,-18.5 + parent: 2 + type: Transform +- proto: WeaponCapacitorRecharger + entities: + - uid: 2856 + components: + - pos: -45.5,12.5 + parent: 2 + type: Transform + - uid: 10804 + components: + - pos: -27.5,10.5 + parent: 2 + type: Transform +- proto: WeaponDisabler + entities: + - uid: 3939 + components: + - pos: -29.494064,8.664546 + parent: 2 + type: Transform + - uid: 3940 + components: + - pos: -29.369064,8.487339 + parent: 2 + type: Transform +- proto: WeaponDisablerPractice + entities: + - uid: 3349 + components: + - pos: -49.55981,11.439514 + parent: 2 + type: Transform +- proto: WeaponLaserCarbine + entities: + - uid: 3346 + components: + - pos: -41.486893,11.366548 + parent: 2 + type: Transform + - uid: 3347 + components: + - pos: -41.413975,11.72096 + parent: 2 + type: Transform +- proto: WeaponLaserCarbinePractice + entities: + - uid: 3348 + components: + - pos: -49.455643,11.741809 + parent: 2 + type: Transform +- proto: WeaponRevolverK38Master + entities: + - uid: 10799 + components: + - pos: -37.48648,4.3924932 + parent: 2 + type: Transform +- proto: WeaponShotgunKammererNonLethal + entities: + - uid: 3447 + components: + - pos: -27.546146,7.570035 + parent: 2 + type: Transform + - uid: 3448 + components: + - pos: -27.556564,7.2677417 + parent: 2 + type: Transform +- proto: WeldingFuelTankFull + entities: + - uid: 10202 + components: + - pos: -15.5,10.5 + parent: 2 + type: Transform + - uid: 10204 + components: + - pos: 15.5,7.5 + parent: 2 + type: Transform + - uid: 10205 + components: + - pos: 26.5,-1.5 + parent: 2 + type: Transform + - uid: 10207 + components: + - pos: 18.5,-27.5 + parent: 2 + type: Transform + - uid: 10213 + components: + - pos: -52.5,18.5 + parent: 2 + type: Transform + - uid: 10937 + components: + - pos: -32.5,-34.5 + parent: 2 + type: Transform +- proto: WetFloorSign + entities: + - uid: 665 + components: + - pos: 14.43368,-9.239837 + parent: 2 + type: Transform + - uid: 666 + components: + - pos: 14.65243,-9.208566 + parent: 2 + type: Transform + - uid: 1376 + components: + - pos: -13.176681,-2.2839673 + parent: 2 + type: Transform + - uid: 1378 + components: + - pos: -13.582931,-2.26312 + parent: 2 + type: Transform + - uid: 10066 + components: + - pos: -38.207294,18.445639 + parent: 2 + type: Transform +- proto: WindoorCargoLocked + entities: + - uid: 448 + components: + - rot: 3.141592653589793 rad + pos: -2.5,3.5 + parent: 2 + type: Transform + - uid: 449 + components: + - rot: 3.141592653589793 rad + pos: -3.5,3.5 + parent: 2 + type: Transform +- proto: WindoorHydroponicsLocked + entities: + - uid: 522 + components: + - rot: -1.5707963267948966 rad + pos: 18.5,-18.5 + parent: 2 + type: Transform + - uid: 523 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-18.5 + parent: 2 + type: Transform + - uid: 524 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,-17.5 + parent: 2 + type: Transform +- proto: WindoorKitchenLocked + entities: + - uid: 294 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-17.5 + parent: 2 + type: Transform + - uid: 297 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-16.5 + parent: 2 + type: Transform +- proto: WindoorMailLocked + entities: + - uid: 1030 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,18.5 + parent: 2 + type: Transform +- proto: WindoorSecure + entities: + - uid: 3341 + components: + - rot: 3.141592653589793 rad + pos: -49.5,6.5 + parent: 2 + type: Transform +- proto: WindoorSecureArmoryLocked + entities: + - uid: 1404 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,12.5 + parent: 2 + type: Transform + - uid: 1489 + components: + - rot: 1.5707963267948966 rad + pos: -45.5,11.5 + parent: 2 + type: Transform + - uid: 2758 + components: + - rot: -1.5707963267948966 rad + pos: -35.5,12.5 + parent: 2 + type: Transform + - uid: 2840 + components: + - pos: -42.5,6.5 + parent: 2 + type: Transform +- proto: WindoorSecureBrigLocked + entities: + - uid: 1911 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-0.5 + parent: 2 + type: Transform + - uid: 1915 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,0.5 + parent: 2 + type: Transform +- proto: WindoorSecureCargoLocked + entities: + - uid: 1879 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,24.5 + parent: 2 + type: Transform +- proto: WindoorSecureChemistryLocked + entities: + - uid: 277 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-18.5 + parent: 2 + type: Transform + - uid: 389 + components: + - rot: 3.141592653589793 rad + pos: 20.5,-21.5 + parent: 2 + type: Transform + - uid: 472 + components: + - pos: 21.5,-14.5 + parent: 2 + type: Transform + - uid: 488 + components: + - pos: 20.5,-14.5 + parent: 2 + type: Transform + - uid: 497 + components: + - rot: -1.5707963267948966 rad + pos: 23.5,-19.5 + parent: 2 + type: Transform + - uid: 519 + components: + - rot: 1.5707963267948966 rad + pos: 18.5,-18.5 + parent: 2 + type: Transform + - uid: 627 + components: + - rot: 3.141592653589793 rad + pos: 21.5,-21.5 + parent: 2 + type: Transform +- proto: WindoorSecureEngineeringLocked + entities: + - uid: 767 + components: + - rot: 1.5707963267948966 rad + pos: 23.5,-1.5 + parent: 2 + type: Transform +- proto: WindoorSecureHeadOfPersonnelLocked + entities: + - uid: 4670 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,1.5 + parent: 2 + type: Transform +- proto: WindoorSecureMedicalLocked + entities: + - uid: 2692 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,19.5 + parent: 2 + type: Transform +- proto: WindoorSecureSalvageLocked + entities: + - uid: 1874 + components: + - rot: 1.5707963267948966 rad + pos: 10.5,24.5 + parent: 2 + type: Transform +- proto: WindoorSecureScienceLocked + entities: + - uid: 1223 + components: + - pos: -29.5,-16.5 + parent: 2 + type: Transform +- proto: WindoorSecureSecurityLocked + entities: + - uid: 356 + components: + - rot: 3.141592653589793 rad + pos: -22.5,1.5 + parent: 2 + type: Transform + - uid: 1080 + components: + - rot: 3.141592653589793 rad + pos: -21.5,1.5 + parent: 2 + type: Transform + - uid: 2658 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,9.5 + parent: 2 + type: Transform +- proto: Window + entities: + - uid: 37 + components: + - pos: 9.5,-9.5 + parent: 2 + type: Transform + - uid: 93 + components: + - pos: 0.5,-18.5 + parent: 2 + type: Transform + - uid: 102 + components: + - pos: 9.5,-5.5 + parent: 2 + type: Transform + - uid: 104 + components: + - pos: -9.5,-10.5 + parent: 2 + type: Transform + - uid: 116 + components: + - pos: -9.5,-9.5 + parent: 2 + type: Transform + - uid: 124 + components: + - pos: -9.5,0.5 + parent: 2 + type: Transform + - uid: 127 + components: + - pos: -6.5,4.5 + parent: 2 + type: Transform + - uid: 173 + components: + - pos: -9.5,-8.5 + parent: 2 + type: Transform + - uid: 232 + components: + - pos: 8.5,-3.5 + parent: 2 + type: Transform + - uid: 234 + components: + - pos: 6.5,-3.5 + parent: 2 + type: Transform + - uid: 235 + components: + - pos: -1.5,3.5 + parent: 2 + type: Transform + - uid: 308 + components: + - pos: -1.5,8.5 + parent: 2 + type: Transform + - uid: 315 + components: + - pos: 8.5,-13.5 + parent: 2 + type: Transform + - uid: 382 + components: + - pos: 12.5,-7.5 + parent: 2 + type: Transform + - uid: 423 + components: + - pos: 20.5,-2.5 + parent: 2 + type: Transform + - uid: 424 + components: + - pos: 19.5,-2.5 + parent: 2 + type: Transform + - uid: 435 + components: + - pos: -2.5,8.5 + parent: 2 + type: Transform + - uid: 498 + components: + - pos: 28.5,-12.5 + parent: 2 + type: Transform + - uid: 512 + components: + - pos: 26.5,-17.5 + parent: 2 + type: Transform + - uid: 556 + components: + - pos: -1.5,17.5 + parent: 2 + type: Transform + - uid: 580 + components: + - pos: 23.5,-8.5 + parent: 2 + type: Transform + - uid: 581 + components: + - pos: 22.5,-8.5 + parent: 2 + type: Transform + - uid: 582 + components: + - pos: 21.5,-8.5 + parent: 2 + type: Transform + - uid: 585 + components: + - pos: 9.5,-8.5 + parent: 2 + type: Transform + - uid: 586 + components: + - pos: 9.5,-10.5 + parent: 2 + type: Transform + - uid: 598 + components: + - pos: -9.5,-19.5 + parent: 2 + type: Transform + - uid: 614 + components: + - pos: 4.5,-20.5 + parent: 2 + type: Transform + - uid: 615 + components: + - pos: 10.5,-16.5 + parent: 2 + type: Transform + - uid: 689 + components: + - pos: -51.5,-11.5 + parent: 2 + type: Transform + - uid: 764 + components: + - pos: 19.5,7.5 + parent: 2 + type: Transform + - uid: 820 + components: + - pos: 2.5,-13.5 + parent: 2 + type: Transform + - uid: 906 + components: + - pos: 6.5,32.5 + parent: 2 + type: Transform + - uid: 914 + components: + - pos: -0.5,5.5 + parent: 2 + type: Transform + - uid: 924 + components: + - pos: -0.5,6.5 + parent: 2 + type: Transform + - uid: 970 + components: + - pos: -24.5,-15.5 + parent: 2 + type: Transform + - uid: 983 + components: + - pos: -20.5,8.5 + parent: 2 + type: Transform + - uid: 992 + components: + - pos: -8.5,-3.5 + parent: 2 + type: Transform + - uid: 1001 + components: + - pos: -13.5,-7.5 + parent: 2 + type: Transform + - uid: 1015 + components: + - pos: -5.5,12.5 + parent: 2 + type: Transform + - uid: 1021 + components: + - pos: -12.5,16.5 + parent: 2 + type: Transform + - uid: 1051 + components: + - pos: -5.5,11.5 + parent: 2 + type: Transform + - uid: 1062 + components: + - pos: -11.5,16.5 + parent: 2 + type: Transform + - uid: 1133 + components: + - pos: -23.5,1.5 + parent: 2 + type: Transform + - uid: 1135 + components: + - pos: -20.5,1.5 + parent: 2 + type: Transform + - uid: 1241 + components: + - pos: -8.5,-29.5 + parent: 2 + type: Transform + - uid: 1251 + components: + - pos: -6.5,15.5 + parent: 2 + type: Transform + - uid: 1252 + components: + - pos: -8.5,15.5 + parent: 2 + type: Transform + - uid: 1254 + components: + - pos: 2.5,17.5 + parent: 2 + type: Transform + - uid: 1286 + components: + - pos: -28.5,-8.5 + parent: 2 + type: Transform + - uid: 1287 + components: + - pos: -29.5,-8.5 + parent: 2 + type: Transform + - uid: 1297 + components: + - pos: -30.5,-16.5 + parent: 2 + type: Transform + - uid: 1305 + components: + - pos: -31.5,-8.5 + parent: 2 + type: Transform + - uid: 1310 + components: + - pos: -30.5,-8.5 + parent: 2 + type: Transform + - uid: 1338 + components: + - pos: -10.5,-6.5 + parent: 2 + type: Transform + - uid: 1339 + components: + - pos: -10.5,-4.5 + parent: 2 + type: Transform + - uid: 1351 + components: + - pos: -6.5,-20.5 + parent: 2 + type: Transform + - uid: 1468 + components: + - pos: -49.5,-9.5 + parent: 2 + type: Transform + - uid: 1471 + components: + - pos: -48.5,-7.5 + parent: 2 + type: Transform + - uid: 1473 + components: + - pos: -49.5,-10.5 + parent: 2 + type: Transform + - uid: 1476 + components: + - pos: -47.5,-7.5 + parent: 2 + type: Transform + - uid: 1478 + components: + - pos: -49.5,-8.5 + parent: 2 + type: Transform + - uid: 1551 + components: + - pos: -8.5,-20.5 + parent: 2 + type: Transform + - uid: 1605 + components: + - pos: -34.5,-11.5 + parent: 2 + type: Transform + - uid: 1606 + components: + - pos: -34.5,-9.5 + parent: 2 + type: Transform + - uid: 1622 + components: + - pos: 5.5,6.5 + parent: 2 + type: Transform + - uid: 1627 + components: + - pos: 5.5,5.5 + parent: 2 + type: Transform + - uid: 1632 + components: + - pos: 26.5,-11.5 + parent: 2 + type: Transform + - uid: 1634 + components: + - pos: 29.5,-12.5 + parent: 2 + type: Transform + - uid: 1762 + components: + - pos: -37.5,-3.5 + parent: 2 + type: Transform + - uid: 1847 + components: + - pos: 12.5,22.5 + parent: 2 + type: Transform + - uid: 1878 + components: + - pos: 10.5,29.5 + parent: 2 + type: Transform + - uid: 1891 + components: + - pos: -38.5,-3.5 + parent: 2 + type: Transform + - uid: 2119 + components: + - pos: 32.5,-0.5 + parent: 2 + type: Transform + - uid: 2216 + components: + - pos: 26.5,-18.5 + parent: 2 + type: Transform + - uid: 2238 + components: + - pos: 26.5,-28.5 + parent: 2 + type: Transform + - uid: 2272 + components: + - pos: 26.5,-16.5 + parent: 2 + type: Transform + - uid: 2424 + components: + - pos: 32.5,-17.5 + parent: 2 + type: Transform + - uid: 2468 + components: + - pos: 35.5,-26.5 + parent: 2 + type: Transform + - uid: 2491 + components: + - pos: 32.5,-26.5 + parent: 2 + type: Transform + - uid: 2498 + components: + - pos: 28.5,-24.5 + parent: 2 + type: Transform + - uid: 2499 + components: + - pos: 27.5,-24.5 + parent: 2 + type: Transform + - uid: 2534 + components: + - pos: -28.5,-16.5 + parent: 2 + type: Transform + - uid: 2539 + components: + - pos: -26.5,-24.5 + parent: 2 + type: Transform + - uid: 2637 + components: + - pos: -23.5,6.5 + parent: 2 + type: Transform + - uid: 2749 + components: + - pos: -21.5,-3.5 + parent: 2 + type: Transform + - uid: 3115 + components: + - pos: 14.5,22.5 + parent: 2 + type: Transform + - uid: 3432 + components: + - pos: -49.5,-12.5 + parent: 2 + type: Transform + - uid: 3441 + components: + - pos: -45.5,-7.5 + parent: 2 + type: Transform + - uid: 3462 + components: + - pos: -31.5,-23.5 + parent: 2 + type: Transform + - uid: 3642 + components: + - pos: -20.5,-3.5 + parent: 2 + type: Transform + - uid: 3645 + components: + - pos: -22.5,-3.5 + parent: 2 + type: Transform + - uid: 3647 + components: + - pos: -19.5,-3.5 + parent: 2 + type: Transform + - uid: 3890 + components: + - pos: 35.5,-27.5 + parent: 2 + type: Transform + - uid: 3906 + components: + - pos: -25.5,-12.5 + parent: 2 + type: Transform + - uid: 3907 + components: + - pos: -25.5,-13.5 + parent: 2 + type: Transform + - uid: 3971 + components: + - pos: 27.5,-5.5 + parent: 2 + type: Transform + - uid: 3973 + components: + - pos: -35.5,-5.5 + parent: 2 + type: Transform + - uid: 4034 + components: + - pos: 26.5,-27.5 + parent: 2 + type: Transform + - uid: 6881 + components: + - pos: 35.5,-29.5 + parent: 2 + type: Transform + - uid: 6886 + components: + - pos: -50.5,-18.5 + parent: 2 + type: Transform + - uid: 8825 + components: + - pos: -49.5,-18.5 + parent: 2 + type: Transform + - uid: 8855 + components: + - pos: -52.5,-18.5 + parent: 2 + type: Transform + - uid: 8922 + components: + - pos: -43.5,-9.5 + parent: 2 + type: Transform + - uid: 8923 + components: + - pos: -43.5,-8.5 + parent: 2 + type: Transform + - uid: 8924 + components: + - pos: -43.5,-11.5 + parent: 2 + type: Transform + - uid: 8925 + components: + - pos: -43.5,-12.5 + parent: 2 + type: Transform + - uid: 9032 + components: + - pos: 48.5,-8.5 + parent: 2 + type: Transform + - uid: 9033 + components: + - pos: 50.5,-8.5 + parent: 2 + type: Transform + - uid: 9464 + components: + - pos: 2.5,16.5 + parent: 2 + type: Transform + - uid: 9618 + components: + - pos: 30.5,-21.5 + parent: 2 + type: Transform + - uid: 9619 + components: + - pos: 29.5,-21.5 + parent: 2 + type: Transform + - uid: 9620 + components: + - pos: 28.5,-21.5 + parent: 2 + type: Transform +- proto: WindowDirectional + entities: + - uid: 800 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-9.5 + parent: 2 + type: Transform + - uid: 888 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-10.5 + parent: 2 + type: Transform + - uid: 889 + components: + - rot: 1.5707963267948966 rad + pos: 22.5,-11.5 + parent: 2 + type: Transform + - uid: 3673 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-2.5 + parent: 2 + type: Transform + - uid: 3674 + components: + - rot: 1.5707963267948966 rad + pos: -21.5,-1.5 + parent: 2 + type: Transform + - uid: 3675 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-1.5 + parent: 2 + type: Transform + - uid: 3676 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-2.5 + parent: 2 + type: Transform + - uid: 3752 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,16.5 + parent: 2 + type: Transform + - uid: 3753 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,17.5 + parent: 2 + type: Transform + - uid: 3754 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,16.5 + parent: 2 + type: Transform + - uid: 3755 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,17.5 + parent: 2 + type: Transform +- proto: WindowReinforcedDirectional + entities: + - uid: 1916 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,1.5 + parent: 2 + type: Transform + - uid: 1917 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,2.5 + parent: 2 + type: Transform + - uid: 1918 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-2.5 + parent: 2 + type: Transform + - uid: 1919 + components: + - rot: 1.5707963267948966 rad + pos: -31.5,-1.5 + parent: 2 + type: Transform + - uid: 2655 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,7.5 + parent: 2 + type: Transform + - uid: 2656 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,8.5 + parent: 2 + type: Transform + - uid: 2657 + components: + - rot: -1.5707963267948966 rad + pos: -29.5,10.5 + parent: 2 + type: Transform + - uid: 2691 + components: + - rot: 1.5707963267948966 rad + pos: -23.5,20.5 + parent: 2 + type: Transform + - uid: 2839 + components: + - pos: -41.5,6.5 + parent: 2 + type: Transform + - uid: 2841 + components: + - pos: -43.5,6.5 + parent: 2 + type: Transform + - uid: 3335 + components: + - rot: 3.141592653589793 rad + pos: -48.5,6.5 + parent: 2 + type: Transform + - uid: 3340 + components: + - rot: 3.141592653589793 rad + pos: -50.5,6.5 + parent: 2 + type: Transform +- proto: Wirecutter + entities: + - uid: 3337 + components: + - rot: -1.5707963267948966 rad + pos: -47.182335,7.516402 + parent: 2 + type: Transform +- proto: Wrench + entities: + - uid: 7159 + components: + - pos: 22.601965,-22.482615 + parent: 2 + type: Transform +- proto: Zipties + entities: + - uid: 3846 + components: + - pos: -34.68133,-19.550589 + parent: 2 + type: Transform +... diff --git a/Resources/Maps/edge.yml b/Resources/Maps/edge.yml index 5263ff0952..88042c3996 100644 --- a/Resources/Maps/edge.yml +++ b/Resources/Maps/edge.yml @@ -37,6 +37,7 @@ tilemap: 68: FloorPlanetGrass 70: FloorRGlass 71: FloorReinforced + 72: FloorReinforcedHardened 74: FloorShowroom 76: FloorShuttleOrange 78: FloorShuttleRed @@ -60,11 +61,22 @@ tilemap: entities: - proto: "" entities: + - uid: 1 + components: + - type: MetaData + - type: Transform + - type: Map + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree + - type: LoadedMap - uid: 2 components: - type: MetaData - pos: -0.5,-0.5 - parent: 12 + parent: 1 type: Transform - chunks: 0,0: @@ -185,11 +197,11 @@ entities: version: 6 -1,-3: ind: -1,-3 - tiles: PQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAARwAAAAAAPQAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAPQAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAANgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAPQAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAANgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAUwAAAAAAUwAAAAABRwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAPQAAAAAARwAAAAAAUwAAAAAAUwAAAAACRwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAUwAAAAACUwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAUwAAAAABUwAAAAAARwAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAUwAAAAACUwAAAAABRwAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAcAAAAAAANgAAAAAAcAAAAAAANgAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAUwAAAAADUwAAAAADPQAAAAAAcAAAAAAANgAAAAAAcAAAAAAANgAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAPQAAAAAAUwAAAAACUwAAAAADPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAUwAAAAABRwAAAAAAcAAAAAAAHgAAAAADHgAAAAAAHgAAAAACcAAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAUwAAAAADcAAAAAAAUwAAAAAARwAAAAAAcAAAAAAAKgAAAAADKgAAAAABKgAAAAABcAAAAAAA + tiles: PQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAPQAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAPQAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAPQAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAUwAAAAAAUwAAAAABRwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAPQAAAAAARwAAAAAAUwAAAAAAUwAAAAACRwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAUwAAAAACUwAAAAAARwAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAUwAAAAABUwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAUwAAAAACUwAAAAABRwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAUwAAAAADUwAAAAADPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAPQAAAAAAUwAAAAACUwAAAAADPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAUwAAAAABRwAAAAAAcAAAAAAAHgAAAAADHgAAAAAAHgAAAAACcAAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAUwAAAAADcAAAAAAAUwAAAAAARwAAAAAAcAAAAAAAKgAAAAADKgAAAAABKgAAAAABcAAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAANQAAAAAANQAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAANgAAAAAAcAAAAAAANQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAANQAAAAAANQAAAAAAcAAAAAAANgAAAAAAcAAAAAAANQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAABcAAAAAAAUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIgAAAAAAIgAAAAADIgAAAAACIgAAAAABcAAAAAAAHwAAAAAAcAAAAAAAUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAHwAAAAADcAAAAAAAUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAcAAAAAAARgAAAAADRgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAADbQAAAAAAPQAAAAAAcAAAAAAAUwAAAAAARgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAJgAAAAAAbQAAAAAAbQAAAAACbQAAAAADPQAAAAAAcAAAAAAAUwAAAAACRgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAJgAAAAAAbQAAAAAAbQAAAAAAbQAAAAADPQAAAAAAcAAAAAAAUwAAAAABUwAAAAAD + tiles: cAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAANQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAANQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAANgAAAAAAcAAAAAAANQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAANQAAAAAAcAAAAAAAcAAAAAAANQAAAAAANQAAAAAAcAAAAAAANgAAAAAAcAAAAAAANQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAABcAAAAAAAUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIgAAAAADIgAAAAACIgAAAAABcAAAAAAAHwAAAAAAcAAAAAAAUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAHwAAAAADcAAAAAAAUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAcAAAAAAARgAAAAADRgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAADbQAAAAAAPQAAAAAAcAAAAAAAUwAAAAAARgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAJgAAAAAAbQAAAAAAbQAAAAACbQAAAAADPQAAAAAAcAAAAAAAUwAAAAACRgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAJgAAAAAAbQAAAAAAbQAAAAAAbQAAAAADPQAAAAAAcAAAAAAAUwAAAAABUwAAAAAD version: 6 1,-3: ind: 1,-3 @@ -217,11 +229,11 @@ entities: version: 6 0,-4: ind: 0,-4 - tiles: AAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAYAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAA + tiles: AAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAANQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAANQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAA version: 6 -1,-4: ind: -1,-4 - tiles: cAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: cAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 -2,-4: ind: -2,-4 @@ -367,8 +379,8 @@ entities: color: '#FFFFFFFF' id: Bot decals: - 2388: 21,-25 - 2389: 22,-25 + 2385: 21,-25 + 2386: 22,-25 - node: color: '#FFFF00FF' id: BotGreyscale @@ -396,9 +408,18 @@ entities: decals: 0: 15,-5 1037: 15,-4 - 1403: -50,-11 - 1404: -49,-11 - 1405: -48,-11 + 1401: -50,-11 + 1402: -49,-11 + 1403: -48,-11 + 2632: -1,-36 + 2633: -1,-37 + 2634: 0,-37 + 2635: 0,-36 + 2636: 0,-36 + 2637: 1,-36 + 2638: 1,-37 + 2639: 2,-37 + 2640: 2,-36 - node: color: '#FFFFFF93' id: BotLeftGreyscale @@ -421,29 +442,29 @@ entities: color: '#FFFFFFFF' id: Box decals: - 1400: -52,-9 - 1408: -52,-10 + 1398: -52,-9 + 1406: -52,-10 - node: cleanable: True color: '#FFFFFFFF' id: Box decals: - 2277: 5,-26 - 2278: 4,-26 - 2279: 3,-26 - 2280: 2,-26 - 2281: 1,-26 - 2282: 1,-28 - 2283: 2,-28 - 2284: 3,-28 - 2285: 4,-28 - 2286: 5,-28 + 2274: 5,-26 + 2275: 4,-26 + 2276: 3,-26 + 2277: 2,-26 + 2278: 1,-26 + 2279: 1,-28 + 2280: 2,-28 + 2281: 3,-28 + 2282: 4,-28 + 2283: 5,-28 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: Box decals: - 2004: -52,-9 + 2001: -52,-9 - node: color: '#EFB34196' id: BoxGreyscale @@ -469,9 +490,9 @@ entities: 600: -55,31 601: -56,31 602: -53,31 - 1401: -52,-9 - 1402: -52,-10 - 2343: -57,31 + 1399: -52,-9 + 1400: -52,-10 + 2340: -57,31 - node: cleanable: True color: '#FFFFFFFF' @@ -483,7 +504,7 @@ entities: color: '#DE3A3AFF' id: BrickTileSteelCornerNe decals: - 2576: -46,-13 + 2573: -46,-13 - node: color: '#FF0000FF' id: BrickTileSteelCornerNe @@ -504,7 +525,7 @@ entities: color: '#DE3A3AFF' id: BrickTileSteelCornerNw decals: - 2577: -48,-13 + 2574: -48,-13 - node: color: '#FF0000FF' id: BrickTileSteelCornerNw @@ -524,7 +545,7 @@ entities: color: '#DE3A3AFF' id: BrickTileSteelCornerSe decals: - 2583: -46,-19 + 2580: -46,-19 - node: color: '#FF0000FF' id: BrickTileSteelCornerSe @@ -542,7 +563,7 @@ entities: color: '#DE3A3AFF' id: BrickTileSteelCornerSw decals: - 2582: -48,-19 + 2579: -48,-19 - node: color: '#FF0000FF' id: BrickTileSteelCornerSw @@ -558,7 +579,7 @@ entities: decals: 10: -11,7 987: -7,-30 - 2629: -24,4 + 2626: -24,4 - node: color: '#FF0000FF' id: BrickTileSteelInnerNe @@ -597,11 +618,11 @@ entities: color: '#DE3A3AFF' id: BrickTileSteelLineE decals: - 2572: -46,-15 - 2573: -46,-14 - 2580: -46,-16 - 2581: -46,-18 - 2601: -46,-17 + 2569: -46,-15 + 2570: -46,-14 + 2577: -46,-16 + 2578: -46,-18 + 2598: -46,-17 - node: color: '#FF0000FF' id: BrickTileSteelLineE @@ -641,13 +662,13 @@ entities: color: '#D4D4D428' id: BrickTileSteelLineN decals: - 1398: -48,-13 - 1399: -46,-13 + 1396: -48,-13 + 1397: -46,-13 - node: color: '#DE3A3AFF' id: BrickTileSteelLineN decals: - 2578: -47,-13 + 2575: -47,-13 - node: color: '#FF0000FF' id: BrickTileSteelLineN @@ -703,6 +724,9 @@ entities: 23: -7,23 24: -8,23 25: -9,23 + 2644: -8,-39 + 2645: -7,-39 + 2646: -6,-39 - node: color: '#474A4DFF' id: BrickTileSteelLineS @@ -716,7 +740,7 @@ entities: color: '#DE3A3AFF' id: BrickTileSteelLineS decals: - 2584: -47,-19 + 2581: -47,-19 - node: color: '#FF0000FF' id: BrickTileSteelLineS @@ -759,6 +783,9 @@ entities: decals: 14: -10,7 15: -9,7 + 2641: -8,-39 + 2642: -7,-39 + 2643: -6,-39 - node: color: '#474A4DFF' id: BrickTileSteelLineW @@ -769,11 +796,11 @@ entities: color: '#DE3A3AFF' id: BrickTileSteelLineW decals: - 2574: -48,-15 - 2575: -48,-14 - 2579: -48,-16 - 2585: -48,-18 - 2586: -48,-17 + 2571: -48,-15 + 2572: -48,-14 + 2576: -48,-16 + 2582: -48,-18 + 2583: -48,-17 - node: color: '#FF0000FF' id: BrickTileSteelLineW @@ -826,12 +853,12 @@ entities: 998: -7,-18 999: -7,-17 1000: -7,-16 - 2508: -24,5 + 2505: -24,5 - node: color: '#334E6DC8' id: BrickTileWhiteCornerNe decals: - 2097: -8,36 + 2094: -8,36 - node: color: '#52B4E996' id: BrickTileWhiteCornerNe @@ -856,7 +883,7 @@ entities: color: '#334E6DC8' id: BrickTileWhiteCornerNw decals: - 2098: -13,36 + 2095: -13,36 - node: color: '#52B4E996' id: BrickTileWhiteCornerNw @@ -868,7 +895,7 @@ entities: id: BrickTileWhiteCornerNw decals: 546: -43,34 - 2404: -45,44 + 2401: -45,44 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSe @@ -885,7 +912,7 @@ entities: color: '#D381C996' id: BrickTileWhiteCornerSe decals: - 2397: -39,39 + 2394: -39,39 - node: color: '#334E6DC8' id: BrickTileWhiteCornerSw @@ -901,7 +928,7 @@ entities: color: '#D381C996' id: BrickTileWhiteCornerSw decals: - 2396: -45,39 + 2393: -45,39 - node: color: '#52B4E996' id: BrickTileWhiteEndE @@ -935,13 +962,13 @@ entities: color: '#52B4E996' id: BrickTileWhiteEndW decals: - 1945: 17,7 + 1942: 17,7 - node: color: '#334E6DC8' id: BrickTileWhiteInnerNe decals: - 2009: -12,36 - 2101: -9,36 + 2006: -12,36 + 2098: -9,36 - node: color: '#52B4E996' id: BrickTileWhiteInnerNe @@ -955,7 +982,7 @@ entities: color: '#52B4E996' id: BrickTileWhiteInnerNe decals: - 1946: 18,7 + 1943: 18,7 - node: color: '#9FED5896' id: BrickTileWhiteInnerNe @@ -967,8 +994,8 @@ entities: decals: 534: -47,32 538: -40,33 - 2414: -39,41 - 2415: -44,44 + 2411: -39,41 + 2412: -44,44 - node: color: '#EFB34196' id: BrickTileWhiteInnerNe @@ -979,8 +1006,8 @@ entities: id: BrickTileWhiteInnerNw decals: 421: -16,36 - 2010: -9,36 - 2102: -12,36 + 2007: -9,36 + 2099: -12,36 - node: color: '#52B4E996' id: BrickTileWhiteInnerNw @@ -995,20 +1022,20 @@ entities: color: '#52B4E996' id: BrickTileWhiteInnerNw decals: - 1947: 18,7 + 1944: 18,7 - node: color: '#D381C996' id: BrickTileWhiteInnerNw decals: - 2416: -44,44 + 2413: -44,44 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSe decals: 430: -17,34 452: -15,38 - 1390: -12,39 - 2066: -9,38 + 1389: -12,39 + 2063: -9,38 - node: color: '#52B4E996' id: BrickTileWhiteInnerSe @@ -1022,25 +1049,25 @@ entities: color: '#52B4E996' id: BrickTileWhiteInnerSe decals: - 1948: 18,7 + 1945: 18,7 - node: color: '#A4610696' id: BrickTileWhiteInnerSe decals: - 2428: 11,-7 + 2425: 11,-7 - node: color: '#D381C996' id: BrickTileWhiteInnerSe decals: - 2412: -40,39 - 2413: -39,41 + 2409: -40,39 + 2410: -39,41 - node: color: '#334E6DC8' id: BrickTileWhiteInnerSw decals: 462: -6,38 - 1389: -9,39 - 2061: -12,38 + 1388: -9,39 + 2058: -12,38 - node: color: '#52B4E996' id: BrickTileWhiteInnerSw @@ -1053,17 +1080,17 @@ entities: color: '#52B4E996' id: BrickTileWhiteInnerSw decals: - 1949: 18,7 + 1946: 18,7 - node: color: '#A4610696' id: BrickTileWhiteInnerSw decals: - 2427: 14,-7 + 2424: 14,-7 - node: color: '#D381C996' id: BrickTileWhiteInnerSw decals: - 2411: -40,39 + 2408: -40,39 - node: color: '#EFB34196' id: BrickTileWhiteInnerSw @@ -1080,9 +1107,9 @@ entities: 455: -15,35 456: -15,37 457: -15,36 - 2038: -12,38 - 2055: -12,37 - 2070: -9,37 + 2035: -12,38 + 2052: -12,37 + 2067: -9,37 - node: color: '#52B4E996' id: BrickTileWhiteLineE @@ -1130,7 +1157,7 @@ entities: color: '#52B4E996' id: BrickTileWhiteLineE decals: - 2254: 23,13 + 2251: 23,13 - node: color: '#9FED5896' id: BrickTileWhiteLineE @@ -1159,15 +1186,15 @@ entities: 536: -40,37 537: -39,32 540: -39,31 - 2113: -20,-74 - 2114: -20,-75 - 2115: -20,-76 - 2116: -20,-77 - 2117: -20,-78 - 2118: -20,-79 - 2119: -20,-80 - 2398: -39,40 - 2399: -39,42 + 2110: -20,-74 + 2111: -20,-75 + 2112: -20,-76 + 2113: -20,-77 + 2114: -20,-78 + 2115: -20,-79 + 2116: -20,-80 + 2395: -39,40 + 2396: -39,42 - node: color: '#EFB34196' id: BrickTileWhiteLineE @@ -1199,10 +1226,10 @@ entities: color: '#FF801DFF' id: BrickTileWhiteLineE decals: - 2317: 19,10 - 2318: 19,11 - 2319: 19,12 - 2320: 19,13 + 2314: 19,10 + 2315: 19,11 + 2316: 19,12 + 2317: 19,13 - node: color: '#334E6DC8' id: BrickTileWhiteLineN @@ -1213,18 +1240,25 @@ entities: 425: -13,39 426: -7,39 427: -6,39 - 1391: -12,39 - 1392: -11,39 - 1393: -10,39 - 2007: -11,36 - 2008: -10,36 + 1390: -12,39 + 1391: -11,39 + 1392: -10,39 + 2004: -11,36 + 2005: -10,36 - node: cleanable: True color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 1299: -8,39 - 1300: -9,39 + 1298: -8,39 + 1299: -9,39 + - node: + color: '#49FFC5FF' + id: BrickTileWhiteLineN + decals: + 2647: -5.9915333,-39.38071 + 2648: -6.991725,-39.38071 + 2649: -7.983293,-39.38071 - node: color: '#52B4E996' id: BrickTileWhiteLineN @@ -1247,8 +1281,8 @@ entities: decals: 532: -46,32 533: -45,32 - 2405: -43,44 - 2406: -42,44 + 2402: -43,44 + 2403: -42,44 - node: color: '#334E6DC8' id: BrickTileWhiteLineS @@ -1267,15 +1301,15 @@ entities: 449: -8,38 450: -13,38 451: -14,38 - 1387: -11,39 - 1388: -10,39 - 2006: -8,41 + 1386: -11,39 + 1387: -10,39 + 2003: -8,41 - node: cleanable: True color: '#334E6DC8' id: BrickTileWhiteLineS decals: - 1290: -5,33 + 1289: -5,33 - node: color: '#52B4E996' id: BrickTileWhiteLineS @@ -1296,21 +1330,21 @@ entities: color: '#52B4E996' id: BrickTileWhiteLineS decals: - 2255: 17,15 + 2252: 17,15 - node: color: '#A4610696' id: BrickTileWhiteLineS decals: - 2425: 12,-7 - 2426: 13,-7 + 2422: 12,-7 + 2423: 13,-7 - node: color: '#D381C996' id: BrickTileWhiteLineS decals: - 2407: -41,39 - 2408: -42,39 - 2409: -43,39 - 2410: -44,39 + 2404: -41,39 + 2405: -42,39 + 2406: -43,39 + 2407: -44,39 - node: color: '#334E6DC8' id: BrickTileWhiteLineW @@ -1325,9 +1359,9 @@ entities: 459: -6,35 460: -6,36 461: -6,37 - 2042: -9,38 - 2045: -9,37 - 2069: -12,37 + 2039: -9,38 + 2042: -9,37 + 2066: -12,37 - node: color: '#52B4E996' id: BrickTileWhiteLineW @@ -1411,17 +1445,17 @@ entities: 543: -43,33 544: -41,35 545: -41,37 - 2120: -23,-80 - 2121: -23,-79 - 2122: -23,-78 - 2123: -23,-77 - 2124: -23,-76 - 2125: -23,-75 - 2126: -23,-74 - 2400: -45,40 - 2401: -45,41 - 2402: -45,42 - 2403: -45,43 + 2117: -23,-80 + 2118: -23,-79 + 2119: -23,-78 + 2120: -23,-77 + 2121: -23,-76 + 2122: -23,-75 + 2123: -23,-74 + 2397: -45,40 + 2398: -45,41 + 2399: -45,42 + 2400: -45,43 - node: color: '#EFB34196' id: BrickTileWhiteLineW @@ -1450,10 +1484,10 @@ entities: color: '#FF801DFF' id: BrickTileWhiteLineW decals: - 2313: 14,13 - 2314: 14,12 - 2315: 14,11 - 2316: 14,10 + 2310: 14,13 + 2311: 14,12 + 2312: 14,11 + 2313: 14,10 - node: color: '#FFFFFFFF' id: BushAOne @@ -1483,7 +1517,7 @@ entities: color: '#FFFFFFFF' id: BushDOne decals: - 1362: -59.663837,-5.750451 + 1361: -59.663837,-5.750451 - node: color: '#FFFFFFFF' id: Busha1 @@ -1505,9 +1539,9 @@ entities: color: '#FFFFFFFF' id: Bushb2 decals: - 1359: -58.898212,-5.953576 - 1360: -61.554462,-6.266076 - 1361: -58.741962,-6.875451 + 1358: -58.898212,-5.953576 + 1359: -61.554462,-6.266076 + 1360: -58.741962,-6.875451 - node: color: '#FFFFFFFF' id: Bushb3 @@ -1585,13 +1619,13 @@ entities: color: '#FFFFFFFF' id: Bushj1 decals: - 2301: -22,4 + 2298: -22,4 - node: color: '#FFFFFFFF' id: Bushk3 decals: - 2109: -4.742067,39.22148 - 2110: -15.210269,39.22148 + 2106: -4.742067,39.22148 + 2107: -15.210269,39.22148 - node: color: '#FFFFFFFF' id: Bushm3 @@ -1611,12 +1645,12 @@ entities: color: '#FFFFFFFF' id: Bushn1 decals: - 2302: -20,3 + 2299: -20,3 - node: color: '#FFFFFFFF' id: Caution decals: - 2597: -47,-16 + 2594: -47,-16 - node: color: '#52B4E996' id: CheckerNESW @@ -1633,81 +1667,81 @@ entities: 814: 17,24 815: 17,25 816: 17,26 - 1956: 17,5 - 1957: 17,4 - 1958: 17,3 - 1959: 18,3 - 1960: 19,5 - 1961: 19,4 - 1962: 19,3 - 1963: 20,3 - 1964: 20,4 - 1965: 20,5 - 1966: 21,5 - 1967: 21,3 - 1968: 22,3 - 1969: 22,5 - 1970: 23,5 - 1971: 23,4 - 1972: 23,3 + 1953: 17,5 + 1954: 17,4 + 1955: 17,3 + 1956: 18,3 + 1957: 19,5 + 1958: 19,4 + 1959: 19,3 + 1960: 20,3 + 1961: 20,4 + 1962: 20,5 + 1963: 21,5 + 1964: 21,3 + 1965: 22,3 + 1966: 22,5 + 1967: 23,5 + 1968: 23,4 + 1969: 23,3 - node: cleanable: True color: '#52B4E996' id: CheckerNESW decals: - 2000: 18,5 - 2001: 18,4 - 2002: 21,4 - 2003: 22,4 + 1997: 18,5 + 1998: 18,4 + 1999: 21,4 + 2000: 22,4 - node: color: '#9FED5896' id: CheckerNESW decals: - 2256: 19,-14 - 2257: 19,-13 - 2258: 19,-12 - 2259: 20,-12 - 2260: 21,-12 - 2261: 22,-12 + 2253: 19,-14 + 2254: 19,-13 + 2255: 19,-12 + 2256: 20,-12 + 2257: 21,-12 + 2258: 22,-12 - node: color: '#A4610696' id: CheckerNESW decals: - 2421: 10,-4 - 2422: 10,-5 - 2423: 10,-6 - 2424: 10,-7 - 2429: 9,-20 - 2430: 9,-21 - 2431: 9,-22 - 2432: 9,-23 - 2433: 9,-24 - 2434: 9,-25 - 2435: 9,-26 - 2436: 9,-27 - 2437: 9,-28 - 2446: 9,-18 - 2447: 9,-17 - 2448: 9,-16 - 2449: 9,-15 - 2450: 9,-14 - 2451: 9,-13 - 2465: 10,-11 - 2466: 10,-10 - 2467: 10,-9 - 2468: 14,-32 - 2469: 14,-30 - 2470: 14,-29 - 2471: 14,-28 - 2472: 14,-27 - 2473: 14,-26 - 2474: 14,-25 - 2484: 14,-33 - 2499: 4,-3 - 2500: 4,-4 - 2501: 4,-5 - 2611: 14,-34 - 2612: 14,-35 + 2418: 10,-4 + 2419: 10,-5 + 2420: 10,-6 + 2421: 10,-7 + 2426: 9,-20 + 2427: 9,-21 + 2428: 9,-22 + 2429: 9,-23 + 2430: 9,-24 + 2431: 9,-25 + 2432: 9,-26 + 2433: 9,-27 + 2434: 9,-28 + 2443: 9,-18 + 2444: 9,-17 + 2445: 9,-16 + 2446: 9,-15 + 2447: 9,-14 + 2448: 9,-13 + 2462: 10,-11 + 2463: 10,-10 + 2464: 10,-9 + 2465: 14,-32 + 2466: 14,-30 + 2467: 14,-29 + 2468: 14,-28 + 2469: 14,-27 + 2470: 14,-26 + 2471: 14,-25 + 2481: 14,-33 + 2496: 4,-3 + 2497: 4,-4 + 2498: 4,-5 + 2608: 14,-34 + 2609: 14,-35 - node: color: '#DE3A3A96' id: CheckerNESW @@ -1725,8 +1759,8 @@ entities: color: '#EFB34196' id: CheckerNESW decals: - 2534: -12,-25 - 2535: -11,-25 + 2531: -12,-25 + 2532: -11,-25 - node: color: '#DE3A3A96' id: CheckerNWSE @@ -1787,19 +1821,19 @@ entities: 608: -54,39 609: -56,39 610: -55,39 - 2348: 22,-30 - 2349: 21,-30 - 2350: 21,-31 - 2351: 22,-31 + 2345: 22,-30 + 2346: 21,-30 + 2347: 21,-31 + 2348: 22,-31 - node: cleanable: True color: '#FFFFFFFF' id: Delivery decals: - 2355: 13,-18 - 2356: 13,-17 - 2386: 22,-29 - 2387: 21,-29 + 2352: 13,-18 + 2353: 13,-17 + 2383: 22,-29 + 2384: 21,-29 - node: color: '#DE3A3A96' id: DeliveryGreyscale @@ -1845,297 +1879,309 @@ entities: 354: -35,-33 547: -46,34 548: -45,34 - 2352: 17,-30 - 2353: 18,-30 + 2349: 17,-30 + 2350: 18,-30 - node: cleanable: True color: '#FFFFFFFF' id: DeliveryGreyscale decals: - 2357: 14,-18 - 2358: 14,-17 - 2359: 15,-17 - 2360: 15,-18 - 2381: 18,-29 - 2382: 17,-29 - 2390: 16,-30 - 2391: 16,-29 + 2354: 14,-18 + 2355: 14,-17 + 2356: 15,-17 + 2357: 15,-18 + 2378: 18,-29 + 2379: 17,-29 + 2387: 16,-30 + 2388: 16,-29 - node: cleanable: True color: '#5D2C0098' id: Dirt decals: - 1848: 22,1 + 1846: 22,1 - node: cleanable: True color: '#5D2C00D3' id: Dirt decals: - 1849: 40,1 - 1850: -25,-3 - 1851: -26,2 - 1852: -32,3 - 1856: -31,5 - 1883: 26,-3 + 1847: 40,1 + 1848: -25,-3 + 1849: -26,2 + 1850: -32,3 + 1854: -31,5 + 1881: 26,-3 - node: cleanable: True color: '#5D5200FF' id: Dirt decals: - 1838: -2,-28 - 1839: -2,-25 - 1840: 4,-24 - 1841: 1,-23 - 1842: -4,-23 - 1843: -4,-22 - 1844: 0,-25 - 1846: 10,-30 - 1847: 24,-9 + 1836: -2,-28 + 1837: -2,-25 + 1838: 4,-24 + 1839: 1,-23 + 1840: -4,-23 + 1841: -4,-22 + 1842: 0,-25 + 1844: 10,-30 + 1845: 24,-9 - node: cleanable: True color: '#792C0079' id: Dirt decals: - 1926: 22,16 + 1923: 22,16 - node: cleanable: True color: '#792C0082' id: Dirt decals: - 1931: 11,11 - 1932: 11,14 - 1933: 19,16 - 1934: 12,18 - 1935: 13,25 - 1936: 13,24 - 1937: 14,5 - 1938: 23,6 - 1939: 19,8 - 1940: 11,5 - 1941: 8,7 - 1942: 6,11 - 1943: 19,6 + 1928: 11,11 + 1929: 11,14 + 1930: 19,16 + 1931: 12,18 + 1932: 13,25 + 1933: 13,24 + 1934: 14,5 + 1935: 23,6 + 1936: 19,8 + 1937: 11,5 + 1938: 8,7 + 1939: 6,11 + 1940: 19,6 - node: cleanable: True color: '#792C00B7' id: Dirt decals: - 1927: 21,17 - 1928: 16,15 - 1929: 12,15 - 1930: 10,13 + 1924: 21,17 + 1925: 16,15 + 1926: 12,15 + 1927: 10,13 - node: cleanable: True color: '#792C00D1' id: Dirt decals: - 1884: 25,-4 - 1885: 25,-10 - 1886: 39,-1 - 1887: 30,0 - 1888: 31,0 - 1889: 13,4 - 1890: 14,4 - 1891: 0,-2 - 1892: 20,-29 - 1893: 37,-24 - 1894: -7,-36 - 1895: -7,-37 - 1896: -8,-37 - 1897: -7,-35 - 1898: -7,-31 - 1906: -14,-19 - 1907: -14,-19 - 1908: -15,-18 - 1909: -17,-21 - 1910: -18,-26 - 1911: -17,-13 - 1912: -17,-4 - 1913: -21,11 - 1914: -32,15 - 1915: -41,15 - 1916: -48,12 - 1917: -46,6 - 1923: 28,13 - 1924: 25,15 - 1925: 26,15 + 1882: 25,-4 + 1883: 25,-10 + 1884: 39,-1 + 1885: 30,0 + 1886: 31,0 + 1887: 13,4 + 1888: 14,4 + 1889: 0,-2 + 1890: 20,-29 + 1891: 37,-24 + 1892: -7,-36 + 1893: -8,-37 + 1894: -7,-35 + 1895: -7,-31 + 1903: -14,-19 + 1904: -14,-19 + 1905: -15,-18 + 1906: -17,-21 + 1907: -18,-26 + 1908: -17,-13 + 1909: -17,-4 + 1910: -21,11 + 1911: -32,15 + 1912: -41,15 + 1913: -48,12 + 1914: -46,6 + 1920: 28,13 + 1921: 25,15 + 1922: 26,15 - node: cleanable: True color: '#835432FF' id: Dirt decals: - 2267: 26,-17 - 2268: 25,-16 - 2269: 29,-17 + 2264: 26,-17 + 2265: 25,-16 + 2266: 29,-17 - node: cleanable: True color: '#A0521263' id: Dirt decals: - 1950: 18,7 - 1951: 18,7 - 1952: 18,6 - 1953: 17,6 - 1954: 17,7 - 1973: -28,10 - 1974: -28,10 - 1975: -28,9 - 1976: -28,9 - 1977: -29,10 - 1978: -28,11 - 1979: -29,11 - 1980: -28,10 - 1981: -28,10 - 1988: -29,13 - 1989: -29,13 - 1990: -29,13 - 1991: -28,14 - 1992: -28,15 - 1993: -30,14 + 1947: 18,7 + 1948: 18,7 + 1949: 18,6 + 1950: 17,6 + 1951: 17,7 + 1970: -28,10 + 1971: -28,10 + 1972: -28,9 + 1973: -28,9 + 1974: -29,10 + 1975: -28,11 + 1976: -29,11 + 1977: -28,10 + 1978: -28,10 + 1985: -29,13 + 1986: -29,13 + 1987: -29,13 + 1988: -28,14 + 1989: -28,15 + 1990: -30,14 + 1991: -29,12 + 1992: -28,12 + 1993: -29,12 1994: -29,12 - 1995: -28,12 - 1996: -29,12 - 1997: -29,12 - 1998: -29,13 - 1999: -29,13 - 2011: 39,-4 - 2012: 38,-4 - 2013: 38,-4 - 2014: 39,-8 - 2015: 39,-8 - 2016: 38,-7 - 2017: 38,-7 - 2018: 39,0 - 2019: 40,-1 - 2020: 40,-1 - 2021: 34,-1 - 2022: 33,-1 - 2023: 35,-1 - 2024: 35,-1 - 2025: 25,1 - 2026: 25,-3 - 2027: 24,-2 - 2028: 24,-3 - 2029: 26,-6 - 2030: 26,-6 - 2031: 29,-16 - 2032: 38,-19 - 2033: 36,-22 - 2034: 31,-23 - 2035: 40,-21 - 2036: 38,-20 - 2037: 40,-13 - 2039: 39,-14 - 2040: 34,-6 - 2041: 35,-6 - 2043: 32,-4 - 2044: 31,-3 - 2046: 31,-3 - 2047: 31,-6 - 2048: 30,-7 - 2049: 29,-7 - 2050: 33,-9 - 2051: 30,-10 - 2052: 28,-10 - 2053: 29,-9 - 2054: 28,-13 - 2056: 30,-13 - 2057: 30,-13 - 2058: 30,-12 - 2059: 30,-12 - 2060: 32,0 - 2062: 28,6 - 2063: 28,6 - 2064: 27,6 - 2065: 27,6 - 2067: 27,3 - 2068: 27,3 + 1995: -29,13 + 1996: -29,13 + 2008: 39,-4 + 2009: 38,-4 + 2010: 38,-4 + 2011: 39,-8 + 2012: 39,-8 + 2013: 38,-7 + 2014: 38,-7 + 2015: 39,0 + 2016: 40,-1 + 2017: 40,-1 + 2018: 34,-1 + 2019: 33,-1 + 2020: 35,-1 + 2021: 35,-1 + 2022: 25,1 + 2023: 25,-3 + 2024: 24,-2 + 2025: 24,-3 + 2026: 26,-6 + 2027: 26,-6 + 2028: 29,-16 + 2029: 38,-19 + 2030: 36,-22 + 2031: 31,-23 + 2032: 40,-21 + 2033: 38,-20 + 2034: 40,-13 + 2036: 39,-14 + 2037: 34,-6 + 2038: 35,-6 + 2040: 32,-4 + 2041: 31,-3 + 2043: 31,-3 + 2044: 31,-6 + 2045: 30,-7 + 2046: 29,-7 + 2047: 33,-9 + 2048: 30,-10 + 2049: 28,-10 + 2050: 29,-9 + 2051: 28,-13 + 2053: 30,-13 + 2054: 30,-13 + 2055: 30,-12 + 2056: 30,-12 + 2057: 32,0 + 2059: 28,6 + 2060: 28,6 + 2061: 27,6 + 2062: 27,6 + 2064: 27,3 + 2065: 27,3 + 2068: 12,-7 + 2069: 13,-7 + 2070: 13,-7 2071: 12,-7 - 2072: 13,-7 - 2073: 13,-7 - 2074: 12,-7 - 2075: 10,-6 - 2076: 10,-6 - 2077: 14,-6 - 2078: 14,-6 - 2079: 14,-5 - 2080: 12,-6 - 2081: 15,-5 - 2082: 13,-9 - 2083: 12,-9 - 2084: 14,-9 - 2085: 14,-11 - 2086: 14,-11 - 2087: 13,-9 - 2088: 10,-10 - 2089: 10,-10 - 2090: 11,-10 - 2091: 7,-10 - 2092: 7,-10 - 2093: 13,-10 - 2094: 13,-10 - 2095: 7,-18 - 2096: 7,-18 - 2099: 29,-19 - 2100: 29,-19 - 2103: 26,-12 - 2104: 24,-13 - 2105: 24,-13 - 2106: 24,-13 + 2072: 10,-6 + 2073: 10,-6 + 2074: 14,-6 + 2075: 14,-6 + 2076: 14,-5 + 2077: 12,-6 + 2078: 15,-5 + 2079: 13,-9 + 2080: 12,-9 + 2081: 14,-9 + 2082: 14,-11 + 2083: 14,-11 + 2084: 13,-9 + 2085: 10,-10 + 2086: 10,-10 + 2087: 11,-10 + 2088: 7,-10 + 2089: 7,-10 + 2090: 13,-10 + 2091: 13,-10 + 2092: 7,-18 + 2093: 7,-18 + 2096: 29,-19 + 2097: 29,-19 + 2100: 26,-12 + 2101: 24,-13 + 2102: 24,-13 + 2103: 24,-13 - node: cleanable: True color: '#FF0000B7' id: Dirt decals: - 1982: 19,4 + 1979: 19,4 - node: cleanable: True color: '#FF0000FF' id: Dirt decals: - 2287: -40,-25 - 2288: -40,-24 - 2289: -40,-25 - 2290: -39,-25 + 2284: -40,-25 + 2285: -40,-24 + 2286: -40,-25 + 2287: -39,-25 - node: cleanable: True color: '#FFFCFFFF' id: Dirt decals: - 2203: -15,-75 - 2204: -17,-77 - 2205: -10,-71 - 2206: -9,-78 - 2207: -18,-76 - 2208: -23,-77 - 2209: -12,-74 - 2210: -12,-79 - 2211: -23,-78 - 2212: -12,-81 - 2213: -25,-78 - 2214: -11,-76 - 2215: -16,-67 - 2216: -15,-76 - 2217: -27,-77 - 2218: -23,-75 - 2219: -12,-81 - 2236: -18,-47 - 2237: -11,-37 - 2238: -24,-39 - 2239: -21,-35 - 2240: -15,-38 - 2241: -17,-35 - 2242: -8,-33 - 2243: -19,-29 - 2244: -23,-28 - 2245: -7,-32 - 2246: -4,-28 + 2200: -15,-75 + 2201: -17,-77 + 2202: -10,-71 + 2203: -9,-78 + 2204: -18,-76 + 2205: -23,-77 + 2206: -12,-74 + 2207: -12,-79 + 2208: -23,-78 + 2209: -12,-81 + 2210: -25,-78 + 2211: -11,-76 + 2212: -16,-67 + 2213: -15,-76 + 2214: -27,-77 + 2215: -23,-75 + 2216: -12,-81 + 2233: -18,-47 + 2234: -11,-37 + 2235: -24,-39 + 2236: -21,-35 + 2237: -15,-38 + 2238: -17,-35 + 2239: -8,-33 + 2240: -19,-29 + 2241: -23,-28 + 2242: -7,-32 + 2243: -4,-28 - node: cleanable: True color: '#FFFFFFF7' id: Dirt decals: - 1342: -33,2 + 1341: -33,2 + - node: + color: '#FFFFFFFF' + id: Dirt + decals: + 2650: -8,-40 + 2651: -7,-39 + 2652: -6,-38 + 2653: -2,-40 + 2654: -2,-42 + 2655: 1,-40 + 2656: -1,-45 + 2657: -4,-46 + 2658: -2,-48 - node: cleanable: True color: '#FFFFFFFF' @@ -2187,87 +2233,87 @@ entities: 1083: -50,45 1084: -52,45 1085: -52,50 - 1288: -60,-1 - 1289: -59,-1 - 1315: -43,0 - 1316: -41,-2 - 1317: -44,-6 - 1318: -42,-10 - 1319: -37,-9 - 1320: -39,-13 - 1321: -41,-16 - 1322: -43,-16 - 1323: -44,-15 - 1324: -43,-15 - 1347: -31.962746,18.268396 - 1348: -31.19712,18.580896 - 1349: -32.087746,19.862146 - 1471: 31,-9 - 1472: 31,-1 - 1474: 17,-2 - 1475: 8,-7 - 1482: -7,-4 - 1489: -8,-10 - 1496: -25,-6 - 1502: -10,3 - 1503: -9,17 - 1504: -10,21 - 1505: -6,27 - 1523: -9,10 - 1704: -28,25 - 1705: -28,31 - 1706: -30,31 - 1707: -32,31 - 1747: -18,-1 - 1748: -8,-8 - 1749: -10,-14 - 1750: 23,-13 - 1751: 33,-20 - 1752: 40,-12 - 1779: -13,43 - 1802: 0,32 - 1803: 3,32 - 1811: -29,13 - 1812: -31,10 - 1813: -37,10 - 1814: -17,10 - 1815: -12,10 - 1816: -20,-25 - 1817: -23,-23 - 1824: -22,-22 - 1827: -10,-23 - 1828: 2,-23 - 1867: -15,13 - 1868: -13,15 - 1869: -13,13 - 1870: -15,10 - 1871: -15,15 - 1872: 35,-17 - 1873: 35,-15 - 1874: 35,-16 - 1875: 35,-16 - 1876: 34,-17 - 1877: 33,-15 - 1878: 34,-15 - 1944: 13,1 - 2544: 12,-20 - 2545: 12,-21 - 2549: 22,-26 - 2550: 21,-25 - 2551: 22,-25 - 2552: 20,-25 - 2553: 18,-25 - 2554: 18,-26 - 2555: 18,-27 - 2565: 17,-23 - 2566: 16,-23 - 2567: 18,-20 - 2589: -48,-17 - 2590: -46,-19 - 2591: -48,-19 - 2622: 9,-44 - 2623: 9,-37 - 2625: 12,-35 + 1287: -60,-1 + 1288: -59,-1 + 1314: -43,0 + 1315: -41,-2 + 1316: -44,-6 + 1317: -42,-10 + 1318: -37,-9 + 1319: -39,-13 + 1320: -41,-16 + 1321: -43,-16 + 1322: -44,-15 + 1323: -43,-15 + 1346: -31.962746,18.268396 + 1347: -31.19712,18.580896 + 1348: -32.087746,19.862146 + 1469: 31,-9 + 1470: 31,-1 + 1472: 17,-2 + 1473: 8,-7 + 1480: -7,-4 + 1487: -8,-10 + 1494: -25,-6 + 1500: -10,3 + 1501: -9,17 + 1502: -10,21 + 1503: -6,27 + 1521: -9,10 + 1702: -28,25 + 1703: -28,31 + 1704: -30,31 + 1705: -32,31 + 1745: -18,-1 + 1746: -8,-8 + 1747: -10,-14 + 1748: 23,-13 + 1749: 33,-20 + 1750: 40,-12 + 1777: -13,43 + 1800: 0,32 + 1801: 3,32 + 1809: -29,13 + 1810: -31,10 + 1811: -37,10 + 1812: -17,10 + 1813: -12,10 + 1814: -20,-25 + 1815: -23,-23 + 1822: -22,-22 + 1825: -10,-23 + 1826: 2,-23 + 1865: -15,13 + 1866: -13,15 + 1867: -13,13 + 1868: -15,10 + 1869: -15,15 + 1870: 35,-17 + 1871: 35,-15 + 1872: 35,-16 + 1873: 35,-16 + 1874: 34,-17 + 1875: 33,-15 + 1876: 34,-15 + 1941: 13,1 + 2541: 12,-20 + 2542: 12,-21 + 2546: 22,-26 + 2547: 21,-25 + 2548: 22,-25 + 2549: 20,-25 + 2550: 18,-25 + 2551: 18,-26 + 2552: 18,-27 + 2562: 17,-23 + 2563: 16,-23 + 2564: 18,-20 + 2586: -48,-17 + 2587: -46,-19 + 2588: -48,-19 + 2619: 9,-44 + 2620: 9,-37 + 2622: 12,-35 - node: cleanable: True color: '#00FF00FF' @@ -2280,75 +2326,75 @@ entities: color: '#5D2C00D3' id: DirtHeavy decals: - 1857: -29,7 - 1858: -36,7 - 1859: -35,5 + 1855: -29,7 + 1856: -36,7 + 1857: -35,5 - node: cleanable: True color: '#792C00D1' id: DirtHeavy decals: - 1899: -8,-35 - 1900: -6,-32 - 1918: 26,14 - 1919: 28,14 - 1920: 27,13 - 1921: 27,15 - 1922: 27,16 + 1896: -8,-35 + 1897: -6,-32 + 1915: 26,14 + 1916: 28,14 + 1917: 27,13 + 1918: 27,15 + 1919: 27,16 - node: cleanable: True color: '#8354329E' id: DirtHeavy decals: - 2275: 24,-15 + 2272: 24,-15 - node: cleanable: True color: '#835432FF' id: DirtHeavy decals: - 2274: 25,-12 + 2271: 25,-12 - node: cleanable: True color: '#A0521263' id: DirtHeavy decals: + 1980: -28,9 + 1982: -28,9 1983: -28,9 - 1985: -28,9 - 1986: -28,9 - 1987: -29,11 - 2107: 25,-15 + 1984: -29,11 + 2104: 25,-15 - node: cleanable: True color: '#FF0000FF' id: DirtHeavy decals: - 2291: -39,-24 + 2288: -39,-24 + 2289: -38,-25 + 2290: -39,-23 + 2291: -39,-23 2292: -38,-25 - 2293: -39,-23 - 2294: -39,-23 - 2295: -38,-25 - 2296: -39,-24 + 2293: -39,-24 - node: cleanable: True color: '#FFFCFFFF' id: DirtHeavy decals: - 2220: -15,-79 - 2221: -17,-80 - 2222: -8,-75 - 2223: -19,-79 - 2224: -20,-78 - 2225: -22,-79 - 2226: -24,-75 - 2227: -27,-78 - 2228: -16,-74 - 2229: -10,-79 - 2230: -21,-77 - 2231: -28,-75 - 2232: -29,-77 - 2233: -29,-78 - 2234: -18,-44 - 2235: -13,-40 + 2217: -15,-79 + 2218: -17,-80 + 2219: -8,-75 + 2220: -19,-79 + 2221: -20,-78 + 2222: -22,-79 + 2223: -24,-75 + 2224: -27,-78 + 2225: -16,-74 + 2226: -10,-79 + 2227: -21,-77 + 2228: -28,-75 + 2229: -29,-77 + 2230: -29,-78 + 2231: -18,-44 + 2232: -13,-40 - node: cleanable: True color: '#FFFFFFFF' @@ -2404,277 +2450,276 @@ entities: 1103: -13,-18 1104: -3,-19 1105: -7,-34 - 1106: -7,-41 - 1107: -16,-44 - 1108: -19,-48 - 1109: -22,-44 - 1110: -33,-46 - 1111: -36,-40 - 1112: -32,-28 - 1251: -49,50 - 1252: -53,45 - 1253: -43,31 - 1254: -41,33 - 1255: -43,24 - 1256: -40,25 - 1257: -50,20 - 1258: -42,19 - 1259: -49,14 - 1260: -51,5 - 1261: -51,6 - 1262: -47,5 - 1263: -44,6 - 1267: -54,-18 - 1268: -53,-18 - 1269: -53,-17 + 1106: -16,-44 + 1107: -19,-48 + 1108: -22,-44 + 1109: -33,-46 + 1110: -36,-40 + 1111: -32,-28 + 1250: -49,50 + 1251: -53,45 + 1252: -43,31 + 1253: -41,33 + 1254: -43,24 + 1255: -40,25 + 1256: -50,20 + 1257: -42,19 + 1258: -49,14 + 1259: -51,5 + 1260: -51,6 + 1261: -47,5 + 1262: -44,6 + 1266: -54,-18 + 1267: -53,-18 + 1268: -53,-17 + 1269: -50,-18 1270: -50,-18 - 1271: -50,-18 + 1271: -59,-13 1272: -59,-13 - 1273: -59,-13 - 1274: -60,-13 - 1275: -60,-12 - 1276: -59,-12 - 1291: -18,34 - 1292: -20,34 - 1412: -50,-5 - 1413: -48,-3 - 1414: -47,-5 - 1415: -48,-5 - 1416: -55,-1 - 1417: -57,1 - 1418: -57,0 - 1419: -55,1 - 1420: -57,-2 - 1421: -57,-1 - 1422: -56,-3 - 1423: -56,-5 - 1424: -57,-5 - 1425: -55,-7 - 1426: -57,-7 - 1432: 38,-18 - 1433: 37,-23 - 1434: 30,-23 - 1443: 33,3 - 1444: 26,1 - 1445: 15,-1 - 1448: 11,-4 - 1449: 21,10 - 1450: 11,16 - 1454: 21,19 - 1455: 27,19 - 1458: 21,21 - 1459: 23,22 - 1465: 16,23 - 1466: 12,22 - 1467: 12,21 - 1473: 18,-2 - 1476: 5,-8 - 1477: 5,-11 - 1483: -9,-4 - 1486: -4,-7 - 1487: -9,-9 - 1492: -17,-12 - 1493: -19,-12 - 1494: -19,-3 - 1497: -24,-6 - 1498: -24,-4 - 1501: -11,7 - 1506: -4,27 - 1507: -10,21 - 1508: -11,18 - 1509: -10,15 - 1510: -7,18 - 1512: -8,21 - 1513: -1,19 - 1514: -3,20 - 1522: -9,9 - 1524: -9,10 - 1525: -18,4 - 1530: -22,6 - 1531: -19,6 - 1532: -22,-8 - 1533: 12,-16 - 1569: 21,14 - 1620: -58,1 - 1621: -58,1 + 1273: -60,-13 + 1274: -60,-12 + 1275: -59,-12 + 1290: -18,34 + 1291: -20,34 + 1410: -50,-5 + 1411: -48,-3 + 1412: -47,-5 + 1413: -48,-5 + 1414: -55,-1 + 1415: -57,1 + 1416: -57,0 + 1417: -55,1 + 1418: -57,-2 + 1419: -57,-1 + 1420: -56,-3 + 1421: -56,-5 + 1422: -57,-5 + 1423: -55,-7 + 1424: -57,-7 + 1430: 38,-18 + 1431: 37,-23 + 1432: 30,-23 + 1441: 33,3 + 1442: 26,1 + 1443: 15,-1 + 1446: 11,-4 + 1447: 21,10 + 1448: 11,16 + 1452: 21,19 + 1453: 27,19 + 1456: 21,21 + 1457: 23,22 + 1463: 16,23 + 1464: 12,22 + 1465: 12,21 + 1471: 18,-2 + 1474: 5,-8 + 1475: 5,-11 + 1481: -9,-4 + 1484: -4,-7 + 1485: -9,-9 + 1490: -17,-12 + 1491: -19,-12 + 1492: -19,-3 + 1495: -24,-6 + 1496: -24,-4 + 1499: -11,7 + 1504: -4,27 + 1505: -10,21 + 1506: -11,18 + 1507: -10,15 + 1508: -7,18 + 1510: -8,21 + 1511: -1,19 + 1512: -3,20 + 1520: -9,9 + 1522: -9,10 + 1523: -18,4 + 1528: -22,6 + 1529: -19,6 + 1530: -22,-8 + 1531: 12,-16 + 1567: 21,14 + 1618: -58,1 + 1619: -58,1 + 1620: -60,1 + 1621: -60,1 1622: -60,1 1623: -60,1 - 1624: -60,1 - 1625: -60,1 + 1624: -58,-2 + 1625: -58,-2 1626: -58,-2 1627: -58,-2 1628: -58,-2 1629: -58,-2 1630: -58,-2 - 1631: -58,-2 - 1632: -58,-2 + 1631: -58,-3 + 1632: -58,-3 1633: -58,-3 - 1634: -58,-3 - 1635: -58,-3 - 1636: -57,-4 - 1637: -56,-2 - 1638: -57,-1 - 1639: -57,-8 - 1640: -56,-9 - 1641: -51,10 - 1642: -50,12 - 1643: -50,15 - 1644: -50,16 - 1645: -51,19 - 1646: -51,18 - 1647: -49,20 - 1648: -48,19 - 1649: -47,17 - 1650: -45,17 - 1708: -28,31 - 1709: -38,25 - 1710: -25,24 - 1711: -25,29 - 1712: -23,31 - 1713: -23,35 - 1714: -23,34 - 1715: -15,25 - 1716: -18,25 - 1717: -21,26 - 1718: -15,26 - 1739: -13,5 - 1740: -11,6 - 1754: 40,-20 - 1755: 39,-20 - 1756: 40,-18 - 1780: -8,38 - 1781: -5,36 - 1782: -5,35 - 1783: -9,36 - 1784: -8,35 - 1785: -8,33 - 1786: -12,33 - 1787: -17,34 - 1788: -15,36 - 1789: -15,38 - 1790: -14,38 - 1791: -12,39 - 1792: -13,35 - 1793: -12,36 - 1794: -8,39 - 1795: -6,29 - 1796: -4,31 - 1797: -4,33 - 1798: -4,34 - 1799: -5,33 - 1800: -6,33 - 1801: -1,34 - 1804: 2,32 - 1805: -2,29 - 1806: 0,32 - 1807: -33,35 - 1808: -33,34 - 1809: -33,36 - 1810: -33,38 - 1818: -20,-24 - 1819: -19,-24 - 1820: -19,-21 - 1821: -18,-24 - 1822: -17,-20 - 1823: -22,-26 - 1825: -7,-22 - 1826: -8,-21 - 1853: -32,0 - 2536: -14,-25 - 2539: 10,-27 - 2543: 9,-21 - 2546: 20,-32 - 2547: 19,-33 - 2556: 19,-26 - 2619: 11,-41 + 1634: -57,-4 + 1635: -56,-2 + 1636: -57,-1 + 1637: -57,-8 + 1638: -56,-9 + 1639: -51,10 + 1640: -50,12 + 1641: -50,15 + 1642: -50,16 + 1643: -51,19 + 1644: -51,18 + 1645: -49,20 + 1646: -48,19 + 1647: -47,17 + 1648: -45,17 + 1706: -28,31 + 1707: -38,25 + 1708: -25,24 + 1709: -25,29 + 1710: -23,31 + 1711: -23,35 + 1712: -23,34 + 1713: -15,25 + 1714: -18,25 + 1715: -21,26 + 1716: -15,26 + 1737: -13,5 + 1738: -11,6 + 1752: 40,-20 + 1753: 39,-20 + 1754: 40,-18 + 1778: -8,38 + 1779: -5,36 + 1780: -5,35 + 1781: -9,36 + 1782: -8,35 + 1783: -8,33 + 1784: -12,33 + 1785: -17,34 + 1786: -15,36 + 1787: -15,38 + 1788: -14,38 + 1789: -12,39 + 1790: -13,35 + 1791: -12,36 + 1792: -8,39 + 1793: -6,29 + 1794: -4,31 + 1795: -4,33 + 1796: -4,34 + 1797: -5,33 + 1798: -6,33 + 1799: -1,34 + 1802: 2,32 + 1803: -2,29 + 1804: 0,32 + 1805: -33,35 + 1806: -33,34 + 1807: -33,36 + 1808: -33,38 + 1816: -20,-24 + 1817: -19,-24 + 1818: -19,-21 + 1819: -18,-24 + 1820: -17,-20 + 1821: -22,-26 + 1823: -7,-22 + 1824: -8,-21 + 1851: -32,0 + 2533: -14,-25 + 2536: 10,-27 + 2540: 9,-21 + 2543: 20,-32 + 2544: 19,-33 + 2553: 19,-26 + 2616: 11,-41 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 2537: -14,-22 - 2548: 19,-27 - 2557: 20,-26 - 2587: -47,-15 - 2620: 11,-44 - 2624: 11,-37 + 2534: -14,-22 + 2545: 19,-27 + 2554: 20,-26 + 2584: -47,-15 + 2617: 11,-44 + 2621: 11,-37 - node: cleanable: True color: '#5D2C00D3' id: DirtLight decals: - 1854: -32,-1 - 1855: -33,5 + 1852: -32,-1 + 1853: -33,5 - node: cleanable: True color: '#792C00D1' id: DirtLight decals: - 1901: -8,-36 - 1902: -8,-23 - 1903: -8,-19 - 1904: -12,-18 - 1905: -13,-17 + 1898: -8,-36 + 1899: -8,-23 + 1900: -8,-19 + 1901: -12,-18 + 1902: -13,-17 - node: cleanable: True color: '#835432FF' id: DirtLight decals: - 2270: 28,-17 - 2272: 27,-17 + 2267: 28,-17 + 2269: 27,-17 - node: cleanable: True color: '#A0521263' id: DirtLight decals: - 1955: 19,7 - 2108: 25,-15 + 1952: 19,7 + 2105: 25,-15 - node: cleanable: True color: '#FF0000B7' id: DirtLight decals: - 1984: 20,6 + 1981: 20,6 - node: cleanable: True color: '#FF0000FF' id: DirtLight decals: - 1326: -50,-15 + 1325: -50,-15 - node: cleanable: True color: '#FFFCFFFF' id: DirtLight decals: - 2181: -12,-79 - 2182: -11,-78 - 2183: -8,-74 - 2184: -7,-78 - 2185: -8,-79 - 2186: -13,-76 - 2187: -18,-77 - 2188: -14,-73 - 2189: -17,-72 - 2190: -20,-78 - 2191: -22,-78 - 2192: -26,-75 - 2193: -22,-82 - 2194: -16,-82 - 2195: -11,-86 - 2196: -15,-88 - 2197: -20,-79 - 2198: -28,-80 - 2199: -17,-68 - 2200: -17,-65 - 2201: -17,-69 - 2202: -16,-73 - 2247: -17,-46 - 2248: -16,-42 - 2249: -12,-46 - 2250: -20,-46 - 2251: -17,-37 - 2252: -13,-40 - 2253: -21,-36 + 2178: -12,-79 + 2179: -11,-78 + 2180: -8,-74 + 2181: -7,-78 + 2182: -8,-79 + 2183: -13,-76 + 2184: -18,-77 + 2185: -14,-73 + 2186: -17,-72 + 2187: -20,-78 + 2188: -22,-78 + 2189: -26,-75 + 2190: -22,-82 + 2191: -16,-82 + 2192: -11,-86 + 2193: -15,-88 + 2194: -20,-79 + 2195: -28,-80 + 2196: -17,-68 + 2197: -17,-65 + 2198: -17,-69 + 2199: -16,-73 + 2244: -17,-46 + 2245: -16,-42 + 2246: -12,-46 + 2247: -20,-46 + 2248: -17,-37 + 2249: -13,-40 + 2250: -21,-36 - node: cleanable: True color: '#FFFFFFFF' @@ -2719,318 +2764,318 @@ entities: 890: 34,-4 891: 30,-4 892: 29,-5 - 1161: 41,8 - 1162: 39,9 + 1160: 41,8 + 1161: 39,9 + 1162: 39,13 1163: 39,13 - 1164: 39,13 - 1165: 36,17 - 1166: 34,19 - 1167: 32,21 - 1168: 34,24 - 1169: 30,22 - 1170: 32,23 - 1171: 44,13 - 1172: 44,12 - 1173: 44,11 - 1174: 54,11 - 1175: 50,6 - 1176: 52,6 - 1177: 55,6 - 1178: 56,8 - 1179: 59,11 - 1180: 55,16 - 1181: 54,14 - 1182: 54,16 - 1183: 45,13 - 1184: 41,13 - 1185: 42,13 - 1186: 36,9 - 1187: 42,16 - 1188: 29,10 - 1189: 36,8 - 1190: 21,6 - 1191: 29,6 - 1192: 14,0 - 1193: 17,-4 - 1194: 22,-2 - 1195: 9,-6 - 1196: 12,-10 - 1197: 16,-8 - 1198: 7,-12 - 1199: 1,-10 - 1200: 6,-20 - 1201: -1,-15 - 1202: -3,-21 - 1203: 11,-19 - 1204: 7,-23 - 1205: 1,-23 - 1206: -1,-30 - 1207: 7,-31 - 1208: -2,-32 - 1209: 0,-42 - 1210: -1,-36 - 1211: -15,-41 - 1212: -18,-36 - 1213: -8,-43 - 1214: -25,-39 - 1215: -18,-44 - 1216: -18,-35 - 1217: -15,-38 - 1218: -25,-31 - 1219: -12,-29 - 1220: -24,-28 - 1221: -35,-22 - 1222: -20,-20 - 1223: -26,-27 - 1224: -28,-20 - 1225: -36,-18 - 1226: -33,-8 - 1227: -29,-16 - 1228: -45,-10 - 1229: -43,-1 - 1230: -36,-8 - 1231: -42,-1 - 1232: -45,2 - 1233: -54,2 - 1234: -42,7 - 1235: -45,21 - 1236: -46,27 - 1237: -38,33 - 1238: -50,36 - 1239: -38,46 - 1240: -36,45 - 1241: -36,44 - 1242: -42,50 - 1243: -44,51 - 1244: -40,57 - 1245: -39,57 - 1246: -46,57 - 1247: -41,60 - 1248: -47,61 - 1249: -44,65 - 1250: -39,65 - 1277: -59,-7 - 1278: -61,-8 - 1279: -58,-3 - 1280: -59,-3 - 1281: -59,-1 - 1282: -59,0 - 1283: -58,-1 - 1284: -59,0 - 1285: -60,0 - 1286: -60,1 - 1287: -59,1 - 1293: -15,35 - 1294: -15,38 - 1295: -4,38 - 1296: -5,38 - 1439: 40,-4 - 1440: 39,1 - 1441: 33,1 - 1442: 34,3 - 1446: 14,-4 - 1447: 11,-5 - 1451: 10,15 - 1452: 23,10 - 1457: 22,22 - 1463: 23,25 - 1464: 17,25 - 1485: -6,-6 - 1488: -7,-10 - 1495: -24,1 - 1499: -25,-5 - 1511: -12,17 - 1519: -7,10 - 1520: -9,9 - 1521: -8,9 - 1526: -22,5 - 1527: -18,6 - 1528: -18,5 - 1529: -21,6 - 1534: 9,-16 - 1535: 9,-14 - 1536: 21,-13 - 1537: 20,-14 - 1538: 28,-19 - 1539: 38,-24 - 1540: 40,-19 - 1541: 37,-16 - 1542: 40,-11 - 1543: 37,-4 - 1544: 37,0 - 1545: 33,1 - 1546: 32,12 - 1547: 31,13 - 1548: 30,13 - 1568: 27,11 - 1570: 7,-11 - 1571: 8,-12 - 1572: 8,-13 - 1573: 8,-11 - 1574: 2,-6 - 1575: 4,-6 - 1576: 1,-7 - 1577: 3,-6 - 1578: 1,-2 - 1579: 1,-1 - 1580: -1,3 - 1581: -4,1 - 1582: -9,0 - 1583: -12,0 - 1584: -16,0 - 1585: -17,-2 - 1586: -18,-3 - 1587: -18,-6 - 1588: -18,-10 - 1589: -18,-12 - 1590: -17,-14 - 1591: -22,-13 - 1592: -22,-13 - 1593: -22,-15 - 1594: -30,-11 - 1595: -32,-9 - 1596: -34,-9 - 1597: -36,-10 - 1598: -37,-10 - 1599: -41,-10 - 1600: -43,-10 - 1601: -45,-10 - 1602: -38,-12 - 1603: -38,-12 - 1604: -38,-14 - 1605: -38,-14 - 1606: -41,-15 - 1607: -45,-11 - 1608: -49,-9 - 1609: -50,-10 - 1610: -51,-15 - 1611: -53,-14 - 1612: -50,-15 - 1613: -53,-13 - 1614: -56,-12 - 1615: -57,-10 - 1616: -55,-9 - 1617: -55,-8 - 1618: -56,-8 - 1619: -55,-9 - 1651: -51,15 - 1652: -51,14 - 1653: -49,13 - 1654: -48,13 - 1655: -47,13 - 1656: -47,16 - 1657: -47,19 - 1658: -48,21 - 1659: -47,23 - 1660: -50,23 - 1661: -50,22 - 1662: -42,13 - 1663: -43,12 - 1664: -43,10 - 1665: -42,11 - 1666: -42,14 - 1667: -42,18 - 1668: -43,19 - 1669: -43,21 - 1670: -43,22 - 1671: -42,22 - 1672: -41,19 - 1673: -41,17 - 1674: -41,16 - 1675: -41,14 - 1676: -41,13 - 1677: -40,27 - 1678: -39,26 - 1679: -39,29 - 1680: -35,27 - 1681: -39,26 - 1682: -40,26 - 1683: -41,33 - 1684: -45,33 - 1685: -48,33 - 1686: -49,34 - 1687: -51,34 - 1688: -51,33 - 1689: -50,39 - 1690: -49,40 - 1691: -48,40 - 1692: -48,40 - 1693: -36,37 - 1694: -37,37 - 1695: -37,37 - 1696: -37,36 - 1697: -37,36 - 1698: -36,36 - 1699: -37,34 - 1700: -37,32 - 1701: -32,25 - 1702: -33,25 - 1703: -33,25 - 1719: -14,27 - 1720: -20,25 - 1721: -14,26 - 1722: -23,25 - 1723: -24,22 - 1724: -23,31 - 1725: -25,31 - 1726: -25,29 - 1728: -23,36 - 1729: -24,33 - 1730: -24,22 - 1731: -24,16 - 1732: -24,15 - 1733: -24,14 - 1734: -26,11 - 1735: -26,11 - 1736: -26,8 - 1741: -10,5 - 1742: -16,4 - 1743: -14,3 - 1744: -14,6 - 1745: -14,6 - 1746: -15,-1 - 1757: 30,-20 - 1758: 28,-20 - 1759: 28,-19 - 1760: 25,-8 - 1761: 25,-8 - 1762: 25,-6 - 1763: 24,-8 - 1764: 24,-6 - 1765: 24,-3 - 1766: 24,-3 - 1767: 26,-6 - 1768: 22,7 - 1769: 14,7 - 1770: 13,8 - 1771: 11,8 - 1772: 12,10 - 1773: 12,10 - 1774: 10,10 - 1775: 10,12 - 1776: 8,11 - 1777: 7,9 - 1778: 6,7 - 1829: -3,-28 - 1830: -5,-28 - 1831: -5,-23 - 1832: -5,-27 - 1833: -3,-29 - 1834: -2,-28 - 1835: 0,-24 - 1836: -1,-23 - 1837: 1,-24 - 2540: 12,-23 - 2541: 9,-20 - 2558: 20,-28 - 2559: 17,-26 - 2560: 16,-31 - 2561: 12,-14 - 2562: 9,-14 - 2563: 4,-14 - 2564: 14,-22 - 2588: -46,-16 - 2621: 11,-43 + 1164: 36,17 + 1165: 34,19 + 1166: 32,21 + 1167: 34,24 + 1168: 30,22 + 1169: 32,23 + 1170: 44,13 + 1171: 44,12 + 1172: 44,11 + 1173: 54,11 + 1174: 50,6 + 1175: 52,6 + 1176: 55,6 + 1177: 56,8 + 1178: 59,11 + 1179: 55,16 + 1180: 54,14 + 1181: 54,16 + 1182: 45,13 + 1183: 41,13 + 1184: 42,13 + 1185: 36,9 + 1186: 42,16 + 1187: 29,10 + 1188: 36,8 + 1189: 21,6 + 1190: 29,6 + 1191: 14,0 + 1192: 17,-4 + 1193: 22,-2 + 1194: 9,-6 + 1195: 12,-10 + 1196: 16,-8 + 1197: 7,-12 + 1198: 1,-10 + 1199: 6,-20 + 1200: -1,-15 + 1201: -3,-21 + 1202: 11,-19 + 1203: 7,-23 + 1204: 1,-23 + 1205: -1,-30 + 1206: 7,-31 + 1207: -2,-32 + 1208: 0,-42 + 1209: -1,-36 + 1210: -15,-41 + 1211: -18,-36 + 1212: -8,-43 + 1213: -25,-39 + 1214: -18,-44 + 1215: -18,-35 + 1216: -15,-38 + 1217: -25,-31 + 1218: -12,-29 + 1219: -24,-28 + 1220: -35,-22 + 1221: -20,-20 + 1222: -26,-27 + 1223: -28,-20 + 1224: -36,-18 + 1225: -33,-8 + 1226: -29,-16 + 1227: -45,-10 + 1228: -43,-1 + 1229: -36,-8 + 1230: -42,-1 + 1231: -45,2 + 1232: -54,2 + 1233: -42,7 + 1234: -45,21 + 1235: -46,27 + 1236: -38,33 + 1237: -50,36 + 1238: -38,46 + 1239: -36,45 + 1240: -36,44 + 1241: -42,50 + 1242: -44,51 + 1243: -40,57 + 1244: -39,57 + 1245: -46,57 + 1246: -41,60 + 1247: -47,61 + 1248: -44,65 + 1249: -39,65 + 1276: -59,-7 + 1277: -61,-8 + 1278: -58,-3 + 1279: -59,-3 + 1280: -59,-1 + 1281: -59,0 + 1282: -58,-1 + 1283: -59,0 + 1284: -60,0 + 1285: -60,1 + 1286: -59,1 + 1292: -15,35 + 1293: -15,38 + 1294: -4,38 + 1295: -5,38 + 1437: 40,-4 + 1438: 39,1 + 1439: 33,1 + 1440: 34,3 + 1444: 14,-4 + 1445: 11,-5 + 1449: 10,15 + 1450: 23,10 + 1455: 22,22 + 1461: 23,25 + 1462: 17,25 + 1483: -6,-6 + 1486: -7,-10 + 1493: -24,1 + 1497: -25,-5 + 1509: -12,17 + 1517: -7,10 + 1518: -9,9 + 1519: -8,9 + 1524: -22,5 + 1525: -18,6 + 1526: -18,5 + 1527: -21,6 + 1532: 9,-16 + 1533: 9,-14 + 1534: 21,-13 + 1535: 20,-14 + 1536: 28,-19 + 1537: 38,-24 + 1538: 40,-19 + 1539: 37,-16 + 1540: 40,-11 + 1541: 37,-4 + 1542: 37,0 + 1543: 33,1 + 1544: 32,12 + 1545: 31,13 + 1546: 30,13 + 1566: 27,11 + 1568: 7,-11 + 1569: 8,-12 + 1570: 8,-13 + 1571: 8,-11 + 1572: 2,-6 + 1573: 4,-6 + 1574: 1,-7 + 1575: 3,-6 + 1576: 1,-2 + 1577: 1,-1 + 1578: -1,3 + 1579: -4,1 + 1580: -9,0 + 1581: -12,0 + 1582: -16,0 + 1583: -17,-2 + 1584: -18,-3 + 1585: -18,-6 + 1586: -18,-10 + 1587: -18,-12 + 1588: -17,-14 + 1589: -22,-13 + 1590: -22,-13 + 1591: -22,-15 + 1592: -30,-11 + 1593: -32,-9 + 1594: -34,-9 + 1595: -36,-10 + 1596: -37,-10 + 1597: -41,-10 + 1598: -43,-10 + 1599: -45,-10 + 1600: -38,-12 + 1601: -38,-12 + 1602: -38,-14 + 1603: -38,-14 + 1604: -41,-15 + 1605: -45,-11 + 1606: -49,-9 + 1607: -50,-10 + 1608: -51,-15 + 1609: -53,-14 + 1610: -50,-15 + 1611: -53,-13 + 1612: -56,-12 + 1613: -57,-10 + 1614: -55,-9 + 1615: -55,-8 + 1616: -56,-8 + 1617: -55,-9 + 1649: -51,15 + 1650: -51,14 + 1651: -49,13 + 1652: -48,13 + 1653: -47,13 + 1654: -47,16 + 1655: -47,19 + 1656: -48,21 + 1657: -47,23 + 1658: -50,23 + 1659: -50,22 + 1660: -42,13 + 1661: -43,12 + 1662: -43,10 + 1663: -42,11 + 1664: -42,14 + 1665: -42,18 + 1666: -43,19 + 1667: -43,21 + 1668: -43,22 + 1669: -42,22 + 1670: -41,19 + 1671: -41,17 + 1672: -41,16 + 1673: -41,14 + 1674: -41,13 + 1675: -40,27 + 1676: -39,26 + 1677: -39,29 + 1678: -35,27 + 1679: -39,26 + 1680: -40,26 + 1681: -41,33 + 1682: -45,33 + 1683: -48,33 + 1684: -49,34 + 1685: -51,34 + 1686: -51,33 + 1687: -50,39 + 1688: -49,40 + 1689: -48,40 + 1690: -48,40 + 1691: -36,37 + 1692: -37,37 + 1693: -37,37 + 1694: -37,36 + 1695: -37,36 + 1696: -36,36 + 1697: -37,34 + 1698: -37,32 + 1699: -32,25 + 1700: -33,25 + 1701: -33,25 + 1717: -14,27 + 1718: -20,25 + 1719: -14,26 + 1720: -23,25 + 1721: -24,22 + 1722: -23,31 + 1723: -25,31 + 1724: -25,29 + 1726: -23,36 + 1727: -24,33 + 1728: -24,22 + 1729: -24,16 + 1730: -24,15 + 1731: -24,14 + 1732: -26,11 + 1733: -26,11 + 1734: -26,8 + 1739: -10,5 + 1740: -16,4 + 1741: -14,3 + 1742: -14,6 + 1743: -14,6 + 1744: -15,-1 + 1755: 30,-20 + 1756: 28,-20 + 1757: 28,-19 + 1758: 25,-8 + 1759: 25,-8 + 1760: 25,-6 + 1761: 24,-8 + 1762: 24,-6 + 1763: 24,-3 + 1764: 24,-3 + 1765: 26,-6 + 1766: 22,7 + 1767: 14,7 + 1768: 13,8 + 1769: 11,8 + 1770: 12,10 + 1771: 12,10 + 1772: 10,10 + 1773: 10,12 + 1774: 8,11 + 1775: 7,9 + 1776: 6,7 + 1827: -3,-28 + 1828: -5,-28 + 1829: -5,-23 + 1830: -5,-27 + 1831: -3,-29 + 1832: -2,-28 + 1833: 0,-24 + 1834: -1,-23 + 1835: 1,-24 + 2537: 12,-23 + 2538: 9,-20 + 2555: 20,-28 + 2556: 17,-26 + 2557: 16,-31 + 2558: 12,-14 + 2559: 9,-14 + 2560: 4,-14 + 2561: 14,-22 + 2585: -46,-16 + 2618: 11,-43 - node: cleanable: True angle: 1.5707963267948966 rad @@ -3044,45 +3089,45 @@ entities: color: '#FFFFFFFF' id: DirtLight decals: - 2005: -17,26 + 2002: -17,26 - node: cleanable: True color: '#5D2C00D3' id: DirtMedium decals: - 1860: -35,7 - 1861: -38,5 - 1862: -42,5 - 1863: -41,10 - 1864: -44,13 - 1865: -41,17 - 1866: -51,11 + 1858: -35,7 + 1859: -38,5 + 1860: -42,5 + 1861: -41,10 + 1862: -44,13 + 1863: -41,17 + 1864: -51,11 - node: cleanable: True color: '#8354329E' id: DirtMedium decals: - 2276: 25,-15 + 2273: 25,-15 - node: cleanable: True color: '#835432FF' id: DirtMedium decals: - 2271: 27,-16 - 2273: 28,-17 + 2268: 27,-16 + 2270: 28,-17 - node: cleanable: True color: '#FF0000FF' id: DirtMedium decals: - 1325: -57,-10 + 1324: -57,-10 - node: cleanable: True color: '#FFFFFFF7' id: DirtMedium decals: - 1343: -33,0 - 1344: -34,0 + 1342: -33,0 + 1343: -34,0 - node: cleanable: True color: '#FFFFFFFF' @@ -3110,153 +3155,186 @@ entities: 902: 35,-6 903: 36,-6 1040: 21,-16 - 1113: -18,-19 - 1114: -15,-13 - 1115: -18,-9 - 1116: -17,-3 - 1117: -19,0 - 1118: -5,5 - 1119: -1,25 - 1120: 1,26 - 1121: 2,26 - 1122: 5,29 - 1123: 6,29 - 1124: 9,30 - 1125: 14,30 - 1126: 18,28 - 1127: 20,28 - 1128: 23,28 - 1129: 26,28 - 1130: 29,28 - 1131: 30,27 - 1132: 31,25 - 1133: 31,24 - 1134: 32,22 - 1135: 34,20 - 1136: 33,18 - 1137: 34,18 - 1138: 36,17 - 1139: 37,16 - 1140: 38,15 - 1141: 40,15 - 1142: 40,14 - 1143: 40,13 - 1144: 41,10 - 1145: 40,9 - 1146: 42,7 + 1112: -18,-19 + 1113: -15,-13 + 1114: -18,-9 + 1115: -17,-3 + 1116: -19,0 + 1117: -5,5 + 1118: -1,25 + 1119: 1,26 + 1120: 2,26 + 1121: 5,29 + 1122: 6,29 + 1123: 9,30 + 1124: 14,30 + 1125: 18,28 + 1126: 20,28 + 1127: 23,28 + 1128: 26,28 + 1129: 29,28 + 1130: 30,27 + 1131: 31,25 + 1132: 31,24 + 1133: 32,22 + 1134: 34,20 + 1135: 33,18 + 1136: 34,18 + 1137: 36,17 + 1138: 37,16 + 1139: 38,15 + 1140: 40,15 + 1141: 40,14 + 1142: 40,13 + 1143: 41,10 + 1144: 40,9 + 1145: 42,7 + 1146: 41,7 1147: 41,7 - 1148: 41,7 - 1149: 41,6 + 1148: 41,6 + 1149: 40,6 1150: 40,6 - 1151: 40,6 - 1152: 41,6 + 1151: 41,6 + 1152: 41,4 1153: 41,4 - 1154: 41,4 - 1155: 39,5 - 1156: 39,6 + 1154: 39,5 + 1155: 39,6 + 1156: 39,7 1157: 39,7 - 1158: 39,7 - 1159: 39,9 - 1160: 39,8 - 1264: -56,-17 - 1265: -57,-17 - 1266: -57,-18 - 1297: -13,38 - 1298: -13,39 - 1301: -25,10 - 1302: -26,6 - 1303: -25,1 - 1304: -16,2 - 1305: -8,6 - 1306: -11,10 - 1307: -14,10 - 1308: -19,11 - 1309: -19,10 - 1310: -13,15 - 1311: -15,14 - 1312: -14,15 - 1313: -14,14 - 1314: -13,14 - 1350: -32.07212,17.987146 - 1351: -32.00962,18.987146 - 1352: -32.056496,20.268396 - 1353: -30.94712,19.987146 - 1354: -31.00962,18.768396 - 1355: -32.04087,17.940271 - 1356: -32.04087,19.143396 - 1357: -31.91587,19.940271 - 1409: -54,-5 - 1410: -54,-3 - 1411: -50,-3 - 1427: -55,-10 - 1428: -57,-5 - 1435: 38,-22 - 1436: 39,-17 - 1437: 38,-11 - 1438: 40,-9 - 1453: 23,19 - 1456: 25,19 - 1460: 22,21 - 1461: 20,24 - 1462: 20,26 - 1468: 13,21 - 1469: 10,21 - 1470: 12,14 - 1478: 6,-8 - 1479: 6,-6 - 1480: 6,-7 - 1481: -2,-1 - 1484: -6,-4 - 1500: -22,-5 - 1515: -10,10 - 1516: -8,12 - 1517: -7,10 - 1518: -7,10 - 1549: 37,12 + 1158: 39,9 + 1159: 39,8 + 1263: -56,-17 + 1264: -57,-17 + 1265: -57,-18 + 1296: -13,38 + 1297: -13,39 + 1300: -25,10 + 1301: -26,6 + 1302: -25,1 + 1303: -16,2 + 1304: -8,6 + 1305: -11,10 + 1306: -14,10 + 1307: -19,11 + 1308: -19,10 + 1309: -13,15 + 1310: -15,14 + 1311: -14,15 + 1312: -14,14 + 1313: -13,14 + 1349: -32.07212,17.987146 + 1350: -32.00962,18.987146 + 1351: -32.056496,20.268396 + 1352: -30.94712,19.987146 + 1353: -31.00962,18.768396 + 1354: -32.04087,17.940271 + 1355: -32.04087,19.143396 + 1356: -31.91587,19.940271 + 1407: -54,-5 + 1408: -54,-3 + 1409: -50,-3 + 1425: -55,-10 + 1426: -57,-5 + 1433: 38,-22 + 1434: 39,-17 + 1435: 38,-11 + 1436: 40,-9 + 1451: 23,19 + 1454: 25,19 + 1458: 22,21 + 1459: 20,24 + 1460: 20,26 + 1466: 13,21 + 1467: 10,21 + 1468: 12,14 + 1476: 6,-8 + 1477: 6,-6 + 1478: 6,-7 + 1479: -2,-1 + 1482: -6,-4 + 1498: -22,-5 + 1513: -10,10 + 1514: -8,12 + 1515: -7,10 + 1516: -7,10 + 1547: 37,12 + 1548: 30,12 + 1549: 31,12 1550: 30,12 - 1551: 31,12 - 1552: 30,12 - 1553: 26,11 - 1554: 26,14 - 1555: 26,16 - 1556: 22,15 - 1557: 22,18 - 1558: 22,12 - 1559: 17,16 - 1560: 13,16 - 1561: 10,12 - 1562: 8,9 - 1563: 13,19 - 1564: 12,22 - 1565: 13,25 - 1566: 9,25 - 1567: 10,25 - 1753: 40,-10 - 1879: 34,-15 - 1880: 33,-17 - 1881: 25,-5 - 1882: 26,-4 - 2538: -12,-23 - 2542: 12,-28 + 1551: 26,11 + 1552: 26,14 + 1553: 26,16 + 1554: 22,15 + 1555: 22,18 + 1556: 22,12 + 1557: 17,16 + 1558: 13,16 + 1559: 10,12 + 1560: 8,9 + 1561: 13,19 + 1562: 12,22 + 1563: 13,25 + 1564: 9,25 + 1565: 10,25 + 1751: 40,-10 + 1877: 34,-15 + 1878: 33,-17 + 1879: 25,-5 + 1880: 26,-4 + 2535: -12,-23 + 2539: 12,-28 + 2659: -5,-48 + 2660: -4,-47 + 2661: 1,-46 + 2662: -1,-46 + 2663: -3,-48 + 2664: -3,-40 + 2665: 1,-43 + 2666: -3,-39 + 2667: -6,-40 + 2668: -7,-40 + 2669: -8,-40 + 2670: -6,-38 + 2671: -3,-39 + 2672: 1,-43 + 2673: 1,-39 + 2674: 0,-38 + 2675: -3,-42 + 2676: 2,-44 + 2677: -1,-47 + 2678: -3,-48 + 2679: 0,-50 + 2680: -3,-51 + 2681: -3,-51 + 2682: -4,-50 + 2683: -6,-50 + 2684: -8,-49 + 2685: -9,-48 + 2686: -8,-49 + 2687: -8,-51 + 2688: -8,-52 + 2689: -8,-52 + 2690: 0,-52 + 2691: 1,-51 - node: color: '#FFFFFFFF' id: FlowersBROne decals: 962: -28,24 963: -17,32 - 1346: -4,39 + 1345: -4,39 - node: cleanable: True color: '#FFFFFFFF' id: FlowersBROne decals: - 2303: -20,4 + 2300: -20,4 - node: color: '#FFFFFFFF' id: FlowersBRTwo decals: 915: -2,-3 - 1345: -16,39 + 1344: -16,39 - node: color: '#FFFFFFFF' id: Flowersbr1 @@ -3276,7 +3354,7 @@ entities: 917: 2,2 965: -18,27 977: 34,-19 - 2112: -15.033748,27.036722 + 2109: -15.033748,27.036722 - node: color: '#FFFFFFFF' id: Flowerspv3 @@ -3294,7 +3372,7 @@ entities: id: Flowersy2 decals: 911: -2,-2 - 2111: -16.064997,26.932484 + 2108: -16.064997,26.932484 - node: color: '#FFFFFFFF' id: Flowersy3 @@ -3307,7 +3385,7 @@ entities: color: '#FFFFFFFF' id: Flowersy3 decals: - 2304: -19,4 + 2301: -19,4 - node: color: '#52B4E996' id: FullTileOverlayGreyscale @@ -3333,29 +3411,29 @@ entities: 788: 24,25 789: 24,26 790: 25,26 - 2305: 26,24 - 2306: 26,26 - 2307: 26,25 + 2302: 26,24 + 2303: 26,26 + 2304: 26,25 - node: cleanable: True color: '#52B4E996' id: FullTileOverlayGreyscale decals: - 1327: -31,-1 - 1328: -34,-1 - 1329: -33,-1 - 1330: -31,0 - 1331: -34,0 - 1332: -33,0 - 1333: -34,1 - 1334: -33,1 - 1335: -31,1 - 1336: -31,2 - 1337: -33,2 - 1338: -34,2 - 1339: -34,3 - 1340: -33,3 - 1341: -31,3 + 1326: -31,-1 + 1327: -34,-1 + 1328: -33,-1 + 1329: -31,0 + 1330: -34,0 + 1331: -33,0 + 1332: -34,1 + 1333: -33,1 + 1334: -31,1 + 1335: -31,2 + 1336: -33,2 + 1337: -34,2 + 1338: -34,3 + 1339: -33,3 + 1340: -31,3 - node: color: '#9FED5896' id: FullTileOverlayGreyscale @@ -3379,80 +3457,80 @@ entities: color: '#EFB34196' id: FullTileOverlayGreyscale decals: - 2141: -26,-80 - 2142: -25,-80 - 2143: -25,-74 - 2144: -26,-74 - 2145: -31,-77 + 2138: -26,-80 + 2139: -25,-80 + 2140: -25,-74 + 2141: -26,-74 + 2142: -31,-77 - node: color: '#FFFFFFFF' id: Grassa2 decals: - 1377: -62.547764,-5.606035 - 1431: -50,5 + 1376: -62.547764,-5.606035 + 1429: -50,5 - node: cleanable: True color: '#FFFFFFFF' id: Grassa4 decals: - 2297: -19,3 - 2298: -21,4 - 2299: -22,3 + 2294: -19,3 + 2295: -21,4 + 2296: -22,3 - node: color: '#FFFFFFFF' id: Grassb4 decals: - 1369: -61.648212,-5.625451 - 1370: -60.616962,-5.625451 + 1368: -61.648212,-5.625451 + 1369: -60.616962,-5.625451 - node: color: '#FFFFFFFF' id: Grassd1 decals: - 1363: -61.632587,-7.500451 - 1364: -59.273212,-9.375451 - 1368: -60.866962,-6.812951 + 1362: -61.632587,-7.500451 + 1363: -59.273212,-9.375451 + 1367: -60.866962,-6.812951 - node: color: '#FFFFFFFF' id: Grassd2 decals: - 1386: -62.77488,-9.999852 + 1385: -62.77488,-9.999852 - node: cleanable: True color: '#FFFFFFFF' id: Grassd2 decals: - 2300: -21,3 + 2297: -21,3 - node: color: '#FFFFFFFF' id: Grassd3 decals: - 1371: -60.788837,-9.828576 - 1372: -61.304462,-10.078576 + 1370: -60.788837,-9.828576 + 1371: -61.304462,-10.078576 - node: color: '#FFFFFFFF' id: Grasse2 decals: - 1365: -61.663837,-9.953576 - 1366: -59.320087,-7.359826 - 1367: -59.523212,-6.828576 - 1378: -63.25089,-6.387285 - 1379: -63.266514,-5.68416 - 1380: -62.735264,-6.262285 - 1381: -63.28214,-7.387285 + 1364: -61.663837,-9.953576 + 1365: -59.320087,-7.359826 + 1366: -59.523212,-6.828576 + 1377: -63.25089,-6.387285 + 1378: -63.266514,-5.68416 + 1379: -62.735264,-6.262285 + 1380: -63.28214,-7.387285 - node: color: '#FFFFFFFF' id: Grasse3 decals: - 1373: -58.820087,-10.078576 - 1374: -58.773212,-9.578576 - 1375: -58.429462,-9.406701 - 1376: -58.570087,-8.687951 + 1372: -58.820087,-10.078576 + 1373: -58.773212,-9.578576 + 1374: -58.429462,-9.406701 + 1375: -58.570087,-8.687951 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineN decals: - 2392: -47,-17 - 2393: -48,-17 + 2389: -47,-17 + 2390: -48,-17 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale @@ -3464,53 +3542,53 @@ entities: 470: -3,27 471: -6,31 472: -5,31 - 1727: -4,31 + 1725: -4,31 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale decals: - 2346: 12,2 - 2347: 13,2 - 2505: 17,1 - 2506: 19,1 - 2507: 21,1 + 2343: 12,2 + 2344: 13,2 + 2502: 17,1 + 2503: 19,1 + 2504: 21,1 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale decals: - 2321: -23,1 - 2322: -13,1 - 2328: -11,1 - 2329: -9,1 - 2330: -7,1 - 2340: -19,1 - 2341: -17,1 - 2342: -15,1 + 2318: -23,1 + 2319: -13,1 + 2325: -11,1 + 2326: -9,1 + 2327: -7,1 + 2337: -19,1 + 2338: -17,1 + 2339: -15,1 - node: color: '#A4610696' id: HalfTileOverlayGreyscale decals: - 2459: 13,-13 - 2481: 15,-25 - 2482: 16,-25 - 2483: 17,-25 - 2495: 5,-3 - 2496: 6,-3 - 2497: 7,-3 - 2498: 8,-3 + 2456: 13,-13 + 2478: 15,-25 + 2479: 16,-25 + 2480: 17,-25 + 2492: 5,-3 + 2493: 6,-3 + 2494: 7,-3 + 2495: 8,-3 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale decals: - 2502: 27,2 + 2499: 27,2 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale decals: - 2520: -14,-24 - 2521: -13,-24 - 2522: -12,-24 - 2523: -11,-24 + 2517: -14,-24 + 2518: -13,-24 + 2519: -12,-24 + 2520: -11,-24 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale180 @@ -3522,29 +3600,29 @@ entities: color: '#A4610696' id: HalfTileOverlayGreyscale180 decals: - 2419: 14,-2 - 2420: 11,-2 - 2452: 6,-14 - 2453: 4,-14 - 2454: 3,-14 - 2456: 7,-14 - 2464: 13,-11 - 2475: 15,-33 - 2476: 16,-33 - 2477: 17,-33 - 2478: 19,-33 - 2479: 20,-33 - 2480: 21,-33 - 2485: 7,-8 - 2486: 6,-8 - 2487: 5,-8 - 2488: 4,-8 - 2489: 3,-8 - 2490: 2,-8 - 2494: 8,-8 - 2630: 5,-1 - 2631: 7,-1 - 2632: 9,-1 + 2416: 14,-2 + 2417: 11,-2 + 2449: 6,-14 + 2450: 4,-14 + 2451: 3,-14 + 2453: 7,-14 + 2461: 13,-11 + 2472: 15,-33 + 2473: 16,-33 + 2474: 17,-33 + 2475: 19,-33 + 2476: 20,-33 + 2477: 21,-33 + 2482: 7,-8 + 2483: 6,-8 + 2484: 5,-8 + 2485: 4,-8 + 2486: 3,-8 + 2487: 2,-8 + 2491: 8,-8 + 2627: 5,-1 + 2628: 7,-1 + 2629: 9,-1 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale180 @@ -3566,45 +3644,45 @@ entities: 289: 3,-29 290: 4,-29 291: 5,-29 - 1845: 2,-29 - 2509: -15,-20 - 2510: -14,-20 - 2511: -13,-20 - 2512: -12,-20 - 2524: -14,-23 - 2525: -13,-23 - 2526: -12,-23 - 2527: -11,-23 + 1843: 2,-29 + 2506: -15,-20 + 2507: -14,-20 + 2508: -13,-20 + 2509: -12,-20 + 2521: -14,-23 + 2522: -13,-23 + 2523: -12,-23 + 2524: -11,-23 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale270 decals: 476: -21,35 - 1737: -21,33 - 1738: -21,34 - 2626: 23,-5 - 2627: 23,-4 + 1735: -21,33 + 1736: -21,34 + 2623: 23,-5 + 2624: 23,-4 - node: color: '#9FED5896' id: HalfTileOverlayGreyscale270 decals: - 2262: 24,-16 - 2263: 24,-15 - 2264: 24,-14 - 2265: 24,-13 - 2266: 24,-12 - 2331: -6,2 - 2332: -6,4 - 2333: -5,8 - 2334: -5,10 - 2335: -5,12 - 2336: -5,14 + 2259: 24,-16 + 2260: 24,-15 + 2261: 24,-14 + 2262: 24,-13 + 2263: 24,-12 + 2328: -6,2 + 2329: -6,4 + 2330: -5,8 + 2331: -5,10 + 2332: -5,12 + 2333: -5,14 - node: color: '#A4610696' id: HalfTileOverlayGreyscale270 decals: - 2492: 1,-7 - 2493: 1,-6 + 2489: 1,-7 + 2490: 1,-6 - node: color: '#D381C996' id: HalfTileOverlayGreyscale270 @@ -3615,10 +3693,10 @@ entities: 492: -25,30 493: -25,25 494: -25,24 - 2146: -18,-79 - 2147: -18,-78 - 2148: -18,-76 - 2149: -18,-75 + 2143: -18,-79 + 2144: -18,-78 + 2145: -18,-76 + 2146: -18,-75 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 @@ -3641,14 +3719,14 @@ entities: 360: -5,-19 361: -5,-17 362: -5,-18 - 2135: -30,-76 - 2136: -30,-75 - 2137: -30,-74 - 2138: -30,-78 - 2139: -30,-79 - 2140: -30,-80 - 2528: -15,-22 - 2529: -15,-25 + 2132: -30,-76 + 2133: -30,-75 + 2134: -30,-74 + 2135: -30,-78 + 2136: -30,-79 + 2137: -30,-80 + 2525: -15,-22 + 2526: -15,-25 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale90 @@ -3675,22 +3753,22 @@ entities: color: '#9FED5896' id: HalfTileOverlayGreyscale90 decals: - 2323: -24,2 + 2320: -24,2 - node: color: '#A4610696' id: HalfTileOverlayGreyscale90 decals: - 2438: 12,-25 - 2439: 12,-24 - 2440: 12,-23 + 2435: 12,-25 + 2436: 12,-24 + 2437: 12,-23 - node: color: '#D381C996' id: HalfTileOverlayGreyscale90 decals: - 2150: -15,-75 - 2151: -15,-76 - 2152: -15,-78 - 2153: -15,-79 + 2147: -15,-75 + 2148: -15,-76 + 2149: -15,-78 + 2150: -15,-79 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale90 @@ -3712,30 +3790,30 @@ entities: 373: -7,-28 374: -7,-29 981: -7,-16 - 2127: -27,-78 - 2128: -27,-79 - 2129: -27,-80 - 2130: -27,-81 - 2131: -27,-76 - 2132: -27,-75 - 2133: -27,-74 - 2134: -27,-73 - 2513: -11,-19 - 2514: -11,-18 - 2515: -11,-17 - 2516: -11,-16 + 2124: -27,-78 + 2125: -27,-79 + 2126: -27,-80 + 2127: -27,-81 + 2128: -27,-76 + 2129: -27,-75 + 2130: -27,-74 + 2131: -27,-73 + 2510: -11,-19 + 2511: -11,-18 + 2512: -11,-17 + 2513: -11,-16 - node: color: '#FFFFFFFF' id: LoadingArea decals: - 2354: 22,-32 + 2351: 22,-32 - node: cleanable: True angle: -3.141592653589793 rad color: '#FFFFFFFF' id: LoadingAreaGreyscale decals: - 2383: 18,-31 + 2380: 18,-31 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' @@ -3789,7 +3867,7 @@ entities: color: '#FFFFFFFF' id: OldConcreteTrimLineN decals: - 2600: -46,-17 + 2597: -46,-17 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale @@ -3820,8 +3898,8 @@ entities: decals: 1029: 17,-5 1030: 17,-4 - 2327: -6,1 - 2338: -6,6 + 2324: -6,1 + 2335: -6,6 - node: color: '#9FED58FF' id: QuarterTileOverlayGreyscale @@ -3834,12 +3912,12 @@ entities: color: '#A4610696' id: QuarterTileOverlayGreyscale decals: - 2460: 14,-13 + 2457: 14,-13 - node: color: '#DE3A3A96' id: QuarterTileOverlayGreyscale decals: - 2325: -19,-4 + 2322: -19,-4 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale180 @@ -3873,12 +3951,12 @@ entities: color: '#A4610696' id: QuarterTileOverlayGreyscale180 decals: - 2442: 12,-27 - 2443: 12,-22 - 2455: 7,-12 - 2458: 8,-11 - 2462: 12,-11 - 2634: 15,-1 + 2439: 12,-27 + 2440: 12,-22 + 2452: 7,-12 + 2455: 8,-11 + 2459: 12,-11 + 2631: 15,-1 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale270 @@ -3890,7 +3968,7 @@ entities: 834: 8,22 835: 8,18 836: 8,17 - 2628: 23,-3 + 2625: 23,-3 - node: color: '#334E6DFF' id: QuarterTileOverlayGreyscale270 @@ -3911,13 +3989,13 @@ entities: color: '#9FED5896' id: QuarterTileOverlayGreyscale270 decals: - 2339: -6,5 + 2336: -6,5 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale270 decals: - 2463: 14,-11 - 2633: 10,-1 + 2460: 14,-11 + 2630: 10,-1 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale270 @@ -3930,7 +4008,7 @@ entities: id: QuarterTileOverlayGreyscale270 decals: 187: -19,-1 - 2326: -19,-5 + 2323: -19,-5 - node: color: '#EFB34196' id: QuarterTileOverlayGreyscale270 @@ -3965,14 +4043,14 @@ entities: color: '#9FED5896' id: QuarterTileOverlayGreyscale90 decals: - 2324: -24,1 + 2321: -24,1 - node: color: '#A4610696' id: QuarterTileOverlayGreyscale90 decals: - 2441: 12,-26 - 2457: 7,-13 - 2461: 12,-13 + 2438: 12,-26 + 2454: 7,-13 + 2458: 12,-13 - node: color: '#D381C996' id: QuarterTileOverlayGreyscale90 @@ -3991,18 +4069,18 @@ entities: color: '#FFFFFFFF' id: Rock02 decals: - 1382: -61.96964,-10.30916 + 1381: -61.96964,-10.30916 - node: color: '#FFFFFFFF' id: Rock05 decals: - 1383: -62.90714,-5.93416 + 1382: -62.90714,-5.93416 - node: color: '#FFFFFFFF' id: Rust decals: - 1429: -59,-5 - 1430: -58,-5 + 1427: -59,-5 + 1428: -58,-5 - node: color: '#FFFFFFFF' id: SpaceStationSign1 @@ -4044,84 +4122,84 @@ entities: decals: 236: -38,-11 237: -39,-11 - 1406: -52,-10 - 1407: -52,-9 - 2309: 25,24 + 1404: -52,-10 + 1405: -52,-9 + 2306: 25,24 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: StandClear decals: - 2310: 26,25 + 2307: 26,25 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: StandClear decals: - 2311: 25,26 + 2308: 25,26 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: StandClear decals: - 2312: 24,25 + 2309: 24,25 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale decals: - 2344: 11,2 + 2341: 11,2 - node: color: '#9FED5896' id: ThreeQuarterTileOverlayGreyscale decals: - 2337: -6,7 + 2334: -6,7 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale decals: - 2503: 25,2 + 2500: 25,2 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale decals: - 2519: -15,-24 + 2516: -15,-24 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale180 decals: - 2418: 15,-2 - 2445: 12,-28 + 2415: 15,-2 + 2442: 12,-28 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale180 decals: - 2517: -11,-20 + 2514: -11,-20 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale270 decals: - 2417: 10,-2 - 2491: 1,-8 + 2414: 10,-2 + 2488: 1,-8 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale270 decals: - 2518: -15,-23 + 2515: -15,-23 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2345: 14,2 + 2342: 14,2 - node: color: '#A4610696' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2444: 12,-20 + 2441: 12,-20 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2504: 28,2 + 2501: 28,2 - node: color: '#EFB34196' id: ThreeQuarterTileOverlayGreyscale90 @@ -4133,166 +4211,165 @@ entities: decals: 51: -4,-25 52: -3,-25 - 2308: 25,25 - 2568: -13,-25 + 2305: 25,25 + 2565: -13,-25 - node: color: '#D381C9FF' id: WarnCornerGreyscaleNW decals: - 2164: -11,-75 - 2171: -12,-76 + 2161: -11,-75 + 2168: -12,-76 - node: color: '#D381C9FF' id: WarnCornerGreyscaleSW decals: - 2163: -11,-79 - 2172: -12,-78 + 2160: -11,-79 + 2169: -12,-78 - node: color: '#D381C9FF' id: WarnCornerSmallGreyscaleNE decals: - 2177: -10,-75 + 2174: -10,-75 - node: color: '#D381C9FF' id: WarnCornerSmallGreyscaleNW decals: - 2178: -10,-75 - 2179: -6,-75 + 2175: -10,-75 + 2176: -6,-75 - node: color: '#D381C9FF' id: WarnCornerSmallGreyscaleSE decals: - 2176: -10,-79 + 2173: -10,-79 - node: color: '#D381C9FF' id: WarnCornerSmallGreyscaleSW decals: - 2173: -11,-78 - 2174: -10,-79 - 2175: -6,-79 + 2170: -11,-78 + 2171: -10,-79 + 2172: -6,-79 - node: color: '#FFFFFFFF' id: WarnEndE decals: 1002: -3,-18 - 2531: -11,-22 + 2528: -11,-22 - node: color: '#D381C9FF' id: WarnEndGreyscaleN decals: - 2158: -6,-74 - 2159: -10,-74 + 2155: -6,-74 + 2156: -10,-74 - node: color: '#D381C9FF' id: WarnEndGreyscaleS decals: - 2160: -10,-80 - 2161: -6,-80 + 2157: -10,-80 + 2158: -6,-80 - node: cleanable: True color: '#FFFFFFFF' id: WarnEndN decals: - 2362: 15,-11 - 2378: 22,-33 - 2384: 18,-32 - 2604: 15,-6 + 2359: 15,-11 + 2375: 22,-33 + 2381: 18,-32 + 2601: 15,-6 - node: cleanable: True color: '#FFFFFFFF' id: WarnEndS decals: - 2363: 15,-9 - 2603: 15,-7 + 2360: 15,-9 + 2600: 15,-7 - node: color: '#FFFFFFFF' id: WarnEndW decals: 1001: -4,-18 - 2530: -13,-22 + 2527: -13,-22 - node: cleanable: True color: '#FFFFFFFF' id: WarnFull decals: - 2361: 15,-10 - 2364: 15,-13 - 2365: 15,-14 - 2366: 15,-15 - 2367: 14,-15 - 2368: 13,-15 - 2369: 12,-15 - 2370: 11,-18 - 2371: 11,-20 - 2372: 11,-21 - 2373: 11,-22 - 2374: 11,-23 - 2375: 11,-24 - 2376: 11,-25 - 2377: 11,-26 - 2379: 18,-35 - 2380: 22,-35 - 2385: 18,-33 + 2358: 15,-10 + 2361: 15,-13 + 2362: 15,-14 + 2363: 15,-15 + 2364: 14,-15 + 2365: 13,-15 + 2366: 12,-15 + 2367: 11,-18 + 2368: 11,-20 + 2369: 11,-21 + 2370: 11,-22 + 2371: 11,-23 + 2372: 11,-24 + 2373: 11,-25 + 2374: 11,-26 + 2376: 18,-35 + 2377: 22,-35 + 2382: 18,-33 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 2394: -42,41 + 2391: -42,41 - node: color: '#D381C9FF' id: WarnLineGreyscaleE decals: - 2155: -6,-78 - 2156: -6,-77 - 2157: -6,-76 - 2162: -6,-79 - 2180: -6,-75 + 2152: -6,-78 + 2153: -6,-77 + 2154: -6,-76 + 2159: -6,-79 + 2177: -6,-75 - node: color: '#D381C9FF' id: WarnLineGreyscaleN decals: - 2165: -9,-75 - 2166: -8,-75 - 2167: -7,-75 + 2162: -9,-75 + 2163: -8,-75 + 2164: -7,-75 - node: color: '#D381C9FF' id: WarnLineGreyscaleS decals: - 2168: -9,-79 - 2169: -8,-79 - 2170: -7,-79 + 2165: -9,-79 + 2166: -8,-79 + 2167: -7,-79 - node: color: '#D381C9FF' id: WarnLineGreyscaleW decals: - 2154: -12,-77 + 2151: -12,-77 - node: color: '#FFFFFFFF' id: WarnLineN decals: - 2533: -12,-22 - 2569: -48,-16 - 2570: -47,-16 - 2571: -46,-16 + 2530: -12,-22 + 2566: -48,-16 + 2567: -47,-16 + 2568: -46,-16 - node: color: '#FFFFFFFF' id: WarnLineS decals: - 2395: -43,41 + 2392: -43,41 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 1394: 7,-40 - 1395: 6,-40 - 1396: 5,-40 - 1397: 4,-40 - 2532: -12,-22 + 1393: 7,-40 + 1394: 6,-40 + 1395: 5,-40 + 2529: -12,-22 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: - 2607: 27,5 + 2604: 27,5 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw @@ -4323,12 +4400,12 @@ entities: color: '#FFFFFFFF' id: WoodTrimThinInnerNw decals: - 2618: 9,-35 + 2615: 9,-35 - node: color: '#FFFFFFFF' id: WoodTrimThinInnerSw decals: - 2617: 9,-30 + 2614: 9,-30 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE @@ -4350,11 +4427,11 @@ entities: 616: -58,0 617: -58,1 618: -58,2 - 1384: -61.84464,-9.074785 - 1385: -62.988163,-9.100406 - 2608: 27,4 - 2609: 11,-35 - 2610: 11,-34 + 1383: -61.84464,-9.074785 + 1384: -62.988163,-9.100406 + 2605: 27,4 + 2606: 11,-35 + 2607: 11,-34 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN @@ -4362,8 +4439,8 @@ entities: 43: -5,-8 44: -6,-8 818: 20,-6 - 2605: 26,5 - 2606: 25,5 + 2602: 26,5 + 2603: 25,5 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS @@ -4371,14 +4448,14 @@ entities: 35: -8,-10 36: -7,-10 37: -4,-10 - 1358: 21.001646,-5.1484656 + 1357: 21.001646,-5.1484656 - node: cleanable: True color: '#FFFFFFFF' id: WoodTrimThinLineS decals: - 1490: -6,-10 - 1491: -5,-10 + 1488: -6,-10 + 1489: -5,-10 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW @@ -4396,10 +4473,10 @@ entities: 49: -14,22 50: -14,23 819: 19,-7 - 2613: 9,-34 - 2614: 9,-33 - 2615: 9,-32 - 2616: 9,-31 + 2610: 9,-34 + 2611: 9,-33 + 2612: 9,-32 + 2613: 9,-31 - node: color: '#FFFFFFFF' id: bushsnowa3 @@ -4413,14 +4490,14 @@ entities: color: '#FFFF0089' id: end decals: - 2598: -48,-19 + 2595: -48,-19 - node: cleanable: True angle: -0.8726646259971648 rad color: '#00C83AFF' id: peace decals: - 2602: -46.181316,-17.267536 + 2599: -46.181316,-17.267536 - node: color: '#EFB34196' id: radiation @@ -4435,7 +4512,7 @@ entities: color: '#FFFFFFFF' id: skull decals: - 2599: -46.264652,-18.779003 + 2596: -46.264652,-18.779003 - node: color: '#FFFFFF93' id: space @@ -4446,11 +4523,11 @@ entities: color: '#0000008B' id: splatter decals: - 2592: -47.00404,-18.038906 - 2593: -47.00404,-18.038906 - 2594: -47.00404,-18.038906 - 2595: -46.733208,-18.247383 - 2596: -47.25404,-17.694916 + 2589: -47.00404,-18.038906 + 2590: -47.00404,-18.038906 + 2591: -47.00404,-18.038906 + 2592: -46.733208,-18.247383 + 2593: -47.25404,-17.694916 type: DecalGrid - version: 2 data: @@ -5227,9 +5304,7 @@ entities: -2,-9: 0: 65535 -1,-9: - 2: 1 - 0: 65530 - 3: 4 + 0: 65535 0,-9: 0: 65535 1,-9: @@ -5355,23 +5430,19 @@ entities: -4,-11: 0: 65535 -3,-12: - 0: 65527 + 0: 65535 -3,-11: 0: 65535 -2,-12: - 0: 65529 + 0: 65535 -2,-11: 0: 65535 -1,-12: - 0: 61439 - 4: 4096 + 0: 65535 -1,-11: - 4: 1 - 0: 65534 + 0: 65535 -1,-10: - 0: 45055 - 2: 4096 - 3: 16384 + 0: 65535 0,-12: 0: 65535 0,-11: @@ -5379,15 +5450,16 @@ entities: 0,-10: 0: 65535 1,-12: - 0: 16383 - 4: 49152 + 0: 61937 + 2: 14 + 3: 3584 1,-11: - 0: 65343 - 5: 192 + 0: 65521 + 4: 14 1,-10: 0: 65535 2,-12: - 0: 65534 + 0: 65535 2,-11: 0: 65535 2,-10: @@ -5487,17 +5559,19 @@ entities: 0,10: 0: 63487 0,-14: - 0: 62450 + 0: 65522 0,-13: 0: 65535 1,-14: - 0: 65489 + 0: 65521 1,-13: - 0: 65535 + 0: 61937 + 2: 14 + 5: 3584 2,-14: - 0: 8752 + 0: 12848 2,-13: - 0: 61991 + 0: 62263 -4,-16: 0: 57241 -4,-15: @@ -5507,11 +5581,11 @@ entities: -4,-13: 0: 64511 -3,-13: - 0: 61999 + 0: 65263 -2,-14: 0: 64853 -2,-13: - 0: 63993 + 0: 65535 -1,-14: 0: 63903 -1,-13: @@ -5661,7 +5735,7 @@ entities: -3,-15: 0: 17524 -3,-14: - 0: 8948 + 0: 58100 -2,-16: 0: 8089 -2,-15: @@ -5862,7 +5936,7 @@ entities: 0: 1908 -16,7: 0: 40704 - 4: 24576 + 2: 24576 -15,7: 0: 65280 -12,10: @@ -5879,7 +5953,7 @@ entities: 0: 65535 -16,9: 0: 65439 - 4: 96 + 2: 96 -16,10: 0: 231 -15,8: @@ -6019,8 +6093,7 @@ entities: 3,-13: 0: 51200 4,-13: - 0: 65280 - 4: 112 + 0: 65392 5,-13: 0: 4096 uniqueMixes: @@ -6058,7 +6131,7 @@ entities: temperature: 293.15 moles: - 0 - - 6666.982 + - 0 - 0 - 0 - 0 @@ -6088,7 +6161,7 @@ entities: temperature: 293.15 moles: - 0 - - 0 + - 6666.982 - 0 - 0 - 0 @@ -6120,1282 +6193,1296 @@ entities: - type: RadiationGridResistance - id: Edge type: BecomesStation - - uid: 12 +- proto: ActionToggleLight + entities: + - uid: 4 components: - - type: MetaData - - type: Transform - - type: Map - - type: PhysicsMap - - type: GridTree - - type: MovedGrids - - type: Broadphase - - type: OccluderTree - - type: LoadedMap + - flags: InContainer + type: MetaData + - parent: 3 + type: Transform + - container: 3 + type: InstantAction - proto: AirAlarm entities: - - uid: 876 + - uid: 5 components: - pos: -30.5,17.5 parent: 2 type: Transform - ShutdownSubscribers: - - 1487 - - 11037 - - 11038 - - 15845 - - 793 - - 11043 - - 11042 - - 15082 - - 11051 - - 15038 - - 15925 - - 15218 - - 15051 - - 15041 - - 15611 - - 15612 - - 15040 - - 15012 + - 10226 + - 7475 + - 7476 + - 7384 + - 7356 + - 7481 + - 7480 + - 10349 + - 10428 + - 10558 + - 10386 + - 10567 + - 10348 + - 10561 + - 10375 + - 10376 + - 10560 + - 10346 type: DeviceNetwork - devices: - - 1487 - - 11037 - - 11038 - - 15845 - - 793 - - 11043 - - 11042 - - 15082 - - 11051 - - 15038 - - 15925 - - 15218 - - 15051 - - 15041 - - 15611 - - 15612 - - 15040 - - 15012 + - 10226 + - 7475 + - 7476 + - 7384 + - 7356 + - 7481 + - 7480 + - 10349 + - 10428 + - 10558 + - 10386 + - 10567 + - 10348 + - 10561 + - 10375 + - 10376 + - 10560 + - 10346 type: DeviceList - - uid: 1266 + - uid: 6 components: - pos: -59.5,-4.5 parent: 2 type: Transform - ShutdownSubscribers: - - 10878 - - 13870 - - 10978 + - 10426 + - 10309 + - 7450 type: DeviceNetwork - devices: - - 10878 - - 13870 - - 10978 + - 10426 + - 10309 + - 7450 type: DeviceList - - uid: 1468 + - uid: 7 components: - pos: -31.5,8.5 parent: 2 type: Transform - ShutdownSubscribers: - - 390 - - 11033 + - 7418 + - 7472 type: DeviceNetwork - devices: - - 15096 - - 15095 - - 14275 - - 14135 - - 11060 - - 11059 - - 793 - - 15043 - - 15587 - - 9164 - - 14280 - - 15044 - - 14037 - - 15845 - - 390 - - 11033 - - 11045 + - 7554 + - 7553 + - 10326 + - 10534 + - 7491 + - 7490 + - 7356 + - 10562 + - 10374 + - 10423 + - 10327 + - 10563 + - 10321 + - 7384 + - 7418 + - 7472 + - 7483 type: DeviceList - - uid: 1536 + - uid: 8 components: - rot: 3.141592653589793 rad pos: 6.5,-40.5 parent: 2 type: Transform - ShutdownSubscribers: - - 17167 + - 10582 type: DeviceNetwork - devices: - - 17140 - - 17141 - - 1528 - - 1823 - - 17122 - - 5353 - - 5384 - - 17167 + - 7560 + - 7561 + - 10227 + - 10412 + - 10406 + - 7363 + - 7364 + - 10582 type: DeviceList - - uid: 1541 + - uid: 9 components: - rot: 3.141592653589793 rad pos: -39.5,25.5 parent: 2 type: Transform - ShutdownSubscribers: - - 10997 - - 10996 - - 11064 - - 11063 - - 10987 - - 10986 - - 13261 - - 11068 - - 14080 - - 11084 - - 11073 + - 7408 + - 7407 + - 7493 + - 7492 + - 7406 + - 7405 + - 10298 + - 7495 + - 10530 + - 7502 + - 7368 type: DeviceNetwork - devices: - - 10997 - - 10996 - - 11064 - - 11063 - - 10987 - - 10986 - - 13261 - - 11068 - - 14080 - - 11084 - - 11073 + - 7408 + - 7407 + - 7493 + - 7492 + - 7406 + - 7405 + - 10298 + - 7495 + - 10530 + - 7502 + - 7368 type: DeviceList - - uid: 1716 + - uid: 10 components: - rot: -1.5707963267948966 rad pos: 16.5,4.5 parent: 2 type: Transform - ShutdownSubscribers: - - 3826 - - 5185 - - 10998 - - 10999 + - 7398 + - 7404 + - 7409 + - 7410 type: DeviceNetwork - devices: - - 11142 - - 11143 - - 11012 - - 11011 - - 3826 - - 5185 - - 10998 - - 10999 - - 11115 - - 11114 - - 3394 - - 13981 - - 12452 - - 12729 - - 12427 - - 12430 + - 7534 + - 7535 + - 7367 + - 7461 + - 7398 + - 7404 + - 7409 + - 7410 + - 7524 + - 7523 + - 10232 + - 10526 + - 10286 + - 10484 + - 10476 + - 10283 type: DeviceList - - uid: 3562 + - uid: 11 components: - pos: 17.5,-23.5 parent: 2 type: Transform - ShutdownSubscribers: - - 3581 + - 10233 type: DeviceNetwork - devices: - - 2997 - - 4241 - - 3581 - - 1656 - - 1592 - - 1593 + - 7421 + - 7422 + - 10233 + - 10411 + - 10410 + - 10228 type: DeviceList - - uid: 6892 + - uid: 12 components: - rot: 1.5707963267948966 rad pos: 20.5,17.5 parent: 2 type: Transform - ShutdownSubscribers: - - 6450 - - 12261 - - 11119 - - 11121 - - 15455 - - 12209 - - 12138 - - 11115 - - 11132 - - 11131 - - 12208 - - 12136 - - 16501 - - 16502 + - 10238 + - 10473 + - 7371 + - 7372 + - 7381 + - 10280 + - 10469 + - 7524 + - 7531 + - 7530 + - 10279 + - 10468 + - 10575 + - 10392 type: DeviceNetwork - devices: - - 11115 - - 12261 - - 6450 - - 11132 - - 11131 - - 15455 - - 11121 - - 11119 - - 12208 - - 12136 - - 16501 - - 16502 - - 12138 - - 12209 + - 7524 + - 10473 + - 10238 + - 7531 + - 7530 + - 7381 + - 7372 + - 7371 + - 10279 + - 10468 + - 10575 + - 10392 + - 10469 + - 10280 type: DeviceList - - uid: 9317 + - uid: 13 components: - rot: -1.5707963267948966 rad pos: 3.5,31.5 parent: 2 type: Transform - ShutdownSubscribers: - - 11096 - - 14584 - - 14248 - - 11095 + - 7510 + - 10335 + - 10539 + - 7509 type: DeviceNetwork - devices: - - 11095 - - 14248 - - 14584 - - 11096 + - 7509 + - 10539 + - 10335 + - 7510 type: DeviceList - - uid: 10669 + - uid: 14 components: - pos: 14.5,-11.5 parent: 2 type: Transform - ShutdownSubscribers: - - 3081 - - 3175 + - 7396 + - 7397 type: DeviceNetwork - devices: - - 5101 - - 11806 - - 896 - - 5051 - - 194 - - 12089 - - 11100 - - 16628 - - 12095 - - 3081 - - 3175 + - 7425 + - 7542 + - 10224 + - 7424 + - 7417 + - 10463 + - 7513 + - 10396 + - 10464 + - 7396 + - 7397 type: DeviceList - - uid: 10800 + - uid: 15 components: - pos: -18.5,28.5 parent: 2 type: Transform - ShutdownSubscribers: - - 16922 + - 10578 type: DeviceNetwork - devices: - - 11090 - - 11089 - - 11046 - - 11055 - - 15089 - - 14407 - - 11074 - - 11040 - - 11039 - - 11082 - - 11081 - - 5348 - - 5349 - - 16922 + - 7504 + - 7503 + - 7484 + - 10243 + - 10565 + - 10330 + - 7498 + - 7478 + - 7477 + - 7501 + - 7500 + - 7427 + - 7428 + - 10578 type: DeviceList - - uid: 10984 + - uid: 16 components: - rot: -1.5707963267948966 rad pos: -22.5,3.5 parent: 2 type: Transform - ShutdownSubscribers: - - 17188 - - 11032 - - 11044 - - 11154 - - 11155 - - 11033 - - 390 - - 11037 - - 11038 - - 11039 - - 11040 - - 5186 - - 13291 - - 13236 - - 13321 - - 14035 - - 13412 - - 13331 + - 7562 + - 7471 + - 7482 + - 7414 + - 7415 + - 7472 + - 7418 + - 7475 + - 7476 + - 7477 + - 7478 + - 7360 + - 10495 + - 10297 + - 10299 + - 10529 + - 10300 + - 10496 type: DeviceNetwork - devices: - - 17188 - - 11032 - - 11044 - - 11154 - - 11155 - - 11033 - - 390 - - 11037 - - 11038 - - 11039 - - 11040 - - 5186 - - 13291 - - 13236 - - 13321 - - 14035 - - 13412 - - 13331 + - 7562 + - 7471 + - 7482 + - 7414 + - 7415 + - 7472 + - 7418 + - 7475 + - 7476 + - 7477 + - 7478 + - 7360 + - 10495 + - 10297 + - 10299 + - 10529 + - 10300 + - 10496 type: DeviceList - - uid: 11016 + - uid: 17 components: - pos: -47.5,-5.5 parent: 2 type: Transform - ShutdownSubscribers: - - 11954 - - 13877 - - 10970 - - 10969 - - 10968 - - 10961 - - 10962 + - 10274 + - 10521 + - 7444 + - 7443 + - 7442 + - 7436 + - 7437 type: DeviceNetwork - devices: - - 13877 - - 11954 - - 10970 - - 10969 - - 10961 - - 10962 - - 10968 + - 10521 + - 10274 + - 7444 + - 7443 + - 7436 + - 7437 + - 7442 type: DeviceList - - uid: 13768 + - uid: 18 components: - rot: -1.5707963267948966 rad pos: -54.5,-1.5 parent: 2 type: Transform - ShutdownSubscribers: - - 10977 - - 10976 - - 13804 - - 13874 - - 13872 - - 10880 - - 10907 + - 7449 + - 7448 + - 10519 + - 10311 + - 10310 + - 10427 + - 10242 type: DeviceNetwork - devices: - - 10977 - - 10976 - - 13804 - - 13874 - - 13872 - - 10880 - - 10907 + - 7449 + - 7448 + - 10519 + - 10311 + - 10310 + - 10427 + - 10242 type: DeviceList - - uid: 13809 + - uid: 19 components: - rot: -1.5707963267948966 rad pos: -45.5,35.5 parent: 2 type: Transform - ShutdownSubscribers: - - 11068 - - 11069 - - 14626 - - 14616 - - 11075 - - 14244 - - 11072 - - 11079 - - 11067 + - 7495 + - 7496 + - 10550 + - 10339 + - 7369 + - 10537 + - 7497 + - 7499 + - 7494 type: DeviceNetwork - devices: - - 11068 - - 11069 - - 14626 - - 14616 - - 11075 - - 14244 - - 11072 - - 11079 - - 11067 + - 7495 + - 7496 + - 10550 + - 10339 + - 7369 + - 10537 + - 7497 + - 7499 + - 7494 type: DeviceList - - uid: 13900 + - uid: 20 components: - rot: 1.5707963267948966 rad pos: -17.5,-36.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15300 + - 434 type: DeviceNetwork - devices: - - 11138 - - 11139 - - 2093 - - 13987 - - 6875 - - 6874 - - 11229 - - 11230 - - 11140 - - 11141 - - 11101 - - 5011 - - 15425 - - 15837 - - 15195 - - 15300 + - 7375 + - 7376 + - 10415 + - 10319 + - 7432 + - 7431 + - 7536 + - 7537 + - 7532 + - 7533 + - 7514 + - 7423 + - 10569 + - 10384 + - 10356 + - 434 type: DeviceList - - uid: 13926 + - uid: 21 components: - rot: -1.5707963267948966 rad pos: 13.5,-23.5 parent: 2 type: Transform - ShutdownSubscribers: - - 16945 + - 10403 type: DeviceNetwork - devices: - - 17128 - - 11509 - - 4241 - - 2997 - - 16945 - - 3529 - - 5101 - - 11806 - - 17140 - - 17141 + - 10581 + - 10264 + - 7422 + - 7421 + - 10403 + - 10416 + - 7425 + - 7542 + - 7560 + - 7561 type: DeviceList - - uid: 13942 + - uid: 22 components: - rot: 1.5707963267948966 rad pos: -19.5,-1.5 parent: 2 type: Transform - ShutdownSubscribers: - - 11032 - - 17188 - - 11110 - - 1174 - - 11030 - - 11029 - - 13186 - - 12432 - - 7947 - - 8928 + - 7471 + - 7562 + - 7520 + - 7419 + - 7470 + - 7469 + - 10493 + - 10284 + - 10422 + - 10239 type: DeviceNetwork - devices: - - 11032 - - 17188 - - 11110 - - 1174 - - 11030 - - 11029 - - 13186 - - 12432 - - 7947 - - 8928 + - 7471 + - 7562 + - 7520 + - 7419 + - 7470 + - 7469 + - 10493 + - 10284 + - 10422 + - 10239 type: DeviceList - - uid: 14051 + - uid: 23 components: - rot: 1.5707963267948966 rad pos: -43.5,32.5 parent: 2 type: Transform - ShutdownSubscribers: - - 11068 - - 11069 - - 14626 - - 14616 - - 11075 + - 7495 + - 7496 + - 10550 + - 10339 + - 7369 type: DeviceNetwork - devices: - - 11068 - - 11069 - - 14626 - - 14616 - - 11075 + - 7495 + - 7496 + - 10550 + - 10339 + - 7369 type: DeviceList - - uid: 14075 + - uid: 24 components: - pos: -29.5,33.5 parent: 2 type: Transform - ShutdownSubscribers: - - 10997 - - 10996 + - 7408 + - 7407 type: DeviceNetwork - devices: - - 11084 - - 10996 - - 10997 - - 14034 - - 14030 - - 11082 - - 11081 - - 9303 + - 7502 + - 7407 + - 7408 + - 10320 + - 10528 + - 7501 + - 7500 + - 7365 type: DeviceList - - uid: 14284 + - uid: 25 components: - rot: -1.5707963267948966 rad pos: -44.5,20.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15093 - - 15094 - - 15748 - - 15096 - - 15095 - - 14955 - - 15010 + - 7551 + - 7552 + - 10380 + - 7554 + - 7553 + - 10345 + - 10556 type: DeviceNetwork - devices: - - 14955 - - 15010 - - 15748 - - 15096 - - 15095 - - 15094 - - 15093 + - 10345 + - 10556 + - 10380 + - 7554 + - 7553 + - 7552 + - 7551 type: DeviceList - - uid: 14290 + - uid: 26 components: - rot: 3.141592653589793 rad pos: -25.5,37.5 parent: 2 type: Transform - - uid: 14335 + - uid: 27 components: - pos: -30.5,-7.5 parent: 2 type: Transform - ShutdownSubscribers: - - 11014 - - 11013 - - 13644 - - 13638 - - 13640 - - 10964 - - 10963 - - 13642 - - 15366 - - 14025 - - 15644 + - 7463 + - 7462 + - 10505 + - 10301 + - 10502 + - 7439 + - 7438 + - 10504 + - 10365 + - 10527 + - 10377 type: DeviceNetwork - devices: - - 11014 - - 11013 - - 13644 - - 13638 - - 13640 - - 10964 - - 10963 - - 13642 - - 15366 - - 14025 - - 15644 + - 7463 + - 7462 + - 10505 + - 10301 + - 10502 + - 7439 + - 7438 + - 10504 + - 10365 + - 10527 + - 10377 type: DeviceList - - uid: 15121 + - uid: 28 components: - pos: 7.5,-8.5 parent: 2 type: Transform - ShutdownSubscribers: - - 2086 + - 7358 type: DeviceNetwork - devices: - - 2060 - - 2061 - - 5051 - - 194 - - 11100 - - 2086 - - 1542 - - 6396 - - 12212 - - 16946 - - 2425 + - 10414 + - 10230 + - 7424 + - 7417 + - 7513 + - 7358 + - 7357 + - 10419 + - 10281 + - 7389 + - 7395 type: DeviceList - - uid: 15163 + - uid: 29 components: - rot: 1.5707963267948966 rad pos: -43.5,14.5 parent: 2 type: Transform - ShutdownSubscribers: - - 11063 - - 11064 - - 15169 - - 11060 - - 11059 - - 11043 - - 11042 - - 15093 - - 15094 + - 7492 + - 7493 + - 7378 + - 7491 + - 7490 + - 7481 + - 7480 + - 7551 + - 7552 type: DeviceNetwork - devices: - - 15094 - - 15093 - - 11042 - - 11043 - - 11059 - - 11060 - - 15169 - - 11064 - - 11063 + - 7552 + - 7551 + - 7480 + - 7481 + - 7490 + - 7491 + - 7378 + - 7493 + - 7492 type: DeviceList - - uid: 15235 + - uid: 30 components: - rot: 1.5707963267948966 rad pos: 36.5,-13.5 parent: 2 type: Transform - ShutdownSubscribers: - - 1487 + - 10226 type: DeviceNetwork - devices: - - 11054 - - 11053 - - 11023 - - 10950 - - 15174 - - 11427 - - 11364 - - 11365 - - 1487 + - 7489 + - 7488 + - 7467 + - 7435 + - 7379 + - 10259 + - 10438 + - 10439 + - 10226 type: DeviceList - - uid: 15246 + - uid: 31 components: - rot: 3.141592653589793 rad pos: -24.5,-10.5 parent: 2 type: Transform - ShutdownSubscribers: - - 1520 - - 1394 + - 7394 + - 7391 type: DeviceNetwork - devices: - - 11014 - - 11013 - - 9946 - - 13637 - - 16196 - - 11017 - - 15346 - - 12912 - - 1394 - - 1520 + - 7463 + - 7462 + - 7366 + - 10501 + - 10391 + - 7464 + - 10362 + - 10487 + - 7391 + - 7394 type: DeviceList - - uid: 15267 + - uid: 32 components: - rot: 1.5707963267948966 rad pos: 22.5,-3.5 parent: 2 type: Transform - ShutdownSubscribers: - - 1360 - - 10074 + - 7420 + - 7434 type: DeviceNetwork - devices: - - 5171 - - 11041 - - 11002 - - 1360 - - 10074 - - 10950 - - 11021 - - 11022 - - 11024 - - 11035 - - 11036 - - 11468 - - 11949 - - 11400 - - 11544 + - 7426 + - 7479 + - 7460 + - 7420 + - 7434 + - 7435 + - 7465 + - 7466 + - 7468 + - 7473 + - 7474 + - 10446 + - 10273 + - 10254 + - 10448 type: DeviceList - - uid: 15276 + - uid: 33 components: - rot: -1.5707963267948966 rad pos: 14.5,22.5 parent: 2 type: Transform - ShutdownSubscribers: - - 11116 - - 11117 - - 12529 - - 12576 - - 5228 - - 15454 - - 12135 - - 1164 - - 12533 - - 12134 + - 7525 + - 7526 + - 10287 + - 10483 + - 10418 + - 10368 + - 10467 + - 10225 + - 10288 + - 10466 type: DeviceNetwork - devices: - - 11116 - - 11117 - - 12529 - - 12576 - - 5228 - - 15454 - - 12135 - - 1164 - - 12533 - - 12134 + - 7525 + - 7526 + - 10287 + - 10483 + - 10418 + - 10368 + - 10467 + - 10225 + - 10288 + - 10466 type: DeviceList - - uid: 15297 + - uid: 34 components: - pos: 33.5,-17.5 parent: 2 type: Transform - ShutdownSubscribers: - - 11052 - - 11053 - - 11054 - - 11424 - - 11302 - - 11322 - - 11426 - - 11499 - - 11310 + - 7487 + - 7488 + - 7489 + - 10257 + - 10431 + - 10435 + - 10258 + - 10447 + - 10247 type: DeviceNetwork - devices: - - 11052 - - 11053 - - 11054 - - 11424 - - 11302 - - 11322 - - 11426 - - 11499 - - 11310 + - 7487 + - 7488 + - 7489 + - 10257 + - 10431 + - 10435 + - 10258 + - 10447 + - 10247 type: DeviceList - - uid: 15307 + - uid: 35 components: - pos: 8.5,2.5 parent: 2 type: Transform - ShutdownSubscribers: - - 10994 - - 10992 - - 12450 - - 12429 - - 12428 - - 11002 - - 11142 - - 11143 + - 7459 + - 7458 + - 10285 + - 10478 + - 10477 + - 7460 + - 7534 + - 7535 type: DeviceNetwork - devices: - - 10994 - - 10992 - - 12450 - - 12429 - - 12428 - - 11002 - - 11142 - - 11143 + - 7459 + - 7458 + - 10285 + - 10478 + - 10477 + - 7460 + - 7534 + - 7535 type: DeviceList - - uid: 15353 + - uid: 36 components: - rot: 1.5707963267948966 rad pos: -13.5,34.5 parent: 2 type: Transform - ShutdownSubscribers: - - 11097 - - 14517 - - 14520 - - 11098 + - 7511 + - 10546 + - 10333 + - 7512 type: DeviceNetwork - devices: - - 11098 - - 14520 - - 14517 - - 11097 + - 7512 + - 10333 + - 10546 + - 7511 type: DeviceList - - uid: 15361 + - uid: 37 components: - pos: -12.5,-31.5 parent: 2 type: Transform - ShutdownSubscribers: - - 4221 + - 7359 type: DeviceNetwork - devices: - - 15836 - - 11101 - - 11346 - - 11333 - - 11362 - - 11128 - - 11130 - - 11306 - - 11321 - - 4221 + - 10383 + - 7514 + - 10437 + - 10436 + - 10250 + - 7528 + - 7529 + - 10246 + - 10434 + - 7359 type: DeviceList - - uid: 15373 + - uid: 38 components: - pos: -10.5,40.5 parent: 2 type: Transform - - uid: 15473 + - uid: 39 components: - pos: 26.5,23.5 parent: 2 type: Transform - ShutdownSubscribers: - - 12051 + - 10461 type: DeviceNetwork - devices: - - 11119 - - 11121 - - 15455 - - 12051 - - 12204 + - 7371 + - 7372 + - 7381 + - 10461 + - 10278 type: DeviceList - - uid: 15627 + - uid: 40 components: - rot: 1.5707963267948966 rad pos: -5.5,19.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14689 - - 14606 - - 11092 - - 11091 - - 11090 - - 11089 - - 11152 - - 4139 - - 4112 - - 15807 - - 11109 - - 11108 - - 15805 + - 10551 + - 10337 + - 7506 + - 7505 + - 7504 + - 7503 + - 7413 + - 7403 + - 7402 + - 7557 + - 7519 + - 7518 + - 10382 type: DeviceNetwork - devices: - - 14689 - - 14606 - - 11092 - - 11091 - - 11090 - - 11089 - - 11152 - - 4139 - - 4112 - - 15807 - - 11109 - - 11108 - - 15805 + - 10551 + - 10337 + - 7506 + - 7505 + - 7504 + - 7503 + - 7413 + - 7403 + - 7402 + - 7557 + - 7519 + - 7518 + - 10382 type: DeviceList - - uid: 15647 + - uid: 41 components: - rot: -1.5707963267948966 rad pos: -33.5,-14.5 parent: 2 type: Transform - ShutdownSubscribers: - - 1518 - - 1404 + - 7393 + - 7392 type: DeviceNetwork - devices: - - 13641 - - 15514 - - 13719 - - 15333 - - 15443 - - 13718 - - 13722 - - 15329 - - 13724 - - 15185 - - 15322 - - 15335 - - 10965 - - 10963 - - 10964 - - 10961 - - 10962 - - 1518 - - 1404 + - 10503 + - 10373 + - 10510 + - 10360 + - 10367 + - 10509 + - 10511 + - 10358 + - 10512 + - 10355 + - 10568 + - 10361 + - 7440 + - 7438 + - 7439 + - 7436 + - 7437 + - 7393 + - 7392 type: DeviceList - - uid: 15691 + - uid: 42 components: - pos: -0.5,5.5 parent: 2 type: Transform - ShutdownSubscribers: - - 1542 + - 7357 type: DeviceNetwork - devices: - - 10992 - - 10994 - - 10990 - - 10991 - - 12497 - - 12575 - - 1542 + - 7458 + - 7459 + - 7456 + - 7457 + - 10479 + - 10289 + - 7357 type: DeviceList - - uid: 15702 + - uid: 43 components: - pos: -5.5,8.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15703 + - 7383 type: DeviceNetwork - devices: - - 12840 - - 12785 - - 10991 - - 10990 - - 11110 - - 11111 - - 15617 - - 11108 - - 11109 - - 15703 + - 10485 + - 10291 + - 7457 + - 7456 + - 7520 + - 7521 + - 7556 + - 7518 + - 7519 + - 7383 type: DeviceList - - uid: 15789 + - uid: 44 components: - pos: -53.5,-10.5 parent: 2 type: Transform - ShutdownSubscribers: - - 10973 - - 10974 - - 10975 - - 13879 - - 13776 - - 13865 - - 13775 - - 13777 - - 13864 - - 13880 - - 13806 - - 13755 - - 13881 - - 13866 - - 13780 - - 13869 + - 7445 + - 7446 + - 7447 + - 10312 + - 10515 + - 10306 + - 10514 + - 10516 + - 10305 + - 10313 + - 10520 + - 10513 + - 10314 + - 10307 + - 10517 + - 10308 type: DeviceNetwork - devices: - - 10973 - - 10974 - - 10975 - - 13879 - - 13776 - - 13865 - - 13775 - - 13777 - - 13864 - - 13880 - - 13806 - - 13755 - - 13881 - - 13866 - - 13780 - - 13869 + - 7445 + - 7446 + - 7447 + - 10312 + - 10515 + - 10306 + - 10514 + - 10516 + - 10305 + - 10313 + - 10520 + - 10513 + - 10314 + - 10307 + - 10517 + - 10308 type: DeviceList - - uid: 15809 + - uid: 45 components: - pos: -11.5,-11.5 parent: 2 type: Transform - ShutdownSubscribers: - - 12514 + - 10480 type: DeviceNetwork - devices: - - 12514 - - 11112 - - 6873 - - 5401 - - 11229 - - 11230 - - 9946 - - 11029 - - 11030 - - 13943 - - 11102 + - 10480 + - 7522 + - 7430 + - 7429 + - 7536 + - 7537 + - 7366 + - 7469 + - 7470 + - 10317 + - 10429 type: DeviceList - - uid: 15811 + - uid: 46 components: - rot: -1.5707963267948966 rad pos: -15.5,-20.5 parent: 2 type: Transform - ShutdownSubscribers: - - 999 + - 433 type: DeviceNetwork - devices: - - 11138 - - 11139 - - 2093 - - 13987 - - 6875 - - 6874 - - 11229 - - 11230 - - 999 + - 7375 + - 7376 + - 10415 + - 10319 + - 7432 + - 7431 + - 7536 + - 7537 + - 433 type: DeviceList - - uid: 15838 + - uid: 47 components: - pos: -5.5,-28.5 parent: 2 type: Transform - ShutdownSubscribers: - - 11366 - - 11128 - - 11385 - - 11130 - - 11225 - - 11226 - - 11393 - - 11384 - - 11273 + - 10251 + - 7528 + - 10441 + - 7529 + - 7540 + - 10440 + - 10245 type: DeviceNetwork - devices: - - 11366 - - 11128 - - 11385 - - 11130 - - 11225 - - 11226 - - 11393 - - 11384 - - 11273 + - 10251 + - 7528 + - 10441 + - 7529 + - 7540 + - 10440 + - 10245 type: DeviceList - - uid: 15843 + - uid: 48 components: - pos: 0.5,-21.5 parent: 2 type: Transform - ShutdownSubscribers: - - 1918 - - 10666 + - 10413 + - 10241 type: DeviceNetwork - devices: - - 11586 - - 11232 - - 11125 - - 11381 - - 1918 - - 10666 + - 10450 + - 7539 + - 7527 + - 10252 + - 10413 + - 10241 type: DeviceList - - uid: 15844 + - uid: 49 components: - rot: 1.5707963267948966 rad pos: -11.5,-3.5 parent: 2 type: Transform - ShutdownSubscribers: - - 13594 - - 15488 - - 13592 - - 15381 - - 13591 - - 11111 - - 11112 - - 15489 - - 13593 + - 10500 + - 10371 + - 10498 + - 10366 + - 10497 + - 7521 + - 7522 + - 10372 + - 10499 type: DeviceNetwork - devices: - - 13594 - - 15488 - - 13592 - - 15381 - - 13591 - - 11111 - - 11112 - - 15489 - - 13593 + - 10500 + - 10371 + - 10498 + - 10366 + - 10497 + - 7521 + - 7522 + - 10372 + - 10499 type: DeviceList - - uid: 15937 + - uid: 50 components: - - rot: -1.5707963267948966 rad - pos: 3.5,-40.5 + - pos: -15.5,-73.5 parent: 2 type: Transform - ShutdownSubscribers: - - 5384 - - 5353 - - 11257 - - 11256 - - 11264 - - 1751 - - 11226 - - 11225 + - 10399 + - 438 + - 436 + - 435 + - 437 + - 439 + - 7385 + - 7386 + - 7388 + - 7387 type: DeviceNetwork - devices: - - 5384 - - 5353 - - 11257 - - 11256 - - 11264 - - 1751 - - 11226 - - 11225 + - 10399 + - 438 + - 436 + - 435 + - 437 + - 439 + - 7385 + - 7386 + - 7388 + - 7387 type: DeviceList - - uid: 16716 + - uid: 51 components: - - pos: -15.5,-73.5 + - rot: -1.5707963267948966 rad + pos: 13.5,14.5 parent: 2 type: Transform - ShutdownSubscribers: - - 16671 - - 16724 - - 16722 - - 16721 - - 16723 - - 16725 - - 16717 - - 16718 - - 16720 - - 16719 + - 7410 + - 7409 + - 7398 + - 7404 type: DeviceNetwork - devices: - - 16671 - - 16724 - - 16722 - - 16721 - - 16723 - - 16725 - - 16717 - - 16718 - - 16720 - - 16719 + - 7525 + - 7526 + - 7555 + - 7461 + - 7530 + - 7531 + - 10572 + - 10235 + - 10474 + - 10282 + - 10579 + - 10404 + - 7410 + - 7409 + - 7398 + - 7404 type: DeviceList - - uid: 16976 + - uid: 52 components: - - rot: -1.5707963267948966 rad - pos: 13.5,14.5 + - rot: 1.5707963267948966 rad + pos: -5.5,-50.5 + parent: 2 + type: Transform + - uid: 53 + components: + - pos: -4.5,-41.5 parent: 2 type: Transform - ShutdownSubscribers: - - 10999 - - 10998 - - 3826 - - 5185 + - 7416 + - 7566 + - 7565 + - 7564 + - 7563 + - 7363 + - 7364 type: DeviceNetwork - devices: - - 11116 - - 11117 - - 15562 - - 11011 - - 11131 - - 11132 - - 15689 - - 4533 - - 12397 - - 12331 - - 16974 - - 16975 - - 10999 - - 10998 - - 3826 - - 5185 + - 10584 + - 10407 + - 10408 + - 10585 + - 7416 + - 7566 + - 7565 + - 7564 + - 7563 + - 7363 + - 441 + - 442 + - 7364 type: DeviceList - proto: AirCanister entities: - - uid: 185 + - uid: 54 components: - pos: -22.5,-23.5 parent: 2 type: Transform - - uid: 1483 + - uid: 55 components: - pos: -5.5,-34.5 parent: 2 type: Transform - - uid: 2261 + - uid: 56 components: - pos: -5.5,-35.5 parent: 2 type: Transform - - uid: 2305 + - uid: 57 components: - pos: -23.5,-23.5 parent: 2 type: Transform - - uid: 2937 - components: - - pos: -4.5,-38.5 - parent: 2 - type: Transform - - uid: 4479 + - uid: 58 components: - pos: 19.5,18.5 parent: 2 type: Transform - - uid: 9192 + - uid: 59 components: - pos: -14.5,-83.5 parent: 2 type: Transform - - uid: 11619 + - uid: 60 components: - pos: 18.9538,-25.5 parent: 2 type: Transform + - uid: 61 + components: + - pos: 7.5,-41.5 + parent: 2 + type: Transform + - uid: 62 + components: + - pos: -2.5,-35.5 + parent: 2 + type: Transform + - uid: 63 + components: + - pos: -3.5,-35.5 + parent: 2 + type: Transform - proto: Airlock entities: - - uid: 4214 + - uid: 64 components: - pos: -28.5,8.5 parent: 2 type: Transform - - uid: 14429 + - uid: 65 components: - pos: -34.5,17.5 parent: 2 type: Transform - - uid: 14430 + - uid: 66 components: - pos: -31.5,17.5 parent: 2 type: Transform - - uid: 14431 + - uid: 67 components: - pos: -30.5,12.5 parent: 2 type: Transform - - uid: 14432 + - uid: 68 components: - pos: -28.5,13.5 parent: 2 type: Transform - - uid: 14535 + - uid: 69 components: - rot: 1.5707963267948966 rad pos: 36.5,-15.5 parent: 2 type: Transform - - uid: 14543 + - uid: 70 components: - rot: 1.5707963267948966 rad pos: 31.5,-15.5 @@ -7403,25 +7490,25 @@ entities: type: Transform - proto: AirlockArmoryGlassLocked entities: - - uid: 5782 + - uid: 71 components: - pos: -39.5,-5.5 parent: 2 type: Transform - - uid: 10935 + - uid: 72 components: - pos: -37.5,-7.5 parent: 2 type: Transform - proto: AirlockAtmosphericsGlass entities: - - uid: 471 + - uid: 73 components: - rot: -1.5707963267948966 rad pos: 8.5,-38.5 parent: 2 type: Transform - - uid: 1927 + - uid: 74 components: - rot: -1.5707963267948966 rad pos: 8.5,-37.5 @@ -7429,133 +7516,139 @@ entities: type: Transform - proto: AirlockAtmosphericsGlassLocked entities: - - uid: 1310 + - uid: 75 components: - - rot: -1.5707963267948966 rad - pos: -7.5,-42.5 + - pos: -6.5,-36.5 parent: 2 type: Transform - - uid: 15926 + - uid: 76 components: - - pos: -6.5,-36.5 + - pos: -7.5,-36.5 parent: 2 type: Transform - - uid: 15927 + - uid: 77 components: - - pos: -7.5,-36.5 + - rot: 3.141592653589793 rad + pos: 3.5,-37.5 parent: 2 type: Transform -- proto: AirlockAtmosphericsLocked - entities: - - uid: 15930 + - uid: 78 components: - - pos: 3.5,-38.5 + - rot: 3.141592653589793 rad + pos: 3.5,-38.5 parent: 2 type: Transform - - uid: 15931 + - uid: 79 components: - - pos: 3.5,-37.5 + - rot: 1.5707963267948966 rad + pos: -4.5,-38.5 + parent: 2 + type: Transform + - uid: 80 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-39.5 parent: 2 type: Transform - proto: AirlockBarLocked entities: - - uid: 489 + - uid: 81 components: - pos: -11.5,-4.5 parent: 2 type: Transform - proto: AirlockBrigGlassLocked entities: - - uid: 10936 + - uid: 82 components: - pos: -26.5,-9.5 parent: 2 type: Transform - - uid: 10937 + - uid: 83 components: - pos: -46.5,-5.5 parent: 2 type: Transform - - uid: 10938 + - uid: 84 components: - pos: -41.5,-15.5 parent: 2 type: Transform - links: - - 1290 + - 753 type: DeviceLinkSink - - uid: 10939 + - uid: 85 components: - pos: -44.5,-9.5 parent: 2 type: Transform - - uid: 10940 + - uid: 86 components: - pos: -24.5,-6.5 parent: 2 type: Transform - - uid: 10941 + - uid: 87 components: - pos: -26.5,-8.5 parent: 2 type: Transform - - uid: 10942 + - uid: 88 components: - pos: -34.5,-8.5 parent: 2 type: Transform - - uid: 10943 + - uid: 89 components: - pos: -34.5,-9.5 parent: 2 type: Transform - - uid: 10944 + - uid: 90 components: - pos: -35.5,-16.5 parent: 2 type: Transform - links: - - 1292 + - 754 type: DeviceLinkSink - - uid: 10946 + - uid: 91 components: - pos: -44.5,-8.5 parent: 2 type: Transform - - uid: 10947 + - uid: 92 components: - pos: -39.5,-16.5 parent: 2 type: Transform - links: - - 1281 + - 752 type: DeviceLinkSink - - uid: 10949 + - uid: 93 components: - pos: -41.5,-12.5 parent: 2 type: Transform - links: - - 1278 + - 751 type: DeviceLinkSink - - uid: 14216 + - uid: 94 components: - pos: -22.5,22.5 parent: 2 type: Transform - proto: AirlockBrigLocked entities: - - uid: 348 + - uid: 95 components: - pos: -28.5,-7.5 parent: 2 type: Transform - - uid: 532 + - uid: 96 components: - pos: -19.5,-8.5 parent: 2 type: Transform - - uid: 14199 + - uid: 97 components: - name: maintenance hatch type: MetaData @@ -7564,641 +7657,656 @@ entities: type: Transform - proto: AirlockCaptainLocked entities: - - uid: 14245 + - uid: 98 components: - pos: -2.5,38.5 parent: 2 type: Transform - proto: AirlockCargoGlass entities: - - uid: 1340 + - uid: 99 components: - pos: 11.5,-2.5 parent: 2 type: Transform - - uid: 1689 + - uid: 100 components: - pos: 14.5,-2.5 parent: 2 type: Transform - proto: AirlockCargoGlassLocked entities: - - uid: 45 + - uid: 101 components: - pos: 5.5,-8.5 parent: 2 type: Transform - - uid: 951 + - uid: 102 components: - pos: 9.5,-9.5 parent: 2 type: Transform - - uid: 1116 + - uid: 103 components: - pos: 6.5,-8.5 parent: 2 type: Transform - - uid: 1519 + - uid: 104 components: - pos: 9.5,-18.5 parent: 2 type: Transform - - uid: 3601 + - uid: 105 components: - pos: 10.5,-18.5 parent: 2 type: Transform - - uid: 11636 + - uid: 106 components: - pos: 13.5,-25.5 parent: 2 type: Transform - - uid: 12177 + - uid: 107 components: - rot: 1.5707963267948966 rad pos: 8.5,-13.5 parent: 2 type: Transform - - uid: 12515 + - uid: 108 components: - pos: 13.5,-26.5 parent: 2 type: Transform - - uid: 15261 + - uid: 109 components: - pos: 8.5,-12.5 parent: 2 type: Transform - - uid: 16208 + - uid: 110 components: - pos: 13.5,-11.5 parent: 2 type: Transform - proto: AirlockCargoLocked entities: - - uid: 14484 + - uid: 111 components: - rot: 1.5707963267948966 rad pos: 9.5,-6.5 parent: 2 type: Transform - - uid: 15693 + - uid: 112 components: - pos: 2.5,-4.5 parent: 2 type: Transform - proto: AirlockChapelLocked entities: - - uid: 10927 + - uid: 113 components: - pos: -34.5,36.5 parent: 2 type: Transform - - uid: 10928 + - uid: 114 components: - pos: -32.5,33.5 parent: 2 type: Transform - proto: AirlockChemistryLocked entities: - - uid: 10868 + - uid: 115 components: - pos: 13.5,12.5 parent: 2 type: Transform - - uid: 10869 + - uid: 116 components: - pos: 18.5,14.5 parent: 2 type: Transform - proto: AirlockChiefEngineerGlassLocked entities: - - uid: 65 + - uid: 117 components: - pos: -9.5,-23.5 parent: 2 type: Transform - - uid: 192 + - uid: 118 components: - pos: -9.5,-22.5 parent: 2 type: Transform - proto: AirlockChiefEngineerLocked entities: - - uid: 1237 + - uid: 119 components: - pos: -4.5,-31.5 parent: 2 type: Transform - proto: AirlockChiefMedicalOfficerLocked entities: - - uid: 10871 + - uid: 120 components: - pos: 11.5,21.5 parent: 2 type: Transform - proto: AirlockCommandGlass entities: - - uid: 14261 + - uid: 121 components: - pos: -24.5,37.5 parent: 2 type: Transform - - uid: 14262 + - uid: 122 components: - pos: -22.5,37.5 parent: 2 type: Transform - proto: AirlockCommandGlassLocked entities: - - uid: 1789 + - uid: 123 components: - pos: -19.5,-22.5 parent: 2 type: Transform - - uid: 14138 + - uid: 124 components: - pos: -21.5,33.5 parent: 2 type: Transform - - uid: 14193 + - uid: 125 components: - pos: -2.5,30.5 parent: 2 type: Transform - - uid: 14234 + - uid: 126 components: - pos: -21.5,35.5 parent: 2 type: Transform - - uid: 14235 + - uid: 127 components: - pos: -18.5,35.5 parent: 2 type: Transform - - uid: 14236 + - uid: 128 components: - pos: -18.5,33.5 parent: 2 type: Transform - - uid: 14239 + - uid: 129 components: - pos: -5.5,32.5 parent: 2 type: Transform - - uid: 14240 + - uid: 130 components: - pos: -3.5,32.5 parent: 2 type: Transform - - uid: 14243 + - uid: 131 components: - pos: -2.5,34.5 parent: 2 type: Transform - proto: AirlockCommandLocked entities: - - uid: 2252 + - uid: 132 components: - pos: -13.5,35.5 parent: 2 type: Transform - - uid: 2394 + - uid: 133 components: - pos: -6.5,35.5 parent: 2 type: Transform - - uid: 5619 + - uid: 134 components: - rot: -1.5707963267948966 rad pos: -12.5,40.5 parent: 2 type: Transform - - uid: 5620 + - uid: 135 components: - rot: -1.5707963267948966 rad pos: -7.5,40.5 parent: 2 type: Transform - - uid: 14241 + - uid: 136 components: - pos: -5.5,28.5 parent: 2 type: Transform - - uid: 14242 + - uid: 137 components: - pos: -3.5,28.5 parent: 2 type: Transform - proto: AirlockDetectiveGlassLocked entities: - - uid: 526 + - uid: 138 components: - pos: 24.5,6.5 parent: 2 type: Transform - proto: AirlockDetectiveLocked entities: - - uid: 2964 + - uid: 139 components: - pos: 26.5,3.5 parent: 2 type: Transform - proto: AirlockEngineeringGlassLocked entities: - - uid: 193 + - uid: 140 components: - pos: -18.5,-29.5 parent: 2 type: Transform - - uid: 304 + - uid: 141 components: - pos: -9.5,-18.5 parent: 2 type: Transform - - uid: 2240 + - uid: 142 components: - pos: -19.5,-24.5 parent: 2 type: Transform - - uid: 2695 + - uid: 143 components: - pos: -21.5,-26.5 parent: 2 type: Transform - - uid: 2771 + - uid: 144 components: - pos: -16.5,-29.5 parent: 2 type: Transform - - uid: 3934 + - uid: 145 components: - rot: -1.5707963267948966 rad pos: -14.5,-33.5 parent: 2 type: Transform - - uid: 9558 + - uid: 146 components: - pos: -5.5,-23.5 parent: 2 type: Transform - - uid: 15956 + - uid: 147 components: - pos: -3.5,-20.5 parent: 2 type: Transform - - uid: 15960 + - uid: 148 components: - pos: -5.5,-18.5 parent: 2 type: Transform - - uid: 15965 + - uid: 149 components: - pos: -7.5,-25.5 parent: 2 type: Transform - - uid: 15968 + - uid: 150 components: - pos: -9.5,-28.5 parent: 2 type: Transform - - uid: 15969 + - uid: 151 components: - pos: -11.5,-31.5 parent: 2 type: Transform - - uid: 15971 + - uid: 152 components: - pos: -9.5,-33.5 parent: 2 type: Transform - - uid: 16170 + - uid: 153 components: - pos: -14.5,-39.5 parent: 2 type: Transform - proto: AirlockEngineeringLocked entities: - - uid: 1813 + - uid: 154 components: - pos: 25.5,-17.5 parent: 2 type: Transform - - uid: 2772 + - uid: 155 components: - pos: -16.5,-26.5 parent: 2 type: Transform - - uid: 2774 + - uid: 156 components: - pos: -18.5,-26.5 parent: 2 type: Transform - - uid: 4210 + - uid: 157 components: - pos: -11.5,-35.5 parent: 2 type: Transform - - uid: 10872 + - uid: 158 components: - rot: -1.5707963267948966 rad pos: -46.5,45.5 parent: 2 type: Transform - - uid: 12014 + - uid: 159 components: - rot: -1.5707963267948966 rad pos: -31.5,-19.5 parent: 2 type: Transform - - uid: 14019 + - uid: 160 components: - rot: 1.5707963267948966 rad pos: 0.5,-10.5 parent: 2 type: Transform - - uid: 14026 + - uid: 161 components: - rot: 1.5707963267948966 rad pos: -14.5,30.5 parent: 2 type: Transform - - uid: 14230 + - uid: 162 components: - pos: -17.5,15.5 parent: 2 type: Transform - - uid: 16754 + - uid: 163 components: - pos: 28.5,26.5 parent: 2 type: Transform - proto: AirlockExternalEngineeringLocked entities: - - uid: 2526 + - uid: 164 components: - pos: -31.5,-29.5 parent: 2 type: Transform - - uid: 2680 + - uid: 165 components: - pos: -29.5,-27.5 parent: 2 type: Transform - - uid: 12993 + - uid: 166 components: - pos: -23.5,-46.5 parent: 2 type: Transform - - uid: 12994 + - uid: 167 components: - pos: -20.5,-46.5 parent: 2 type: Transform - - uid: 12995 + - uid: 168 components: - pos: -17.5,-47.5 parent: 2 type: Transform - - uid: 12996 + - uid: 169 components: - pos: -17.5,-50.5 parent: 2 type: Transform - - uid: 12998 + - uid: 170 components: - pos: -15.5,-50.5 parent: 2 type: Transform - - uid: 12999 + - uid: 171 components: - pos: -15.5,-47.5 parent: 2 type: Transform - proto: AirlockExternalGlassAtmosphericsLocked entities: - - uid: 16311 + - uid: 172 components: - - pos: 1.5,-51.5 + - pos: -8.5,-50.5 parent: 2 type: Transform - - uid: 16318 + - uid: 173 components: - - pos: 3.5,-51.5 + - pos: 1.5,-52.5 + parent: 2 + type: Transform + - uid: 174 + components: + - pos: -5.5,-51.5 + parent: 2 + type: Transform + - uid: 175 + components: + - pos: 3.5,-52.5 + parent: 2 + type: Transform + - uid: 176 + components: + - pos: 2.5,-54.5 parent: 2 type: Transform - proto: AirlockExternalGlassCargoLocked entities: - - uid: 11548 + - uid: 177 components: - pos: 21.5,-33.5 parent: 2 type: Transform - - uid: 15567 + - uid: 178 components: - pos: 19.5,-33.5 parent: 2 type: Transform - proto: AirlockExternalGlassEasyPry entities: - - uid: 361 + - uid: 179 components: - pos: -51.5,19.5 parent: 2 type: Transform - - uid: 363 + - uid: 180 components: - pos: -51.5,11.5 parent: 2 type: Transform - - uid: 364 + - uid: 181 components: - pos: -51.5,13.5 parent: 2 type: Transform - - uid: 368 + - uid: 182 components: - pos: -51.5,21.5 parent: 2 type: Transform - - uid: 369 + - uid: 183 components: - pos: 41.5,-3.5 parent: 2 type: Transform - - uid: 372 + - uid: 184 components: - pos: 41.5,-9.5 parent: 2 type: Transform - - uid: 373 + - uid: 185 components: - pos: 41.5,-17.5 parent: 2 type: Transform - - uid: 381 + - uid: 186 components: - pos: 41.5,-19.5 parent: 2 type: Transform - - uid: 382 + - uid: 187 components: - pos: 41.5,-11.5 parent: 2 type: Transform - - uid: 383 + - uid: 188 components: - pos: 41.5,-1.5 parent: 2 type: Transform - proto: AirlockExternalGlassLocked entities: - - uid: 1854 + - uid: 189 components: - pos: -0.5,-33.5 parent: 2 type: Transform - - uid: 2048 + - uid: 190 components: - pos: 1.5,-33.5 parent: 2 type: Transform - - uid: 2960 + - uid: 191 components: - pos: 11.5,-41.5 parent: 2 type: Transform - links: - - 11639 - - 3997 + - 202 + - 192 type: DeviceLinkSink - linkedPorts: - 11639: + 202: - DoorStatus: DoorBolt - 3997: + 192: - DoorStatus: DoorBolt type: DeviceLinkSource - - uid: 3997 + - uid: 192 components: - pos: 10.5,-44.5 parent: 2 type: Transform - links: - - 2960 - - 11621 + - 191 + - 201 type: DeviceLinkSink - linkedPorts: - 2960: + 191: - DoorStatus: DoorBolt - 11621: + 201: - DoorStatus: DoorBolt type: DeviceLinkSource - - uid: 5277 + - uid: 193 components: - pos: 48.5,11.5 parent: 2 type: Transform - - uid: 5299 + - uid: 194 components: - pos: 46.5,11.5 parent: 2 type: Transform - - uid: 6663 + - uid: 195 components: - pos: -53.5,48.5 parent: 2 type: Transform - - uid: 9584 + - uid: 196 components: - pos: -55.5,48.5 parent: 2 type: Transform - - uid: 9628 + - uid: 197 components: - rot: 3.141592653589793 rad pos: -42.5,48.5 parent: 2 type: Transform - - uid: 9630 + - uid: 198 components: - pos: -42.5,54.5 parent: 2 type: Transform - - uid: 9633 + - uid: 199 components: - rot: 3.141592653589793 rad pos: -42.5,52.5 parent: 2 type: Transform - - uid: 10874 + - uid: 200 components: - rot: 3.141592653589793 rad pos: 42.5,11.5 parent: 2 type: Transform - - uid: 11621 + - uid: 201 components: - pos: 10.5,-41.5 parent: 2 type: Transform - links: - - 11639 - - 3997 + - 202 + - 192 type: DeviceLinkSink - linkedPorts: - 3997: + 192: - DoorStatus: DoorBolt - 11639: + 202: - DoorStatus: DoorBolt type: DeviceLinkSource - - uid: 11639 + - uid: 202 components: - pos: 11.5,-44.5 parent: 2 type: Transform - links: - - 2960 - - 11621 + - 191 + - 201 type: DeviceLinkSink - linkedPorts: - 2960: + 191: - DoorStatus: DoorBolt - 11621: + 201: - DoorStatus: DoorBolt type: DeviceLinkSource - proto: AirlockExternalGlassShuttleArrivals entities: - - uid: 3575 + - uid: 203 components: - pos: 30.5,-24.5 parent: 2 type: Transform - - uid: 4810 + - uid: 204 components: - pos: 37.5,-24.5 parent: 2 type: Transform - proto: AirlockExternalGlassShuttleEmergencyLocked entities: - - uid: 138 + - uid: 205 components: - rot: -1.5707963267948966 rad pos: -54.5,11.5 parent: 2 type: Transform - - uid: 145 + - uid: 206 components: - rot: -1.5707963267948966 rad pos: -54.5,19.5 parent: 2 type: Transform - - uid: 203 + - uid: 207 components: - rot: -1.5707963267948966 rad pos: -54.5,13.5 parent: 2 type: Transform - - uid: 15983 + - uid: 208 components: - rot: -1.5707963267948966 rad pos: -54.5,21.5 @@ -8206,19 +8314,19 @@ entities: type: Transform - proto: AirlockExternalGlassShuttleEscape entities: - - uid: 5756 + - uid: 209 components: - rot: 3.141592653589793 rad pos: -31.5,42.5 parent: 2 type: Transform - - uid: 6751 + - uid: 210 components: - rot: 3.141592653589793 rad pos: 10.5,31.5 parent: 2 type: Transform - - uid: 13097 + - uid: 211 components: - rot: 1.5707963267948966 rad pos: 42.5,5.5 @@ -8226,61 +8334,61 @@ entities: type: Transform - proto: AirlockExternalGlassShuttleLocked entities: - - uid: 60 + - uid: 212 components: - rot: 1.5707963267948966 rad pos: 43.5,-1.5 parent: 2 type: Transform - - uid: 89 + - uid: 213 components: - rot: 1.5707963267948966 rad pos: 43.5,-17.5 parent: 2 type: Transform - - uid: 152 + - uid: 214 components: - rot: 1.5707963267948966 rad pos: 43.5,-11.5 parent: 2 type: Transform - - uid: 182 + - uid: 215 components: - rot: 1.5707963267948966 rad pos: 43.5,-9.5 parent: 2 type: Transform - - uid: 195 + - uid: 216 components: - rot: 1.5707963267948966 rad pos: 43.5,-3.5 parent: 2 type: Transform - - uid: 197 + - uid: 217 components: - rot: 1.5707963267948966 rad pos: 43.5,-19.5 parent: 2 type: Transform - - uid: 1902 + - uid: 218 components: - pos: 19.5,-35.5 parent: 2 type: Transform - - uid: 2063 + - uid: 219 components: - pos: 21.5,-35.5 parent: 2 type: Transform - proto: AirlockFreezer entities: - - uid: 5524 + - uid: 220 components: - rot: -1.5707963267948966 rad pos: 0.5,41.5 parent: 2 type: Transform - - uid: 12326 + - uid: 221 components: - rot: -1.5707963267948966 rad pos: -53.5,-6.5 @@ -8288,25 +8396,25 @@ entities: type: Transform - proto: AirlockFreezerKitchenHydroLocked entities: - - uid: 302 + - uid: 222 components: - pos: -14.5,8.5 parent: 2 type: Transform - - uid: 609 + - uid: 223 components: - pos: -14.5,16.5 parent: 2 type: Transform - proto: AirlockFreezerLocked entities: - - uid: 13796 + - uid: 224 components: - rot: 1.5707963267948966 rad pos: -11.5,15.5 parent: 2 type: Transform - - uid: 13803 + - uid: 225 components: - rot: 1.5707963267948966 rad pos: -11.5,10.5 @@ -8314,369 +8422,369 @@ entities: type: Transform - proto: AirlockGlass entities: - - uid: 389 + - uid: 226 components: - pos: -26.5,5.5 parent: 2 type: Transform - - uid: 1260 + - uid: 227 components: - pos: -38.5,6.5 parent: 2 type: Transform - - uid: 10929 + - uid: 228 components: - pos: -57.5,-7.5 parent: 2 type: Transform - - uid: 11007 + - uid: 229 components: - pos: -37.5,16.5 parent: 2 type: Transform - - uid: 11066 + - uid: 230 components: - pos: -38.5,5.5 parent: 2 type: Transform - - uid: 12877 + - uid: 231 components: - pos: -26.5,6.5 parent: 2 type: Transform - - uid: 14391 + - uid: 232 components: - pos: -43.5,17.5 parent: 2 type: Transform - - uid: 14392 + - uid: 233 components: - pos: -43.5,15.5 parent: 2 type: Transform - - uid: 14393 + - uid: 234 components: - pos: -40.5,8.5 parent: 2 type: Transform - - uid: 14394 + - uid: 235 components: - pos: -39.5,14.5 parent: 2 type: Transform - - uid: 14395 + - uid: 236 components: - pos: -39.5,15.5 parent: 2 type: Transform - - uid: 14396 + - uid: 237 components: - pos: -42.5,8.5 parent: 2 type: Transform - - uid: 14399 + - uid: 238 components: - pos: -46.5,8.5 parent: 2 type: Transform - - uid: 14401 + - uid: 239 components: - pos: -48.5,8.5 parent: 2 type: Transform - - uid: 14436 + - uid: 240 components: - pos: -26.5,15.5 parent: 2 type: Transform - - uid: 14437 + - uid: 241 components: - pos: -26.5,14.5 parent: 2 type: Transform - - uid: 14438 + - uid: 242 components: - pos: -24.5,18.5 parent: 2 type: Transform - - uid: 14439 + - uid: 243 components: - pos: -23.5,18.5 parent: 2 type: Transform - - uid: 14440 + - uid: 244 components: - pos: -11.5,25.5 parent: 2 type: Transform - - uid: 14441 + - uid: 245 components: - pos: -11.5,26.5 parent: 2 type: Transform - - uid: 14445 + - uid: 246 components: - pos: -19.5,-3.5 parent: 2 type: Transform - - uid: 14446 + - uid: 247 components: - pos: -19.5,-4.5 parent: 2 type: Transform - - uid: 14447 + - uid: 248 components: - pos: -24.5,-1.5 parent: 2 type: Transform - - uid: 14449 + - uid: 249 components: - pos: -17.5,-6.5 parent: 2 type: Transform - - uid: 14450 + - uid: 250 components: - pos: -16.5,-6.5 parent: 2 type: Transform - - uid: 14451 + - uid: 251 components: - pos: -8.5,-11.5 parent: 2 type: Transform - - uid: 14452 + - uid: 252 components: - pos: -8.5,-1.5 parent: 2 type: Transform - - uid: 14454 + - uid: 253 components: - pos: -2.5,1.5 parent: 2 type: Transform - - uid: 14455 + - uid: 254 components: - pos: -2.5,-0.5 parent: 2 type: Transform - - uid: 14461 + - uid: 255 components: - rot: 1.5707963267948966 rad pos: -4.5,15.5 parent: 2 type: Transform - - uid: 14462 + - uid: 256 components: - rot: 1.5707963267948966 rad pos: -3.5,15.5 parent: 2 type: Transform - - uid: 14487 + - uid: 257 components: - rot: 1.5707963267948966 rad pos: 3.5,-0.5 parent: 2 type: Transform - - uid: 14488 + - uid: 258 components: - rot: 1.5707963267948966 rad pos: 3.5,1.5 parent: 2 type: Transform - - uid: 14514 + - uid: 259 components: - rot: 1.5707963267948966 rad pos: 16.5,0.5 parent: 2 type: Transform - - uid: 14515 + - uid: 260 components: - rot: 1.5707963267948966 rad pos: 13.5,3.5 parent: 2 type: Transform - - uid: 14516 + - uid: 261 components: - rot: 1.5707963267948966 rad pos: 12.5,3.5 parent: 2 type: Transform - - uid: 14518 + - uid: 262 components: - rot: 1.5707963267948966 rad pos: 24.5,-6.5 parent: 2 type: Transform - - uid: 14519 + - uid: 263 components: - rot: 1.5707963267948966 rad pos: 25.5,-6.5 parent: 2 type: Transform - - uid: 14521 + - uid: 264 components: - rot: 1.5707963267948966 rad pos: 27.5,-4.5 parent: 2 type: Transform - - uid: 14522 + - uid: 265 components: - rot: 1.5707963267948966 rad pos: 31.5,-1.5 parent: 2 type: Transform - - uid: 14523 + - uid: 266 components: - rot: 1.5707963267948966 rad pos: 32.5,-1.5 parent: 2 type: Transform - - uid: 14525 + - uid: 267 components: - rot: 1.5707963267948966 rad pos: 36.5,-5.5 parent: 2 type: Transform - - uid: 14527 + - uid: 268 components: - rot: 1.5707963267948966 rad pos: 38.5,-14.5 parent: 2 type: Transform - - uid: 14528 + - uid: 269 components: - rot: 1.5707963267948966 rad pos: 39.5,-14.5 parent: 2 type: Transform - - uid: 14554 + - uid: 270 components: - rot: 1.5707963267948966 rad pos: 29.5,-17.5 parent: 2 type: Transform - - uid: 14555 + - uid: 271 components: - rot: 1.5707963267948966 rad pos: 36.5,0.5 parent: 2 type: Transform - - uid: 14556 + - uid: 272 components: - rot: 1.5707963267948966 rad pos: 33.5,2.5 parent: 2 type: Transform - - uid: 14557 + - uid: 273 components: - rot: 1.5707963267948966 rad pos: 34.5,2.5 parent: 2 type: Transform - - uid: 15238 + - uid: 274 components: - pos: -12.5,-14.5 parent: 2 type: Transform - - uid: 15247 + - uid: 275 components: - pos: -11.5,-14.5 parent: 2 type: Transform - - uid: 15292 + - uid: 276 components: - pos: -15.5,-17.5 parent: 2 type: Transform - - uid: 15339 + - uid: 277 components: - pos: -16.5,-14.5 parent: 2 type: Transform - - uid: 15371 + - uid: 278 components: - pos: -15.5,-18.5 parent: 2 type: Transform - - uid: 15526 + - uid: 279 components: - pos: -17.5,-14.5 parent: 2 type: Transform - - uid: 15572 + - uid: 280 components: - pos: -11.5,0.5 parent: 2 type: Transform - - uid: 15615 + - uid: 281 components: - rot: 1.5707963267948966 rad pos: -13.5,2.5 parent: 2 type: Transform - - uid: 15616 + - uid: 282 components: - rot: 1.5707963267948966 rad pos: -14.5,2.5 parent: 2 type: Transform - - uid: 15618 + - uid: 283 components: - rot: 1.5707963267948966 rad pos: -6.5,5.5 parent: 2 type: Transform - - uid: 15704 + - uid: 284 components: - pos: -6.5,6.5 parent: 2 type: Transform - - uid: 17189 + - uid: 285 components: - pos: -11.5,-0.5 parent: 2 type: Transform - - uid: 17190 + - uid: 286 components: - pos: -20.5,0.5 parent: 2 type: Transform - - uid: 17191 + - uid: 287 components: - pos: -20.5,-0.5 parent: 2 type: Transform - proto: AirlockHeadOfPersonnelLocked entities: - - uid: 2338 + - uid: 288 components: - pos: 22.5,-4.5 parent: 2 type: Transform - proto: AirlockHeadOfSecurityGlassLocked entities: - - uid: 10945 + - uid: 289 components: - pos: -29.5,-14.5 parent: 2 type: Transform - proto: AirlockHydroGlassLocked entities: - - uid: 14472 + - uid: 290 components: - pos: -16.5,10.5 parent: 2 type: Transform - proto: AirlockHydroponicsLocked entities: - - uid: 15533 + - uid: 291 components: - pos: -23.5,12.5 parent: 2 type: Transform - proto: AirlockJanitorLocked entities: - - uid: 1 + - uid: 292 components: - rot: 1.5707963267948966 rad pos: -2.5,11.5 @@ -8684,13 +8792,13 @@ entities: type: Transform - proto: AirlockKitchenGlassLocked entities: - - uid: 14469 + - uid: 293 components: - rot: 1.5707963267948966 rad pos: -5.5,10.5 parent: 2 type: Transform - - uid: 14486 + - uid: 294 components: - rot: 1.5707963267948966 rad pos: -10.5,19.5 @@ -8698,25 +8806,25 @@ entities: type: Transform - proto: AirlockMailLocked entities: - - uid: 417 + - uid: 295 components: - pos: 6.5,-1.5 parent: 2 type: Transform - proto: AirlockMaint entities: - - uid: 9557 + - uid: 296 components: - pos: 21.5,30.5 parent: 2 type: Transform - - uid: 14014 + - uid: 297 components: - rot: 1.5707963267948966 rad pos: 17.5,-18.5 parent: 2 type: Transform - - uid: 14015 + - uid: 298 components: - rot: 1.5707963267948966 rad pos: 22.5,-9.5 @@ -8724,7 +8832,7 @@ entities: type: Transform - proto: AirlockMaintBarLocked entities: - - uid: 14007 + - uid: 299 components: - rot: 1.5707963267948966 rad pos: -2.5,-6.5 @@ -8732,38 +8840,38 @@ entities: type: Transform - proto: AirlockMaintCargoLocked entities: - - uid: 419 + - uid: 300 components: - pos: 2.5,-13.5 parent: 2 type: Transform - - uid: 8397 + - uid: 301 components: - pos: 15.5,-23.5 parent: 2 type: Transform - - uid: 8398 + - uid: 302 components: - pos: 13.5,-20.5 parent: 2 type: Transform - - uid: 8406 + - uid: 303 components: - pos: 8.5,-20.5 parent: 2 type: Transform - - uid: 12697 + - uid: 304 components: - pos: 20.5,-23.5 parent: 2 type: Transform - - uid: 13989 + - uid: 305 components: - rot: 1.5707963267948966 rad pos: 0.5,-6.5 parent: 2 type: Transform - - uid: 14017 + - uid: 306 components: - rot: 1.5707963267948966 rad pos: 16.5,-9.5 @@ -8771,60 +8879,60 @@ entities: type: Transform - proto: AirlockMaintCommandLocked entities: - - uid: 481 + - uid: 307 components: - pos: -21.5,-20.5 parent: 2 type: Transform - - uid: 13264 + - uid: 308 components: - rot: 1.5707963267948966 rad pos: -6.5,30.5 parent: 2 type: Transform - - uid: 13351 + - uid: 309 components: - rot: 1.5707963267948966 rad pos: 0.5,28.5 parent: 2 type: Transform - - uid: 14027 + - uid: 310 components: - rot: 1.5707963267948966 rad pos: -20.5,32.5 parent: 2 type: Transform - - uid: 14229 + - uid: 311 components: - pos: -12.5,31.5 parent: 2 type: Transform - proto: AirlockMaintEngiLocked entities: - - uid: 6453 + - uid: 312 components: - rot: 3.141592653589793 rad pos: -27.5,-23.5 parent: 2 type: Transform - - uid: 7904 + - uid: 313 components: - pos: 22.5,-20.5 parent: 2 type: Transform - - uid: 10876 + - uid: 314 components: - rot: 3.141592653589793 rad pos: -23.5,-27.5 parent: 2 type: Transform - - uid: 10877 + - uid: 315 components: - rot: 3.141592653589793 rad pos: 2.5,-21.5 parent: 2 type: Transform - - uid: 10879 + - uid: 316 components: - rot: 3.141592653589793 rad pos: 0.5,-18.5 @@ -8832,19 +8940,19 @@ entities: type: Transform - proto: AirlockMaintGlass entities: - - uid: 4217 + - uid: 317 components: - pos: 5.5,28.5 parent: 2 type: Transform - - uid: 11836 + - uid: 318 components: - pos: 3.5,8.5 parent: 2 type: Transform - proto: AirlockMaintHOPLocked entities: - - uid: 14016 + - uid: 319 components: - rot: 1.5707963267948966 rad pos: 18.5,-7.5 @@ -8852,168 +8960,168 @@ entities: type: Transform - proto: AirlockMaintHydroLocked entities: - - uid: 14197 + - uid: 320 components: - pos: -20.5,15.5 parent: 2 type: Transform - proto: AirlockMaintJanitorLocked entities: - - uid: 14195 + - uid: 321 components: - pos: 2.5,11.5 parent: 2 type: Transform - proto: AirlockMaintKitchenLocked entities: - - uid: 14196 + - uid: 322 components: - pos: -12.5,17.5 parent: 2 type: Transform - proto: AirlockMaintLocked entities: - - uid: 299 + - uid: 323 components: - pos: -28.5,41.5 parent: 2 type: Transform - - uid: 1000 + - uid: 324 components: - rot: -1.5707963267948966 rad pos: 38.5,11.5 parent: 2 type: Transform - - uid: 1707 + - uid: 325 components: - pos: 19.5,-20.5 parent: 2 type: Transform - - uid: 1717 + - uid: 326 components: - pos: 19.5,-17.5 parent: 2 type: Transform - - uid: 10873 + - uid: 327 components: - rot: 3.141592653589793 rad pos: -47.5,46.5 parent: 2 type: Transform - - uid: 13960 + - uid: 328 components: - rot: 1.5707963267948966 rad pos: -4.5,-13.5 parent: 2 type: Transform - - uid: 14008 + - uid: 329 components: - rot: 1.5707963267948966 rad pos: -1.5,-4.5 parent: 2 type: Transform - - uid: 14024 + - uid: 330 components: - rot: 1.5707963267948966 rad pos: -1.5,25.5 parent: 2 type: Transform - - uid: 14028 + - uid: 331 components: - rot: 1.5707963267948966 rad pos: -19.5,28.5 parent: 2 type: Transform - - uid: 14029 + - uid: 332 components: - rot: 1.5707963267948966 rad pos: -25.5,34.5 parent: 2 type: Transform - - uid: 14092 + - uid: 333 components: - pos: -19.5,-19.5 parent: 2 type: Transform - - uid: 14093 + - uid: 334 components: - pos: -46.5,4.5 parent: 2 type: Transform - - uid: 14107 + - uid: 335 components: - pos: -36.5,4.5 parent: 2 type: Transform - - uid: 14108 + - uid: 336 components: - pos: -26.5,-0.5 parent: 2 type: Transform - - uid: 14114 + - uid: 337 components: - pos: -31.5,-1.5 parent: 2 type: Transform - - uid: 14161 + - uid: 338 components: - pos: -2.5,14.5 parent: 2 type: Transform - - uid: 14181 + - uid: 339 components: - pos: 40.5,2.5 parent: 2 type: Transform - - uid: 14192 + - uid: 340 components: - pos: -22.5,17.5 parent: 2 type: Transform - - uid: 14232 + - uid: 341 components: - pos: -17.5,23.5 parent: 2 type: Transform - - uid: 14350 + - uid: 342 components: - pos: -37.5,21.5 parent: 2 type: Transform - - uid: 14351 + - uid: 343 components: - pos: -39.5,22.5 parent: 2 type: Transform - - uid: 14356 + - uid: 344 components: - pos: -27.5,17.5 parent: 2 type: Transform - - uid: 14359 + - uid: 345 components: - pos: -29.5,23.5 parent: 2 type: Transform - - uid: 15506 + - uid: 346 components: - rot: -1.5707963267948966 rad pos: 6.5,2.5 parent: 2 type: Transform - - uid: 15619 + - uid: 347 components: - rot: 1.5707963267948966 rad pos: 9.5,4.5 parent: 2 type: Transform - - uid: 15620 + - uid: 348 components: - rot: 1.5707963267948966 rad pos: -1.5,7.5 parent: 2 type: Transform - - uid: 15621 + - uid: 349 components: - rot: 1.5707963267948966 rad pos: 0.5,5.5 @@ -9021,123 +9129,123 @@ entities: type: Transform - proto: AirlockMaintMedLocked entities: - - uid: 12067 + - uid: 350 components: - rot: -1.5707963267948966 rad pos: 30.5,19.5 parent: 2 type: Transform - - uid: 12068 + - uid: 351 components: - rot: -1.5707963267948966 rad pos: 31.5,17.5 parent: 2 type: Transform - - uid: 12069 + - uid: 352 components: - rot: -1.5707963267948966 rad pos: 20.5,27.5 parent: 2 type: Transform - - uid: 12071 + - uid: 353 components: - rot: -1.5707963267948966 rad pos: 13.5,27.5 parent: 2 type: Transform - - uid: 12072 + - uid: 354 components: - rot: -1.5707963267948966 rad pos: 9.5,14.5 parent: 2 type: Transform - - uid: 16491 + - uid: 355 components: - pos: 5.5,7.5 parent: 2 type: Transform - proto: AirlockMaintRnDLocked entities: - - uid: 307 + - uid: 356 components: - pos: -36.5,39.5 parent: 2 type: Transform - - uid: 14061 + - uid: 357 components: - pos: -43.5,45.5 parent: 2 type: Transform - - uid: 14083 + - uid: 358 components: - pos: -37.5,41.5 parent: 2 type: Transform - - uid: 14358 + - uid: 359 components: - pos: -37.5,24.5 parent: 2 type: Transform - proto: AirlockMaintSecLocked entities: - - uid: 1170 + - uid: 360 components: - pos: -37.5,-21.5 parent: 2 type: Transform - - uid: 10953 + - uid: 361 components: - pos: -28.5,-16.5 parent: 2 type: Transform - - uid: 10954 + - uid: 362 components: - pos: -22.5,-17.5 parent: 2 type: Transform - - uid: 10955 + - uid: 363 components: - pos: -46.5,-1.5 parent: 2 type: Transform - - uid: 10956 + - uid: 364 components: - pos: -32.5,-3.5 parent: 2 type: Transform - - uid: 11805 + - uid: 365 components: - pos: -35.5,-20.5 parent: 2 type: Transform - - uid: 12734 + - uid: 366 components: - rot: 3.141592653589793 rad pos: -44.5,-18.5 parent: 2 type: Transform - - uid: 15200 + - uid: 367 components: - pos: -37.5,-17.5 parent: 2 type: Transform - proto: AirlockMantisLocked entities: - - uid: 170 + - uid: 368 components: - name: mantis' office type: MetaData - pos: -36.5,35.5 parent: 2 type: Transform - - uid: 593 + - uid: 369 components: - name: mantis' office type: MetaData - pos: -37.5,32.5 parent: 2 type: Transform - - uid: 1362 + - uid: 370 components: - name: mantis' office type: MetaData @@ -9146,131 +9254,131 @@ entities: type: Transform - proto: AirlockMedicalGlass entities: - - uid: 15098 + - uid: 371 components: - pos: -31.5,4.5 parent: 2 type: Transform - - uid: 15879 + - uid: 372 components: - pos: 12.5,17.5 parent: 2 type: Transform - - uid: 15880 + - uid: 373 components: - pos: 13.5,17.5 parent: 2 type: Transform - - uid: 15881 + - uid: 374 components: - pos: 20.5,15.5 parent: 2 type: Transform - - uid: 15882 + - uid: 375 components: - pos: 20.5,16.5 parent: 2 type: Transform - proto: AirlockMedicalGlassLocked entities: - - uid: 1413 + - uid: 376 components: - pos: 9.5,11.5 parent: 2 type: Transform - - uid: 4231 + - uid: 377 components: - pos: 17.5,17.5 parent: 2 type: Transform - - uid: 4847 + - uid: 378 components: - rot: 3.141592653589793 rad pos: 16.5,6.5 parent: 2 type: Transform - - uid: 9170 + - uid: 379 components: - rot: 3.141592653589793 rad pos: 16.5,7.5 parent: 2 type: Transform - - uid: 15875 + - uid: 380 components: - pos: 22.5,9.5 parent: 2 type: Transform - proto: AirlockMedicalLocked entities: - - uid: 5386 + - uid: 381 components: - pos: 26.5,17.5 parent: 2 type: Transform - - uid: 5536 + - uid: 382 components: - pos: 24.5,19.5 parent: 2 type: Transform - - uid: 8958 + - uid: 383 components: - pos: 22.5,20.5 parent: 2 type: Transform - - uid: 10883 + - uid: 384 components: - pos: 24.5,22.5 parent: 2 type: Transform - - uid: 15876 + - uid: 385 components: - pos: 9.5,7.5 parent: 2 type: Transform - - uid: 15877 + - uid: 386 components: - pos: 11.5,9.5 parent: 2 type: Transform - - uid: 15884 + - uid: 387 components: - pos: 14.5,25.5 parent: 2 type: Transform - - uid: 15885 + - uid: 388 components: - pos: 11.5,25.5 parent: 2 type: Transform - proto: AirlockQuartermasterGlassLocked entities: - - uid: 11363 + - uid: 389 components: - pos: 5.5,-14.5 parent: 2 type: Transform - proto: AirlockResearchDirectorLocked entities: - - uid: 12131 + - uid: 390 components: - pos: -47.5,38.5 parent: 2 type: Transform - proto: AirlockSalvageGlassLocked entities: - - uid: 17165 + - uid: 391 components: - pos: 10.5,-35.5 parent: 2 type: Transform - - uid: 17166 + - uid: 392 components: - pos: 11.5,-35.5 parent: 2 type: Transform - proto: AirlockSalvageLocked entities: - - uid: 17137 + - uid: 393 components: - rot: 3.141592653589793 rad pos: 10.5,-28.5 @@ -9278,212 +9386,212 @@ entities: type: Transform - proto: AirlockScienceGlass entities: - - uid: 6850 + - uid: 394 components: - pos: -25.5,26.5 parent: 2 type: Transform - - uid: 6870 + - uid: 395 components: - pos: -25.5,25.5 parent: 2 type: Transform - proto: AirlockScienceGlassLocked entities: - - uid: 5324 + - uid: 396 components: - pos: -43.5,33.5 parent: 2 type: Transform - - uid: 8690 + - uid: 397 components: - pos: -40.5,24.5 parent: 2 type: Transform - - uid: 8717 + - uid: 398 components: - pos: -33.5,26.5 parent: 2 type: Transform - - uid: 9575 + - uid: 399 components: - pos: -42.5,24.5 parent: 2 type: Transform - - uid: 9576 + - uid: 400 components: - pos: -41.5,30.5 parent: 2 type: Transform - - uid: 9582 + - uid: 401 components: - pos: -51.5,33.5 parent: 2 type: Transform - - uid: 14103 + - uid: 402 components: - pos: -51.5,36.5 parent: 2 type: Transform - proto: AirlockScienceLocked entities: - - uid: 3258 + - uid: 403 components: - pos: -42.5,35.5 parent: 2 type: Transform - - uid: 14369 + - uid: 404 components: - pos: -39.5,38.5 parent: 2 type: Transform - - uid: 14381 + - uid: 405 components: - pos: -46.5,31.5 parent: 2 type: Transform - proto: AirlockSecurityGlass entities: - - uid: 10925 + - uid: 406 components: - pos: -54.5,-4.5 parent: 2 type: Transform - - uid: 10926 + - uid: 407 components: - pos: -54.5,-2.5 parent: 2 type: Transform - - uid: 10930 + - uid: 408 components: - pos: -49.5,-15.5 parent: 2 type: Transform - - uid: 10931 + - uid: 409 components: - pos: -58.5,-15.5 parent: 2 type: Transform - - uid: 10932 + - uid: 410 components: - pos: -55.5,-15.5 parent: 2 type: Transform - - uid: 10933 + - uid: 411 components: - pos: -58.5,-13.5 parent: 2 type: Transform - - uid: 10934 + - uid: 412 components: - pos: -52.5,-15.5 parent: 2 type: Transform - - uid: 10995 + - uid: 413 components: - pos: -51.5,2.5 parent: 2 type: Transform - - uid: 16745 + - uid: 414 components: - pos: -55.5,-5.5 parent: 2 type: Transform - - uid: 16746 + - uid: 415 components: - pos: -56.5,-5.5 parent: 2 type: Transform - proto: AirlockSecurityGlassLocked entities: - - uid: 10918 + - uid: 416 components: - pos: -50.5,-8.5 parent: 2 type: Transform - - uid: 10919 + - uid: 417 components: - pos: -50.5,-9.5 parent: 2 type: Transform - - uid: 10920 + - uid: 418 components: - pos: -53.5,-8.5 parent: 2 type: Transform - - uid: 10921 + - uid: 419 components: - pos: -53.5,-9.5 parent: 2 type: Transform - proto: AirlockSecurityLocked entities: - - uid: 661 + - uid: 420 components: - pos: -22.5,-10.5 parent: 2 type: Transform - - uid: 15994 + - uid: 421 components: - pos: -46.5,-11.5 parent: 2 type: Transform - proto: AirlockServiceGlassLocked entities: - - uid: 1033 + - uid: 422 components: - pos: 23.5,-15.5 parent: 2 type: Transform - - uid: 13268 + - uid: 423 components: - pos: 23.5,-12.5 parent: 2 type: Transform - - uid: 14211 + - uid: 424 components: - pos: -14.5,24.5 parent: 2 type: Transform - proto: AirlockServiceLocked entities: - - uid: 14214 + - uid: 425 components: - name: maintenance hatch type: MetaData - pos: -15.5,21.5 parent: 2 type: Transform - - uid: 14553 + - uid: 426 components: - rot: 1.5707963267948966 rad pos: 34.5,-13.5 parent: 2 type: Transform - - uid: 14722 + - uid: 427 components: - rot: 1.5707963267948966 rad pos: 19.5,-15.5 parent: 2 type: Transform - - uid: 16088 + - uid: 428 components: - pos: 30.5,14.5 parent: 2 type: Transform - proto: AirlockTheatreLocked entities: - - uid: 14422 + - uid: 429 components: - pos: -37.5,12.5 parent: 2 type: Transform - - uid: 14423 + - uid: 430 components: - pos: -34.5,8.5 parent: 2 type: Transform - - uid: 14560 + - uid: 431 components: - rot: 1.5707963267948966 rad pos: -11.5,-8.5 @@ -9491,122 +9599,146 @@ entities: type: Transform - proto: AirlockVirologyLocked entities: - - uid: 10870 + - uid: 432 components: - pos: 24.5,13.5 parent: 2 type: Transform - proto: AirSensor entities: - - uid: 999 + - uid: 433 components: - pos: -16.5,-27.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15811 + - 46 type: DeviceNetwork - - uid: 15300 + - uid: 434 components: - pos: -18.5,-38.5 parent: 2 type: Transform - ShutdownSubscribers: - - 13900 - - 15365 + - 20 + - 7349 type: DeviceNetwork - - uid: 16721 + - uid: 435 components: - pos: -28.5,-76.5 parent: 2 type: Transform - ShutdownSubscribers: - - 16716 + - 50 type: DeviceNetwork - - uid: 16722 + - uid: 436 components: - pos: -21.5,-76.5 parent: 2 type: Transform - ShutdownSubscribers: - - 16716 + - 50 type: DeviceNetwork - - uid: 16723 + - uid: 437 components: - pos: -4.5,-76.5 parent: 2 type: Transform - ShutdownSubscribers: - - 16716 + - 50 type: DeviceNetwork - - uid: 16724 + - uid: 438 components: - pos: -15.5,-71.5 parent: 2 type: Transform - ShutdownSubscribers: - - 16716 + - 50 type: DeviceNetwork - - uid: 16725 + - uid: 439 components: - pos: -15.5,-81.5 parent: 2 type: Transform - ShutdownSubscribers: - - 16716 + - 50 type: DeviceNetwork -- proto: AltarSpawner - entities: - - uid: 5480 + - uid: 440 components: - - pos: -29.5,30.5 + - rot: 1.5707963267948966 rad + pos: -7.5,-48.5 parent: 2 type: Transform -- proto: AlwaysPoweredLightPostSmallRed - entities: - - uid: 11435 + - uid: 441 components: - - pos: -9.5,-87.5 + - rot: 1.5707963267948966 rad + pos: -1.5,-45.5 parent: 2 type: Transform - - uid: 11686 + - ShutdownSubscribers: + - 7353 + type: DeviceNetwork + - uid: 442 components: - - pos: 2.5,-72.5 - parent: 2 + - rot: 1.5707963267948966 rad + pos: -6.5,-38.5 + parent: 2 type: Transform - - uid: 11773 + - ShutdownSubscribers: + - 7353 + type: DeviceNetwork +- proto: AltarSpawner + entities: + - uid: 443 + components: + - pos: -29.5,30.5 + parent: 2 + type: Transform +- proto: AlwaysPoweredLightPostSmallRed + entities: + - uid: 444 + components: + - pos: -9.5,-87.5 + parent: 2 + type: Transform + - uid: 445 + components: + - pos: 2.5,-72.5 + parent: 2 + type: Transform + - uid: 446 components: - pos: -23.5,-67.5 parent: 2 type: Transform - - uid: 15277 + - uid: 447 components: - pos: -10.5,-68.5 parent: 2 type: Transform - - uid: 15996 + - uid: 448 components: - pos: -36.5,-71.5 parent: 2 type: Transform - - uid: 16084 + - uid: 449 components: - pos: -21.5,-88.5 parent: 2 type: Transform - - uid: 16086 + - uid: 450 components: - pos: -36.5,-82.5 parent: 2 type: Transform - - uid: 16130 + - uid: 451 components: - pos: 2.5,-82.5 parent: 2 type: Transform - proto: AlwaysPoweredSmallLightMaintenanceRed entities: - - uid: 44 + - uid: 452 components: - rot: -1.5707963267948966 rad pos: -49.5,3.5 @@ -9614,288 +9746,288 @@ entities: type: Transform - proto: AmeController entities: - - uid: 1427 + - uid: 453 components: - pos: 0.5,-26.5 parent: 2 type: Transform - proto: AmeJar entities: - - uid: 1353 + - uid: 454 components: - rot: 1.5707963267948966 rad pos: 0.616076,-27.316935 parent: 2 type: Transform - - uid: 1508 + - uid: 455 components: - rot: 1.5707963267948966 rad pos: 0.366076,-27.5202 parent: 2 type: Transform - - uid: 4003 + - uid: 456 components: - pos: -18.490067,-40.1364 parent: 2 type: Transform - proto: AmePart entities: - - uid: 1365 + - uid: 457 components: - pos: 4.5,-22.5 parent: 2 type: Transform - - uid: 1532 + - uid: 458 components: - pos: 4.5,-22.5 parent: 2 type: Transform - - uid: 3930 + - uid: 459 components: - pos: 4.5,-22.5 parent: 2 type: Transform - - uid: 3931 + - uid: 460 components: - pos: 4.5,-22.5 parent: 2 type: Transform - - uid: 4011 + - uid: 461 components: - pos: 4.5,-22.5 parent: 2 type: Transform - - uid: 4012 + - uid: 462 components: - pos: 4.5,-22.5 parent: 2 type: Transform - proto: AnomalyScanner entities: - - uid: 11502 + - uid: 463 components: - pos: -44.434406,43.696514 parent: 2 type: Transform - proto: AnomalyVesselCircuitboard entities: - - uid: 1106 + - uid: 464 components: - pos: -14.321217,-30.478264 parent: 2 type: Transform - proto: APCBasic entities: - - uid: 1584 + - uid: 465 components: - rot: -1.5707963267948966 rad pos: 9.5,-5.5 parent: 2 type: Transform - - uid: 1655 + - uid: 466 components: - rot: 3.141592653589793 rad pos: 7.5,-40.5 parent: 2 type: Transform - - uid: 1733 + - uid: 467 components: - rot: 1.5707963267948966 rad pos: -19.5,8.5 parent: 2 type: Transform - - uid: 1739 + - uid: 468 components: - rot: 1.5707963267948966 rad pos: -34.5,0.5 parent: 2 type: Transform - - uid: 3423 + - uid: 469 components: - pos: -35.5,-10.5 parent: 2 type: Transform - - uid: 3850 + - uid: 470 components: - rot: 1.5707963267948966 rad pos: -18.5,-72.5 parent: 2 type: Transform - - uid: 3852 + - uid: 471 components: - rot: 3.141592653589793 rad pos: -29.5,-80.5 parent: 2 type: Transform - - uid: 3856 + - uid: 472 components: - rot: -1.5707963267948966 rad pos: -2.5,-76.5 parent: 2 type: Transform - - uid: 7013 + - uid: 473 components: - rot: -1.5707963267948966 rad pos: -44.5,18.5 parent: 2 type: Transform - - uid: 7017 + - uid: 474 components: - pos: -8.5,13.5 parent: 2 type: Transform - - uid: 7058 + - uid: 475 components: - pos: -35.5,16.5 parent: 2 type: Transform - - uid: 7137 + - uid: 476 components: - rot: -1.5707963267948966 rad pos: 38.5,9.5 parent: 2 type: Transform - - uid: 7138 + - uid: 477 components: - rot: 1.5707963267948966 rad pos: 20.5,14.5 parent: 2 type: Transform - - uid: 7147 + - uid: 478 components: - rot: 1.5707963267948966 rad pos: 11.5,24.5 parent: 2 type: Transform - - uid: 7175 + - uid: 479 components: - pos: 21.5,27.5 parent: 2 type: Transform - - uid: 7264 + - uid: 480 components: - rot: 3.141592653589793 rad pos: 31.5,-7.5 parent: 2 type: Transform - - uid: 7300 + - uid: 481 components: - pos: -48.5,38.5 parent: 2 type: Transform - - uid: 7303 + - uid: 482 components: - pos: -41.5,35.5 parent: 2 type: Transform - - uid: 7383 + - uid: 483 components: - rot: 1.5707963267948966 rad pos: -33.5,30.5 parent: 2 type: Transform - - uid: 7509 + - uid: 484 components: - rot: -1.5707963267948966 rad pos: -15.5,20.5 parent: 2 type: Transform - - uid: 7515 + - uid: 485 components: - rot: 1.5707963267948966 rad pos: -6.5,3.5 parent: 2 type: Transform - - uid: 7516 + - uid: 486 components: - pos: -7.5,27.5 parent: 2 type: Transform - - uid: 7517 + - uid: 487 components: - rot: 1.5707963267948966 rad pos: -11.5,-6.5 parent: 2 type: Transform - - uid: 7560 + - uid: 488 components: - rot: 1.5707963267948966 rad pos: -2.5,39.5 parent: 2 type: Transform - - uid: 7610 + - uid: 489 components: - rot: -1.5707963267948966 rad pos: -26.5,-10.5 parent: 2 type: Transform - - uid: 7682 + - uid: 490 components: - pos: 2.5,8.5 parent: 2 type: Transform - - uid: 7718 + - uid: 491 components: - pos: 13.5,9.5 parent: 2 type: Transform - - uid: 7784 + - uid: 492 components: - rot: -1.5707963267948966 rad pos: 22.5,-5.5 parent: 2 type: Transform - - uid: 7804 + - uid: 493 components: - pos: 36.5,-17.5 parent: 2 type: Transform - - uid: 7878 + - uid: 494 components: - pos: 5.5,2.5 parent: 2 type: Transform - - uid: 7968 + - uid: 495 components: - rot: -1.5707963267948966 rad pos: -14.5,-2.5 parent: 2 type: Transform - - uid: 7975 + - uid: 496 components: - rot: 3.141592653589793 rad pos: -15.5,-14.5 parent: 2 type: Transform - - uid: 8079 + - uid: 497 components: - pos: -39.5,8.5 parent: 2 type: Transform - - uid: 9158 + - uid: 498 components: - rot: 3.141592653589793 rad pos: -7.5,37.5 parent: 2 type: Transform - - uid: 9631 + - uid: 499 components: - rot: -1.5707963267948966 rad pos: -21.5,29.5 parent: 2 type: Transform - - uid: 9683 + - uid: 500 components: - rot: -1.5707963267948966 rad pos: -18.5,41.5 parent: 2 type: Transform - - uid: 9933 + - uid: 501 components: - pos: -0.5,21.5 parent: 2 type: Transform - - uid: 10215 + - uid: 502 components: - rot: 1.5707963267948966 rad pos: -26.5,10.5 @@ -9903,442 +10035,461 @@ entities: type: Transform - proto: APCHighCapacity entities: - - uid: 1018 + - uid: 503 components: - rot: -1.5707963267948966 rad pos: -38.5,-1.5 parent: 2 type: Transform - - uid: 3067 + - uid: 504 components: - pos: 16.5,-23.5 parent: 2 type: Transform - - uid: 3983 + - uid: 505 components: - pos: -8.5,-25.5 parent: 2 type: Transform - - uid: 4026 + - uid: 506 components: - pos: -52.5,-7.5 parent: 2 type: Transform - - uid: 4027 + - uid: 507 components: - rot: -1.5707963267948966 rad pos: -14.5,-38.5 parent: 2 type: Transform - - uid: 5215 + - uid: 508 components: - rot: -1.5707963267948966 rad pos: 8.5,-11.5 parent: 2 type: Transform - - uid: 7719 + - uid: 509 components: - rot: -1.5707963267948966 rad pos: 19.5,-21.5 parent: 2 type: Transform - - uid: 7780 + - uid: 510 components: - pos: 5.5,-22.5 parent: 2 type: Transform - - uid: 7851 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-42.5 - parent: 2 - type: Transform - - uid: 8430 + - uid: 511 components: - pos: 0.5,-11.5 parent: 2 type: Transform - proto: AppleSeeds entities: - - uid: 4255 + - uid: 512 components: - pos: 32.64337,-12.701023 parent: 2 type: Transform - proto: ArtifactAnalyzerMachineCircuitboard entities: - - uid: 1108 + - uid: 513 components: - pos: -14.623301,-30.68674 parent: 2 type: Transform - proto: AtmosDeviceFanTiny entities: - - uid: 540 + - uid: 514 components: - pos: -16.5,10.5 parent: 2 type: Transform - - uid: 541 + - uid: 515 components: - pos: -14.5,8.5 parent: 2 type: Transform - - uid: 596 + - uid: 516 components: - pos: -11.5,15.5 parent: 2 type: Transform - - uid: 626 + - uid: 517 components: - pos: -11.5,10.5 parent: 2 type: Transform - - uid: 627 + - uid: 518 components: - pos: -14.5,16.5 parent: 2 type: Transform - - uid: 11628 + - uid: 519 components: - pos: 19.5,-35.5 parent: 2 type: Transform - - uid: 12695 + - uid: 520 components: - pos: 21.5,-35.5 parent: 2 type: Transform - - uid: 13582 + - uid: 521 components: - rot: 1.5707963267948966 rad pos: 42.5,5.5 parent: 2 type: Transform - - uid: 16265 + - uid: 522 components: - rot: -1.5707963267948966 rad pos: 10.5,31.5 parent: 2 type: Transform - - uid: 16276 + - uid: 523 components: - pos: -54.5,11.5 parent: 2 type: Transform - - uid: 16277 + - uid: 524 components: - pos: -54.5,13.5 parent: 2 type: Transform - - uid: 16281 + - uid: 525 components: - pos: -54.5,19.5 parent: 2 type: Transform - - uid: 16282 + - uid: 526 components: - pos: -54.5,21.5 parent: 2 type: Transform - - uid: 16283 + - uid: 527 components: - rot: -1.5707963267948966 rad pos: 43.5,-19.5 parent: 2 type: Transform - - uid: 16284 + - uid: 528 components: - rot: -1.5707963267948966 rad pos: 43.5,-17.5 parent: 2 type: Transform - - uid: 16285 + - uid: 529 components: - rot: -1.5707963267948966 rad pos: 43.5,-11.5 parent: 2 type: Transform - - uid: 16286 + - uid: 530 components: - rot: -1.5707963267948966 rad pos: 43.5,-9.5 parent: 2 type: Transform - - uid: 16287 + - uid: 531 components: - rot: -1.5707963267948966 rad pos: 37.5,-24.5 parent: 2 type: Transform - - uid: 16288 + - uid: 532 components: - pos: 43.5,-3.5 parent: 2 type: Transform - - uid: 16289 + - uid: 533 components: - pos: 43.5,-1.5 parent: 2 type: Transform - - uid: 16290 + - uid: 534 components: - rot: -1.5707963267948966 rad pos: 30.5,-24.5 parent: 2 type: Transform - - uid: 16733 + - uid: 535 components: - pos: -31.5,42.5 parent: 2 type: Transform - proto: AtmosFixBlockerMarker entities: - - uid: 12004 + - uid: 536 components: - pos: -61.5,31.5 parent: 2 type: Transform - - uid: 14576 + - uid: 537 components: - - pos: 6.5,-44.5 + - pos: -62.5,37.5 parent: 2 type: Transform - - uid: 14591 + - uid: 538 components: - - pos: 7.5,-44.5 + - pos: -61.5,37.5 parent: 2 type: Transform - - uid: 14597 + - uid: 539 components: - - pos: -3.5,-44.5 + - pos: -62.5,31.5 parent: 2 type: Transform - - uid: 14598 + - uid: 540 components: - - pos: -3.5,-43.5 + - pos: 5.5,-47.5 parent: 2 type: Transform - - uid: 14599 + - uid: 541 components: - - pos: -62.5,37.5 + - pos: 6.5,-47.5 parent: 2 type: Transform - - uid: 14600 + - uid: 542 components: - - pos: -61.5,37.5 + - pos: 7.5,-47.5 parent: 2 type: Transform - - uid: 14601 + - uid: 543 components: - - pos: -62.5,31.5 + - pos: 7.5,-51.5 + parent: 2 + type: Transform + - uid: 544 + components: + - pos: 6.5,-51.5 + parent: 2 + type: Transform + - uid: 545 + components: + - pos: 5.5,-51.5 parent: 2 type: Transform - proto: AtmosFixFreezerMarker entities: - - uid: 14634 + - uid: 546 components: - pos: -15.5,9.5 parent: 2 type: Transform - - uid: 14635 + - uid: 547 components: - pos: -15.5,10.5 parent: 2 type: Transform - - uid: 14636 + - uid: 548 components: - pos: -15.5,11.5 parent: 2 type: Transform - - uid: 14637 + - uid: 549 components: - pos: -15.5,12.5 parent: 2 type: Transform - - uid: 14638 + - uid: 550 components: - pos: -15.5,13.5 parent: 2 type: Transform - - uid: 14639 + - uid: 551 components: - pos: -15.5,14.5 parent: 2 type: Transform - - uid: 14640 + - uid: 552 components: - pos: -15.5,15.5 parent: 2 type: Transform - - uid: 14641 + - uid: 553 components: - pos: -14.5,9.5 parent: 2 type: Transform - - uid: 14642 + - uid: 554 components: - pos: -14.5,10.5 parent: 2 type: Transform - - uid: 14643 + - uid: 555 components: - pos: -14.5,11.5 parent: 2 type: Transform - - uid: 14644 + - uid: 556 components: - pos: -14.5,12.5 parent: 2 type: Transform - - uid: 14645 + - uid: 557 components: - pos: -14.5,13.5 parent: 2 type: Transform - - uid: 14646 + - uid: 558 components: - pos: -14.5,14.5 parent: 2 type: Transform - - uid: 14647 + - uid: 559 components: - pos: -14.5,15.5 parent: 2 type: Transform - - uid: 14648 + - uid: 560 components: - pos: -13.5,9.5 parent: 2 type: Transform - - uid: 14649 + - uid: 561 components: - pos: -13.5,10.5 parent: 2 type: Transform - - uid: 14650 + - uid: 562 components: - pos: -13.5,11.5 parent: 2 type: Transform - - uid: 14651 + - uid: 563 components: - pos: -13.5,12.5 parent: 2 type: Transform - - uid: 14652 + - uid: 564 components: - pos: -13.5,13.5 parent: 2 type: Transform - - uid: 14653 + - uid: 565 components: - pos: -13.5,14.5 parent: 2 type: Transform - - uid: 14654 + - uid: 566 components: - pos: -13.5,15.5 parent: 2 type: Transform - - uid: 14655 + - uid: 567 components: - pos: -12.5,9.5 parent: 2 type: Transform - - uid: 14656 + - uid: 568 components: - pos: -12.5,10.5 parent: 2 type: Transform - - uid: 14657 + - uid: 569 components: - pos: -12.5,11.5 parent: 2 type: Transform - - uid: 14658 + - uid: 570 components: - pos: -12.5,12.5 parent: 2 type: Transform - - uid: 14659 + - uid: 571 components: - pos: -12.5,13.5 parent: 2 type: Transform - - uid: 14660 + - uid: 572 components: - pos: -12.5,14.5 parent: 2 type: Transform - - uid: 14661 + - uid: 573 components: - pos: -12.5,15.5 parent: 2 type: Transform - proto: AtmosFixNitrogenMarker entities: - - uid: 14592 + - uid: 574 components: - - pos: -3.5,-36.5 + - pos: 7.5,-43.5 parent: 2 type: Transform - - uid: 14593 + - uid: 575 components: - - pos: -3.5,-35.5 + - pos: 6.5,-43.5 + parent: 2 + type: Transform + - uid: 576 + components: + - pos: 5.5,-43.5 parent: 2 type: Transform - proto: AtmosFixOxygenMarker entities: - - uid: 14226 + - uid: 577 components: - - pos: -1.5,-36.5 + - pos: 6.5,-45.5 parent: 2 type: Transform - - uid: 14589 + - uid: 578 + components: + - pos: 5.5,-45.5 + parent: 2 + type: Transform + - uid: 579 components: - - pos: -1.5,-35.5 + - pos: 7.5,-45.5 parent: 2 type: Transform - proto: AtmosFixPlasmaMarker entities: - - uid: 14225 + - uid: 580 components: - - pos: 6.5,-42.5 + - pos: 5.5,-49.5 parent: 2 type: Transform - - uid: 14590 + - uid: 581 components: - - pos: 7.5,-42.5 + - pos: 6.5,-49.5 + parent: 2 + type: Transform + - uid: 582 + components: + - pos: 7.5,-49.5 parent: 2 type: Transform - proto: Autolathe entities: - - uid: 533 + - uid: 583 components: - pos: -6.5,-16.5 parent: 2 type: Transform - - uid: 4232 + - uid: 584 components: - pos: 19.5,-13.5 parent: 2 type: Transform - - uid: 10661 + - uid: 585 components: - pos: 4.5,-11.5 parent: 2 type: Transform - proto: AutolatheMachineCircuitboard entities: - - uid: 6812 + - uid: 586 components: - pos: -14.2691345,-30.29063 parent: 2 type: Transform - proto: BalloonSyn entities: - - uid: 13457 + - uid: 587 components: - desc: A balloon for those who passed boot camp. name: security balloon @@ -10348,85 +10499,85 @@ entities: type: Transform - proto: BannerNanotrasen entities: - - uid: 11134 + - uid: 588 components: - pos: -25.5,44.5 parent: 2 type: Transform - - uid: 16100 + - uid: 589 components: - pos: -21.5,44.5 parent: 2 type: Transform - proto: BarSign entities: - - uid: 396 + - uid: 590 components: - pos: 4.5,36.5 parent: 2 type: Transform - proto: BarSignKlubSkub entities: - - uid: 74 + - uid: 591 components: - pos: -6.5,-1.5 parent: 2 type: Transform - proto: BaseComputer entities: - - uid: 349 + - uid: 592 components: - pos: -25.5,-78.5 parent: 2 type: Transform - - uid: 1641 + - uid: 593 components: - rot: 1.5707963267948966 rad pos: -32.5,-18.5 parent: 2 type: Transform - - uid: 1766 + - uid: 594 components: - rot: -1.5707963267948966 rad pos: -28.5,-73.5 parent: 2 type: Transform - - uid: 3914 + - uid: 595 components: - pos: -24.5,-78.5 parent: 2 type: Transform - - uid: 4191 + - uid: 596 components: - rot: 1.5707963267948966 rad pos: -17.5,-82.5 parent: 2 type: Transform - - uid: 4206 + - uid: 597 components: - rot: 3.141592653589793 rad pos: -24.5,-74.5 parent: 2 type: Transform - - uid: 4211 + - uid: 598 components: - rot: 1.5707963267948966 rad pos: -30.5,-73.5 parent: 2 type: Transform - - uid: 4212 + - uid: 599 components: - rot: 1.5707963267948966 rad pos: -30.5,-79.5 parent: 2 type: Transform - - uid: 4441 + - uid: 600 components: - rot: 3.141592653589793 rad pos: 27.5,18.5 parent: 2 type: Transform - - uid: 4452 + - uid: 601 components: - rot: -1.5707963267948966 rad pos: 17.5,23.5 @@ -10434,34 +10585,34 @@ entities: type: Transform - proto: BeachBall entities: - - uid: 11626 + - uid: 602 components: - pos: -30.748747,16.493372 parent: 2 type: Transform - proto: Beaker entities: - - uid: 809 + - uid: 603 components: - pos: -28.796272,3.7424812 parent: 2 type: Transform - - uid: 4490 + - uid: 604 components: - pos: 15.66956,20.960335 parent: 2 type: Transform - - uid: 6582 + - uid: 605 components: - pos: -35.777054,27.882532 parent: 2 type: Transform - - uid: 6848 + - uid: 606 components: - pos: -35.620804,27.679266 parent: 2 type: Transform - - uid: 15395 + - uid: 607 components: - pos: 19.67959,20.592115 parent: 2 @@ -10479,200 +10630,190 @@ entities: type: SolutionContainerManager - proto: Bed entities: - - uid: 250 + - uid: 608 components: - pos: -12.5,-9.5 parent: 2 type: Transform - - uid: 598 + - uid: 609 components: - pos: -12.5,-3.5 parent: 2 type: Transform - - uid: 842 + - uid: 610 components: - pos: -43.5,-11.5 parent: 2 type: Transform - - uid: 1059 + - uid: 611 components: - pos: -43.5,-14.5 parent: 2 type: Transform - - uid: 1093 + - uid: 612 components: - pos: -40.5,-18.5 parent: 2 type: Transform - - uid: 1277 + - uid: 613 components: - pos: -34.5,-18.5 parent: 2 type: Transform - - uid: 1301 + - uid: 614 components: - pos: 0.5,-31.5 parent: 2 type: Transform - - uid: 1688 + - uid: 615 components: - pos: -38.5,9.5 parent: 2 type: Transform - - uid: 1814 + - uid: 616 components: - pos: 8.5,-30.5 parent: 2 type: Transform - - uid: 1836 + - uid: 617 components: - pos: 8.5,-32.5 parent: 2 type: Transform - - uid: 1874 + - uid: 618 components: - pos: 28.5,15.5 parent: 2 type: Transform - - uid: 1895 + - uid: 619 components: - pos: 28.5,13.5 parent: 2 type: Transform - - uid: 2137 + - uid: 620 components: - pos: 2.5,40.5 parent: 2 type: Transform - - uid: 2505 - components: - - pos: -6.5,-45.5 - parent: 2 - type: Transform - - uid: 2603 - components: - - pos: -8.5,-45.5 - parent: 2 - type: Transform - - uid: 3480 + - uid: 621 components: - pos: -33.5,9.5 parent: 2 type: Transform - - uid: 3588 + - uid: 622 components: - pos: 27.5,9.5 parent: 2 type: Transform - - uid: 3589 + - uid: 623 components: - pos: 28.5,9.5 parent: 2 type: Transform - - uid: 3927 + - uid: 624 components: - pos: -30.5,9.5 parent: 2 type: Transform - - uid: 4270 + - uid: 625 components: - pos: -33.5,20.5 parent: 2 type: Transform - - uid: 4503 + - uid: 626 components: - name: couch type: MetaData - pos: 9.5,24.5 parent: 2 type: Transform - - uid: 4821 + - uid: 627 components: - pos: 3.5,-16.5 parent: 2 type: Transform - - uid: 4972 + - uid: 628 components: - pos: 33.5,15.5 parent: 2 type: Transform - - uid: 5792 + - uid: 629 components: - pos: -34.5,31.5 parent: 2 type: Transform - - uid: 8066 + - uid: 630 components: - pos: -33.5,37.5 parent: 2 type: Transform - - uid: 10875 + - uid: 631 components: - pos: -35.5,-4.5 parent: 2 type: Transform - proto: BedsheetBlack entities: - - uid: 594 + - uid: 632 components: - pos: -12.5,-3.5 parent: 2 type: Transform - - uid: 5754 + - uid: 633 components: - pos: -33.5,37.5 parent: 2 type: Transform - proto: BedsheetBrown entities: - - uid: 14295 + - uid: 634 components: - pos: -34.5,31.5 parent: 2 type: Transform - proto: BedsheetCaptain entities: - - uid: 5162 + - uid: 635 components: - pos: 2.5,40.5 parent: 2 type: Transform - proto: BedsheetCE entities: - - uid: 1558 + - uid: 636 components: - pos: 0.5,-31.5 parent: 2 type: Transform - proto: BedsheetClown entities: - - uid: 3928 + - uid: 637 components: - pos: -33.5,9.5 parent: 2 type: Transform - proto: BedsheetCosmos entities: - - uid: 251 + - uid: 638 components: - pos: -12.5,-9.5 parent: 2 type: Transform - proto: BedsheetGreen entities: - - uid: 3510 + - uid: 639 components: - pos: 28.5,13.5 parent: 2 type: Transform - - uid: 3511 + - uid: 640 components: - pos: 28.5,15.5 parent: 2 type: Transform - proto: BedsheetHOS entities: - - uid: 10900 + - uid: 641 components: - name: Warden's bedsheet type: MetaData @@ -10682,250 +10823,247 @@ entities: type: Transform - proto: BedsheetMedical entities: - - uid: 694 + - uid: 642 components: - pos: -33.5,1.5 parent: 2 type: Transform - - uid: 697 + - uid: 643 components: - pos: -32.5,1.5 parent: 2 type: Transform - - uid: 819 + - uid: 644 components: - pos: -33.5,3.5 parent: 2 type: Transform - - uid: 820 + - uid: 645 components: - pos: -32.5,3.5 parent: 2 type: Transform - - uid: 2005 + - uid: 646 components: - pos: 17.5,3.5 parent: 2 type: Transform - - uid: 2006 + - uid: 647 components: - pos: 19.5,3.5 parent: 2 type: Transform - - uid: 2008 + - uid: 648 components: - pos: 19.5,5.5 parent: 2 type: Transform - - uid: 2010 + - uid: 649 components: - pos: 17.5,5.5 parent: 2 type: Transform - - uid: 2013 + - uid: 650 components: - pos: 23.5,3.5 parent: 2 type: Transform - - uid: 2015 + - uid: 651 components: - pos: 21.5,3.5 parent: 2 type: Transform - - uid: 3540 + - uid: 652 components: - pos: 21.5,5.5 parent: 2 type: Transform - - uid: 3554 + - uid: 653 components: - pos: 23.5,5.5 parent: 2 type: Transform - proto: BedsheetMime entities: - - uid: 4260 + - uid: 654 components: - pos: -38.5,9.5 parent: 2 type: Transform - proto: BedsheetOrange entities: - - uid: 939 + - uid: 655 components: - pos: -43.5,-11.5 parent: 2 type: Transform - - uid: 1058 + - uid: 656 components: - pos: -43.5,-14.5 parent: 2 type: Transform - - uid: 1272 + - uid: 657 components: - pos: -40.5,-18.5 parent: 2 type: Transform - - uid: 1279 + - uid: 658 components: - pos: -34.5,-18.5 parent: 2 type: Transform - - uid: 2869 - components: - - pos: -6.5,-45.5 - parent: 2 - type: Transform - - uid: 2878 - components: - - pos: -8.5,-45.5 - parent: 2 - type: Transform - - uid: 3596 + - uid: 659 components: - pos: 27.5,9.5 parent: 2 type: Transform - - uid: 3599 + - uid: 660 components: - pos: 28.5,9.5 parent: 2 type: Transform - proto: BedsheetQM entities: - - uid: 4831 + - uid: 661 components: - pos: 3.5,-16.5 parent: 2 type: Transform - proto: BedsheetSpawner entities: - - uid: 1531 + - uid: 662 components: - pos: 8.5,-32.5 parent: 2 type: Transform - - uid: 1846 + - uid: 663 components: - pos: 8.5,-30.5 parent: 2 type: Transform - - uid: 3134 + - uid: 664 components: - pos: -33.5,20.5 parent: 2 type: Transform - - uid: 3214 + - uid: 665 components: - pos: -55.5,-17.5 parent: 2 type: Transform - - uid: 3215 + - uid: 666 components: - pos: -59.5,-16.5 parent: 2 type: Transform - - uid: 3216 + - uid: 667 components: - pos: -53.5,-17.5 parent: 2 type: Transform - - uid: 3217 + - uid: 668 components: - pos: -50.5,-16.5 parent: 2 type: Transform - - uid: 3290 + - uid: 669 components: - pos: -58.5,-11.5 parent: 2 type: Transform - - uid: 4281 + - uid: 670 components: - pos: -30.5,9.5 parent: 2 type: Transform - - uid: 4292 + - uid: 671 components: - pos: -30.5,18.5 parent: 2 type: Transform - proto: BedsheetUSA entities: - - uid: 12705 + - uid: 672 components: - pos: 33.5,15.5 parent: 2 type: Transform - proto: BiomassReclaimer entities: - - uid: 4423 + - uid: 673 components: - pos: 27.5,22.5 parent: 2 type: Transform - proto: BlastDoor entities: - - uid: 1901 + - uid: 674 components: - pos: 18.5,-33.5 parent: 2 type: Transform - links: - - 12512 + - 13609 type: DeviceLinkSink - - uid: 2908 - components: - - pos: -2.5,-49.5 - parent: 2 - type: Transform - - uid: 6221 + - uid: 675 components: - pos: -53.5,38.5 parent: 2 type: Transform - links: - - 6226 + - 13605 type: DeviceLinkSink - - uid: 7843 + - uid: 676 components: - pos: 18.5,-35.5 parent: 2 type: Transform - links: - - 12512 + - 13609 type: DeviceLinkSink - - uid: 11539 + - uid: 677 components: - pos: 22.5,-35.5 parent: 2 type: Transform - links: - - 12512 + - 13609 type: DeviceLinkSink - - uid: 16179 + - uid: 678 components: - pos: 22.5,-33.5 parent: 2 type: Transform - links: - - 12512 + - 13609 type: DeviceLinkSink + - uid: 679 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-48.5 + parent: 2 + type: Transform + - uid: 680 + components: + - rot: 3.141592653589793 rad + pos: -9.5,-49.5 + parent: 2 + type: Transform - proto: BlastDoorBridgeOpen entities: - - uid: 15801 + - uid: 681 components: - rot: 3.141592653589793 rad pos: 2.5,42.5 parent: 2 type: Transform - - uid: 15802 + - uid: 682 components: - rot: 3.141592653589793 rad pos: 3.5,39.5 parent: 2 type: Transform - - uid: 15803 + - uid: 683 components: - rot: 3.141592653589793 rad pos: 3.5,38.5 @@ -10933,140 +11071,140 @@ entities: type: Transform - proto: BlastDoorOpen entities: - - uid: 12447 + - uid: 684 components: - pos: -14.5,44.5 parent: 2 type: Transform - links: - - 11085 + - 13594 type: DeviceLinkSink - - uid: 16004 + - uid: 685 components: - pos: -8.5,45.5 parent: 2 type: Transform - invokeCounter: 2 links: - - 11085 + - 13594 type: DeviceLinkSink - - uid: 16014 + - uid: 686 components: - pos: -6.5,44.5 parent: 2 type: Transform - invokeCounter: 2 links: - - 11085 + - 13594 type: DeviceLinkSink - - uid: 16018 + - uid: 687 components: - pos: -12.5,44.5 parent: 2 type: Transform - invokeCounter: 2 links: - - 11085 + - 13594 type: DeviceLinkSink - - uid: 16019 + - uid: 688 components: - pos: -5.5,43.5 parent: 2 type: Transform - invokeCounter: 2 links: - - 11085 + - 13594 type: DeviceLinkSink - - uid: 16044 + - uid: 689 components: - pos: -13.5,44.5 parent: 2 type: Transform - invokeCounter: 2 links: - - 11085 + - 13594 type: DeviceLinkSink - - uid: 16045 + - uid: 690 components: - pos: -5.5,44.5 parent: 2 type: Transform - invokeCounter: 2 links: - - 11085 + - 13594 type: DeviceLinkSink - - uid: 16046 + - uid: 691 components: - pos: -12.5,45.5 parent: 2 type: Transform - invokeCounter: 2 links: - - 11085 + - 13594 type: DeviceLinkSink - - uid: 16049 + - uid: 692 components: - pos: -9.5,45.5 parent: 2 type: Transform - invokeCounter: 2 links: - - 11085 + - 13594 type: DeviceLinkSink - - uid: 16072 + - uid: 693 components: - pos: -7.5,45.5 parent: 2 type: Transform - invokeCounter: 2 links: - - 11085 + - 13594 type: DeviceLinkSink - - uid: 16081 + - uid: 694 components: - pos: -11.5,45.5 parent: 2 type: Transform - invokeCounter: 2 links: - - 11085 + - 13594 type: DeviceLinkSink - - uid: 16114 + - uid: 695 components: - pos: -10.5,45.5 parent: 2 type: Transform - links: - - 11085 + - 13594 type: DeviceLinkSink - - uid: 16119 + - uid: 696 components: - pos: -7.5,44.5 parent: 2 type: Transform - invokeCounter: 2 links: - - 11085 + - 13594 type: DeviceLinkSink - - uid: 16120 + - uid: 697 components: - pos: -14.5,43.5 parent: 2 type: Transform - invokeCounter: 2 links: - - 11085 + - 13594 type: DeviceLinkSink - proto: BoardGameSpawner entities: - - uid: 16376 + - uid: 698 components: - pos: -58.5,-3.5 parent: 2 type: Transform - proto: BodyBag_Container entities: - - uid: 7074 + - uid: 699 components: - pos: -35.45156,37.595173 parent: 2 @@ -11091,14 +11229,14 @@ entities: type: EntityStorage - proto: Bonfire entities: - - uid: 11005 + - uid: 700 components: - pos: -61.5,-8.5 parent: 2 type: Transform - proto: BookInspiration entities: - - uid: 11070 + - uid: 701 components: - rot: -1.5707963267948966 rad pos: -49.481606,-0.1413793 @@ -11106,78 +11244,78 @@ entities: type: Transform - proto: BookRandom entities: - - uid: 10207 + - uid: 702 components: - pos: -52.64169,-0.29077882 parent: 2 type: Transform - - uid: 13787 + - uid: 703 components: - pos: -52.61044,-0.38452882 parent: 2 type: Transform - - uid: 14693 + - uid: 704 components: - pos: -52.594814,-0.22827882 parent: 2 type: Transform - - uid: 16734 + - uid: 705 components: - pos: 5.3378663,-39.404938 parent: 2 type: Transform - proto: BookshelfFilled entities: - - uid: 1210 + - uid: 706 components: - pos: -21.5,23.5 parent: 2 type: Transform - - uid: 3210 + - uid: 707 components: - pos: -53.5,-0.5 parent: 2 type: Transform - - uid: 5848 + - uid: 708 components: - pos: -50.5,30.5 parent: 2 type: Transform - - uid: 5849 + - uid: 709 components: - pos: -48.5,30.5 parent: 2 type: Transform - - uid: 5851 + - uid: 710 components: - pos: -49.5,30.5 parent: 2 type: Transform - - uid: 9302 + - uid: 711 components: - pos: -52.5,1.5 parent: 2 type: Transform - - uid: 15786 + - uid: 712 components: - pos: -50.5,1.5 parent: 2 type: Transform - proto: BoozeDispenser entities: - - uid: 1249 + - uid: 713 components: - rot: -1.5707963267948966 rad pos: -3.5,-2.5 parent: 2 type: Transform - - uid: 4265 + - uid: 714 components: - rot: 3.141592653589793 rad pos: 32.5,-10.5 parent: 2 type: Transform - - uid: 5504 + - uid: 715 components: - rot: -1.5707963267948966 rad pos: 4.5,33.5 @@ -11185,226 +11323,226 @@ entities: type: Transform - proto: BorgCharger entities: - - uid: 423 + - uid: 716 components: - pos: 23.5,-22.5 parent: 2 type: Transform - - uid: 11758 + - uid: 717 components: - pos: -12.5,-24.5 parent: 2 type: Transform - - uid: 16223 + - uid: 718 components: - pos: -17.5,-78.5 parent: 2 type: Transform - - uid: 16322 + - uid: 719 components: - pos: -14.5,-78.5 parent: 2 type: Transform - - uid: 16357 + - uid: 720 components: - pos: -38.5,40.5 parent: 2 type: Transform - proto: BoxBeaker entities: - - uid: 4326 + - uid: 721 components: - pos: 16.393906,13.819341 parent: 2 type: Transform - - uid: 6309 + - uid: 722 components: - pos: -19.70403,7.0739126 parent: 2 type: Transform - proto: BoxBeanbag entities: - - uid: 1450 + - uid: 723 components: - pos: -25.517311,-14.518888 parent: 2 type: Transform - proto: BoxBodyBag entities: - - uid: 1342 + - uid: 724 components: - pos: 28.351997,18.416313 parent: 2 type: Transform - proto: BoxCardboard entities: - - uid: 11253 + - uid: 725 components: - pos: 4.277172,-3.2468963 parent: 2 type: Transform - - uid: 11254 + - uid: 726 components: - pos: 4.558422,-3.5283408 parent: 2 type: Transform - proto: BoxCartridgeCap entities: - - uid: 13813 + - uid: 727 components: - pos: -38.322617,10.103517 parent: 2 type: Transform - proto: BoxFlare entities: - - uid: 912 + - uid: 728 components: - pos: 9.308822,-45.509903 parent: 2 type: Transform - proto: BoxFolderBase entities: - - uid: 3888 + - uid: 729 components: - pos: -12.023532,-73.5315 parent: 2 type: Transform - - uid: 4184 + - uid: 730 components: - pos: -22.653774,-78.40514 parent: 2 type: Transform - - uid: 5895 + - uid: 731 components: - pos: -49.575344,27.306631 parent: 2 type: Transform - proto: BoxFolderBlack entities: - - uid: 16652 + - uid: 732 components: - pos: 8.682952,26.581984 parent: 2 type: Transform - proto: BoxFolderBlue entities: - - uid: 6706 + - uid: 733 components: - pos: -10.038057,34.838547 parent: 2 type: Transform - - uid: 15588 + - uid: 734 components: - pos: -26.280434,41.61994 parent: 2 type: Transform - proto: BoxFolderRed entities: - - uid: 15560 + - uid: 735 components: - pos: -21.186684,41.65119 parent: 2 type: Transform - proto: BoxFolderYellow entities: - - uid: 16199 + - uid: 736 components: - pos: 8.7060175,-4.32035 parent: 2 type: Transform - proto: BoxLethalshot entities: - - uid: 6772 + - uid: 737 components: - pos: -43.540894,0.6267514 parent: 2 type: Transform - - uid: 15998 + - uid: 738 components: - pos: -40.613728,-4.5623055 parent: 2 type: Transform - proto: BoxLightMixed entities: - - uid: 3591 + - uid: 739 components: - pos: 22.693903,-24.2228 parent: 2 type: Transform - - uid: 16205 + - uid: 740 components: - pos: -1.2286556,10.361396 parent: 2 type: Transform - - uid: 17201 + - uid: 741 components: - pos: 19.77802,-11.275881 parent: 2 type: Transform - proto: BoxMaintenanceLightbulb entities: - - uid: 3569 + - uid: 742 components: - pos: 22.370987,-24.452126 parent: 2 type: Transform - - uid: 16206 + - uid: 743 components: - pos: -0.9890723,10.705385 parent: 2 type: Transform - proto: BoxMouthSwab entities: - - uid: 1706 + - uid: 744 components: - pos: 28.507938,12.615709 parent: 2 type: Transform - proto: BoxNitrileGloves entities: - - uid: 12260 + - uid: 745 components: - pos: 8.360393,9.476925 parent: 2 type: Transform - proto: BoxShotgunIncendiary entities: - - uid: 11120 + - uid: 746 components: - pos: -43.32206,0.5062567 parent: 2 type: Transform - proto: BoxShotgunSlug entities: - - uid: 6778 + - uid: 747 components: - pos: -40.363728,-4.3682694 parent: 2 type: Transform - proto: BoxSyringe entities: - - uid: 4272 + - uid: 748 components: - pos: 19.669752,9.553038 parent: 2 type: Transform - proto: BoxZiptie entities: - - uid: 1452 + - uid: 749 components: - pos: -26.289627,-11.244784 parent: 2 type: Transform - proto: BrbSign entities: - - uid: 3858 + - uid: 750 components: - pos: 19.917723,-3.4989886 parent: 2 type: Transform - proto: BrigTimer entities: - - uid: 1278 + - uid: 751 components: - pos: -40.5,-10.5 parent: 2 @@ -11412,12 +11550,12 @@ entities: - label: CEL-1 type: SignalTimer - linkedPorts: - 10949: + 93: - Start: Close - Timer: AutoClose - Timer: Open type: DeviceLinkSource - - uid: 1281 + - uid: 752 components: - pos: -38.5,-16.5 parent: 2 @@ -11425,12 +11563,12 @@ entities: - label: CEL-3 type: SignalTimer - linkedPorts: - 10947: + 92: - Start: Close - Timer: AutoClose - Timer: Open type: DeviceLinkSource - - uid: 1290 + - uid: 753 components: - pos: -41.5,-13.5 parent: 2 @@ -11438,12 +11576,12 @@ entities: - label: CEL-2 type: SignalTimer - linkedPorts: - 10938: + 84: - Start: Close - Timer: AutoClose - Timer: Open type: DeviceLinkSource - - uid: 1292 + - uid: 754 components: - pos: -36.5,-16.5 parent: 2 @@ -11451,36 +11589,36 @@ entities: - label: CEL-4 type: SignalTimer - linkedPorts: - 10944: + 90: - Start: Close - Timer: AutoClose - Timer: Open type: DeviceLinkSource - - uid: 3064 + - uid: 755 components: - rot: 3.141592653589793 rad pos: -50.5,-15.5 parent: 2 type: Transform - - uid: 3159 + - uid: 756 components: - rot: 3.141592653589793 rad pos: -59.5,-15.5 parent: 2 type: Transform - - uid: 3295 + - uid: 757 components: - rot: 3.141592653589793 rad pos: -56.5,-15.5 parent: 2 type: Transform - - uid: 3462 + - uid: 758 components: - rot: 3.141592653589793 rad pos: -53.5,-15.5 parent: 2 type: Transform - - uid: 11975 + - uid: 759 components: - rot: 3.141592653589793 rad pos: -57.5,-13.5 @@ -11488,33153 +11626,33548 @@ entities: type: Transform - proto: Bucket entities: - - uid: 610 + - uid: 760 components: - pos: -17.40326,4.298378 parent: 2 type: Transform - - uid: 11129 + - uid: 761 components: - pos: 1.2489537,10.331755 parent: 2 type: Transform - - uid: 11149 + - uid: 762 components: - pos: 33.375,-12.461527 parent: 2 type: Transform - - uid: 16012 + - uid: 763 components: - pos: -62.556114,-6.1310325 parent: 2 type: Transform - - uid: 16162 + - uid: 764 components: - pos: 22.126427,-14.634353 parent: 2 type: Transform - - uid: 16163 + - uid: 765 components: - pos: 1.4052037,10.873797 parent: 2 type: Transform - proto: CableApcExtension entities: - - uid: 233 + - uid: 766 components: - pos: -17.5,4.5 parent: 2 type: Transform - - uid: 380 + - uid: 767 components: - pos: 19.5,18.5 parent: 2 type: Transform - - uid: 493 + - uid: 768 components: - pos: 14.5,-25.5 parent: 2 type: Transform - - uid: 850 + - uid: 769 components: - pos: -31.5,-1.5 parent: 2 type: Transform - - uid: 857 + - uid: 770 components: - pos: -57.5,-3.5 parent: 2 type: Transform - - uid: 949 + - uid: 771 components: - pos: -58.5,-3.5 parent: 2 type: Transform - - uid: 957 + - uid: 772 components: - pos: -31.5,-0.5 parent: 2 type: Transform - - uid: 962 + - uid: 773 components: - pos: 17.5,-49.5 parent: 2 type: Transform - - uid: 1128 + - uid: 774 components: - pos: -34.5,0.5 parent: 2 type: Transform - - uid: 1324 + - uid: 775 components: - pos: 21.5,-18.5 parent: 2 type: Transform - - uid: 1363 + - uid: 776 components: - pos: 3.5,34.5 parent: 2 type: Transform - - uid: 1379 + - uid: 777 components: - pos: 6.5,-10.5 parent: 2 type: Transform - - uid: 1424 + - uid: 778 components: - pos: 9.5,-27.5 parent: 2 type: Transform - - uid: 1439 + - uid: 779 components: - pos: 9.5,-23.5 parent: 2 type: Transform - - uid: 1504 + - uid: 780 components: - pos: 10.5,-23.5 parent: 2 type: Transform - - uid: 1505 + - uid: 781 components: - pos: 10.5,-24.5 parent: 2 type: Transform - - uid: 1507 + - uid: 782 components: - pos: 10.5,-25.5 parent: 2 type: Transform - - uid: 1517 + - uid: 783 components: - pos: 10.5,-26.5 parent: 2 type: Transform - - uid: 1525 + - uid: 784 components: - pos: 6.5,-13.5 parent: 2 type: Transform - - uid: 1533 + - uid: 785 components: - pos: 7.5,-13.5 parent: 2 type: Transform - - uid: 1535 + - uid: 786 components: - pos: 8.5,-13.5 parent: 2 type: Transform - - uid: 1538 + - uid: 787 components: - pos: 16.5,-32.5 parent: 2 type: Transform - - uid: 1543 + - uid: 788 components: - pos: 17.5,-32.5 parent: 2 type: Transform - - uid: 1544 + - uid: 789 components: - pos: 4.5,-16.5 parent: 2 type: Transform - - uid: 1545 + - uid: 790 components: - pos: 10.5,-36.5 parent: 2 type: Transform - - uid: 1546 + - uid: 791 components: - pos: 18.5,-32.5 parent: 2 type: Transform - - uid: 1547 + - uid: 792 components: - pos: 18.5,-29.5 parent: 2 type: Transform - - uid: 1548 + - uid: 793 components: - pos: 6.5,-16.5 parent: 2 type: Transform - - uid: 1569 + - uid: 794 components: - pos: 10.5,-37.5 parent: 2 type: Transform - - uid: 1577 + - uid: 795 components: - pos: 6.5,-2.5 parent: 2 type: Transform - - uid: 1578 + - uid: 796 components: - pos: 6.5,-3.5 parent: 2 type: Transform - - uid: 1579 + - uid: 797 components: - pos: 6.5,-5.5 parent: 2 type: Transform - - uid: 1580 + - uid: 798 components: - pos: 6.5,-4.5 parent: 2 type: Transform - - uid: 1581 + - uid: 799 components: - pos: 7.5,-5.5 parent: 2 type: Transform - - uid: 1582 + - uid: 800 components: - pos: 8.5,-5.5 parent: 2 type: Transform - - uid: 1583 + - uid: 801 components: - pos: 9.5,-5.5 parent: 2 type: Transform - - uid: 1587 + - uid: 802 components: - pos: 9.5,-11.5 parent: 2 type: Transform - - uid: 1588 + - uid: 803 components: - pos: 8.5,-11.5 parent: 2 type: Transform - - uid: 1590 + - uid: 804 components: - pos: 6.5,-11.5 parent: 2 type: Transform - - uid: 1597 + - uid: 805 components: - pos: 9.5,-15.5 parent: 2 type: Transform - - uid: 1598 + - uid: 806 components: - pos: 10.5,-15.5 parent: 2 type: Transform - - uid: 1599 + - uid: 807 components: - pos: 11.5,-15.5 parent: 2 type: Transform - - uid: 1600 + - uid: 808 components: - pos: 12.5,-15.5 parent: 2 type: Transform - - uid: 1601 + - uid: 809 components: - pos: 13.5,-15.5 parent: 2 type: Transform - - uid: 1602 + - uid: 810 components: - pos: 14.5,-15.5 parent: 2 type: Transform - - uid: 1603 + - uid: 811 components: - pos: 13.5,-14.5 parent: 2 type: Transform - - uid: 1604 + - uid: 812 components: - pos: 13.5,-13.5 parent: 2 type: Transform - - uid: 1605 + - uid: 813 components: - pos: 9.5,-10.5 parent: 2 type: Transform - - uid: 1606 + - uid: 814 components: - pos: 9.5,-9.5 parent: 2 type: Transform - - uid: 1607 + - uid: 815 components: - pos: 10.5,-9.5 parent: 2 type: Transform - - uid: 1608 + - uid: 816 components: - pos: 11.5,-9.5 parent: 2 type: Transform - - uid: 1609 + - uid: 817 components: - pos: 12.5,-9.5 parent: 2 type: Transform - - uid: 1610 + - uid: 818 components: - pos: 13.5,-9.5 parent: 2 type: Transform - - uid: 1611 + - uid: 819 components: - pos: 6.5,-9.5 parent: 2 type: Transform - - uid: 1628 + - uid: 820 components: - pos: 10.5,-5.5 parent: 2 type: Transform - - uid: 1629 + - uid: 821 components: - pos: 11.5,-5.5 parent: 2 type: Transform - - uid: 1630 + - uid: 822 components: - pos: 12.5,-5.5 parent: 2 type: Transform - - uid: 1631 + - uid: 823 components: - pos: 13.5,-5.5 parent: 2 type: Transform - - uid: 1632 + - uid: 824 components: - pos: 14.5,-5.5 parent: 2 type: Transform - - uid: 1633 + - uid: 825 components: - pos: 6.5,-5.5 parent: 2 type: Transform - - uid: 1634 + - uid: 826 components: - pos: 5.5,-5.5 parent: 2 type: Transform - - uid: 1635 + - uid: 827 components: - pos: 4.5,-5.5 parent: 2 type: Transform - - uid: 1636 + - uid: 828 components: - pos: 3.5,-5.5 parent: 2 type: Transform - - uid: 1637 + - uid: 829 components: - pos: 3.5,-6.5 parent: 2 type: Transform - - uid: 1727 + - uid: 830 components: - pos: -19.5,7.5 parent: 2 type: Transform - - uid: 1728 + - uid: 831 components: - pos: -19.5,6.5 parent: 2 type: Transform - - uid: 1734 + - uid: 832 components: - pos: -19.5,8.5 parent: 2 type: Transform - - uid: 1740 + - uid: 833 components: - pos: -19.5,5.5 parent: 2 type: Transform - - uid: 1741 + - uid: 834 components: - pos: -19.5,10.5 parent: 2 type: Transform - - uid: 1742 + - uid: 835 components: - pos: -19.5,9.5 parent: 2 type: Transform - - uid: 1743 + - uid: 836 components: - pos: -20.5,10.5 parent: 2 type: Transform - - uid: 1744 + - uid: 837 components: - pos: -20.5,11.5 parent: 2 type: Transform - - uid: 1745 + - uid: 838 components: - pos: -20.5,12.5 parent: 2 type: Transform - - uid: 1746 + - uid: 839 components: - pos: -20.5,13.5 parent: 2 type: Transform - - uid: 1748 + - uid: 840 components: - pos: -19.5,5.5 parent: 2 type: Transform - - uid: 1749 + - uid: 841 components: - pos: -19.5,5.5 parent: 2 type: Transform - - uid: 1750 + - uid: 842 components: - pos: -19.5,5.5 parent: 2 type: Transform - - uid: 1752 + - uid: 843 components: - pos: -18.5,5.5 parent: 2 type: Transform - - uid: 1753 + - uid: 844 components: - pos: -20.5,5.5 parent: 2 type: Transform - - uid: 1754 + - uid: 845 components: - pos: -33.5,0.5 parent: 2 type: Transform - - uid: 1755 + - uid: 846 components: - pos: -32.5,0.5 parent: 2 type: Transform - - uid: 1756 + - uid: 847 components: - pos: -31.5,0.5 parent: 2 type: Transform - - uid: 1758 + - uid: 848 components: - pos: -31.5,1.5 parent: 2 type: Transform - - uid: 1759 + - uid: 849 components: - pos: -31.5,2.5 parent: 2 type: Transform - - uid: 1760 + - uid: 850 components: - pos: -30.5,2.5 parent: 2 type: Transform - - uid: 1761 + - uid: 851 components: - pos: -29.5,2.5 parent: 2 type: Transform - - uid: 1762 + - uid: 852 components: - pos: -28.5,2.5 parent: 2 type: Transform - - uid: 1809 + - uid: 853 components: - pos: 7.5,-38.5 parent: 2 type: Transform - - uid: 1811 + - uid: 854 components: - pos: 20.5,-25.5 parent: 2 type: Transform - - uid: 1812 + - uid: 855 components: - pos: 6.5,-36.5 parent: 2 type: Transform - - uid: 1875 + - uid: 856 components: - pos: 17.5,-25.5 parent: 2 type: Transform - - uid: 1876 + - uid: 857 components: - pos: 15.5,-25.5 parent: 2 type: Transform - - uid: 1881 + - uid: 858 components: - pos: 14.5,-26.5 parent: 2 type: Transform - - uid: 1882 + - uid: 859 components: - pos: 17.5,-26.5 parent: 2 type: Transform - - uid: 1883 + - uid: 860 components: - pos: 17.5,-27.5 parent: 2 type: Transform - - uid: 1907 + - uid: 861 components: - pos: 20.5,-24.5 parent: 2 type: Transform - - uid: 1909 + - uid: 862 components: - pos: 15.5,-29.5 parent: 2 type: Transform - - uid: 1910 + - uid: 863 components: - pos: 15.5,-31.5 parent: 2 type: Transform - - uid: 1911 + - uid: 864 components: - pos: 15.5,-30.5 parent: 2 type: Transform - - uid: 1912 + - uid: 865 components: - pos: 14.5,-29.5 parent: 2 type: Transform - - uid: 1913 + - uid: 866 components: - pos: 21.5,-29.5 parent: 2 type: Transform - - uid: 1915 + - uid: 867 components: - pos: 16.5,-29.5 parent: 2 type: Transform - - uid: 1986 + - uid: 868 components: - pos: 20.5,-32.5 parent: 2 type: Transform - - uid: 1987 + - uid: 869 components: - pos: 19.5,-34.5 parent: 2 type: Transform - - uid: 1990 + - uid: 870 components: - pos: 21.5,-30.5 parent: 2 type: Transform - - uid: 1994 + - uid: 871 components: - pos: 21.5,-34.5 parent: 2 type: Transform - - uid: 2007 + - uid: 872 components: - pos: 21.5,-31.5 parent: 2 type: Transform - - uid: 2012 + - uid: 873 components: - pos: 5.5,-28.5 parent: 2 type: Transform - - uid: 2053 + - uid: 874 components: - pos: 21.5,-33.5 parent: 2 type: Transform - - uid: 2087 + - uid: 875 components: - pos: -3.5,-17.5 parent: 2 type: Transform - - uid: 2088 + - uid: 876 components: - pos: -2.5,-17.5 parent: 2 type: Transform - - uid: 2096 + - uid: 877 components: - pos: -8.5,-17.5 parent: 2 type: Transform - - uid: 2097 + - uid: 878 components: - pos: -8.5,-16.5 parent: 2 type: Transform - - uid: 2098 + - uid: 879 components: - pos: -7.5,-16.5 parent: 2 type: Transform - - uid: 2294 + - uid: 880 components: - pos: 18.5,6.5 parent: 2 type: Transform - - uid: 2634 + - uid: 881 components: - pos: 15.5,-33.5 parent: 2 type: Transform - - uid: 2959 + - uid: 882 components: - pos: 15.5,-32.5 parent: 2 type: Transform - - uid: 2978 + - uid: 883 components: - pos: 20.5,-23.5 parent: 2 type: Transform - - uid: 2980 + - uid: 884 components: - pos: 21.5,-24.5 parent: 2 type: Transform - - uid: 3201 + - uid: 885 components: - pos: -12.5,-33.5 parent: 2 type: Transform - - uid: 3202 + - uid: 886 components: - pos: -13.5,-33.5 parent: 2 type: Transform - - uid: 3453 + - uid: 887 components: - pos: 17.5,-28.5 parent: 2 type: Transform - - uid: 3455 + - uid: 888 components: - pos: 17.5,-29.5 parent: 2 type: Transform - - uid: 3491 + - uid: 889 components: - pos: 13.5,-27.5 parent: 2 type: Transform - - uid: 3494 + - uid: 890 components: - pos: 14.5,-27.5 parent: 2 type: Transform - - uid: 3520 + - uid: 891 components: - pos: -43.5,40.5 parent: 2 type: Transform - - uid: 3523 + - uid: 892 components: - pos: 14.5,-28.5 parent: 2 type: Transform - - uid: 3527 + - uid: 893 components: - pos: -43.5,41.5 parent: 2 type: Transform - - uid: 3763 + - uid: 894 components: - pos: 20.5,-21.5 parent: 2 type: Transform - - uid: 3880 + - uid: 895 components: - pos: -19.5,34.5 parent: 2 type: Transform - - uid: 3924 + - uid: 896 components: - pos: -17.5,34.5 parent: 2 type: Transform - - uid: 3939 + - uid: 897 components: - pos: -16.5,34.5 parent: 2 type: Transform - - uid: 3951 + - uid: 898 components: - pos: -16.5,24.5 parent: 2 type: Transform - - uid: 3952 + - uid: 899 components: - pos: -2.5,25.5 parent: 2 type: Transform - - uid: 3954 + - uid: 900 components: - pos: -54.5,38.5 parent: 2 type: Transform - - uid: 3956 + - uid: 901 components: - pos: -17.5,24.5 parent: 2 type: Transform - - uid: 3957 + - uid: 902 components: - pos: -12.5,26.5 parent: 2 type: Transform - - uid: 3958 + - uid: 903 components: - pos: -28.5,27.5 parent: 2 type: Transform - - uid: 3959 + - uid: 904 components: - pos: -27.5,27.5 parent: 2 type: Transform - - uid: 3960 + - uid: 905 components: - pos: -26.5,27.5 parent: 2 type: Transform - - uid: 3961 + - uid: 906 components: - pos: -26.5,28.5 parent: 2 type: Transform - - uid: 3962 + - uid: 907 components: - pos: -46.5,25.5 parent: 2 type: Transform - - uid: 3963 + - uid: 908 components: - pos: -53.5,20.5 parent: 2 type: Transform - - uid: 3964 + - uid: 909 components: - pos: -27.5,28.5 parent: 2 type: Transform - - uid: 3966 + - uid: 910 components: - pos: -53.5,12.5 parent: 2 type: Transform - - uid: 3967 + - uid: 911 components: - pos: -54.5,37.5 parent: 2 type: Transform - - uid: 3968 + - uid: 912 components: - pos: -54.5,39.5 parent: 2 type: Transform - - uid: 3969 + - uid: 913 components: - pos: -54.5,40.5 parent: 2 type: Transform - - uid: 3984 + - uid: 914 components: - pos: -11.5,-33.5 parent: 2 type: Transform - - uid: 3990 + - uid: 915 components: - pos: 0.5,-33.5 parent: 2 type: Transform - - uid: 3992 + - uid: 916 components: - pos: 1.5,-33.5 parent: 2 type: Transform - - uid: 3993 + - uid: 917 components: - pos: 2.5,-33.5 parent: 2 type: Transform - - uid: 3994 + - uid: 918 components: - pos: 3.5,-33.5 parent: 2 type: Transform - - uid: 3995 + - uid: 919 components: - pos: 4.5,-33.5 parent: 2 type: Transform - - uid: 3999 + - uid: 920 components: - pos: 10.5,-30.5 parent: 2 type: Transform - - uid: 4000 + - uid: 921 components: - pos: 10.5,-31.5 parent: 2 type: Transform - - uid: 4001 + - uid: 922 components: - pos: 11.5,-31.5 parent: 2 type: Transform - - uid: 4002 + - uid: 923 components: - pos: 9.5,-31.5 parent: 2 type: Transform - - uid: 4007 + - uid: 924 components: - pos: -18.5,34.5 parent: 2 type: Transform - - uid: 4013 + - uid: 925 components: - pos: 2.5,34.5 parent: 2 type: Transform - - uid: 4015 + - uid: 926 components: - pos: 1.5,34.5 parent: 2 type: Transform - - uid: 4016 + - uid: 927 components: - pos: 2.5,33.5 parent: 2 type: Transform - - uid: 4017 + - uid: 928 components: - pos: 2.5,35.5 parent: 2 type: Transform - - uid: 4019 + - uid: 929 components: - pos: 1.5,31.5 parent: 2 type: Transform - - uid: 4020 + - uid: 930 components: - pos: -0.5,31.5 parent: 2 type: Transform - - uid: 4021 + - uid: 931 components: - pos: 1.5,29.5 parent: 2 type: Transform - - uid: 4022 + - uid: 932 components: - pos: -0.5,29.5 parent: 2 type: Transform - - uid: 4410 + - uid: 933 components: - pos: 31.5,27.5 parent: 2 type: Transform - - uid: 4818 + - uid: 934 components: - pos: 20.5,-22.5 parent: 2 type: Transform - - uid: 4832 + - uid: 935 components: - pos: 5.5,-14.5 parent: 2 type: Transform - - uid: 4833 + - uid: 936 components: - pos: 5.5,-15.5 parent: 2 type: Transform - - uid: 4835 + - uid: 937 components: - pos: 10.5,-16.5 parent: 2 type: Transform - - uid: 4837 + - uid: 938 components: - pos: 14.5,-16.5 parent: 2 type: Transform - - uid: 4954 + - uid: 939 components: - pos: -46.5,44.5 parent: 2 type: Transform - - uid: 5179 + - uid: 940 components: - pos: 17.5,6.5 parent: 2 type: Transform - - uid: 5194 + - uid: 941 components: - pos: -37.5,25.5 parent: 2 type: Transform - - uid: 5225 + - uid: 942 components: - pos: -41.5,-2.5 parent: 2 type: Transform - - uid: 5374 - components: - - pos: 3.5,-45.5 - parent: 2 - type: Transform - - uid: 5376 - components: - - pos: 3.5,-43.5 - parent: 2 - type: Transform - - uid: 5387 + - uid: 943 components: - pos: -6.5,3.5 parent: 2 type: Transform - - uid: 5398 + - uid: 944 components: - pos: -37.5,-23.5 parent: 2 type: Transform - - uid: 5907 + - uid: 945 components: - pos: -13.5,-22.5 parent: 2 type: Transform - - uid: 5914 + - uid: 946 components: - pos: -62.5,32.5 parent: 2 type: Transform - - uid: 5990 + - uid: 947 components: - pos: -54.5,32.5 parent: 2 type: Transform - - uid: 5991 + - uid: 948 components: - pos: -53.5,32.5 parent: 2 type: Transform - - uid: 6237 + - uid: 949 components: - pos: -10.5,-28.5 parent: 2 type: Transform - - uid: 6248 + - uid: 950 components: - pos: -11.5,-28.5 parent: 2 type: Transform - - uid: 6661 - components: - - pos: 2.5,-41.5 - parent: 2 - type: Transform - - uid: 6743 + - uid: 951 components: - pos: 7.5,-37.5 parent: 2 type: Transform - - uid: 6769 + - uid: 952 components: - pos: -46.5,45.5 parent: 2 type: Transform - - uid: 7103 + - uid: 953 components: - pos: -12.5,-27.5 parent: 2 type: Transform - - uid: 7104 + - uid: 954 components: - pos: -8.5,-26.5 parent: 2 type: Transform - - uid: 7105 + - uid: 955 components: - pos: -8.5,-27.5 parent: 2 type: Transform - - uid: 7106 + - uid: 956 components: - pos: -12.5,-28.5 parent: 2 type: Transform - - uid: 7486 + - uid: 957 components: - pos: 22.5,21.5 parent: 2 type: Transform - - uid: 7523 + - uid: 958 components: - pos: -9.5,-28.5 parent: 2 type: Transform - - uid: 7797 + - uid: 959 components: - pos: -38.5,-1.5 parent: 2 type: Transform - - uid: 7799 + - uid: 960 components: - pos: -39.5,-1.5 parent: 2 type: Transform - - uid: 7800 + - uid: 961 components: - pos: -41.5,-1.5 parent: 2 type: Transform - - uid: 7802 + - uid: 962 components: - pos: -41.5,-0.5 parent: 2 type: Transform - - uid: 7803 + - uid: 963 components: - pos: -41.5,0.5 parent: 2 type: Transform - - uid: 7823 + - uid: 964 components: - pos: -40.5,-1.5 parent: 2 type: Transform - - uid: 7902 + - uid: 965 components: - pos: 16.5,-25.5 parent: 2 type: Transform - - uid: 7908 + - uid: 966 components: - pos: -3.5,-18.5 parent: 2 type: Transform - - uid: 7915 + - uid: 967 components: - pos: 20.5,-28.5 parent: 2 type: Transform - - uid: 7950 + - uid: 968 components: - pos: -48.5,38.5 parent: 2 type: Transform - - uid: 7951 + - uid: 969 components: - pos: -48.5,37.5 parent: 2 type: Transform - - uid: 7952 + - uid: 970 components: - pos: -48.5,36.5 parent: 2 type: Transform - - uid: 7953 + - uid: 971 components: - pos: -48.5,39.5 parent: 2 type: Transform - - uid: 7954 + - uid: 972 components: - pos: -48.5,40.5 parent: 2 type: Transform - - uid: 7955 + - uid: 973 components: - pos: -49.5,36.5 parent: 2 type: Transform - - uid: 7956 + - uid: 974 components: - pos: -50.5,36.5 parent: 2 type: Transform - - uid: 7957 + - uid: 975 components: - pos: -51.5,36.5 parent: 2 type: Transform - - uid: 7958 + - uid: 976 components: - pos: -52.5,36.5 parent: 2 type: Transform - - uid: 7959 + - uid: 977 components: - pos: -53.5,36.5 parent: 2 type: Transform - - uid: 7960 + - uid: 978 components: - pos: -54.5,36.5 parent: 2 type: Transform - - uid: 7961 + - uid: 979 components: - pos: -55.5,36.5 parent: 2 type: Transform - - uid: 7962 + - uid: 980 components: - pos: -55.5,35.5 parent: 2 type: Transform - - uid: 7963 + - uid: 981 components: - pos: -55.5,34.5 parent: 2 type: Transform - - uid: 7964 + - uid: 982 components: - pos: -55.5,33.5 parent: 2 type: Transform - - uid: 7965 + - uid: 983 components: - pos: -55.5,32.5 parent: 2 type: Transform - - uid: 7966 + - uid: 984 components: - pos: -56.5,33.5 parent: 2 type: Transform - - uid: 7967 + - uid: 985 components: - pos: -57.5,33.5 parent: 2 type: Transform - - uid: 7969 + - uid: 986 components: - pos: -58.5,33.5 parent: 2 type: Transform - - uid: 7970 + - uid: 987 components: - pos: -59.5,33.5 parent: 2 type: Transform - - uid: 7971 + - uid: 988 components: - pos: -60.5,33.5 parent: 2 type: Transform - - uid: 7972 + - uid: 989 components: - pos: -61.5,33.5 parent: 2 type: Transform - - uid: 7973 + - uid: 990 components: - pos: -62.5,33.5 parent: 2 type: Transform - - uid: 7984 + - uid: 991 components: - pos: -49.5,35.5 parent: 2 type: Transform - - uid: 7985 + - uid: 992 components: - pos: -49.5,34.5 parent: 2 type: Transform - - uid: 7986 + - uid: 993 components: - pos: -49.5,33.5 parent: 2 type: Transform - - uid: 7987 + - uid: 994 components: - pos: -48.5,33.5 parent: 2 type: Transform - - uid: 7988 + - uid: 995 components: - pos: -46.5,32.5 parent: 2 type: Transform - - uid: 7989 + - uid: 996 components: - pos: -47.5,33.5 parent: 2 type: Transform - - uid: 7990 + - uid: 997 components: - pos: -46.5,33.5 parent: 2 type: Transform - - uid: 8005 + - uid: 998 components: - pos: -46.5,31.5 parent: 2 type: Transform - - uid: 8006 + - uid: 999 components: - pos: -46.5,30.5 parent: 2 type: Transform - - uid: 8007 + - uid: 1000 components: - pos: -46.5,29.5 parent: 2 type: Transform - - uid: 8008 + - uid: 1001 components: - pos: -46.5,28.5 parent: 2 type: Transform - - uid: 8009 + - uid: 1002 components: - pos: -47.5,28.5 parent: 2 type: Transform - - uid: 8010 + - uid: 1003 components: - pos: -48.5,28.5 parent: 2 type: Transform - - uid: 8011 + - uid: 1004 components: - pos: -49.5,28.5 parent: 2 type: Transform - - uid: 8012 + - uid: 1005 components: - pos: -50.5,28.5 parent: 2 type: Transform - - uid: 8013 + - uid: 1006 components: - pos: -45.5,28.5 parent: 2 type: Transform - - uid: 8014 + - uid: 1007 components: - pos: -44.5,28.5 parent: 2 type: Transform - - uid: 8015 + - uid: 1008 components: - pos: -46.5,27.5 parent: 2 type: Transform - - uid: 8016 + - uid: 1009 components: - pos: -46.5,26.5 parent: 2 type: Transform - - uid: 8017 + - uid: 1010 components: - pos: -41.5,35.5 parent: 2 type: Transform - - uid: 8018 + - uid: 1011 components: - pos: -41.5,34.5 parent: 2 type: Transform - - uid: 8019 + - uid: 1012 components: - pos: -41.5,33.5 parent: 2 type: Transform - - uid: 8020 + - uid: 1013 components: - pos: -41.5,32.5 parent: 2 type: Transform - - uid: 8021 + - uid: 1014 components: - pos: -41.5,31.5 parent: 2 type: Transform - - uid: 8022 + - uid: 1015 components: - pos: -41.5,30.5 parent: 2 type: Transform - - uid: 8023 + - uid: 1016 components: - pos: -41.5,29.5 parent: 2 type: Transform - - uid: 8024 + - uid: 1017 components: - pos: -41.5,28.5 parent: 2 type: Transform - - uid: 8025 + - uid: 1018 components: - pos: -41.5,27.5 parent: 2 type: Transform - - uid: 8026 + - uid: 1019 components: - pos: -41.5,26.5 parent: 2 type: Transform - - uid: 8027 + - uid: 1020 components: - pos: -40.5,27.5 parent: 2 type: Transform - - uid: 8028 + - uid: 1021 components: - pos: -39.5,27.5 parent: 2 type: Transform - - uid: 8029 + - uid: 1022 components: - pos: -38.5,27.5 parent: 2 type: Transform - - uid: 8030 + - uid: 1023 components: - pos: -38.5,28.5 parent: 2 type: Transform - - uid: 8031 + - uid: 1024 components: - pos: -37.5,28.5 parent: 2 type: Transform - - uid: 8032 + - uid: 1025 components: - pos: -36.5,28.5 parent: 2 type: Transform - - uid: 8033 + - uid: 1026 components: - pos: -38.5,26.5 parent: 2 type: Transform - - uid: 8034 + - uid: 1027 components: - pos: -37.5,26.5 parent: 2 type: Transform - - uid: 8035 + - uid: 1028 components: - pos: -36.5,26.5 parent: 2 type: Transform - - uid: 8036 + - uid: 1029 components: - pos: -35.5,26.5 parent: 2 type: Transform - - uid: 8037 + - uid: 1030 components: - pos: -33.5,30.5 parent: 2 type: Transform - - uid: 8038 + - uid: 1031 components: - pos: -32.5,30.5 parent: 2 type: Transform - - uid: 8039 + - uid: 1032 components: - pos: -31.5,30.5 parent: 2 type: Transform - - uid: 8040 + - uid: 1033 components: - pos: -31.5,29.5 parent: 2 type: Transform - - uid: 8041 + - uid: 1034 components: - pos: -30.5,29.5 parent: 2 type: Transform - - uid: 8042 + - uid: 1035 components: - pos: -29.5,29.5 parent: 2 type: Transform - - uid: 8043 + - uid: 1036 components: - pos: -29.5,28.5 parent: 2 type: Transform - - uid: 8044 + - uid: 1037 components: - pos: -29.5,27.5 parent: 2 type: Transform - - uid: 8045 + - uid: 1038 components: - pos: -29.5,26.5 parent: 2 type: Transform - - uid: 8046 + - uid: 1039 components: - pos: -29.5,25.5 parent: 2 type: Transform - - uid: 8047 + - uid: 1040 components: - pos: -29.5,24.5 parent: 2 type: Transform - - uid: 8048 + - uid: 1041 components: - pos: -29.5,23.5 parent: 2 type: Transform - - uid: 8049 + - uid: 1042 components: - pos: -29.5,22.5 parent: 2 type: Transform - - uid: 8050 + - uid: 1043 components: - pos: -30.5,22.5 parent: 2 type: Transform - - uid: 8051 + - uid: 1044 components: - pos: -31.5,22.5 parent: 2 type: Transform - - uid: 8052 + - uid: 1045 components: - pos: -32.5,22.5 parent: 2 type: Transform - - uid: 8053 + - uid: 1046 components: - pos: -28.5,22.5 parent: 2 type: Transform - - uid: 8054 + - uid: 1047 components: - pos: -27.5,22.5 parent: 2 type: Transform - - uid: 8055 + - uid: 1048 components: - pos: -26.5,22.5 parent: 2 type: Transform - - uid: 8056 + - uid: 1049 components: - pos: -27.5,21.5 parent: 2 type: Transform - - uid: 8057 + - uid: 1050 components: - pos: -27.5,20.5 parent: 2 type: Transform - - uid: 8080 + - uid: 1051 components: - pos: -44.5,18.5 parent: 2 type: Transform - - uid: 8081 + - uid: 1052 components: - pos: -45.5,18.5 parent: 2 type: Transform - - uid: 8082 + - uid: 1053 components: - pos: -46.5,18.5 parent: 2 type: Transform - - uid: 8083 + - uid: 1054 components: - pos: -46.5,19.5 parent: 2 type: Transform - - uid: 8084 + - uid: 1055 components: - pos: -46.5,20.5 parent: 2 type: Transform - - uid: 8085 + - uid: 1056 components: - pos: -46.5,21.5 parent: 2 type: Transform - - uid: 8086 + - uid: 1057 components: - pos: -46.5,22.5 parent: 2 type: Transform - - uid: 8087 + - uid: 1058 components: - pos: -46.5,23.5 parent: 2 type: Transform - - uid: 8088 + - uid: 1059 components: - pos: -47.5,22.5 parent: 2 type: Transform - - uid: 8089 + - uid: 1060 components: - pos: -48.5,22.5 parent: 2 type: Transform - - uid: 8090 + - uid: 1061 components: - pos: -49.5,22.5 parent: 2 type: Transform - - uid: 8091 + - uid: 1062 components: - pos: -49.5,21.5 parent: 2 type: Transform - - uid: 8092 + - uid: 1063 components: - pos: -49.5,20.5 parent: 2 type: Transform - - uid: 8093 + - uid: 1064 components: - pos: -50.5,20.5 parent: 2 type: Transform - - uid: 8094 + - uid: 1065 components: - pos: -51.5,20.5 parent: 2 type: Transform - - uid: 8095 + - uid: 1066 components: - pos: -52.5,20.5 parent: 2 type: Transform - - uid: 8096 + - uid: 1067 components: - pos: -49.5,19.5 parent: 2 type: Transform - - uid: 8097 + - uid: 1068 components: - pos: -49.5,18.5 parent: 2 type: Transform - - uid: 8098 + - uid: 1069 components: - pos: -49.5,17.5 parent: 2 type: Transform - - uid: 8099 + - uid: 1070 components: - pos: -49.5,16.5 parent: 2 type: Transform - - uid: 8100 + - uid: 1071 components: - pos: -49.5,15.5 parent: 2 type: Transform - - uid: 8101 + - uid: 1072 components: - pos: -49.5,14.5 parent: 2 type: Transform - - uid: 8102 + - uid: 1073 components: - pos: -49.5,13.5 parent: 2 type: Transform - - uid: 8103 + - uid: 1074 components: - pos: -49.5,12.5 parent: 2 type: Transform - - uid: 8104 + - uid: 1075 components: - pos: -50.5,12.5 parent: 2 type: Transform - - uid: 8105 + - uid: 1076 components: - pos: -51.5,12.5 parent: 2 type: Transform - - uid: 8106 + - uid: 1077 components: - pos: -52.5,12.5 parent: 2 type: Transform - - uid: 8107 + - uid: 1078 components: - pos: -49.5,11.5 parent: 2 type: Transform - - uid: 8108 + - uid: 1079 components: - pos: -49.5,10.5 parent: 2 type: Transform - - uid: 8117 + - uid: 1080 components: - pos: -46.5,11.5 parent: 2 type: Transform - - uid: 8118 + - uid: 1081 components: - pos: -46.5,12.5 parent: 2 type: Transform - - uid: 8119 + - uid: 1082 components: - pos: -46.5,13.5 parent: 2 type: Transform - - uid: 8120 + - uid: 1083 components: - pos: -46.5,14.5 parent: 2 type: Transform - - uid: 8121 + - uid: 1084 components: - pos: -46.5,15.5 parent: 2 type: Transform - - uid: 8122 + - uid: 1085 components: - pos: -46.5,16.5 parent: 2 type: Transform - - uid: 8123 + - uid: 1086 components: - pos: -46.5,17.5 parent: 2 type: Transform - - uid: 8125 + - uid: 1087 components: - pos: -41.5,6.5 parent: 2 type: Transform - - uid: 8127 + - uid: 1088 components: - pos: -47.5,10.5 parent: 2 type: Transform - - uid: 8129 + - uid: 1089 components: - pos: -48.5,10.5 parent: 2 type: Transform - - uid: 8130 + - uid: 1090 components: - pos: -46.5,10.5 parent: 2 type: Transform - - uid: 8131 + - uid: 1091 components: - pos: -44.5,17.5 parent: 2 type: Transform - - uid: 8132 + - uid: 1092 components: - pos: -43.5,17.5 parent: 2 type: Transform - - uid: 8133 + - uid: 1093 components: - pos: -42.5,17.5 parent: 2 type: Transform - - uid: 8134 + - uid: 1094 components: - pos: -41.5,17.5 parent: 2 type: Transform - - uid: 8135 + - uid: 1095 components: - pos: -41.5,18.5 parent: 2 type: Transform - - uid: 8136 + - uid: 1096 components: - pos: -41.5,19.5 parent: 2 type: Transform - - uid: 8137 + - uid: 1097 components: - pos: -41.5,20.5 parent: 2 type: Transform - - uid: 8138 + - uid: 1098 components: - pos: -41.5,21.5 parent: 2 type: Transform - - uid: 8139 + - uid: 1099 components: - pos: -41.5,22.5 parent: 2 type: Transform - - uid: 8140 + - uid: 1100 components: - pos: -41.5,23.5 parent: 2 type: Transform - - uid: 8141 + - uid: 1101 components: - pos: -41.5,16.5 parent: 2 type: Transform - - uid: 8142 + - uid: 1102 components: - pos: -41.5,15.5 parent: 2 type: Transform - - uid: 8143 + - uid: 1103 components: - pos: -41.5,14.5 parent: 2 type: Transform - - uid: 8144 + - uid: 1104 components: - pos: -41.5,13.5 parent: 2 type: Transform - - uid: 8145 + - uid: 1105 components: - pos: -41.5,12.5 parent: 2 type: Transform - - uid: 8146 + - uid: 1106 components: - pos: -41.5,11.5 parent: 2 type: Transform - - uid: 8147 + - uid: 1107 components: - pos: -41.5,10.5 parent: 2 type: Transform - - uid: 8148 + - uid: 1108 components: - pos: -35.5,16.5 parent: 2 type: Transform - - uid: 8149 + - uid: 1109 components: - pos: -35.5,15.5 parent: 2 type: Transform - - uid: 8150 + - uid: 1110 components: - pos: -36.5,15.5 parent: 2 type: Transform - - uid: 8151 + - uid: 1111 components: - pos: -37.5,15.5 parent: 2 type: Transform - - uid: 8152 + - uid: 1112 components: - pos: -37.5,16.5 parent: 2 type: Transform - - uid: 8153 + - uid: 1113 components: - pos: -37.5,17.5 parent: 2 type: Transform - - uid: 8154 + - uid: 1114 components: - pos: -37.5,18.5 parent: 2 type: Transform - - uid: 8155 + - uid: 1115 components: - pos: -37.5,19.5 parent: 2 type: Transform - - uid: 8156 + - uid: 1116 components: - pos: -34.5,16.5 parent: 2 type: Transform - - uid: 8157 + - uid: 1117 components: - pos: -34.5,17.5 parent: 2 type: Transform - - uid: 8158 + - uid: 1118 components: - pos: -34.5,18.5 parent: 2 type: Transform - - uid: 8159 + - uid: 1119 components: - pos: -34.5,19.5 parent: 2 type: Transform - - uid: 8160 + - uid: 1120 components: - pos: -34.5,15.5 parent: 2 type: Transform - - uid: 8161 + - uid: 1121 components: - pos: -33.5,15.5 parent: 2 type: Transform - - uid: 8162 + - uid: 1122 components: - pos: -32.5,15.5 parent: 2 type: Transform - - uid: 8163 + - uid: 1123 components: - pos: -31.5,15.5 parent: 2 type: Transform - - uid: 8164 + - uid: 1124 components: - pos: -31.5,16.5 parent: 2 type: Transform - - uid: 8165 + - uid: 1125 components: - pos: -31.5,17.5 parent: 2 type: Transform - - uid: 8166 + - uid: 1126 components: - pos: -31.5,18.5 parent: 2 type: Transform - - uid: 8167 + - uid: 1127 components: - pos: -30.5,15.5 parent: 2 type: Transform - - uid: 8168 + - uid: 1128 components: - pos: -30.5,14.5 parent: 2 type: Transform - - uid: 8169 + - uid: 1129 components: - pos: -30.5,13.5 parent: 2 type: Transform - - uid: 8170 + - uid: 1130 components: - pos: -30.5,12.5 parent: 2 type: Transform - - uid: 8171 + - uid: 1131 components: - pos: -30.5,11.5 parent: 2 type: Transform - - uid: 8172 + - uid: 1132 components: - pos: -30.5,10.5 parent: 2 type: Transform - - uid: 8173 + - uid: 1133 components: - pos: -37.5,14.5 parent: 2 type: Transform - - uid: 8174 + - uid: 1134 components: - pos: -37.5,13.5 parent: 2 type: Transform - - uid: 8175 + - uid: 1135 components: - pos: -37.5,12.5 parent: 2 type: Transform - - uid: 8176 + - uid: 1136 components: - pos: -37.5,11.5 parent: 2 type: Transform - - uid: 8177 + - uid: 1137 components: - pos: -37.5,10.5 parent: 2 type: Transform - - uid: 8178 + - uid: 1138 components: - pos: -36.5,10.5 parent: 2 type: Transform - - uid: 8179 + - uid: 1139 components: - pos: -35.5,10.5 parent: 2 type: Transform - - uid: 8180 + - uid: 1140 components: - pos: -28.5,14.5 parent: 2 type: Transform - - uid: 8181 + - uid: 1141 components: - pos: -28.5,13.5 parent: 2 type: Transform - - uid: 8182 + - uid: 1142 components: - pos: -28.5,12.5 parent: 2 type: Transform - - uid: 8183 + - uid: 1143 components: - pos: -28.5,11.5 parent: 2 type: Transform - - uid: 8184 + - uid: 1144 components: - pos: -29.5,15.5 parent: 2 type: Transform - - uid: 8185 + - uid: 1145 components: - pos: -28.5,15.5 parent: 2 type: Transform - - uid: 8186 + - uid: 1146 components: - pos: -39.5,8.5 parent: 2 type: Transform - - uid: 8187 + - uid: 1147 components: - pos: -39.5,7.5 parent: 2 type: Transform - - uid: 8188 + - uid: 1148 components: - pos: -46.5,5.5 parent: 2 type: Transform - - uid: 8189 + - uid: 1149 components: - pos: -46.5,0.5 parent: 2 type: Transform - - uid: 8190 + - uid: 1150 components: - pos: -46.5,-0.5 parent: 2 type: Transform - - uid: 8191 + - uid: 1151 components: - pos: -41.5,-3.5 parent: 2 type: Transform - - uid: 8192 + - uid: 1152 components: - pos: -41.5,-4.5 parent: 2 type: Transform - - uid: 8193 + - uid: 1153 components: - pos: -41.5,-5.5 parent: 2 type: Transform - - uid: 8195 + - uid: 1154 components: - pos: -42.5,-5.5 parent: 2 type: Transform - - uid: 8196 + - uid: 1155 components: - pos: -46.5,1.5 parent: 2 type: Transform - - uid: 8197 + - uid: 1156 components: - pos: -43.5,6.5 parent: 2 type: Transform - - uid: 8198 + - uid: 1157 components: - pos: -44.5,6.5 parent: 2 type: Transform - - uid: 8199 + - uid: 1158 components: - pos: -45.5,6.5 parent: 2 type: Transform - - uid: 8200 + - uid: 1159 components: - pos: -46.5,6.5 parent: 2 type: Transform - - uid: 8202 + - uid: 1160 components: - pos: -47.5,6.5 parent: 2 type: Transform - - uid: 8203 + - uid: 1161 components: - pos: -48.5,6.5 parent: 2 type: Transform - - uid: 8204 + - uid: 1162 components: - pos: -46.5,4.5 parent: 2 type: Transform - - uid: 8205 + - uid: 1163 components: - pos: -46.5,3.5 parent: 2 type: Transform - - uid: 8206 + - uid: 1164 components: - pos: -46.5,2.5 parent: 2 type: Transform - - uid: 8207 + - uid: 1165 components: - pos: -42.5,6.5 parent: 2 type: Transform - - uid: 8208 + - uid: 1166 components: - pos: -40.5,6.5 parent: 2 type: Transform - - uid: 8209 + - uid: 1167 components: - pos: -39.5,6.5 parent: 2 type: Transform - - uid: 8210 + - uid: 1168 components: - pos: -37.5,6.5 parent: 2 type: Transform - - uid: 8211 + - uid: 1169 components: - pos: -38.5,6.5 parent: 2 type: Transform - - uid: 8212 + - uid: 1170 components: - pos: -36.5,6.5 parent: 2 type: Transform - - uid: 8213 + - uid: 1171 components: - pos: -35.5,6.5 parent: 2 type: Transform - - uid: 8214 + - uid: 1172 components: - pos: -34.5,6.5 parent: 2 type: Transform - - uid: 8215 + - uid: 1173 components: - pos: -33.5,6.5 parent: 2 type: Transform - - uid: 8216 + - uid: 1174 components: - pos: -32.5,6.5 parent: 2 type: Transform - - uid: 8217 + - uid: 1175 components: - pos: -28.5,6.5 parent: 2 type: Transform - - uid: 8218 + - uid: 1176 components: - pos: -31.5,6.5 parent: 2 type: Transform - - uid: 8219 + - uid: 1177 components: - pos: -30.5,6.5 parent: 2 type: Transform - - uid: 8220 + - uid: 1178 components: - pos: -27.5,6.5 parent: 2 type: Transform - - uid: 8221 + - uid: 1179 components: - pos: -29.5,6.5 parent: 2 type: Transform - - uid: 8222 + - uid: 1180 components: - pos: -43.5,-5.5 parent: 2 type: Transform - - uid: 8223 + - uid: 1181 components: - pos: -44.5,-5.5 parent: 2 type: Transform - - uid: 8224 + - uid: 1182 components: - pos: -40.5,-5.5 parent: 2 type: Transform - - uid: 8225 + - uid: 1183 components: - pos: -39.5,-5.5 parent: 2 type: Transform - - uid: 8226 + - uid: 1184 components: - pos: -38.5,-5.5 parent: 2 type: Transform - - uid: 8227 + - uid: 1185 components: - pos: -37.5,-5.5 parent: 2 type: Transform - - uid: 8228 + - uid: 1186 components: - pos: -36.5,-5.5 parent: 2 type: Transform - - uid: 8229 + - uid: 1187 components: - pos: -35.5,-10.5 parent: 2 type: Transform - - uid: 8230 + - uid: 1188 components: - pos: -36.5,-10.5 parent: 2 type: Transform - - uid: 8231 + - uid: 1189 components: - pos: -37.5,-10.5 parent: 2 type: Transform - - uid: 8232 + - uid: 1190 components: - pos: -38.5,-10.5 parent: 2 type: Transform - - uid: 8233 + - uid: 1191 components: - pos: -39.5,-10.5 parent: 2 type: Transform - - uid: 8234 + - uid: 1192 components: - pos: -39.5,-11.5 parent: 2 type: Transform - - uid: 8235 + - uid: 1193 components: - pos: -39.5,-12.5 parent: 2 type: Transform - - uid: 8236 + - uid: 1194 components: - pos: -39.5,-13.5 parent: 2 type: Transform - - uid: 8237 + - uid: 1195 components: - pos: -39.5,-14.5 parent: 2 type: Transform - - uid: 8238 + - uid: 1196 components: - pos: -39.5,-15.5 parent: 2 type: Transform - - uid: 8239 + - uid: 1197 components: - pos: -35.5,-11.5 parent: 2 type: Transform - - uid: 8240 + - uid: 1198 components: - pos: -35.5,-12.5 parent: 2 type: Transform - - uid: 8241 + - uid: 1199 components: - pos: -35.5,-13.5 parent: 2 type: Transform - - uid: 8242 + - uid: 1200 components: - pos: -35.5,-14.5 parent: 2 type: Transform - - uid: 8243 + - uid: 1201 components: - pos: -26.5,-10.5 parent: 2 type: Transform - - uid: 8244 + - uid: 1202 components: - pos: -27.5,-10.5 parent: 2 type: Transform - - uid: 8245 + - uid: 1203 components: - pos: -28.5,-10.5 parent: 2 type: Transform - - uid: 8246 + - uid: 1204 components: - pos: -28.5,-9.5 parent: 2 type: Transform - - uid: 8247 + - uid: 1205 components: - pos: -28.5,-8.5 parent: 2 type: Transform - - uid: 8248 + - uid: 1206 components: - pos: -28.5,-7.5 parent: 2 type: Transform - - uid: 8249 + - uid: 1207 components: - pos: -28.5,-6.5 parent: 2 type: Transform - - uid: 8250 + - uid: 1208 components: - pos: -28.5,-5.5 parent: 2 type: Transform - - uid: 8251 + - uid: 1209 components: - pos: -27.5,-8.5 parent: 2 type: Transform - - uid: 8252 + - uid: 1210 components: - pos: -26.5,-8.5 parent: 2 type: Transform - - uid: 8253 + - uid: 1211 components: - pos: -25.5,-8.5 parent: 2 type: Transform - - uid: 8254 + - uid: 1212 components: - pos: -24.5,-8.5 parent: 2 type: Transform - - uid: 8255 + - uid: 1213 components: - pos: -23.5,-8.5 parent: 2 type: Transform - - uid: 8256 + - uid: 1214 components: - pos: -22.5,-8.5 parent: 2 type: Transform - - uid: 8257 + - uid: 1215 components: - pos: -21.5,-8.5 parent: 2 type: Transform - - uid: 8258 + - uid: 1216 components: - pos: -22.5,-7.5 parent: 2 type: Transform - - uid: 8259 + - uid: 1217 components: - pos: -22.5,-6.5 parent: 2 type: Transform - - uid: 8260 + - uid: 1218 components: - pos: -22.5,-5.5 parent: 2 type: Transform - - uid: 8261 + - uid: 1219 components: - pos: -22.5,-4.5 parent: 2 type: Transform - - uid: 8262 + - uid: 1220 components: - pos: -22.5,-3.5 parent: 2 type: Transform - - uid: 8263 + - uid: 1221 components: - pos: -29.5,-8.5 parent: 2 type: Transform - - uid: 8264 + - uid: 1222 components: - pos: -30.5,-8.5 parent: 2 type: Transform - - uid: 8265 + - uid: 1223 components: - pos: -31.5,-8.5 parent: 2 type: Transform - - uid: 8266 + - uid: 1224 components: - pos: -32.5,-8.5 parent: 2 type: Transform - - uid: 8267 + - uid: 1225 components: - pos: -32.5,-7.5 parent: 2 type: Transform - - uid: 8268 + - uid: 1226 components: - pos: -32.5,-6.5 parent: 2 type: Transform - - uid: 8269 + - uid: 1227 components: - pos: -32.5,-5.5 parent: 2 type: Transform - - uid: 8270 + - uid: 1228 components: - pos: -8.5,-22.5 parent: 2 type: Transform - - uid: 8271 + - uid: 1229 components: - pos: -8.5,-21.5 parent: 2 type: Transform - - uid: 8272 + - uid: 1230 components: - pos: -11.5,-23.5 parent: 2 type: Transform - - uid: 8273 + - uid: 1231 components: - pos: -10.5,-23.5 parent: 2 type: Transform - - uid: 8274 + - uid: 1232 components: - pos: -9.5,-23.5 parent: 2 type: Transform - - uid: 8275 + - uid: 1233 components: - pos: -8.5,-23.5 parent: 2 type: Transform - - uid: 8276 + - uid: 1234 components: - pos: -8.5,-24.5 parent: 2 type: Transform - - uid: 8277 + - uid: 1235 components: - pos: -12.5,-39.5 parent: 2 type: Transform - - uid: 8278 + - uid: 1236 components: - pos: -12.5,-23.5 parent: 2 type: Transform - - uid: 8279 + - uid: 1237 components: - pos: -13.5,-23.5 parent: 2 type: Transform - - uid: 8280 + - uid: 1238 components: - pos: -12.5,-38.5 parent: 2 type: Transform - - uid: 8281 + - uid: 1239 components: - pos: -13.5,-38.5 parent: 2 type: Transform - - uid: 8282 + - uid: 1240 components: - pos: -8.5,-20.5 parent: 2 type: Transform - - uid: 8283 + - uid: 1241 components: - pos: -28.5,-11.5 parent: 2 type: Transform - - uid: 8284 + - uid: 1242 components: - pos: -28.5,-12.5 parent: 2 type: Transform - - uid: 8285 + - uid: 1243 components: - pos: -28.5,-13.5 parent: 2 type: Transform - - uid: 8286 + - uid: 1244 components: - pos: -28.5,-14.5 parent: 2 type: Transform - - uid: 8287 + - uid: 1245 components: - pos: -28.5,-15.5 parent: 2 type: Transform - - uid: 8288 + - uid: 1246 components: - pos: -28.5,-16.5 parent: 2 type: Transform - - uid: 8289 + - uid: 1247 components: - pos: -28.5,-17.5 parent: 2 type: Transform - - uid: 8290 + - uid: 1248 components: - pos: -28.5,-18.5 parent: 2 type: Transform - - uid: 8291 + - uid: 1249 components: - pos: -28.5,-19.5 parent: 2 type: Transform - - uid: 8292 + - uid: 1250 components: - pos: -28.5,-20.5 parent: 2 type: Transform - - uid: 8293 + - uid: 1251 components: - pos: -28.5,-21.5 parent: 2 type: Transform - - uid: 8296 + - uid: 1252 components: - pos: -27.5,-18.5 parent: 2 type: Transform - - uid: 8297 + - uid: 1253 components: - pos: -26.5,-18.5 parent: 2 type: Transform - - uid: 8298 + - uid: 1254 components: - pos: -25.5,-18.5 parent: 2 type: Transform - - uid: 8299 + - uid: 1255 components: - pos: -24.5,-18.5 parent: 2 type: Transform - - uid: 8300 + - uid: 1256 components: - pos: -23.5,-18.5 parent: 2 type: Transform - - uid: 8301 + - uid: 1257 components: - pos: -22.5,-18.5 parent: 2 type: Transform - - uid: 8302 + - uid: 1258 components: - pos: -21.5,-18.5 parent: 2 type: Transform - - uid: 8303 + - uid: 1259 components: - pos: -20.5,-18.5 parent: 2 type: Transform - - uid: 8306 + - uid: 1260 components: - pos: -29.5,-20.5 parent: 2 type: Transform - - uid: 8307 + - uid: 1261 components: - pos: -30.5,-20.5 parent: 2 type: Transform - - uid: 8308 + - uid: 1262 components: - pos: -31.5,-20.5 parent: 2 type: Transform - - uid: 8309 + - uid: 1263 components: - pos: -32.5,-20.5 parent: 2 type: Transform - - uid: 8310 + - uid: 1264 components: - pos: -33.5,-20.5 parent: 2 type: Transform - - uid: 8311 + - uid: 1265 components: - pos: -38.5,-15.5 parent: 2 type: Transform - - uid: 8312 + - uid: 1266 components: - pos: -37.5,-15.5 parent: 2 type: Transform - - uid: 8313 + - uid: 1267 components: - pos: -37.5,-16.5 parent: 2 type: Transform - - uid: 8314 + - uid: 1268 components: - pos: -37.5,-17.5 parent: 2 type: Transform - - uid: 8315 + - uid: 1269 components: - pos: -37.5,-18.5 parent: 2 type: Transform - - uid: 8316 + - uid: 1270 components: - pos: -37.5,-19.5 parent: 2 type: Transform - - uid: 8317 + - uid: 1271 components: - pos: -37.5,-20.5 parent: 2 type: Transform - - uid: 8318 + - uid: 1272 components: - pos: -37.5,-21.5 parent: 2 type: Transform - - uid: 8319 + - uid: 1273 components: - pos: -37.5,-22.5 parent: 2 type: Transform - - uid: 8321 + - uid: 1274 components: - pos: -38.5,-20.5 parent: 2 type: Transform - - uid: 8322 + - uid: 1275 components: - pos: -39.5,-20.5 parent: 2 type: Transform - - uid: 8323 + - uid: 1276 components: - pos: -40.5,-20.5 parent: 2 type: Transform - - uid: 8324 + - uid: 1277 components: - pos: -41.5,-20.5 parent: 2 type: Transform - - uid: 8325 + - uid: 1278 components: - pos: -42.5,-20.5 parent: 2 type: Transform - - uid: 8326 + - uid: 1279 components: - pos: -43.5,-20.5 parent: 2 type: Transform - - uid: 8327 + - uid: 1280 components: - pos: -43.5,-19.5 parent: 2 type: Transform - - uid: 8328 + - uid: 1281 components: - pos: -43.5,-18.5 parent: 2 type: Transform - - uid: 8329 + - uid: 1282 components: - pos: -44.5,-18.5 parent: 2 type: Transform - - uid: 8330 + - uid: 1283 components: - pos: -45.5,-18.5 parent: 2 type: Transform - - uid: 8331 + - uid: 1284 components: - pos: -46.5,-18.5 parent: 2 type: Transform - - uid: 8333 + - uid: 1285 components: - pos: 5.5,-25.5 parent: 2 type: Transform - - uid: 8343 + - uid: 1286 components: - pos: 9.5,-13.5 parent: 2 type: Transform - - uid: 8344 + - uid: 1287 components: - pos: 10.5,-14.5 parent: 2 type: Transform - - uid: 8345 + - uid: 1288 components: - pos: -52.5,-7.5 parent: 2 type: Transform - - uid: 8346 + - uid: 1289 components: - pos: -52.5,-8.5 parent: 2 type: Transform - - uid: 8347 + - uid: 1290 components: - pos: -51.5,-8.5 parent: 2 type: Transform - - uid: 8348 + - uid: 1291 components: - pos: -50.5,-8.5 parent: 2 type: Transform - - uid: 8349 + - uid: 1292 components: - pos: -49.5,-8.5 parent: 2 type: Transform - - uid: 8350 + - uid: 1293 components: - pos: -48.5,-8.5 parent: 2 type: Transform - - uid: 8351 + - uid: 1294 components: - pos: -47.5,-8.5 parent: 2 type: Transform - - uid: 8352 + - uid: 1295 components: - pos: -46.5,-8.5 parent: 2 type: Transform - - uid: 8353 + - uid: 1296 components: - pos: -46.5,-9.5 parent: 2 type: Transform - - uid: 8354 + - uid: 1297 components: - pos: -46.5,-10.5 parent: 2 type: Transform - - uid: 8355 + - uid: 1298 components: - pos: -46.5,-11.5 parent: 2 type: Transform - - uid: 8356 + - uid: 1299 components: - pos: -46.5,-12.5 parent: 2 type: Transform - - uid: 8357 + - uid: 1300 components: - pos: -46.5,-13.5 parent: 2 type: Transform - - uid: 8358 + - uid: 1301 components: - pos: -46.5,-14.5 parent: 2 type: Transform - - uid: 8359 + - uid: 1302 components: - pos: -46.5,-7.5 parent: 2 type: Transform - - uid: 8360 + - uid: 1303 components: - pos: -46.5,-6.5 parent: 2 type: Transform - - uid: 8361 + - uid: 1304 components: - pos: -46.5,-5.5 parent: 2 type: Transform - - uid: 8362 + - uid: 1305 components: - pos: -46.5,-4.5 parent: 2 type: Transform - - uid: 8363 + - uid: 1306 components: - pos: -47.5,-4.5 parent: 2 type: Transform - - uid: 8364 + - uid: 1307 components: - pos: -48.5,-4.5 parent: 2 type: Transform - - uid: 8365 + - uid: 1308 components: - pos: -49.5,-4.5 parent: 2 type: Transform - - uid: 8366 + - uid: 1309 components: - pos: -53.5,-8.5 parent: 2 type: Transform - - uid: 8367 + - uid: 1310 components: - pos: -54.5,-8.5 parent: 2 type: Transform - - uid: 8368 + - uid: 1311 components: - pos: -55.5,-8.5 parent: 2 type: Transform - - uid: 8369 + - uid: 1312 components: - pos: -56.5,-8.5 parent: 2 type: Transform - - uid: 8370 + - uid: 1313 components: - pos: -56.5,-7.5 parent: 2 type: Transform - - uid: 8371 + - uid: 1314 components: - pos: -57.5,-7.5 parent: 2 type: Transform - - uid: 8372 + - uid: 1315 components: - pos: -58.5,-7.5 parent: 2 type: Transform - - uid: 8373 + - uid: 1316 components: - pos: -59.5,-7.5 parent: 2 type: Transform - - uid: 8374 + - uid: 1317 components: - pos: -56.5,-6.5 parent: 2 type: Transform - - uid: 8375 + - uid: 1318 components: - pos: -56.5,-5.5 parent: 2 type: Transform - - uid: 8376 + - uid: 1319 components: - pos: -56.5,-4.5 parent: 2 type: Transform - - uid: 8377 + - uid: 1320 components: - pos: -56.5,-3.5 parent: 2 type: Transform - - uid: 8378 + - uid: 1321 components: - pos: -56.5,-2.5 parent: 2 type: Transform - - uid: 8379 + - uid: 1322 components: - pos: -56.5,-1.5 parent: 2 type: Transform - - uid: 8380 + - uid: 1323 components: - pos: -56.5,-0.5 parent: 2 type: Transform - - uid: 8381 + - uid: 1324 components: - pos: -56.5,0.5 parent: 2 type: Transform - - uid: 8382 + - uid: 1325 components: - pos: -57.5,0.5 parent: 2 type: Transform - - uid: 8383 + - uid: 1326 components: - pos: -58.5,0.5 parent: 2 type: Transform - - uid: 8384 + - uid: 1327 components: - pos: -59.5,0.5 parent: 2 type: Transform - - uid: 8385 + - uid: 1328 components: - pos: -55.5,0.5 parent: 2 type: Transform - - uid: 8386 + - uid: 1329 components: - pos: -54.5,0.5 parent: 2 type: Transform - - uid: 8387 + - uid: 1330 components: - pos: -53.5,0.5 parent: 2 type: Transform - - uid: 8388 + - uid: 1331 components: - pos: -52.5,0.5 parent: 2 type: Transform - - uid: 8389 + - uid: 1332 components: - pos: -51.5,0.5 parent: 2 type: Transform - - uid: 8390 + - uid: 1333 components: - pos: -50.5,0.5 parent: 2 type: Transform - - uid: 8391 + - uid: 1334 components: - pos: -51.5,1.5 parent: 2 type: Transform - - uid: 8392 + - uid: 1335 components: - pos: -51.5,2.5 parent: 2 type: Transform - - uid: 8393 + - uid: 1336 components: - pos: 5.5,-16.5 parent: 2 type: Transform - - uid: 8394 + - uid: 1337 components: - pos: 19.5,-33.5 parent: 2 type: Transform - - uid: 8395 + - uid: 1338 components: - pos: 20.5,-27.5 parent: 2 type: Transform - - uid: 8402 + - uid: 1339 components: - pos: 10.5,-13.5 parent: 2 type: Transform - - uid: 8403 + - uid: 1340 components: - pos: -55.5,-2.5 parent: 2 type: Transform - - uid: 8404 + - uid: 1341 components: - pos: -54.5,-2.5 parent: 2 type: Transform - - uid: 8405 + - uid: 1342 components: - pos: -53.5,-2.5 parent: 2 type: Transform - - uid: 8411 + - uid: 1343 components: - pos: -56.5,-9.5 parent: 2 type: Transform - - uid: 8412 + - uid: 1344 components: - pos: -56.5,-10.5 parent: 2 type: Transform - - uid: 8413 + - uid: 1345 components: - pos: -56.5,-11.5 parent: 2 type: Transform - - uid: 8414 + - uid: 1346 components: - pos: -56.5,-12.5 parent: 2 type: Transform - - uid: 8415 + - uid: 1347 components: - pos: -56.5,-13.5 parent: 2 type: Transform - - uid: 8416 + - uid: 1348 components: - pos: -56.5,-14.5 parent: 2 type: Transform - - uid: 8417 + - uid: 1349 components: - pos: -57.5,-14.5 parent: 2 type: Transform - - uid: 8418 + - uid: 1350 components: - pos: -58.5,-14.5 parent: 2 type: Transform - - uid: 8419 + - uid: 1351 components: - pos: -55.5,-14.5 parent: 2 type: Transform - - uid: 8420 + - uid: 1352 components: - pos: -54.5,-14.5 parent: 2 type: Transform - - uid: 8421 + - uid: 1353 components: - pos: -53.5,-14.5 parent: 2 type: Transform - - uid: 8422 + - uid: 1354 components: - pos: -52.5,-14.5 parent: 2 type: Transform - - uid: 8423 + - uid: 1355 components: - pos: -51.5,-14.5 parent: 2 type: Transform - - uid: 8424 + - uid: 1356 components: - pos: -50.5,-14.5 parent: 2 type: Transform - - uid: 8425 + - uid: 1357 components: - pos: -49.5,-14.5 parent: 2 type: Transform - - uid: 8426 + - uid: 1358 components: - pos: -52.5,-15.5 parent: 2 type: Transform - - uid: 8427 + - uid: 1359 components: - pos: -55.5,-15.5 parent: 2 type: Transform - - uid: 8428 + - uid: 1360 components: - pos: -58.5,-15.5 parent: 2 type: Transform - - uid: 8429 + - uid: 1361 components: - pos: -49.5,-15.5 parent: 2 type: Transform - - uid: 8468 + - uid: 1362 components: - pos: -29.5,-14.5 parent: 2 type: Transform - - uid: 8469 + - uid: 1363 components: - pos: -30.5,-14.5 parent: 2 type: Transform - - uid: 8472 + - uid: 1364 components: - pos: -31.5,-14.5 parent: 2 type: Transform - - uid: 8494 + - uid: 1365 components: - pos: -39.5,-9.5 parent: 2 type: Transform - - uid: 8500 + - uid: 1366 components: - pos: -35.5,-9.5 parent: 2 type: Transform - - uid: 8513 + - uid: 1367 components: - pos: -40.5,-9.5 parent: 2 type: Transform - - uid: 8514 + - uid: 1368 components: - pos: -41.5,-9.5 parent: 2 type: Transform - - uid: 8517 + - uid: 1369 components: - pos: -42.5,-9.5 parent: 2 type: Transform - - uid: 8617 + - uid: 1370 components: - pos: -22.5,-9.5 parent: 2 type: Transform - - uid: 8618 + - uid: 1371 components: - pos: -22.5,-10.5 parent: 2 type: Transform - - uid: 8619 + - uid: 1372 components: - pos: -22.5,-11.5 parent: 2 type: Transform - - uid: 8620 + - uid: 1373 components: - pos: -22.5,-12.5 parent: 2 type: Transform - - uid: 8621 + - uid: 1374 components: - pos: -22.5,-13.5 parent: 2 type: Transform - - uid: 8622 + - uid: 1375 components: - pos: -22.5,-14.5 parent: 2 type: Transform - - uid: 8623 + - uid: 1376 components: - pos: -22.5,-15.5 parent: 2 type: Transform - - uid: 8624 + - uid: 1377 components: - pos: -21.5,-14.5 parent: 2 type: Transform - - uid: 8625 + - uid: 1378 components: - pos: -21.5,-15.5 parent: 2 type: Transform - - uid: 8626 + - uid: 1379 components: - pos: -15.5,-13.5 parent: 2 type: Transform - - uid: 8627 + - uid: 1380 components: - pos: -15.5,-14.5 parent: 2 type: Transform - - uid: 8628 + - uid: 1381 components: - pos: -15.5,-12.5 parent: 2 type: Transform - - uid: 8629 + - uid: 1382 components: - pos: -14.5,-12.5 parent: 2 type: Transform - - uid: 8630 + - uid: 1383 components: - pos: -13.5,-12.5 parent: 2 type: Transform - - uid: 8631 + - uid: 1384 components: - pos: -12.5,-12.5 parent: 2 type: Transform - - uid: 8632 + - uid: 1385 components: - pos: -11.5,-12.5 parent: 2 type: Transform - - uid: 8633 + - uid: 1386 components: - pos: -10.5,-12.5 parent: 2 type: Transform - - uid: 8634 + - uid: 1387 components: - pos: -9.5,-12.5 parent: 2 type: Transform - - uid: 8635 + - uid: 1388 components: - pos: -8.5,-12.5 parent: 2 type: Transform - - uid: 8636 + - uid: 1389 components: - pos: -7.5,-12.5 parent: 2 type: Transform - - uid: 8637 + - uid: 1390 components: - pos: -6.5,-12.5 parent: 2 type: Transform - - uid: 8638 + - uid: 1391 components: - pos: -11.5,-6.5 parent: 2 type: Transform - - uid: 8639 + - uid: 1392 components: - pos: -10.5,-6.5 parent: 2 type: Transform - - uid: 8640 + - uid: 1393 components: - pos: -9.5,-6.5 parent: 2 type: Transform - - uid: 8641 + - uid: 1394 components: - pos: -8.5,-6.5 parent: 2 type: Transform - - uid: 8642 + - uid: 1395 components: - pos: -8.5,-5.5 parent: 2 type: Transform - - uid: 8643 + - uid: 1396 components: - pos: 0.5,-14.5 parent: 2 type: Transform - - uid: 8644 + - uid: 1397 components: - pos: -8.5,-4.5 parent: 2 type: Transform - - uid: 8645 + - uid: 1398 components: - pos: -8.5,-3.5 parent: 2 type: Transform - - uid: 8646 + - uid: 1399 components: - pos: -9.5,-4.5 parent: 2 type: Transform - - uid: 8647 + - uid: 1400 components: - pos: -10.5,-4.5 parent: 2 type: Transform - - uid: 8648 + - uid: 1401 components: - pos: -11.5,-4.5 parent: 2 type: Transform - - uid: 8649 + - uid: 1402 components: - pos: -12.5,-4.5 parent: 2 type: Transform - - uid: 8650 + - uid: 1403 components: - pos: -1.5,-12.5 parent: 2 type: Transform - - uid: 8651 + - uid: 1404 components: - pos: -8.5,-7.5 parent: 2 type: Transform - - uid: 8652 + - uid: 1405 components: - pos: -8.5,-8.5 parent: 2 type: Transform - - uid: 8653 + - uid: 1406 components: - pos: -2.5,-12.5 parent: 2 type: Transform - - uid: 8654 + - uid: 1407 components: - pos: -9.5,-8.5 parent: 2 type: Transform - - uid: 8655 + - uid: 1408 components: - pos: -10.5,-8.5 parent: 2 type: Transform - - uid: 8656 + - uid: 1409 components: - pos: -11.5,-8.5 parent: 2 type: Transform - - uid: 8657 + - uid: 1410 components: - pos: -12.5,-8.5 parent: 2 type: Transform - - uid: 8658 + - uid: 1411 components: - pos: -8.5,-9.5 parent: 2 type: Transform - - uid: 8659 + - uid: 1412 components: - pos: -0.5,-12.5 parent: 2 type: Transform - - uid: 8660 + - uid: 1413 components: - pos: -7.5,-9.5 parent: 2 type: Transform - - uid: 8661 + - uid: 1414 components: - pos: -6.5,-9.5 parent: 2 type: Transform - - uid: 8662 + - uid: 1415 components: - pos: -5.5,-9.5 parent: 2 type: Transform - - uid: 8663 + - uid: 1416 components: - pos: -4.5,-9.5 parent: 2 type: Transform - - uid: 8664 + - uid: 1417 components: - pos: -7.5,-6.5 parent: 2 type: Transform - - uid: 8665 + - uid: 1418 components: - pos: -4.5,-8.5 parent: 2 type: Transform - - uid: 8666 + - uid: 1419 components: - pos: -4.5,-7.5 parent: 2 type: Transform - - uid: 8667 + - uid: 1420 components: - pos: -4.5,-6.5 parent: 2 type: Transform - - uid: 8668 + - uid: 1421 components: - pos: -4.5,-5.5 parent: 2 type: Transform - - uid: 8669 + - uid: 1422 components: - pos: -4.5,-4.5 parent: 2 type: Transform - - uid: 8670 + - uid: 1423 components: - pos: -4.5,-3.5 parent: 2 type: Transform - - uid: 8671 + - uid: 1424 components: - pos: -5.5,-3.5 parent: 2 type: Transform - - uid: 8672 + - uid: 1425 components: - pos: -6.5,-3.5 parent: 2 type: Transform - - uid: 8673 + - uid: 1426 components: - pos: -7.5,-3.5 parent: 2 type: Transform - - uid: 8674 + - uid: 1427 components: - pos: 1.5,2.5 parent: 2 type: Transform - - uid: 8675 + - uid: 1428 components: - pos: 0.5,-11.5 parent: 2 type: Transform - - uid: 8676 + - uid: 1429 components: - pos: 0.5,-12.5 parent: 2 type: Transform - - uid: 8677 + - uid: 1430 components: - pos: 1.5,-15.5 parent: 2 type: Transform - - uid: 8678 + - uid: 1431 components: - pos: 0.5,-13.5 parent: 2 type: Transform - - uid: 8679 + - uid: 1432 components: - pos: 1.5,-14.5 parent: 2 type: Transform - - uid: 8680 + - uid: 1433 components: - pos: 1.5,-16.5 parent: 2 type: Transform - - uid: 8681 + - uid: 1434 components: - pos: 1.5,-17.5 parent: 2 type: Transform - - uid: 8682 + - uid: 1435 components: - pos: 1.5,-18.5 parent: 2 type: Transform - - uid: 8683 + - uid: 1436 components: - pos: 1.5,-19.5 parent: 2 type: Transform - - uid: 8684 + - uid: 1437 components: - pos: 2.5,-19.5 parent: 2 type: Transform - - uid: 8685 + - uid: 1438 components: - pos: 3.5,-19.5 parent: 2 type: Transform - - uid: 8686 + - uid: 1439 components: - pos: 4.5,-19.5 parent: 2 type: Transform - - uid: 8687 + - uid: 1440 components: - pos: 5.5,-19.5 parent: 2 type: Transform - - uid: 8688 + - uid: 1441 components: - pos: 6.5,-19.5 parent: 2 type: Transform - - uid: 8689 + - uid: 1442 components: - pos: 6.5,-20.5 parent: 2 type: Transform - - uid: 8693 + - uid: 1443 components: - pos: -0.5,-11.5 parent: 2 type: Transform - - uid: 8694 + - uid: 1444 components: - pos: -0.5,-10.5 parent: 2 type: Transform - - uid: 8695 + - uid: 1445 components: - pos: -0.5,-9.5 parent: 2 type: Transform - - uid: 8696 + - uid: 1446 components: - pos: -0.5,-8.5 parent: 2 type: Transform - - uid: 8697 + - uid: 1447 components: - pos: -0.5,-7.5 parent: 2 type: Transform - - uid: 8698 + - uid: 1448 components: - pos: -0.5,-6.5 parent: 2 type: Transform - - uid: 8699 + - uid: 1449 components: - pos: -0.5,-5.5 parent: 2 type: Transform - - uid: 8700 + - uid: 1450 components: - pos: 5.5,1.5 parent: 2 type: Transform - - uid: 8701 + - uid: 1451 components: - pos: 5.5,2.5 parent: 2 type: Transform - - uid: 8703 + - uid: 1452 components: - pos: 4.5,1.5 parent: 2 type: Transform - - uid: 8704 + - uid: 1453 components: - pos: 3.5,1.5 parent: 2 type: Transform - - uid: 8705 + - uid: 1454 components: - pos: 2.5,1.5 parent: 2 type: Transform - - uid: 8706 + - uid: 1455 components: - pos: 1.5,1.5 parent: 2 type: Transform - - uid: 8707 + - uid: 1456 components: - pos: 1.5,3.5 parent: 2 type: Transform - - uid: 8708 + - uid: 1457 components: - pos: 0.5,3.5 parent: 2 type: Transform - - uid: 8709 + - uid: 1458 components: - pos: -0.5,3.5 parent: 2 type: Transform - - uid: 8710 + - uid: 1459 components: - pos: -0.5,2.5 parent: 2 type: Transform - - uid: 8711 + - uid: 1460 components: - pos: -0.5,1.5 parent: 2 type: Transform - - uid: 8712 + - uid: 1461 components: - pos: -0.5,0.5 parent: 2 type: Transform - - uid: 8713 + - uid: 1462 components: - pos: -0.5,-0.5 parent: 2 type: Transform - - uid: 8714 + - uid: 1463 components: - pos: -0.5,-1.5 parent: 2 type: Transform - - uid: 8715 + - uid: 1464 components: - pos: -0.5,-2.5 parent: 2 type: Transform - - uid: 8716 + - uid: 1465 components: - pos: 0.5,-2.5 parent: 2 type: Transform - - uid: 8718 + - uid: 1466 components: - pos: 1.5,-2.5 parent: 2 type: Transform - - uid: 8719 + - uid: 1467 components: - pos: 1.5,-1.5 parent: 2 type: Transform - - uid: 8720 + - uid: 1468 components: - pos: 1.5,-0.5 parent: 2 type: Transform - - uid: 8721 + - uid: 1469 components: - pos: 1.5,0.5 parent: 2 type: Transform - - uid: 8722 + - uid: 1470 components: - pos: 5.5,-0.5 parent: 2 type: Transform - - uid: 8724 + - uid: 1471 components: - pos: 13.5,1.5 parent: 2 type: Transform - - uid: 8725 + - uid: 1472 components: - pos: 5.5,0.5 parent: 2 type: Transform - - uid: 8726 + - uid: 1473 components: - pos: 6.5,0.5 parent: 2 type: Transform - - uid: 8727 + - uid: 1474 components: - pos: 7.5,0.5 parent: 2 type: Transform - - uid: 8728 + - uid: 1475 components: - pos: 8.5,0.5 parent: 2 type: Transform - - uid: 8729 + - uid: 1476 components: - pos: 9.5,0.5 parent: 2 type: Transform - - uid: 8730 + - uid: 1477 components: - pos: 10.5,0.5 parent: 2 type: Transform - - uid: 8731 + - uid: 1478 components: - pos: 11.5,0.5 parent: 2 type: Transform - - uid: 8732 + - uid: 1479 components: - pos: 12.5,0.5 parent: 2 type: Transform - - uid: 8733 + - uid: 1480 components: - pos: 13.5,0.5 parent: 2 type: Transform - - uid: 8734 + - uid: 1481 components: - pos: 14.5,0.5 parent: 2 type: Transform - - uid: 8735 + - uid: 1482 components: - pos: 14.5,-0.5 parent: 2 type: Transform - - uid: 8737 + - uid: 1483 components: - pos: 11.5,-0.5 parent: 2 type: Transform - - uid: 8741 + - uid: 1484 components: - pos: 22.5,-5.5 parent: 2 type: Transform - - uid: 8742 + - uid: 1485 components: - pos: 21.5,-5.5 parent: 2 type: Transform - - uid: 8743 + - uid: 1486 components: - pos: 20.5,-5.5 parent: 2 type: Transform - - uid: 8744 + - uid: 1487 components: - pos: 19.5,-5.5 parent: 2 type: Transform - - uid: 8746 + - uid: 1488 components: - pos: 18.5,-5.5 parent: 2 type: Transform - - uid: 8747 + - uid: 1489 components: - pos: 18.5,-4.5 parent: 2 type: Transform - - uid: 8751 + - uid: 1490 components: - pos: 23.5,-5.5 parent: 2 type: Transform - - uid: 8753 + - uid: 1491 components: - pos: 24.5,-5.5 parent: 2 type: Transform - - uid: 8754 + - uid: 1492 components: - pos: 24.5,-4.5 parent: 2 type: Transform - - uid: 8755 + - uid: 1493 components: - pos: 24.5,-3.5 parent: 2 type: Transform - - uid: 8756 + - uid: 1494 components: - pos: 24.5,-2.5 parent: 2 type: Transform - - uid: 8757 + - uid: 1495 components: - pos: 24.5,-1.5 parent: 2 type: Transform - - uid: 8758 + - uid: 1496 components: - pos: 24.5,-0.5 parent: 2 type: Transform - - uid: 8759 + - uid: 1497 components: - pos: 24.5,0.5 parent: 2 type: Transform - - uid: 8760 + - uid: 1498 components: - pos: 23.5,0.5 parent: 2 type: Transform - - uid: 8761 + - uid: 1499 components: - pos: 22.5,0.5 parent: 2 type: Transform - - uid: 8762 + - uid: 1500 components: - pos: 21.5,0.5 parent: 2 type: Transform - - uid: 8763 + - uid: 1501 components: - pos: 20.5,0.5 parent: 2 type: Transform - - uid: 8764 + - uid: 1502 components: - pos: 19.5,0.5 parent: 2 type: Transform - - uid: 8765 + - uid: 1503 components: - pos: 18.5,0.5 parent: 2 type: Transform - - uid: 8766 + - uid: 1504 components: - pos: 25.5,-4.5 parent: 2 type: Transform - - uid: 8773 + - uid: 1505 components: - pos: 31.5,-7.5 parent: 2 type: Transform - - uid: 8774 + - uid: 1506 components: - pos: 31.5,-8.5 parent: 2 type: Transform - - uid: 8775 + - uid: 1507 components: - pos: 31.5,-9.5 parent: 2 type: Transform - - uid: 8776 + - uid: 1508 components: - pos: 31.5,-10.5 parent: 2 type: Transform - - uid: 8777 + - uid: 1509 components: - pos: 31.5,-11.5 parent: 2 type: Transform - - uid: 8779 + - uid: 1510 components: - pos: 32.5,-11.5 parent: 2 type: Transform - - uid: 8780 + - uid: 1511 components: - pos: 33.5,-11.5 parent: 2 type: Transform - - uid: 8781 + - uid: 1512 components: - pos: 34.5,-11.5 parent: 2 type: Transform - - uid: 8782 + - uid: 1513 components: - pos: 31.5,-3.5 parent: 2 type: Transform - - uid: 8783 + - uid: 1514 components: - pos: 30.5,-11.5 parent: 2 type: Transform - - uid: 8784 + - uid: 1515 components: - pos: 32.5,-8.5 parent: 2 type: Transform - - uid: 8785 + - uid: 1516 components: - pos: 33.5,-8.5 parent: 2 type: Transform - - uid: 8786 + - uid: 1517 components: - pos: 34.5,-8.5 parent: 2 type: Transform - - uid: 8788 + - uid: 1518 components: - pos: 30.5,-8.5 parent: 2 type: Transform - - uid: 8790 + - uid: 1519 components: - pos: 31.5,-6.5 parent: 2 type: Transform - - uid: 8791 + - uid: 1520 components: - pos: 31.5,-5.5 parent: 2 type: Transform - - uid: 8792 + - uid: 1521 components: - pos: 31.5,-4.5 parent: 2 type: Transform - - uid: 8793 + - uid: 1522 components: - pos: 30.5,-4.5 parent: 2 type: Transform - - uid: 8794 + - uid: 1523 components: - pos: 29.5,-4.5 parent: 2 type: Transform - - uid: 8795 + - uid: 1524 components: - pos: 29.5,-5.5 parent: 2 type: Transform - - uid: 8796 + - uid: 1525 components: - pos: 29.5,-3.5 parent: 2 type: Transform - - uid: 8797 + - uid: 1526 components: - pos: 32.5,-4.5 parent: 2 type: Transform - - uid: 8798 + - uid: 1527 components: - pos: 33.5,-4.5 parent: 2 type: Transform - - uid: 8799 + - uid: 1528 components: - pos: 34.5,-4.5 parent: 2 type: Transform - - uid: 8801 + - uid: 1529 components: - pos: 34.5,-3.5 parent: 2 type: Transform - - uid: 8802 + - uid: 1530 components: - pos: 34.5,-5.5 parent: 2 type: Transform - - uid: 8803 + - uid: 1531 components: - pos: 32.5,-3.5 parent: 2 type: Transform - - uid: 8804 + - uid: 1532 components: - pos: 31.5,-2.5 parent: 2 type: Transform - - uid: 8805 + - uid: 1533 components: - pos: 31.5,-1.5 parent: 2 type: Transform - - uid: 8806 + - uid: 1534 components: - pos: 31.5,-0.5 parent: 2 type: Transform - - uid: 8807 + - uid: 1535 components: - pos: 31.5,0.5 parent: 2 type: Transform - - uid: 8808 + - uid: 1536 components: - pos: 30.5,0.5 parent: 2 type: Transform - - uid: 8809 + - uid: 1537 components: - pos: 29.5,0.5 parent: 2 type: Transform - - uid: 8810 + - uid: 1538 components: - pos: 28.5,0.5 parent: 2 type: Transform - - uid: 8811 + - uid: 1539 components: - pos: 27.5,0.5 parent: 2 type: Transform - - uid: 8812 + - uid: 1540 components: - pos: 32.5,0.5 parent: 2 type: Transform - - uid: 8813 + - uid: 1541 components: - pos: 33.5,0.5 parent: 2 type: Transform - - uid: 8814 + - uid: 1542 components: - pos: 34.5,0.5 parent: 2 type: Transform - - uid: 8815 + - uid: 1543 components: - pos: 35.5,0.5 parent: 2 type: Transform - - uid: 8816 + - uid: 1544 components: - pos: 36.5,0.5 parent: 2 type: Transform - - uid: 8817 + - uid: 1545 components: - pos: 37.5,0.5 parent: 2 type: Transform - - uid: 8818 + - uid: 1546 components: - pos: 38.5,0.5 parent: 2 type: Transform - - uid: 8828 + - uid: 1547 components: - pos: 38.5,-0.5 parent: 2 type: Transform - - uid: 8829 + - uid: 1548 components: - pos: 38.5,-1.5 parent: 2 type: Transform - - uid: 8830 + - uid: 1549 components: - pos: 38.5,-2.5 parent: 2 type: Transform - - uid: 8831 + - uid: 1550 components: - pos: 38.5,-3.5 parent: 2 type: Transform - - uid: 8832 + - uid: 1551 components: - pos: 38.5,-4.5 parent: 2 type: Transform - - uid: 8833 + - uid: 1552 components: - pos: 38.5,-5.5 parent: 2 type: Transform - - uid: 8834 + - uid: 1553 components: - pos: 39.5,-2.5 parent: 2 type: Transform - - uid: 8835 + - uid: 1554 components: - pos: 40.5,-2.5 parent: 2 type: Transform - - uid: 8836 + - uid: 1555 components: - pos: 41.5,-2.5 parent: 2 type: Transform - - uid: 8837 + - uid: 1556 components: - pos: 42.5,-2.5 parent: 2 type: Transform - - uid: 8840 + - uid: 1557 components: - pos: 37.5,-5.5 parent: 2 type: Transform - - uid: 8841 + - uid: 1558 components: - pos: 36.5,-5.5 parent: 2 type: Transform - - uid: 8842 + - uid: 1559 components: - pos: 35.5,-5.5 parent: 2 type: Transform - - uid: 8844 + - uid: 1560 components: - pos: 39.5,0.5 parent: 2 type: Transform - - uid: 8847 + - uid: 1561 components: - pos: 38.5,9.5 parent: 2 type: Transform - - uid: 8848 + - uid: 1562 components: - pos: 37.5,9.5 parent: 2 type: Transform - - uid: 8851 + - uid: 1563 components: - pos: 37.5,10.5 parent: 2 type: Transform - - uid: 8852 + - uid: 1564 components: - pos: 37.5,11.5 parent: 2 type: Transform - - uid: 8854 + - uid: 1565 components: - pos: 36.5,11.5 parent: 2 type: Transform - - uid: 8855 + - uid: 1566 components: - pos: 35.5,11.5 parent: 2 type: Transform - - uid: 8856 + - uid: 1567 components: - pos: 34.5,11.5 parent: 2 type: Transform - - uid: 8857 + - uid: 1568 components: - pos: 33.5,11.5 parent: 2 type: Transform - - uid: 8858 + - uid: 1569 components: - pos: 32.5,11.5 parent: 2 type: Transform - - uid: 8859 + - uid: 1570 components: - pos: 31.5,11.5 parent: 2 type: Transform - - uid: 8860 + - uid: 1571 components: - pos: 30.5,11.5 parent: 2 type: Transform - - uid: 8861 + - uid: 1572 components: - pos: 30.5,10.5 parent: 2 type: Transform - - uid: 8862 + - uid: 1573 components: - pos: 30.5,9.5 parent: 2 type: Transform - - uid: 8863 + - uid: 1574 components: - pos: 30.5,8.5 parent: 2 type: Transform - - uid: 8864 + - uid: 1575 components: - pos: 30.5,7.5 parent: 2 type: Transform - - uid: 8865 + - uid: 1576 components: - pos: 30.5,6.5 parent: 2 type: Transform - - uid: 8866 + - uid: 1577 components: - pos: 30.5,5.5 parent: 2 type: Transform - - uid: 8867 + - uid: 1578 components: - pos: 30.5,4.5 parent: 2 type: Transform - - uid: 8868 + - uid: 1579 components: - pos: 30.5,12.5 parent: 2 type: Transform - - uid: 8869 + - uid: 1580 components: - pos: 31.5,4.5 parent: 2 type: Transform - - uid: 8870 + - uid: 1581 components: - pos: 32.5,4.5 parent: 2 type: Transform - - uid: 8871 + - uid: 1582 components: - pos: 33.5,4.5 parent: 2 type: Transform - - uid: 8872 + - uid: 1583 components: - pos: 34.5,4.5 parent: 2 type: Transform - - uid: 8873 + - uid: 1584 components: - pos: 35.5,4.5 parent: 2 type: Transform - - uid: 8874 + - uid: 1585 components: - pos: 36.5,4.5 parent: 2 type: Transform - - uid: 8875 + - uid: 1586 components: - pos: 37.5,4.5 parent: 2 type: Transform - - uid: 8876 + - uid: 1587 components: - pos: 31.5,15.5 parent: 2 type: Transform - - uid: 8877 + - uid: 1588 components: - pos: 37.5,5.5 parent: 2 type: Transform - - uid: 8878 + - uid: 1589 components: - pos: 37.5,6.5 parent: 2 type: Transform - - uid: 8879 + - uid: 1590 components: - pos: 37.5,7.5 parent: 2 type: Transform - - uid: 8880 + - uid: 1591 components: - pos: 37.5,8.5 parent: 2 type: Transform - - uid: 8890 + - uid: 1592 components: - pos: 30.5,13.5 parent: 2 type: Transform - - uid: 8891 + - uid: 1593 components: - pos: 30.5,14.5 parent: 2 type: Transform - - uid: 8892 + - uid: 1594 components: - pos: 30.5,15.5 parent: 2 type: Transform - - uid: 8893 + - uid: 1595 components: - pos: 32.5,15.5 parent: 2 type: Transform - - uid: 8894 + - uid: 1596 components: - pos: 31.5,8.5 parent: 2 type: Transform - - uid: 8895 + - uid: 1597 components: - pos: 36.5,8.5 parent: 2 type: Transform - - uid: 8897 + - uid: 1598 components: - pos: 33.5,5.5 parent: 2 type: Transform - - uid: 8899 + - uid: 1599 components: - pos: 34.5,10.5 parent: 2 type: Transform - - uid: 8900 + - uid: 1600 components: - pos: 20.5,14.5 parent: 2 type: Transform - - uid: 8901 + - uid: 1601 components: - pos: 21.5,14.5 parent: 2 type: Transform - - uid: 8902 + - uid: 1602 components: - pos: 21.5,13.5 parent: 2 type: Transform - - uid: 8903 + - uid: 1603 components: - pos: 21.5,12.5 parent: 2 type: Transform - - uid: 8904 + - uid: 1604 components: - pos: 21.5,11.5 parent: 2 type: Transform - - uid: 8905 + - uid: 1605 components: - pos: 21.5,10.5 parent: 2 type: Transform - - uid: 8907 + - uid: 1606 components: - pos: 22.5,13.5 parent: 2 type: Transform - - uid: 8908 + - uid: 1607 components: - pos: 23.5,13.5 parent: 2 type: Transform - - uid: 8909 + - uid: 1608 components: - pos: 24.5,13.5 parent: 2 type: Transform - - uid: 8910 + - uid: 1609 components: - pos: 25.5,13.5 parent: 2 type: Transform - - uid: 8911 + - uid: 1610 components: - pos: 26.5,13.5 parent: 2 type: Transform - - uid: 8912 + - uid: 1611 components: - pos: 26.5,14.5 parent: 2 type: Transform - - uid: 8913 + - uid: 1612 components: - pos: 26.5,15.5 parent: 2 type: Transform - - uid: 8914 + - uid: 1613 components: - pos: 26.5,12.5 parent: 2 type: Transform - - uid: 8916 + - uid: 1614 components: - pos: 27.5,14.5 parent: 2 type: Transform - - uid: 8917 + - uid: 1615 components: - pos: 27.5,15.5 parent: 2 type: Transform - - uid: 8924 + - uid: 1616 components: - pos: 22.5,14.5 parent: 2 type: Transform - - uid: 8925 + - uid: 1617 components: - pos: 22.5,15.5 parent: 2 type: Transform - - uid: 8927 + - uid: 1618 components: - pos: 22.5,16.5 parent: 2 type: Transform - - uid: 8929 + - uid: 1619 components: - pos: 21.5,27.5 parent: 2 type: Transform - - uid: 8930 + - uid: 1620 components: - pos: 21.5,26.5 parent: 2 type: Transform - - uid: 8931 + - uid: 1621 components: - pos: 21.5,25.5 parent: 2 type: Transform - - uid: 8932 + - uid: 1622 components: - pos: 21.5,24.5 parent: 2 type: Transform - - uid: 8933 + - uid: 1623 components: - pos: 21.5,23.5 parent: 2 type: Transform - - uid: 8934 + - uid: 1624 components: - pos: 21.5,22.5 parent: 2 type: Transform - - uid: 8936 + - uid: 1625 components: - pos: 22.5,22.5 parent: 2 type: Transform - - uid: 8937 + - uid: 1626 components: - pos: 23.5,22.5 parent: 2 type: Transform - - uid: 8938 + - uid: 1627 components: - pos: 24.5,22.5 parent: 2 type: Transform - - uid: 8939 + - uid: 1628 components: - pos: 25.5,22.5 parent: 2 type: Transform - - uid: 8940 + - uid: 1629 components: - pos: 26.5,22.5 parent: 2 type: Transform - - uid: 8941 + - uid: 1630 components: - pos: 26.5,21.5 parent: 2 type: Transform - - uid: 8942 + - uid: 1631 components: - pos: 26.5,20.5 parent: 2 type: Transform - - uid: 8943 + - uid: 1632 components: - pos: 26.5,19.5 parent: 2 type: Transform - - uid: 8944 + - uid: 1633 components: - pos: 27.5,19.5 parent: 2 type: Transform - - uid: 8945 + - uid: 1634 components: - pos: 28.5,19.5 parent: 2 type: Transform - - uid: 8946 + - uid: 1635 components: - pos: 28.5,20.5 parent: 2 type: Transform - - uid: 8947 + - uid: 1636 components: - pos: 28.5,21.5 parent: 2 type: Transform - - uid: 8948 + - uid: 1637 components: - pos: 28.5,22.5 parent: 2 type: Transform - - uid: 8949 + - uid: 1638 components: - pos: 27.5,22.5 parent: 2 type: Transform - - uid: 8953 + - uid: 1639 components: - pos: 20.5,24.5 parent: 2 type: Transform - - uid: 8954 + - uid: 1640 components: - pos: 22.5,25.5 parent: 2 type: Transform - - uid: 8955 + - uid: 1641 components: - pos: 23.5,25.5 parent: 2 type: Transform - - uid: 8956 + - uid: 1642 components: - pos: 24.5,25.5 parent: 2 type: Transform - - uid: 8957 + - uid: 1643 components: - pos: 22.5,19.5 parent: 2 type: Transform - - uid: 8960 + - uid: 1644 components: - pos: 21.5,19.5 parent: 2 type: Transform - - uid: 8961 + - uid: 1645 components: - pos: 20.5,28.5 parent: 2 type: Transform - - uid: 8962 + - uid: 1646 components: - pos: 21.5,28.5 parent: 2 type: Transform - - uid: 8963 + - uid: 1647 components: - pos: 19.5,28.5 parent: 2 type: Transform - - uid: 8964 + - uid: 1648 components: - pos: 18.5,28.5 parent: 2 type: Transform - - uid: 8966 + - uid: 1649 components: - pos: 22.5,28.5 parent: 2 type: Transform - - uid: 8967 + - uid: 1650 components: - pos: 23.5,28.5 parent: 2 type: Transform - - uid: 8968 + - uid: 1651 components: - pos: 24.5,28.5 parent: 2 type: Transform - - uid: 8969 + - uid: 1652 components: - pos: 25.5,28.5 parent: 2 type: Transform - - uid: 8970 + - uid: 1653 components: - pos: 26.5,28.5 parent: 2 type: Transform - - uid: 8971 + - uid: 1654 components: - pos: 27.5,28.5 parent: 2 type: Transform - - uid: 8972 + - uid: 1655 components: - pos: 28.5,28.5 parent: 2 type: Transform - - uid: 8974 + - uid: 1656 components: - pos: 28.5,27.5 parent: 2 type: Transform - - uid: 8975 + - uid: 1657 components: - pos: 29.5,27.5 parent: 2 type: Transform - - uid: 8976 + - uid: 1658 components: - pos: 30.5,27.5 parent: 2 type: Transform - - uid: 8981 + - uid: 1659 components: - pos: 31.5,16.5 parent: 2 type: Transform - - uid: 8982 + - uid: 1660 components: - pos: 31.5,17.5 parent: 2 type: Transform - - uid: 8984 + - uid: 1661 components: - pos: 31.5,18.5 parent: 2 type: Transform - - uid: 8985 + - uid: 1662 components: - pos: 32.5,18.5 parent: 2 type: Transform - - uid: 8986 + - uid: 1663 components: - pos: 33.5,18.5 parent: 2 type: Transform - - uid: 8987 + - uid: 1664 components: - pos: 34.5,18.5 parent: 2 type: Transform - - uid: 8988 + - uid: 1665 components: - pos: 35.5,18.5 parent: 2 type: Transform - - uid: 8989 + - uid: 1666 components: - pos: 36.5,18.5 parent: 2 type: Transform - - uid: 8991 + - uid: 1667 components: - pos: 36.5,17.5 parent: 2 type: Transform - - uid: 8992 + - uid: 1668 components: - pos: 36.5,16.5 parent: 2 type: Transform - - uid: 8993 + - uid: 1669 components: - pos: 37.5,16.5 parent: 2 type: Transform - - uid: 8994 + - uid: 1670 components: - pos: 38.5,16.5 parent: 2 type: Transform - - uid: 8995 + - uid: 1671 components: - pos: 39.5,16.5 parent: 2 type: Transform - - uid: 8997 + - uid: 1672 components: - pos: 39.5,9.5 parent: 2 type: Transform - - uid: 8999 + - uid: 1673 components: - pos: 41.5,9.5 parent: 2 type: Transform - - uid: 9000 + - uid: 1674 components: - pos: 40.5,9.5 parent: 2 type: Transform - - uid: 9003 + - uid: 1675 components: - pos: 41.5,8.5 parent: 2 type: Transform - - uid: 9004 + - uid: 1676 components: - pos: 41.5,7.5 parent: 2 type: Transform - - uid: 9005 + - uid: 1677 components: - pos: 41.5,6.5 parent: 2 type: Transform - - uid: 9006 + - uid: 1678 components: - pos: 41.5,5.5 parent: 2 type: Transform - - uid: 9007 + - uid: 1679 components: - pos: 41.5,4.5 parent: 2 type: Transform - - uid: 9009 + - uid: 1680 components: - pos: 41.5,10.5 parent: 2 type: Transform - - uid: 9010 + - uid: 1681 components: - pos: 41.5,11.5 parent: 2 type: Transform - - uid: 9011 + - uid: 1682 components: - pos: 41.5,12.5 parent: 2 type: Transform - - uid: 9012 + - uid: 1683 components: - pos: 41.5,13.5 parent: 2 type: Transform - - uid: 9014 + - uid: 1684 components: - pos: 42.5,11.5 parent: 2 type: Transform - - uid: 9015 + - uid: 1685 components: - pos: 43.5,11.5 parent: 2 type: Transform - - uid: 9016 + - uid: 1686 components: - pos: 44.5,11.5 parent: 2 type: Transform - - uid: 9017 + - uid: 1687 components: - pos: 44.5,10.5 parent: 2 type: Transform - - uid: 9020 + - uid: 1688 components: - pos: 44.5,12.5 parent: 2 type: Transform - - uid: 9023 + - uid: 1689 components: - pos: 40.5,13.5 parent: 2 type: Transform - - uid: 9024 + - uid: 1690 components: - pos: 40.5,14.5 parent: 2 type: Transform - - uid: 9025 + - uid: 1691 components: - pos: 40.5,15.5 parent: 2 type: Transform - - uid: 9026 + - uid: 1692 components: - pos: 40.5,16.5 parent: 2 type: Transform - - uid: 9028 + - uid: 1693 components: - pos: 13.5,8.5 parent: 2 type: Transform - - uid: 9030 + - uid: 1694 components: - pos: 13.5,9.5 parent: 2 type: Transform - - uid: 9035 + - uid: 1695 components: - pos: 13.5,7.5 parent: 2 type: Transform - - uid: 9036 + - uid: 1696 components: - pos: 12.5,7.5 parent: 2 type: Transform - - uid: 9037 + - uid: 1697 components: - pos: 11.5,7.5 parent: 2 type: Transform - - uid: 9038 + - uid: 1698 components: - pos: 10.5,7.5 parent: 2 type: Transform - - uid: 9039 + - uid: 1699 components: - pos: 9.5,7.5 parent: 2 type: Transform - - uid: 9040 + - uid: 1700 components: - pos: 8.5,7.5 parent: 2 type: Transform - - uid: 9041 + - uid: 1701 components: - pos: 7.5,7.5 parent: 2 type: Transform - - uid: 9042 + - uid: 1702 components: - pos: 7.5,8.5 parent: 2 type: Transform - - uid: 9043 + - uid: 1703 components: - pos: 7.5,9.5 parent: 2 type: Transform - - uid: 9044 + - uid: 1704 components: - pos: 7.5,10.5 parent: 2 type: Transform - - uid: 9045 + - uid: 1705 components: - pos: 7.5,11.5 parent: 2 type: Transform - - uid: 9046 + - uid: 1706 components: - pos: 8.5,11.5 parent: 2 type: Transform - - uid: 9047 + - uid: 1707 components: - pos: 9.5,11.5 parent: 2 type: Transform - - uid: 9048 + - uid: 1708 components: - pos: 10.5,11.5 parent: 2 type: Transform - - uid: 9050 + - uid: 1709 components: - pos: 13.5,6.5 parent: 2 type: Transform - - uid: 9051 + - uid: 1710 components: - pos: 20.5,-46.5 parent: 2 type: Transform - - uid: 9052 + - uid: 1711 components: - pos: 13.5,5.5 parent: 2 type: Transform - - uid: 9053 + - uid: 1712 components: - pos: 12.5,5.5 parent: 2 type: Transform - - uid: 9056 + - uid: 1713 components: - pos: 14.5,6.5 parent: 2 type: Transform - - uid: 9057 + - uid: 1714 components: - pos: 15.5,6.5 parent: 2 type: Transform - - uid: 9059 + - uid: 1715 components: - pos: 16.5,6.5 parent: 2 type: Transform - - uid: 9061 + - uid: 1716 components: - pos: 14.5,9.5 parent: 2 type: Transform - - uid: 9062 + - uid: 1717 components: - pos: 14.5,10.5 parent: 2 type: Transform - - uid: 9063 + - uid: 1718 components: - pos: 14.5,11.5 parent: 2 type: Transform - - uid: 9064 + - uid: 1719 components: - pos: 19.5,-29.5 parent: 2 type: Transform - - uid: 9065 + - uid: 1720 components: - pos: 15.5,11.5 parent: 2 type: Transform - - uid: 9066 + - uid: 1721 components: - pos: 16.5,11.5 parent: 2 type: Transform - - uid: 9067 + - uid: 1722 components: - pos: 17.5,11.5 parent: 2 type: Transform - - uid: 9068 + - uid: 1723 components: - pos: 18.5,11.5 parent: 2 type: Transform - - uid: 9072 + - uid: 1724 components: - pos: 11.5,11.5 parent: 2 type: Transform - - uid: 9073 + - uid: 1725 components: - pos: 11.5,10.5 parent: 2 type: Transform - - uid: 9075 + - uid: 1726 components: - pos: 11.5,9.5 parent: 2 type: Transform - - uid: 9076 + - uid: 1727 components: - pos: 11.5,8.5 parent: 2 type: Transform - - uid: 9078 + - uid: 1728 components: - pos: 20.5,15.5 parent: 2 type: Transform - - uid: 9079 + - uid: 1729 components: - pos: 19.5,15.5 parent: 2 type: Transform - - uid: 9081 + - uid: 1730 components: - pos: 18.5,15.5 parent: 2 type: Transform - - uid: 9082 + - uid: 1731 components: - pos: 17.5,15.5 parent: 2 type: Transform - - uid: 9084 + - uid: 1732 components: - pos: 17.5,16.5 parent: 2 type: Transform - - uid: 9085 + - uid: 1733 components: - pos: 17.5,17.5 parent: 2 type: Transform - - uid: 9086 + - uid: 1734 components: - pos: 17.5,18.5 parent: 2 type: Transform - - uid: 9087 + - uid: 1735 components: - pos: 18.5,18.5 parent: 2 type: Transform - - uid: 9091 + - uid: 1736 components: - pos: 16.5,19.5 parent: 2 type: Transform - - uid: 9093 + - uid: 1737 components: - pos: 11.5,12.5 parent: 2 type: Transform - - uid: 9094 + - uid: 1738 components: - pos: 11.5,13.5 parent: 2 type: Transform - - uid: 9095 + - uid: 1739 components: - pos: 11.5,14.5 parent: 2 type: Transform - - uid: 9096 + - uid: 1740 components: - pos: 11.5,15.5 parent: 2 type: Transform - - uid: 9097 + - uid: 1741 components: - pos: 16.5,15.5 parent: 2 type: Transform - - uid: 9098 + - uid: 1742 components: - pos: 12.5,15.5 parent: 2 type: Transform - - uid: 9100 + - uid: 1743 components: - pos: 11.5,24.5 parent: 2 type: Transform - - uid: 9101 + - uid: 1744 components: - pos: 12.5,24.5 parent: 2 type: Transform - - uid: 9103 + - uid: 1745 components: - pos: 12.5,23.5 parent: 2 type: Transform - - uid: 9104 + - uid: 1746 components: - pos: 12.5,22.5 parent: 2 type: Transform - - uid: 9105 + - uid: 1747 components: - pos: 12.5,21.5 parent: 2 type: Transform - - uid: 9107 + - uid: 1748 components: - pos: 12.5,20.5 parent: 2 type: Transform - - uid: 9108 + - uid: 1749 components: - pos: 12.5,19.5 parent: 2 type: Transform - - uid: 9109 + - uid: 1750 components: - pos: 13.5,19.5 parent: 2 type: Transform - - uid: 9111 + - uid: 1751 components: - pos: 11.5,21.5 parent: 2 type: Transform - - uid: 9112 + - uid: 1752 components: - pos: 10.5,21.5 parent: 2 type: Transform - - uid: 9113 + - uid: 1753 components: - pos: 9.5,21.5 parent: 2 type: Transform - - uid: 9114 + - uid: 1754 components: - pos: 9.5,20.5 parent: 2 type: Transform - - uid: 9115 + - uid: 1755 components: - pos: 9.5,19.5 parent: 2 type: Transform - - uid: 9116 + - uid: 1756 components: - pos: 9.5,18.5 parent: 2 type: Transform - - uid: 9117 + - uid: 1757 components: - pos: 12.5,25.5 parent: 2 type: Transform - - uid: 9118 + - uid: 1758 components: - pos: 13.5,25.5 parent: 2 type: Transform - - uid: 9119 + - uid: 1759 components: - pos: 14.5,25.5 parent: 2 type: Transform - - uid: 9120 + - uid: 1760 components: - pos: 15.5,25.5 parent: 2 type: Transform - - uid: 9121 + - uid: 1761 components: - pos: 16.5,25.5 parent: 2 type: Transform - - uid: 9123 + - uid: 1762 components: - pos: 16.5,24.5 parent: 2 type: Transform - - uid: 9125 + - uid: 1763 components: - pos: 11.5,25.5 parent: 2 type: Transform - - uid: 9127 + - uid: 1764 components: - pos: 10.5,25.5 parent: 2 type: Transform - - uid: 9128 + - uid: 1765 components: - pos: 9.5,25.5 parent: 2 type: Transform - - uid: 9129 + - uid: 1766 components: - pos: 8.5,25.5 parent: 2 type: Transform - - uid: 9130 + - uid: 1767 components: - pos: 8.5,26.5 parent: 2 type: Transform - - uid: 9131 + - uid: 1768 components: - pos: 9.5,26.5 parent: 2 type: Transform - - uid: 9132 + - uid: 1769 components: - pos: 13.5,26.5 parent: 2 type: Transform - - uid: 9133 + - uid: 1770 components: - pos: 13.5,27.5 parent: 2 type: Transform - - uid: 9134 + - uid: 1771 components: - pos: 13.5,28.5 parent: 2 type: Transform - - uid: 9135 + - uid: 1772 components: - pos: 13.5,29.5 parent: 2 type: Transform - - uid: 9136 + - uid: 1773 components: - pos: 13.5,30.5 parent: 2 type: Transform - - uid: 9138 + - uid: 1774 components: - pos: 12.5,30.5 parent: 2 type: Transform - - uid: 9139 + - uid: 1775 components: - pos: 11.5,30.5 parent: 2 type: Transform - - uid: 9140 + - uid: 1776 components: - pos: 10.5,30.5 parent: 2 type: Transform - - uid: 9141 + - uid: 1777 components: - pos: 9.5,30.5 parent: 2 type: Transform - - uid: 9142 + - uid: 1778 components: - pos: 8.5,30.5 parent: 2 type: Transform - - uid: 9143 + - uid: 1779 components: - pos: 7.5,30.5 parent: 2 type: Transform - - uid: 9144 + - uid: 1780 components: - pos: 6.5,30.5 parent: 2 type: Transform - - uid: 9145 + - uid: 1781 components: - pos: 5.5,30.5 parent: 2 type: Transform - - uid: 9147 + - uid: 1782 components: - pos: 14.5,28.5 parent: 2 type: Transform - - uid: 9148 + - uid: 1783 components: - pos: 15.5,28.5 parent: 2 type: Transform - - uid: 9315 + - uid: 1784 components: - pos: -11.5,-13.5 parent: 2 type: Transform - - uid: 9320 + - uid: 1785 components: - pos: -11.5,-14.5 parent: 2 type: Transform - - uid: 9321 + - uid: 1786 components: - pos: -11.5,-15.5 parent: 2 type: Transform - - uid: 9322 + - uid: 1787 components: - pos: -11.5,-16.5 parent: 2 type: Transform - - uid: 9323 + - uid: 1788 components: - pos: -11.5,-17.5 parent: 2 type: Transform - - uid: 9324 + - uid: 1789 components: - pos: -11.5,-18.5 parent: 2 type: Transform - - uid: 9327 + - uid: 1790 components: - pos: -12.5,-18.5 parent: 2 type: Transform - - uid: 9328 + - uid: 1791 components: - pos: -13.5,-18.5 parent: 2 type: Transform - - uid: 9329 + - uid: 1792 components: - pos: -14.5,-18.5 parent: 2 type: Transform - - uid: 9330 + - uid: 1793 components: - pos: -15.5,-18.5 parent: 2 type: Transform - - uid: 9331 + - uid: 1794 components: - pos: -16.5,-18.5 parent: 2 type: Transform - - uid: 9332 + - uid: 1795 components: - pos: -17.5,-18.5 parent: 2 type: Transform - - uid: 9334 + - uid: 1796 components: - pos: -17.5,-19.5 parent: 2 type: Transform - - uid: 9335 + - uid: 1797 components: - pos: -17.5,-20.5 parent: 2 type: Transform - - uid: 9336 + - uid: 1798 components: - pos: -17.5,-21.5 parent: 2 type: Transform - - uid: 9337 + - uid: 1799 components: - pos: -17.5,-22.5 parent: 2 type: Transform - - uid: 9338 + - uid: 1800 components: - pos: -17.5,-23.5 parent: 2 type: Transform - - uid: 9339 + - uid: 1801 components: - pos: -17.5,-24.5 parent: 2 type: Transform - - uid: 9342 + - uid: 1802 components: - pos: -18.5,-23.5 parent: 2 type: Transform - - uid: 9343 + - uid: 1803 components: - pos: -19.5,-23.5 parent: 2 type: Transform - - uid: 9344 + - uid: 1804 components: - pos: -20.5,-23.5 parent: 2 type: Transform - - uid: 9345 + - uid: 1805 components: - pos: -21.5,-23.5 parent: 2 type: Transform - - uid: 9346 + - uid: 1806 components: - pos: -22.5,-23.5 parent: 2 type: Transform - - uid: 9347 + - uid: 1807 components: - pos: -23.5,-23.5 parent: 2 type: Transform - - uid: 9348 + - uid: 1808 components: - pos: -24.5,-23.5 parent: 2 type: Transform - - uid: 9349 + - uid: 1809 components: - pos: -24.5,-22.5 parent: 2 type: Transform - - uid: 9350 + - uid: 1810 components: - pos: -24.5,-24.5 parent: 2 type: Transform - - uid: 9351 + - uid: 1811 components: - pos: -21.5,-22.5 parent: 2 type: Transform - - uid: 9352 + - uid: 1812 components: - pos: -21.5,-24.5 parent: 2 type: Transform - - uid: 9354 + - uid: 1813 components: - pos: -17.5,-17.5 parent: 2 type: Transform - - uid: 9355 + - uid: 1814 components: - pos: -17.5,-16.5 parent: 2 type: Transform - - uid: 9356 + - uid: 1815 components: - pos: -17.5,-15.5 parent: 2 type: Transform - - uid: 9357 + - uid: 1816 components: - pos: -17.5,-14.5 parent: 2 type: Transform - - uid: 9358 + - uid: 1817 components: - pos: -16.5,-12.5 parent: 2 type: Transform - - uid: 9359 + - uid: 1818 components: - pos: -16.5,-14.5 parent: 2 type: Transform - - uid: 9361 + - uid: 1819 components: - pos: -16.5,-13.5 parent: 2 type: Transform - - uid: 9362 + - uid: 1820 components: - pos: -16.5,-11.5 parent: 2 type: Transform - - uid: 9363 + - uid: 1821 components: - pos: -16.5,-10.5 parent: 2 type: Transform - - uid: 9364 + - uid: 1822 components: - pos: -16.5,-9.5 parent: 2 type: Transform - - uid: 9365 + - uid: 1823 components: - pos: -16.5,-8.5 parent: 2 type: Transform - - uid: 9366 + - uid: 1824 components: - pos: -17.5,-8.5 parent: 2 type: Transform - - uid: 9368 + - uid: 1825 components: - pos: -14.5,-2.5 parent: 2 type: Transform - - uid: 9369 + - uid: 1826 components: - pos: -15.5,-2.5 parent: 2 type: Transform - - uid: 9370 + - uid: 1827 components: - pos: -16.5,-2.5 parent: 2 type: Transform - - uid: 9372 + - uid: 1828 components: - pos: -17.5,-2.5 parent: 2 type: Transform - - uid: 9373 + - uid: 1829 components: - pos: -17.5,-3.5 parent: 2 type: Transform - - uid: 9374 + - uid: 1830 components: - pos: -17.5,-4.5 parent: 2 type: Transform - - uid: 9375 + - uid: 1831 components: - pos: -17.5,-5.5 parent: 2 type: Transform - - uid: 9377 + - uid: 1832 components: - pos: -17.5,-1.5 parent: 2 type: Transform - - uid: 9378 + - uid: 1833 components: - pos: -17.5,-0.5 parent: 2 type: Transform - - uid: 9379 + - uid: 1834 components: - pos: -17.5,0.5 parent: 2 type: Transform - - uid: 9380 + - uid: 1835 components: - pos: -16.5,0.5 parent: 2 type: Transform - - uid: 9381 + - uid: 1836 components: - pos: -15.5,0.5 parent: 2 type: Transform - - uid: 9382 + - uid: 1837 components: - pos: -14.5,0.5 parent: 2 type: Transform - - uid: 9383 + - uid: 1838 components: - pos: -13.5,0.5 parent: 2 type: Transform - - uid: 9384 + - uid: 1839 components: - pos: -12.5,0.5 parent: 2 type: Transform - - uid: 9386 + - uid: 1840 components: - pos: -18.5,0.5 parent: 2 type: Transform - - uid: 9387 + - uid: 1841 components: - pos: -19.5,0.5 parent: 2 type: Transform - - uid: 9388 + - uid: 1842 components: - pos: -20.5,0.5 parent: 2 type: Transform - - uid: 9389 + - uid: 1843 components: - pos: -21.5,0.5 parent: 2 type: Transform - - uid: 9390 + - uid: 1844 components: - pos: -22.5,0.5 parent: 2 type: Transform - - uid: 9391 + - uid: 1845 components: - pos: -23.5,0.5 parent: 2 type: Transform - - uid: 9392 + - uid: 1846 components: - pos: -24.5,0.5 parent: 2 type: Transform - - uid: 9393 + - uid: 1847 components: - pos: -24.5,1.5 parent: 2 type: Transform - - uid: 9395 + - uid: 1848 components: - pos: -24.5,2.5 parent: 2 type: Transform - - uid: 9397 + - uid: 1849 components: - pos: -5.5,3.5 parent: 2 type: Transform - - uid: 9398 + - uid: 1850 components: - pos: -12.5,-0.5 parent: 2 type: Transform - - uid: 9400 + - uid: 1851 components: - pos: -4.5,4.5 parent: 2 type: Transform - - uid: 9401 + - uid: 1852 components: - pos: -4.5,3.5 parent: 2 type: Transform - - uid: 9404 + - uid: 1853 components: - pos: -4.5,2.5 parent: 2 type: Transform - - uid: 9405 + - uid: 1854 components: - pos: -4.5,1.5 parent: 2 type: Transform - - uid: 9406 + - uid: 1855 components: - pos: -4.5,0.5 parent: 2 type: Transform - - uid: 9408 + - uid: 1856 components: - pos: -5.5,0.5 parent: 2 type: Transform - - uid: 9409 + - uid: 1857 components: - pos: -6.5,0.5 parent: 2 type: Transform - - uid: 9410 + - uid: 1858 components: - pos: -7.5,0.5 parent: 2 type: Transform - - uid: 9411 + - uid: 1859 components: - pos: -8.5,0.5 parent: 2 type: Transform - - uid: 9412 + - uid: 1860 components: - pos: -9.5,0.5 parent: 2 type: Transform - - uid: 9413 + - uid: 1861 components: - pos: -4.5,5.5 parent: 2 type: Transform - - uid: 9414 + - uid: 1862 components: - pos: -4.5,6.5 parent: 2 type: Transform - - uid: 9415 + - uid: 1863 components: - pos: -4.5,7.5 parent: 2 type: Transform - - uid: 9416 + - uid: 1864 components: - pos: -4.5,8.5 parent: 2 type: Transform - - uid: 9417 + - uid: 1865 components: - pos: -4.5,9.5 parent: 2 type: Transform - - uid: 9418 + - uid: 1866 components: - pos: -4.5,10.5 parent: 2 type: Transform - - uid: 9419 + - uid: 1867 components: - pos: -4.5,11.5 parent: 2 type: Transform - - uid: 9420 + - uid: 1868 components: - pos: -4.5,12.5 parent: 2 type: Transform - - uid: 9421 + - uid: 1869 components: - pos: -4.5,13.5 parent: 2 type: Transform - - uid: 9423 + - uid: 1870 components: - pos: -3.5,7.5 parent: 2 type: Transform - - uid: 9425 + - uid: 1871 components: - pos: -2.5,7.5 parent: 2 type: Transform - - uid: 9428 + - uid: 1872 components: - pos: -5.5,5.5 parent: 2 type: Transform - - uid: 9429 + - uid: 1873 components: - pos: -6.5,5.5 parent: 2 type: Transform - - uid: 9430 + - uid: 1874 components: - pos: -7.5,5.5 parent: 2 type: Transform - - uid: 9431 + - uid: 1875 components: - pos: -8.5,5.5 parent: 2 type: Transform - - uid: 9432 + - uid: 1876 components: - pos: -9.5,5.5 parent: 2 type: Transform - - uid: 9433 + - uid: 1877 components: - pos: -10.5,5.5 parent: 2 type: Transform - - uid: 9434 + - uid: 1878 components: - pos: -11.5,5.5 parent: 2 type: Transform - - uid: 9435 + - uid: 1879 components: - pos: -12.5,5.5 parent: 2 type: Transform - - uid: 9436 + - uid: 1880 components: - pos: -13.5,5.5 parent: 2 type: Transform - - uid: 9438 + - uid: 1881 components: - pos: -12.5,4.5 parent: 2 type: Transform - - uid: 9439 + - uid: 1882 components: - pos: -12.5,6.5 parent: 2 type: Transform - - uid: 9440 + - uid: 1883 components: - pos: -14.5,5.5 parent: 2 type: Transform - - uid: 9441 + - uid: 1884 components: - pos: -14.5,6.5 parent: 2 type: Transform - - uid: 9443 + - uid: 1885 components: - pos: -14.5,4.5 parent: 2 type: Transform - - uid: 9446 + - uid: 1886 components: - pos: -18.5,10.5 parent: 2 type: Transform - - uid: 9447 + - uid: 1887 components: - pos: -17.5,10.5 parent: 2 type: Transform - - uid: 9448 + - uid: 1888 components: - pos: -16.5,10.5 parent: 2 type: Transform - - uid: 9449 + - uid: 1889 components: - pos: -15.5,10.5 parent: 2 type: Transform - - uid: 9450 + - uid: 1890 components: - pos: -15.5,11.5 parent: 2 type: Transform - - uid: 9451 + - uid: 1891 components: - pos: -15.5,12.5 parent: 2 type: Transform - - uid: 9453 + - uid: 1892 components: - pos: -8.5,12.5 parent: 2 type: Transform - - uid: 9454 + - uid: 1893 components: - pos: -8.5,11.5 parent: 2 type: Transform - - uid: 9455 + - uid: 1894 components: - pos: -8.5,10.5 parent: 2 type: Transform - - uid: 9456 + - uid: 1895 components: - pos: -8.5,9.5 parent: 2 type: Transform - - uid: 9457 + - uid: 1896 components: - pos: -7.5,10.5 parent: 2 type: Transform - - uid: 9459 + - uid: 1897 components: - pos: -9.5,10.5 parent: 2 type: Transform - - uid: 9460 + - uid: 1898 components: - pos: -10.5,10.5 parent: 2 type: Transform - - uid: 9461 + - uid: 1899 components: - pos: -11.5,10.5 parent: 2 type: Transform - - uid: 9462 + - uid: 1900 components: - pos: -12.5,10.5 parent: 2 type: Transform - - uid: 9466 + - uid: 1901 components: - pos: -12.5,11.5 parent: 2 type: Transform - - uid: 9467 + - uid: 1902 components: - pos: -12.5,12.5 parent: 2 type: Transform - - uid: 9468 + - uid: 1903 components: - pos: -12.5,13.5 parent: 2 type: Transform - - uid: 9469 + - uid: 1904 components: - pos: -12.5,14.5 parent: 2 type: Transform - - uid: 9470 + - uid: 1905 components: - pos: -15.5,13.5 parent: 2 type: Transform - - uid: 9471 + - uid: 1906 components: - pos: -15.5,14.5 parent: 2 type: Transform - - uid: 9474 + - uid: 1907 components: - pos: -8.5,13.5 parent: 2 type: Transform - - uid: 9475 + - uid: 1908 components: - pos: -7.5,13.5 parent: 2 type: Transform - - uid: 9476 + - uid: 1909 components: - pos: -7.5,14.5 parent: 2 type: Transform - - uid: 9478 + - uid: 1910 components: - pos: -7.5,15.5 parent: 2 type: Transform - - uid: 9479 + - uid: 1911 components: - pos: -7.5,16.5 parent: 2 type: Transform - - uid: 9480 + - uid: 1912 components: - pos: -7.5,17.5 parent: 2 type: Transform - - uid: 9481 + - uid: 1913 components: - pos: -10.5,17.5 parent: 2 type: Transform - - uid: 9483 + - uid: 1914 components: - pos: -8.5,17.5 parent: 2 type: Transform - - uid: 9484 + - uid: 1915 components: - pos: -9.5,17.5 parent: 2 type: Transform - - uid: 9485 + - uid: 1916 components: - pos: -10.5,16.5 parent: 2 type: Transform - - uid: 9486 + - uid: 1917 components: - pos: -10.5,15.5 parent: 2 type: Transform - - uid: 9487 + - uid: 1918 components: - pos: -11.5,15.5 parent: 2 type: Transform - - uid: 9488 + - uid: 1919 components: - pos: -12.5,15.5 parent: 2 type: Transform - - uid: 9490 + - uid: 1920 components: - pos: -15.5,20.5 parent: 2 type: Transform - - uid: 9491 + - uid: 1921 components: - pos: -15.5,21.5 parent: 2 type: Transform - - uid: 9492 + - uid: 1922 components: - pos: -14.5,21.5 parent: 2 type: Transform - - uid: 9494 + - uid: 1923 components: - pos: -16.5,20.5 parent: 2 type: Transform - - uid: 9496 + - uid: 1924 components: - pos: -14.5,22.5 parent: 2 type: Transform - - uid: 9497 + - uid: 1925 components: - pos: -13.5,22.5 parent: 2 type: Transform - - uid: 9498 + - uid: 1926 components: - pos: -16.5,18.5 parent: 2 type: Transform - - uid: 9500 + - uid: 1927 components: - pos: -17.5,21.5 parent: 2 type: Transform - - uid: 9501 + - uid: 1928 components: - pos: -17.5,20.5 parent: 2 type: Transform - - uid: 9502 + - uid: 1929 components: - pos: -17.5,19.5 parent: 2 type: Transform - - uid: 9503 + - uid: 1930 components: - pos: -17.5,18.5 parent: 2 type: Transform - - uid: 9504 + - uid: 1931 components: - pos: -17.5,17.5 parent: 2 type: Transform - - uid: 9505 + - uid: 1932 components: - pos: -17.5,16.5 parent: 2 type: Transform - - uid: 9506 + - uid: 1933 components: - pos: -18.5,16.5 parent: 2 type: Transform - - uid: 9508 + - uid: 1934 components: - pos: -19.5,16.5 parent: 2 type: Transform - - uid: 9509 + - uid: 1935 components: - pos: -20.5,16.5 parent: 2 type: Transform - - uid: 9512 + - uid: 1936 components: - pos: -20.5,17.5 parent: 2 type: Transform - - uid: 9513 + - uid: 1937 components: - pos: -20.5,18.5 parent: 2 type: Transform - - uid: 9514 + - uid: 1938 components: - pos: -20.5,19.5 parent: 2 type: Transform - - uid: 9515 + - uid: 1939 components: - pos: -20.5,20.5 parent: 2 type: Transform - - uid: 9516 + - uid: 1940 components: - pos: -20.5,21.5 parent: 2 type: Transform - - uid: 9517 + - uid: 1941 components: - pos: -15.5,18.5 parent: 2 type: Transform - - uid: 9518 + - uid: 1942 components: - pos: -14.5,18.5 parent: 2 type: Transform - - uid: 9588 + - uid: 1943 components: - pos: -37.5,24.5 parent: 2 type: Transform - - uid: 9589 + - uid: 1944 components: - pos: -37.5,23.5 parent: 2 type: Transform - - uid: 9590 + - uid: 1945 components: - pos: -36.5,23.5 parent: 2 type: Transform - - uid: 9591 + - uid: 1946 components: - pos: -35.5,23.5 parent: 2 type: Transform - - uid: 9592 + - uid: 1947 components: - pos: -27.5,19.5 parent: 2 type: Transform - - uid: 9593 + - uid: 1948 components: - pos: -38.5,23.5 parent: 2 type: Transform - - uid: 9606 + - uid: 1949 components: - pos: -8.5,-25.5 parent: 2 type: Transform - - uid: 9608 + - uid: 1950 components: - pos: -14.5,-38.5 parent: 2 type: Transform - - uid: 9609 + - uid: 1951 components: - pos: -12.5,-30.5 parent: 2 type: Transform - - uid: 9611 + - uid: 1952 components: - pos: -19.5,-36.5 parent: 2 type: Transform - - uid: 9612 + - uid: 1953 components: - pos: -19.5,-37.5 parent: 2 type: Transform - - uid: 9614 + - uid: 1954 components: - pos: -20.5,-38.5 parent: 2 type: Transform - - uid: 9615 + - uid: 1955 components: - pos: -19.5,-38.5 parent: 2 type: Transform - - uid: 9616 + - uid: 1956 components: - pos: -18.5,-38.5 parent: 2 type: Transform - - uid: 9617 + - uid: 1957 components: - pos: -17.5,-38.5 parent: 2 type: Transform - - uid: 9618 + - uid: 1958 components: - pos: -16.5,-38.5 parent: 2 type: Transform - - uid: 9619 + - uid: 1959 components: - pos: -15.5,-38.5 parent: 2 type: Transform - - uid: 9620 + - uid: 1960 components: - pos: -12.5,-29.5 parent: 2 type: Transform - - uid: 9621 + - uid: 1961 components: - pos: -8.5,-28.5 parent: 2 type: Transform - - uid: 9643 + - uid: 1962 components: - pos: -4.5,17.5 parent: 2 type: Transform - - uid: 9647 + - uid: 1963 components: - pos: -8.5,22.5 parent: 2 type: Transform - - uid: 9651 + - uid: 1964 components: - pos: -7.5,22.5 parent: 2 type: Transform - - uid: 9652 + - uid: 1965 components: - pos: -6.5,22.5 parent: 2 type: Transform - - uid: 9681 + - uid: 1966 components: - pos: -9.5,22.5 parent: 2 type: Transform - - uid: 9686 + - uid: 1967 components: - pos: -4.5,22.5 parent: 2 type: Transform - - uid: 9687 + - uid: 1968 components: - pos: -5.5,22.5 parent: 2 type: Transform - - uid: 9692 + - uid: 1969 components: - pos: -9.5,24.5 parent: 2 type: Transform - - uid: 9693 + - uid: 1970 components: - pos: -9.5,25.5 parent: 2 type: Transform - - uid: 9694 + - uid: 1971 components: - pos: -3.5,25.5 parent: 2 type: Transform - - uid: 9709 + - uid: 1972 components: - pos: -9.5,23.5 parent: 2 type: Transform - - uid: 9740 + - uid: 1973 components: - pos: -7.5,26.5 parent: 2 type: Transform - - uid: 9741 + - uid: 1974 components: - pos: -7.5,27.5 parent: 2 type: Transform - - uid: 9747 + - uid: 1975 components: - pos: -8.5,26.5 parent: 2 type: Transform - - uid: 9748 + - uid: 1976 components: - pos: -9.5,26.5 parent: 2 type: Transform - - uid: 9756 + - uid: 1977 components: - pos: -6.5,26.5 parent: 2 type: Transform - - uid: 9757 + - uid: 1978 components: - pos: -5.5,26.5 parent: 2 type: Transform - - uid: 9765 + - uid: 1979 components: - pos: -4.5,26.5 parent: 2 type: Transform - - uid: 9773 + - uid: 1980 components: - pos: -3.5,26.5 parent: 2 type: Transform - - uid: 9774 + - uid: 1981 components: - pos: -3.5,24.5 parent: 2 type: Transform - - uid: 9775 + - uid: 1982 components: - pos: -3.5,23.5 parent: 2 type: Transform - - uid: 9776 + - uid: 1983 components: - pos: -3.5,22.5 parent: 2 type: Transform - - uid: 9777 + - uid: 1984 components: - pos: -3.5,21.5 parent: 2 type: Transform - - uid: 9778 + - uid: 1985 components: - pos: -3.5,20.5 parent: 2 type: Transform - - uid: 9779 + - uid: 1986 components: - pos: -3.5,19.5 parent: 2 type: Transform - - uid: 9780 + - uid: 1987 components: - pos: -3.5,18.5 parent: 2 type: Transform - - uid: 9781 + - uid: 1988 components: - pos: -3.5,17.5 parent: 2 type: Transform - - uid: 9782 + - uid: 1989 components: - pos: -22.5,29.5 parent: 2 type: Transform - - uid: 9783 + - uid: 1990 components: - pos: -21.5,29.5 parent: 2 type: Transform - - uid: 9784 + - uid: 1991 components: - pos: -23.5,29.5 parent: 2 type: Transform - - uid: 9785 + - uid: 1992 components: - pos: -23.5,28.5 parent: 2 type: Transform - - uid: 9786 + - uid: 1993 components: - pos: -23.5,27.5 parent: 2 type: Transform - - uid: 9787 + - uid: 1994 components: - pos: -23.5,26.5 parent: 2 type: Transform - - uid: 9788 + - uid: 1995 components: - pos: -23.5,25.5 parent: 2 type: Transform - - uid: 9789 + - uid: 1996 components: - pos: -23.5,24.5 parent: 2 type: Transform - - uid: 9790 + - uid: 1997 components: - pos: -23.5,23.5 parent: 2 type: Transform - - uid: 9791 + - uid: 1998 components: - pos: -23.5,22.5 parent: 2 type: Transform - - uid: 9792 + - uid: 1999 components: - pos: -23.5,21.5 parent: 2 type: Transform - - uid: 9793 + - uid: 2000 components: - pos: -23.5,20.5 parent: 2 type: Transform - - uid: 9794 + - uid: 2001 components: - pos: -22.5,26.5 parent: 2 type: Transform - - uid: 9795 + - uid: 2002 components: - pos: -21.5,26.5 parent: 2 type: Transform - - uid: 9796 + - uid: 2003 components: - pos: -20.5,26.5 parent: 2 type: Transform - - uid: 9797 + - uid: 2004 components: - pos: -19.5,26.5 parent: 2 type: Transform - - uid: 9798 + - uid: 2005 components: - pos: -18.5,26.5 parent: 2 type: Transform - - uid: 9799 + - uid: 2006 components: - pos: -17.5,26.5 parent: 2 type: Transform - - uid: 9800 + - uid: 2007 components: - pos: -16.5,26.5 parent: 2 type: Transform - - uid: 9801 + - uid: 2008 components: - pos: -15.5,26.5 parent: 2 type: Transform - - uid: 9802 + - uid: 2009 components: - pos: -14.5,26.5 parent: 2 type: Transform - - uid: 9803 + - uid: 2010 components: - pos: -13.5,26.5 parent: 2 type: Transform - - uid: 9804 + - uid: 2011 components: - pos: -23.5,30.5 parent: 2 type: Transform - - uid: 9805 + - uid: 2012 components: - pos: -23.5,31.5 parent: 2 type: Transform - - uid: 9806 + - uid: 2013 components: - pos: -23.5,32.5 parent: 2 type: Transform - - uid: 9807 + - uid: 2014 components: - pos: -23.5,33.5 parent: 2 type: Transform - - uid: 9808 + - uid: 2015 components: - pos: -23.5,34.5 parent: 2 type: Transform - - uid: 9809 + - uid: 2016 components: - pos: -23.5,35.5 parent: 2 type: Transform - - uid: 9810 + - uid: 2017 components: - pos: -23.5,36.5 parent: 2 type: Transform - - uid: 9811 + - uid: 2018 components: - pos: -20.5,29.5 parent: 2 type: Transform - - uid: 9812 + - uid: 2019 components: - pos: -19.5,29.5 parent: 2 type: Transform - - uid: 9813 + - uid: 2020 components: - pos: -18.5,29.5 parent: 2 type: Transform - - uid: 9814 + - uid: 2021 components: - pos: -17.5,29.5 parent: 2 type: Transform - - uid: 9815 + - uid: 2022 components: - pos: -16.5,29.5 parent: 2 type: Transform - - uid: 9816 + - uid: 2023 components: - pos: -15.5,29.5 parent: 2 type: Transform - - uid: 9817 + - uid: 2024 components: - pos: -14.5,29.5 parent: 2 type: Transform - - uid: 9818 + - uid: 2025 components: - pos: -13.5,29.5 parent: 2 type: Transform - - uid: 9819 + - uid: 2026 components: - pos: -12.5,29.5 parent: 2 type: Transform - - uid: 9820 + - uid: 2027 components: - pos: -11.5,29.5 parent: 2 type: Transform - - uid: 9821 + - uid: 2028 components: - pos: -10.5,29.5 parent: 2 type: Transform - - uid: 9822 + - uid: 2029 components: - pos: -9.5,29.5 parent: 2 type: Transform - - uid: 9823 + - uid: 2030 components: - pos: -8.5,29.5 parent: 2 type: Transform - - uid: 9824 + - uid: 2031 components: - pos: -19.5,30.5 parent: 2 type: Transform - - uid: 9825 + - uid: 2032 components: - pos: -40.5,35.5 parent: 2 type: Transform - - uid: 9826 + - uid: 2033 components: - pos: -39.5,35.5 parent: 2 type: Transform - - uid: 9827 + - uid: 2034 components: - pos: -39.5,36.5 parent: 2 type: Transform - - uid: 9828 + - uid: 2035 components: - pos: -39.5,37.5 parent: 2 type: Transform - - uid: 9829 + - uid: 2036 components: - pos: -39.5,38.5 parent: 2 type: Transform - - uid: 9830 + - uid: 2037 components: - pos: -39.5,39.5 parent: 2 type: Transform - - uid: 9831 + - uid: 2038 components: - pos: -39.5,40.5 parent: 2 type: Transform - - uid: 9832 + - uid: 2039 components: - pos: -39.5,41.5 parent: 2 type: Transform - - uid: 9833 + - uid: 2040 components: - pos: -39.5,42.5 parent: 2 type: Transform - - uid: 9834 + - uid: 2041 components: - pos: -39.5,43.5 parent: 2 type: Transform - - uid: 9835 + - uid: 2042 components: - pos: -39.5,44.5 parent: 2 type: Transform - - uid: 9836 + - uid: 2043 components: - pos: -40.5,42.5 parent: 2 type: Transform - - uid: 9837 + - uid: 2044 components: - pos: -41.5,42.5 parent: 2 type: Transform - - uid: 9838 + - uid: 2045 components: - pos: -42.5,42.5 parent: 2 type: Transform - - uid: 9839 + - uid: 2046 components: - pos: -43.5,42.5 parent: 2 type: Transform - - uid: 9840 + - uid: 2047 components: - pos: -43.5,43.5 parent: 2 type: Transform - - uid: 9841 + - uid: 2048 components: - pos: -43.5,44.5 parent: 2 type: Transform - - uid: 9842 + - uid: 2049 components: - pos: -43.5,45.5 parent: 2 type: Transform - - uid: 9843 + - uid: 2050 components: - pos: -43.5,46.5 parent: 2 type: Transform - - uid: 9844 + - uid: 2051 components: - pos: -43.5,47.5 parent: 2 type: Transform - - uid: 9845 + - uid: 2052 components: - pos: -16.5,25.5 parent: 2 type: Transform - - uid: 9846 + - uid: 2053 components: - pos: -44.5,46.5 parent: 2 type: Transform - - uid: 9847 + - uid: 2054 components: - pos: -45.5,46.5 parent: 2 type: Transform - - uid: 9848 + - uid: 2055 components: - pos: -46.5,46.5 parent: 2 type: Transform - - uid: 9849 + - uid: 2056 components: - pos: -47.5,46.5 parent: 2 type: Transform - - uid: 9850 + - uid: 2057 components: - pos: -48.5,46.5 parent: 2 type: Transform - - uid: 9851 + - uid: 2058 components: - pos: -49.5,46.5 parent: 2 type: Transform - - uid: 9852 + - uid: 2059 components: - pos: -50.5,46.5 parent: 2 type: Transform - - uid: 9853 + - uid: 2060 components: - pos: -51.5,46.5 parent: 2 type: Transform - - uid: 9854 + - uid: 2061 components: - pos: -51.5,47.5 parent: 2 type: Transform - - uid: 9855 + - uid: 2062 components: - pos: -42.5,47.5 parent: 2 type: Transform - - uid: 9856 + - uid: 2063 components: - pos: -42.5,48.5 parent: 2 type: Transform - - uid: 9857 + - uid: 2064 components: - pos: -42.5,49.5 parent: 2 type: Transform - - uid: 9858 + - uid: 2065 components: - pos: -42.5,50.5 parent: 2 type: Transform - - uid: 9859 + - uid: 2066 components: - pos: -42.5,51.5 parent: 2 type: Transform - - uid: 9860 + - uid: 2067 components: - pos: -42.5,52.5 parent: 2 type: Transform - - uid: 9861 + - uid: 2068 components: - pos: -42.5,53.5 parent: 2 type: Transform - - uid: 9862 + - uid: 2069 components: - pos: -42.5,54.5 parent: 2 type: Transform - - uid: 9863 + - uid: 2070 components: - pos: -42.5,55.5 parent: 2 type: Transform - - uid: 9864 + - uid: 2071 components: - pos: -42.5,56.5 parent: 2 type: Transform - - uid: 9865 + - uid: 2072 components: - pos: -42.5,57.5 parent: 2 type: Transform - - uid: 9866 + - uid: 2073 components: - pos: -42.5,58.5 parent: 2 type: Transform - - uid: 9867 + - uid: 2074 components: - pos: -42.5,59.5 parent: 2 type: Transform - - uid: 9868 + - uid: 2075 components: - pos: -42.5,60.5 parent: 2 type: Transform - - uid: 9869 + - uid: 2076 components: - pos: -42.5,61.5 parent: 2 type: Transform - - uid: 9870 + - uid: 2077 components: - pos: -42.5,62.5 parent: 2 type: Transform - - uid: 9871 + - uid: 2078 components: - pos: -42.5,63.5 parent: 2 type: Transform - - uid: 9872 + - uid: 2079 components: - pos: -42.5,64.5 parent: 2 type: Transform - - uid: 9873 + - uid: 2080 components: - pos: -42.5,65.5 parent: 2 type: Transform - - uid: 9874 + - uid: 2081 components: - pos: -42.5,66.5 parent: 2 type: Transform - - uid: 9875 + - uid: 2082 components: - pos: -42.5,67.5 parent: 2 type: Transform - - uid: 9876 + - uid: 2083 components: - pos: -42.5,68.5 parent: 2 type: Transform - - uid: 9877 + - uid: 2084 components: - pos: -42.5,69.5 parent: 2 type: Transform - - uid: 9878 + - uid: 2085 components: - pos: -41.5,47.5 parent: 2 type: Transform - - uid: 9879 + - uid: 2086 components: - pos: -40.5,47.5 parent: 2 type: Transform - - uid: 9880 + - uid: 2087 components: - pos: -39.5,47.5 parent: 2 type: Transform - - uid: 9881 + - uid: 2088 components: - pos: -38.5,47.5 parent: 2 type: Transform - - uid: 9882 + - uid: 2089 components: - pos: -37.5,47.5 parent: 2 type: Transform - - uid: 9883 + - uid: 2090 components: - pos: -36.5,47.5 parent: 2 type: Transform - - uid: 9884 + - uid: 2091 components: - pos: -35.5,47.5 parent: 2 type: Transform - - uid: 9885 + - uid: 2092 components: - pos: -35.5,46.5 parent: 2 type: Transform - - uid: 9886 + - uid: 2093 components: - pos: -35.5,45.5 parent: 2 type: Transform - - uid: 9887 + - uid: 2094 components: - pos: -35.5,44.5 parent: 2 type: Transform - - uid: 9888 + - uid: 2095 components: - pos: -36.5,40.5 parent: 2 type: Transform - - uid: 9890 + - uid: 2096 components: - pos: -35.5,40.5 parent: 2 type: Transform - - uid: 9891 + - uid: 2097 components: - pos: -32.5,31.5 parent: 2 type: Transform - - uid: 9892 + - uid: 2098 components: - pos: -32.5,32.5 parent: 2 type: Transform - - uid: 9893 + - uid: 2099 components: - pos: -32.5,33.5 parent: 2 type: Transform - - uid: 9894 + - uid: 2100 components: - pos: -32.5,34.5 parent: 2 type: Transform - - uid: 9895 + - uid: 2101 components: - pos: -32.5,35.5 parent: 2 type: Transform - - uid: 9896 + - uid: 2102 components: - pos: -32.5,36.5 parent: 2 type: Transform - - uid: 9897 + - uid: 2103 components: - pos: -33.5,36.5 parent: 2 type: Transform - - uid: 9898 + - uid: 2104 components: - pos: -34.5,36.5 parent: 2 type: Transform - - uid: 9899 + - uid: 2105 components: - pos: -35.5,36.5 parent: 2 type: Transform - - uid: 9900 + - uid: 2106 components: - pos: -36.5,36.5 parent: 2 type: Transform - - uid: 9901 + - uid: 2107 components: - pos: -36.5,37.5 parent: 2 type: Transform - - uid: 9902 + - uid: 2108 components: - pos: -36.5,38.5 parent: 2 type: Transform - - uid: 9903 + - uid: 2109 components: - pos: -36.5,39.5 parent: 2 type: Transform - - uid: 9917 + - uid: 2110 components: - pos: -34.5,40.5 parent: 2 type: Transform - - uid: 9918 + - uid: 2111 components: - pos: -33.5,40.5 parent: 2 type: Transform - - uid: 9919 + - uid: 2112 components: - pos: -32.5,40.5 parent: 2 type: Transform - - uid: 9920 + - uid: 2113 components: - pos: -31.5,40.5 parent: 2 type: Transform - - uid: 9923 + - uid: 2114 components: - pos: -18.5,41.5 parent: 2 type: Transform - - uid: 9924 + - uid: 2115 components: - pos: -19.5,41.5 parent: 2 type: Transform - - uid: 9925 + - uid: 2116 components: - pos: -20.5,41.5 parent: 2 type: Transform - - uid: 9926 + - uid: 2117 components: - pos: -21.5,41.5 parent: 2 type: Transform - - uid: 9927 + - uid: 2118 components: - pos: -22.5,41.5 parent: 2 type: Transform - - uid: 9928 + - uid: 2119 components: - pos: -23.5,41.5 parent: 2 type: Transform - - uid: 9929 + - uid: 2120 components: - pos: -24.5,41.5 parent: 2 type: Transform - - uid: 9930 + - uid: 2121 components: - pos: -25.5,41.5 parent: 2 type: Transform - - uid: 9931 + - uid: 2122 components: - pos: -26.5,41.5 parent: 2 type: Transform - - uid: 9932 + - uid: 2123 components: - pos: -27.5,41.5 parent: 2 type: Transform - - uid: 9934 + - uid: 2124 components: - pos: -23.5,40.5 parent: 2 type: Transform - - uid: 9935 + - uid: 2125 components: - pos: -23.5,39.5 parent: 2 type: Transform - - uid: 9936 + - uid: 2126 components: - pos: -23.5,38.5 parent: 2 type: Transform - - uid: 9937 + - uid: 2127 components: - pos: -23.5,42.5 parent: 2 type: Transform - - uid: 9938 + - uid: 2128 components: - pos: -0.5,20.5 parent: 2 type: Transform - - uid: 9939 + - uid: 2129 components: - pos: -0.5,19.5 parent: 2 type: Transform - - uid: 9940 + - uid: 2130 components: - pos: 0.5,19.5 parent: 2 type: Transform - - uid: 9941 + - uid: 2131 components: - pos: -7.5,37.5 parent: 2 type: Transform - - uid: 9942 + - uid: 2132 components: - pos: -7.5,38.5 parent: 2 type: Transform - - uid: 9943 + - uid: 2133 components: - pos: 0.5,18.5 parent: 2 type: Transform - - uid: 9944 + - uid: 2134 components: - pos: 1.5,19.5 parent: 2 type: Transform - - uid: 9948 + - uid: 2135 components: - pos: -12.5,38.5 parent: 2 type: Transform - - uid: 9949 + - uid: 2136 components: - pos: -13.5,38.5 parent: 2 type: Transform - - uid: 9950 + - uid: 2137 components: - pos: -14.5,38.5 parent: 2 type: Transform - - uid: 9951 + - uid: 2138 components: - pos: -15.5,38.5 parent: 2 type: Transform - - uid: 9953 + - uid: 2139 components: - pos: -0.5,21.5 parent: 2 type: Transform - - uid: 9954 + - uid: 2140 components: - pos: 1.5,20.5 parent: 2 type: Transform - - uid: 9955 + - uid: 2141 components: - pos: -15.5,37.5 parent: 2 type: Transform - - uid: 9956 + - uid: 2142 components: - pos: -15.5,36.5 parent: 2 type: Transform - - uid: 9957 + - uid: 2143 components: - pos: -15.5,35.5 parent: 2 type: Transform - - uid: 9958 + - uid: 2144 components: - pos: -15.5,34.5 parent: 2 type: Transform - - uid: 9959 + - uid: 2145 components: - pos: -14.5,35.5 parent: 2 type: Transform - - uid: 9960 + - uid: 2146 components: - pos: -13.5,35.5 parent: 2 type: Transform - - uid: 9961 + - uid: 2147 components: - pos: -12.5,35.5 parent: 2 type: Transform - - uid: 9962 + - uid: 2148 components: - pos: -11.5,35.5 parent: 2 type: Transform - - uid: 9963 + - uid: 2149 components: - pos: -10.5,35.5 parent: 2 type: Transform - - uid: 9964 + - uid: 2150 components: - pos: -9.5,35.5 parent: 2 type: Transform - - uid: 9965 + - uid: 2151 components: - pos: -8.5,35.5 parent: 2 type: Transform - - uid: 9966 + - uid: 2152 components: - pos: -7.5,35.5 parent: 2 type: Transform - - uid: 9967 + - uid: 2153 components: - pos: -6.5,35.5 parent: 2 type: Transform - - uid: 9968 + - uid: 2154 components: - pos: -5.5,35.5 parent: 2 type: Transform - - uid: 9969 + - uid: 2155 components: - pos: -4.5,35.5 parent: 2 type: Transform - - uid: 9970 + - uid: 2156 components: - pos: -4.5,34.5 parent: 2 type: Transform - - uid: 9971 + - uid: 2157 components: - pos: -3.5,34.5 parent: 2 type: Transform - - uid: 9972 + - uid: 2158 components: - pos: -2.5,34.5 parent: 2 type: Transform - - uid: 9973 + - uid: 2159 components: - pos: -1.5,34.5 parent: 2 type: Transform - - uid: 9974 + - uid: 2160 components: - pos: -0.5,34.5 parent: 2 type: Transform - - uid: 9975 + - uid: 2161 components: - pos: 0.5,34.5 parent: 2 type: Transform - - uid: 9976 + - uid: 2162 components: - pos: 0.5,33.5 parent: 2 type: Transform - - uid: 9977 + - uid: 2163 components: - pos: 0.5,32.5 parent: 2 type: Transform - - uid: 9978 + - uid: 2164 components: - pos: 0.5,31.5 parent: 2 type: Transform - - uid: 9979 + - uid: 2165 components: - pos: 0.5,30.5 parent: 2 type: Transform - - uid: 9980 + - uid: 2166 components: - pos: 0.5,29.5 parent: 2 type: Transform - - uid: 9981 + - uid: 2167 components: - pos: -1.5,39.5 parent: 2 type: Transform - - uid: 9982 + - uid: 2168 components: - pos: -0.5,39.5 parent: 2 type: Transform - - uid: 9983 + - uid: 2169 components: - pos: 0.5,39.5 parent: 2 type: Transform - - uid: 9984 + - uid: 2170 components: - pos: 0.5,40.5 parent: 2 type: Transform - - uid: 9985 + - uid: 2171 components: - pos: -2.5,39.5 parent: 2 type: Transform - - uid: 9986 + - uid: 2172 components: - pos: 0.5,41.5 parent: 2 type: Transform - - uid: 9987 + - uid: 2173 components: - pos: 0.5,38.5 parent: 2 type: Transform - - uid: 9988 + - uid: 2174 components: - pos: 0.5,37.5 parent: 2 type: Transform - - uid: 9989 + - uid: 2175 components: - pos: 0.5,42.5 parent: 2 type: Transform - - uid: 9990 + - uid: 2176 components: - pos: -7.5,39.5 parent: 2 type: Transform - - uid: 9991 + - uid: 2177 components: - pos: -7.5,40.5 parent: 2 type: Transform - - uid: 9992 + - uid: 2178 components: - pos: -7.5,41.5 parent: 2 type: Transform - - uid: 9993 + - uid: 2179 components: - pos: -7.5,42.5 parent: 2 type: Transform - - uid: 9994 + - uid: 2180 components: - pos: -7.5,43.5 parent: 2 type: Transform - - uid: 9995 + - uid: 2181 components: - pos: -8.5,43.5 parent: 2 type: Transform - - uid: 9996 + - uid: 2182 components: - pos: -9.5,43.5 parent: 2 type: Transform - - uid: 9997 + - uid: 2183 components: - pos: -10.5,43.5 parent: 2 type: Transform - - uid: 9998 + - uid: 2184 components: - pos: -11.5,43.5 parent: 2 type: Transform - - uid: 9999 + - uid: 2185 components: - pos: -12.5,43.5 parent: 2 type: Transform - - uid: 10000 + - uid: 2186 components: - pos: -3.5,33.5 parent: 2 type: Transform - - uid: 10001 + - uid: 2187 components: - pos: -3.5,32.5 parent: 2 type: Transform - - uid: 10002 + - uid: 2188 components: - pos: -3.5,31.5 parent: 2 type: Transform - - uid: 10003 + - uid: 2189 components: - pos: -3.5,30.5 parent: 2 type: Transform - - uid: 10004 + - uid: 2190 components: - pos: 2.5,8.5 parent: 2 type: Transform - - uid: 10005 + - uid: 2191 components: - pos: 2.5,7.5 parent: 2 type: Transform - - uid: 10006 + - uid: 2192 components: - pos: 1.5,7.5 parent: 2 type: Transform - - uid: 10007 + - uid: 2193 components: - pos: 0.5,7.5 parent: 2 type: Transform - - uid: 10008 + - uid: 2194 components: - pos: -4.5,30.5 parent: 2 type: Transform - - uid: 10009 + - uid: 2195 components: - pos: 3.5,8.5 parent: 2 type: Transform - - uid: 10010 + - uid: 2196 components: - pos: 3.5,7.5 parent: 2 type: Transform - - uid: 10011 + - uid: 2197 components: - pos: 0.5,28.5 parent: 2 type: Transform - - uid: 10012 + - uid: 2198 components: - pos: 0.5,27.5 parent: 2 type: Transform - - uid: 10013 + - uid: 2199 components: - pos: 0.5,26.5 parent: 2 type: Transform - - uid: 10014 + - uid: 2200 components: - pos: 3.5,6.5 parent: 2 type: Transform - - uid: 10015 + - uid: 2201 components: - pos: 1.5,26.5 parent: 2 type: Transform - - uid: 10016 + - uid: 2202 components: - pos: 2.5,26.5 parent: 2 type: Transform - - uid: 10017 + - uid: 2203 components: - pos: 3.5,26.5 parent: 2 type: Transform - - uid: 10018 + - uid: 2204 components: - pos: 4.5,26.5 parent: 2 type: Transform - - uid: 10019 + - uid: 2205 components: - pos: 4.5,6.5 parent: 2 type: Transform - - uid: 10020 + - uid: 2206 components: - pos: 4.5,5.5 parent: 2 type: Transform - - uid: 10021 + - uid: 2207 components: - pos: 4.5,4.5 parent: 2 type: Transform - - uid: 10022 + - uid: 2208 components: - pos: 5.5,4.5 parent: 2 type: Transform - - uid: 10023 + - uid: 2209 components: - pos: 6.5,4.5 parent: 2 type: Transform - - uid: 10024 + - uid: 2210 components: - pos: 7.5,4.5 parent: 2 type: Transform - - uid: 10025 + - uid: 2211 components: - pos: 3.5,9.5 parent: 2 type: Transform - - uid: 10026 + - uid: 2212 components: - pos: 3.5,10.5 parent: 2 type: Transform - - uid: 10027 + - uid: 2213 components: - pos: 3.5,11.5 parent: 2 type: Transform - - uid: 10028 + - uid: 2214 components: - pos: 3.5,12.5 parent: 2 type: Transform - - uid: 10029 + - uid: 2215 components: - pos: 3.5,13.5 parent: 2 type: Transform - - uid: 10030 + - uid: 2216 components: - pos: 3.5,14.5 parent: 2 type: Transform - - uid: 10031 + - uid: 2217 components: - pos: 2.5,14.5 parent: 2 type: Transform - - uid: 10032 + - uid: 2218 components: - pos: 1.5,14.5 parent: 2 type: Transform - - uid: 10033 + - uid: 2219 components: - pos: 0.5,14.5 parent: 2 type: Transform - - uid: 10034 + - uid: 2220 components: - pos: -0.5,14.5 parent: 2 type: Transform - - uid: 10035 + - uid: 2221 components: - pos: 4.5,14.5 parent: 2 type: Transform - - uid: 10036 + - uid: 2222 components: - pos: 5.5,14.5 parent: 2 type: Transform - - uid: 10037 + - uid: 2223 components: - pos: 6.5,14.5 parent: 2 type: Transform - - uid: 10038 + - uid: 2224 components: - pos: 7.5,14.5 parent: 2 type: Transform - - uid: 10039 + - uid: 2225 components: - pos: 6.5,15.5 parent: 2 type: Transform - - uid: 10040 + - uid: 2226 components: - pos: 6.5,16.5 parent: 2 type: Transform - - uid: 10041 + - uid: 2227 components: - pos: 6.5,17.5 parent: 2 type: Transform - - uid: 10042 + - uid: 2228 components: - pos: 6.5,18.5 parent: 2 type: Transform - - uid: 10043 + - uid: 2229 components: - pos: 6.5,19.5 parent: 2 type: Transform - - uid: 10044 + - uid: 2230 components: - pos: 6.5,20.5 parent: 2 type: Transform - - uid: 10045 + - uid: 2231 components: - pos: 6.5,21.5 parent: 2 type: Transform - - uid: 10046 + - uid: 2232 components: - pos: 6.5,22.5 parent: 2 type: Transform - - uid: 10050 + - uid: 2233 components: - pos: 18.5,-6.5 parent: 2 type: Transform - - uid: 10051 + - uid: 2234 components: - pos: 14.5,-4.5 parent: 2 type: Transform - - uid: 10052 + - uid: 2235 components: - pos: 11.5,-4.5 parent: 2 type: Transform - - uid: 10055 + - uid: 2236 components: - pos: 14.5,-6.5 parent: 2 type: Transform - - uid: 10057 + - uid: 2237 components: - pos: 19.5,-8.5 parent: 2 type: Transform - - uid: 10058 + - uid: 2238 components: - pos: 18.5,-7.5 parent: 2 type: Transform - - uid: 10060 + - uid: 2239 components: - pos: 18.5,-8.5 parent: 2 type: Transform - - uid: 10062 + - uid: 2240 components: - pos: 20.5,-8.5 parent: 2 type: Transform - - uid: 10064 + - uid: 2241 components: - pos: 21.5,-8.5 parent: 2 type: Transform - - uid: 10065 + - uid: 2242 components: - pos: 17.5,-19.5 parent: 2 type: Transform - - uid: 10066 + - uid: 2243 components: - pos: 19.5,-21.5 parent: 2 type: Transform - - uid: 10067 + - uid: 2244 components: - pos: 19.5,-20.5 parent: 2 type: Transform - - uid: 10068 + - uid: 2245 components: - pos: 18.5,-20.5 parent: 2 type: Transform - - uid: 10069 + - uid: 2246 components: - pos: 17.5,-20.5 parent: 2 type: Transform - - uid: 10070 + - uid: 2247 components: - pos: 16.5,-20.5 parent: 2 type: Transform - - uid: 10072 + - uid: 2248 components: - pos: 16.5,-21.5 parent: 2 type: Transform - - uid: 10073 + - uid: 2249 components: - pos: 15.5,-20.5 parent: 2 type: Transform - - uid: 10078 + - uid: 2250 components: - pos: 10.5,-20.5 parent: 2 type: Transform - - uid: 10079 + - uid: 2251 components: - pos: 10.5,-21.5 parent: 2 type: Transform - - uid: 10080 + - uid: 2252 components: - pos: 20.5,-20.5 parent: 2 type: Transform - - uid: 10081 + - uid: 2253 components: - pos: 21.5,-20.5 parent: 2 type: Transform - - uid: 10084 + - uid: 2254 components: - pos: 24.5,-20.5 parent: 2 type: Transform - - uid: 10085 + - uid: 2255 components: - pos: 24.5,-19.5 parent: 2 type: Transform - - uid: 10087 + - uid: 2256 components: - pos: 24.5,-21.5 parent: 2 type: Transform - - uid: 10088 + - uid: 2257 components: - pos: 21.5,-19.5 parent: 2 type: Transform - - uid: 10089 + - uid: 2258 components: - pos: 25.5,-20.5 parent: 2 type: Transform - - uid: 10090 + - uid: 2259 components: - pos: 25.5,-19.5 parent: 2 type: Transform - - uid: 10093 + - uid: 2260 components: - pos: 17.5,-18.5 parent: 2 type: Transform - - uid: 10094 + - uid: 2261 components: - pos: 17.5,-17.5 parent: 2 type: Transform - - uid: 10095 + - uid: 2262 components: - pos: 17.5,-16.5 parent: 2 type: Transform - - uid: 10096 + - uid: 2263 components: - pos: 17.5,-15.5 parent: 2 type: Transform - - uid: 10097 + - uid: 2264 components: - pos: 18.5,-16.5 parent: 2 type: Transform - - uid: 10100 + - uid: 2265 components: - pos: 18.5,-15.5 parent: 2 type: Transform - - uid: 10101 + - uid: 2266 components: - pos: 19.5,-15.5 parent: 2 type: Transform - - uid: 10102 + - uid: 2267 components: - pos: 20.5,-15.5 parent: 2 type: Transform - - uid: 10103 + - uid: 2268 components: - pos: 21.5,-15.5 parent: 2 type: Transform - - uid: 10104 + - uid: 2269 components: - pos: 21.5,-14.5 parent: 2 type: Transform - - uid: 10105 + - uid: 2270 components: - pos: 21.5,-13.5 parent: 2 type: Transform - - uid: 10106 + - uid: 2271 components: - pos: 21.5,-12.5 parent: 2 type: Transform - - uid: 10107 + - uid: 2272 components: - pos: 20.5,-12.5 parent: 2 type: Transform - - uid: 10108 + - uid: 2273 components: - pos: 36.5,-17.5 parent: 2 type: Transform - - uid: 10109 + - uid: 2274 components: - pos: 36.5,-18.5 parent: 2 type: Transform - - uid: 10110 + - uid: 2275 components: - pos: 37.5,-18.5 parent: 2 type: Transform - - uid: 10111 + - uid: 2276 components: - pos: 38.5,-18.5 parent: 2 type: Transform - - uid: 10112 + - uid: 2277 components: - pos: 39.5,-18.5 parent: 2 type: Transform - - uid: 10113 + - uid: 2278 components: - pos: 40.5,-18.5 parent: 2 type: Transform - - uid: 10114 + - uid: 2279 components: - pos: 41.5,-18.5 parent: 2 type: Transform - - uid: 10115 + - uid: 2280 components: - pos: 42.5,-18.5 parent: 2 type: Transform - - uid: 10116 + - uid: 2281 components: - pos: 39.5,-17.5 parent: 2 type: Transform - - uid: 10117 + - uid: 2282 components: - pos: 39.5,-16.5 parent: 2 type: Transform - - uid: 10118 + - uid: 2283 components: - pos: 39.5,-15.5 parent: 2 type: Transform - - uid: 10119 + - uid: 2284 components: - pos: 39.5,-14.5 parent: 2 type: Transform - - uid: 10120 + - uid: 2285 components: - pos: 39.5,-13.5 parent: 2 type: Transform - - uid: 10121 + - uid: 2286 components: - pos: 39.5,-12.5 parent: 2 type: Transform - - uid: 10122 + - uid: 2287 components: - pos: 39.5,-11.5 parent: 2 type: Transform - - uid: 10124 + - uid: 2288 components: - pos: 40.5,-10.5 parent: 2 type: Transform - - uid: 10125 + - uid: 2289 components: - pos: 41.5,-10.5 parent: 2 type: Transform - - uid: 10126 + - uid: 2290 components: - pos: 42.5,-10.5 parent: 2 type: Transform - - uid: 10127 + - uid: 2291 components: - pos: 39.5,-19.5 parent: 2 type: Transform - - uid: 10129 + - uid: 2292 components: - pos: 39.5,-20.5 parent: 2 type: Transform - - uid: 10130 + - uid: 2293 components: - pos: 39.5,-21.5 parent: 2 type: Transform - - uid: 10132 + - uid: 2294 components: - pos: 38.5,-21.5 parent: 2 type: Transform - - uid: 10133 + - uid: 2295 components: - pos: 37.5,-21.5 parent: 2 type: Transform - - uid: 10134 + - uid: 2296 components: - pos: 36.5,-21.5 parent: 2 type: Transform - - uid: 10135 + - uid: 2297 components: - pos: 35.5,-21.5 parent: 2 type: Transform - - uid: 10136 + - uid: 2298 components: - pos: 34.5,-21.5 parent: 2 type: Transform - - uid: 10137 + - uid: 2299 components: - pos: 33.5,-21.5 parent: 2 type: Transform - - uid: 10138 + - uid: 2300 components: - pos: 32.5,-21.5 parent: 2 type: Transform - - uid: 10139 + - uid: 2301 components: - pos: 31.5,-21.5 parent: 2 type: Transform - - uid: 10140 + - uid: 2302 components: - pos: 30.5,-21.5 parent: 2 type: Transform - - uid: 10141 + - uid: 2303 components: - pos: 30.5,-22.5 parent: 2 type: Transform - - uid: 10142 + - uid: 2304 components: - pos: 30.5,-23.5 parent: 2 type: Transform - - uid: 10143 + - uid: 2305 components: - pos: 37.5,-22.5 parent: 2 type: Transform - - uid: 10144 + - uid: 2306 components: - pos: 37.5,-23.5 parent: 2 type: Transform - - uid: 10145 + - uid: 2307 components: - pos: 29.5,-21.5 parent: 2 type: Transform - - uid: 10146 + - uid: 2308 components: - pos: 29.5,-20.5 parent: 2 type: Transform - - uid: 10147 + - uid: 2309 components: - pos: 29.5,-19.5 parent: 2 type: Transform - - uid: 10148 + - uid: 2310 components: - pos: 29.5,-18.5 parent: 2 type: Transform - - uid: 10149 + - uid: 2311 components: - pos: 29.5,-17.5 parent: 2 type: Transform - - uid: 10150 + - uid: 2312 components: - pos: 29.5,-16.5 parent: 2 type: Transform - - uid: 10151 + - uid: 2313 components: - pos: 29.5,-15.5 parent: 2 type: Transform - - uid: 10152 + - uid: 2314 components: - pos: 45.5,11.5 parent: 2 type: Transform - - uid: 10153 + - uid: 2315 components: - pos: 46.5,11.5 parent: 2 type: Transform - - uid: 10154 + - uid: 2316 components: - pos: 47.5,11.5 parent: 2 type: Transform - - uid: 10155 + - uid: 2317 components: - pos: 48.5,11.5 parent: 2 type: Transform - - uid: 10156 + - uid: 2318 components: - pos: 49.5,11.5 parent: 2 type: Transform - - uid: 10157 + - uid: 2319 components: - pos: 50.5,11.5 parent: 2 type: Transform - - uid: 10158 + - uid: 2320 components: - pos: 51.5,11.5 parent: 2 type: Transform - - uid: 10159 + - uid: 2321 components: - pos: 52.5,11.5 parent: 2 type: Transform - - uid: 10160 + - uid: 2322 components: - pos: 53.5,11.5 parent: 2 type: Transform - - uid: 10161 + - uid: 2323 components: - pos: 54.5,11.5 parent: 2 type: Transform - - uid: 10162 + - uid: 2324 components: - pos: 55.5,11.5 parent: 2 type: Transform - - uid: 10163 + - uid: 2325 components: - pos: 56.5,11.5 parent: 2 type: Transform - - uid: 10164 + - uid: 2326 components: - pos: 57.5,11.5 parent: 2 type: Transform - - uid: 10165 + - uid: 2327 components: - pos: 58.5,11.5 parent: 2 type: Transform - - uid: 10166 + - uid: 2328 components: - pos: 59.5,11.5 parent: 2 type: Transform - - uid: 10167 + - uid: 2329 components: - pos: 60.5,11.5 parent: 2 type: Transform - - uid: 10168 + - uid: 2330 components: - pos: 61.5,11.5 parent: 2 type: Transform - - uid: 10169 + - uid: 2331 components: - pos: 62.5,11.5 parent: 2 type: Transform - - uid: 10170 + - uid: 2332 components: - pos: 63.5,11.5 parent: 2 type: Transform - - uid: 10171 + - uid: 2333 components: - pos: 64.5,11.5 parent: 2 type: Transform - - uid: 10172 + - uid: 2334 components: - pos: 30.5,-15.5 parent: 2 type: Transform - - uid: 10173 + - uid: 2335 components: - pos: 31.5,-15.5 parent: 2 type: Transform - - uid: 10174 + - uid: 2336 components: - pos: 32.5,-15.5 parent: 2 type: Transform - - uid: 10175 + - uid: 2337 components: - pos: 33.5,-15.5 parent: 2 type: Transform - - uid: 10176 + - uid: 2338 components: - pos: 34.5,-15.5 parent: 2 type: Transform - - uid: 10177 + - uid: 2339 components: - pos: 35.5,-15.5 parent: 2 type: Transform - - uid: 10178 + - uid: 2340 components: - pos: 36.5,-15.5 parent: 2 type: Transform - - uid: 10179 + - uid: 2341 components: - pos: 37.5,-15.5 parent: 2 type: Transform - - uid: 10180 + - uid: 2342 components: - pos: 38.5,-15.5 parent: 2 type: Transform - - uid: 10181 + - uid: 2343 components: - pos: 28.5,-15.5 parent: 2 type: Transform - - uid: 10182 + - uid: 2344 components: - pos: 27.5,-15.5 parent: 2 type: Transform - - uid: 10183 + - uid: 2345 components: - pos: 26.5,-15.5 parent: 2 type: Transform - - uid: 10184 + - uid: 2346 components: - pos: 25.5,-15.5 parent: 2 type: Transform - - uid: 10186 + - uid: 2347 components: - pos: 25.5,-14.5 parent: 2 type: Transform - - uid: 10187 + - uid: 2348 components: - pos: 25.5,-13.5 parent: 2 type: Transform - - uid: 10188 + - uid: 2349 components: - pos: 25.5,-12.5 parent: 2 type: Transform - - uid: 10189 + - uid: 2350 components: - pos: 25.5,-11.5 parent: 2 type: Transform - - uid: 10190 + - uid: 2351 components: - pos: 25.5,-10.5 parent: 2 type: Transform - - uid: 10191 + - uid: 2352 components: - pos: 25.5,-9.5 parent: 2 type: Transform - - uid: 10193 + - uid: 2353 components: - pos: 39.5,-5.5 parent: 2 type: Transform - - uid: 10194 + - uid: 2354 components: - pos: 39.5,-6.5 parent: 2 type: Transform - - uid: 10196 + - uid: 2355 components: - pos: 39.5,-7.5 parent: 2 type: Transform - - uid: 10197 + - uid: 2356 components: - pos: 6.5,-6.5 parent: 2 type: Transform - - uid: 10198 + - uid: 2357 components: - pos: 7.5,-3.5 parent: 2 type: Transform - - uid: 10199 + - uid: 2358 components: - pos: 5.5,-3.5 parent: 2 type: Transform - - uid: 10200 + - uid: 2359 components: - pos: 2.5,-6.5 parent: 2 type: Transform - - uid: 10201 + - uid: 2360 components: - pos: 3.5,-7.5 parent: 2 type: Transform - - uid: 10202 + - uid: 2361 components: - pos: 8.5,-6.5 parent: 2 type: Transform - - uid: 10203 + - uid: 2362 components: - pos: -6.5,23.5 parent: 2 type: Transform - - uid: 10204 + - uid: 2363 components: - pos: -6.5,24.5 parent: 2 type: Transform - - uid: 10205 + - uid: 2364 components: - pos: -9.5,21.5 parent: 2 type: Transform - - uid: 10212 + - uid: 2365 components: - pos: -9.5,-85.5 parent: 2 type: Transform - - uid: 10222 + - uid: 2366 components: - pos: -29.5,-79.5 parent: 2 type: Transform - - uid: 10223 + - uid: 2367 components: - pos: -29.5,-78.5 parent: 2 type: Transform - - uid: 10224 + - uid: 2368 components: - pos: -29.5,-77.5 parent: 2 type: Transform - - uid: 10225 + - uid: 2369 components: - pos: -29.5,-80.5 parent: 2 type: Transform - - uid: 10226 + - uid: 2370 components: - pos: -29.5,-76.5 parent: 2 type: Transform - - uid: 10227 + - uid: 2371 components: - pos: -29.5,-75.5 parent: 2 type: Transform - - uid: 10228 + - uid: 2372 components: - pos: -29.5,-74.5 parent: 2 type: Transform - - uid: 10229 + - uid: 2373 components: - pos: -29.5,-73.5 parent: 2 type: Transform - - uid: 10230 + - uid: 2374 components: - pos: -28.5,-76.5 parent: 2 type: Transform - - uid: 10231 + - uid: 2375 components: - pos: -27.5,-76.5 parent: 2 type: Transform - - uid: 10232 + - uid: 2376 components: - pos: -26.5,-76.5 parent: 2 type: Transform - - uid: 10233 + - uid: 2377 components: - pos: -26.5,-75.5 parent: 2 type: Transform - - uid: 10234 + - uid: 2378 components: - pos: -26.5,-74.5 parent: 2 type: Transform - - uid: 10235 + - uid: 2379 components: - pos: -26.5,-73.5 parent: 2 type: Transform - - uid: 10236 + - uid: 2380 components: - pos: -26.5,-77.5 parent: 2 type: Transform - - uid: 10237 + - uid: 2381 components: - pos: -26.5,-78.5 parent: 2 type: Transform - - uid: 10238 + - uid: 2382 components: - pos: -26.5,-79.5 parent: 2 type: Transform - - uid: 10239 + - uid: 2383 components: - pos: -24.5,-76.5 parent: 2 type: Transform - - uid: 10240 + - uid: 2384 components: - pos: -25.5,-76.5 parent: 2 type: Transform - - uid: 10241 + - uid: 2385 components: - pos: -26.5,10.5 parent: 2 type: Transform - - uid: 10242 + - uid: 2386 components: - pos: -25.5,10.5 parent: 2 type: Transform - - uid: 10243 + - uid: 2387 components: - pos: -23.5,-76.5 parent: 2 type: Transform - - uid: 10244 + - uid: 2388 components: - pos: -22.5,-76.5 parent: 2 type: Transform - - uid: 10245 + - uid: 2389 components: - pos: -21.5,-76.5 parent: 2 type: Transform - - uid: 10246 + - uid: 2390 components: - pos: -20.5,-76.5 parent: 2 type: Transform - - uid: 10247 + - uid: 2391 components: - pos: -19.5,-76.5 parent: 2 type: Transform - - uid: 10248 + - uid: 2392 components: - pos: -2.5,-76.5 parent: 2 type: Transform - - uid: 10249 + - uid: 2393 components: - pos: -23.5,5.5 parent: 2 type: Transform - - uid: 10250 + - uid: 2394 components: - pos: -20.5,6.5 parent: 2 type: Transform - - uid: 10251 + - uid: 2395 components: - pos: -20.5,-75.5 parent: 2 type: Transform - - uid: 10252 + - uid: 2396 components: - pos: -20.5,-74.5 parent: 2 type: Transform - - uid: 10253 + - uid: 2397 components: - pos: -20.5,-73.5 parent: 2 type: Transform - - uid: 10254 + - uid: 2398 components: - pos: -20.5,-78.5 parent: 2 type: Transform - - uid: 10255 + - uid: 2399 components: - pos: -20.5,-79.5 parent: 2 type: Transform - - uid: 10256 + - uid: 2400 components: - pos: -20.5,-77.5 parent: 2 type: Transform - - uid: 10257 + - uid: 2401 components: - pos: -25.5,9.5 parent: 2 type: Transform - - uid: 10258 + - uid: 2402 components: - pos: -25.5,8.5 parent: 2 type: Transform - - uid: 10259 + - uid: 2403 components: - pos: -25.5,7.5 parent: 2 type: Transform - - uid: 10260 + - uid: 2404 components: - pos: -25.5,6.5 parent: 2 type: Transform - - uid: 10261 + - uid: 2405 components: - pos: -25.5,5.5 parent: 2 type: Transform - - uid: 10262 + - uid: 2406 components: - pos: -24.5,5.5 parent: 2 type: Transform - - uid: 10263 + - uid: 2407 components: - pos: -21.5,5.5 parent: 2 type: Transform - - uid: 10264 + - uid: 2408 components: - pos: -3.5,-76.5 parent: 2 type: Transform - - uid: 10265 + - uid: 2409 components: - pos: -4.5,-76.5 parent: 2 type: Transform - - uid: 10266 + - uid: 2410 components: - pos: -12.5,-76.5 parent: 2 type: Transform - - uid: 10267 + - uid: 2411 components: - pos: -11.5,-76.5 parent: 2 type: Transform - - uid: 10268 + - uid: 2412 components: - pos: -10.5,-76.5 parent: 2 type: Transform - - uid: 10269 + - uid: 2413 components: - pos: -10.5,-75.5 parent: 2 type: Transform - - uid: 10270 + - uid: 2414 components: - pos: -10.5,-74.5 parent: 2 type: Transform - - uid: 10271 + - uid: 2415 components: - pos: -9.5,-74.5 parent: 2 type: Transform - - uid: 10272 + - uid: 2416 components: - pos: -8.5,-74.5 parent: 2 type: Transform - - uid: 10273 + - uid: 2417 components: - pos: -7.5,-74.5 parent: 2 type: Transform - - uid: 10274 + - uid: 2418 components: - pos: -6.5,-74.5 parent: 2 type: Transform - - uid: 10275 + - uid: 2419 components: - pos: -5.5,-74.5 parent: 2 type: Transform - - uid: 10276 + - uid: 2420 components: - pos: -25.5,11.5 parent: 2 type: Transform - - uid: 10277 + - uid: 2421 components: - pos: -25.5,12.5 parent: 2 type: Transform - - uid: 10278 + - uid: 2422 components: - pos: -25.5,13.5 parent: 2 type: Transform - - uid: 10279 + - uid: 2423 components: - pos: -25.5,14.5 parent: 2 type: Transform - - uid: 10280 + - uid: 2424 components: - pos: -25.5,15.5 parent: 2 type: Transform - - uid: 10281 + - uid: 2425 components: - pos: -25.5,16.5 parent: 2 type: Transform - - uid: 10282 + - uid: 2426 components: - pos: -24.5,16.5 parent: 2 type: Transform - - uid: 10283 + - uid: 2427 components: - pos: -17.5,5.5 parent: 2 type: Transform - - uid: 10284 + - uid: 2428 components: - pos: -5.5,-76.5 parent: 2 type: Transform - - uid: 10285 + - uid: 2429 components: - pos: -5.5,-77.5 parent: 2 type: Transform - - uid: 10286 + - uid: 2430 components: - pos: -5.5,-78.5 parent: 2 type: Transform - - uid: 10287 + - uid: 2431 components: - pos: -6.5,-78.5 parent: 2 type: Transform - - uid: 10288 + - uid: 2432 components: - pos: -7.5,-78.5 parent: 2 type: Transform - - uid: 10289 + - uid: 2433 components: - pos: -8.5,-78.5 parent: 2 type: Transform - - uid: 10290 + - uid: 2434 components: - pos: -9.5,-78.5 parent: 2 type: Transform - - uid: 10291 + - uid: 2435 components: - pos: -10.5,-78.5 parent: 2 type: Transform - - uid: 10292 + - uid: 2436 components: - pos: -11.5,-78.5 parent: 2 type: Transform - - uid: 10293 + - uid: 2437 components: - pos: -23.5,16.5 parent: 2 type: Transform - - uid: 10294 + - uid: 2438 components: - pos: -11.5,-77.5 parent: 2 type: Transform - - uid: 10295 + - uid: 2439 components: - pos: -18.5,6.5 parent: 2 type: Transform - - uid: 10296 + - uid: 2440 components: - pos: -5.5,-75.5 parent: 2 type: Transform - - uid: 10297 + - uid: 2441 components: - pos: -18.5,-72.5 parent: 2 type: Transform - - uid: 10298 + - uid: 2442 components: - pos: -17.5,-72.5 parent: 2 type: Transform - - uid: 10299 + - uid: 2443 components: - pos: -16.5,-72.5 parent: 2 type: Transform - - uid: 10300 + - uid: 2444 components: - pos: -16.5,-73.5 parent: 2 type: Transform - - uid: 10301 + - uid: 2445 components: - pos: -16.5,-74.5 parent: 2 type: Transform - - uid: 10302 + - uid: 2446 components: - pos: -16.5,-75.5 parent: 2 type: Transform - - uid: 10303 + - uid: 2447 components: - pos: -16.5,-76.5 parent: 2 type: Transform - - uid: 10304 + - uid: 2448 components: - pos: -16.5,-77.5 parent: 2 type: Transform - - uid: 10305 + - uid: 2449 components: - pos: -16.5,-78.5 parent: 2 type: Transform - - uid: 10306 + - uid: 2450 components: - pos: -16.5,-79.5 parent: 2 type: Transform - - uid: 10307 + - uid: 2451 components: - pos: -16.5,-80.5 parent: 2 type: Transform - - uid: 10308 + - uid: 2452 components: - pos: -16.5,-81.5 parent: 2 type: Transform - - uid: 10309 + - uid: 2453 components: - pos: -16.5,-82.5 parent: 2 type: Transform - - uid: 10310 + - uid: 2454 components: - pos: -16.5,-83.5 parent: 2 type: Transform - - uid: 10311 + - uid: 2455 components: - pos: -16.5,-84.5 parent: 2 type: Transform - - uid: 10312 + - uid: 2456 components: - pos: -16.5,-85.5 parent: 2 type: Transform - - uid: 10313 + - uid: 2457 components: - pos: -16.5,-86.5 parent: 2 type: Transform - - uid: 10321 + - uid: 2458 components: - pos: -10.5,-86.5 parent: 2 type: Transform - - uid: 10322 + - uid: 2459 components: - pos: -10.5,-85.5 parent: 2 type: Transform - - uid: 10323 + - uid: 2460 components: - pos: -8.5,-85.5 parent: 2 type: Transform - - uid: 10324 + - uid: 2461 components: - pos: -7.5,-85.5 parent: 2 type: Transform - - uid: 10325 + - uid: 2462 components: - pos: -6.5,-85.5 parent: 2 type: Transform - - uid: 10326 + - uid: 2463 components: - pos: -5.5,-85.5 parent: 2 type: Transform - - uid: 10327 + - uid: 2464 components: - pos: -4.5,-85.5 parent: 2 type: Transform - - uid: 10328 + - uid: 2465 components: - pos: -3.5,-85.5 parent: 2 type: Transform - - uid: 10329 + - uid: 2466 components: - pos: -3.5,-84.5 parent: 2 type: Transform - - uid: 10330 + - uid: 2467 components: - pos: -2.5,-84.5 parent: 2 type: Transform - - uid: 10331 + - uid: 2468 components: - pos: -1.5,-84.5 parent: 2 type: Transform - - uid: 10332 + - uid: 2469 components: - pos: -0.5,-84.5 parent: 2 type: Transform - - uid: 10333 + - uid: 2470 components: - pos: 0.5,-84.5 parent: 2 type: Transform - - uid: 10334 + - uid: 2471 components: - pos: 1.5,-84.5 parent: 2 type: Transform - - uid: 10335 + - uid: 2472 components: - pos: 1.5,-83.5 parent: 2 type: Transform - - uid: 10336 + - uid: 2473 components: - pos: 1.5,-82.5 parent: 2 type: Transform - - uid: 10337 + - uid: 2474 components: - pos: 1.5,-81.5 parent: 2 type: Transform - - uid: 10338 + - uid: 2475 components: - pos: 1.5,-80.5 parent: 2 type: Transform - - uid: 10339 + - uid: 2476 components: - pos: 1.5,-79.5 parent: 2 type: Transform - - uid: 10340 + - uid: 2477 components: - pos: 1.5,-78.5 parent: 2 type: Transform - - uid: 10341 + - uid: 2478 components: - pos: 1.5,-77.5 parent: 2 type: Transform - - uid: 10342 + - uid: 2479 components: - pos: 1.5,-76.5 parent: 2 type: Transform - - uid: 10343 + - uid: 2480 components: - pos: 1.5,-75.5 parent: 2 type: Transform - - uid: 10344 + - uid: 2481 components: - pos: 1.5,-74.5 parent: 2 type: Transform - - uid: 10345 + - uid: 2482 components: - pos: 1.5,-73.5 parent: 2 type: Transform - - uid: 10346 + - uid: 2483 components: - pos: 1.5,-72.5 parent: 2 type: Transform - - uid: 10347 + - uid: 2484 components: - pos: 1.5,-71.5 parent: 2 type: Transform - - uid: 10348 + - uid: 2485 components: - pos: 1.5,-70.5 parent: 2 type: Transform - - uid: 10349 + - uid: 2486 components: - pos: 1.5,-69.5 parent: 2 type: Transform - - uid: 10350 + - uid: 2487 components: - pos: 1.5,-68.5 parent: 2 type: Transform - - uid: 10351 + - uid: 2488 components: - pos: 0.5,-68.5 parent: 2 type: Transform - - uid: 10352 + - uid: 2489 components: - pos: -0.5,-68.5 parent: 2 type: Transform - - uid: 10353 + - uid: 2490 components: - pos: -1.5,-68.5 parent: 2 type: Transform - - uid: 10354 + - uid: 2491 components: - pos: -2.5,-68.5 parent: 2 type: Transform - - uid: 10355 + - uid: 2492 components: - pos: -3.5,-68.5 parent: 2 type: Transform - - uid: 10356 + - uid: 2493 components: - pos: -3.5,-67.5 parent: 2 type: Transform - - uid: 10357 + - uid: 2494 components: - pos: -4.5,-67.5 parent: 2 type: Transform - - uid: 10358 + - uid: 2495 components: - pos: -5.5,-67.5 parent: 2 type: Transform - - uid: 10359 + - uid: 2496 components: - pos: -6.5,-67.5 parent: 2 type: Transform - - uid: 10360 + - uid: 2497 components: - pos: -7.5,-67.5 parent: 2 type: Transform - - uid: 10361 + - uid: 2498 components: - pos: -8.5,-67.5 parent: 2 type: Transform - - uid: 10362 + - uid: 2499 components: - pos: -9.5,-67.5 parent: 2 type: Transform - - uid: 10363 + - uid: 2500 components: - pos: -10.5,-67.5 parent: 2 type: Transform - - uid: 10364 + - uid: 2501 components: - pos: -35.5,-69.5 parent: 2 type: Transform - - uid: 10365 + - uid: 2502 components: - pos: -10.5,-66.5 parent: 2 type: Transform - - uid: 10366 + - uid: 2503 components: - pos: -11.5,-66.5 parent: 2 type: Transform - - uid: 10367 + - uid: 2504 components: - pos: -12.5,-66.5 parent: 2 type: Transform - - uid: 10368 + - uid: 2505 components: - pos: -13.5,-66.5 parent: 2 type: Transform - - uid: 10369 + - uid: 2506 components: - pos: -14.5,-66.5 parent: 2 type: Transform - - uid: 10370 + - uid: 2507 components: - pos: -15.5,-66.5 parent: 2 type: Transform - - uid: 10371 + - uid: 2508 components: - pos: -16.5,-66.5 parent: 2 type: Transform - - uid: 10372 + - uid: 2509 components: - pos: -17.5,-66.5 parent: 2 type: Transform - - uid: 10373 + - uid: 2510 components: - pos: -18.5,-66.5 parent: 2 type: Transform - - uid: 10374 + - uid: 2511 components: - pos: -19.5,-66.5 parent: 2 type: Transform - - uid: 10375 + - uid: 2512 components: - pos: -20.5,-66.5 parent: 2 type: Transform - - uid: 10376 + - uid: 2513 components: - pos: -21.5,-66.5 parent: 2 type: Transform - - uid: 10377 + - uid: 2514 components: - pos: -21.5,-67.5 parent: 2 type: Transform - - uid: 10378 + - uid: 2515 components: - pos: -21.5,-68.5 parent: 2 type: Transform - - uid: 10379 + - uid: 2516 components: - pos: -22.5,-68.5 parent: 2 type: Transform - - uid: 10380 + - uid: 2517 components: - pos: -23.5,-68.5 parent: 2 type: Transform - - uid: 10381 + - uid: 2518 components: - pos: -24.5,-68.5 parent: 2 type: Transform - - uid: 10382 + - uid: 2519 components: - pos: -25.5,-68.5 parent: 2 type: Transform - - uid: 10383 + - uid: 2520 components: - pos: -26.5,-68.5 parent: 2 type: Transform - - uid: 10384 + - uid: 2521 components: - pos: -27.5,-68.5 parent: 2 type: Transform - - uid: 10385 + - uid: 2522 components: - pos: -28.5,-68.5 parent: 2 type: Transform - - uid: 10386 + - uid: 2523 components: - pos: -29.5,-68.5 parent: 2 type: Transform - - uid: 10387 + - uid: 2524 components: - pos: -30.5,-68.5 parent: 2 type: Transform - - uid: 10388 + - uid: 2525 components: - pos: -31.5,-68.5 parent: 2 type: Transform - - uid: 10389 + - uid: 2526 components: - pos: -32.5,-68.5 parent: 2 type: Transform - - uid: 10390 + - uid: 2527 components: - pos: -33.5,-68.5 parent: 2 type: Transform - - uid: 10391 + - uid: 2528 components: - pos: -34.5,-68.5 parent: 2 type: Transform - - uid: 10392 + - uid: 2529 components: - pos: -35.5,-68.5 parent: 2 type: Transform - - uid: 10393 + - uid: 2530 components: - pos: -35.5,-70.5 parent: 2 type: Transform - - uid: 10394 + - uid: 2531 components: - pos: -35.5,-71.5 parent: 2 type: Transform - - uid: 10395 + - uid: 2532 components: - pos: -35.5,-72.5 parent: 2 type: Transform - - uid: 10396 + - uid: 2533 components: - pos: -35.5,-73.5 parent: 2 type: Transform - - uid: 10397 + - uid: 2534 components: - pos: -35.5,-74.5 parent: 2 type: Transform - - uid: 10398 + - uid: 2535 components: - pos: -35.5,-75.5 parent: 2 type: Transform - - uid: 10399 + - uid: 2536 components: - pos: -35.5,-76.5 parent: 2 type: Transform - - uid: 10400 + - uid: 2537 components: - pos: -35.5,-77.5 parent: 2 type: Transform - - uid: 10401 + - uid: 2538 components: - pos: -35.5,-78.5 parent: 2 type: Transform - - uid: 10402 + - uid: 2539 components: - pos: -35.5,-79.5 parent: 2 type: Transform - - uid: 10403 + - uid: 2540 components: - pos: -35.5,-80.5 parent: 2 type: Transform - - uid: 10404 + - uid: 2541 components: - pos: -35.5,-81.5 parent: 2 type: Transform - - uid: 10405 + - uid: 2542 components: - pos: -35.5,-82.5 parent: 2 type: Transform - - uid: 10406 + - uid: 2543 components: - pos: -35.5,-83.5 parent: 2 type: Transform - - uid: 10407 + - uid: 2544 components: - pos: -35.5,-84.5 parent: 2 type: Transform - - uid: 10408 + - uid: 2545 components: - pos: -34.5,-84.5 parent: 2 type: Transform - - uid: 10409 + - uid: 2546 components: - pos: -33.5,-84.5 parent: 2 type: Transform - - uid: 10410 + - uid: 2547 components: - pos: -32.5,-84.5 parent: 2 type: Transform - - uid: 10411 + - uid: 2548 components: - pos: -31.5,-84.5 parent: 2 type: Transform - - uid: 10412 + - uid: 2549 components: - pos: -30.5,-84.5 parent: 2 type: Transform - - uid: 10413 + - uid: 2550 components: - pos: -29.5,-84.5 parent: 2 type: Transform - - uid: 10414 + - uid: 2551 components: - pos: -28.5,-84.5 parent: 2 type: Transform - - uid: 10415 + - uid: 2552 components: - pos: -27.5,-84.5 parent: 2 type: Transform - - uid: 10416 + - uid: 2553 components: - pos: -26.5,-84.5 parent: 2 type: Transform - - uid: 10417 + - uid: 2554 components: - pos: -25.5,-84.5 parent: 2 type: Transform - - uid: 10418 + - uid: 2555 components: - pos: -24.5,-84.5 parent: 2 type: Transform - - uid: 10419 + - uid: 2556 components: - pos: -23.5,-84.5 parent: 2 type: Transform - - uid: 10420 + - uid: 2557 components: - pos: -22.5,-84.5 parent: 2 type: Transform - - uid: 10421 + - uid: 2558 components: - pos: -21.5,-84.5 parent: 2 type: Transform - - uid: 10422 + - uid: 2559 components: - pos: -21.5,-85.5 parent: 2 type: Transform - - uid: 10423 + - uid: 2560 components: - pos: -21.5,-86.5 parent: 2 type: Transform - - uid: 10424 + - uid: 2561 components: - pos: -21.5,-87.5 parent: 2 type: Transform - - uid: 10429 + - uid: 2562 components: - pos: -33.5,-60.5 parent: 2 type: Transform - - uid: 10430 + - uid: 2563 components: - pos: -16.5,-67.5 parent: 2 type: Transform - - uid: 10431 + - uid: 2564 components: - pos: -16.5,-68.5 parent: 2 type: Transform - - uid: 10432 + - uid: 2565 components: - pos: -16.5,-69.5 parent: 2 type: Transform - - uid: 10433 + - uid: 2566 components: - pos: -16.5,-70.5 parent: 2 type: Transform - - uid: 10434 + - uid: 2567 components: - pos: -16.5,-71.5 parent: 2 type: Transform - - uid: 10435 + - uid: 2568 components: - pos: -33.5,-67.5 parent: 2 type: Transform - - uid: 10436 + - uid: 2569 components: - pos: -33.5,-66.5 parent: 2 type: Transform - - uid: 10437 + - uid: 2570 components: - pos: -33.5,-65.5 parent: 2 type: Transform - - uid: 10438 + - uid: 2571 components: - pos: -33.5,-64.5 parent: 2 type: Transform - - uid: 10439 + - uid: 2572 components: - pos: -33.5,-63.5 parent: 2 type: Transform - - uid: 10440 + - uid: 2573 components: - pos: -33.5,-62.5 parent: 2 type: Transform - - uid: 10441 + - uid: 2574 components: - pos: -33.5,-61.5 parent: 2 type: Transform - - uid: 10442 + - uid: 2575 components: - pos: -33.5,-59.5 parent: 2 type: Transform - - uid: 10443 + - uid: 2576 components: - pos: -33.5,-58.5 parent: 2 type: Transform - - uid: 10444 + - uid: 2577 components: - pos: -33.5,-57.5 parent: 2 type: Transform - - uid: 10445 + - uid: 2578 components: - pos: -33.5,-56.5 parent: 2 type: Transform - - uid: 10446 + - uid: 2579 components: - pos: -33.5,-55.5 parent: 2 type: Transform - - uid: 10447 + - uid: 2580 components: - pos: -33.5,-54.5 parent: 2 type: Transform - - uid: 10448 + - uid: 2581 components: - pos: -33.5,-53.5 parent: 2 type: Transform - - uid: 10449 + - uid: 2582 components: - pos: -33.5,-52.5 parent: 2 type: Transform - - uid: 10450 + - uid: 2583 components: - pos: -33.5,-51.5 parent: 2 type: Transform - - uid: 10451 + - uid: 2584 components: - pos: -24.5,-32.5 parent: 2 type: Transform - - uid: 10452 + - uid: 2585 components: - pos: 1.5,-67.5 parent: 2 type: Transform - - uid: 10453 + - uid: 2586 components: - pos: 1.5,-66.5 parent: 2 type: Transform - - uid: 10454 + - uid: 2587 components: - pos: 1.5,-65.5 parent: 2 type: Transform - - uid: 10455 + - uid: 2588 components: - pos: 1.5,-64.5 parent: 2 type: Transform - - uid: 10456 + - uid: 2589 components: - pos: 1.5,-63.5 parent: 2 type: Transform - - uid: 10457 + - uid: 2590 components: - pos: 1.5,-62.5 parent: 2 type: Transform - - uid: 10458 + - uid: 2591 components: - pos: 1.5,-61.5 parent: 2 type: Transform - - uid: 10459 + - uid: 2592 components: - pos: 1.5,-60.5 parent: 2 type: Transform - - uid: 10460 + - uid: 2593 components: - pos: 1.5,-59.5 parent: 2 type: Transform - - uid: 10461 + - uid: 2594 components: - pos: 1.5,-58.5 parent: 2 type: Transform - - uid: 10463 + - uid: 2595 components: - - pos: -4.5,-42.5 + - pos: 0.5,-38.5 parent: 2 type: Transform - - uid: 10464 + - uid: 2596 components: - - pos: -4.5,-41.5 + - pos: 0.5,-37.5 parent: 2 type: Transform - - uid: 10465 + - uid: 2597 components: - - pos: -3.5,-41.5 + - pos: 0.5,-36.5 parent: 2 type: Transform - - uid: 10466 + - uid: 2598 components: - - pos: -2.5,-41.5 + - pos: 2.5,-37.5 parent: 2 type: Transform - - uid: 10467 + - uid: 2599 components: - - pos: -1.5,-41.5 + - pos: 4.5,-37.5 parent: 2 type: Transform - - uid: 10468 + - uid: 2600 components: - - pos: -0.5,-41.5 + - pos: 5.5,-37.5 parent: 2 type: Transform - - uid: 10469 + - uid: 2601 components: - - pos: 0.5,-41.5 + - pos: -6.5,-37.5 parent: 2 type: Transform - - uid: 10470 + - uid: 2602 components: - - pos: 1.5,-41.5 + - pos: -19.5,-35.5 parent: 2 type: Transform - - uid: 10471 + - uid: 2603 components: - - pos: 0.5,-40.5 + - pos: -19.5,-34.5 parent: 2 type: Transform - - uid: 10472 + - uid: 2604 components: - - pos: 0.5,-39.5 + - pos: -19.5,-33.5 parent: 2 type: Transform - - uid: 10473 + - uid: 2605 components: - - pos: 0.5,-38.5 + - pos: -19.5,-32.5 parent: 2 type: Transform - - uid: 10474 + - uid: 2606 components: - - pos: 0.5,-37.5 + - pos: -19.5,-31.5 parent: 2 type: Transform - - uid: 10475 + - uid: 2607 components: - - pos: 0.5,-36.5 + - pos: -19.5,-30.5 parent: 2 type: Transform - - uid: 10476 + - uid: 2608 components: - - pos: 1.5,-37.5 + - pos: -20.5,-31.5 parent: 2 type: Transform - - uid: 10479 + - uid: 2609 components: - - pos: 4.5,-37.5 + - pos: -21.5,-31.5 parent: 2 type: Transform - - uid: 10480 + - uid: 2610 components: - - pos: 5.5,-37.5 + - pos: -22.5,-31.5 parent: 2 type: Transform - - uid: 10481 + - uid: 2611 components: - - pos: 2.5,-42.5 + - pos: -22.5,-30.5 parent: 2 type: Transform - - uid: 10482 + - uid: 2612 components: - - pos: 2.5,-43.5 + - pos: -22.5,-29.5 parent: 2 type: Transform - - uid: 10483 + - uid: 2613 components: - - pos: 2.5,-44.5 + - pos: -22.5,-28.5 parent: 2 type: Transform - - uid: 10484 + - uid: 2614 components: - - pos: 2.5,-45.5 + - pos: -19.5,-39.5 parent: 2 type: Transform - - uid: 10485 + - uid: 2615 components: - - pos: 2.5,-46.5 + - pos: -19.5,-40.5 parent: 2 type: Transform - - uid: 10486 + - uid: 2616 components: - - pos: 2.5,-47.5 + - pos: -19.5,-41.5 parent: 2 type: Transform - - uid: 10487 + - uid: 2617 components: - - pos: 2.5,-48.5 + - pos: -19.5,-42.5 parent: 2 type: Transform - - uid: 10488 + - uid: 2618 components: - - pos: 2.5,-49.5 + - pos: -19.5,-43.5 parent: 2 type: Transform - - uid: 10489 + - uid: 2619 components: - - pos: 1.5,-49.5 + - pos: -19.5,-44.5 parent: 2 type: Transform - - uid: 10490 + - uid: 2620 components: - - pos: 0.5,-49.5 + - pos: -19.5,-45.5 parent: 2 type: Transform - - uid: 10491 + - uid: 2621 components: - - pos: -0.5,-49.5 + - pos: -19.5,-46.5 parent: 2 type: Transform - - uid: 10492 + - uid: 2622 components: - - pos: -1.5,-49.5 + - pos: -20.5,-46.5 parent: 2 type: Transform - - uid: 10493 + - uid: 2623 components: - - pos: -2.5,-49.5 + - pos: -21.5,-46.5 parent: 2 type: Transform - - uid: 10494 + - uid: 2624 components: - - pos: -3.5,-49.5 + - pos: -22.5,-46.5 parent: 2 type: Transform - - uid: 10495 + - uid: 2625 components: - - pos: 3.5,-49.5 + - pos: -23.5,-46.5 parent: 2 type: Transform - - uid: 10496 + - uid: 2626 components: - - pos: 4.5,-49.5 + - pos: -24.5,-46.5 parent: 2 type: Transform - - uid: 10497 + - uid: 2627 components: - - pos: 5.5,-49.5 + - pos: -25.5,-46.5 parent: 2 type: Transform - - uid: 10498 + - uid: 2628 components: - - pos: 6.5,-49.5 + - pos: -26.5,-46.5 parent: 2 type: Transform - - uid: 10499 + - uid: 2629 components: - - pos: -5.5,-41.5 + - pos: -27.5,-46.5 parent: 2 type: Transform - - uid: 10500 + - uid: 2630 components: - - pos: -6.5,-41.5 + - pos: -28.5,-46.5 parent: 2 type: Transform - - uid: 10501 + - uid: 2631 components: - - pos: -6.5,-40.5 + - pos: -29.5,-46.5 parent: 2 type: Transform - - uid: 10502 + - uid: 2632 components: - - pos: -6.5,-39.5 + - pos: -30.5,-46.5 parent: 2 type: Transform - - uid: 10503 + - uid: 2633 components: - - pos: -6.5,-38.5 + - pos: -31.5,-46.5 parent: 2 type: Transform - - uid: 10504 + - uid: 2634 components: - - pos: -6.5,-37.5 + - pos: -32.5,-46.5 parent: 2 type: Transform - - uid: 10510 + - uid: 2635 components: - - pos: -19.5,-35.5 + - pos: -33.5,-46.5 parent: 2 type: Transform - - uid: 10511 + - uid: 2636 components: - - pos: -19.5,-34.5 + - pos: -34.5,-46.5 parent: 2 type: Transform - - uid: 10512 + - uid: 2637 components: - - pos: -19.5,-33.5 + - pos: -35.5,-46.5 parent: 2 type: Transform - - uid: 10513 + - uid: 2638 components: - - pos: -19.5,-32.5 + - pos: -36.5,-46.5 parent: 2 type: Transform - - uid: 10514 + - uid: 2639 components: - - pos: -19.5,-31.5 + - pos: -37.5,-46.5 parent: 2 type: Transform - - uid: 10515 + - uid: 2640 components: - - pos: -19.5,-30.5 + - pos: -38.5,-46.5 parent: 2 type: Transform - - uid: 10516 + - uid: 2641 components: - - pos: -20.5,-31.5 + - pos: -38.5,-45.5 parent: 2 type: Transform - - uid: 10517 + - uid: 2642 components: - - pos: -21.5,-31.5 + - pos: -39.5,-45.5 parent: 2 type: Transform - - uid: 10518 + - uid: 2643 components: - - pos: -22.5,-31.5 + - pos: -39.5,-44.5 parent: 2 type: Transform - - uid: 10519 + - uid: 2644 components: - - pos: -22.5,-30.5 + - pos: -39.5,-43.5 parent: 2 type: Transform - - uid: 10520 + - uid: 2645 components: - - pos: -22.5,-29.5 + - pos: -39.5,-42.5 parent: 2 type: Transform - - uid: 10521 + - uid: 2646 components: - - pos: -22.5,-28.5 + - pos: -39.5,-41.5 parent: 2 type: Transform - - uid: 10522 + - uid: 2647 components: - - pos: -19.5,-39.5 + - pos: -39.5,-40.5 parent: 2 type: Transform - - uid: 10523 + - uid: 2648 components: - - pos: -19.5,-40.5 + - pos: -39.5,-39.5 parent: 2 type: Transform - - uid: 10524 - components: - - pos: -19.5,-41.5 - parent: 2 - type: Transform - - uid: 10525 - components: - - pos: -19.5,-42.5 - parent: 2 - type: Transform - - uid: 10526 - components: - - pos: -19.5,-43.5 - parent: 2 - type: Transform - - uid: 10527 - components: - - pos: -19.5,-44.5 - parent: 2 - type: Transform - - uid: 10528 - components: - - pos: -19.5,-45.5 - parent: 2 - type: Transform - - uid: 10529 - components: - - pos: -19.5,-46.5 - parent: 2 - type: Transform - - uid: 10530 - components: - - pos: -20.5,-46.5 - parent: 2 - type: Transform - - uid: 10531 - components: - - pos: -21.5,-46.5 - parent: 2 - type: Transform - - uid: 10532 - components: - - pos: -22.5,-46.5 - parent: 2 - type: Transform - - uid: 10533 - components: - - pos: -23.5,-46.5 - parent: 2 - type: Transform - - uid: 10534 - components: - - pos: -24.5,-46.5 - parent: 2 - type: Transform - - uid: 10535 - components: - - pos: -25.5,-46.5 - parent: 2 - type: Transform - - uid: 10536 - components: - - pos: -26.5,-46.5 - parent: 2 - type: Transform - - uid: 10537 - components: - - pos: -27.5,-46.5 - parent: 2 - type: Transform - - uid: 10538 - components: - - pos: -28.5,-46.5 - parent: 2 - type: Transform - - uid: 10539 - components: - - pos: -29.5,-46.5 - parent: 2 - type: Transform - - uid: 10540 - components: - - pos: -30.5,-46.5 - parent: 2 - type: Transform - - uid: 10541 - components: - - pos: -31.5,-46.5 - parent: 2 - type: Transform - - uid: 10542 - components: - - pos: -32.5,-46.5 - parent: 2 - type: Transform - - uid: 10543 - components: - - pos: -33.5,-46.5 - parent: 2 - type: Transform - - uid: 10544 - components: - - pos: -34.5,-46.5 - parent: 2 - type: Transform - - uid: 10545 - components: - - pos: -35.5,-46.5 - parent: 2 - type: Transform - - uid: 10546 - components: - - pos: -36.5,-46.5 - parent: 2 - type: Transform - - uid: 10547 - components: - - pos: -37.5,-46.5 - parent: 2 - type: Transform - - uid: 10548 - components: - - pos: -38.5,-46.5 - parent: 2 - type: Transform - - uid: 10549 - components: - - pos: -38.5,-45.5 - parent: 2 - type: Transform - - uid: 10550 - components: - - pos: -39.5,-45.5 - parent: 2 - type: Transform - - uid: 10551 - components: - - pos: -39.5,-44.5 - parent: 2 - type: Transform - - uid: 10552 - components: - - pos: -39.5,-43.5 - parent: 2 - type: Transform - - uid: 10553 - components: - - pos: -39.5,-42.5 - parent: 2 - type: Transform - - uid: 10554 - components: - - pos: -39.5,-41.5 - parent: 2 - type: Transform - - uid: 10555 - components: - - pos: -39.5,-40.5 - parent: 2 - type: Transform - - uid: 10556 - components: - - pos: -39.5,-39.5 - parent: 2 - type: Transform - - uid: 10557 + - uid: 2649 components: - pos: -39.5,-38.5 parent: 2 type: Transform - - uid: 10558 + - uid: 2650 components: - pos: -39.5,-37.5 parent: 2 type: Transform - - uid: 10559 + - uid: 2651 components: - pos: -39.5,-36.5 parent: 2 type: Transform - - uid: 10560 + - uid: 2652 components: - pos: -39.5,-35.5 parent: 2 type: Transform - - uid: 10561 + - uid: 2653 components: - pos: -39.5,-34.5 parent: 2 type: Transform - - uid: 10562 + - uid: 2654 components: - pos: -39.5,-33.5 parent: 2 type: Transform - - uid: 10563 + - uid: 2655 components: - pos: -39.5,-32.5 parent: 2 type: Transform - - uid: 10564 + - uid: 2656 components: - pos: -38.5,-32.5 parent: 2 type: Transform - - uid: 10565 + - uid: 2657 components: - pos: -38.5,-31.5 parent: 2 type: Transform - - uid: 10566 + - uid: 2658 components: - pos: -38.5,-30.5 parent: 2 type: Transform - - uid: 10567 + - uid: 2659 components: - pos: -37.5,-30.5 parent: 2 type: Transform - - uid: 10568 + - uid: 2660 components: - pos: -36.5,-30.5 parent: 2 type: Transform - - uid: 10569 + - uid: 2661 components: - pos: -35.5,-30.5 parent: 2 type: Transform - - uid: 10570 + - uid: 2662 components: - pos: -34.5,-30.5 parent: 2 type: Transform - - uid: 10571 + - uid: 2663 components: - pos: -33.5,-30.5 parent: 2 type: Transform - - uid: 10572 + - uid: 2664 components: - pos: -32.5,-30.5 parent: 2 type: Transform - - uid: 10573 + - uid: 2665 components: - pos: -31.5,-30.5 parent: 2 type: Transform - - uid: 10574 + - uid: 2666 components: - pos: -30.5,-30.5 parent: 2 type: Transform - - uid: 10575 + - uid: 2667 components: - pos: -29.5,-30.5 parent: 2 type: Transform - - uid: 10576 + - uid: 2668 components: - pos: -28.5,-30.5 parent: 2 type: Transform - - uid: 10577 + - uid: 2669 components: - pos: -27.5,-30.5 parent: 2 type: Transform - - uid: 10578 + - uid: 2670 components: - pos: -26.5,-30.5 parent: 2 type: Transform - - uid: 10579 + - uid: 2671 components: - pos: -25.5,-30.5 parent: 2 type: Transform - - uid: 10580 + - uid: 2672 components: - pos: -25.5,-31.5 parent: 2 type: Transform - - uid: 10581 + - uid: 2673 components: - pos: -24.5,-31.5 parent: 2 type: Transform - - uid: 10582 + - uid: 2674 components: - pos: -24.5,-33.5 parent: 2 type: Transform - - uid: 10583 + - uid: 2675 components: - pos: -24.5,-34.5 parent: 2 type: Transform - - uid: 10584 + - uid: 2676 components: - pos: -25.5,-34.5 parent: 2 type: Transform - - uid: 10587 + - uid: 2677 components: - pos: -11.5,-30.5 parent: 2 type: Transform - - uid: 10588 + - uid: 2678 components: - pos: -11.5,-31.5 parent: 2 type: Transform - - uid: 10589 + - uid: 2679 components: - pos: -8.5,-18.5 parent: 2 type: Transform - - uid: 10590 + - uid: 2680 components: - pos: -8.5,-19.5 parent: 2 type: Transform - - uid: 10591 + - uid: 2681 components: - pos: -11.5,-34.5 parent: 2 type: Transform - - uid: 10592 + - uid: 2682 components: - pos: -11.5,-35.5 parent: 2 type: Transform - - uid: 10593 + - uid: 2683 components: - pos: -11.5,-36.5 parent: 2 type: Transform - - uid: 10594 + - uid: 2684 components: - pos: -11.5,-37.5 parent: 2 type: Transform - - uid: 10595 + - uid: 2685 components: - pos: -11.5,-38.5 parent: 2 type: Transform - - uid: 10596 + - uid: 2686 components: - pos: -28.5,-1.5 parent: 2 type: Transform - - uid: 10597 + - uid: 2687 components: - pos: -35.5,-0.5 parent: 2 type: Transform - - uid: 10598 + - uid: 2688 components: - pos: -35.5,-1.5 parent: 2 type: Transform - - uid: 10599 + - uid: 2689 components: - pos: -11.5,-18.5 parent: 2 type: Transform - - uid: 10600 + - uid: 2690 components: - pos: -12.5,-18.5 parent: 2 type: Transform - - uid: 10601 + - uid: 2691 components: - pos: -13.5,-18.5 parent: 2 type: Transform - - uid: 10602 + - uid: 2692 components: - pos: -35.5,0.5 parent: 2 type: Transform - - uid: 10603 + - uid: 2693 components: - pos: -35.5,1.5 parent: 2 type: Transform - - uid: 10604 + - uid: 2694 components: - pos: -35.5,2.5 parent: 2 type: Transform - - uid: 10605 + - uid: 2695 components: - pos: -35.5,-2.5 parent: 2 type: Transform - - uid: 10606 + - uid: 2696 components: - pos: -34.5,-2.5 parent: 2 type: Transform - - uid: 10607 + - uid: 2697 components: - pos: -33.5,-2.5 parent: 2 type: Transform - - uid: 10608 + - uid: 2698 components: - pos: -32.5,-2.5 parent: 2 type: Transform - - uid: 10609 + - uid: 2699 components: - pos: -31.5,-2.5 parent: 2 type: Transform - - uid: 10610 + - uid: 2700 components: - pos: -30.5,-2.5 parent: 2 type: Transform - - uid: 10611 + - uid: 2701 components: - pos: -29.5,-2.5 parent: 2 type: Transform - - uid: 10612 + - uid: 2702 components: - pos: -28.5,-2.5 parent: 2 type: Transform - - uid: 10613 + - uid: 2703 components: - pos: -28.5,-0.5 parent: 2 type: Transform - - uid: 10616 + - uid: 2704 components: - pos: 5.5,-22.5 parent: 2 type: Transform - - uid: 10617 + - uid: 2705 components: - pos: 5.5,-23.5 parent: 2 type: Transform - - uid: 10618 + - uid: 2706 components: - pos: 4.5,-23.5 parent: 2 type: Transform - - uid: 10619 + - uid: 2707 components: - pos: 3.5,-23.5 parent: 2 type: Transform - - uid: 10620 + - uid: 2708 components: - pos: 2.5,-23.5 parent: 2 type: Transform - - uid: 10621 + - uid: 2709 components: - pos: 1.5,-23.5 parent: 2 type: Transform - - uid: 10622 + - uid: 2710 components: - pos: 0.5,-23.5 parent: 2 type: Transform - - uid: 10623 + - uid: 2711 components: - pos: -0.5,-23.5 parent: 2 type: Transform - - uid: 10624 + - uid: 2712 components: - pos: -1.5,-23.5 parent: 2 type: Transform - - uid: 10625 + - uid: 2713 components: - pos: -2.5,-23.5 parent: 2 type: Transform - - uid: 10626 + - uid: 2714 components: - pos: -3.5,-23.5 parent: 2 type: Transform - - uid: 10627 + - uid: 2715 components: - pos: -3.5,-22.5 parent: 2 type: Transform - - uid: 10628 + - uid: 2716 components: - pos: -3.5,-21.5 parent: 2 type: Transform - - uid: 10629 + - uid: 2717 components: - pos: -3.5,-20.5 parent: 2 type: Transform - - uid: 10630 + - uid: 2718 components: - pos: -3.5,-19.5 parent: 2 type: Transform - - uid: 10632 + - uid: 2719 components: - pos: -3.5,-17.5 parent: 2 type: Transform - - uid: 10633 + - uid: 2720 components: - pos: -3.5,-16.5 parent: 2 type: Transform - - uid: 10634 + - uid: 2721 components: - pos: -1.5,-24.5 parent: 2 type: Transform - - uid: 10635 + - uid: 2722 components: - pos: -1.5,-25.5 parent: 2 type: Transform - - uid: 10636 + - uid: 2723 components: - pos: -1.5,-26.5 parent: 2 type: Transform - - uid: 10637 + - uid: 2724 components: - pos: -1.5,-27.5 parent: 2 type: Transform - - uid: 10638 + - uid: 2725 components: - pos: -1.5,-28.5 parent: 2 type: Transform - - uid: 10643 + - uid: 2726 components: - pos: 5.5,-26.5 parent: 2 type: Transform - - uid: 10645 + - uid: 2727 components: - pos: 10.5,-22.5 parent: 2 type: Transform - - uid: 10652 + - uid: 2728 components: - pos: 10.5,-27.5 parent: 2 type: Transform - - uid: 10653 + - uid: 2729 components: - pos: 11.5,-27.5 parent: 2 type: Transform - - uid: 10654 + - uid: 2730 components: - pos: 12.5,-27.5 parent: 2 type: Transform - - uid: 10687 + - uid: 2731 components: - pos: 10.5,-35.5 parent: 2 type: Transform - - uid: 10694 + - uid: 2732 components: - pos: -18.5,-30.5 parent: 2 type: Transform - - uid: 10695 + - uid: 2733 components: - pos: -18.5,-29.5 parent: 2 type: Transform - - uid: 10696 + - uid: 2734 components: - pos: -18.5,-28.5 parent: 2 type: Transform - - uid: 10697 + - uid: 2735 components: - pos: -18.5,-27.5 parent: 2 type: Transform - - uid: 10698 + - uid: 2736 components: - pos: -22.5,-27.5 parent: 2 type: Transform - - uid: 10699 + - uid: 2737 components: - pos: -23.5,-27.5 parent: 2 type: Transform - - uid: 10700 + - uid: 2738 components: - pos: -24.5,-27.5 parent: 2 type: Transform - - uid: 10701 + - uid: 2739 components: - pos: -25.5,-27.5 parent: 2 type: Transform - - uid: 10702 + - uid: 2740 components: - pos: -26.5,-27.5 parent: 2 type: Transform - - uid: 10703 + - uid: 2741 components: - pos: -27.5,-27.5 parent: 2 type: Transform - - uid: 10704 + - uid: 2742 components: - pos: -28.5,-27.5 parent: 2 type: Transform - - uid: 10705 + - uid: 2743 components: - pos: -29.5,-27.5 parent: 2 type: Transform - - uid: 10706 + - uid: 2744 components: - pos: -30.5,-27.5 parent: 2 type: Transform - - uid: 10707 + - uid: 2745 components: - pos: -31.5,-27.5 parent: 2 type: Transform - - uid: 10835 + - uid: 2746 components: - pos: 19.5,6.5 parent: 2 type: Transform - - uid: 10887 + - uid: 2747 components: - pos: 22.5,20.5 parent: 2 type: Transform - - uid: 10888 + - uid: 2748 components: - pos: -52.5,-3.5 parent: 2 type: Transform - - uid: 10889 + - uid: 2749 components: - pos: -12.5,-17.5 parent: 2 type: Transform - - uid: 10891 + - uid: 2750 components: - pos: -31.5,-19.5 parent: 2 type: Transform - - uid: 10892 + - uid: 2751 components: - pos: -31.5,-18.5 parent: 2 type: Transform - - uid: 10893 + - uid: 2752 components: - pos: -34.5,-20.5 parent: 2 type: Transform - - uid: 10894 + - uid: 2753 components: - pos: -48.5,-3.5 parent: 2 type: Transform - - uid: 10895 + - uid: 2754 components: - pos: -52.5,-2.5 parent: 2 type: Transform - - uid: 10898 + - uid: 2755 components: - pos: 22.5,17.5 parent: 2 type: Transform - - uid: 10899 + - uid: 2756 components: - pos: 15.5,15.5 parent: 2 type: Transform - - uid: 10902 + - uid: 2757 components: - pos: 19.5,5.5 parent: 2 type: Transform - - uid: 10909 + - uid: 2758 components: - pos: -17.5,3.5 parent: 2 type: Transform - - uid: 10916 + - uid: 2759 components: - pos: -52.5,-4.5 parent: 2 type: Transform - - uid: 10917 + - uid: 2760 components: - pos: -46.5,-3.5 parent: 2 type: Transform - - uid: 11242 + - uid: 2761 components: - pos: 19.5,7.5 parent: 2 type: Transform - - uid: 11243 + - uid: 2762 components: - pos: 20.5,6.5 parent: 2 type: Transform - - uid: 11244 + - uid: 2763 components: - pos: 19.5,4.5 parent: 2 type: Transform - - uid: 11245 + - uid: 2764 components: - pos: 17.5,-8.5 parent: 2 type: Transform - - uid: 11248 + - uid: 2765 components: - pos: 21.5,6.5 parent: 2 type: Transform - - uid: 11249 + - uid: 2766 components: - pos: 17.5,-9.5 parent: 2 type: Transform - - uid: 11250 + - uid: 2767 components: - pos: 17.5,-10.5 parent: 2 type: Transform - - uid: 11251 + - uid: 2768 components: - pos: 17.5,-11.5 parent: 2 type: Transform - - uid: 11265 - components: - - pos: -7.5,-41.5 - parent: 2 - type: Transform - - uid: 11266 - components: - - pos: -7.5,-42.5 - parent: 2 - type: Transform - - uid: 11267 - components: - - pos: -7.5,-43.5 - parent: 2 - type: Transform - - uid: 11268 - components: - - pos: -7.5,-44.5 - parent: 2 - type: Transform - - uid: 11269 - components: - - pos: -6.5,-44.5 - parent: 2 - type: Transform - - uid: 11274 + - uid: 2769 components: - pos: -8.5,-29.5 parent: 2 type: Transform - - uid: 11275 + - uid: 2770 components: - pos: -8.5,-30.5 parent: 2 type: Transform - - uid: 11276 + - uid: 2771 components: - pos: -8.5,-31.5 parent: 2 type: Transform - - uid: 11277 + - uid: 2772 components: - pos: -7.5,-31.5 parent: 2 type: Transform - - uid: 11278 + - uid: 2773 components: - pos: -6.5,-31.5 parent: 2 type: Transform - - uid: 11279 + - uid: 2774 components: - pos: -5.5,-31.5 parent: 2 type: Transform - - uid: 11280 + - uid: 2775 components: - pos: -4.5,-31.5 parent: 2 type: Transform - - uid: 11281 + - uid: 2776 components: - pos: -3.5,-31.5 parent: 2 type: Transform - - uid: 11282 + - uid: 2777 components: - pos: -2.5,-31.5 parent: 2 type: Transform - - uid: 11283 + - uid: 2778 components: - pos: -1.5,-31.5 parent: 2 type: Transform - - uid: 11284 + - uid: 2779 components: - pos: -1.5,-32.5 parent: 2 type: Transform - - uid: 11285 + - uid: 2780 components: - pos: -1.5,-33.5 parent: 2 type: Transform - - uid: 11286 + - uid: 2781 components: - pos: -0.5,-31.5 parent: 2 type: Transform - - uid: 11287 + - uid: 2782 components: - pos: -0.5,-33.5 parent: 2 type: Transform - - uid: 11479 + - uid: 2783 components: - pos: 39.5,-10.5 parent: 2 type: Transform - - uid: 11537 + - uid: 2784 components: - pos: 5.5,-27.5 parent: 2 type: Transform - - uid: 11594 + - uid: 2785 components: - pos: 5.5,-24.5 parent: 2 type: Transform - - uid: 11864 + - uid: 2786 components: - pos: 20.5,-29.5 parent: 2 type: Transform - - uid: 11961 + - uid: 2787 components: - pos: 29.5,25.5 parent: 2 type: Transform - - uid: 12144 + - uid: 2788 components: - pos: 28.5,26.5 parent: 2 type: Transform - - uid: 12210 + - uid: 2789 components: - pos: 28.5,25.5 parent: 2 type: Transform - - uid: 12398 + - uid: 2790 components: - pos: 16.5,-23.5 parent: 2 type: Transform - - uid: 12500 + - uid: 2791 components: - pos: 16.5,-24.5 parent: 2 type: Transform - - uid: 12530 + - uid: 2792 components: - pos: 5.5,-12.5 parent: 2 type: Transform - - uid: 12534 + - uid: 2793 components: - pos: 5.5,-13.5 parent: 2 type: Transform - - uid: 12537 + - uid: 2794 components: - pos: 13.5,-12.5 parent: 2 type: Transform - - uid: 12538 + - uid: 2795 components: - pos: 13.5,-11.5 parent: 2 type: Transform - - uid: 12539 + - uid: 2796 components: - pos: 13.5,-10.5 parent: 2 type: Transform - - uid: 12556 + - uid: 2797 components: - pos: 5.5,-11.5 parent: 2 type: Transform - - uid: 12685 + - uid: 2798 components: - pos: -47.5,9.5 parent: 2 type: Transform - - uid: 12997 + - uid: 2799 components: - pos: -18.5,-46.5 parent: 2 type: Transform - - uid: 13000 + - uid: 2800 components: - pos: -17.5,-46.5 parent: 2 type: Transform - - uid: 13001 + - uid: 2801 components: - pos: -17.5,-47.5 parent: 2 type: Transform - - uid: 13002 + - uid: 2802 components: - pos: -17.5,-48.5 parent: 2 type: Transform - - uid: 13003 + - uid: 2803 components: - pos: -17.5,-49.5 parent: 2 type: Transform - - uid: 13122 + - uid: 2804 components: - pos: -12.5,41.5 parent: 2 type: Transform - - uid: 13143 + - uid: 2805 components: - pos: -16.5,-62.5 parent: 2 type: Transform - - uid: 13164 + - uid: 2806 components: - pos: -12.5,39.5 parent: 2 type: Transform - - uid: 13230 + - uid: 2807 components: - pos: -35.5,28.5 parent: 2 type: Transform - - uid: 13323 + - uid: 2808 components: - pos: -35.5,29.5 parent: 2 type: Transform - - uid: 13595 + - uid: 2809 components: - pos: -12.5,40.5 parent: 2 type: Transform - - uid: 13625 + - uid: 2810 components: - pos: 7.5,-11.5 parent: 2 type: Transform - - uid: 13629 + - uid: 2811 components: - pos: 21.5,-32.5 parent: 2 type: Transform - - uid: 13944 + - uid: 2812 components: - pos: -29.5,30.5 parent: 2 type: Transform - - uid: 13945 + - uid: 2813 components: - pos: -29.5,31.5 parent: 2 type: Transform - - uid: 14692 + - uid: 2814 components: - pos: -16.5,-60.5 parent: 2 type: Transform - - uid: 14881 + - uid: 2815 components: - pos: -16.5,-59.5 parent: 2 type: Transform - - uid: 14919 + - uid: 2816 components: - pos: -16.5,-58.5 parent: 2 type: Transform - - uid: 14920 + - uid: 2817 components: - pos: -16.5,-57.5 parent: 2 type: Transform - - uid: 14921 + - uid: 2818 components: - pos: -16.5,-56.5 parent: 2 type: Transform - - uid: 14922 + - uid: 2819 components: - pos: -16.5,-55.5 parent: 2 type: Transform - - uid: 14923 + - uid: 2820 components: - pos: -16.5,-54.5 parent: 2 type: Transform - - uid: 14924 + - uid: 2821 components: - pos: -16.5,-53.5 parent: 2 type: Transform - - uid: 14925 + - uid: 2822 components: - pos: -16.5,-52.5 parent: 2 type: Transform - - uid: 14926 + - uid: 2823 components: - pos: -16.5,-51.5 parent: 2 type: Transform - - uid: 14927 + - uid: 2824 components: - pos: -16.5,-50.5 parent: 2 type: Transform - - uid: 14928 + - uid: 2825 components: - pos: -16.5,-49.5 parent: 2 type: Transform - - uid: 15100 + - uid: 2826 components: - pos: -1.5,-17.5 parent: 2 type: Transform - - uid: 15204 + - uid: 2827 components: - pos: -35.5,30.5 parent: 2 type: Transform - - uid: 15304 + - uid: 2828 components: - pos: -46.5,43.5 parent: 2 type: Transform - - uid: 15310 + - uid: 2829 components: - pos: 16.5,18.5 parent: 2 type: Transform - - uid: 15354 + - uid: 2830 components: - pos: -47.5,43.5 parent: 2 type: Transform - - uid: 15500 + - uid: 2831 components: - pos: -16.5,-61.5 parent: 2 type: Transform - - uid: 15858 + - uid: 2832 components: - pos: -28.5,31.5 parent: 2 type: Transform - - uid: 15859 + - uid: 2833 components: - pos: -30.5,31.5 parent: 2 type: Transform - - uid: 15861 + - uid: 2834 components: - pos: -24.5,34.5 parent: 2 type: Transform - - uid: 15862 + - uid: 2835 components: - pos: -25.5,34.5 parent: 2 type: Transform - - uid: 15863 + - uid: 2836 components: - pos: -26.5,34.5 parent: 2 type: Transform - - uid: 15864 + - uid: 2837 components: - pos: -27.5,34.5 parent: 2 type: Transform - - uid: 15865 + - uid: 2838 components: - pos: -28.5,34.5 parent: 2 type: Transform - - uid: 15958 + - uid: 2839 components: - pos: 6.5,-37.5 parent: 2 type: Transform - - uid: 16032 + - uid: 2840 components: - pos: 19.5,-32.5 parent: 2 type: Transform - - uid: 16063 + - uid: 2841 components: - pos: -12.5,42.5 parent: 2 type: Transform - - uid: 16111 + - uid: 2842 components: - pos: -1.5,-18.5 parent: 2 type: Transform - - uid: 16167 + - uid: 2843 components: - pos: -28.5,-26.5 parent: 2 type: Transform - - uid: 16242 + - uid: 2844 components: - pos: -62.5,34.5 parent: 2 type: Transform - - uid: 16243 + - uid: 2845 components: - pos: -62.5,35.5 parent: 2 type: Transform - - uid: 16244 + - uid: 2846 components: - pos: -62.5,36.5 parent: 2 type: Transform - - uid: 16253 + - uid: 2847 components: - pos: 23.5,6.5 parent: 2 type: Transform - - uid: 16474 - components: - - pos: 4.5,-45.5 - parent: 2 - type: Transform - - uid: 16482 - components: - - pos: 4.5,-43.5 - parent: 2 - type: Transform - - uid: 16520 - components: - - pos: 5.5,-43.5 - parent: 2 - type: Transform - - uid: 16521 - components: - - pos: 5.5,-45.5 - parent: 2 - type: Transform - - uid: 16527 + - uid: 2848 components: - pos: 24.5,6.5 parent: 2 type: Transform - - uid: 16575 + - uid: 2849 components: - pos: -46.5,-15.5 parent: 2 type: Transform - - uid: 16620 + - uid: 2850 components: - pos: 22.5,6.5 parent: 2 type: Transform - - uid: 16621 + - uid: 2851 components: - pos: 22.5,5.5 parent: 2 type: Transform - - uid: 16622 + - uid: 2852 components: - pos: 22.5,4.5 parent: 2 type: Transform - - uid: 16623 + - uid: 2853 components: - pos: 22.5,7.5 parent: 2 type: Transform - - uid: 16624 + - uid: 2854 components: - pos: 18.5,4.5 parent: 2 type: Transform - - uid: 16625 + - uid: 2855 components: - pos: 21.5,4.5 parent: 2 type: Transform - - uid: 16634 + - uid: 2856 components: - pos: -16.5,-65.5 parent: 2 type: Transform - - uid: 16643 + - uid: 2857 components: - pos: -32.5,-18.5 parent: 2 type: Transform - - uid: 16644 + - uid: 2858 components: - pos: -40.5,-15.5 parent: 2 type: Transform - - uid: 16645 + - uid: 2859 components: - pos: -41.5,-15.5 parent: 2 type: Transform - - uid: 16646 + - uid: 2860 components: - pos: -39.5,-16.5 parent: 2 type: Transform - - uid: 16647 + - uid: 2861 components: - pos: -40.5,-12.5 parent: 2 type: Transform - - uid: 16648 + - uid: 2862 components: - pos: -41.5,-12.5 parent: 2 type: Transform - - uid: 16747 + - uid: 2863 components: - pos: -43.5,36.5 parent: 2 type: Transform - - uid: 16748 + - uid: 2864 components: - pos: -44.5,36.5 parent: 2 type: Transform - - uid: 16749 + - uid: 2865 components: - pos: -42.5,36.5 parent: 2 type: Transform - - uid: 16750 + - uid: 2866 components: - pos: -42.5,35.5 parent: 2 type: Transform - - uid: 16751 + - uid: 2867 components: - pos: -35.5,31.5 parent: 2 type: Transform - - uid: 16752 + - uid: 2868 components: - pos: -35.5,32.5 parent: 2 type: Transform - - uid: 16753 + - uid: 2869 components: - pos: -35.5,33.5 parent: 2 type: Transform - - uid: 16761 + - uid: 2870 components: - pos: -47.5,40.5 parent: 2 type: Transform - - uid: 16853 - components: - - pos: 6.5,-43.5 - parent: 2 - type: Transform - - uid: 16929 + - uid: 2871 components: - pos: 25.5,6.5 parent: 2 type: Transform - - uid: 16941 + - uid: 2872 components: - pos: 31.5,26.5 parent: 2 type: Transform - - uid: 16942 + - uid: 2873 components: - pos: 31.5,25.5 parent: 2 type: Transform - - uid: 16943 + - uid: 2874 components: - pos: 31.5,24.5 parent: 2 type: Transform - - uid: 16944 + - uid: 2875 components: - pos: 31.5,23.5 parent: 2 type: Transform - - uid: 17022 + - uid: 2876 components: - pos: 19.5,19.5 parent: 2 type: Transform - - uid: 17023 + - uid: 2877 components: - pos: 19.5,20.5 parent: 2 type: Transform - - uid: 17024 + - uid: 2878 components: - pos: 19.5,21.5 parent: 2 type: Transform - - uid: 17025 + - uid: 2879 components: - pos: 18.5,21.5 parent: 2 type: Transform - - uid: 17026 + - uid: 2880 components: - pos: 17.5,21.5 parent: 2 type: Transform - - uid: 17027 + - uid: 2881 components: - pos: 16.5,21.5 parent: 2 type: Transform - - uid: 17028 + - uid: 2882 components: - pos: 15.5,21.5 parent: 2 type: Transform - - uid: 17029 + - uid: 2883 components: - pos: 15.5,20.5 parent: 2 type: Transform - - uid: 17030 + - uid: 2884 components: - pos: 15.5,19.5 parent: 2 type: Transform - - uid: 17065 + - uid: 2885 components: - pos: 26.5,6.5 parent: 2 type: Transform - - uid: 17068 + - uid: 2886 components: - pos: -10.5,-22.5 parent: 2 type: Transform - - uid: 17069 + - uid: 2887 components: - pos: 25.5,-18.5 parent: 2 type: Transform - - uid: 17070 + - uid: 2888 components: - pos: 25.5,-17.5 parent: 2 type: Transform - - uid: 17071 + - uid: 2889 components: - pos: 25.5,-16.5 parent: 2 type: Transform - - uid: 17074 + - uid: 2890 components: - pos: 27.5,6.5 parent: 2 type: Transform - - uid: 17075 + - uid: 2891 components: - pos: 27.5,5.5 parent: 2 type: Transform - - uid: 17076 + - uid: 2892 components: - pos: 26.5,7.5 parent: 2 type: Transform - - uid: 17077 + - uid: 2893 components: - pos: 26.5,8.5 parent: 2 type: Transform - - uid: 17078 + - uid: 2894 components: - pos: 27.5,4.5 parent: 2 type: Transform - - uid: 17095 + - uid: 2895 components: - pos: 10.5,-34.5 parent: 2 type: Transform - - uid: 17096 + - uid: 2896 components: - pos: 10.5,-33.5 parent: 2 type: Transform - - uid: 17097 + - uid: 2897 components: - pos: 10.5,-32.5 parent: 2 type: Transform - - uid: 17098 + - uid: 2898 components: - pos: 10.5,-38.5 parent: 2 type: Transform - - uid: 17099 + - uid: 2899 components: - pos: 10.5,-39.5 parent: 2 type: Transform - - uid: 17100 + - uid: 2900 components: - pos: 10.5,-40.5 parent: 2 type: Transform - - uid: 17101 + - uid: 2901 components: - pos: 10.5,-41.5 parent: 2 type: Transform - - uid: 17102 + - uid: 2902 components: - pos: 10.5,-42.5 parent: 2 type: Transform - - uid: 17103 + - uid: 2903 components: - pos: 10.5,-43.5 parent: 2 type: Transform - - uid: 17104 + - uid: 2904 components: - pos: 10.5,-44.5 parent: 2 type: Transform - - uid: 17105 + - uid: 2905 components: - pos: 10.5,-45.5 parent: 2 type: Transform - - uid: 17106 + - uid: 2906 components: - pos: 10.5,-46.5 parent: 2 type: Transform - - uid: 17107 + - uid: 2907 components: - pos: 11.5,-46.5 parent: 2 type: Transform - - uid: 17108 + - uid: 2908 components: - pos: 12.5,-46.5 parent: 2 type: Transform - - uid: 17109 + - uid: 2909 components: - pos: 13.5,-46.5 parent: 2 type: Transform - - uid: 17110 + - uid: 2910 components: - pos: 14.5,-46.5 parent: 2 type: Transform - - uid: 17111 + - uid: 2911 components: - pos: 15.5,-46.5 parent: 2 type: Transform - - uid: 17112 + - uid: 2912 components: - pos: 16.5,-46.5 parent: 2 type: Transform - - uid: 17113 + - uid: 2913 components: - pos: 17.5,-46.5 parent: 2 type: Transform - - uid: 17114 + - uid: 2914 components: - pos: 18.5,-46.5 parent: 2 type: Transform - - uid: 17115 + - uid: 2915 components: - pos: 19.5,-46.5 parent: 2 type: Transform - - uid: 17117 + - uid: 2916 components: - pos: 7.5,-39.5 parent: 2 type: Transform - - uid: 17118 + - uid: 2917 components: - pos: 7.5,-40.5 parent: 2 type: Transform - - uid: 17119 + - uid: 2918 components: - pos: 8.5,-38.5 parent: 2 type: Transform - - uid: 17121 + - uid: 2919 components: - pos: 5.5,-38.5 parent: 2 type: Transform - - uid: 17127 + - uid: 2920 components: - pos: 9.5,-38.5 parent: 2 type: Transform - - uid: 17146 + - uid: 2921 components: - pos: 17.5,-47.5 parent: 2 type: Transform - - uid: 17147 + - uid: 2922 components: - pos: 17.5,-48.5 parent: 2 type: Transform -- proto: CableApcStack - entities: - - uid: 2720 + - uid: 2923 components: - - pos: -18.445934,-34.611988 + - pos: -0.5,-38.5 parent: 2 type: Transform - - uid: 4672 + - uid: 2924 components: - - pos: -48.395123,32.474678 + - pos: -1.5,-38.5 parent: 2 type: Transform - - uid: 5898 + - uid: 2925 components: - - pos: -48.582623,32.67273 + - pos: -2.5,-38.5 parent: 2 type: Transform - - uid: 16763 + - uid: 2926 components: - - pos: -11.594626,-24.636341 + - pos: -3.5,-38.5 parent: 2 type: Transform -- proto: CableApcStack1 - entities: - - uid: 11127 + - uid: 2927 components: - - rot: -1.5707963267948966 rad - pos: -47.609608,-13.161642 + - pos: -4.5,-38.5 parent: 2 type: Transform - - uid: 15173 + - uid: 2928 components: - - rot: -1.5707963267948966 rad - pos: 0.88972664,26.43372 + - pos: -5.5,-38.5 parent: 2 type: Transform - - uid: 15175 + - uid: 2929 components: - - pos: 11.112434,29.7345 + - pos: -6.5,-38.5 parent: 2 type: Transform - - uid: 15177 + - uid: 2930 components: - - rot: 1.5707963267948966 rad - pos: 28.286758,28.64075 + - pos: -6.5,-39.5 parent: 2 type: Transform - - uid: 15182 + - uid: 2931 components: - - rot: 3.141592653589793 rad - pos: 38.7004,15.541313 + - pos: -2.5,-37.5 parent: 2 type: Transform - - uid: 16315 + - uid: 2932 components: - - rot: -1.5707963267948966 rad - pos: -47.44294,-13.2971525 + - pos: -2.5,-36.5 parent: 2 type: Transform -- proto: CableHV - entities: - - uid: 346 + - uid: 2933 components: - - pos: -16.5,-60.5 + - pos: -2.5,-35.5 parent: 2 type: Transform - - uid: 508 + - uid: 2934 components: - - pos: -44.5,57.5 + - pos: 1.5,-37.5 parent: 2 type: Transform - - uid: 521 + - uid: 2935 components: - - pos: -48.5,58.5 + - pos: 3.5,-37.5 parent: 2 type: Transform - - uid: 535 + - uid: 2936 components: - - pos: -47.5,58.5 + - pos: -1.5,-39.5 parent: 2 type: Transform - - uid: 536 + - uid: 2937 components: - - pos: -42.5,68.5 + - pos: -1.5,-40.5 parent: 2 type: Transform - - uid: 550 + - uid: 2938 components: - - pos: -44.5,58.5 + - pos: -1.5,-41.5 parent: 2 type: Transform - - uid: 553 + - uid: 2939 components: - - pos: -46.5,58.5 + - pos: -1.5,-42.5 parent: 2 type: Transform - - uid: 554 + - uid: 2940 components: - - pos: -42.5,67.5 + - pos: -1.5,-43.5 parent: 2 type: Transform - - uid: 563 + - uid: 2941 components: - - pos: -40.5,56.5 + - pos: -1.5,-44.5 parent: 2 type: Transform - - uid: 565 + - uid: 2942 components: - - pos: -39.5,56.5 + - pos: -1.5,-45.5 parent: 2 type: Transform - - uid: 567 + - uid: 2943 components: - - pos: -40.5,61.5 + - pos: -1.5,-46.5 parent: 2 type: Transform - - uid: 570 + - uid: 2944 components: - - pos: -41.5,61.5 + - pos: -1.5,-47.5 parent: 2 type: Transform - - uid: 597 + - uid: 2945 components: - - pos: -36.5,60.5 + - pos: -1.5,-48.5 parent: 2 type: Transform - - uid: 619 + - uid: 2946 components: - - pos: -40.5,62.5 + - pos: -1.5,-49.5 parent: 2 type: Transform - - uid: 620 + - uid: 2947 components: - - pos: -37.5,58.5 + - pos: -1.5,-50.5 parent: 2 type: Transform - - uid: 644 + - uid: 2948 components: - - pos: -35.5,58.5 + - pos: -1.5,-51.5 parent: 2 type: Transform - - uid: 646 + - uid: 2949 components: - - pos: -36.5,56.5 + - pos: -2.5,-44.5 parent: 2 type: Transform - - uid: 647 + - uid: 2950 components: - - pos: -37.5,60.5 + - pos: -3.5,-44.5 parent: 2 type: Transform - - uid: 649 + - uid: 2951 components: - - pos: -35.5,56.5 + - pos: -4.5,-44.5 parent: 2 type: Transform - - uid: 706 + - uid: 2952 components: - - pos: -39.5,56.5 + - pos: -5.5,-44.5 parent: 2 type: Transform - - uid: 720 + - uid: 2953 components: - - pos: -38.5,60.5 + - pos: -6.5,-44.5 parent: 2 type: Transform - - uid: 731 + - uid: 2954 components: - - pos: -40.5,57.5 + - pos: -7.5,-44.5 parent: 2 type: Transform - - uid: 732 + - uid: 2955 components: - - pos: -41.5,57.5 + - pos: -7.5,-45.5 parent: 2 type: Transform - - uid: 734 + - uid: 2956 components: - - pos: -42.5,58.5 + - pos: -7.5,-46.5 parent: 2 type: Transform - - uid: 736 + - uid: 2957 components: - - pos: -35.5,60.5 + - pos: -7.5,-47.5 parent: 2 type: Transform - - uid: 738 + - uid: 2958 components: - - pos: -42.5,57.5 + - pos: -7.5,-48.5 parent: 2 type: Transform - - uid: 739 + - uid: 2959 components: - - pos: -42.5,56.5 + - pos: -7.5,-50.5 parent: 2 type: Transform - - uid: 741 + - uid: 2960 components: - - pos: -42.5,55.5 + - pos: -7.5,-49.5 parent: 2 type: Transform - - uid: 749 + - uid: 2961 components: - - pos: 2.5,-19.5 + - pos: -0.5,-51.5 parent: 2 type: Transform - - uid: 750 + - uid: 2962 components: - - pos: -42.5,54.5 + - pos: 0.5,-51.5 parent: 2 type: Transform - - uid: 751 + - uid: 2963 components: - - pos: -42.5,53.5 + - pos: 1.5,-51.5 parent: 2 type: Transform - - uid: 760 + - uid: 2964 components: - - pos: -42.5,51.5 + - pos: 1.5,-51.5 parent: 2 type: Transform - - uid: 763 + - uid: 2965 components: - - pos: -39.5,62.5 + - pos: 1.5,-51.5 parent: 2 type: Transform - - uid: 794 + - uid: 2966 components: - - pos: 45.5,12.5 + - pos: 1.5,-52.5 parent: 2 type: Transform - - uid: 795 + - uid: 2967 components: - - pos: 45.5,13.5 + - pos: 1.5,-53.5 parent: 2 type: Transform - - uid: 799 + - uid: 2968 components: - - pos: 43.5,13.5 + - pos: 2.5,-53.5 parent: 2 type: Transform - - uid: 879 + - uid: 2969 components: - - pos: -36.5,58.5 + - pos: 3.5,-53.5 parent: 2 type: Transform - - uid: 1065 + - uid: 2970 components: - - pos: 44.5,13.5 + - pos: 3.5,-52.5 parent: 2 type: Transform - - uid: 1131 + - uid: 2971 components: - - pos: 49.5,11.5 + - pos: 3.5,-51.5 parent: 2 type: Transform - - uid: 1161 + - uid: 2972 components: - - pos: -4.5,-22.5 + - pos: 3.5,-50.5 parent: 2 type: Transform - - uid: 1167 + - uid: 2973 components: - - pos: -1.5,-3.5 + - pos: 3.5,-49.5 parent: 2 type: Transform - - uid: 1296 + - uid: 2974 components: - - pos: -0.5,-26.5 + - pos: 3.5,-48.5 parent: 2 type: Transform - - uid: 1349 + - uid: 2975 components: - - pos: 0.5,-25.5 + - pos: 3.5,-47.5 parent: 2 type: Transform - - uid: 1351 + - uid: 2976 components: - - pos: 3.5,-26.5 + - pos: 3.5,-46.5 parent: 2 type: Transform - - uid: 1356 + - uid: 2977 components: - - pos: -4.5,-23.5 + - pos: 3.5,-45.5 parent: 2 type: Transform - - uid: 1358 + - uid: 2978 components: - - pos: 2.5,-26.5 + - pos: 3.5,-44.5 parent: 2 type: Transform - - uid: 1359 + - uid: 2979 components: - - pos: 5.5,-26.5 + - pos: 3.5,-43.5 parent: 2 type: Transform - - uid: 1364 + - uid: 2980 components: - - pos: 4.5,-26.5 + - pos: 3.5,-42.5 parent: 2 type: Transform - - uid: 1366 + - uid: 2981 components: - - pos: -3.5,-24.5 + - pos: 3.5,-41.5 parent: 2 type: Transform - - uid: 1367 + - uid: 2982 components: - - pos: -3.5,-25.5 + - pos: 3.5,-40.5 parent: 2 type: Transform - - uid: 1368 + - uid: 2983 components: - - pos: -3.5,-26.5 + - pos: 4.5,-50.5 parent: 2 type: Transform - - uid: 1369 + - uid: 2984 components: - - pos: -2.5,-26.5 + - pos: 5.5,-50.5 parent: 2 type: Transform - - uid: 1370 + - uid: 2985 components: - - pos: -2.5,-25.5 + - pos: 6.5,-50.5 parent: 2 type: Transform - - uid: 1371 + - uid: 2986 components: - - pos: -2.5,-24.5 + - pos: 7.5,-50.5 parent: 2 type: Transform - - uid: 1372 + - uid: 2987 components: - - pos: -3.5,-23.5 + - pos: 7.5,-48.5 parent: 2 type: Transform - - uid: 1374 + - uid: 2988 components: - - pos: -2.5,-23.5 + - pos: 6.5,-48.5 parent: 2 type: Transform - - uid: 1382 + - uid: 2989 components: - - pos: -1.5,-23.5 + - pos: 5.5,-48.5 parent: 2 type: Transform - - uid: 1383 + - uid: 2990 components: - - pos: -0.5,-23.5 + - pos: 4.5,-48.5 parent: 2 type: Transform - - uid: 1384 + - uid: 2991 components: - - pos: -5.5,-23.5 + - pos: 4.5,-46.5 parent: 2 type: Transform - - uid: 1385 + - uid: 2992 components: - - pos: 0.5,-26.5 + - pos: 5.5,-46.5 parent: 2 type: Transform - - uid: 1388 + - uid: 2993 components: - - pos: 0.5,-23.5 + - pos: 6.5,-46.5 parent: 2 type: Transform - - uid: 1406 + - uid: 2994 components: - - pos: -1.5,-26.5 + - pos: 7.5,-46.5 parent: 2 type: Transform - - uid: 1410 + - uid: 2995 components: - - pos: 1.5,-23.5 + - pos: 7.5,-46.5 parent: 2 type: Transform - - uid: 1414 + - uid: 2996 components: - - pos: 1.5,-26.5 + - pos: 7.5,-44.5 parent: 2 type: Transform - - uid: 1491 + - uid: 2997 components: - - pos: -0.5,-11.5 + - pos: 6.5,-44.5 parent: 2 type: Transform - - uid: 1550 + - uid: 2998 components: - - pos: 1.5,-19.5 + - pos: 5.5,-44.5 parent: 2 type: Transform - - uid: 1551 + - uid: 2999 components: - - pos: 1.5,-18.5 + - pos: 4.5,-44.5 parent: 2 type: Transform - - uid: 1552 + - uid: 3000 components: - - pos: 1.5,-17.5 + - pos: 4.5,-42.5 parent: 2 type: Transform - - uid: 1553 + - uid: 3001 components: - - pos: 1.5,-16.5 + - pos: 5.5,-42.5 parent: 2 type: Transform - - uid: 1554 + - uid: 3002 components: - - pos: 1.5,-15.5 + - pos: 6.5,-42.5 parent: 2 type: Transform - - uid: 1555 + - uid: 3003 components: - - pos: 1.5,-14.5 + - pos: 7.5,-42.5 parent: 2 type: Transform - - uid: 1556 + - uid: 3004 components: - - pos: 1.5,-13.5 + - pos: 7.5,-42.5 parent: 2 type: Transform - - uid: 1559 + - uid: 3005 components: - - pos: -0.5,-12.5 + - pos: -8.5,-50.5 parent: 2 type: Transform - - uid: 1560 + - uid: 3006 components: - - pos: 0.5,-13.5 + - pos: -8.5,-51.5 parent: 2 type: Transform - - uid: 1561 + - uid: 3007 components: - - pos: -0.5,-13.5 + - pos: -7.5,-51.5 parent: 2 type: Transform - - uid: 1562 + - uid: 3008 components: - - pos: -1.5,-10.5 + - pos: -6.5,-51.5 parent: 2 type: Transform - - uid: 1563 + - uid: 3009 components: - - pos: -1.5,-9.5 + - pos: -5.5,-51.5 parent: 2 type: Transform - - uid: 1564 + - uid: 3010 components: - - pos: -1.5,-8.5 + - pos: -4.5,-51.5 parent: 2 type: Transform - - uid: 1565 + - uid: 3011 components: - - pos: -1.5,-7.5 + - pos: -3.5,-51.5 parent: 2 type: Transform - - uid: 1566 + - uid: 3012 components: - - pos: -1.5,-6.5 + - pos: -2.5,-51.5 parent: 2 type: Transform - - uid: 1567 + - uid: 3013 components: - - pos: -1.5,-5.5 + - pos: -0.5,-44.5 parent: 2 type: Transform - - uid: 1570 + - uid: 3014 components: - - pos: -0.5,-10.5 + - pos: 0.5,-44.5 parent: 2 type: Transform - - uid: 1571 + - uid: 3015 components: - - pos: 0.5,-10.5 + - pos: 1.5,-44.5 parent: 2 type: Transform - - uid: 1572 +- proto: CableApcStack + entities: + - uid: 3016 components: - - pos: 1.5,-10.5 + - pos: -18.445934,-34.611988 parent: 2 type: Transform - - uid: 1573 + - uid: 3017 components: - - pos: 1.5,-9.5 + - pos: -48.395123,32.474678 parent: 2 type: Transform - - uid: 1821 + - uid: 3018 components: - - pos: -7.5,-24.5 + - pos: -48.582623,32.67273 parent: 2 type: Transform - - uid: 1827 + - uid: 3019 components: - - pos: -16.5,-39.5 + - pos: -11.594626,-24.636341 parent: 2 type: Transform - - uid: 1858 +- proto: CableApcStack1 + entities: + - uid: 3020 components: - - pos: -7.5,-23.5 + - rot: -1.5707963267948966 rad + pos: -47.609608,-13.161642 parent: 2 type: Transform - - uid: 1859 + - uid: 3021 components: - - pos: -7.5,-26.5 + - rot: -1.5707963267948966 rad + pos: 0.88972664,26.43372 parent: 2 type: Transform - - uid: 1860 + - uid: 3022 components: - - pos: -7.5,-27.5 + - pos: 11.112434,29.7345 parent: 2 type: Transform - - uid: 1863 + - uid: 3023 components: - - pos: -6.5,-23.5 + - rot: 1.5707963267948966 rad + pos: 28.286758,28.64075 parent: 2 type: Transform - - uid: 1877 + - uid: 3024 components: - - pos: -7.5,-28.5 + - rot: 3.141592653589793 rad + pos: 38.7004,15.541313 parent: 2 type: Transform - - uid: 2050 + - uid: 3025 components: - - pos: -1.5,-21.5 + - rot: -1.5707963267948966 rad + pos: -47.44294,-13.2971525 parent: 2 type: Transform - - uid: 2055 +- proto: CableHV + entities: + - uid: 3026 components: - - pos: -1.5,-22.5 + - pos: -16.5,-60.5 parent: 2 type: Transform - - uid: 2339 + - uid: 3027 components: - - pos: -45.5,58.5 + - pos: -44.5,57.5 parent: 2 type: Transform - - uid: 2417 + - uid: 3028 components: - - pos: -23.5,-32.5 + - pos: -48.5,58.5 parent: 2 type: Transform - - uid: 2418 + - uid: 3029 components: - - pos: -22.5,-32.5 + - pos: -47.5,58.5 parent: 2 type: Transform - - uid: 2419 + - uid: 3030 components: - - pos: -21.5,-32.5 + - pos: -42.5,68.5 parent: 2 type: Transform - - uid: 2482 + - uid: 3031 components: - - pos: -24.5,-32.5 + - pos: -44.5,58.5 parent: 2 type: Transform - - uid: 2487 + - uid: 3032 components: - - pos: -38.5,-30.5 + - pos: -46.5,58.5 parent: 2 type: Transform - - uid: 2522 + - uid: 3033 components: - - pos: -29.5,-30.5 + - pos: -42.5,67.5 parent: 2 type: Transform - - uid: 2525 + - uid: 3034 components: - - pos: -31.5,-25.5 + - pos: -40.5,56.5 parent: 2 type: Transform - - uid: 2528 + - uid: 3035 components: - - pos: -38.5,-31.5 + - pos: -39.5,56.5 parent: 2 type: Transform - - uid: 2529 + - uid: 3036 components: - - pos: -38.5,-32.5 + - pos: -40.5,61.5 parent: 2 type: Transform - - uid: 2530 + - uid: 3037 components: - - pos: -39.5,-32.5 + - pos: -41.5,61.5 parent: 2 type: Transform - - uid: 2531 + - uid: 3038 components: - - pos: -39.5,-35.5 + - pos: -36.5,60.5 parent: 2 type: Transform - - uid: 2532 + - uid: 3039 components: - - pos: -39.5,-37.5 + - pos: -40.5,62.5 parent: 2 type: Transform - - uid: 2533 + - uid: 3040 components: - - pos: -39.5,-38.5 + - pos: -37.5,58.5 parent: 2 type: Transform - - uid: 2534 + - uid: 3041 components: - - pos: -39.5,-39.5 + - pos: -35.5,58.5 parent: 2 type: Transform - - uid: 2535 + - uid: 3042 components: - - pos: -28.5,-30.5 + - pos: -36.5,56.5 parent: 2 type: Transform - - uid: 2536 + - uid: 3043 components: - - pos: -39.5,-44.5 + - pos: -37.5,60.5 parent: 2 type: Transform - - uid: 2537 + - uid: 3044 components: - - pos: -39.5,-44.5 + - pos: -35.5,56.5 parent: 2 type: Transform - - uid: 2538 + - uid: 3045 components: - - pos: -39.5,-45.5 + - pos: -39.5,56.5 parent: 2 type: Transform - - uid: 2539 + - uid: 3046 components: - - pos: -38.5,-46.5 + - pos: -38.5,60.5 parent: 2 type: Transform - - uid: 2556 + - uid: 3047 components: - - pos: -33.5,-30.5 + - pos: -40.5,57.5 parent: 2 type: Transform - - uid: 2557 + - uid: 3048 components: - - pos: -31.5,-30.5 + - pos: -41.5,57.5 parent: 2 type: Transform - - uid: 2607 + - uid: 3049 components: - - pos: -35.5,-45.5 + - pos: -42.5,58.5 parent: 2 type: Transform - - uid: 2628 + - uid: 3050 components: - - pos: -20.5,-32.5 + - pos: -35.5,60.5 parent: 2 type: Transform - - uid: 2629 + - uid: 3051 components: - - pos: -20.5,-33.5 + - pos: -42.5,57.5 parent: 2 type: Transform - - uid: 2630 + - uid: 3052 components: - - pos: -20.5,-34.5 + - pos: -42.5,56.5 parent: 2 type: Transform - - uid: 2631 + - uid: 3053 components: - - pos: -19.5,-34.5 + - pos: -42.5,55.5 parent: 2 type: Transform - - uid: 2632 + - uid: 3054 components: - - pos: -19.5,-35.5 + - pos: 2.5,-19.5 parent: 2 type: Transform - - uid: 2633 + - uid: 3055 components: - - pos: -19.5,-36.5 + - pos: -42.5,54.5 parent: 2 type: Transform - - uid: 2637 + - uid: 3056 components: - - pos: -19.5,-40.5 + - pos: -42.5,53.5 parent: 2 type: Transform - - uid: 2638 + - uid: 3057 components: - - pos: -19.5,-41.5 + - pos: -42.5,51.5 parent: 2 type: Transform - - uid: 2639 + - uid: 3058 components: - - pos: -19.5,-42.5 + - pos: -39.5,62.5 parent: 2 type: Transform - - uid: 2640 + - uid: 3059 components: - - pos: -20.5,-42.5 + - pos: 45.5,12.5 parent: 2 type: Transform - - uid: 2643 + - uid: 3060 components: - - pos: -20.5,-43.5 + - pos: 45.5,13.5 parent: 2 type: Transform - - uid: 2644 + - uid: 3061 components: - - pos: -20.5,-44.5 + - pos: 43.5,13.5 parent: 2 type: Transform - - uid: 2647 + - uid: 3062 components: - - pos: -26.5,-30.5 + - pos: -36.5,58.5 parent: 2 type: Transform - - uid: 2662 + - uid: 3063 components: - - pos: -25.5,-31.5 + - pos: 44.5,13.5 parent: 2 type: Transform - - uid: 2664 + - uid: 3064 components: - - pos: -38.5,-45.5 + - pos: 49.5,11.5 parent: 2 type: Transform - - uid: 2682 + - uid: 3065 components: - - pos: -29.5,-46.5 + - pos: -4.5,-22.5 parent: 2 type: Transform - - uid: 2684 + - uid: 3066 components: - - pos: -28.5,-45.5 + - pos: -1.5,-3.5 parent: 2 type: Transform - - uid: 2685 + - uid: 3067 components: - - pos: -28.5,-46.5 + - pos: -0.5,-26.5 parent: 2 type: Transform - - uid: 2687 + - uid: 3068 components: - - pos: -24.5,-46.5 + - pos: 0.5,-25.5 parent: 2 type: Transform - - uid: 2688 + - uid: 3069 components: - - pos: -27.5,-46.5 + - pos: 3.5,-26.5 parent: 2 type: Transform - - uid: 2689 + - uid: 3070 components: - - pos: -26.5,-46.5 + - pos: -4.5,-23.5 parent: 2 type: Transform - - uid: 2690 + - uid: 3071 components: - - pos: -24.5,-44.5 + - pos: 2.5,-26.5 parent: 2 type: Transform - - uid: 2691 + - uid: 3072 components: - - pos: -24.5,-45.5 + - pos: 5.5,-26.5 parent: 2 type: Transform - - uid: 2692 + - uid: 3073 components: - - pos: -37.5,-46.5 + - pos: 4.5,-26.5 parent: 2 type: Transform - - uid: 2693 + - uid: 3074 components: - - pos: -32.5,-46.5 + - pos: -3.5,-24.5 parent: 2 type: Transform - - uid: 2694 + - uid: 3075 components: - - pos: -37.5,-30.5 + - pos: -3.5,-25.5 parent: 2 type: Transform - - uid: 2707 + - uid: 3076 components: - - pos: -32.5,-30.5 + - pos: -3.5,-26.5 parent: 2 type: Transform - - uid: 2708 + - uid: 3077 components: - - pos: -23.5,-44.5 + - pos: -2.5,-26.5 parent: 2 type: Transform - - uid: 2709 + - uid: 3078 components: - - pos: -22.5,-44.5 + - pos: -2.5,-25.5 parent: 2 type: Transform - - uid: 2710 + - uid: 3079 components: - - pos: -21.5,-44.5 + - pos: -2.5,-24.5 parent: 2 type: Transform - - uid: 2736 + - uid: 3080 components: - - pos: 43.5,12.5 + - pos: -3.5,-23.5 parent: 2 type: Transform - - uid: 2779 + - uid: 3081 components: - - pos: -7.5,-33.5 + - pos: -2.5,-23.5 parent: 2 type: Transform - - uid: 2780 + - uid: 3082 components: - - pos: -8.5,-33.5 + - pos: -1.5,-23.5 parent: 2 type: Transform - - uid: 2781 + - uid: 3083 components: - - pos: -9.5,-33.5 + - pos: -0.5,-23.5 parent: 2 type: Transform - - uid: 2782 + - uid: 3084 components: - - pos: -10.5,-33.5 + - pos: -5.5,-23.5 parent: 2 type: Transform - - uid: 2783 + - uid: 3085 components: - - pos: -11.5,-33.5 + - pos: 0.5,-26.5 parent: 2 type: Transform - - uid: 2784 + - uid: 3086 components: - - pos: -12.5,-33.5 + - pos: 0.5,-23.5 parent: 2 type: Transform - - uid: 2785 + - uid: 3087 components: - - pos: -13.5,-33.5 + - pos: -1.5,-26.5 parent: 2 type: Transform - - uid: 2786 + - uid: 3088 components: - - pos: -14.5,-33.5 + - pos: 1.5,-23.5 parent: 2 type: Transform - - uid: 2787 + - uid: 3089 components: - - pos: -15.5,-33.5 + - pos: 1.5,-26.5 parent: 2 type: Transform - - uid: 2788 + - uid: 3090 components: - - pos: -16.5,-33.5 + - pos: -0.5,-11.5 parent: 2 type: Transform - - uid: 2789 + - uid: 3091 components: - - pos: -17.5,-33.5 + - pos: 1.5,-19.5 parent: 2 type: Transform - - uid: 2790 + - uid: 3092 components: - - pos: -18.5,-33.5 + - pos: 1.5,-18.5 parent: 2 type: Transform - - uid: 2791 + - uid: 3093 components: - - pos: -18.5,-34.5 + - pos: 1.5,-17.5 parent: 2 type: Transform - - uid: 2801 + - uid: 3094 components: - - pos: -18.5,-32.5 + - pos: 1.5,-16.5 parent: 2 type: Transform - - uid: 2802 + - uid: 3095 components: - - pos: -18.5,-31.5 + - pos: 1.5,-15.5 parent: 2 type: Transform - - uid: 2803 + - uid: 3096 components: - - pos: -18.5,-30.5 + - pos: 1.5,-14.5 parent: 2 type: Transform - - uid: 2804 + - uid: 3097 components: - - pos: -19.5,-30.5 + - pos: 1.5,-13.5 parent: 2 type: Transform - - uid: 2805 + - uid: 3098 components: - - pos: -20.5,-30.5 + - pos: -0.5,-12.5 parent: 2 type: Transform - - uid: 2806 + - uid: 3099 components: - - pos: -21.5,-30.5 + - pos: 0.5,-13.5 parent: 2 type: Transform - - uid: 2807 + - uid: 3100 components: - - pos: -21.5,-29.5 + - pos: -0.5,-13.5 parent: 2 type: Transform - - uid: 2808 + - uid: 3101 components: - - pos: -21.5,-28.5 + - pos: -1.5,-10.5 parent: 2 type: Transform - - uid: 2809 + - uid: 3102 components: - - pos: -21.5,-27.5 + - pos: -1.5,-9.5 parent: 2 type: Transform - - uid: 2810 + - uid: 3103 components: - - pos: -22.5,-27.5 + - pos: -1.5,-8.5 parent: 2 type: Transform - - uid: 2811 + - uid: 3104 components: - - pos: -23.5,-27.5 + - pos: -1.5,-7.5 parent: 2 type: Transform - - uid: 2812 + - uid: 3105 components: - - pos: -24.5,-27.5 + - pos: -1.5,-6.5 parent: 2 type: Transform - - uid: 2813 + - uid: 3106 components: - - pos: -25.5,-27.5 + - pos: -1.5,-5.5 parent: 2 type: Transform - - uid: 2814 + - uid: 3107 components: - - pos: -26.5,-27.5 + - pos: -0.5,-10.5 parent: 2 type: Transform - - uid: 2815 + - uid: 3108 components: - - pos: -27.5,-27.5 + - pos: 0.5,-10.5 parent: 2 type: Transform - - uid: 2816 + - uid: 3109 components: - - pos: -28.5,-27.5 + - pos: 1.5,-10.5 parent: 2 type: Transform - - uid: 2817 + - uid: 3110 components: - - pos: -29.5,-27.5 + - pos: 1.5,-9.5 parent: 2 type: Transform - - uid: 2818 + - uid: 3111 components: - - pos: -30.5,-27.5 + - pos: -7.5,-24.5 parent: 2 type: Transform - - uid: 2819 + - uid: 3112 components: - - pos: -31.5,-27.5 + - pos: -16.5,-39.5 parent: 2 type: Transform - - uid: 2820 + - uid: 3113 components: - - pos: -31.5,-26.5 + - pos: -7.5,-23.5 parent: 2 type: Transform - - uid: 2838 + - uid: 3114 components: - - pos: -24.5,-31.5 + - pos: -7.5,-26.5 parent: 2 type: Transform - - uid: 2841 + - uid: 3115 components: - - pos: -25.5,-30.5 + - pos: -7.5,-27.5 parent: 2 type: Transform - - uid: 2857 + - uid: 3116 components: - - pos: -35.5,-44.5 + - pos: -6.5,-23.5 parent: 2 type: Transform - - uid: 2858 + - uid: 3117 components: - - pos: -33.5,-44.5 + - pos: -7.5,-28.5 parent: 2 type: Transform - - uid: 2859 + - uid: 3118 components: - - pos: -34.5,-44.5 + - pos: -1.5,-21.5 parent: 2 type: Transform - - uid: 2860 + - uid: 3119 components: - - pos: -28.5,-44.5 + - pos: -1.5,-22.5 parent: 2 type: Transform - - uid: 2861 + - uid: 3120 components: - - pos: -29.5,-44.5 + - pos: -45.5,58.5 parent: 2 type: Transform - - uid: 2862 + - uid: 3121 components: - - pos: -29.5,-32.5 + - pos: -23.5,-32.5 parent: 2 type: Transform - - uid: 2863 + - uid: 3122 components: - - pos: -28.5,-32.5 + - pos: -22.5,-32.5 parent: 2 type: Transform - - uid: 2864 + - uid: 3123 components: - - pos: -27.5,-30.5 + - pos: -21.5,-32.5 parent: 2 type: Transform - - uid: 2865 + - uid: 3124 components: - - pos: -33.5,-32.5 + - pos: -24.5,-32.5 parent: 2 type: Transform - - uid: 2866 + - uid: 3125 components: - - pos: -34.5,-32.5 + - pos: -38.5,-30.5 parent: 2 type: Transform - - uid: 3255 + - uid: 3126 components: - - pos: 2.5,-22.5 + - pos: -29.5,-30.5 parent: 2 type: Transform - - uid: 3460 + - uid: 3127 components: - - pos: 40.5,11.5 + - pos: -31.5,-25.5 parent: 2 type: Transform - - uid: 4759 + - uid: 3128 components: - - pos: 2.5,-23.5 + - pos: -38.5,-31.5 parent: 2 type: Transform - - uid: 4760 + - uid: 3129 components: - - pos: 2.5,-21.5 + - pos: -38.5,-32.5 parent: 2 type: Transform - - uid: 4761 + - uid: 3130 components: - - pos: 2.5,-20.5 + - pos: -39.5,-32.5 parent: 2 type: Transform - - uid: 4899 + - uid: 3131 components: - - pos: 28.5,27.5 + - pos: -39.5,-35.5 parent: 2 type: Transform - - uid: 4975 + - uid: 3132 components: - - pos: 27.5,28.5 + - pos: -39.5,-37.5 parent: 2 type: Transform - - uid: 4984 + - uid: 3133 components: - - pos: 28.5,28.5 + - pos: -39.5,-38.5 parent: 2 type: Transform - - uid: 5070 + - uid: 3134 components: - - pos: 48.5,11.5 + - pos: -39.5,-39.5 parent: 2 type: Transform - - uid: 5142 + - uid: 3135 components: - - pos: 50.5,8.5 + - pos: -28.5,-30.5 parent: 2 type: Transform - - uid: 5146 + - uid: 3136 components: - - pos: 52.5,4.5 + - pos: -39.5,-44.5 parent: 2 type: Transform - - uid: 5147 + - uid: 3137 components: - - pos: 52.5,5.5 + - pos: -39.5,-44.5 parent: 2 type: Transform - - uid: 5149 + - uid: 3138 components: - - pos: 52.5,7.5 + - pos: -39.5,-45.5 parent: 2 type: Transform - - uid: 5151 + - uid: 3139 components: - - pos: 54.5,8.5 + - pos: -38.5,-46.5 parent: 2 type: Transform - - uid: 5152 + - uid: 3140 components: - - pos: 54.5,7.5 + - pos: -33.5,-30.5 parent: 2 type: Transform - - uid: 5154 + - uid: 3141 components: - - pos: 54.5,5.5 + - pos: -31.5,-30.5 parent: 2 type: Transform - - uid: 5155 + - uid: 3142 components: - - pos: 54.5,4.5 + - pos: -35.5,-45.5 parent: 2 type: Transform - - uid: 5156 + - uid: 3143 components: - - pos: 56.5,4.5 + - pos: -20.5,-32.5 parent: 2 type: Transform - - uid: 5158 + - uid: 3144 components: - - pos: 56.5,6.5 + - pos: -20.5,-33.5 parent: 2 type: Transform - - uid: 5159 + - uid: 3145 components: - - pos: 56.5,7.5 + - pos: -20.5,-34.5 parent: 2 type: Transform - - uid: 5160 + - uid: 3146 components: - - pos: 56.5,8.5 + - pos: -19.5,-34.5 parent: 2 type: Transform - - uid: 5161 + - uid: 3147 components: - - pos: 58.5,8.5 + - pos: -19.5,-35.5 parent: 2 type: Transform - - uid: 5163 + - uid: 3148 components: - - pos: 58.5,6.5 + - pos: -19.5,-36.5 parent: 2 type: Transform - - uid: 5164 + - uid: 3149 components: - - pos: 58.5,5.5 + - pos: -19.5,-40.5 parent: 2 type: Transform - - uid: 5165 + - uid: 3150 components: - - pos: 58.5,4.5 + - pos: -19.5,-41.5 parent: 2 type: Transform - - uid: 5166 + - uid: 3151 components: - - pos: 60.5,4.5 + - pos: -19.5,-42.5 parent: 2 type: Transform - - uid: 5169 + - uid: 3152 components: - - pos: 60.5,7.5 + - pos: -20.5,-42.5 parent: 2 type: Transform - - uid: 5170 + - uid: 3153 components: - - pos: 60.5,8.5 + - pos: -20.5,-43.5 parent: 2 type: Transform - - uid: 5173 + - uid: 3154 components: - - pos: 60.5,16.5 + - pos: -20.5,-44.5 parent: 2 type: Transform - - uid: 5175 + - uid: 3155 components: - - pos: 60.5,18.5 + - pos: -26.5,-30.5 parent: 2 type: Transform - - uid: 5176 + - uid: 3156 components: - - pos: 58.5,18.5 + - pos: -25.5,-31.5 parent: 2 type: Transform - - uid: 5180 + - uid: 3157 components: - - pos: 58.5,14.5 + - pos: -38.5,-45.5 parent: 2 type: Transform - - uid: 5181 + - uid: 3158 components: - - pos: 3.5,7.5 + - pos: -29.5,-46.5 parent: 2 type: Transform - - uid: 5183 + - uid: 3159 components: - - pos: 56.5,16.5 + - pos: -28.5,-45.5 parent: 2 type: Transform - - uid: 5188 + - uid: 3160 components: - - pos: 54.5,16.5 + - pos: -28.5,-46.5 parent: 2 type: Transform - - uid: 5189 + - uid: 3161 components: - - pos: 54.5,15.5 + - pos: -24.5,-46.5 parent: 2 type: Transform - - uid: 5190 + - uid: 3162 components: - - pos: 54.5,14.5 + - pos: -27.5,-46.5 parent: 2 type: Transform - - uid: 5191 + - uid: 3163 components: - - pos: 52.5,14.5 + - pos: -26.5,-46.5 parent: 2 type: Transform - - uid: 5195 + - uid: 3164 components: - - pos: 52.5,18.5 + - pos: -24.5,-44.5 parent: 2 type: Transform - - uid: 5198 + - uid: 3165 components: - - pos: 50.5,16.5 + - pos: -24.5,-45.5 parent: 2 type: Transform - - uid: 5199 + - uid: 3166 components: - - pos: -29.5,35.5 + - pos: -37.5,-46.5 parent: 2 type: Transform - - uid: 5201 + - uid: 3167 components: - - pos: 51.5,14.5 + - pos: -32.5,-46.5 parent: 2 type: Transform - - uid: 5202 + - uid: 3168 components: - - pos: 51.5,15.5 + - pos: -37.5,-30.5 parent: 2 type: Transform - - uid: 5203 + - uid: 3169 components: - - pos: 55.5,17.5 + - pos: -32.5,-30.5 parent: 2 type: Transform - - uid: 5204 + - uid: 3170 components: - - pos: 55.5,16.5 + - pos: -23.5,-44.5 parent: 2 type: Transform - - uid: 5205 + - uid: 3171 components: - - pos: 55.5,12.5 + - pos: -22.5,-44.5 parent: 2 type: Transform - - uid: 5206 + - uid: 3172 components: - - pos: 59.5,13.5 + - pos: -21.5,-44.5 parent: 2 type: Transform - - uid: 5207 + - uid: 3173 components: - - pos: 59.5,14.5 + - pos: 43.5,12.5 parent: 2 type: Transform - - uid: 5209 + - uid: 3174 components: - - pos: 59.5,9.5 + - pos: -7.5,-33.5 parent: 2 type: Transform - - uid: 5213 + - uid: 3175 components: - - pos: 59.5,10.5 + - pos: -8.5,-33.5 parent: 2 type: Transform - - uid: 5216 + - uid: 3176 components: - - pos: 61.5,11.5 + - pos: -9.5,-33.5 parent: 2 type: Transform - - uid: 5217 + - uid: 3177 components: - - pos: 62.5,11.5 + - pos: -10.5,-33.5 parent: 2 type: Transform - - uid: 5218 + - uid: 3178 components: - - pos: 56.5,11.5 + - pos: -11.5,-33.5 parent: 2 type: Transform - - uid: 5219 + - uid: 3179 components: - - pos: 55.5,11.5 + - pos: -12.5,-33.5 parent: 2 type: Transform - - uid: 5220 + - uid: 3180 components: - - pos: 52.5,11.5 + - pos: -13.5,-33.5 parent: 2 type: Transform - - uid: 5222 + - uid: 3181 components: - - pos: 47.5,11.5 + - pos: -14.5,-33.5 parent: 2 type: Transform - - uid: 5223 + - uid: 3182 components: - - pos: 46.5,11.5 + - pos: -15.5,-33.5 parent: 2 type: Transform - - uid: 5224 + - uid: 3183 components: - - pos: 45.5,11.5 + - pos: -16.5,-33.5 parent: 2 type: Transform - - uid: 5226 + - uid: 3184 components: - - pos: -18.5,26.5 + - pos: -17.5,-33.5 parent: 2 type: Transform - - uid: 5231 + - uid: 3185 components: - - pos: 51.5,8.5 + - pos: -18.5,-33.5 parent: 2 type: Transform - - uid: 5232 + - uid: 3186 components: - - pos: 51.5,4.5 + - pos: -18.5,-34.5 parent: 2 type: Transform - - uid: 5233 + - uid: 3187 components: - - pos: 51.5,5.5 + - pos: -18.5,-32.5 parent: 2 type: Transform - - uid: 5276 + - uid: 3188 components: - - pos: 55.5,6.5 + - pos: -18.5,-31.5 parent: 2 type: Transform - - uid: 5766 + - uid: 3189 components: - - pos: -30.5,40.5 + - pos: -18.5,-30.5 parent: 2 type: Transform - - uid: 5773 + - uid: 3190 components: - - pos: -29.5,40.5 + - pos: -19.5,-30.5 parent: 2 type: Transform - - uid: 5787 + - uid: 3191 components: - - pos: -29.5,34.5 + - pos: -20.5,-30.5 parent: 2 type: Transform - - uid: 5818 + - uid: 3192 components: - - pos: -31.5,40.5 + - pos: -21.5,-30.5 parent: 2 type: Transform - - uid: 6061 + - uid: 3193 components: - - pos: -42.5,49.5 + - pos: -21.5,-29.5 parent: 2 type: Transform - - uid: 6104 + - uid: 3194 components: - - pos: -49.5,60.5 + - pos: -21.5,-28.5 parent: 2 type: Transform - - uid: 6229 + - uid: 3195 components: - - pos: -44.5,49.5 + - pos: -21.5,-27.5 parent: 2 type: Transform - - uid: 6251 + - uid: 3196 components: - - pos: -43.5,51.5 + - pos: -22.5,-27.5 parent: 2 type: Transform - - uid: 6258 + - uid: 3197 components: - - pos: -44.5,50.5 + - pos: -23.5,-27.5 parent: 2 type: Transform - - uid: 6295 + - uid: 3198 components: - - pos: -42.5,48.5 + - pos: -24.5,-27.5 parent: 2 type: Transform - - uid: 6324 + - uid: 3199 components: - - pos: -44.5,51.5 + - pos: -25.5,-27.5 parent: 2 type: Transform - - uid: 6350 + - uid: 3200 components: - - pos: -43.5,49.5 + - pos: -26.5,-27.5 parent: 2 type: Transform - - uid: 6538 + - uid: 3201 components: - - pos: -42.5,52.5 + - pos: -27.5,-27.5 parent: 2 type: Transform - - uid: 6546 + - uid: 3202 components: - - pos: -42.5,66.5 + - pos: -28.5,-27.5 parent: 2 type: Transform - - uid: 6547 + - uid: 3203 components: - - pos: -42.5,66.5 + - pos: -29.5,-27.5 parent: 2 type: Transform - - uid: 6549 + - uid: 3204 components: - - pos: -44.5,66.5 + - pos: -30.5,-27.5 parent: 2 type: Transform - - uid: 6550 + - uid: 3205 components: - - pos: -45.5,66.5 + - pos: -31.5,-27.5 parent: 2 type: Transform - - uid: 6551 + - uid: 3206 components: - - pos: -47.5,66.5 + - pos: -31.5,-26.5 parent: 2 type: Transform - - uid: 6552 + - uid: 3207 components: - - pos: -46.5,66.5 + - pos: -24.5,-31.5 parent: 2 type: Transform - - uid: 6553 + - uid: 3208 components: - - pos: -44.5,65.5 + - pos: -25.5,-30.5 parent: 2 type: Transform - - uid: 6554 + - uid: 3209 components: - - pos: -43.5,65.5 + - pos: -35.5,-44.5 parent: 2 type: Transform - - uid: 6555 + - uid: 3210 components: - - pos: -42.5,65.5 + - pos: -33.5,-44.5 parent: 2 type: Transform - - uid: 6556 + - uid: 3211 components: - - pos: -40.5,66.5 + - pos: -34.5,-44.5 parent: 2 type: Transform - - uid: 6557 + - uid: 3212 components: - - pos: -39.5,66.5 + - pos: -28.5,-44.5 parent: 2 type: Transform - - uid: 6558 + - uid: 3213 components: - - pos: -38.5,66.5 + - pos: -29.5,-44.5 parent: 2 type: Transform - - uid: 6559 + - uid: 3214 components: - - pos: -37.5,66.5 + - pos: -29.5,-32.5 parent: 2 type: Transform - - uid: 6560 + - uid: 3215 components: - - pos: -40.5,65.5 + - pos: -28.5,-32.5 parent: 2 type: Transform - - uid: 6561 + - uid: 3216 components: - - pos: -36.5,64.5 + - pos: -27.5,-30.5 parent: 2 type: Transform - - uid: 6562 + - uid: 3217 components: - - pos: -37.5,64.5 + - pos: -33.5,-32.5 parent: 2 type: Transform - - uid: 6563 + - uid: 3218 components: - - pos: -35.5,64.5 + - pos: -34.5,-32.5 parent: 2 type: Transform - - uid: 6564 + - uid: 3219 components: - - pos: -42.5,62.5 + - pos: 2.5,-22.5 parent: 2 type: Transform - - uid: 6565 + - uid: 3220 components: - - pos: -42.5,61.5 + - pos: 40.5,11.5 parent: 2 type: Transform - - uid: 6566 + - uid: 3221 components: - - pos: -42.5,60.5 + - pos: 2.5,-23.5 parent: 2 type: Transform - - uid: 6569 + - uid: 3222 components: - - pos: -45.5,60.5 + - pos: 2.5,-21.5 parent: 2 type: Transform - - uid: 6570 + - uid: 3223 components: - - pos: -46.5,60.5 + - pos: 2.5,-20.5 parent: 2 type: Transform - - uid: 6571 + - uid: 3224 components: - - pos: -47.5,60.5 + - pos: 28.5,27.5 parent: 2 type: Transform - - uid: 6572 + - uid: 3225 components: - - pos: -48.5,60.5 + - pos: 27.5,28.5 parent: 2 type: Transform - - uid: 6591 + - uid: 3226 components: - - pos: 25.5,-21.5 + - pos: 28.5,28.5 parent: 2 type: Transform - - uid: 6733 + - uid: 3227 components: - - pos: -29.5,39.5 + - pos: 48.5,11.5 parent: 2 type: Transform - - uid: 6734 + - uid: 3228 components: - - pos: -29.5,37.5 + - pos: 50.5,8.5 parent: 2 type: Transform - - uid: 6735 + - uid: 3229 components: - - pos: -29.5,36.5 + - pos: 52.5,4.5 parent: 2 type: Transform - - uid: 6736 + - uid: 3230 components: - - pos: -29.5,38.5 + - pos: 52.5,5.5 parent: 2 type: Transform - - uid: 6898 + - uid: 3231 components: - - pos: 3.5,-20.5 + - pos: 52.5,7.5 parent: 2 type: Transform - - uid: 6899 + - uid: 3232 components: - - pos: 4.5,-20.5 + - pos: 54.5,8.5 parent: 2 type: Transform - - uid: 6900 + - uid: 3233 components: - - pos: 5.5,-20.5 + - pos: 54.5,7.5 parent: 2 type: Transform - - uid: 6901 + - uid: 3234 components: - - pos: 6.5,-20.5 + - pos: 54.5,5.5 parent: 2 type: Transform - - uid: 6902 + - uid: 3235 components: - - pos: 7.5,-20.5 + - pos: 54.5,4.5 parent: 2 type: Transform - - uid: 6903 + - uid: 3236 components: - - pos: 8.5,-20.5 + - pos: 56.5,4.5 parent: 2 type: Transform - - uid: 6904 + - uid: 3237 components: - - pos: 9.5,-20.5 + - pos: 56.5,6.5 parent: 2 type: Transform - - uid: 6905 + - uid: 3238 components: - - pos: 10.5,-20.5 + - pos: 56.5,7.5 parent: 2 type: Transform - - uid: 6906 + - uid: 3239 components: - - pos: 11.5,-20.5 + - pos: 56.5,8.5 parent: 2 type: Transform - - uid: 6907 + - uid: 3240 components: - - pos: 12.5,-20.5 + - pos: 58.5,8.5 parent: 2 type: Transform - - uid: 6908 + - uid: 3241 components: - - pos: 13.5,-20.5 + - pos: 58.5,6.5 parent: 2 type: Transform - - uid: 6909 + - uid: 3242 components: - - pos: 14.5,-20.5 + - pos: 58.5,5.5 parent: 2 type: Transform - - uid: 6910 + - uid: 3243 components: - - pos: 15.5,-20.5 + - pos: 58.5,4.5 parent: 2 type: Transform - - uid: 6911 + - uid: 3244 components: - - pos: 16.5,-20.5 + - pos: 60.5,4.5 parent: 2 type: Transform - - uid: 6912 + - uid: 3245 components: - - pos: 17.5,-20.5 + - pos: 60.5,7.5 parent: 2 type: Transform - - uid: 6913 + - uid: 3246 components: - - pos: 18.5,-20.5 + - pos: 60.5,8.5 parent: 2 type: Transform - - uid: 6914 + - uid: 3247 components: - - pos: 19.5,-20.5 + - pos: 60.5,16.5 parent: 2 type: Transform - - uid: 6916 + - uid: 3248 components: - - pos: 21.5,-20.5 + - pos: 60.5,18.5 parent: 2 type: Transform - - uid: 6917 + - uid: 3249 components: - - pos: 22.5,-20.5 + - pos: 58.5,18.5 parent: 2 type: Transform - - uid: 6918 + - uid: 3250 components: - - pos: 23.5,-20.5 + - pos: 58.5,14.5 parent: 2 type: Transform - - uid: 6919 + - uid: 3251 components: - - pos: 24.5,-20.5 + - pos: 3.5,7.5 parent: 2 type: Transform - - uid: 6920 + - uid: 3252 components: - - pos: 25.5,-20.5 + - pos: 56.5,16.5 parent: 2 type: Transform - - uid: 6924 + - uid: 3253 components: - - pos: -27.5,-26.5 + - pos: 54.5,16.5 parent: 2 type: Transform - - uid: 6925 + - uid: 3254 components: - - pos: -27.5,-25.5 + - pos: 54.5,15.5 parent: 2 type: Transform - - uid: 6926 + - uid: 3255 components: - - pos: -27.5,-24.5 + - pos: 54.5,14.5 parent: 2 type: Transform - - uid: 6927 + - uid: 3256 components: - - pos: -27.5,-23.5 + - pos: 52.5,14.5 parent: 2 type: Transform - - uid: 6928 + - uid: 3257 components: - - pos: -27.5,-22.5 + - pos: 52.5,18.5 parent: 2 type: Transform - - uid: 6929 + - uid: 3258 components: - - pos: -27.5,-21.5 + - pos: 50.5,16.5 parent: 2 type: Transform - - uid: 6930 + - uid: 3259 components: - - pos: -27.5,-20.5 + - pos: -29.5,35.5 parent: 2 type: Transform - - uid: 6931 + - uid: 3260 components: - - pos: -28.5,-20.5 + - pos: 51.5,14.5 parent: 2 type: Transform - - uid: 6932 + - uid: 3261 components: - - pos: -29.5,-20.5 + - pos: 51.5,15.5 parent: 2 type: Transform - - uid: 6933 + - uid: 3262 components: - - pos: -30.5,-20.5 + - pos: 55.5,17.5 parent: 2 type: Transform - - uid: 6934 + - uid: 3263 components: - - pos: -31.5,-20.5 + - pos: 55.5,16.5 parent: 2 type: Transform - - uid: 6935 + - uid: 3264 components: - - pos: -31.5,-19.5 + - pos: 55.5,12.5 parent: 2 type: Transform - - uid: 6936 + - uid: 3265 components: - - pos: -31.5,-18.5 + - pos: 59.5,13.5 parent: 2 type: Transform - - uid: 6937 + - uid: 3266 components: - - pos: -31.5,-17.5 + - pos: 59.5,14.5 parent: 2 type: Transform - - uid: 6938 + - uid: 3267 components: - - pos: -32.5,-17.5 + - pos: 59.5,9.5 parent: 2 type: Transform - - uid: 6939 + - uid: 3268 components: - - pos: -28.5,-11.5 + - pos: 59.5,10.5 parent: 2 type: Transform - - uid: 6940 + - uid: 3269 components: - - pos: -28.5,-10.5 + - pos: 61.5,11.5 parent: 2 type: Transform - - uid: 6941 + - uid: 3270 components: - - pos: -28.5,-9.5 + - pos: 62.5,11.5 parent: 2 type: Transform - - uid: 6942 + - uid: 3271 components: - - pos: -28.5,-16.5 + - pos: 56.5,11.5 parent: 2 type: Transform - - uid: 6943 + - uid: 3272 components: - - pos: -28.5,-15.5 + - pos: 55.5,11.5 parent: 2 type: Transform - - uid: 6944 + - uid: 3273 components: - - pos: -28.5,-14.5 + - pos: 52.5,11.5 parent: 2 type: Transform - - uid: 6945 + - uid: 3274 components: - - pos: -28.5,-13.5 + - pos: 47.5,11.5 parent: 2 type: Transform - - uid: 6946 + - uid: 3275 components: - - pos: -28.5,-12.5 + - pos: 46.5,11.5 parent: 2 type: Transform - - uid: 6947 + - uid: 3276 components: - - pos: -29.5,-9.5 + - pos: 45.5,11.5 parent: 2 type: Transform - - uid: 6948 + - uid: 3277 components: - - pos: -28.5,-18.5 + - pos: -18.5,26.5 parent: 2 type: Transform - - uid: 6949 + - uid: 3278 components: - - pos: -28.5,-17.5 + - pos: 51.5,8.5 parent: 2 type: Transform - - uid: 6950 + - uid: 3279 components: - - pos: -28.5,-19.5 + - pos: 51.5,4.5 parent: 2 type: Transform - - uid: 6951 + - uid: 3280 components: - - pos: -30.5,-9.5 + - pos: 51.5,5.5 parent: 2 type: Transform - - uid: 6952 + - uid: 3281 components: - - pos: -31.5,-9.5 + - pos: 55.5,6.5 parent: 2 type: Transform - - uid: 6953 + - uid: 3282 components: - - pos: -32.5,-9.5 + - pos: -30.5,40.5 parent: 2 type: Transform - - uid: 6954 + - uid: 3283 components: - - pos: -32.5,-8.5 + - pos: -29.5,40.5 parent: 2 type: Transform - - uid: 6955 + - uid: 3284 components: - - pos: -24.5,4.5 + - pos: -29.5,34.5 parent: 2 type: Transform - - uid: 6963 + - uid: 3285 components: - - pos: -24.5,3.5 + - pos: -31.5,40.5 parent: 2 type: Transform - - uid: 6964 + - uid: 3286 components: - - pos: -24.5,2.5 + - pos: -42.5,49.5 parent: 2 type: Transform - - uid: 6965 + - uid: 3287 components: - - pos: -24.5,1.5 + - pos: -49.5,60.5 parent: 2 type: Transform - - uid: 6966 + - uid: 3288 components: - - pos: -24.5,0.5 + - pos: -44.5,49.5 parent: 2 type: Transform - - uid: 6967 + - uid: 3289 components: - - pos: -24.5,-0.5 + - pos: -43.5,51.5 parent: 2 type: Transform - - uid: 6968 + - uid: 3290 components: - - pos: -25.5,-0.5 + - pos: -44.5,50.5 parent: 2 type: Transform - - uid: 6969 + - uid: 3291 components: - - pos: -26.5,-0.5 + - pos: -42.5,48.5 parent: 2 type: Transform - - uid: 6970 + - uid: 3292 components: - - pos: -27.5,-0.5 + - pos: -44.5,51.5 parent: 2 type: Transform - - uid: 6971 + - uid: 3293 components: - - pos: -27.5,-1.5 + - pos: -43.5,49.5 parent: 2 type: Transform - - uid: 6972 + - uid: 3294 components: - - pos: -27.5,-2.5 + - pos: -42.5,52.5 parent: 2 type: Transform - - uid: 6973 + - uid: 3295 components: - - pos: -28.5,-2.5 + - pos: -42.5,66.5 parent: 2 type: Transform - - uid: 6974 + - uid: 3296 components: - - pos: -29.5,-2.5 + - pos: -42.5,66.5 parent: 2 type: Transform - - uid: 6975 + - uid: 3297 components: - - pos: -30.5,-2.5 + - pos: -44.5,66.5 parent: 2 type: Transform - - uid: 6976 + - uid: 3298 components: - - pos: -31.5,-2.5 + - pos: -45.5,66.5 parent: 2 type: Transform - - uid: 6977 + - uid: 3299 components: - - pos: -32.5,-2.5 + - pos: -47.5,66.5 parent: 2 type: Transform - - uid: 6978 + - uid: 3300 components: - - pos: -32.5,-3.5 + - pos: -46.5,66.5 parent: 2 type: Transform - - uid: 6979 + - uid: 3301 components: - - pos: -32.5,-4.5 + - pos: -44.5,65.5 parent: 2 type: Transform - - uid: 6980 + - uid: 3302 components: - - pos: -32.5,-5.5 + - pos: -43.5,65.5 parent: 2 type: Transform - - uid: 6981 + - uid: 3303 components: - - pos: -32.5,-6.5 + - pos: -42.5,65.5 parent: 2 type: Transform - - uid: 6982 + - uid: 3304 components: - - pos: -32.5,-7.5 + - pos: -40.5,66.5 parent: 2 type: Transform - - uid: 6983 + - uid: 3305 components: - - pos: -24.5,5.5 + - pos: -39.5,66.5 parent: 2 type: Transform - - uid: 6984 + - uid: 3306 components: - - pos: -24.5,6.5 + - pos: -38.5,66.5 parent: 2 type: Transform - - uid: 6985 + - uid: 3307 components: - - pos: -24.5,7.5 + - pos: -37.5,66.5 parent: 2 type: Transform - - uid: 6986 + - uid: 3308 components: - - pos: -24.5,8.5 + - pos: -40.5,65.5 parent: 2 type: Transform - - uid: 6987 + - uid: 3309 components: - - pos: -24.5,9.5 + - pos: -36.5,64.5 parent: 2 type: Transform - - uid: 6988 + - uid: 3310 components: - - pos: -24.5,10.5 + - pos: -37.5,64.5 parent: 2 type: Transform - - uid: 6989 + - uid: 3311 components: - - pos: -24.5,11.5 + - pos: -35.5,64.5 parent: 2 type: Transform - - uid: 6990 + - uid: 3312 components: - - pos: -24.5,12.5 + - pos: -42.5,62.5 parent: 2 type: Transform - - uid: 6991 + - uid: 3313 components: - - pos: -24.5,13.5 + - pos: -42.5,61.5 parent: 2 type: Transform - - uid: 6992 + - uid: 3314 components: - - pos: -24.5,14.5 + - pos: -42.5,60.5 parent: 2 type: Transform - - uid: 6993 + - uid: 3315 components: - - pos: -24.5,15.5 + - pos: -45.5,60.5 parent: 2 type: Transform - - uid: 6994 + - uid: 3316 components: - - pos: -25.5,15.5 + - pos: -46.5,60.5 parent: 2 type: Transform - - uid: 6995 + - uid: 3317 components: - - pos: -26.5,15.5 + - pos: -47.5,60.5 parent: 2 type: Transform - - uid: 6996 + - uid: 3318 components: - - pos: -27.5,15.5 + - pos: -48.5,60.5 parent: 2 type: Transform - - uid: 6997 + - uid: 3319 components: - - pos: -27.5,16.5 + - pos: 25.5,-21.5 parent: 2 type: Transform - - uid: 6998 + - uid: 3320 components: - - pos: -27.5,17.5 + - pos: -29.5,39.5 parent: 2 type: Transform - - uid: 6999 + - uid: 3321 components: - - pos: -27.5,18.5 + - pos: -29.5,37.5 parent: 2 type: Transform - - uid: 7000 + - uid: 3322 components: - - pos: -24.5,16.5 + - pos: -29.5,36.5 parent: 2 type: Transform - - uid: 7001 + - uid: 3323 components: - - pos: -24.5,17.5 + - pos: -29.5,38.5 parent: 2 type: Transform - - uid: 7002 + - uid: 3324 components: - - pos: -23.5,17.5 + - pos: 3.5,-20.5 parent: 2 type: Transform - - uid: 7003 + - uid: 3325 components: - - pos: -22.5,17.5 + - pos: 4.5,-20.5 parent: 2 type: Transform - - uid: 7004 + - uid: 3326 components: - - pos: -21.5,17.5 + - pos: 5.5,-20.5 parent: 2 type: Transform - - uid: 7005 + - uid: 3327 components: - - pos: -20.5,17.5 + - pos: 6.5,-20.5 parent: 2 type: Transform - - uid: 7006 + - uid: 3328 components: - - pos: -19.5,17.5 + - pos: 7.5,-20.5 parent: 2 type: Transform - - uid: 7007 + - uid: 3329 components: - - pos: -18.5,17.5 + - pos: 8.5,-20.5 parent: 2 type: Transform - - uid: 7008 + - uid: 3330 components: - - pos: -17.5,17.5 + - pos: 9.5,-20.5 parent: 2 type: Transform - - uid: 7009 + - uid: 3331 components: - - pos: -17.5,16.5 + - pos: 10.5,-20.5 parent: 2 type: Transform - - uid: 7010 + - uid: 3332 components: - - pos: -17.5,15.5 + - pos: 11.5,-20.5 parent: 2 type: Transform - - uid: 7011 + - uid: 3333 components: - - pos: -17.5,14.5 + - pos: 12.5,-20.5 parent: 2 type: Transform - - uid: 7012 + - uid: 3334 components: - - pos: -18.5,14.5 + - pos: 13.5,-20.5 parent: 2 type: Transform - - uid: 7014 + - uid: 3335 components: - - pos: -27.5,19.5 + - pos: 14.5,-20.5 parent: 2 type: Transform - - uid: 7015 + - uid: 3336 components: - - pos: -27.5,20.5 + - pos: 15.5,-20.5 parent: 2 type: Transform - - uid: 7016 + - uid: 3337 components: - - pos: -27.5,21.5 + - pos: 16.5,-20.5 parent: 2 type: Transform - - uid: 7020 + - uid: 3338 components: - - pos: -42.5,47.5 + - pos: 17.5,-20.5 parent: 2 type: Transform - - uid: 7021 + - uid: 3339 components: - - pos: -47.5,44.5 + - pos: 18.5,-20.5 parent: 2 type: Transform - - uid: 7022 + - uid: 3340 components: - - pos: -46.5,44.5 + - pos: 19.5,-20.5 parent: 2 type: Transform - - uid: 7023 + - uid: 3341 components: - - pos: -46.5,45.5 + - pos: 21.5,-20.5 parent: 2 type: Transform - - uid: 7024 + - uid: 3342 components: - - pos: -46.5,46.5 + - pos: 22.5,-20.5 parent: 2 type: Transform - - uid: 7025 + - uid: 3343 components: - - pos: -45.5,46.5 + - pos: 23.5,-20.5 parent: 2 type: Transform - - uid: 7026 + - uid: 3344 components: - - pos: -44.5,46.5 + - pos: 24.5,-20.5 parent: 2 type: Transform - - uid: 7027 + - uid: 3345 components: - - pos: -43.5,46.5 + - pos: 25.5,-20.5 parent: 2 type: Transform - - uid: 7028 + - uid: 3346 components: - - pos: -42.5,46.5 + - pos: -27.5,-26.5 parent: 2 type: Transform - - uid: 7029 + - uid: 3347 components: - - pos: -41.5,46.5 + - pos: -27.5,-25.5 parent: 2 type: Transform - - uid: 7030 + - uid: 3348 components: - - pos: -40.5,46.5 + - pos: -27.5,-24.5 parent: 2 type: Transform - - uid: 7031 + - uid: 3349 components: - - pos: -39.5,46.5 + - pos: -27.5,-23.5 parent: 2 type: Transform - - uid: 7032 + - uid: 3350 components: - - pos: -38.5,46.5 + - pos: -27.5,-22.5 parent: 2 type: Transform - - uid: 7033 + - uid: 3351 components: - - pos: -37.5,46.5 + - pos: -27.5,-21.5 parent: 2 type: Transform - - uid: 7034 + - uid: 3352 components: - - pos: -36.5,46.5 + - pos: -27.5,-20.5 parent: 2 type: Transform - - uid: 7036 + - uid: 3353 components: - - pos: -36.5,45.5 + - pos: -28.5,-20.5 parent: 2 type: Transform - - uid: 7037 + - uid: 3354 components: - - pos: -36.5,44.5 + - pos: -29.5,-20.5 parent: 2 type: Transform - - uid: 7038 + - uid: 3355 components: - - pos: -36.5,43.5 + - pos: -30.5,-20.5 parent: 2 type: Transform - - uid: 7039 + - uid: 3356 components: - - pos: -36.5,42.5 + - pos: -31.5,-20.5 parent: 2 type: Transform - - uid: 7040 + - uid: 3357 components: - - pos: -36.5,41.5 + - pos: -31.5,-19.5 parent: 2 type: Transform - - uid: 7041 + - uid: 3358 components: - - pos: -36.5,40.5 + - pos: -31.5,-18.5 parent: 2 type: Transform - - uid: 7043 + - uid: 3359 components: - - pos: -33.5,40.5 + - pos: -31.5,-17.5 parent: 2 type: Transform - - uid: 7044 + - uid: 3360 components: - - pos: -34.5,40.5 + - pos: -32.5,-17.5 parent: 2 type: Transform - - uid: 7045 + - uid: 3361 components: - - pos: -35.5,40.5 + - pos: -28.5,-11.5 parent: 2 type: Transform - - uid: 7046 + - uid: 3362 components: - - pos: -32.5,32.5 + - pos: -28.5,-10.5 parent: 2 type: Transform - - uid: 7047 + - uid: 3363 components: - - pos: -32.5,33.5 + - pos: -28.5,-9.5 parent: 2 type: Transform - - uid: 7048 + - uid: 3364 components: - - pos: -32.5,34.5 + - pos: -28.5,-16.5 parent: 2 type: Transform - - uid: 7049 + - uid: 3365 components: - - pos: -32.5,36.5 + - pos: -28.5,-15.5 parent: 2 type: Transform - - uid: 7050 + - uid: 3366 components: - - pos: -34.5,36.5 + - pos: -28.5,-14.5 parent: 2 type: Transform - - uid: 7054 + - uid: 3367 components: - - pos: -32.5,31.5 + - pos: -28.5,-13.5 parent: 2 type: Transform - - uid: 7055 + - uid: 3368 components: - - pos: -31.5,31.5 + - pos: -28.5,-12.5 parent: 2 type: Transform - - uid: 7056 + - uid: 3369 components: - - pos: -30.5,31.5 + - pos: -29.5,-9.5 parent: 2 type: Transform - - uid: 7057 + - uid: 3370 components: - - pos: -29.5,31.5 + - pos: -28.5,-18.5 parent: 2 type: Transform - - uid: 7059 + - uid: 3371 components: - - pos: -29.5,30.5 + - pos: -28.5,-17.5 parent: 2 type: Transform - - uid: 7060 + - uid: 3372 components: - - pos: -29.5,29.5 + - pos: -28.5,-19.5 parent: 2 type: Transform - - uid: 7061 + - uid: 3373 components: - - pos: -29.5,28.5 + - pos: -30.5,-9.5 parent: 2 type: Transform - - uid: 7062 + - uid: 3374 components: - - pos: -29.5,27.5 + - pos: -31.5,-9.5 parent: 2 type: Transform - - uid: 7063 + - uid: 3375 components: - - pos: -29.5,26.5 + - pos: -32.5,-9.5 parent: 2 type: Transform - - uid: 7064 + - uid: 3376 components: - - pos: -29.5,25.5 + - pos: -32.5,-8.5 parent: 2 type: Transform - - uid: 7065 + - uid: 3377 components: - - pos: -29.5,24.5 + - pos: -24.5,4.5 parent: 2 type: Transform - - uid: 7066 + - uid: 3378 components: - - pos: -29.5,23.5 + - pos: -24.5,3.5 parent: 2 type: Transform - - uid: 7067 + - uid: 3379 components: - - pos: -29.5,22.5 + - pos: -24.5,2.5 parent: 2 type: Transform - - uid: 7068 + - uid: 3380 components: - - pos: -28.5,22.5 + - pos: -24.5,1.5 parent: 2 type: Transform - - uid: 7069 + - uid: 3381 components: - - pos: -27.5,22.5 + - pos: -24.5,0.5 parent: 2 type: Transform - - uid: 7079 + - uid: 3382 components: - - pos: -28.5,34.5 + - pos: -24.5,-0.5 parent: 2 type: Transform - - uid: 7080 + - uid: 3383 components: - - pos: -27.5,34.5 + - pos: -25.5,-0.5 parent: 2 type: Transform - - uid: 7081 + - uid: 3384 components: - - pos: -26.5,34.5 + - pos: -26.5,-0.5 parent: 2 type: Transform - - uid: 7082 + - uid: 3385 components: - - pos: -25.5,34.5 + - pos: -27.5,-0.5 parent: 2 type: Transform - - uid: 7083 + - uid: 3386 components: - - pos: -24.5,34.5 + - pos: -27.5,-1.5 parent: 2 type: Transform - - uid: 7084 + - uid: 3387 components: - - pos: -23.5,34.5 + - pos: -27.5,-2.5 parent: 2 type: Transform - - uid: 7085 + - uid: 3388 components: - - pos: -22.5,34.5 + - pos: -28.5,-2.5 parent: 2 type: Transform - - uid: 7086 + - uid: 3389 components: - - pos: -21.5,34.5 + - pos: -29.5,-2.5 parent: 2 type: Transform - - uid: 7087 + - uid: 3390 components: - - pos: -20.5,34.5 + - pos: -30.5,-2.5 parent: 2 type: Transform - - uid: 7088 + - uid: 3391 components: - - pos: -20.5,33.5 + - pos: -31.5,-2.5 parent: 2 type: Transform - - uid: 7089 + - uid: 3392 components: - - pos: -20.5,32.5 + - pos: -32.5,-2.5 parent: 2 type: Transform - - uid: 7090 + - uid: 3393 components: - - pos: -20.5,31.5 + - pos: -32.5,-3.5 parent: 2 type: Transform - - uid: 7091 + - uid: 3394 components: - - pos: -20.5,30.5 + - pos: -32.5,-4.5 parent: 2 type: Transform - - uid: 7092 + - uid: 3395 components: - - pos: -20.5,29.5 + - pos: -32.5,-5.5 parent: 2 type: Transform - - uid: 7093 + - uid: 3396 components: - - pos: -19.5,29.5 + - pos: -32.5,-6.5 parent: 2 type: Transform - - uid: 7094 + - uid: 3397 components: - - pos: -18.5,29.5 + - pos: -32.5,-7.5 parent: 2 type: Transform - - uid: 7095 + - uid: 3398 components: - - pos: -17.5,29.5 + - pos: -24.5,5.5 parent: 2 type: Transform - - uid: 7096 + - uid: 3399 components: - - pos: -16.5,29.5 + - pos: -24.5,6.5 parent: 2 type: Transform - - uid: 7097 + - uid: 3400 components: - - pos: -15.5,29.5 + - pos: -24.5,7.5 parent: 2 type: Transform - - uid: 7098 + - uid: 3401 components: - - pos: -14.5,29.5 + - pos: -24.5,8.5 parent: 2 type: Transform - - uid: 7099 + - uid: 3402 components: - - pos: -14.5,30.5 + - pos: -24.5,9.5 parent: 2 type: Transform - - uid: 7100 + - uid: 3403 components: - - pos: -14.5,31.5 + - pos: -24.5,10.5 parent: 2 type: Transform - - uid: 7101 + - uid: 3404 components: - - pos: -14.5,32.5 + - pos: -24.5,11.5 parent: 2 type: Transform - - uid: 7102 + - uid: 3405 components: - - pos: -13.5,29.5 + - pos: -24.5,12.5 parent: 2 type: Transform - - uid: 7109 + - uid: 3406 components: - - pos: -17.5,26.5 + - pos: -24.5,13.5 parent: 2 type: Transform - - uid: 7110 + - uid: 3407 components: - - pos: -17.5,25.5 + - pos: -24.5,14.5 parent: 2 type: Transform - - uid: 7111 + - uid: 3408 components: - - pos: -17.5,24.5 + - pos: -24.5,15.5 parent: 2 type: Transform - - uid: 7112 + - uid: 3409 components: - - pos: -17.5,23.5 + - pos: -25.5,15.5 parent: 2 type: Transform - - uid: 7113 + - uid: 3410 components: - - pos: -17.5,22.5 + - pos: -26.5,15.5 parent: 2 type: Transform - - uid: 7114 + - uid: 3411 components: - - pos: -17.5,21.5 + - pos: -27.5,15.5 parent: 2 type: Transform - - uid: 7115 + - uid: 3412 components: - - pos: -17.5,20.5 + - pos: -27.5,16.5 parent: 2 type: Transform - - uid: 7116 + - uid: 3413 components: - - pos: -17.5,19.5 + - pos: -27.5,17.5 parent: 2 type: Transform - - uid: 7117 + - uid: 3414 components: - - pos: -17.5,18.5 + - pos: -27.5,18.5 parent: 2 type: Transform - - uid: 7118 + - uid: 3415 components: - - pos: -12.5,29.5 + - pos: -24.5,16.5 parent: 2 type: Transform - - uid: 7119 + - uid: 3416 components: - - pos: -12.5,30.5 + - pos: -24.5,17.5 parent: 2 type: Transform - - uid: 7120 + - uid: 3417 components: - - pos: -11.5,30.5 + - pos: -23.5,17.5 parent: 2 type: Transform - - uid: 7121 + - uid: 3418 components: - - pos: -10.5,30.5 + - pos: -22.5,17.5 parent: 2 type: Transform - - uid: 7122 + - uid: 3419 components: - - pos: -9.5,30.5 + - pos: -21.5,17.5 parent: 2 type: Transform - - uid: 7123 + - uid: 3420 components: - - pos: -8.5,30.5 + - pos: -20.5,17.5 parent: 2 type: Transform - - uid: 7124 + - uid: 3421 components: - - pos: -7.5,30.5 + - pos: -19.5,17.5 parent: 2 type: Transform - - uid: 7125 + - uid: 3422 components: - - pos: -6.5,30.5 + - pos: -18.5,17.5 parent: 2 type: Transform - - uid: 7126 + - uid: 3423 components: - - pos: -5.5,30.5 + - pos: -17.5,17.5 parent: 2 type: Transform - - uid: 7127 + - uid: 3424 components: - - pos: -4.5,30.5 + - pos: -17.5,16.5 parent: 2 type: Transform - - uid: 7128 + - uid: 3425 components: - - pos: -3.5,30.5 + - pos: -17.5,15.5 parent: 2 type: Transform - - uid: 7129 + - uid: 3426 components: - - pos: -2.5,30.5 + - pos: -17.5,14.5 parent: 2 type: Transform - - uid: 7130 + - uid: 3427 components: - - pos: -1.5,30.5 + - pos: -18.5,14.5 parent: 2 type: Transform - - uid: 7131 + - uid: 3428 components: - - pos: -0.5,30.5 + - pos: -27.5,19.5 parent: 2 type: Transform - - uid: 7132 + - uid: 3429 components: - - pos: 0.5,30.5 + - pos: -27.5,20.5 parent: 2 type: Transform - - uid: 7133 + - uid: 3430 components: - - pos: 0.5,29.5 + - pos: -27.5,21.5 parent: 2 type: Transform - - uid: 7134 + - uid: 3431 components: - - pos: 0.5,28.5 + - pos: -42.5,47.5 parent: 2 type: Transform - - uid: 7135 + - uid: 3432 components: - - pos: 0.5,27.5 + - pos: -47.5,44.5 parent: 2 type: Transform - - uid: 7136 + - uid: 3433 components: - - pos: 0.5,26.5 + - pos: -46.5,44.5 parent: 2 type: Transform - - uid: 7139 + - uid: 3434 components: - - pos: 1.5,26.5 + - pos: -46.5,45.5 parent: 2 type: Transform - - uid: 7140 + - uid: 3435 components: - - pos: 2.5,26.5 + - pos: -46.5,46.5 parent: 2 type: Transform - - uid: 7141 + - uid: 3436 components: - - pos: 3.5,26.5 + - pos: -45.5,46.5 parent: 2 type: Transform - - uid: 7142 + - uid: 3437 components: - - pos: 4.5,26.5 + - pos: -44.5,46.5 parent: 2 type: Transform - - uid: 7143 + - uid: 3438 components: - - pos: 5.5,26.5 + - pos: -43.5,46.5 parent: 2 type: Transform - - uid: 7144 + - uid: 3439 components: - - pos: 5.5,27.5 + - pos: -42.5,46.5 parent: 2 type: Transform - - uid: 7145 + - uid: 3440 components: - - pos: 5.5,28.5 + - pos: -41.5,46.5 parent: 2 type: Transform - - uid: 7146 + - uid: 3441 components: - - pos: 5.5,29.5 + - pos: -40.5,46.5 parent: 2 type: Transform - - uid: 7148 + - uid: 3442 components: - - pos: 6.5,29.5 + - pos: -39.5,46.5 parent: 2 type: Transform - - uid: 7149 + - uid: 3443 components: - - pos: 7.5,29.5 + - pos: -38.5,46.5 parent: 2 type: Transform - - uid: 7150 + - uid: 3444 components: - - pos: 8.5,29.5 + - pos: -37.5,46.5 parent: 2 type: Transform - - uid: 7151 + - uid: 3445 components: - - pos: 9.5,29.5 + - pos: -36.5,46.5 parent: 2 type: Transform - - uid: 7152 + - uid: 3446 components: - - pos: 10.5,29.5 + - pos: -36.5,45.5 parent: 2 type: Transform - - uid: 7153 + - uid: 3447 components: - - pos: 11.5,29.5 + - pos: -36.5,44.5 parent: 2 type: Transform - - uid: 7154 + - uid: 3448 components: - - pos: 12.5,29.5 + - pos: -36.5,43.5 parent: 2 type: Transform - - uid: 7155 + - uid: 3449 components: - - pos: 13.5,29.5 + - pos: -36.5,42.5 parent: 2 type: Transform - - uid: 7156 + - uid: 3450 components: - - pos: 14.5,29.5 + - pos: -36.5,41.5 parent: 2 type: Transform - - uid: 7157 + - uid: 3451 components: - - pos: 15.5,29.5 + - pos: -36.5,40.5 parent: 2 type: Transform - - uid: 7158 + - uid: 3452 components: - - pos: 16.5,29.5 + - pos: -33.5,40.5 parent: 2 type: Transform - - uid: 7159 + - uid: 3453 components: - - pos: 17.5,29.5 + - pos: -34.5,40.5 parent: 2 type: Transform - - uid: 7160 + - uid: 3454 components: - - pos: 18.5,29.5 + - pos: -35.5,40.5 parent: 2 type: Transform - - uid: 7161 + - uid: 3455 components: - - pos: 19.5,29.5 + - pos: -32.5,32.5 parent: 2 type: Transform - - uid: 7162 + - uid: 3456 components: - - pos: 20.5,29.5 + - pos: -32.5,33.5 parent: 2 type: Transform - - uid: 7163 + - uid: 3457 components: - - pos: 21.5,29.5 + - pos: -32.5,34.5 parent: 2 type: Transform - - uid: 7164 + - uid: 3458 components: - - pos: 22.5,29.5 + - pos: -32.5,36.5 parent: 2 type: Transform - - uid: 7165 + - uid: 3459 components: - - pos: 23.5,29.5 + - pos: -34.5,36.5 parent: 2 type: Transform - - uid: 7166 + - uid: 3460 components: - - pos: 24.5,29.5 + - pos: -32.5,31.5 parent: 2 type: Transform - - uid: 7167 + - uid: 3461 components: - - pos: 25.5,29.5 + - pos: -31.5,31.5 parent: 2 type: Transform - - uid: 7168 + - uid: 3462 components: - - pos: 26.5,29.5 + - pos: -30.5,31.5 parent: 2 type: Transform - - uid: 7169 + - uid: 3463 components: - - pos: 27.5,29.5 + - pos: -29.5,31.5 parent: 2 type: Transform - - uid: 7170 + - uid: 3464 components: - - pos: 27.5,28.5 + - pos: -29.5,30.5 parent: 2 type: Transform - - uid: 7177 + - uid: 3465 components: - - pos: 29.5,27.5 + - pos: -29.5,29.5 parent: 2 type: Transform - - uid: 7178 + - uid: 3466 components: - - pos: 30.5,27.5 + - pos: -29.5,28.5 parent: 2 type: Transform - - uid: 7179 + - uid: 3467 components: - - pos: 31.5,27.5 + - pos: -29.5,27.5 parent: 2 type: Transform - - uid: 7180 + - uid: 3468 components: - - pos: 31.5,26.5 + - pos: -29.5,26.5 parent: 2 type: Transform - - uid: 7181 + - uid: 3469 components: - - pos: 31.5,25.5 + - pos: -29.5,25.5 parent: 2 type: Transform - - uid: 7182 + - uid: 3470 components: - - pos: 31.5,24.5 + - pos: -29.5,24.5 parent: 2 type: Transform - - uid: 7183 + - uid: 3471 components: - - pos: 31.5,23.5 + - pos: -29.5,23.5 parent: 2 type: Transform - - uid: 7184 + - uid: 3472 components: - - pos: 31.5,22.5 + - pos: -29.5,22.5 parent: 2 type: Transform - - uid: 7185 + - uid: 3473 components: - - pos: 31.5,21.5 + - pos: -28.5,22.5 parent: 2 type: Transform - - uid: 7186 + - uid: 3474 components: - - pos: 31.5,20.5 + - pos: -27.5,22.5 parent: 2 type: Transform - - uid: 7187 + - uid: 3475 components: - - pos: 31.5,19.5 + - pos: -28.5,34.5 parent: 2 type: Transform - - uid: 7188 + - uid: 3476 components: - - pos: 31.5,18.5 + - pos: -27.5,34.5 parent: 2 type: Transform - - uid: 7189 + - uid: 3477 components: - - pos: 32.5,18.5 + - pos: -26.5,34.5 parent: 2 type: Transform - - uid: 7190 + - uid: 3478 components: - - pos: 33.5,18.5 + - pos: -25.5,34.5 parent: 2 type: Transform - - uid: 7191 + - uid: 3479 components: - - pos: 34.5,18.5 + - pos: -24.5,34.5 parent: 2 type: Transform - - uid: 7192 + - uid: 3480 components: - - pos: 35.5,18.5 + - pos: -23.5,34.5 parent: 2 type: Transform - - uid: 7193 + - uid: 3481 components: - - pos: 35.5,17.5 + - pos: -22.5,34.5 parent: 2 type: Transform - - uid: 7194 + - uid: 3482 components: - - pos: 35.5,16.5 + - pos: -21.5,34.5 parent: 2 type: Transform - - uid: 7195 + - uid: 3483 components: - - pos: 35.5,15.5 + - pos: -20.5,34.5 parent: 2 type: Transform - - uid: 7196 + - uid: 3484 components: - - pos: 36.5,15.5 + - pos: -20.5,33.5 parent: 2 type: Transform - - uid: 7197 + - uid: 3485 components: - - pos: 37.5,15.5 + - pos: -20.5,32.5 parent: 2 type: Transform - - uid: 7198 + - uid: 3486 components: - - pos: 38.5,15.5 + - pos: -20.5,31.5 parent: 2 type: Transform - - uid: 7199 + - uid: 3487 components: - - pos: 39.5,15.5 + - pos: -20.5,30.5 parent: 2 type: Transform - - uid: 7200 + - uid: 3488 components: - - pos: 39.5,14.5 + - pos: -20.5,29.5 parent: 2 type: Transform - - uid: 7201 + - uid: 3489 components: - - pos: 39.5,13.5 + - pos: -19.5,29.5 parent: 2 type: Transform - - uid: 7202 + - uid: 3490 components: - - pos: 39.5,12.5 + - pos: -18.5,29.5 parent: 2 type: Transform - - uid: 7203 + - uid: 3491 components: - - pos: 39.5,11.5 + - pos: -17.5,29.5 parent: 2 type: Transform - - uid: 7204 + - uid: 3492 components: - - pos: 41.5,11.5 + - pos: -16.5,29.5 parent: 2 type: Transform - - uid: 7205 + - uid: 3493 components: - - pos: 42.5,11.5 + - pos: -15.5,29.5 parent: 2 type: Transform - - uid: 7206 + - uid: 3494 components: - - pos: 43.5,11.5 + - pos: -14.5,29.5 parent: 2 type: Transform - - uid: 7207 + - uid: 3495 components: - - pos: 40.5,10.5 + - pos: -14.5,30.5 parent: 2 type: Transform - - uid: 7208 + - uid: 3496 components: - - pos: 40.5,9.5 + - pos: -14.5,31.5 parent: 2 type: Transform - - uid: 7209 + - uid: 3497 components: - - pos: 40.5,8.5 + - pos: -14.5,32.5 parent: 2 type: Transform - - uid: 7210 + - uid: 3498 components: - - pos: 40.5,7.5 + - pos: -13.5,29.5 parent: 2 type: Transform - - uid: 7211 + - uid: 3499 components: - - pos: 40.5,6.5 + - pos: -17.5,26.5 parent: 2 type: Transform - - uid: 7212 + - uid: 3500 components: - - pos: 40.5,5.5 + - pos: -17.5,25.5 parent: 2 type: Transform - - uid: 7213 + - uid: 3501 components: - - pos: 40.5,4.5 + - pos: -17.5,24.5 parent: 2 type: Transform - - uid: 7214 + - uid: 3502 components: - - pos: 40.5,3.5 + - pos: -17.5,23.5 parent: 2 type: Transform - - uid: 7215 + - uid: 3503 components: - - pos: 40.5,2.5 + - pos: -17.5,22.5 parent: 2 type: Transform - - uid: 7216 + - uid: 3504 components: - - pos: 40.5,1.5 + - pos: -17.5,21.5 parent: 2 type: Transform - - uid: 7217 + - uid: 3505 components: - - pos: 40.5,0.5 + - pos: -17.5,20.5 parent: 2 type: Transform - - uid: 7218 + - uid: 3506 components: - - pos: 39.5,0.5 + - pos: -17.5,19.5 parent: 2 type: Transform - - uid: 7219 + - uid: 3507 components: - - pos: 38.5,0.5 + - pos: -17.5,18.5 parent: 2 type: Transform - - uid: 7220 + - uid: 3508 components: - - pos: 37.5,0.5 + - pos: -12.5,29.5 parent: 2 type: Transform - - uid: 7221 + - uid: 3509 components: - - pos: 36.5,0.5 + - pos: -12.5,30.5 parent: 2 type: Transform - - uid: 7222 + - uid: 3510 components: - - pos: 35.5,0.5 + - pos: -11.5,30.5 parent: 2 type: Transform - - uid: 7223 + - uid: 3511 components: - - pos: 34.5,0.5 + - pos: -10.5,30.5 parent: 2 type: Transform - - uid: 7224 + - uid: 3512 components: - - pos: 33.5,0.5 + - pos: -9.5,30.5 parent: 2 type: Transform - - uid: 7225 + - uid: 3513 components: - - pos: 32.5,0.5 + - pos: -8.5,30.5 parent: 2 type: Transform - - uid: 7226 + - uid: 3514 components: - - pos: 31.5,0.5 + - pos: -7.5,30.5 parent: 2 type: Transform - - uid: 7227 + - uid: 3515 components: - - pos: 30.5,0.5 + - pos: -6.5,30.5 parent: 2 type: Transform - - uid: 7228 + - uid: 3516 components: - - pos: 29.5,0.5 + - pos: -5.5,30.5 parent: 2 type: Transform - - uid: 7229 + - uid: 3517 components: - - pos: 28.5,0.5 + - pos: -4.5,30.5 parent: 2 type: Transform - - uid: 7230 + - uid: 3518 components: - - pos: 27.5,0.5 + - pos: -3.5,30.5 parent: 2 type: Transform - - uid: 7231 + - uid: 3519 components: - - pos: 26.5,0.5 + - pos: -2.5,30.5 parent: 2 type: Transform - - uid: 7232 + - uid: 3520 components: - - pos: 25.5,0.5 + - pos: -1.5,30.5 parent: 2 type: Transform - - uid: 7234 + - uid: 3521 components: - - pos: -1.5,-4.5 + - pos: -0.5,30.5 parent: 2 type: Transform - - uid: 7235 + - uid: 3522 components: - - pos: 0.5,2.5 + - pos: 0.5,30.5 parent: 2 type: Transform - - uid: 7236 + - uid: 3523 components: - - pos: 0.5,1.5 + - pos: 0.5,29.5 parent: 2 type: Transform - - uid: 7237 + - uid: 3524 components: - - pos: 0.5,0.5 + - pos: 0.5,28.5 parent: 2 type: Transform - - uid: 7238 + - uid: 3525 components: - - pos: 0.5,-0.5 + - pos: 0.5,27.5 parent: 2 type: Transform - - uid: 7239 + - uid: 3526 components: - - pos: 0.5,-1.5 + - pos: 0.5,26.5 parent: 2 type: Transform - - uid: 7240 + - uid: 3527 components: - - pos: 0.5,-2.5 + - pos: 1.5,26.5 parent: 2 type: Transform - - uid: 7241 + - uid: 3528 components: - - pos: 0.5,-3.5 + - pos: 2.5,26.5 parent: 2 type: Transform - - uid: 7242 + - uid: 3529 components: - - pos: -0.5,-3.5 + - pos: 3.5,26.5 parent: 2 type: Transform - - uid: 7243 + - uid: 3530 components: - - pos: 25.5,-9.5 + - pos: 4.5,26.5 parent: 2 type: Transform - - uid: 7244 + - uid: 3531 components: - - pos: 25.5,-8.5 + - pos: 5.5,26.5 parent: 2 type: Transform - - uid: 7245 + - uid: 3532 components: - - pos: 25.5,-7.5 + - pos: 5.5,27.5 parent: 2 type: Transform - - uid: 7246 + - uid: 3533 components: - - pos: 25.5,-6.5 + - pos: 5.5,28.5 parent: 2 type: Transform - - uid: 7247 + - uid: 3534 components: - - pos: 25.5,-5.5 + - pos: 5.5,29.5 parent: 2 type: Transform - - uid: 7249 + - uid: 3535 components: - - pos: 25.5,-3.5 + - pos: 6.5,29.5 parent: 2 type: Transform - - uid: 7250 + - uid: 3536 components: - - pos: 25.5,-2.5 + - pos: 7.5,29.5 parent: 2 type: Transform - - uid: 7251 + - uid: 3537 components: - - pos: 25.5,-1.5 + - pos: 8.5,29.5 parent: 2 type: Transform - - uid: 7252 + - uid: 3538 components: - - pos: 25.5,-0.5 + - pos: 9.5,29.5 parent: 2 type: Transform - - uid: 7253 + - uid: 3539 components: - - pos: 17.5,-19.5 + - pos: 10.5,29.5 parent: 2 type: Transform - - uid: 7254 + - uid: 3540 components: - - pos: 17.5,-18.5 + - pos: 11.5,29.5 parent: 2 type: Transform - - uid: 7255 + - uid: 3541 components: - - pos: 17.5,-17.5 + - pos: 12.5,29.5 parent: 2 type: Transform - - uid: 7256 + - uid: 3542 components: - - pos: 17.5,-16.5 + - pos: 13.5,29.5 parent: 2 type: Transform - - uid: 7257 + - uid: 3543 components: - - pos: 17.5,-15.5 + - pos: 14.5,29.5 parent: 2 type: Transform - - uid: 7258 + - uid: 3544 components: - - pos: 17.5,-14.5 + - pos: 15.5,29.5 parent: 2 type: Transform - - uid: 7259 + - uid: 3545 components: - - pos: 17.5,-13.5 + - pos: 16.5,29.5 parent: 2 type: Transform - - uid: 7260 + - uid: 3546 components: - - pos: 17.5,-12.5 + - pos: 17.5,29.5 parent: 2 type: Transform - - uid: 7261 + - uid: 3547 components: - - pos: 17.5,-11.5 + - pos: 18.5,29.5 parent: 2 type: Transform - - uid: 7262 + - uid: 3548 components: - - pos: 17.5,-10.5 + - pos: 19.5,29.5 parent: 2 type: Transform - - uid: 7263 + - uid: 3549 components: - - pos: 17.5,-9.5 + - pos: 20.5,29.5 parent: 2 type: Transform - - uid: 7265 + - uid: 3550 components: - - pos: 18.5,-9.5 + - pos: 21.5,29.5 parent: 2 type: Transform - - uid: 7266 + - uid: 3551 components: - - pos: 19.5,-9.5 + - pos: 22.5,29.5 parent: 2 type: Transform - - uid: 7267 + - uid: 3552 components: - - pos: 20.5,-9.5 + - pos: 23.5,29.5 parent: 2 type: Transform - - uid: 7268 + - uid: 3553 components: - - pos: 21.5,-9.5 + - pos: 24.5,29.5 parent: 2 type: Transform - - uid: 7269 + - uid: 3554 components: - - pos: 22.5,-9.5 + - pos: 25.5,29.5 parent: 2 type: Transform - - uid: 7270 + - uid: 3555 components: - - pos: 23.5,-9.5 + - pos: 26.5,29.5 parent: 2 type: Transform - - uid: 7271 + - uid: 3556 components: - - pos: 24.5,-9.5 + - pos: 27.5,29.5 parent: 2 type: Transform - - uid: 7272 + - uid: 3557 components: - - pos: 0.5,3.5 + - pos: 27.5,28.5 parent: 2 type: Transform - - uid: 7273 + - uid: 3558 components: - - pos: 0.5,4.5 + - pos: 29.5,27.5 parent: 2 type: Transform - - uid: 7274 + - uid: 3559 components: - - pos: 0.5,5.5 + - pos: 30.5,27.5 parent: 2 type: Transform - - uid: 7275 + - uid: 3560 components: - - pos: 0.5,6.5 + - pos: 31.5,27.5 parent: 2 type: Transform - - uid: 7276 + - uid: 3561 components: - - pos: 1.5,6.5 + - pos: 31.5,26.5 parent: 2 type: Transform - - uid: 7277 + - uid: 3562 components: - - pos: 2.5,6.5 + - pos: 31.5,25.5 parent: 2 type: Transform - - uid: 7278 + - uid: 3563 components: - - pos: 3.5,6.5 + - pos: 31.5,24.5 parent: 2 type: Transform - - uid: 7279 + - uid: 3564 components: - - pos: 3.5,9.5 + - pos: 31.5,23.5 parent: 2 type: Transform - - uid: 7280 + - uid: 3565 components: - - pos: 3.5,8.5 + - pos: 31.5,22.5 parent: 2 type: Transform - - uid: 7282 + - uid: 3566 components: - - pos: 3.5,10.5 + - pos: 31.5,21.5 parent: 2 type: Transform - - uid: 7283 + - uid: 3567 components: - - pos: 3.5,11.5 + - pos: 31.5,20.5 parent: 2 type: Transform - - uid: 7284 + - uid: 3568 components: - - pos: 3.5,12.5 + - pos: 31.5,19.5 parent: 2 type: Transform - - uid: 7285 + - uid: 3569 components: - - pos: 3.5,13.5 + - pos: 31.5,18.5 parent: 2 type: Transform - - uid: 7286 + - uid: 3570 components: - - pos: 3.5,14.5 + - pos: 32.5,18.5 parent: 2 type: Transform - - uid: 7287 + - uid: 3571 components: - - pos: 4.5,14.5 + - pos: 33.5,18.5 parent: 2 type: Transform - - uid: 7288 + - uid: 3572 components: - - pos: 5.5,14.5 + - pos: 34.5,18.5 parent: 2 type: Transform - - uid: 7289 + - uid: 3573 components: - - pos: 5.5,15.5 + - pos: 35.5,18.5 parent: 2 type: Transform - - uid: 7290 + - uid: 3574 components: - - pos: 5.5,16.5 + - pos: 35.5,17.5 parent: 2 type: Transform - - uid: 7291 + - uid: 3575 components: - - pos: 5.5,17.5 + - pos: 35.5,16.5 parent: 2 type: Transform - - uid: 7292 + - uid: 3576 components: - - pos: 5.5,18.5 + - pos: 35.5,15.5 parent: 2 type: Transform - - uid: 7293 + - uid: 3577 components: - - pos: 5.5,19.5 + - pos: 36.5,15.5 parent: 2 type: Transform - - uid: 7294 + - uid: 3578 components: - - pos: 5.5,20.5 + - pos: 37.5,15.5 parent: 2 type: Transform - - uid: 7295 + - uid: 3579 components: - - pos: 5.5,21.5 + - pos: 38.5,15.5 parent: 2 type: Transform - - uid: 7296 + - uid: 3580 components: - - pos: 5.5,22.5 + - pos: 39.5,15.5 parent: 2 type: Transform - - uid: 7297 + - uid: 3581 components: - - pos: 5.5,23.5 + - pos: 39.5,14.5 parent: 2 type: Transform - - uid: 7298 + - uid: 3582 components: - - pos: 5.5,24.5 + - pos: 39.5,13.5 parent: 2 type: Transform - - uid: 7299 + - uid: 3583 components: - - pos: 5.5,25.5 + - pos: 39.5,12.5 parent: 2 type: Transform - - uid: 7425 + - uid: 3584 components: - - pos: -36.5,36.5 + - pos: 39.5,11.5 parent: 2 type: Transform - - uid: 7426 + - uid: 3585 components: - - pos: -36.5,38.5 + - pos: 41.5,11.5 parent: 2 type: Transform - - uid: 7430 + - uid: 3586 components: - - pos: -32.5,35.5 + - pos: 42.5,11.5 parent: 2 type: Transform - - uid: 7431 + - uid: 3587 components: - - pos: -33.5,36.5 + - pos: 43.5,11.5 parent: 2 type: Transform - - uid: 7432 + - uid: 3588 components: - - pos: -35.5,36.5 + - pos: 40.5,10.5 parent: 2 type: Transform - - uid: 7792 + - uid: 3589 components: - - pos: -4.5,-21.5 + - pos: 40.5,9.5 parent: 2 type: Transform - - uid: 8067 + - uid: 3590 components: - - pos: -36.5,39.5 + - pos: 40.5,8.5 parent: 2 type: Transform - - uid: 8068 + - uid: 3591 components: - - pos: -36.5,37.5 + - pos: 40.5,7.5 parent: 2 type: Transform - - uid: 8789 + - uid: 3592 components: - - pos: -32.5,40.5 + - pos: 40.5,6.5 parent: 2 type: Transform - - uid: 9175 + - uid: 3593 components: - - pos: -16.5,-59.5 + - pos: 40.5,5.5 parent: 2 type: Transform - - uid: 9176 + - uid: 3594 components: - - pos: -16.5,-58.5 + - pos: 40.5,4.5 parent: 2 type: Transform - - uid: 9177 + - uid: 3595 components: - - pos: -16.5,-57.5 + - pos: 40.5,3.5 parent: 2 type: Transform - - uid: 9178 + - uid: 3596 components: - - pos: -16.5,-56.5 + - pos: 40.5,2.5 parent: 2 type: Transform - - uid: 9179 + - uid: 3597 components: - - pos: -16.5,-55.5 + - pos: 40.5,1.5 parent: 2 type: Transform - - uid: 9180 + - uid: 3598 components: - - pos: -16.5,-54.5 + - pos: 40.5,0.5 parent: 2 type: Transform - - uid: 9181 + - uid: 3599 components: - - pos: -16.5,-52.5 + - pos: 39.5,0.5 parent: 2 type: Transform - - uid: 9182 + - uid: 3600 components: - - pos: -16.5,-53.5 + - pos: 38.5,0.5 parent: 2 type: Transform - - uid: 9183 + - uid: 3601 components: - - pos: -16.5,-51.5 + - pos: 37.5,0.5 parent: 2 type: Transform - - uid: 9184 + - uid: 3602 components: - - pos: -16.5,-50.5 + - pos: 36.5,0.5 parent: 2 type: Transform - - uid: 9185 + - uid: 3603 components: - - pos: -16.5,-49.5 + - pos: 35.5,0.5 parent: 2 type: Transform - - uid: 9186 + - uid: 3604 components: - - pos: -16.5,-48.5 + - pos: 34.5,0.5 parent: 2 type: Transform - - uid: 9187 + - uid: 3605 components: - - pos: -16.5,-47.5 + - pos: 33.5,0.5 parent: 2 type: Transform - - uid: 9188 + - uid: 3606 components: - - pos: -16.5,-46.5 + - pos: 32.5,0.5 parent: 2 type: Transform - - uid: 9189 + - uid: 3607 components: - - pos: -16.5,-45.5 + - pos: 31.5,0.5 parent: 2 type: Transform - - uid: 9190 + - uid: 3608 components: - - pos: -16.5,-44.5 + - pos: 30.5,0.5 parent: 2 type: Transform - - uid: 9191 + - uid: 3609 components: - - pos: -16.5,-43.5 + - pos: 29.5,0.5 parent: 2 type: Transform - - uid: 9193 + - uid: 3610 components: - - pos: -16.5,-42.5 + - pos: 28.5,0.5 parent: 2 type: Transform - - uid: 9194 + - uid: 3611 components: - - pos: -16.5,-41.5 + - pos: 27.5,0.5 parent: 2 type: Transform - - uid: 9195 + - uid: 3612 components: - - pos: -16.5,-40.5 + - pos: 26.5,0.5 parent: 2 type: Transform - - uid: 9196 + - uid: 3613 components: - - pos: -16.5,-61.5 + - pos: 25.5,0.5 parent: 2 type: Transform - - uid: 9197 + - uid: 3614 components: - - pos: -16.5,-63.5 + - pos: -1.5,-4.5 parent: 2 type: Transform - - uid: 9198 + - uid: 3615 components: - - pos: -16.5,-64.5 + - pos: 0.5,2.5 parent: 2 type: Transform - - uid: 9199 + - uid: 3616 components: - - pos: -16.5,-65.5 + - pos: 0.5,1.5 parent: 2 type: Transform - - uid: 9200 + - uid: 3617 components: - - pos: -16.5,-66.5 + - pos: 0.5,0.5 parent: 2 type: Transform - - uid: 9201 + - uid: 3618 components: - - pos: -16.5,-67.5 + - pos: 0.5,-0.5 parent: 2 type: Transform - - uid: 9202 + - uid: 3619 components: - - pos: -16.5,-68.5 + - pos: 0.5,-1.5 parent: 2 type: Transform - - uid: 9203 + - uid: 3620 components: - - pos: -16.5,-69.5 + - pos: 0.5,-2.5 parent: 2 type: Transform - - uid: 9204 + - uid: 3621 components: - - pos: -16.5,-70.5 + - pos: 0.5,-3.5 parent: 2 type: Transform - - uid: 9205 + - uid: 3622 components: - - pos: -16.5,-71.5 + - pos: -0.5,-3.5 parent: 2 type: Transform - - uid: 9206 + - uid: 3623 components: - - pos: -16.5,-72.5 + - pos: 25.5,-9.5 parent: 2 type: Transform - - uid: 9207 + - uid: 3624 components: - - pos: -16.5,-73.5 + - pos: 25.5,-8.5 parent: 2 type: Transform - - uid: 9208 + - uid: 3625 components: - - pos: -16.5,-74.5 + - pos: 25.5,-7.5 parent: 2 type: Transform - - uid: 9209 + - uid: 3626 components: - - pos: -16.5,-75.5 + - pos: 25.5,-6.5 parent: 2 type: Transform - - uid: 9210 + - uid: 3627 components: - - pos: -16.5,-76.5 + - pos: 25.5,-5.5 parent: 2 type: Transform - - uid: 9211 + - uid: 3628 components: - - pos: -16.5,-77.5 + - pos: 25.5,-3.5 parent: 2 type: Transform - - uid: 9212 + - uid: 3629 components: - - pos: -16.5,-78.5 + - pos: 25.5,-2.5 parent: 2 type: Transform - - uid: 9213 + - uid: 3630 components: - - pos: -16.5,-79.5 + - pos: 25.5,-1.5 parent: 2 type: Transform - - uid: 9214 + - uid: 3631 components: - - pos: -16.5,-80.5 + - pos: 25.5,-0.5 parent: 2 type: Transform - - uid: 9215 + - uid: 3632 components: - - pos: -15.5,-80.5 + - pos: 17.5,-19.5 parent: 2 type: Transform - - uid: 9216 + - uid: 3633 components: - - pos: -14.5,-80.5 + - pos: 17.5,-18.5 parent: 2 type: Transform - - uid: 9217 + - uid: 3634 components: - - pos: -14.5,-81.5 + - pos: 17.5,-17.5 parent: 2 type: Transform - - uid: 9265 + - uid: 3635 components: - - pos: -16.5,-38.5 + - pos: 17.5,-16.5 parent: 2 type: Transform - - uid: 9267 + - uid: 3636 components: - - pos: -14.5,-82.5 + - pos: 17.5,-15.5 parent: 2 type: Transform - - uid: 9268 + - uid: 3637 components: - - pos: -16.5,-37.5 + - pos: 17.5,-14.5 parent: 2 type: Transform - - uid: 9269 + - uid: 3638 components: - - pos: -16.5,-36.5 + - pos: 17.5,-13.5 parent: 2 type: Transform - - uid: 9270 + - uid: 3639 components: - - pos: -16.5,-35.5 + - pos: 17.5,-12.5 parent: 2 type: Transform - - uid: 9271 + - uid: 3640 components: - - pos: -16.5,-34.5 + - pos: 17.5,-11.5 parent: 2 type: Transform - - uid: 9272 + - uid: 3641 components: - - pos: -16.5,-62.5 + - pos: 17.5,-10.5 parent: 2 type: Transform - - uid: 9595 + - uid: 3642 components: - - pos: -19.5,26.5 + - pos: 17.5,-9.5 parent: 2 type: Transform - - uid: 9596 + - uid: 3643 components: - - pos: -19.5,27.5 + - pos: 18.5,-9.5 parent: 2 type: Transform - - uid: 9597 + - uid: 3644 components: - - pos: -19.5,28.5 + - pos: 19.5,-9.5 parent: 2 type: Transform - - uid: 11966 + - uid: 3645 components: - - pos: 28.5,26.5 + - pos: 20.5,-9.5 parent: 2 type: Transform - - uid: 12547 + - uid: 3646 components: - - pos: 20.5,-20.5 + - pos: 21.5,-9.5 parent: 2 type: Transform - - uid: 12665 + - uid: 3647 components: - - pos: 25.5,-4.5 + - pos: 22.5,-9.5 parent: 2 type: Transform - - uid: 13168 + - uid: 3648 components: - - pos: 28.5,24.5 + - pos: 23.5,-9.5 parent: 2 type: Transform - - uid: 13628 + - uid: 3649 components: - - pos: 25.5,-22.5 + - pos: 24.5,-9.5 parent: 2 type: Transform - - uid: 14357 + - uid: 3650 components: - - pos: 26.5,-22.5 + - pos: 0.5,3.5 parent: 2 type: Transform - - uid: 14964 + - uid: 3651 components: - - pos: -36.5,-29.5 + - pos: 0.5,4.5 parent: 2 type: Transform - - uid: 14965 + - uid: 3652 components: - - pos: -37.5,-29.5 + - pos: 0.5,5.5 parent: 2 type: Transform - - uid: 14966 + - uid: 3653 components: - - pos: -38.5,-28.5 + - pos: 0.5,6.5 parent: 2 type: Transform - - uid: 14967 + - uid: 3654 components: - - pos: -37.5,-28.5 + - pos: 1.5,6.5 parent: 2 type: Transform - - uid: 14968 + - uid: 3655 components: - - pos: -36.5,-28.5 + - pos: 2.5,6.5 parent: 2 type: Transform - - uid: 14969 + - uid: 3656 components: - - pos: -35.5,-28.5 + - pos: 3.5,6.5 parent: 2 type: Transform - - uid: 14971 + - uid: 3657 components: - - pos: -40.5,-32.5 + - pos: 3.5,9.5 parent: 2 type: Transform - - uid: 14972 + - uid: 3658 components: - - pos: -40.5,-33.5 + - pos: 3.5,8.5 parent: 2 type: Transform - - uid: 14973 + - uid: 3659 components: - - pos: -40.5,-34.5 + - pos: 3.5,10.5 parent: 2 type: Transform - - uid: 14974 + - uid: 3660 components: - - pos: -41.5,-32.5 + - pos: 3.5,11.5 parent: 2 type: Transform - - uid: 14975 + - uid: 3661 components: - - pos: -41.5,-33.5 + - pos: 3.5,12.5 parent: 2 type: Transform - - uid: 14976 + - uid: 3662 components: - - pos: -41.5,-34.5 + - pos: 3.5,13.5 parent: 2 type: Transform - - uid: 14977 + - uid: 3663 components: - - pos: -41.5,-31.5 + - pos: 3.5,14.5 parent: 2 type: Transform - - uid: 14978 + - uid: 3664 components: - - pos: -40.5,-37.5 + - pos: 4.5,14.5 parent: 2 type: Transform - - uid: 14979 + - uid: 3665 components: - - pos: -40.5,-38.5 + - pos: 5.5,14.5 parent: 2 type: Transform - - uid: 14980 + - uid: 3666 components: - - pos: -40.5,-39.5 + - pos: 5.5,15.5 parent: 2 type: Transform - - uid: 14981 + - uid: 3667 components: - - pos: -41.5,-37.5 + - pos: 5.5,16.5 parent: 2 type: Transform - - uid: 14982 + - uid: 3668 components: - - pos: -41.5,-38.5 + - pos: 5.5,17.5 parent: 2 type: Transform - - uid: 14983 + - uid: 3669 components: - - pos: -41.5,-39.5 + - pos: 5.5,18.5 parent: 2 type: Transform - - uid: 14984 + - uid: 3670 components: - - pos: -40.5,-42.5 + - pos: 5.5,19.5 parent: 2 type: Transform - - uid: 14985 + - uid: 3671 components: - - pos: -40.5,-43.5 + - pos: 5.5,20.5 parent: 2 type: Transform - - uid: 14986 + - uid: 3672 components: - - pos: -40.5,-44.5 + - pos: 5.5,21.5 parent: 2 type: Transform - - uid: 14987 + - uid: 3673 components: - - pos: -41.5,-42.5 + - pos: 5.5,22.5 parent: 2 type: Transform - - uid: 14988 + - uid: 3674 components: - - pos: -41.5,-43.5 + - pos: 5.5,23.5 parent: 2 type: Transform - - uid: 14989 + - uid: 3675 components: - - pos: -41.5,-44.5 + - pos: 5.5,24.5 parent: 2 type: Transform - - uid: 14990 + - uid: 3676 components: - - pos: -41.5,-45.5 + - pos: 5.5,25.5 parent: 2 type: Transform - - uid: 14991 + - uid: 3677 components: - - pos: -37.5,-47.5 + - pos: -36.5,36.5 parent: 2 type: Transform - - uid: 14992 + - uid: 3678 components: - - pos: -37.5,-48.5 + - pos: -36.5,38.5 parent: 2 type: Transform - - uid: 14993 + - uid: 3679 components: - - pos: -36.5,-47.5 + - pos: -32.5,35.5 parent: 2 type: Transform - - uid: 14994 + - uid: 3680 components: - - pos: -36.5,-48.5 + - pos: -33.5,36.5 parent: 2 type: Transform - - uid: 14995 + - uid: 3681 components: - - pos: -35.5,-47.5 + - pos: -35.5,36.5 parent: 2 type: Transform - - uid: 14996 + - uid: 3682 components: - - pos: -35.5,-48.5 + - pos: -4.5,-21.5 parent: 2 type: Transform - - uid: 14997 + - uid: 3683 components: - - pos: -38.5,-48.5 + - pos: -36.5,39.5 parent: 2 type: Transform - - uid: 14998 + - uid: 3684 components: - - pos: -32.5,-48.5 + - pos: -36.5,37.5 parent: 2 type: Transform - - uid: 14999 + - uid: 3685 components: - - pos: -32.5,-47.5 + - pos: -32.5,40.5 parent: 2 type: Transform - - uid: 15000 + - uid: 3686 components: - - pos: -31.5,-48.5 + - pos: -16.5,-59.5 parent: 2 type: Transform - - uid: 15001 + - uid: 3687 components: - - pos: -31.5,-47.5 + - pos: -16.5,-58.5 parent: 2 type: Transform - - uid: 15003 + - uid: 3688 components: - - pos: -28.5,-47.5 + - pos: -16.5,-57.5 parent: 2 type: Transform - - uid: 15004 + - uid: 3689 components: - - pos: -28.5,-48.5 + - pos: -16.5,-56.5 parent: 2 type: Transform - - uid: 15005 + - uid: 3690 components: - - pos: -27.5,-47.5 + - pos: -16.5,-55.5 parent: 2 type: Transform - - uid: 15006 + - uid: 3691 components: - - pos: -27.5,-48.5 + - pos: -16.5,-54.5 parent: 2 type: Transform - - uid: 15007 + - uid: 3692 components: - - pos: -26.5,-47.5 + - pos: -16.5,-52.5 parent: 2 type: Transform - - uid: 15008 + - uid: 3693 components: - - pos: -26.5,-48.5 + - pos: -16.5,-53.5 parent: 2 type: Transform - - uid: 15009 + - uid: 3694 components: - - pos: -25.5,-48.5 + - pos: -16.5,-51.5 parent: 2 type: Transform - - uid: 15140 + - uid: 3695 components: - - pos: 28.5,25.5 + - pos: -16.5,-50.5 parent: 2 type: Transform -- proto: CableHVStack - entities: - - uid: 2731 + - uid: 3696 components: - - pos: -18.524075,-34.377613 + - pos: -16.5,-49.5 parent: 2 type: Transform - - uid: 16764 + - uid: 3697 components: - - pos: -10.552959,-24.292353 + - pos: -16.5,-48.5 parent: 2 type: Transform -- proto: CableHVStack1 - entities: - - uid: 5274 + - uid: 3698 components: - - rot: -1.5707963267948966 rad - pos: 55.34298,14.683756 + - pos: -16.5,-47.5 parent: 2 type: Transform - - uid: 5278 + - uid: 3699 components: - - rot: -1.5707963267948966 rad - pos: 55.502434,7.3422384 + - pos: -16.5,-46.5 parent: 2 type: Transform - - uid: 5279 + - uid: 3700 components: - - rot: -1.5707963267948966 rad - pos: 54.76011,8.709426 + - pos: -16.5,-45.5 parent: 2 type: Transform - - uid: 5280 + - uid: 3701 components: - - rot: -1.5707963267948966 rad - pos: 59.60476,4.3734884 + - pos: -16.5,-44.5 parent: 2 type: Transform - - uid: 5281 + - uid: 3702 components: - - rot: -1.5707963267948966 rad - pos: 58.04197,11.697707 + - pos: -16.5,-43.5 parent: 2 type: Transform - - uid: 5282 + - uid: 3703 components: - - rot: -1.5707963267948966 rad - pos: 51.40011,7.6742697 + - pos: -16.5,-42.5 parent: 2 type: Transform - - uid: 5283 + - uid: 3704 components: - - rot: -1.5707963267948966 rad - pos: 51.02577,18.472818 + - pos: -16.5,-41.5 parent: 2 type: Transform - - uid: 6568 + - uid: 3705 components: - - rot: -1.5707963267948966 rad - pos: -48.16713,57.640255 + - pos: -16.5,-40.5 parent: 2 type: Transform - - uid: 6573 + - uid: 3706 components: - - rot: 3.141592653589793 rad - pos: -45.10015,61.878536 + - pos: -16.5,-61.5 parent: 2 type: Transform - - uid: 6574 + - uid: 3707 components: - - rot: 1.5707963267948966 rad - pos: -50.394104,61.116817 + - pos: -16.5,-63.5 parent: 2 type: Transform - - uid: 6575 + - uid: 3708 components: - - pos: -36.089542,60.436928 + - pos: -16.5,-64.5 parent: 2 type: Transform - - uid: 6576 + - uid: 3709 components: - - pos: -46.93643,65.10828 + - pos: -16.5,-65.5 parent: 2 type: Transform - - uid: 6577 + - uid: 3710 components: - - rot: -1.5707963267948966 rad - pos: -49.632244,65.98718 + - pos: -16.5,-66.5 parent: 2 type: Transform - - uid: 6578 + - uid: 3711 components: - - rot: 3.141592653589793 rad - pos: -36.683334,64.776245 + - pos: -16.5,-67.5 parent: 2 type: Transform - - uid: 6579 + - uid: 3712 components: - - rot: 1.5707963267948966 rad - pos: -34.858845,66.04578 + - pos: -16.5,-68.5 parent: 2 type: Transform - - uid: 6580 + - uid: 3713 components: - - rot: -1.5707963267948966 rad - pos: -39.84024,60.710365 + - pos: -16.5,-69.5 parent: 2 type: Transform - - uid: 6581 + - uid: 3714 components: - - rot: 3.141592653589793 rad - pos: -37.2421,61.823647 + - pos: -16.5,-70.5 parent: 2 type: Transform - - uid: 6583 + - uid: 3715 components: - - rot: 1.5707963267948966 rad - pos: -37.066284,58.220463 + - pos: -16.5,-71.5 parent: 2 type: Transform - - uid: 6584 + - uid: 3716 components: - - pos: -34.95652,56.404057 + - pos: -16.5,-72.5 parent: 2 type: Transform - - uid: 6585 + - uid: 3717 components: - - rot: -1.5707963267948966 rad - pos: -41.461636,57.654057 + - pos: -16.5,-73.5 parent: 2 type: Transform - - uid: 6586 + - uid: 3718 components: - - rot: 3.141592653589793 rad - pos: -44.447212,57.614994 + - pos: -16.5,-74.5 parent: 2 type: Transform - - uid: 6644 + - uid: 3719 components: - - rot: 3.141592653589793 rad - pos: -34.33405,-34.31843 + - pos: -16.5,-75.5 parent: 2 type: Transform - - uid: 6645 + - uid: 3720 components: - - rot: 1.5707963267948966 rad - pos: -31.345215,-37.189526 + - pos: -16.5,-76.5 parent: 2 type: Transform - - uid: 6646 + - uid: 3721 components: - - pos: -31.521027,-42.931713 + - pos: -16.5,-77.5 parent: 2 type: Transform - - uid: 6647 + - uid: 3722 components: - - rot: -1.5707963267948966 rad - pos: -37.176376,-45.539135 + - pos: -16.5,-78.5 parent: 2 type: Transform - - uid: 6649 + - uid: 3723 components: - - rot: 3.141592653589793 rad - pos: -38.7587,-40.002026 + - pos: -16.5,-79.5 parent: 2 type: Transform - - uid: 6650 + - uid: 3724 components: - - rot: 1.5707963267948966 rad - pos: -38.34847,-33.351635 + - pos: -16.5,-80.5 parent: 2 type: Transform - - uid: 6651 + - uid: 3725 components: - - pos: -34.011726,-31.300854 + - pos: -15.5,-80.5 parent: 2 type: Transform - - uid: 6652 + - uid: 3726 components: - - rot: -1.5707963267948966 rad - pos: -27.213585,-34.34773 + - pos: -14.5,-80.5 parent: 2 type: Transform - - uid: 6653 + - uid: 3727 components: - - rot: 3.141592653589793 rad - pos: -25.97683,-38.156322 + - pos: -14.5,-81.5 parent: 2 type: Transform - - uid: 6654 + - uid: 3728 components: - - rot: 1.5707963267948966 rad - pos: -25.88892,-42.66804 + - pos: -16.5,-38.5 parent: 2 type: Transform - - uid: 6655 + - uid: 3729 components: - - pos: -25.625198,-46.212963 + - pos: -14.5,-82.5 parent: 2 type: Transform - - uid: 6656 + - uid: 3730 components: - - rot: -1.5707963267948966 rad - pos: -34.85543,-45.832104 + - pos: -16.5,-37.5 parent: 2 type: Transform - - uid: 15239 + - uid: 3731 components: - - rot: -1.5707963267948966 rad - pos: -26.478298,34.047295 + - pos: -16.5,-36.5 parent: 2 type: Transform - - uid: 15240 + - uid: 3732 components: - - pos: -30.648613,41.426968 + - pos: -16.5,-35.5 parent: 2 type: Transform - - uid: 15249 + - uid: 3733 components: - - rot: 3.141592653589793 rad - pos: -8.1075325,29.80727 + - pos: -16.5,-34.5 parent: 2 type: Transform - - uid: 15250 + - uid: 3734 components: - - rot: -1.5707963267948966 rad - pos: -17.544165,30.27602 + - pos: -16.5,-62.5 parent: 2 type: Transform -- proto: CableHVStack10 - entities: - - uid: 4004 + - uid: 3735 components: - - pos: 45.414303,9.464138 + - pos: -19.5,26.5 parent: 2 type: Transform - - uid: 9299 + - uid: 3736 components: - - pos: -44.48516,49.352608 + - pos: -19.5,27.5 parent: 2 type: Transform -- proto: CableMV - entities: - - uid: 892 + - uid: 3737 components: - - pos: -64.5,-4.5 + - pos: -19.5,28.5 parent: 2 type: Transform - - uid: 907 + - uid: 3738 components: - - pos: -24.5,-29.5 + - pos: 28.5,26.5 parent: 2 type: Transform - - uid: 928 + - uid: 3739 components: - - pos: -15.5,-36.5 + - pos: 20.5,-20.5 parent: 2 type: Transform - - uid: 959 + - uid: 3740 components: - - pos: -13.5,-33.5 + - pos: 25.5,-4.5 parent: 2 type: Transform - - uid: 960 + - uid: 3741 components: - - pos: -7.5,-24.5 + - pos: 28.5,24.5 parent: 2 type: Transform - - uid: 967 + - uid: 3742 components: - - pos: -15.5,-33.5 + - pos: 25.5,-22.5 parent: 2 type: Transform - - uid: 968 + - uid: 3743 components: - - pos: -15.5,-34.5 + - pos: 26.5,-22.5 parent: 2 type: Transform - - uid: 982 + - uid: 3744 components: - - pos: -15.5,-35.5 + - pos: -36.5,-29.5 parent: 2 type: Transform - - uid: 985 + - uid: 3745 components: - - pos: -14.5,-33.5 + - pos: -37.5,-29.5 parent: 2 type: Transform - - uid: 989 + - uid: 3746 components: - - pos: -12.5,-33.5 + - pos: -38.5,-28.5 parent: 2 type: Transform - - uid: 1004 + - uid: 3747 components: - - pos: -11.5,-33.5 + - pos: -37.5,-28.5 parent: 2 type: Transform - - uid: 1014 + - uid: 3748 components: - - pos: -10.5,-33.5 + - pos: -36.5,-28.5 parent: 2 type: Transform - - uid: 1016 + - uid: 3749 components: - - pos: -9.5,-33.5 + - pos: -35.5,-28.5 parent: 2 type: Transform - - uid: 1017 + - uid: 3750 components: - - pos: -11.5,-6.5 + - pos: -40.5,-32.5 parent: 2 type: Transform - - uid: 1021 + - uid: 3751 components: - - pos: -7.5,4.5 + - pos: -40.5,-33.5 parent: 2 type: Transform - - uid: 1022 + - uid: 3752 components: - - pos: -7.5,3.5 + - pos: -40.5,-34.5 parent: 2 type: Transform - - uid: 1125 + - uid: 3753 components: - - pos: 0.5,-23.5 + - pos: -41.5,-32.5 parent: 2 type: Transform - - uid: 1127 + - uid: 3754 components: - - pos: 2.5,-23.5 + - pos: -41.5,-33.5 parent: 2 type: Transform - - uid: 1132 + - uid: 3755 components: - - pos: -1.5,-23.5 + - pos: -41.5,-34.5 parent: 2 type: Transform - - uid: 1160 + - uid: 3756 components: - - pos: -3.5,-23.5 + - pos: -41.5,-31.5 parent: 2 type: Transform - - uid: 1162 + - uid: 3757 components: - - pos: -4.5,-22.5 + - pos: -40.5,-37.5 parent: 2 type: Transform - - uid: 1405 + - uid: 3758 components: - - pos: -1.5,-13.5 + - pos: -40.5,-38.5 parent: 2 type: Transform - - uid: 1576 + - uid: 3759 components: - - pos: 1.5,-9.5 + - pos: -40.5,-39.5 parent: 2 type: Transform - - uid: 1585 + - uid: 3760 components: - - pos: 8.5,-11.5 + - pos: -41.5,-37.5 parent: 2 type: Transform - - uid: 1612 + - uid: 3761 components: - - pos: 1.5,-10.5 + - pos: -41.5,-38.5 parent: 2 type: Transform - - uid: 1613 + - uid: 3762 components: - - pos: 0.5,-10.5 + - pos: -41.5,-39.5 parent: 2 type: Transform - - uid: 1614 + - uid: 3763 components: - - pos: -0.5,-10.5 + - pos: -40.5,-42.5 parent: 2 type: Transform - - uid: 1615 + - uid: 3764 components: - - pos: -0.5,-11.5 + - pos: -40.5,-43.5 parent: 2 type: Transform - - uid: 1616 + - uid: 3765 components: - - pos: -0.5,-12.5 + - pos: -40.5,-44.5 parent: 2 type: Transform - - uid: 1617 + - uid: 3766 components: - - pos: -0.5,-13.5 + - pos: -41.5,-42.5 parent: 2 type: Transform - - uid: 1618 + - uid: 3767 components: - - pos: 0.5,-13.5 + - pos: -41.5,-43.5 parent: 2 type: Transform - - uid: 1619 + - uid: 3768 components: - - pos: 1.5,-13.5 + - pos: -41.5,-44.5 parent: 2 type: Transform - - uid: 1646 + - uid: 3769 components: - - pos: 6.5,-9.5 + - pos: -41.5,-45.5 parent: 2 type: Transform - - uid: 1649 + - uid: 3770 components: - - pos: 9.5,-5.5 + - pos: -37.5,-47.5 parent: 2 type: Transform - - uid: 1660 + - uid: 3771 components: - - pos: -2.5,-13.5 + - pos: -37.5,-48.5 parent: 2 type: Transform - - uid: 1661 + - uid: 3772 components: - - pos: -3.5,-13.5 + - pos: -36.5,-47.5 parent: 2 type: Transform - - uid: 1662 + - uid: 3773 components: - - pos: -4.5,-13.5 + - pos: -36.5,-48.5 parent: 2 type: Transform - - uid: 1663 + - uid: 3774 components: - - pos: -5.5,-13.5 + - pos: -35.5,-47.5 parent: 2 type: Transform - - uid: 1664 + - uid: 3775 components: - - pos: -6.5,-13.5 + - pos: -35.5,-48.5 parent: 2 type: Transform - - uid: 1665 + - uid: 3776 components: - - pos: -7.5,-13.5 + - pos: -38.5,-48.5 parent: 2 type: Transform - - uid: 1666 + - uid: 3777 components: - - pos: -8.5,-13.5 + - pos: -32.5,-48.5 parent: 2 type: Transform - - uid: 1667 + - uid: 3778 components: - - pos: -1.5,-7.5 + - pos: -32.5,-47.5 parent: 2 type: Transform - - uid: 1668 + - uid: 3779 components: - - pos: 0.5,1.5 + - pos: -31.5,-48.5 parent: 2 type: Transform - - uid: 1669 + - uid: 3780 components: - - pos: -0.5,-0.5 + - pos: -31.5,-47.5 parent: 2 type: Transform - - uid: 1670 + - uid: 3781 components: - - pos: 1.5,1.5 + - pos: -28.5,-47.5 parent: 2 type: Transform - - uid: 1673 + - uid: 3782 components: - - pos: -0.5,-2.5 + - pos: -28.5,-48.5 parent: 2 type: Transform - - uid: 1773 + - uid: 3783 components: - - pos: -1.5,-9.5 + - pos: -27.5,-47.5 parent: 2 type: Transform - - uid: 1786 + - uid: 3784 components: - - pos: -1.5,-4.5 + - pos: -27.5,-48.5 parent: 2 type: Transform - - uid: 1819 + - uid: 3785 components: - - pos: -1.5,-6.5 + - pos: -26.5,-47.5 parent: 2 type: Transform - - uid: 1820 + - uid: 3786 components: - - pos: -0.5,0.5 + - pos: -26.5,-48.5 parent: 2 type: Transform - - uid: 1830 + - uid: 3787 components: - - pos: 26.5,-22.5 + - pos: -25.5,-48.5 parent: 2 type: Transform - - uid: 1861 + - uid: 3788 components: - - pos: 4.5,-12.5 + - pos: 28.5,25.5 parent: 2 type: Transform - - uid: 1862 +- proto: CableHVStack + entities: + - uid: 3789 components: - - pos: -1.5,-8.5 + - pos: -18.524075,-34.377613 parent: 2 type: Transform - - uid: 1873 + - uid: 3790 components: - - pos: 20.5,-21.5 + - pos: -10.552959,-24.292353 parent: 2 type: Transform - - uid: 1898 +- proto: CableHVStack1 + entities: + - uid: 3791 components: - - pos: -1.5,-10.5 + - rot: -1.5707963267948966 rad + pos: 55.34298,14.683756 parent: 2 type: Transform - - uid: 1959 + - uid: 3792 components: - - pos: -0.5,-1.5 + - rot: -1.5707963267948966 rad + pos: 55.502434,7.3422384 parent: 2 type: Transform - - uid: 1966 + - uid: 3793 components: - - pos: -1.5,-5.5 + - rot: -1.5707963267948966 rad + pos: 54.76011,8.709426 parent: 2 type: Transform - - uid: 2229 + - uid: 3794 components: - - pos: -0.5,-41.5 + - rot: -1.5707963267948966 rad + pos: 59.60476,4.3734884 parent: 2 type: Transform - - uid: 2421 + - uid: 3795 components: - - pos: -31.5,-30.5 + - rot: -1.5707963267948966 rad + pos: 58.04197,11.697707 parent: 2 type: Transform - - uid: 2486 + - uid: 3796 components: - - pos: -26.5,-31.5 + - rot: -1.5707963267948966 rad + pos: 51.40011,7.6742697 parent: 2 type: Transform - - uid: 2527 + - uid: 3797 components: - - pos: -36.5,-31.5 + - rot: -1.5707963267948966 rad + pos: 51.02577,18.472818 parent: 2 type: Transform - - uid: 2540 + - uid: 3798 components: - - pos: -37.5,-31.5 + - rot: -1.5707963267948966 rad + pos: -48.16713,57.640255 parent: 2 type: Transform - - uid: 2594 + - uid: 3799 components: - - pos: -26.5,-45.5 + - rot: 3.141592653589793 rad + pos: -45.10015,61.878536 parent: 2 type: Transform - - uid: 2678 + - uid: 3800 components: - - pos: -31.5,-25.5 + - rot: 1.5707963267948966 rad + pos: -50.394104,61.116817 parent: 2 type: Transform - - uid: 2686 + - uid: 3801 components: - - pos: -34.5,-45.5 + - pos: -36.089542,60.436928 parent: 2 type: Transform - - uid: 2800 + - uid: 3802 components: - - pos: -27.5,-45.5 + - pos: -46.93643,65.10828 parent: 2 type: Transform - - uid: 2824 + - uid: 3803 components: - - pos: -31.5,-26.5 + - rot: -1.5707963267948966 rad + pos: -49.632244,65.98718 parent: 2 type: Transform - - uid: 2825 + - uid: 3804 components: - - pos: -31.5,-27.5 + - rot: 3.141592653589793 rad + pos: -36.683334,64.776245 parent: 2 type: Transform - - uid: 2826 + - uid: 3805 components: - - pos: -31.5,-28.5 + - rot: 1.5707963267948966 rad + pos: -34.858845,66.04578 parent: 2 type: Transform - - uid: 2827 + - uid: 3806 components: - - pos: -31.5,-31.5 + - rot: -1.5707963267948966 rad + pos: -39.84024,60.710365 parent: 2 type: Transform - - uid: 2828 + - uid: 3807 components: - - pos: -32.5,-31.5 + - rot: 3.141592653589793 rad + pos: -37.2421,61.823647 parent: 2 type: Transform - - uid: 2829 + - uid: 3808 components: - - pos: -33.5,-31.5 + - rot: 1.5707963267948966 rad + pos: -37.066284,58.220463 parent: 2 type: Transform - - uid: 2830 + - uid: 3809 components: - - pos: -28.5,-31.5 + - pos: -34.95652,56.404057 parent: 2 type: Transform - - uid: 2831 + - uid: 3810 components: - - pos: -27.5,-31.5 + - rot: -1.5707963267948966 rad + pos: -41.461636,57.654057 parent: 2 type: Transform - - uid: 2832 + - uid: 3811 components: - - pos: -24.5,-34.5 + - rot: 3.141592653589793 rad + pos: -44.447212,57.614994 parent: 2 type: Transform - - uid: 2833 + - uid: 3812 components: - - pos: -24.5,-31.5 + - rot: 3.141592653589793 rad + pos: -34.33405,-34.31843 parent: 2 type: Transform - - uid: 2834 + - uid: 3813 components: - - pos: -31.5,-29.5 + - rot: 1.5707963267948966 rad + pos: -31.345215,-37.189526 parent: 2 type: Transform - - uid: 2835 + - uid: 3814 components: - - pos: -34.5,-45.5 + - pos: -31.521027,-42.931713 parent: 2 type: Transform - - uid: 2836 + - uid: 3815 components: - - pos: -24.5,-32.5 + - rot: -1.5707963267948966 rad + pos: -37.176376,-45.539135 parent: 2 type: Transform - - uid: 2837 + - uid: 3816 components: - - pos: -24.5,-33.5 + - rot: 3.141592653589793 rad + pos: -38.7587,-40.002026 parent: 2 type: Transform - - uid: 2840 + - uid: 3817 components: - - pos: -25.5,-31.5 + - rot: 1.5707963267948966 rad + pos: -38.34847,-33.351635 parent: 2 type: Transform - - uid: 2842 + - uid: 3818 components: - - pos: -35.5,-31.5 + - pos: -34.011726,-31.300854 parent: 2 type: Transform - - uid: 2844 + - uid: 3819 components: - - pos: -38.5,-34.5 + - rot: -1.5707963267948966 rad + pos: -27.213585,-34.34773 parent: 2 type: Transform - - uid: 2845 + - uid: 3820 components: - - pos: -38.5,-35.5 + - rot: 3.141592653589793 rad + pos: -25.97683,-38.156322 parent: 2 type: Transform - - uid: 2846 + - uid: 3821 components: - - pos: -38.5,-36.5 + - rot: 1.5707963267948966 rad + pos: -25.88892,-42.66804 parent: 2 type: Transform - - uid: 2847 + - uid: 3822 components: - - pos: -38.5,-42.5 + - pos: -25.625198,-46.212963 parent: 2 type: Transform - - uid: 2848 + - uid: 3823 components: - - pos: -38.5,-43.5 + - rot: -1.5707963267948966 rad + pos: -34.85543,-45.832104 parent: 2 type: Transform - - uid: 2849 + - uid: 3824 components: - - pos: -38.5,-44.5 + - rot: -1.5707963267948966 rad + pos: -26.478298,34.047295 parent: 2 type: Transform - - uid: 2850 + - uid: 3825 components: - - pos: -38.5,-44.5 + - pos: -30.648613,41.426968 parent: 2 type: Transform - - uid: 2851 + - uid: 3826 components: - - pos: -38.5,-45.5 + - rot: 3.141592653589793 rad + pos: -8.1075325,29.80727 parent: 2 type: Transform - - uid: 2852 + - uid: 3827 components: - - pos: -37.5,-45.5 + - rot: -1.5707963267948966 rad + pos: -17.544165,30.27602 parent: 2 type: Transform - - uid: 2853 +- proto: CableHVStack10 + entities: + - uid: 3828 components: - - pos: -35.5,-45.5 + - pos: 45.414303,9.464138 parent: 2 type: Transform - - uid: 2854 + - uid: 3829 components: - - pos: -25.5,-45.5 + - pos: -44.48516,49.352608 parent: 2 type: Transform - - uid: 2855 +- proto: CableMV + entities: + - uid: 3830 components: - - pos: -24.5,-43.5 + - pos: -64.5,-4.5 parent: 2 type: Transform - - uid: 2856 + - uid: 3831 components: - - pos: -24.5,-42.5 + - pos: -24.5,-29.5 parent: 2 type: Transform - - uid: 2979 + - uid: 3832 components: - - pos: 18.5,-21.5 + - pos: -15.5,-36.5 parent: 2 type: Transform - - uid: 2982 + - uid: 3833 components: - - pos: 20.5,-23.5 + - pos: -13.5,-33.5 parent: 2 type: Transform - - uid: 3183 + - uid: 3834 components: - - pos: -63.5,-6.5 + - pos: -7.5,-24.5 parent: 2 type: Transform - - uid: 3306 + - uid: 3835 components: - - pos: -64.5,-8.5 + - pos: -15.5,-33.5 parent: 2 type: Transform - - uid: 3709 + - uid: 3836 components: - - pos: -17.5,-76.5 + - pos: -15.5,-34.5 parent: 2 type: Transform - - uid: 3949 + - uid: 3837 components: - - pos: -11.5,39.5 + - pos: -15.5,-35.5 parent: 2 type: Transform - - uid: 3982 + - uid: 3838 components: - - pos: -6.5,3.5 + - pos: -14.5,-33.5 parent: 2 type: Transform - - uid: 4433 + - uid: 3839 components: - - pos: 28.5,26.5 + - pos: -12.5,-33.5 parent: 2 type: Transform - - uid: 4435 + - uid: 3840 components: - - pos: 28.5,25.5 + - pos: -11.5,-33.5 parent: 2 type: Transform - - uid: 4540 + - uid: 3841 components: - - pos: 28.5,24.5 + - pos: -10.5,-33.5 parent: 2 type: Transform - - uid: 4709 + - uid: 3842 components: - - pos: -14.5,-38.5 + - pos: -9.5,-33.5 parent: 2 type: Transform - - uid: 4952 + - uid: 3843 components: - - pos: 5.5,-11.5 + - pos: -11.5,-6.5 parent: 2 type: Transform - - uid: 4980 + - uid: 3844 components: - - pos: 28.5,28.5 + - pos: -7.5,4.5 parent: 2 type: Transform - - uid: 5019 + - uid: 3845 components: - - pos: 28.5,27.5 + - pos: -7.5,3.5 parent: 2 type: Transform - - uid: 5388 + - uid: 3846 components: - - pos: 4.5,-13.5 + - pos: 0.5,-23.5 parent: 2 type: Transform - - uid: 5455 + - uid: 3847 components: - - pos: 3.5,-13.5 + - pos: 2.5,-23.5 parent: 2 type: Transform - - uid: 5767 + - uid: 3848 components: - - pos: -33.5,36.5 + - pos: -1.5,-23.5 parent: 2 type: Transform - - uid: 6023 + - uid: 3849 components: - - pos: 4.5,-11.5 + - pos: -3.5,-23.5 parent: 2 type: Transform - - uid: 6078 + - uid: 3850 components: - - pos: 6.5,-11.5 + - pos: -4.5,-22.5 parent: 2 type: Transform - - uid: 6124 + - uid: 3851 components: - - pos: 7.5,-11.5 + - pos: -1.5,-13.5 parent: 2 type: Transform - - uid: 6168 + - uid: 3852 components: - - pos: -8.5,39.5 + - pos: 1.5,-9.5 parent: 2 type: Transform - - uid: 6596 + - uid: 3853 components: - - pos: -10.5,39.5 + - pos: 8.5,-11.5 parent: 2 type: Transform - - uid: 7018 + - uid: 3854 components: - - pos: -32.5,35.5 + - pos: 1.5,-10.5 parent: 2 type: Transform - - uid: 7019 + - uid: 3855 components: - - pos: -32.5,36.5 + - pos: 0.5,-10.5 parent: 2 type: Transform - - uid: 7035 + - uid: 3856 components: - - pos: -47.5,44.5 + - pos: -0.5,-10.5 parent: 2 type: Transform - - uid: 7070 + - uid: 3857 components: - - pos: -32.5,34.5 + - pos: -0.5,-11.5 parent: 2 type: Transform - - uid: 7071 + - uid: 3858 components: - - pos: -32.5,32.5 + - pos: -0.5,-12.5 parent: 2 type: Transform - - uid: 7072 + - uid: 3859 components: - - pos: -32.5,31.5 + - pos: -0.5,-13.5 parent: 2 type: Transform - - uid: 7073 + - uid: 3860 components: - - pos: -32.5,30.5 + - pos: 0.5,-13.5 parent: 2 type: Transform - - uid: 7076 + - uid: 3861 components: - - pos: -22.5,34.5 + - pos: 1.5,-13.5 parent: 2 type: Transform - - uid: 7077 + - uid: 3862 components: - - pos: -32.5,33.5 + - pos: 6.5,-9.5 parent: 2 type: Transform - - uid: 7304 + - uid: 3863 components: - - pos: -46.5,44.5 + - pos: 9.5,-5.5 parent: 2 type: Transform - - uid: 7305 + - uid: 3864 components: - - pos: -46.5,45.5 + - pos: -2.5,-13.5 parent: 2 type: Transform - - uid: 7306 + - uid: 3865 components: - - pos: -46.5,46.5 + - pos: -3.5,-13.5 parent: 2 type: Transform - - uid: 7307 + - uid: 3866 components: - - pos: -45.5,46.5 + - pos: -4.5,-13.5 parent: 2 type: Transform - - uid: 7308 + - uid: 3867 components: - - pos: -44.5,46.5 + - pos: -5.5,-13.5 parent: 2 type: Transform - - uid: 7309 + - uid: 3868 components: - - pos: -43.5,46.5 + - pos: -6.5,-13.5 parent: 2 type: Transform - - uid: 7310 + - uid: 3869 components: - - pos: -42.5,46.5 + - pos: -7.5,-13.5 parent: 2 type: Transform - - uid: 7311 + - uid: 3870 components: - - pos: -41.5,46.5 + - pos: -8.5,-13.5 parent: 2 type: Transform - - uid: 7312 + - uid: 3871 components: - - pos: -40.5,46.5 + - pos: -1.5,-7.5 parent: 2 type: Transform - - uid: 7313 + - uid: 3872 components: - - pos: -39.5,46.5 + - pos: 0.5,1.5 parent: 2 type: Transform - - uid: 7314 + - uid: 3873 components: - - pos: -38.5,46.5 + - pos: -0.5,-0.5 parent: 2 type: Transform - - uid: 7315 + - uid: 3874 components: - - pos: -37.5,46.5 + - pos: 1.5,1.5 parent: 2 type: Transform - - uid: 7316 + - uid: 3875 components: - - pos: -36.5,46.5 + - pos: -0.5,-2.5 parent: 2 type: Transform - - uid: 7317 + - uid: 3876 components: - - pos: -36.5,46.5 + - pos: -1.5,-9.5 parent: 2 type: Transform - - uid: 7318 + - uid: 3877 components: - - pos: -36.5,45.5 + - pos: -1.5,-4.5 parent: 2 type: Transform - - uid: 7319 + - uid: 3878 components: - - pos: -36.5,44.5 + - pos: -1.5,-6.5 parent: 2 type: Transform - - uid: 7320 + - uid: 3879 components: - - pos: -36.5,43.5 + - pos: -0.5,0.5 parent: 2 type: Transform - - uid: 7321 + - uid: 3880 components: - - pos: -36.5,42.5 + - pos: 26.5,-22.5 parent: 2 type: Transform - - uid: 7322 + - uid: 3881 components: - - pos: -36.5,41.5 + - pos: 4.5,-12.5 parent: 2 type: Transform - - uid: 7323 + - uid: 3882 components: - - pos: -19.5,10.5 + - pos: -1.5,-8.5 parent: 2 type: Transform - - uid: 7324 + - uid: 3883 components: - - pos: -20.5,10.5 + - pos: 20.5,-21.5 parent: 2 type: Transform - - uid: 7325 + - uid: 3884 components: - - pos: -20.5,11.5 + - pos: -1.5,-10.5 parent: 2 type: Transform - - uid: 7326 + - uid: 3885 components: - - pos: -43.5,33.5 + - pos: -0.5,-1.5 parent: 2 type: Transform - - uid: 7327 + - uid: 3886 components: - - pos: -39.5,40.5 + - pos: -1.5,-5.5 parent: 2 type: Transform - - uid: 7328 + - uid: 3887 components: - - pos: -39.5,39.5 + - pos: -31.5,-30.5 parent: 2 type: Transform - - uid: 7329 + - uid: 3888 components: - - pos: -39.5,38.5 + - pos: -26.5,-31.5 parent: 2 type: Transform - - uid: 7330 + - uid: 3889 components: - - pos: -39.5,37.5 + - pos: -36.5,-31.5 parent: 2 type: Transform - - uid: 7331 + - uid: 3890 components: - - pos: -39.5,36.5 + - pos: -37.5,-31.5 parent: 2 type: Transform - - uid: 7332 + - uid: 3891 components: - - pos: -39.5,35.5 + - pos: -26.5,-45.5 parent: 2 type: Transform - - uid: 7333 + - uid: 3892 components: - - pos: -39.5,34.5 + - pos: -31.5,-25.5 parent: 2 type: Transform - - uid: 7334 + - uid: 3893 components: - - pos: -40.5,34.5 + - pos: -34.5,-45.5 parent: 2 type: Transform - - uid: 7335 + - uid: 3894 components: - - pos: -41.5,34.5 + - pos: -27.5,-45.5 parent: 2 type: Transform - - uid: 7336 + - uid: 3895 components: - - pos: -41.5,35.5 + - pos: -31.5,-26.5 parent: 2 type: Transform - - uid: 7337 + - uid: 3896 components: - - pos: -42.5,34.5 + - pos: -31.5,-27.5 parent: 2 type: Transform - - uid: 7338 + - uid: 3897 components: - - pos: -48.5,37.5 + - pos: -31.5,-28.5 parent: 2 type: Transform - - uid: 7339 + - uid: 3898 components: - - pos: -42.5,33.5 + - pos: -31.5,-31.5 parent: 2 type: Transform - - uid: 7340 + - uid: 3899 components: - - pos: -44.5,33.5 + - pos: -32.5,-31.5 parent: 2 type: Transform - - uid: 7341 + - uid: 3900 components: - - pos: -45.5,33.5 + - pos: -33.5,-31.5 parent: 2 type: Transform - - uid: 7342 + - uid: 3901 components: - - pos: -46.5,33.5 + - pos: -28.5,-31.5 parent: 2 type: Transform - - uid: 7343 + - uid: 3902 components: - - pos: -47.5,33.5 + - pos: -27.5,-31.5 parent: 2 type: Transform - - uid: 7344 + - uid: 3903 components: - - pos: -17.5,14.5 + - pos: -24.5,-34.5 parent: 2 type: Transform - - uid: 7345 + - uid: 3904 components: - - pos: -47.5,34.5 + - pos: -24.5,-31.5 parent: 2 type: Transform - - uid: 7346 + - uid: 3905 components: - - pos: -47.5,35.5 + - pos: -31.5,-29.5 parent: 2 type: Transform - - uid: 7347 + - uid: 3906 components: - - pos: -47.5,36.5 + - pos: -34.5,-45.5 parent: 2 type: Transform - - uid: 7348 + - uid: 3907 components: - - pos: -47.5,37.5 + - pos: -24.5,-32.5 parent: 2 type: Transform - - uid: 7349 + - uid: 3908 components: - - pos: -48.5,38.5 + - pos: -24.5,-33.5 parent: 2 type: Transform - - uid: 7350 + - uid: 3909 components: - - pos: -17.5,15.5 + - pos: -25.5,-31.5 parent: 2 type: Transform - - uid: 7351 + - uid: 3910 components: - - pos: -18.5,14.5 + - pos: -35.5,-31.5 parent: 2 type: Transform - - uid: 7352 + - uid: 3911 components: - - pos: -17.5,16.5 + - pos: -38.5,-34.5 parent: 2 type: Transform - - uid: 7353 + - uid: 3912 components: - - pos: -17.5,17.5 + - pos: -38.5,-35.5 parent: 2 type: Transform - - uid: 7354 + - uid: 3913 components: - - pos: -18.5,17.5 + - pos: -38.5,-36.5 parent: 2 type: Transform - - uid: 7355 + - uid: 3914 components: - - pos: -19.5,17.5 + - pos: -38.5,-42.5 parent: 2 type: Transform - - uid: 7356 + - uid: 3915 components: - - pos: -20.5,17.5 + - pos: -38.5,-43.5 parent: 2 type: Transform - - uid: 7357 + - uid: 3916 components: - - pos: -21.5,17.5 + - pos: -38.5,-44.5 parent: 2 type: Transform - - uid: 7358 + - uid: 3917 components: - - pos: -22.5,17.5 + - pos: -38.5,-44.5 parent: 2 type: Transform - - uid: 7359 + - uid: 3918 components: - - pos: -23.5,17.5 + - pos: -38.5,-45.5 parent: 2 type: Transform - - uid: 7360 + - uid: 3919 components: - - pos: -24.5,17.5 + - pos: -37.5,-45.5 parent: 2 type: Transform - - uid: 7361 + - uid: 3920 components: - - pos: -24.5,16.5 + - pos: -35.5,-45.5 parent: 2 type: Transform - - uid: 7362 + - uid: 3921 components: - - pos: -24.5,15.5 + - pos: -25.5,-45.5 parent: 2 type: Transform - - uid: 7363 + - uid: 3922 components: - - pos: -25.5,15.5 + - pos: -24.5,-43.5 parent: 2 type: Transform - - uid: 7364 + - uid: 3923 components: - - pos: -26.5,15.5 + - pos: -24.5,-42.5 parent: 2 type: Transform - - uid: 7365 + - uid: 3924 components: - - pos: -27.5,15.5 + - pos: 18.5,-21.5 parent: 2 type: Transform - - uid: 7366 + - uid: 3925 components: - - pos: -28.5,15.5 + - pos: 20.5,-23.5 parent: 2 type: Transform - - uid: 7367 + - uid: 3926 components: - - pos: -29.5,15.5 + - pos: -63.5,-6.5 parent: 2 type: Transform - - uid: 7368 + - uid: 3927 components: - - pos: -30.5,15.5 + - pos: -64.5,-8.5 parent: 2 type: Transform - - uid: 7370 + - uid: 3928 components: - - pos: -32.5,15.5 + - pos: -17.5,-76.5 parent: 2 type: Transform - - uid: 7371 + - uid: 3929 components: - - pos: -33.5,15.5 + - pos: -11.5,39.5 parent: 2 type: Transform - - uid: 7372 + - uid: 3930 components: - - pos: -34.5,15.5 + - pos: -6.5,3.5 parent: 2 type: Transform - - uid: 7373 + - uid: 3931 components: - - pos: -35.5,15.5 + - pos: 28.5,26.5 parent: 2 type: Transform - - uid: 7374 + - uid: 3932 components: - - pos: -35.5,16.5 + - pos: 28.5,25.5 parent: 2 type: Transform - - uid: 7375 + - uid: 3933 components: - - pos: -16.5,17.5 + - pos: 28.5,24.5 parent: 2 type: Transform - - uid: 7376 + - uid: 3934 components: - - pos: -15.5,17.5 + - pos: -14.5,-38.5 parent: 2 type: Transform - - uid: 7377 + - uid: 3935 components: - - pos: -14.5,17.5 + - pos: 5.5,-11.5 parent: 2 type: Transform - - uid: 7378 + - uid: 3936 components: - - pos: -13.5,17.5 + - pos: 28.5,28.5 parent: 2 type: Transform - - uid: 7379 + - uid: 3937 components: - - pos: -12.5,17.5 + - pos: 28.5,27.5 parent: 2 type: Transform - - uid: 7380 + - uid: 3938 components: - - pos: -11.5,17.5 + - pos: 4.5,-13.5 parent: 2 type: Transform - - uid: 7381 + - uid: 3939 components: - - pos: -10.5,17.5 + - pos: 3.5,-13.5 parent: 2 type: Transform - - uid: 7382 + - uid: 3940 components: - - pos: -10.5,18.5 + - pos: -33.5,36.5 parent: 2 type: Transform - - uid: 7384 + - uid: 3941 components: - - pos: -9.5,18.5 + - pos: 4.5,-11.5 parent: 2 type: Transform - - uid: 7385 + - uid: 3942 components: - - pos: -8.5,18.5 + - pos: 6.5,-11.5 parent: 2 type: Transform - - uid: 7386 + - uid: 3943 components: - - pos: -8.5,17.5 + - pos: 7.5,-11.5 parent: 2 type: Transform - - uid: 7387 + - uid: 3944 components: - - pos: -8.5,16.5 + - pos: -8.5,39.5 parent: 2 type: Transform - - uid: 7388 + - uid: 3945 components: - - pos: -8.5,15.5 + - pos: -10.5,39.5 parent: 2 type: Transform - - uid: 7389 + - uid: 3946 components: - - pos: -7.5,15.5 + - pos: -32.5,35.5 parent: 2 type: Transform - - uid: 7390 + - uid: 3947 components: - - pos: -7.5,14.5 + - pos: -32.5,36.5 parent: 2 type: Transform - - uid: 7391 + - uid: 3948 components: - - pos: -7.5,13.5 + - pos: -47.5,44.5 parent: 2 type: Transform - - uid: 7392 + - uid: 3949 components: - - pos: -43.5,45.5 + - pos: -32.5,34.5 parent: 2 type: Transform - - uid: 7393 + - uid: 3950 components: - - pos: -8.5,12.5 + - pos: -32.5,32.5 parent: 2 type: Transform - - uid: 7394 + - uid: 3951 components: - - pos: -8.5,13.5 + - pos: -32.5,31.5 parent: 2 type: Transform - - uid: 7395 + - uid: 3952 components: - - pos: -8.5,11.5 + - pos: -32.5,30.5 parent: 2 type: Transform - - uid: 7396 + - uid: 3953 components: - - pos: -8.5,10.5 + - pos: -22.5,34.5 parent: 2 type: Transform - - uid: 7397 + - uid: 3954 components: - - pos: -43.5,44.5 + - pos: -32.5,33.5 parent: 2 type: Transform - - uid: 7398 + - uid: 3955 components: - - pos: -43.5,43.5 + - pos: -46.5,44.5 parent: 2 type: Transform - - uid: 7399 + - uid: 3956 components: - - pos: -43.5,42.5 + - pos: -46.5,45.5 parent: 2 type: Transform - - uid: 7400 + - uid: 3957 components: - - pos: -43.5,41.5 + - pos: -46.5,46.5 parent: 2 type: Transform - - uid: 7401 + - uid: 3958 components: - - pos: -43.5,40.5 + - pos: -45.5,46.5 parent: 2 type: Transform - - uid: 7402 + - uid: 3959 components: - - pos: -42.5,40.5 + - pos: -44.5,46.5 parent: 2 type: Transform - - uid: 7403 + - uid: 3960 components: - - pos: -41.5,40.5 + - pos: -43.5,46.5 parent: 2 type: Transform - - uid: 7404 + - uid: 3961 components: - - pos: -40.5,40.5 + - pos: -42.5,46.5 parent: 2 type: Transform - - uid: 7405 + - uid: 3962 components: - - pos: -9.5,10.5 + - pos: -41.5,46.5 parent: 2 type: Transform - - uid: 7406 + - uid: 3963 components: - - pos: -10.5,10.5 + - pos: -40.5,46.5 parent: 2 type: Transform - - uid: 7407 + - uid: 3964 components: - - pos: -11.5,10.5 + - pos: -39.5,46.5 parent: 2 type: Transform - - uid: 7408 + - uid: 3965 components: - - pos: -12.5,10.5 + - pos: -38.5,46.5 parent: 2 type: Transform - - uid: 7409 + - uid: 3966 components: - - pos: -13.5,10.5 + - pos: -37.5,46.5 parent: 2 type: Transform - - uid: 7410 + - uid: 3967 components: - - pos: -14.5,10.5 + - pos: -36.5,46.5 parent: 2 type: Transform - - uid: 7411 + - uid: 3968 components: - - pos: -15.5,10.5 + - pos: -36.5,46.5 parent: 2 type: Transform - - uid: 7412 + - uid: 3969 components: - - pos: -16.5,10.5 + - pos: -36.5,45.5 parent: 2 type: Transform - - uid: 7413 + - uid: 3970 components: - - pos: -17.5,10.5 + - pos: -36.5,44.5 parent: 2 type: Transform - - uid: 7414 + - uid: 3971 components: - - pos: -18.5,10.5 + - pos: -36.5,43.5 parent: 2 type: Transform - - uid: 7415 + - uid: 3972 components: - - pos: -18.5,9.5 + - pos: -36.5,42.5 parent: 2 type: Transform - - uid: 7416 + - uid: 3973 components: - - pos: -18.5,8.5 + - pos: -36.5,41.5 parent: 2 type: Transform - - uid: 7417 + - uid: 3974 components: - - pos: -19.5,8.5 + - pos: -19.5,10.5 parent: 2 type: Transform - - uid: 7418 + - uid: 3975 components: - - pos: -20.5,12.5 + - pos: -20.5,10.5 parent: 2 type: Transform - - uid: 7419 + - uid: 3976 components: - - pos: -20.5,13.5 + - pos: -20.5,11.5 parent: 2 type: Transform - - uid: 7420 + - uid: 3977 components: - - pos: -20.5,14.5 + - pos: -43.5,33.5 parent: 2 type: Transform - - uid: 7421 + - uid: 3978 components: - - pos: -20.5,15.5 + - pos: -39.5,40.5 parent: 2 type: Transform - - uid: 7422 + - uid: 3979 components: - - pos: -20.5,16.5 + - pos: -39.5,39.5 parent: 2 type: Transform - - uid: 7423 + - uid: 3980 components: - - pos: -36.5,40.5 + - pos: -39.5,38.5 parent: 2 type: Transform - - uid: 7428 + - uid: 3981 components: - - pos: -36.5,39.5 + - pos: -39.5,37.5 parent: 2 type: Transform - - uid: 7429 + - uid: 3982 components: - - pos: -36.5,37.5 + - pos: -39.5,36.5 parent: 2 type: Transform - - uid: 7436 + - uid: 3983 components: - - pos: -33.5,30.5 + - pos: -39.5,35.5 parent: 2 type: Transform - - uid: 7437 + - uid: 3984 components: - - pos: -36.5,15.5 + - pos: -39.5,34.5 parent: 2 type: Transform - - uid: 7438 + - uid: 3985 components: - - pos: -37.5,15.5 + - pos: -40.5,34.5 parent: 2 type: Transform - - uid: 7439 + - uid: 3986 components: - - pos: -38.5,15.5 + - pos: -41.5,34.5 parent: 2 type: Transform - - uid: 7440 + - uid: 3987 components: - - pos: -39.5,15.5 + - pos: -41.5,35.5 parent: 2 type: Transform - - uid: 7441 + - uid: 3988 components: - - pos: -40.5,15.5 + - pos: -42.5,34.5 parent: 2 type: Transform - - uid: 7442 + - uid: 3989 components: - - pos: -41.5,15.5 + - pos: -48.5,37.5 parent: 2 type: Transform - - uid: 7443 + - uid: 3990 components: - - pos: -42.5,15.5 + - pos: -42.5,33.5 parent: 2 type: Transform - - uid: 7444 + - uid: 3991 components: - - pos: -43.5,15.5 + - pos: -44.5,33.5 parent: 2 type: Transform - - uid: 7445 + - uid: 3992 components: - - pos: -44.5,15.5 + - pos: -45.5,33.5 parent: 2 type: Transform - - uid: 7446 + - uid: 3993 components: - - pos: -45.5,15.5 + - pos: -46.5,33.5 parent: 2 type: Transform - - uid: 7447 + - uid: 3994 components: - - pos: -45.5,16.5 + - pos: -47.5,33.5 parent: 2 type: Transform - - uid: 7448 + - uid: 3995 components: - - pos: -45.5,17.5 + - pos: -17.5,14.5 parent: 2 type: Transform - - uid: 7449 + - uid: 3996 components: - - pos: -45.5,18.5 + - pos: -47.5,34.5 parent: 2 type: Transform - - uid: 7450 + - uid: 3997 components: - - pos: -44.5,18.5 + - pos: -47.5,35.5 parent: 2 type: Transform - - uid: 7455 + - uid: 3998 components: - - pos: 27.5,28.5 + - pos: -47.5,36.5 parent: 2 type: Transform - - uid: 7456 + - uid: 3999 components: - - pos: 27.5,29.5 + - pos: -47.5,37.5 parent: 2 type: Transform - - uid: 7457 + - uid: 4000 components: - - pos: 26.5,29.5 + - pos: -48.5,38.5 parent: 2 type: Transform - - uid: 7458 + - uid: 4001 components: - - pos: 25.5,29.5 + - pos: -17.5,15.5 parent: 2 type: Transform - - uid: 7459 + - uid: 4002 components: - - pos: 24.5,29.5 + - pos: -18.5,14.5 parent: 2 type: Transform - - uid: 7460 + - uid: 4003 components: - - pos: 23.5,29.5 + - pos: -17.5,16.5 parent: 2 type: Transform - - uid: 7461 + - uid: 4004 components: - - pos: 22.5,29.5 + - pos: -17.5,17.5 parent: 2 type: Transform - - uid: 7462 + - uid: 4005 components: - - pos: 21.5,25.5 + - pos: -18.5,17.5 parent: 2 type: Transform - - uid: 7463 + - uid: 4006 components: - - pos: 20.5,29.5 + - pos: -19.5,17.5 parent: 2 type: Transform - - uid: 7464 + - uid: 4007 components: - - pos: 19.5,29.5 + - pos: -20.5,17.5 parent: 2 type: Transform - - uid: 7465 + - uid: 4008 components: - - pos: 18.5,29.5 + - pos: -21.5,17.5 parent: 2 type: Transform - - uid: 7466 + - uid: 4009 components: - - pos: 17.5,29.5 + - pos: -22.5,17.5 parent: 2 type: Transform - - uid: 7467 + - uid: 4010 components: - - pos: 16.5,29.5 + - pos: -23.5,17.5 parent: 2 type: Transform - - uid: 7468 + - uid: 4011 components: - - pos: 15.5,29.5 + - pos: -24.5,17.5 parent: 2 type: Transform - - uid: 7469 + - uid: 4012 components: - - pos: 14.5,29.5 + - pos: -24.5,16.5 parent: 2 type: Transform - - uid: 7470 + - uid: 4013 components: - - pos: 13.5,29.5 + - pos: -24.5,15.5 parent: 2 type: Transform - - uid: 7471 + - uid: 4014 components: - - pos: 13.5,28.5 + - pos: -25.5,15.5 parent: 2 type: Transform - - uid: 7472 + - uid: 4015 components: - - pos: 13.5,27.5 + - pos: -26.5,15.5 parent: 2 type: Transform - - uid: 7473 + - uid: 4016 components: - - pos: 13.5,26.5 + - pos: -27.5,15.5 parent: 2 type: Transform - - uid: 7474 + - uid: 4017 components: - - pos: 13.5,25.5 + - pos: -28.5,15.5 parent: 2 type: Transform - - uid: 7475 + - uid: 4018 components: - - pos: 13.5,24.5 + - pos: -29.5,15.5 parent: 2 type: Transform - - uid: 7476 + - uid: 4019 components: - - pos: 12.5,24.5 + - pos: -30.5,15.5 parent: 2 type: Transform - - uid: 7477 + - uid: 4020 components: - - pos: 11.5,24.5 + - pos: -32.5,15.5 parent: 2 type: Transform - - uid: 7478 + - uid: 4021 components: - - pos: 21.5,27.5 + - pos: -33.5,15.5 parent: 2 type: Transform - - uid: 7479 + - uid: 4022 components: - - pos: 21.5,28.5 + - pos: -34.5,15.5 parent: 2 type: Transform - - uid: 7480 + - uid: 4023 components: - - pos: 21.5,29.5 + - pos: -35.5,15.5 parent: 2 type: Transform - - uid: 7481 + - uid: 4024 components: - - pos: 21.5,26.5 + - pos: -35.5,16.5 parent: 2 type: Transform - - uid: 7482 + - uid: 4025 components: - - pos: 21.5,24.5 + - pos: -16.5,17.5 parent: 2 type: Transform - - uid: 7483 + - uid: 4026 components: - - pos: 21.5,23.5 + - pos: -15.5,17.5 parent: 2 type: Transform - - uid: 7484 + - uid: 4027 components: - - pos: 21.5,22.5 + - pos: -14.5,17.5 parent: 2 type: Transform - - uid: 7485 + - uid: 4028 components: - - pos: 21.5,21.5 + - pos: -13.5,17.5 parent: 2 type: Transform - - uid: 7487 + - uid: 4029 components: - - pos: 21.5,19.5 + - pos: -12.5,17.5 parent: 2 type: Transform - - uid: 7488 + - uid: 4030 components: - - pos: 21.5,18.5 + - pos: -11.5,17.5 parent: 2 type: Transform - - uid: 7489 + - uid: 4031 components: - - pos: 21.5,17.5 + - pos: -10.5,17.5 parent: 2 type: Transform - - uid: 7490 + - uid: 4032 components: - - pos: 21.5,16.5 + - pos: -10.5,18.5 parent: 2 type: Transform - - uid: 7491 + - uid: 4033 components: - - pos: 21.5,15.5 + - pos: -9.5,18.5 parent: 2 type: Transform - - uid: 7492 + - uid: 4034 components: - - pos: 21.5,14.5 + - pos: -8.5,18.5 parent: 2 type: Transform - - uid: 7493 + - uid: 4035 components: - - pos: 20.5,14.5 + - pos: -8.5,17.5 parent: 2 type: Transform - - uid: 7494 + - uid: 4036 components: - - pos: 20.5,16.5 + - pos: -8.5,16.5 parent: 2 type: Transform - - uid: 7495 + - uid: 4037 components: - - pos: 19.5,16.5 + - pos: -8.5,15.5 parent: 2 type: Transform - - uid: 7496 + - uid: 4038 components: - - pos: 18.5,16.5 + - pos: -7.5,15.5 parent: 2 type: Transform - - uid: 7497 + - uid: 4039 components: - - pos: 17.5,16.5 + - pos: -7.5,14.5 parent: 2 type: Transform - - uid: 7498 + - uid: 4040 components: - - pos: 16.5,16.5 + - pos: -7.5,13.5 parent: 2 type: Transform - - uid: 7499 + - uid: 4041 components: - - pos: 15.5,16.5 + - pos: -43.5,45.5 parent: 2 type: Transform - - uid: 7500 + - uid: 4042 components: - - pos: 14.5,16.5 + - pos: -8.5,12.5 parent: 2 type: Transform - - uid: 7501 + - uid: 4043 components: - - pos: 13.5,16.5 + - pos: -8.5,13.5 parent: 2 type: Transform - - uid: 7502 + - uid: 4044 components: - - pos: 13.5,17.5 + - pos: -8.5,11.5 parent: 2 type: Transform - - uid: 7503 + - uid: 4045 components: - - pos: 13.5,18.5 + - pos: -8.5,10.5 parent: 2 type: Transform - - uid: 7505 + - uid: 4046 components: - - pos: 13.5,20.5 + - pos: -43.5,44.5 parent: 2 type: Transform - - uid: 7506 + - uid: 4047 components: - - pos: 13.5,21.5 + - pos: -43.5,43.5 parent: 2 type: Transform - - uid: 7507 + - uid: 4048 components: - - pos: 13.5,22.5 + - pos: -43.5,42.5 parent: 2 type: Transform - - uid: 7510 + - uid: 4049 components: - - pos: -16.5,19.5 + - pos: -43.5,41.5 parent: 2 type: Transform - - uid: 7511 + - uid: 4050 components: - - pos: -16.5,20.5 + - pos: -43.5,40.5 parent: 2 type: Transform - - uid: 7512 + - uid: 4051 components: - - pos: -15.5,20.5 + - pos: -42.5,40.5 parent: 2 type: Transform - - uid: 7513 + - uid: 4052 components: - - pos: -17.5,19.5 + - pos: -41.5,40.5 parent: 2 type: Transform - - uid: 7514 + - uid: 4053 components: - - pos: -17.5,18.5 + - pos: -40.5,40.5 parent: 2 type: Transform - - uid: 7518 + - uid: 4054 components: - - pos: -14.5,31.5 + - pos: -9.5,10.5 parent: 2 type: Transform - - uid: 7519 + - uid: 4055 components: - - pos: -14.5,30.5 + - pos: -10.5,10.5 parent: 2 type: Transform - - uid: 7520 + - uid: 4056 components: - - pos: -14.5,29.5 + - pos: -11.5,10.5 parent: 2 type: Transform - - uid: 7521 + - uid: 4057 components: - - pos: -13.5,29.5 + - pos: -12.5,10.5 parent: 2 type: Transform - - uid: 7524 + - uid: 4058 components: - - pos: -13.5,26.5 + - pos: -13.5,10.5 parent: 2 type: Transform - - uid: 7525 + - uid: 4059 components: - - pos: -12.5,26.5 + - pos: -14.5,10.5 parent: 2 type: Transform - - uid: 7526 + - uid: 4060 components: - - pos: -11.5,26.5 + - pos: -15.5,10.5 parent: 2 type: Transform - - uid: 7527 + - uid: 4061 components: - - pos: -10.5,26.5 + - pos: -16.5,10.5 parent: 2 type: Transform - - uid: 7528 + - uid: 4062 components: - - pos: -9.5,26.5 + - pos: -17.5,10.5 parent: 2 type: Transform - - uid: 7529 + - uid: 4063 components: - - pos: -8.5,26.5 + - pos: -18.5,10.5 parent: 2 type: Transform - - uid: 7530 + - uid: 4064 components: - - pos: -7.5,26.5 + - pos: -18.5,9.5 parent: 2 type: Transform - - uid: 7531 + - uid: 4065 components: - - pos: -7.5,27.5 + - pos: -18.5,8.5 parent: 2 type: Transform - - uid: 7532 + - uid: 4066 components: - - pos: -14.5,32.5 + - pos: -19.5,8.5 parent: 2 type: Transform - - uid: 7533 + - uid: 4067 components: - - pos: -15.5,29.5 + - pos: -20.5,12.5 parent: 2 type: Transform - - uid: 7534 + - uid: 4068 components: - - pos: -16.5,29.5 + - pos: -20.5,13.5 parent: 2 type: Transform - - uid: 7535 + - uid: 4069 components: - - pos: -17.5,29.5 + - pos: -20.5,14.5 parent: 2 type: Transform - - uid: 7536 + - uid: 4070 components: - - pos: -18.5,29.5 + - pos: -20.5,15.5 parent: 2 type: Transform - - uid: 7537 + - uid: 4071 components: - - pos: -19.5,29.5 + - pos: -20.5,16.5 parent: 2 type: Transform - - uid: 7538 + - uid: 4072 components: - - pos: -20.5,29.5 + - pos: -36.5,40.5 parent: 2 type: Transform - - uid: 7539 + - uid: 4073 components: - - pos: -20.5,30.5 + - pos: -36.5,39.5 parent: 2 type: Transform - - uid: 7540 + - uid: 4074 components: - - pos: -20.5,31.5 + - pos: -36.5,37.5 parent: 2 type: Transform - - uid: 7541 + - uid: 4075 components: - - pos: -20.5,32.5 + - pos: -33.5,30.5 parent: 2 type: Transform - - uid: 7542 + - uid: 4076 components: - - pos: -20.5,33.5 + - pos: -36.5,15.5 parent: 2 type: Transform - - uid: 7543 + - uid: 4077 components: - - pos: -19.5,33.5 + - pos: -37.5,15.5 parent: 2 type: Transform - - uid: 7544 + - uid: 4078 components: - - pos: -18.5,33.5 + - pos: -38.5,15.5 parent: 2 type: Transform - - uid: 7545 + - uid: 4079 components: - - pos: -17.5,33.5 + - pos: -39.5,15.5 parent: 2 type: Transform - - uid: 7546 + - uid: 4080 components: - - pos: -16.5,33.5 + - pos: -40.5,15.5 parent: 2 type: Transform - - uid: 7547 + - uid: 4081 components: - - pos: -16.5,34.5 + - pos: -41.5,15.5 parent: 2 type: Transform - - uid: 7548 + - uid: 4082 components: - - pos: -15.5,34.5 + - pos: -42.5,15.5 parent: 2 type: Transform - - uid: 7549 + - uid: 4083 components: - - pos: -14.5,34.5 + - pos: -43.5,15.5 parent: 2 type: Transform - - uid: 7550 + - uid: 4084 components: - - pos: -14.5,35.5 + - pos: -44.5,15.5 parent: 2 type: Transform - - uid: 7551 + - uid: 4085 components: - - pos: -14.5,36.5 + - pos: -45.5,15.5 parent: 2 type: Transform - - uid: 7552 + - uid: 4086 components: - - pos: -14.5,37.5 + - pos: -45.5,16.5 parent: 2 type: Transform - - uid: 7553 + - uid: 4087 components: - - pos: -14.5,38.5 + - pos: -45.5,17.5 parent: 2 type: Transform - - uid: 7554 + - uid: 4088 components: - - pos: -13.5,38.5 + - pos: -45.5,18.5 parent: 2 type: Transform - - uid: 7555 + - uid: 4089 components: - - pos: -12.5,38.5 + - pos: -44.5,18.5 parent: 2 type: Transform - - uid: 7563 + - uid: 4090 components: - - pos: -7.5,38.5 + - pos: 27.5,28.5 parent: 2 type: Transform - - uid: 7564 + - uid: 4091 components: - - pos: -6.5,38.5 + - pos: 27.5,29.5 parent: 2 type: Transform - - uid: 7566 + - uid: 4092 components: - - pos: -4.5,38.5 + - pos: 26.5,29.5 parent: 2 type: Transform - - uid: 7567 + - uid: 4093 components: - - pos: -3.5,38.5 + - pos: 25.5,29.5 parent: 2 type: Transform - - uid: 7568 + - uid: 4094 components: - - pos: -2.5,38.5 + - pos: 24.5,29.5 parent: 2 type: Transform - - uid: 7569 + - uid: 4095 components: - - pos: -3.5,36.5 + - pos: 23.5,29.5 parent: 2 type: Transform - - uid: 7570 + - uid: 4096 components: - - pos: -3.5,37.5 + - pos: 22.5,29.5 parent: 2 type: Transform - - uid: 7571 + - uid: 4097 components: - - pos: -2.5,39.5 + - pos: 21.5,25.5 parent: 2 type: Transform - - uid: 7572 + - uid: 4098 components: - - pos: -3.5,35.5 + - pos: 20.5,29.5 parent: 2 type: Transform - - uid: 7573 + - uid: 4099 components: - - pos: -3.5,34.5 + - pos: 19.5,29.5 parent: 2 type: Transform - - uid: 7574 + - uid: 4100 components: - - pos: -3.5,33.5 + - pos: 18.5,29.5 parent: 2 type: Transform - - uid: 7575 + - uid: 4101 components: - - pos: -3.5,32.5 + - pos: 17.5,29.5 parent: 2 type: Transform - - uid: 7576 + - uid: 4102 components: - - pos: -3.5,31.5 + - pos: 16.5,29.5 parent: 2 type: Transform - - uid: 7577 + - uid: 4103 components: - - pos: -3.5,30.5 + - pos: 15.5,29.5 parent: 2 type: Transform - - uid: 7578 + - uid: 4104 components: - - pos: -4.5,30.5 + - pos: 14.5,29.5 parent: 2 type: Transform - - uid: 7579 + - uid: 4105 components: - - pos: -5.5,30.5 + - pos: 13.5,29.5 parent: 2 type: Transform - - uid: 7580 + - uid: 4106 components: - - pos: -6.5,30.5 + - pos: 13.5,28.5 parent: 2 type: Transform - - uid: 7581 + - uid: 4107 components: - - pos: -7.5,30.5 + - pos: 13.5,27.5 parent: 2 type: Transform - - uid: 7582 + - uid: 4108 components: - - pos: -8.5,30.5 + - pos: 13.5,26.5 parent: 2 type: Transform - - uid: 7583 + - uid: 4109 components: - - pos: -9.5,30.5 + - pos: 13.5,25.5 parent: 2 type: Transform - - uid: 7584 + - uid: 4110 components: - - pos: -10.5,30.5 + - pos: 13.5,24.5 parent: 2 type: Transform - - uid: 7585 + - uid: 4111 components: - - pos: -11.5,30.5 + - pos: 12.5,24.5 parent: 2 type: Transform - - uid: 7586 + - uid: 4112 components: - - pos: -12.5,30.5 + - pos: 11.5,24.5 parent: 2 type: Transform - - uid: 7587 + - uid: 4113 components: - - pos: -12.5,29.5 + - pos: 21.5,27.5 parent: 2 type: Transform - - uid: 7588 + - uid: 4114 components: - - pos: -8.5,-12.5 + - pos: 21.5,28.5 parent: 2 type: Transform - - uid: 7589 + - uid: 4115 components: - - pos: -8.5,-11.5 + - pos: 21.5,29.5 parent: 2 type: Transform - - uid: 7590 + - uid: 4116 components: - - pos: -8.5,-10.5 + - pos: 21.5,26.5 parent: 2 type: Transform - - uid: 7591 + - uid: 4117 components: - - pos: -8.5,-9.5 + - pos: 21.5,24.5 parent: 2 type: Transform - - uid: 7592 + - uid: 4118 components: - - pos: -8.5,-8.5 + - pos: 21.5,23.5 parent: 2 type: Transform - - uid: 7593 + - uid: 4119 components: - - pos: -8.5,-7.5 + - pos: 21.5,22.5 parent: 2 type: Transform - - uid: 7594 + - uid: 4120 components: - - pos: -8.5,-6.5 + - pos: 21.5,21.5 parent: 2 type: Transform - - uid: 7595 + - uid: 4121 components: - - pos: -9.5,-6.5 + - pos: 21.5,19.5 parent: 2 type: Transform - - uid: 7596 + - uid: 4122 components: - - pos: -10.5,-6.5 + - pos: 21.5,18.5 parent: 2 type: Transform - - uid: 7597 + - uid: 4123 components: - - pos: -7.5,5.5 + - pos: 21.5,17.5 parent: 2 type: Transform - - uid: 7598 + - uid: 4124 components: - - pos: -7.5,6.5 + - pos: 21.5,16.5 parent: 2 type: Transform - - uid: 7599 + - uid: 4125 components: - - pos: -8.5,6.5 + - pos: 21.5,15.5 parent: 2 type: Transform - - uid: 7600 + - uid: 4126 components: - - pos: -9.5,6.5 + - pos: 21.5,14.5 parent: 2 type: Transform - - uid: 7601 + - uid: 4127 components: - - pos: -10.5,6.5 + - pos: 20.5,14.5 parent: 2 type: Transform - - uid: 7602 + - uid: 4128 components: - - pos: -11.5,6.5 + - pos: 20.5,16.5 parent: 2 type: Transform - - uid: 7603 + - uid: 4129 components: - - pos: -12.5,6.5 + - pos: 19.5,16.5 parent: 2 type: Transform - - uid: 7604 + - uid: 4130 components: - - pos: -13.5,6.5 + - pos: 18.5,16.5 parent: 2 type: Transform - - uid: 7605 + - uid: 4131 components: - - pos: -14.5,6.5 + - pos: 17.5,16.5 parent: 2 type: Transform - - uid: 7606 + - uid: 4132 components: - - pos: -14.5,7.5 + - pos: 16.5,16.5 parent: 2 type: Transform - - uid: 7607 + - uid: 4133 components: - - pos: -14.5,8.5 + - pos: 15.5,16.5 parent: 2 type: Transform - - uid: 7609 + - uid: 4134 components: - - pos: -14.5,9.5 + - pos: 14.5,16.5 parent: 2 type: Transform - - uid: 7611 + - uid: 4135 components: - - pos: -34.5,0.5 + - pos: 13.5,16.5 parent: 2 type: Transform - - uid: 7612 + - uid: 4136 components: - - pos: -35.5,0.5 + - pos: 13.5,17.5 parent: 2 type: Transform - - uid: 7613 + - uid: 4137 components: - - pos: -35.5,-0.5 + - pos: 13.5,18.5 parent: 2 type: Transform - - uid: 7614 + - uid: 4138 components: - - pos: -35.5,-1.5 + - pos: 13.5,20.5 parent: 2 type: Transform - - uid: 7615 + - uid: 4139 components: - - pos: -35.5,-2.5 + - pos: 13.5,21.5 parent: 2 type: Transform - - uid: 7616 + - uid: 4140 components: - - pos: -34.5,-2.5 + - pos: 13.5,22.5 parent: 2 type: Transform - - uid: 7617 + - uid: 4141 components: - - pos: -33.5,-2.5 + - pos: -16.5,19.5 parent: 2 type: Transform - - uid: 7618 + - uid: 4142 components: - - pos: -32.5,-2.5 + - pos: -16.5,20.5 parent: 2 type: Transform - - uid: 7619 + - uid: 4143 components: - - pos: -32.5,-3.5 + - pos: -15.5,20.5 parent: 2 type: Transform - - uid: 7620 + - uid: 4144 components: - - pos: -32.5,-4.5 + - pos: -17.5,19.5 parent: 2 type: Transform - - uid: 7621 + - uid: 4145 components: - - pos: -32.5,-5.5 + - pos: -17.5,18.5 parent: 2 type: Transform - - uid: 7622 + - uid: 4146 components: - - pos: -32.5,-6.5 + - pos: -14.5,31.5 parent: 2 type: Transform - - uid: 7623 + - uid: 4147 components: - - pos: -32.5,-7.5 + - pos: -14.5,30.5 parent: 2 type: Transform - - uid: 7624 + - uid: 4148 components: - - pos: -32.5,-8.5 + - pos: -14.5,29.5 parent: 2 type: Transform - - uid: 7625 + - uid: 4149 components: - - pos: -32.5,-9.5 + - pos: -13.5,29.5 parent: 2 type: Transform - - uid: 7626 + - uid: 4150 components: - - pos: -31.5,-9.5 + - pos: -13.5,26.5 parent: 2 type: Transform - - uid: 7627 + - uid: 4151 components: - - pos: -30.5,-9.5 + - pos: -12.5,26.5 parent: 2 type: Transform - - uid: 7628 + - uid: 4152 components: - - pos: -29.5,-9.5 + - pos: -11.5,26.5 parent: 2 type: Transform - - uid: 7629 + - uid: 4153 components: - - pos: -28.5,-9.5 + - pos: -10.5,26.5 parent: 2 type: Transform - - uid: 7630 + - uid: 4154 components: - - pos: -28.5,-10.5 + - pos: -9.5,26.5 parent: 2 type: Transform - - uid: 7631 + - uid: 4155 components: - - pos: -28.5,-11.5 + - pos: -8.5,26.5 parent: 2 type: Transform - - uid: 7632 + - uid: 4156 components: - - pos: -28.5,-12.5 + - pos: -7.5,26.5 parent: 2 type: Transform - - uid: 7633 + - uid: 4157 components: - - pos: -28.5,-13.5 + - pos: -7.5,27.5 parent: 2 type: Transform - - uid: 7634 + - uid: 4158 components: - - pos: -28.5,-14.5 + - pos: -14.5,32.5 parent: 2 type: Transform - - uid: 7635 + - uid: 4159 components: - - pos: -28.5,-15.5 + - pos: -15.5,29.5 parent: 2 type: Transform - - uid: 7636 + - uid: 4160 components: - - pos: -28.5,-16.5 + - pos: -16.5,29.5 parent: 2 type: Transform - - uid: 7637 + - uid: 4161 components: - - pos: -28.5,-17.5 + - pos: -17.5,29.5 parent: 2 type: Transform - - uid: 7638 + - uid: 4162 components: - - pos: -28.5,-18.5 + - pos: -18.5,29.5 parent: 2 type: Transform - - uid: 7639 + - uid: 4163 components: - - pos: -28.5,-19.5 + - pos: -19.5,29.5 parent: 2 type: Transform - - uid: 7640 + - uid: 4164 components: - - pos: -28.5,-20.5 + - pos: -20.5,29.5 parent: 2 type: Transform - - uid: 7641 + - uid: 4165 components: - - pos: -29.5,-20.5 + - pos: -20.5,30.5 parent: 2 type: Transform - - uid: 7642 + - uid: 4166 components: - - pos: -30.5,-20.5 + - pos: -20.5,31.5 parent: 2 type: Transform - - uid: 7643 + - uid: 4167 components: - - pos: -31.5,-20.5 + - pos: -20.5,32.5 parent: 2 type: Transform - - uid: 7644 + - uid: 4168 components: - - pos: -31.5,-19.5 + - pos: -20.5,33.5 parent: 2 type: Transform - - uid: 7645 + - uid: 4169 components: - - pos: -31.5,-18.5 + - pos: -19.5,33.5 parent: 2 type: Transform - - uid: 7646 + - uid: 4170 components: - - pos: -31.5,-17.5 + - pos: -18.5,33.5 parent: 2 type: Transform - - uid: 7647 + - uid: 4171 components: - - pos: -32.5,-17.5 + - pos: -17.5,33.5 parent: 2 type: Transform - - uid: 7648 + - uid: 4172 components: - - pos: -32.5,-20.5 + - pos: -16.5,33.5 parent: 2 type: Transform - - uid: 7649 + - uid: 4173 components: - - pos: -33.5,-20.5 + - pos: -16.5,34.5 parent: 2 type: Transform - - uid: 7650 + - uid: 4174 components: - - pos: -34.5,-20.5 + - pos: -15.5,34.5 parent: 2 type: Transform - - uid: 7651 + - uid: 4175 components: - - pos: -35.5,-20.5 + - pos: -14.5,34.5 parent: 2 type: Transform - - uid: 7652 + - uid: 4176 components: - - pos: -36.5,-20.5 + - pos: -14.5,35.5 parent: 2 type: Transform - - uid: 7653 + - uid: 4177 components: - - pos: -37.5,-20.5 + - pos: -14.5,36.5 parent: 2 type: Transform - - uid: 7654 + - uid: 4178 components: - - pos: -38.5,-20.5 + - pos: -14.5,37.5 parent: 2 type: Transform - - uid: 7655 + - uid: 4179 components: - - pos: -39.5,-20.5 + - pos: -14.5,38.5 parent: 2 type: Transform - - uid: 7656 + - uid: 4180 components: - - pos: -40.5,-20.5 + - pos: -13.5,38.5 parent: 2 type: Transform - - uid: 7657 + - uid: 4181 components: - - pos: -41.5,-20.5 + - pos: -12.5,38.5 parent: 2 type: Transform - - uid: 7658 + - uid: 4182 components: - - pos: -42.5,-20.5 + - pos: -7.5,38.5 parent: 2 type: Transform - - uid: 7659 + - uid: 4183 components: - - pos: -43.5,-20.5 + - pos: -6.5,38.5 parent: 2 type: Transform - - uid: 7660 + - uid: 4184 components: - - pos: -43.5,-19.5 + - pos: -4.5,38.5 parent: 2 type: Transform - - uid: 7661 + - uid: 4185 components: - - pos: -43.5,-18.5 + - pos: -3.5,38.5 parent: 2 type: Transform - - uid: 7662 + - uid: 4186 components: - - pos: -44.5,-18.5 + - pos: -2.5,38.5 parent: 2 type: Transform - - uid: 7663 + - uid: 4187 components: - - pos: -45.5,-18.5 + - pos: -3.5,36.5 parent: 2 type: Transform - - uid: 7664 + - uid: 4188 components: - - pos: -46.5,-18.5 + - pos: -3.5,37.5 parent: 2 type: Transform - - uid: 7665 + - uid: 4189 components: - - pos: -46.5,-17.5 + - pos: -2.5,39.5 parent: 2 type: Transform - - uid: 7666 + - uid: 4190 components: - - pos: -46.5,-16.5 + - pos: -3.5,35.5 parent: 2 type: Transform - - uid: 7667 + - uid: 4191 components: - - pos: -46.5,-15.5 + - pos: -3.5,34.5 parent: 2 type: Transform - - uid: 7668 + - uid: 4192 components: - - pos: -46.5,-14.5 + - pos: -3.5,33.5 parent: 2 type: Transform - - uid: 7669 + - uid: 4193 components: - - pos: -46.5,-13.5 + - pos: -3.5,32.5 parent: 2 type: Transform - - uid: 7670 + - uid: 4194 components: - - pos: -46.5,-12.5 + - pos: -3.5,31.5 parent: 2 type: Transform - - uid: 7671 + - uid: 4195 components: - - pos: -46.5,-11.5 + - pos: -3.5,30.5 parent: 2 type: Transform - - uid: 7672 + - uid: 4196 components: - - pos: -46.5,-10.5 + - pos: -4.5,30.5 parent: 2 type: Transform - - uid: 7673 + - uid: 4197 components: - - pos: -46.5,-9.5 + - pos: -5.5,30.5 parent: 2 type: Transform - - uid: 7674 + - uid: 4198 components: - - pos: -46.5,-8.5 + - pos: -6.5,30.5 parent: 2 type: Transform - - uid: 7675 + - uid: 4199 components: - - pos: -47.5,-8.5 + - pos: -7.5,30.5 parent: 2 type: Transform - - uid: 7676 + - uid: 4200 components: - - pos: -48.5,-8.5 + - pos: -8.5,30.5 parent: 2 type: Transform - - uid: 7677 + - uid: 4201 components: - - pos: -49.5,-8.5 + - pos: -9.5,30.5 parent: 2 type: Transform - - uid: 7678 + - uid: 4202 components: - - pos: -50.5,-8.5 + - pos: -10.5,30.5 parent: 2 type: Transform - - uid: 7679 + - uid: 4203 components: - - pos: -51.5,-8.5 + - pos: -11.5,30.5 parent: 2 type: Transform - - uid: 7680 + - uid: 4204 components: - - pos: -52.5,-8.5 + - pos: -12.5,30.5 parent: 2 type: Transform - - uid: 7681 + - uid: 4205 components: - - pos: -52.5,-7.5 + - pos: -12.5,29.5 parent: 2 type: Transform - - uid: 7683 + - uid: 4206 components: - - pos: -45.5,-8.5 + - pos: -8.5,-12.5 parent: 2 type: Transform - - uid: 7684 + - uid: 4207 components: - - pos: -44.5,-8.5 + - pos: -8.5,-11.5 parent: 2 type: Transform - - uid: 7685 + - uid: 4208 components: - - pos: -43.5,-8.5 + - pos: -8.5,-10.5 parent: 2 type: Transform - - uid: 7686 + - uid: 4209 components: - - pos: -42.5,-8.5 + - pos: -8.5,-9.5 parent: 2 type: Transform - - uid: 7687 + - uid: 4210 components: - - pos: -41.5,-8.5 + - pos: -8.5,-8.5 parent: 2 type: Transform - - uid: 7688 + - uid: 4211 components: - - pos: -40.5,-8.5 + - pos: -8.5,-7.5 parent: 2 type: Transform - - uid: 7689 + - uid: 4212 components: - - pos: -39.5,-8.5 + - pos: -8.5,-6.5 parent: 2 type: Transform - - uid: 7690 + - uid: 4213 components: - - pos: -38.5,-8.5 + - pos: -9.5,-6.5 parent: 2 type: Transform - - uid: 7691 + - uid: 4214 components: - - pos: -37.5,-8.5 + - pos: -10.5,-6.5 parent: 2 type: Transform - - uid: 7692 + - uid: 4215 components: - - pos: -37.5,-9.5 + - pos: -7.5,5.5 parent: 2 type: Transform - - uid: 7693 + - uid: 4216 components: - - pos: -37.5,-10.5 + - pos: -7.5,6.5 parent: 2 type: Transform - - uid: 7694 + - uid: 4217 components: - - pos: -37.5,-11.5 + - pos: -8.5,6.5 parent: 2 type: Transform - - uid: 7695 + - uid: 4218 components: - - pos: -36.5,-11.5 + - pos: -9.5,6.5 parent: 2 type: Transform - - uid: 7696 + - uid: 4219 components: - - pos: -35.5,-11.5 + - pos: -10.5,6.5 parent: 2 type: Transform - - uid: 7697 + - uid: 4220 components: - - pos: -35.5,-10.5 + - pos: -11.5,6.5 parent: 2 type: Transform - - uid: 7698 + - uid: 4221 components: - - pos: -36.5,-8.5 + - pos: -12.5,6.5 parent: 2 type: Transform - - uid: 7699 + - uid: 4222 components: - - pos: -35.5,-8.5 + - pos: -13.5,6.5 parent: 2 type: Transform - - uid: 7700 + - uid: 4223 components: - - pos: -34.5,-8.5 + - pos: -14.5,6.5 parent: 2 type: Transform - - uid: 7702 + - uid: 4224 components: - - pos: -37.5,-7.5 + - pos: -14.5,7.5 parent: 2 type: Transform - - uid: 7703 + - uid: 4225 components: - - pos: -37.5,-6.5 + - pos: -14.5,8.5 parent: 2 type: Transform - - uid: 7704 + - uid: 4226 components: - - pos: -37.5,-5.5 + - pos: -14.5,9.5 parent: 2 type: Transform - - uid: 7705 + - uid: 4227 components: - - pos: -38.5,-5.5 + - pos: -34.5,0.5 parent: 2 type: Transform - - uid: 7706 + - uid: 4228 components: - - pos: -39.5,-5.5 + - pos: -35.5,0.5 parent: 2 type: Transform - - uid: 7707 + - uid: 4229 components: - - pos: -40.5,-5.5 + - pos: -35.5,-0.5 parent: 2 type: Transform - - uid: 7708 + - uid: 4230 components: - - pos: -41.5,-5.5 + - pos: -35.5,-1.5 parent: 2 type: Transform - - uid: 7709 + - uid: 4231 components: - - pos: -41.5,-4.5 + - pos: -35.5,-2.5 parent: 2 type: Transform - - uid: 7710 + - uid: 4232 components: - - pos: -41.5,-3.5 + - pos: -34.5,-2.5 parent: 2 type: Transform - - uid: 7711 + - uid: 4233 components: - - pos: -41.5,-2.5 + - pos: -33.5,-2.5 parent: 2 type: Transform - - uid: 7712 + - uid: 4234 components: - - pos: -41.5,-1.5 + - pos: -32.5,-2.5 parent: 2 type: Transform - - uid: 7713 + - uid: 4235 components: - - pos: -40.5,-1.5 + - pos: -32.5,-3.5 parent: 2 type: Transform - - uid: 7714 + - uid: 4236 components: - - pos: -39.5,-1.5 + - pos: -32.5,-4.5 parent: 2 type: Transform - - uid: 7715 + - uid: 4237 components: - - pos: -38.5,-1.5 + - pos: -32.5,-5.5 parent: 2 type: Transform - - uid: 7716 + - uid: 4238 components: - - pos: -27.5,-10.5 + - pos: -32.5,-6.5 parent: 2 type: Transform - - uid: 7717 + - uid: 4239 components: - - pos: -26.5,-10.5 + - pos: -32.5,-7.5 parent: 2 type: Transform - - uid: 7720 + - uid: 4240 components: - - pos: 25.5,-21.5 + - pos: -32.5,-8.5 parent: 2 type: Transform - - uid: 7721 + - uid: 4241 components: - - pos: 25.5,-20.5 + - pos: -32.5,-9.5 parent: 2 type: Transform - - uid: 7722 + - uid: 4242 components: - - pos: 25.5,-19.5 + - pos: -31.5,-9.5 parent: 2 type: Transform - - uid: 7723 + - uid: 4243 components: - - pos: 25.5,-18.5 + - pos: -30.5,-9.5 parent: 2 type: Transform - - uid: 7724 + - uid: 4244 components: - - pos: 25.5,-17.5 + - pos: -29.5,-9.5 parent: 2 type: Transform - - uid: 7725 + - uid: 4245 components: - - pos: 25.5,-16.5 + - pos: -28.5,-9.5 parent: 2 type: Transform - - uid: 7726 + - uid: 4246 components: - - pos: 25.5,-15.5 + - pos: -28.5,-10.5 parent: 2 type: Transform - - uid: 7727 + - uid: 4247 components: - - pos: 25.5,-22.5 + - pos: -28.5,-11.5 parent: 2 type: Transform - - uid: 7728 + - uid: 4248 components: - - pos: 25.5,-13.5 + - pos: -28.5,-12.5 parent: 2 type: Transform - - uid: 7729 + - uid: 4249 components: - - pos: 25.5,-14.5 + - pos: -28.5,-13.5 parent: 2 type: Transform - - uid: 7730 + - uid: 4250 components: - - pos: 25.5,-12.5 + - pos: -28.5,-14.5 parent: 2 type: Transform - - uid: 7731 + - uid: 4251 components: - - pos: 25.5,-11.5 + - pos: -28.5,-15.5 parent: 2 type: Transform - - uid: 7732 + - uid: 4252 components: - - pos: 25.5,-10.5 + - pos: -28.5,-16.5 parent: 2 type: Transform - - uid: 7733 + - uid: 4253 components: - - pos: 25.5,-9.5 + - pos: -28.5,-17.5 parent: 2 type: Transform - - uid: 7734 + - uid: 4254 components: - - pos: 25.5,-8.5 + - pos: -28.5,-18.5 parent: 2 type: Transform - - uid: 7735 + - uid: 4255 components: - - pos: 25.5,-7.5 + - pos: -28.5,-19.5 parent: 2 type: Transform - - uid: 7736 + - uid: 4256 components: - - pos: 25.5,-6.5 + - pos: -28.5,-20.5 parent: 2 type: Transform - - uid: 7737 + - uid: 4257 components: - - pos: 25.5,-5.5 + - pos: -29.5,-20.5 parent: 2 type: Transform - - uid: 7738 + - uid: 4258 components: - - pos: 25.5,-4.5 + - pos: -30.5,-20.5 parent: 2 type: Transform - - uid: 7739 + - uid: 4259 components: - - pos: 25.5,-3.5 + - pos: -31.5,-20.5 parent: 2 type: Transform - - uid: 7740 + - uid: 4260 components: - - pos: 25.5,-2.5 + - pos: -31.5,-19.5 parent: 2 type: Transform - - uid: 7741 + - uid: 4261 components: - - pos: 25.5,-1.5 + - pos: -31.5,-18.5 parent: 2 type: Transform - - uid: 7742 + - uid: 4262 components: - - pos: 25.5,-0.5 + - pos: -31.5,-17.5 parent: 2 type: Transform - - uid: 7743 + - uid: 4263 components: - - pos: 26.5,-0.5 + - pos: -32.5,-17.5 parent: 2 type: Transform - - uid: 7744 + - uid: 4264 components: - - pos: 27.5,-0.5 + - pos: -32.5,-20.5 parent: 2 type: Transform - - uid: 7745 + - uid: 4265 components: - - pos: 28.5,-0.5 + - pos: -33.5,-20.5 parent: 2 type: Transform - - uid: 7746 + - uid: 4266 components: - - pos: 29.5,-0.5 + - pos: -34.5,-20.5 parent: 2 type: Transform - - uid: 7747 + - uid: 4267 components: - - pos: 30.5,-0.5 + - pos: -35.5,-20.5 parent: 2 type: Transform - - uid: 7748 + - uid: 4268 components: - - pos: 31.5,-0.5 + - pos: -36.5,-20.5 parent: 2 type: Transform - - uid: 7749 + - uid: 4269 components: - - pos: 32.5,-0.5 + - pos: -37.5,-20.5 parent: 2 type: Transform - - uid: 7750 + - uid: 4270 components: - - pos: 31.5,-1.5 + - pos: -38.5,-20.5 parent: 2 type: Transform - - uid: 7751 + - uid: 4271 components: - - pos: 31.5,-2.5 + - pos: -39.5,-20.5 parent: 2 type: Transform - - uid: 7752 + - uid: 4272 components: - - pos: 31.5,-3.5 + - pos: -40.5,-20.5 parent: 2 type: Transform - - uid: 7753 + - uid: 4273 components: - - pos: 31.5,-4.5 + - pos: -41.5,-20.5 parent: 2 type: Transform - - uid: 7754 + - uid: 4274 components: - - pos: 31.5,-5.5 + - pos: -42.5,-20.5 parent: 2 type: Transform - - uid: 7755 + - uid: 4275 components: - - pos: 31.5,-6.5 + - pos: -43.5,-20.5 parent: 2 type: Transform - - uid: 7756 + - uid: 4276 components: - - pos: 31.5,-7.5 + - pos: -43.5,-19.5 parent: 2 type: Transform - - uid: 7757 + - uid: 4277 components: - - pos: 24.5,-20.5 + - pos: -43.5,-18.5 parent: 2 type: Transform - - uid: 7758 + - uid: 4278 components: - - pos: 23.5,-20.5 + - pos: -44.5,-18.5 parent: 2 type: Transform - - uid: 7759 + - uid: 4279 components: - - pos: 22.5,-20.5 + - pos: -45.5,-18.5 parent: 2 type: Transform - - uid: 7760 + - uid: 4280 components: - - pos: 21.5,-20.5 + - pos: -46.5,-18.5 parent: 2 type: Transform - - uid: 7761 + - uid: 4281 components: - - pos: 20.5,-20.5 + - pos: -46.5,-17.5 parent: 2 type: Transform - - uid: 7763 + - uid: 4282 components: - - pos: 19.5,-21.5 + - pos: -46.5,-16.5 parent: 2 type: Transform - - uid: 7764 + - uid: 4283 components: - - pos: 33.5,-0.5 + - pos: -46.5,-15.5 parent: 2 type: Transform - - uid: 7765 + - uid: 4284 components: - - pos: 33.5,0.5 + - pos: -46.5,-14.5 parent: 2 type: Transform - - uid: 7766 + - uid: 4285 components: - - pos: 33.5,1.5 + - pos: -46.5,-13.5 parent: 2 type: Transform - - uid: 7767 + - uid: 4286 components: - - pos: 33.5,2.5 + - pos: -46.5,-12.5 parent: 2 type: Transform - - uid: 7768 + - uid: 4287 components: - - pos: 33.5,3.5 + - pos: -46.5,-11.5 parent: 2 type: Transform - - uid: 7769 + - uid: 4288 components: - - pos: 33.5,4.5 + - pos: -46.5,-10.5 parent: 2 type: Transform - - uid: 7770 + - uid: 4289 components: - - pos: 34.5,4.5 + - pos: -46.5,-9.5 parent: 2 type: Transform - - uid: 7771 + - uid: 4290 components: - - pos: 35.5,4.5 + - pos: -46.5,-8.5 parent: 2 type: Transform - - uid: 7772 + - uid: 4291 components: - - pos: 36.5,4.5 + - pos: -47.5,-8.5 parent: 2 type: Transform - - uid: 7773 + - uid: 4292 components: - - pos: 37.5,4.5 + - pos: -48.5,-8.5 parent: 2 type: Transform - - uid: 7774 + - uid: 4293 components: - - pos: 37.5,5.5 + - pos: -49.5,-8.5 parent: 2 type: Transform - - uid: 7775 + - uid: 4294 components: - - pos: 37.5,6.5 + - pos: -50.5,-8.5 parent: 2 type: Transform - - uid: 7776 + - uid: 4295 components: - - pos: 37.5,7.5 + - pos: -51.5,-8.5 parent: 2 type: Transform - - uid: 7777 + - uid: 4296 components: - - pos: 37.5,8.5 + - pos: -52.5,-8.5 parent: 2 type: Transform - - uid: 7778 + - uid: 4297 components: - - pos: 37.5,9.5 + - pos: -52.5,-7.5 parent: 2 type: Transform - - uid: 7779 + - uid: 4298 components: - - pos: 38.5,9.5 + - pos: -45.5,-8.5 parent: 2 type: Transform - - uid: 7781 + - uid: 4299 components: - - pos: 24.5,-5.5 + - pos: -44.5,-8.5 parent: 2 type: Transform - - uid: 7782 + - uid: 4300 components: - - pos: 23.5,-5.5 + - pos: -43.5,-8.5 parent: 2 type: Transform - - uid: 7783 + - uid: 4301 components: - - pos: 22.5,-5.5 + - pos: -42.5,-8.5 parent: 2 type: Transform - - uid: 7786 + - uid: 4302 components: - - pos: -26.5,-29.5 + - pos: -41.5,-8.5 parent: 2 type: Transform - - uid: 7787 + - uid: 4303 components: - - pos: -15.5,-37.5 + - pos: -40.5,-8.5 parent: 2 type: Transform - - uid: 7789 + - uid: 4304 components: - - pos: -4.5,-23.5 + - pos: -39.5,-8.5 parent: 2 type: Transform - - uid: 7791 + - uid: 4305 components: - - pos: -4.5,-21.5 + - pos: -38.5,-8.5 parent: 2 type: Transform - - uid: 7793 + - uid: 4306 components: - - pos: -2.5,-23.5 + - pos: -37.5,-8.5 parent: 2 type: Transform - - uid: 7794 + - uid: 4307 components: - - pos: -0.5,-23.5 + - pos: -37.5,-9.5 parent: 2 type: Transform - - uid: 7795 + - uid: 4308 components: - - pos: 1.5,-23.5 + - pos: -37.5,-10.5 parent: 2 type: Transform - - uid: 7796 + - uid: 4309 components: - - pos: 3.5,-23.5 + - pos: -37.5,-11.5 parent: 2 type: Transform - - uid: 7798 + - uid: 4310 components: - - pos: 4.5,-23.5 + - pos: -36.5,-11.5 parent: 2 type: Transform - - uid: 7801 + - uid: 4311 components: - - pos: 5.5,-23.5 + - pos: -35.5,-11.5 parent: 2 type: Transform - - uid: 7805 + - uid: 4312 components: - - pos: 26.5,-16.5 + - pos: -35.5,-10.5 parent: 2 type: Transform - - uid: 7806 + - uid: 4313 components: - - pos: 27.5,-16.5 + - pos: -36.5,-8.5 parent: 2 type: Transform - - uid: 7807 + - uid: 4314 components: - - pos: 28.5,-16.5 + - pos: -35.5,-8.5 parent: 2 type: Transform - - uid: 7808 + - uid: 4315 components: - - pos: 29.5,-16.5 + - pos: -34.5,-8.5 parent: 2 type: Transform - - uid: 7809 + - uid: 4316 components: - - pos: 29.5,-18.5 + - pos: -37.5,-7.5 parent: 2 type: Transform - - uid: 7810 + - uid: 4317 components: - - pos: 29.5,-19.5 + - pos: -37.5,-6.5 parent: 2 type: Transform - - uid: 7811 + - uid: 4318 components: - - pos: 29.5,-20.5 + - pos: -37.5,-5.5 parent: 2 type: Transform - - uid: 7812 + - uid: 4319 components: - - pos: 29.5,-17.5 + - pos: -38.5,-5.5 parent: 2 type: Transform - - uid: 7813 + - uid: 4320 components: - - pos: 30.5,-20.5 + - pos: -39.5,-5.5 parent: 2 type: Transform - - uid: 7814 + - uid: 4321 components: - - pos: 31.5,-20.5 + - pos: -40.5,-5.5 parent: 2 type: Transform - - uid: 7815 + - uid: 4322 components: - - pos: 32.5,-20.5 + - pos: -41.5,-5.5 parent: 2 type: Transform - - uid: 7816 + - uid: 4323 components: - - pos: 33.5,-20.5 + - pos: -41.5,-4.5 parent: 2 type: Transform - - uid: 7817 + - uid: 4324 components: - - pos: 34.5,-20.5 + - pos: -41.5,-3.5 parent: 2 type: Transform - - uid: 7818 + - uid: 4325 components: - - pos: 35.5,-20.5 + - pos: -41.5,-2.5 parent: 2 type: Transform - - uid: 7819 + - uid: 4326 components: - - pos: 36.5,-20.5 + - pos: -41.5,-1.5 parent: 2 type: Transform - - uid: 7820 + - uid: 4327 components: - - pos: 36.5,-19.5 + - pos: -40.5,-1.5 parent: 2 type: Transform - - uid: 7821 + - uid: 4328 components: - - pos: 36.5,-17.5 + - pos: -39.5,-1.5 parent: 2 type: Transform - - uid: 7822 + - uid: 4329 components: - - pos: 36.5,-18.5 + - pos: -38.5,-1.5 parent: 2 type: Transform - - uid: 7824 + - uid: 4330 components: - - pos: 5.5,-22.5 + - pos: -27.5,-10.5 parent: 2 type: Transform - - uid: 7825 + - uid: 4331 components: - - pos: -5.5,-23.5 + - pos: -26.5,-10.5 parent: 2 type: Transform - - uid: 7826 + - uid: 4332 components: - - pos: -6.5,-23.5 + - pos: 25.5,-21.5 parent: 2 type: Transform - - uid: 7827 + - uid: 4333 components: - - pos: -7.5,-23.5 + - pos: 25.5,-20.5 parent: 2 type: Transform - - uid: 7829 + - uid: 4334 components: - - pos: -8.5,-25.5 + - pos: 25.5,-19.5 parent: 2 type: Transform - - uid: 7837 + - uid: 4335 components: - - pos: -8.5,-33.5 + - pos: 25.5,-18.5 parent: 2 type: Transform - - uid: 7838 + - uid: 4336 components: - - pos: -25.5,-29.5 + - pos: 25.5,-17.5 parent: 2 type: Transform - - uid: 7845 + - uid: 4337 components: - - pos: -15.5,-38.5 + - pos: 25.5,-16.5 parent: 2 type: Transform - - uid: 7846 + - uid: 4338 components: - - pos: -23.5,-29.5 + - pos: 25.5,-15.5 parent: 2 type: Transform - - uid: 7847 + - uid: 4339 components: - - pos: -27.5,-29.5 + - pos: 25.5,-22.5 parent: 2 type: Transform - - uid: 7848 + - uid: 4340 components: - - pos: -28.5,-29.5 + - pos: 25.5,-13.5 parent: 2 type: Transform - - uid: 7849 + - uid: 4341 components: - - pos: -29.5,-29.5 + - pos: 25.5,-14.5 parent: 2 type: Transform - - uid: 7850 + - uid: 4342 components: - - pos: -30.5,-29.5 + - pos: 25.5,-12.5 parent: 2 type: Transform - - uid: 7852 + - uid: 4343 components: - - pos: -7.5,-33.5 + - pos: 25.5,-11.5 parent: 2 type: Transform - - uid: 7853 + - uid: 4344 components: - - pos: -6.5,-33.5 + - pos: 25.5,-10.5 parent: 2 type: Transform - - uid: 7854 + - uid: 4345 components: - - pos: -6.5,-34.5 + - pos: 25.5,-9.5 parent: 2 type: Transform - - uid: 7855 + - uid: 4346 components: - - pos: -6.5,-35.5 + - pos: 25.5,-8.5 parent: 2 type: Transform - - uid: 7856 + - uid: 4347 components: - - pos: -6.5,-36.5 + - pos: 25.5,-7.5 parent: 2 type: Transform - - uid: 7857 + - uid: 4348 components: - - pos: -6.5,-37.5 + - pos: 25.5,-6.5 parent: 2 type: Transform - - uid: 7858 + - uid: 4349 components: - - pos: -6.5,-38.5 + - pos: 25.5,-5.5 parent: 2 type: Transform - - uid: 7859 + - uid: 4350 components: - - pos: -6.5,-39.5 + - pos: 25.5,-4.5 parent: 2 type: Transform - - uid: 7860 + - uid: 4351 components: - - pos: -6.5,-40.5 + - pos: 25.5,-3.5 parent: 2 type: Transform - - uid: 7861 + - uid: 4352 components: - - pos: -6.5,-41.5 + - pos: 25.5,-2.5 parent: 2 type: Transform - - uid: 7862 + - uid: 4353 components: - - pos: -5.5,-41.5 + - pos: 25.5,-1.5 parent: 2 type: Transform - - uid: 7864 + - uid: 4354 components: - - pos: -4.5,-41.5 + - pos: 25.5,-0.5 parent: 2 type: Transform - - uid: 7865 + - uid: 4355 components: - - pos: -4.5,-42.5 + - pos: 26.5,-0.5 parent: 2 type: Transform - - uid: 7868 + - uid: 4356 components: - - pos: -7.5,-26.5 + - pos: 27.5,-0.5 parent: 2 type: Transform - - uid: 7869 + - uid: 4357 components: - - pos: -7.5,-27.5 + - pos: 28.5,-0.5 parent: 2 type: Transform - - uid: 7870 + - uid: 4358 components: - - pos: -7.5,-28.5 + - pos: 29.5,-0.5 parent: 2 type: Transform - - uid: 7871 + - uid: 4359 components: - - pos: -7.5,-29.5 + - pos: 30.5,-0.5 parent: 2 type: Transform - - uid: 7872 + - uid: 4360 components: - - pos: -7.5,-30.5 + - pos: 31.5,-0.5 parent: 2 type: Transform - - uid: 7873 + - uid: 4361 components: - - pos: -7.5,-31.5 + - pos: 32.5,-0.5 parent: 2 type: Transform - - uid: 7874 + - uid: 4362 components: - - pos: -7.5,-32.5 + - pos: 31.5,-1.5 parent: 2 type: Transform - - uid: 7879 + - uid: 4363 components: - - pos: -1.5,-3.5 + - pos: 31.5,-2.5 parent: 2 type: Transform - - uid: 7880 + - uid: 4364 components: - - pos: -0.5,-3.5 + - pos: 31.5,-3.5 parent: 2 type: Transform - - uid: 7881 + - uid: 4365 components: - - pos: -0.5,1.5 + - pos: 31.5,-4.5 parent: 2 type: Transform - - uid: 7882 + - uid: 4366 components: - - pos: 2.5,1.5 + - pos: 31.5,-5.5 parent: 2 type: Transform - - uid: 7883 + - uid: 4367 components: - - pos: 3.5,1.5 + - pos: 31.5,-6.5 parent: 2 type: Transform - - uid: 7884 + - uid: 4368 components: - - pos: 4.5,1.5 + - pos: 31.5,-7.5 parent: 2 type: Transform - - uid: 7885 + - uid: 4369 components: - - pos: 5.5,1.5 + - pos: 24.5,-20.5 parent: 2 type: Transform - - uid: 7886 + - uid: 4370 components: - - pos: 5.5,2.5 + - pos: 23.5,-20.5 parent: 2 type: Transform - - uid: 7887 + - uid: 4371 components: - - pos: 0.5,2.5 + - pos: 22.5,-20.5 parent: 2 type: Transform - - uid: 7888 + - uid: 4372 components: - - pos: 0.5,3.5 + - pos: 21.5,-20.5 parent: 2 type: Transform - - uid: 7889 + - uid: 4373 components: - - pos: 0.5,4.5 + - pos: 20.5,-20.5 parent: 2 type: Transform - - uid: 7890 + - uid: 4374 components: - - pos: 0.5,5.5 + - pos: 19.5,-21.5 parent: 2 type: Transform - - uid: 7891 + - uid: 4375 components: - - pos: 0.5,6.5 + - pos: 33.5,-0.5 parent: 2 type: Transform - - uid: 7892 + - uid: 4376 components: - - pos: 0.5,7.5 + - pos: 33.5,0.5 parent: 2 type: Transform - - uid: 7893 + - uid: 4377 components: - - pos: 1.5,7.5 + - pos: 33.5,1.5 parent: 2 type: Transform - - uid: 7894 + - uid: 4378 components: - - pos: 2.5,7.5 + - pos: 33.5,2.5 parent: 2 type: Transform - - uid: 7895 + - uid: 4379 components: - - pos: 2.5,8.5 + - pos: 33.5,3.5 parent: 2 type: Transform - - uid: 7922 + - uid: 4380 components: - - pos: 12.5,16.5 + - pos: 33.5,4.5 parent: 2 type: Transform - - uid: 7923 + - uid: 4381 components: - - pos: 11.5,16.5 + - pos: 34.5,4.5 parent: 2 type: Transform - - uid: 7926 + - uid: 4382 components: - - pos: 11.5,15.5 + - pos: 35.5,4.5 parent: 2 type: Transform - - uid: 7927 + - uid: 4383 components: - - pos: 11.5,14.5 + - pos: 36.5,4.5 parent: 2 type: Transform - - uid: 7928 + - uid: 4384 components: - - pos: 11.5,13.5 + - pos: 37.5,4.5 parent: 2 type: Transform - - uid: 7929 + - uid: 4385 components: - - pos: 11.5,12.5 + - pos: 37.5,5.5 parent: 2 type: Transform - - uid: 7930 + - uid: 4386 components: - - pos: 11.5,11.5 + - pos: 37.5,6.5 parent: 2 type: Transform - - uid: 7931 + - uid: 4387 components: - - pos: 11.5,10.5 + - pos: 37.5,7.5 parent: 2 type: Transform - - uid: 7932 + - uid: 4388 components: - - pos: 11.5,9.5 + - pos: 37.5,8.5 parent: 2 type: Transform - - uid: 7933 + - uid: 4389 components: - - pos: 11.5,8.5 + - pos: 37.5,9.5 parent: 2 type: Transform - - uid: 7934 + - uid: 4390 components: - - pos: 12.5,8.5 + - pos: 38.5,9.5 parent: 2 type: Transform - - uid: 7935 + - uid: 4391 components: - - pos: 13.5,8.5 + - pos: 24.5,-5.5 parent: 2 type: Transform - - uid: 7937 + - uid: 4392 components: - - pos: 13.5,9.5 + - pos: 23.5,-5.5 parent: 2 type: Transform - - uid: 7976 + - uid: 4393 components: - - pos: -9.5,-13.5 + - pos: 22.5,-5.5 parent: 2 type: Transform - - uid: 7977 + - uid: 4394 components: - - pos: -10.5,-13.5 + - pos: -26.5,-29.5 parent: 2 type: Transform - - uid: 7978 + - uid: 4395 components: - - pos: -11.5,-13.5 + - pos: -15.5,-37.5 parent: 2 type: Transform - - uid: 7979 + - uid: 4396 components: - - pos: -12.5,-13.5 + - pos: -4.5,-23.5 parent: 2 type: Transform - - uid: 7980 + - uid: 4397 components: - - pos: -13.5,-13.5 + - pos: -4.5,-21.5 parent: 2 type: Transform - - uid: 7981 + - uid: 4398 components: - - pos: -14.5,-13.5 + - pos: -2.5,-23.5 parent: 2 type: Transform - - uid: 7982 + - uid: 4399 components: - - pos: -15.5,-13.5 + - pos: -0.5,-23.5 parent: 2 type: Transform - - uid: 7983 + - uid: 4400 components: - - pos: -15.5,-14.5 + - pos: 1.5,-23.5 parent: 2 type: Transform - - uid: 7991 + - uid: 4401 components: - - pos: -16.5,-13.5 + - pos: 3.5,-23.5 parent: 2 type: Transform - - uid: 7992 + - uid: 4402 components: - - pos: -16.5,-12.5 + - pos: 4.5,-23.5 parent: 2 type: Transform - - uid: 7993 + - uid: 4403 components: - - pos: -16.5,-11.5 + - pos: 5.5,-23.5 parent: 2 type: Transform - - uid: 7994 + - uid: 4404 components: - - pos: -16.5,-10.5 + - pos: 26.5,-16.5 parent: 2 type: Transform - - uid: 7995 + - uid: 4405 components: - - pos: -16.5,-9.5 + - pos: 27.5,-16.5 parent: 2 type: Transform - - uid: 7996 + - uid: 4406 components: - - pos: -16.5,-8.5 + - pos: 28.5,-16.5 parent: 2 type: Transform - - uid: 7997 + - uid: 4407 components: - - pos: -16.5,-7.5 + - pos: 29.5,-16.5 parent: 2 type: Transform - - uid: 7998 + - uid: 4408 components: - - pos: -16.5,-6.5 + - pos: 29.5,-18.5 parent: 2 type: Transform - - uid: 7999 + - uid: 4409 components: - - pos: -16.5,-5.5 + - pos: 29.5,-19.5 parent: 2 type: Transform - - uid: 8000 + - uid: 4410 components: - - pos: -16.5,-4.5 + - pos: 29.5,-20.5 parent: 2 type: Transform - - uid: 8001 + - uid: 4411 components: - - pos: -16.5,-3.5 + - pos: 29.5,-17.5 parent: 2 type: Transform - - uid: 8002 + - uid: 4412 components: - - pos: -16.5,-2.5 + - pos: 30.5,-20.5 parent: 2 type: Transform - - uid: 8003 + - uid: 4413 components: - - pos: -15.5,-2.5 + - pos: 31.5,-20.5 parent: 2 type: Transform - - uid: 8004 + - uid: 4414 components: - - pos: -14.5,-2.5 + - pos: 32.5,-20.5 parent: 2 type: Transform - - uid: 8062 + - uid: 4415 components: - - pos: -35.5,36.5 + - pos: 33.5,-20.5 parent: 2 type: Transform - - uid: 8063 + - uid: 4416 components: - - pos: -34.5,36.5 + - pos: 34.5,-20.5 parent: 2 type: Transform - - uid: 8064 + - uid: 4417 components: - - pos: -36.5,36.5 + - pos: 35.5,-20.5 parent: 2 type: Transform - - uid: 8065 + - uid: 4418 components: - - pos: -36.5,38.5 + - pos: 36.5,-20.5 parent: 2 type: Transform - - uid: 8109 + - uid: 4419 components: - - pos: -36.5,0.5 + - pos: 36.5,-19.5 parent: 2 type: Transform - - uid: 8110 + - uid: 4420 components: - - pos: -36.5,1.5 + - pos: 36.5,-17.5 parent: 2 type: Transform - - uid: 8111 + - uid: 4421 components: - - pos: -36.5,2.5 + - pos: 36.5,-18.5 parent: 2 type: Transform - - uid: 8112 + - uid: 4422 components: - - pos: -36.5,3.5 + - pos: 5.5,-22.5 parent: 2 type: Transform - - uid: 8113 + - uid: 4423 components: - - pos: -36.5,4.5 + - pos: -5.5,-23.5 parent: 2 type: Transform - - uid: 8114 + - uid: 4424 components: - - pos: -36.5,5.5 + - pos: -6.5,-23.5 parent: 2 type: Transform - - uid: 8115 + - uid: 4425 components: - - pos: -36.5,6.5 + - pos: -7.5,-23.5 parent: 2 type: Transform - - uid: 8116 + - uid: 4426 components: - - pos: -37.5,6.5 + - pos: -8.5,-25.5 parent: 2 type: Transform - - uid: 8124 + - uid: 4427 components: - - pos: -38.5,6.5 + - pos: -8.5,-33.5 parent: 2 type: Transform - - uid: 8126 + - uid: 4428 components: - - pos: -39.5,7.5 + - pos: -25.5,-29.5 parent: 2 type: Transform - - uid: 8128 + - uid: 4429 components: - - pos: -39.5,8.5 + - pos: -15.5,-38.5 parent: 2 type: Transform - - uid: 8201 + - uid: 4430 components: - - pos: -39.5,6.5 + - pos: -23.5,-29.5 parent: 2 type: Transform - - uid: 8431 + - uid: 4431 components: - - pos: 0.5,-11.5 + - pos: -27.5,-29.5 parent: 2 type: Transform - - uid: 8432 + - uid: 4432 components: - - pos: -53.5,-8.5 + - pos: -28.5,-29.5 parent: 2 type: Transform - - uid: 8433 + - uid: 4433 components: - - pos: -54.5,-8.5 + - pos: -29.5,-29.5 parent: 2 type: Transform - - uid: 8434 + - uid: 4434 components: - - pos: -55.5,-8.5 + - pos: -30.5,-29.5 parent: 2 type: Transform - - uid: 8435 + - uid: 4435 components: - - pos: -56.5,-8.5 + - pos: -7.5,-33.5 parent: 2 type: Transform - - uid: 8436 + - uid: 4436 components: - - pos: -56.5,-7.5 + - pos: -6.5,-33.5 parent: 2 type: Transform - - uid: 8437 + - uid: 4437 components: - - pos: -57.5,-7.5 + - pos: -6.5,-34.5 parent: 2 type: Transform - - uid: 8438 + - uid: 4438 components: - - pos: -58.5,-7.5 + - pos: -6.5,-35.5 parent: 2 type: Transform - - uid: 8439 + - uid: 4439 components: - - pos: -59.5,-7.5 + - pos: -6.5,-36.5 parent: 2 type: Transform - - uid: 8440 + - uid: 4440 components: - - pos: -60.5,-7.5 + - pos: -6.5,-37.5 parent: 2 type: Transform - - uid: 8441 + - uid: 4441 components: - - pos: -61.5,-7.5 + - pos: -7.5,-26.5 parent: 2 type: Transform - - uid: 8442 + - uid: 4442 components: - - pos: -62.5,-7.5 + - pos: -7.5,-27.5 parent: 2 type: Transform - - uid: 8443 + - uid: 4443 components: - - pos: -63.5,-7.5 + - pos: -7.5,-28.5 parent: 2 type: Transform - - uid: 8444 + - uid: 4444 components: - - pos: -64.5,-7.5 + - pos: -7.5,-29.5 parent: 2 type: Transform - - uid: 8445 + - uid: 4445 components: - - pos: -64.5,-7.5 + - pos: -7.5,-30.5 parent: 2 type: Transform - - uid: 8446 + - uid: 4446 components: - - pos: -65.5,-7.5 + - pos: -7.5,-31.5 parent: 2 type: Transform - - uid: 8447 + - uid: 4447 components: - - pos: -65.5,-8.5 + - pos: -7.5,-32.5 parent: 2 type: Transform - - uid: 8448 + - uid: 4448 components: - - pos: -65.5,-9.5 + - pos: -1.5,-3.5 parent: 2 type: Transform - - uid: 8449 + - uid: 4449 components: - - pos: -65.5,-10.5 + - pos: -0.5,-3.5 parent: 2 type: Transform - - uid: 8450 + - uid: 4450 components: - - pos: -64.5,-10.5 + - pos: -0.5,1.5 parent: 2 type: Transform - - uid: 8451 + - uid: 4451 components: - - pos: -63.5,-10.5 + - pos: 2.5,1.5 parent: 2 type: Transform - - uid: 8452 + - uid: 4452 components: - - pos: -63.5,-11.5 + - pos: 3.5,1.5 parent: 2 type: Transform - - uid: 8453 + - uid: 4453 components: - - pos: -63.5,-12.5 + - pos: 4.5,1.5 parent: 2 type: Transform - - uid: 8454 + - uid: 4454 components: - - pos: -63.5,-13.5 + - pos: 5.5,1.5 parent: 2 type: Transform - - uid: 8455 + - uid: 4455 components: - - pos: -63.5,-14.5 + - pos: 5.5,2.5 parent: 2 type: Transform - - uid: 8456 + - uid: 4456 components: - - pos: -63.5,-15.5 + - pos: 0.5,2.5 parent: 2 type: Transform - - uid: 8457 + - uid: 4457 components: - - pos: -63.5,-16.5 + - pos: 0.5,3.5 parent: 2 type: Transform - - uid: 8458 + - uid: 4458 components: - - pos: -63.5,-17.5 + - pos: 0.5,4.5 parent: 2 type: Transform - - uid: 8459 + - uid: 4459 components: - - pos: -64.5,-17.5 + - pos: 0.5,5.5 parent: 2 type: Transform - - uid: 8460 + - uid: 4460 components: - - pos: -65.5,-17.5 + - pos: 0.5,6.5 parent: 2 type: Transform - - uid: 8461 + - uid: 4461 components: - - pos: -65.5,-16.5 + - pos: 0.5,7.5 parent: 2 type: Transform - - uid: 8462 + - uid: 4462 components: - - pos: -65.5,-15.5 + - pos: 1.5,7.5 parent: 2 type: Transform - - uid: 8463 + - uid: 4463 components: - - pos: -65.5,-14.5 + - pos: 2.5,7.5 parent: 2 type: Transform - - uid: 8464 + - uid: 4464 components: - - pos: -65.5,-13.5 + - pos: 2.5,8.5 parent: 2 type: Transform - - uid: 8465 + - uid: 4465 components: - - pos: -65.5,-12.5 + - pos: 12.5,16.5 parent: 2 type: Transform - - uid: 8466 + - uid: 4466 components: - - pos: -65.5,-11.5 + - pos: 11.5,16.5 parent: 2 type: Transform - - uid: 8467 + - uid: 4467 components: - - pos: -66.5,-7.5 + - pos: 11.5,15.5 parent: 2 type: Transform - - uid: 8470 + - uid: 4468 components: - - pos: -66.5,-10.5 + - pos: 11.5,14.5 parent: 2 type: Transform - - uid: 8471 + - uid: 4469 components: - - pos: -67.5,-10.5 + - pos: 11.5,13.5 parent: 2 type: Transform - - uid: 8473 + - uid: 4470 components: - - pos: -67.5,-11.5 + - pos: 11.5,12.5 parent: 2 type: Transform - - uid: 8474 + - uid: 4471 components: - - pos: -67.5,-12.5 + - pos: 11.5,11.5 parent: 2 type: Transform - - uid: 8475 + - uid: 4472 components: - - pos: -67.5,-13.5 + - pos: 11.5,10.5 parent: 2 type: Transform - - uid: 8476 + - uid: 4473 components: - - pos: -67.5,-14.5 + - pos: 11.5,9.5 parent: 2 type: Transform - - uid: 8477 + - uid: 4474 components: - - pos: -66.5,-14.5 + - pos: 11.5,8.5 parent: 2 type: Transform - - uid: 8478 + - uid: 4475 components: - - pos: -66.5,-6.5 + - pos: 12.5,8.5 parent: 2 type: Transform - - uid: 8479 + - uid: 4476 components: - - pos: -66.5,-5.5 + - pos: 13.5,8.5 parent: 2 type: Transform - - uid: 8480 + - uid: 4477 components: - - pos: -66.5,-4.5 + - pos: 13.5,9.5 parent: 2 type: Transform - - uid: 8481 + - uid: 4478 components: - - pos: -66.5,-3.5 + - pos: -9.5,-13.5 parent: 2 type: Transform - - uid: 8482 + - uid: 4479 components: - - pos: -66.5,-2.5 + - pos: -10.5,-13.5 parent: 2 type: Transform - - uid: 8483 + - uid: 4480 components: - - pos: -66.5,-1.5 + - pos: -11.5,-13.5 parent: 2 type: Transform - - uid: 8484 + - uid: 4481 components: - - pos: -66.5,-0.5 + - pos: -12.5,-13.5 parent: 2 type: Transform - - uid: 8485 + - uid: 4482 components: - - pos: -66.5,0.5 + - pos: -13.5,-13.5 parent: 2 type: Transform - - uid: 8486 + - uid: 4483 components: - - pos: -66.5,1.5 + - pos: -14.5,-13.5 parent: 2 type: Transform - - uid: 8487 + - uid: 4484 components: - - pos: -61.5,-23.5 + - pos: -15.5,-13.5 parent: 2 type: Transform - - uid: 8488 + - uid: 4485 components: - - pos: -65.5,1.5 + - pos: -15.5,-14.5 parent: 2 type: Transform - - uid: 8489 + - uid: 4486 components: - - pos: -65.5,2.5 + - pos: -16.5,-13.5 parent: 2 type: Transform - - uid: 8490 + - uid: 4487 components: - - pos: -65.5,3.5 + - pos: -16.5,-12.5 parent: 2 type: Transform - - uid: 8491 + - uid: 4488 components: - - pos: -65.5,4.5 + - pos: -16.5,-11.5 parent: 2 type: Transform - - uid: 8492 + - uid: 4489 components: - - pos: -65.5,5.5 + - pos: -16.5,-10.5 parent: 2 type: Transform - - uid: 8493 + - uid: 4490 components: - - pos: -65.5,6.5 + - pos: -16.5,-9.5 parent: 2 type: Transform - - uid: 8495 + - uid: 4491 components: - - pos: -65.5,-1.5 + - pos: -16.5,-8.5 parent: 2 type: Transform - - uid: 8496 + - uid: 4492 components: - - pos: -65.5,-4.5 + - pos: -16.5,-7.5 parent: 2 type: Transform - - uid: 8497 + - uid: 4493 components: - - pos: -64.5,-5.5 + - pos: -16.5,-6.5 parent: 2 type: Transform - - uid: 8498 + - uid: 4494 components: - - pos: -64.5,-6.5 + - pos: -16.5,-5.5 parent: 2 type: Transform - - uid: 8499 + - uid: 4495 components: - - pos: -55.5,4.5 + - pos: -16.5,-4.5 parent: 2 type: Transform - - uid: 8501 + - uid: 4496 components: - - pos: -63.5,-4.5 + - pos: -16.5,-3.5 parent: 2 type: Transform - - uid: 8502 + - uid: 4497 components: - - pos: -63.5,-3.5 + - pos: -16.5,-2.5 parent: 2 type: Transform - - uid: 8503 + - uid: 4498 components: - - pos: -63.5,-2.5 + - pos: -15.5,-2.5 parent: 2 type: Transform - - uid: 8504 + - uid: 4499 components: - - pos: -63.5,-1.5 + - pos: -14.5,-2.5 parent: 2 type: Transform - - uid: 8505 + - uid: 4500 components: - - pos: -63.5,-0.5 + - pos: -35.5,36.5 parent: 2 type: Transform - - uid: 8506 + - uid: 4501 components: - - pos: -63.5,0.5 + - pos: -34.5,36.5 parent: 2 type: Transform - - uid: 8507 + - uid: 4502 components: - - pos: -63.5,1.5 + - pos: -36.5,36.5 parent: 2 type: Transform - - uid: 8508 + - uid: 4503 components: - - pos: -63.5,2.5 + - pos: -36.5,38.5 parent: 2 type: Transform - - uid: 8509 + - uid: 4504 components: - - pos: -63.5,3.5 + - pos: -36.5,0.5 parent: 2 type: Transform - - uid: 8510 + - uid: 4505 components: - - pos: -63.5,4.5 + - pos: -36.5,1.5 parent: 2 type: Transform - - uid: 8511 + - uid: 4506 components: - - pos: -63.5,5.5 + - pos: -36.5,2.5 parent: 2 type: Transform - - uid: 8512 + - uid: 4507 components: - - pos: -63.5,6.5 + - pos: -36.5,3.5 parent: 2 type: Transform - - uid: 8515 + - uid: 4508 components: - - pos: -64.5,6.5 + - pos: -36.5,4.5 parent: 2 type: Transform - - uid: 8516 + - uid: 4509 components: - - pos: -64.5,2.5 + - pos: -36.5,5.5 parent: 2 type: Transform - - uid: 8518 + - uid: 4510 components: - - pos: -62.5,5.5 + - pos: -36.5,6.5 parent: 2 type: Transform - - uid: 8519 + - uid: 4511 components: - - pos: -62.5,6.5 + - pos: -37.5,6.5 parent: 2 type: Transform - - uid: 8520 + - uid: 4512 components: - - pos: -61.5,5.5 + - pos: -38.5,6.5 parent: 2 type: Transform - - uid: 8521 + - uid: 4513 components: - - pos: -61.5,6.5 + - pos: -39.5,7.5 parent: 2 type: Transform - - uid: 8522 + - uid: 4514 components: - - pos: -60.5,5.5 + - pos: -39.5,8.5 parent: 2 type: Transform - - uid: 8523 + - uid: 4515 components: - - pos: -60.5,6.5 + - pos: -39.5,6.5 parent: 2 type: Transform - - uid: 8524 + - uid: 4516 components: - - pos: -59.5,5.5 + - pos: 0.5,-11.5 parent: 2 type: Transform - - uid: 8525 + - uid: 4517 components: - - pos: -59.5,6.5 + - pos: -53.5,-8.5 parent: 2 type: Transform - - uid: 8526 + - uid: 4518 components: - - pos: -58.5,5.5 + - pos: -54.5,-8.5 parent: 2 type: Transform - - uid: 8527 + - uid: 4519 components: - - pos: -58.5,6.5 + - pos: -55.5,-8.5 parent: 2 type: Transform - - uid: 8528 + - uid: 4520 components: - - pos: -57.5,5.5 + - pos: -56.5,-8.5 parent: 2 type: Transform - - uid: 8529 + - uid: 4521 components: - - pos: -57.5,6.5 + - pos: -56.5,-7.5 parent: 2 type: Transform - - uid: 8530 + - uid: 4522 components: - - pos: -56.5,5.5 + - pos: -57.5,-7.5 parent: 2 type: Transform - - uid: 8531 + - uid: 4523 components: - - pos: -56.5,6.5 + - pos: -58.5,-7.5 parent: 2 type: Transform - - uid: 8532 + - uid: 4524 components: - - pos: -55.5,5.5 + - pos: -59.5,-7.5 parent: 2 type: Transform - - uid: 8533 + - uid: 4525 components: - - pos: -55.5,6.5 + - pos: -60.5,-7.5 parent: 2 type: Transform - - uid: 8534 + - uid: 4526 components: - - pos: -54.5,5.5 + - pos: -61.5,-7.5 parent: 2 type: Transform - - uid: 8535 + - uid: 4527 components: - - pos: -54.5,6.5 + - pos: -62.5,-7.5 parent: 2 type: Transform - - uid: 8536 + - uid: 4528 components: - - pos: -53.5,5.5 + - pos: -63.5,-7.5 parent: 2 type: Transform - - uid: 8537 + - uid: 4529 components: - - pos: -53.5,6.5 + - pos: -64.5,-7.5 parent: 2 type: Transform - - uid: 8538 + - uid: 4530 components: - - pos: -52.5,7.5 + - pos: -64.5,-7.5 parent: 2 type: Transform - - uid: 8539 + - uid: 4531 components: - - pos: -55.5,3.5 + - pos: -65.5,-7.5 parent: 2 type: Transform - - uid: 8540 + - uid: 4532 components: - - pos: -55.5,2.5 + - pos: -65.5,-8.5 parent: 2 type: Transform - - uid: 8541 + - uid: 4533 components: - - pos: -55.5,1.5 + - pos: -65.5,-9.5 parent: 2 type: Transform - - uid: 8542 + - uid: 4534 components: - - pos: -55.5,0.5 + - pos: -65.5,-10.5 parent: 2 type: Transform - - uid: 8543 + - uid: 4535 components: - - pos: -55.5,-0.5 + - pos: -64.5,-10.5 parent: 2 type: Transform - - uid: 8544 + - uid: 4536 components: - - pos: -55.5,-1.5 + - pos: -63.5,-10.5 parent: 2 type: Transform - - uid: 8545 + - uid: 4537 components: - - pos: -55.5,-2.5 + - pos: -63.5,-11.5 parent: 2 type: Transform - - uid: 8546 + - uid: 4538 components: - - pos: -55.5,-3.5 + - pos: -63.5,-12.5 parent: 2 type: Transform - - uid: 8547 + - uid: 4539 components: - - pos: -55.5,-4.5 + - pos: -63.5,-13.5 parent: 2 type: Transform - - uid: 8548 + - uid: 4540 components: - - pos: -55.5,-5.5 + - pos: -63.5,-14.5 parent: 2 type: Transform - - uid: 8549 + - uid: 4541 components: - - pos: -55.5,-6.5 + - pos: -63.5,-15.5 parent: 2 type: Transform - - uid: 8550 + - uid: 4542 components: - - pos: -55.5,-7.5 + - pos: -63.5,-16.5 parent: 2 type: Transform - - uid: 8551 + - uid: 4543 components: - - pos: -55.5,-9.5 + - pos: -63.5,-17.5 parent: 2 type: Transform - - uid: 8552 + - uid: 4544 components: - - pos: -55.5,-10.5 + - pos: -64.5,-17.5 parent: 2 type: Transform - - uid: 8553 + - uid: 4545 components: - - pos: -55.5,-11.5 + - pos: -65.5,-17.5 parent: 2 type: Transform - - uid: 8554 + - uid: 4546 components: - - pos: -55.5,-12.5 + - pos: -65.5,-16.5 parent: 2 type: Transform - - uid: 8555 + - uid: 4547 components: - - pos: -55.5,-13.5 + - pos: -65.5,-15.5 parent: 2 type: Transform - - uid: 8556 + - uid: 4548 components: - - pos: -55.5,-14.5 + - pos: -65.5,-14.5 parent: 2 type: Transform - - uid: 8557 + - uid: 4549 components: - - pos: -55.5,-15.5 + - pos: -65.5,-13.5 parent: 2 type: Transform - - uid: 8558 + - uid: 4550 components: - - pos: -55.5,-16.5 + - pos: -65.5,-12.5 parent: 2 type: Transform - - uid: 8559 + - uid: 4551 components: - - pos: -55.5,-17.5 + - pos: -65.5,-11.5 parent: 2 type: Transform - - uid: 8560 + - uid: 4552 components: - - pos: -55.5,-18.5 + - pos: -66.5,-7.5 parent: 2 type: Transform - - uid: 8561 + - uid: 4553 components: - - pos: -55.5,-19.5 + - pos: -66.5,-10.5 parent: 2 type: Transform - - uid: 8562 + - uid: 4554 components: - - pos: -55.5,-20.5 + - pos: -67.5,-10.5 parent: 2 type: Transform - - uid: 8563 + - uid: 4555 components: - - pos: -55.5,-21.5 + - pos: -67.5,-11.5 parent: 2 type: Transform - - uid: 8564 + - uid: 4556 components: - - pos: -56.5,-21.5 + - pos: -67.5,-12.5 parent: 2 type: Transform - - uid: 8565 + - uid: 4557 components: - - pos: -57.5,-21.5 + - pos: -67.5,-13.5 parent: 2 type: Transform - - uid: 8566 + - uid: 4558 components: - - pos: -58.5,-21.5 + - pos: -67.5,-14.5 parent: 2 type: Transform - - uid: 8567 + - uid: 4559 components: - - pos: -59.5,-21.5 + - pos: -66.5,-14.5 parent: 2 type: Transform - - uid: 8568 + - uid: 4560 components: - - pos: -59.5,-20.5 + - pos: -66.5,-6.5 parent: 2 type: Transform - - uid: 8569 + - uid: 4561 components: - - pos: -60.5,-20.5 + - pos: -66.5,-5.5 parent: 2 type: Transform - - uid: 8570 + - uid: 4562 components: - - pos: -61.5,-20.5 + - pos: -66.5,-4.5 parent: 2 type: Transform - - uid: 8571 + - uid: 4563 components: - - pos: -62.5,-20.5 + - pos: -66.5,-3.5 parent: 2 type: Transform - - uid: 8572 + - uid: 4564 components: - - pos: -63.5,-20.5 + - pos: -66.5,-2.5 parent: 2 type: Transform - - uid: 8573 + - uid: 4565 components: - - pos: -64.5,-19.5 + - pos: -66.5,-1.5 parent: 2 type: Transform - - uid: 8574 + - uid: 4566 components: - - pos: -64.5,-18.5 + - pos: -66.5,-0.5 parent: 2 type: Transform - - uid: 8575 + - uid: 4567 components: - - pos: -62.5,-18.5 + - pos: -66.5,0.5 parent: 2 type: Transform - - uid: 8576 + - uid: 4568 components: - - pos: -62.5,-19.5 + - pos: -66.5,1.5 parent: 2 type: Transform - - uid: 8577 + - uid: 4569 components: - - pos: -62.5,-17.5 + - pos: -61.5,-23.5 parent: 2 type: Transform - - uid: 8578 + - uid: 4570 components: - - pos: -63.5,-21.5 + - pos: -65.5,1.5 parent: 2 type: Transform - - uid: 8579 + - uid: 4571 components: - - pos: -63.5,-22.5 + - pos: -65.5,2.5 parent: 2 type: Transform - - uid: 8580 + - uid: 4572 components: - - pos: -62.5,-22.5 + - pos: -65.5,3.5 parent: 2 type: Transform - - uid: 8581 + - uid: 4573 components: - - pos: -61.5,-22.5 + - pos: -65.5,4.5 parent: 2 type: Transform - - uid: 8582 + - uid: 4574 components: - - pos: -61.5,-21.5 + - pos: -65.5,5.5 parent: 2 type: Transform - - uid: 8583 + - uid: 4575 components: - - pos: -60.5,-23.5 + - pos: -65.5,6.5 parent: 2 type: Transform - - uid: 8584 + - uid: 4576 components: - - pos: -59.5,-23.5 + - pos: -65.5,-1.5 parent: 2 type: Transform - - uid: 8585 + - uid: 4577 components: - - pos: -58.5,-23.5 + - pos: -65.5,-4.5 parent: 2 type: Transform - - uid: 8586 + - uid: 4578 components: - - pos: -57.5,-23.5 + - pos: -64.5,-5.5 parent: 2 type: Transform - - uid: 8587 + - uid: 4579 components: - - pos: -56.5,-23.5 + - pos: -64.5,-6.5 parent: 2 type: Transform - - uid: 8588 + - uid: 4580 components: - - pos: -55.5,-23.5 + - pos: -55.5,4.5 parent: 2 type: Transform - - uid: 8589 + - uid: 4581 components: - - pos: -54.5,-23.5 + - pos: -63.5,-4.5 parent: 2 type: Transform - - uid: 8590 + - uid: 4582 components: - - pos: -53.5,-23.5 + - pos: -63.5,-3.5 parent: 2 type: Transform - - uid: 8591 + - uid: 4583 components: - - pos: -52.5,-20.5 + - pos: -63.5,-2.5 parent: 2 type: Transform - - uid: 8592 + - uid: 4584 components: - - pos: -59.5,-22.5 + - pos: -63.5,-1.5 parent: 2 type: Transform - - uid: 8593 + - uid: 4585 components: - - pos: -56.5,-22.5 + - pos: -63.5,-0.5 parent: 2 type: Transform - - uid: 8594 + - uid: 4586 components: - - pos: -53.5,-22.5 + - pos: -63.5,0.5 parent: 2 type: Transform - - uid: 8595 + - uid: 4587 components: - - pos: -53.5,-21.5 + - pos: -63.5,1.5 parent: 2 type: Transform - - uid: 8596 + - uid: 4588 components: - - pos: -53.5,-20.5 + - pos: -63.5,2.5 parent: 2 type: Transform - - uid: 8597 + - uid: 4589 components: - - pos: -54.5,-21.5 + - pos: -63.5,3.5 parent: 2 type: Transform - - uid: 8598 + - uid: 4590 components: - - pos: -51.5,-20.5 + - pos: -63.5,4.5 parent: 2 type: Transform - - uid: 8599 + - uid: 4591 components: - - pos: -50.5,-20.5 + - pos: -63.5,5.5 parent: 2 type: Transform - - uid: 8600 + - uid: 4592 components: - - pos: -50.5,-21.5 + - pos: -63.5,6.5 parent: 2 type: Transform - - uid: 8601 + - uid: 4593 components: - - pos: -50.5,-22.5 + - pos: -64.5,6.5 parent: 2 type: Transform - - uid: 8602 + - uid: 4594 components: - - pos: -51.5,-22.5 + - pos: -64.5,2.5 parent: 2 type: Transform - - uid: 8603 + - uid: 4595 components: - - pos: -52.5,-22.5 + - pos: -62.5,5.5 parent: 2 type: Transform - - uid: 8604 + - uid: 4596 components: - - pos: -50.5,-23.5 + - pos: -62.5,6.5 parent: 2 type: Transform - - uid: 8605 + - uid: 4597 components: - - pos: -49.5,-23.5 + - pos: -61.5,5.5 parent: 2 type: Transform - - uid: 8606 + - uid: 4598 components: - - pos: -48.5,-23.5 + - pos: -61.5,6.5 parent: 2 type: Transform - - uid: 8607 + - uid: 4599 components: - - pos: -47.5,-23.5 + - pos: -60.5,5.5 parent: 2 type: Transform - - uid: 8608 + - uid: 4600 components: - - pos: -46.5,-23.5 + - pos: -60.5,6.5 parent: 2 type: Transform - - uid: 8609 + - uid: 4601 components: - - pos: -45.5,-23.5 + - pos: -59.5,5.5 parent: 2 type: Transform - - uid: 8610 + - uid: 4602 components: - - pos: -44.5,-23.5 + - pos: -59.5,6.5 parent: 2 type: Transform - - uid: 8611 + - uid: 4603 components: - - pos: -45.5,-21.5 + - pos: -58.5,5.5 parent: 2 type: Transform - - uid: 8612 + - uid: 4604 components: - - pos: -46.5,-21.5 + - pos: -58.5,6.5 parent: 2 type: Transform - - uid: 8613 + - uid: 4605 components: - - pos: -47.5,-21.5 + - pos: -57.5,5.5 parent: 2 type: Transform - - uid: 8614 + - uid: 4606 components: - - pos: -48.5,-21.5 + - pos: -57.5,6.5 parent: 2 type: Transform - - uid: 8615 + - uid: 4607 components: - - pos: -49.5,-21.5 + - pos: -56.5,5.5 parent: 2 type: Transform - - uid: 9060 + - uid: 4608 components: - - pos: 17.5,-21.5 + - pos: -56.5,6.5 parent: 2 type: Transform - - uid: 9166 + - uid: 4609 components: - - pos: -7.5,37.5 + - pos: -55.5,5.5 parent: 2 type: Transform - - uid: 9218 + - uid: 4610 components: - - pos: -15.5,-80.5 + - pos: -55.5,6.5 parent: 2 type: Transform - - uid: 9219 + - uid: 4611 components: - - pos: -16.5,-80.5 + - pos: -54.5,5.5 parent: 2 type: Transform - - uid: 9220 + - uid: 4612 components: - - pos: -16.5,-79.5 + - pos: -54.5,6.5 parent: 2 type: Transform - - uid: 9221 + - uid: 4613 components: - - pos: -16.5,-78.5 + - pos: -53.5,5.5 parent: 2 type: Transform - - uid: 9222 + - uid: 4614 components: - - pos: -16.5,-77.5 + - pos: -53.5,6.5 parent: 2 type: Transform - - uid: 9223 + - uid: 4615 components: - - pos: -16.5,-76.5 + - pos: -52.5,7.5 parent: 2 type: Transform - - uid: 9224 + - uid: 4616 components: - - pos: -16.5,-75.5 + - pos: -55.5,3.5 parent: 2 type: Transform - - uid: 9225 + - uid: 4617 components: - - pos: -16.5,-74.5 + - pos: -55.5,2.5 parent: 2 type: Transform - - uid: 9226 + - uid: 4618 components: - - pos: -16.5,-73.5 + - pos: -55.5,1.5 parent: 2 type: Transform - - uid: 9227 + - uid: 4619 components: - - pos: -16.5,-72.5 + - pos: -55.5,0.5 parent: 2 type: Transform - - uid: 9228 + - uid: 4620 components: - - pos: -17.5,-72.5 + - pos: -55.5,-0.5 parent: 2 type: Transform - - uid: 9229 + - uid: 4621 components: - - pos: -18.5,-72.5 + - pos: -55.5,-1.5 parent: 2 type: Transform - - uid: 9230 + - uid: 4622 components: - - pos: -11.5,-75.5 + - pos: -55.5,-2.5 parent: 2 type: Transform - - uid: 9231 + - uid: 4623 components: - - pos: -14.5,-80.5 + - pos: -55.5,-3.5 parent: 2 type: Transform - - uid: 9232 + - uid: 4624 components: - - pos: -15.5,-76.5 + - pos: -55.5,-4.5 parent: 2 type: Transform - - uid: 9233 + - uid: 4625 components: - - pos: -14.5,-76.5 + - pos: -55.5,-5.5 parent: 2 type: Transform - - uid: 9234 + - uid: 4626 components: - - pos: -13.5,-76.5 + - pos: -55.5,-6.5 parent: 2 type: Transform - - uid: 9235 + - uid: 4627 components: - - pos: -12.5,-76.5 + - pos: -55.5,-7.5 parent: 2 type: Transform - - uid: 9236 + - uid: 4628 components: - - pos: -11.5,-76.5 + - pos: -55.5,-9.5 parent: 2 type: Transform - - uid: 9237 + - uid: 4629 components: - - pos: -11.5,-74.5 + - pos: -55.5,-10.5 parent: 2 type: Transform - - uid: 9238 + - uid: 4630 components: - - pos: -10.5,-74.5 + - pos: -55.5,-11.5 parent: 2 type: Transform - - uid: 9239 + - uid: 4631 components: - - pos: -9.5,-74.5 + - pos: -55.5,-12.5 parent: 2 type: Transform - - uid: 9240 + - uid: 4632 components: - - pos: -8.5,-74.5 + - pos: -55.5,-13.5 parent: 2 type: Transform - - uid: 9241 + - uid: 4633 components: - - pos: -7.5,-74.5 + - pos: -55.5,-14.5 parent: 2 type: Transform - - uid: 9242 + - uid: 4634 components: - - pos: -6.5,-74.5 + - pos: -55.5,-15.5 parent: 2 type: Transform - - uid: 9243 + - uid: 4635 components: - - pos: -5.5,-74.5 + - pos: -55.5,-16.5 parent: 2 type: Transform - - uid: 9244 + - uid: 4636 components: - - pos: -4.5,-74.5 + - pos: -55.5,-17.5 parent: 2 type: Transform - - uid: 9245 + - uid: 4637 components: - - pos: -4.5,-75.5 + - pos: -55.5,-18.5 parent: 2 type: Transform - - uid: 9246 + - uid: 4638 components: - - pos: -4.5,-76.5 + - pos: -55.5,-19.5 parent: 2 type: Transform - - uid: 9247 + - uid: 4639 components: - - pos: -3.5,-76.5 + - pos: -55.5,-20.5 parent: 2 type: Transform - - uid: 9248 + - uid: 4640 components: - - pos: -2.5,-76.5 + - pos: -55.5,-21.5 parent: 2 type: Transform - - uid: 9249 + - uid: 4641 components: - - pos: -18.5,-76.5 + - pos: -56.5,-21.5 parent: 2 type: Transform - - uid: 9250 + - uid: 4642 components: - - pos: -19.5,-76.5 + - pos: -57.5,-21.5 parent: 2 type: Transform - - uid: 9251 + - uid: 4643 components: - - pos: -20.5,-76.5 + - pos: -58.5,-21.5 parent: 2 type: Transform - - uid: 9252 + - uid: 4644 components: - - pos: -21.5,-76.5 + - pos: -59.5,-21.5 parent: 2 type: Transform - - uid: 9253 + - uid: 4645 components: - - pos: -22.5,-76.5 + - pos: -59.5,-20.5 parent: 2 type: Transform - - uid: 9254 + - uid: 4646 components: - - pos: -23.5,-76.5 + - pos: -60.5,-20.5 parent: 2 type: Transform - - uid: 9255 + - uid: 4647 components: - - pos: -24.5,-76.5 + - pos: -61.5,-20.5 parent: 2 type: Transform - - uid: 9256 + - uid: 4648 components: - - pos: -25.5,-76.5 + - pos: -62.5,-20.5 parent: 2 type: Transform - - uid: 9257 + - uid: 4649 components: - - pos: -26.5,-76.5 + - pos: -63.5,-20.5 parent: 2 type: Transform - - uid: 9258 + - uid: 4650 components: - - pos: -27.5,-76.5 + - pos: -64.5,-19.5 parent: 2 type: Transform - - uid: 9259 + - uid: 4651 components: - - pos: -28.5,-76.5 + - pos: -64.5,-18.5 parent: 2 type: Transform - - uid: 9260 + - uid: 4652 components: - - pos: -29.5,-76.5 + - pos: -62.5,-18.5 parent: 2 type: Transform - - uid: 9261 + - uid: 4653 components: - - pos: -29.5,-77.5 + - pos: -62.5,-19.5 parent: 2 type: Transform - - uid: 9262 + - uid: 4654 components: - - pos: -29.5,-78.5 + - pos: -62.5,-17.5 parent: 2 type: Transform - - uid: 9263 + - uid: 4655 components: - - pos: -29.5,-79.5 + - pos: -63.5,-21.5 parent: 2 type: Transform - - uid: 9264 + - uid: 4656 components: - - pos: -29.5,-80.5 + - pos: -63.5,-22.5 parent: 2 type: Transform - - uid: 9402 + - uid: 4657 components: - - pos: 22.5,19.5 + - pos: -62.5,-22.5 parent: 2 type: Transform - - uid: 9403 + - uid: 4658 components: - - pos: 22.5,20.5 + - pos: -61.5,-22.5 parent: 2 type: Transform - - uid: 9422 + - uid: 4659 components: - - pos: 22.5,21.5 + - pos: -61.5,-21.5 parent: 2 type: Transform - - uid: 9598 + - uid: 4660 components: - - pos: -19.5,28.5 + - pos: -60.5,-23.5 parent: 2 type: Transform - - uid: 9599 + - uid: 4661 components: - - pos: -19.5,27.5 + - pos: -59.5,-23.5 parent: 2 type: Transform - - uid: 9600 + - uid: 4662 components: - - pos: -19.5,26.5 + - pos: -58.5,-23.5 parent: 2 type: Transform - - uid: 9601 + - uid: 4663 components: - - pos: -18.5,26.5 + - pos: -57.5,-23.5 parent: 2 type: Transform - - uid: 9602 + - uid: 4664 components: - - pos: -17.5,26.5 + - pos: -56.5,-23.5 parent: 2 type: Transform - - uid: 9603 + - uid: 4665 components: - - pos: -16.5,26.5 + - pos: -55.5,-23.5 parent: 2 type: Transform - - uid: 9604 + - uid: 4666 components: - - pos: -15.5,26.5 + - pos: -54.5,-23.5 parent: 2 type: Transform - - uid: 9605 + - uid: 4667 components: - - pos: -14.5,26.5 + - pos: -53.5,-23.5 parent: 2 type: Transform - - uid: 9637 + - uid: 4668 components: - - pos: -21.5,29.5 + - pos: -52.5,-20.5 parent: 2 type: Transform - - uid: 9700 + - uid: 4669 components: - - pos: -21.5,33.5 + - pos: -59.5,-22.5 parent: 2 type: Transform - - uid: 9701 + - uid: 4670 components: - - pos: -22.5,33.5 + - pos: -56.5,-22.5 parent: 2 type: Transform - - uid: 9702 + - uid: 4671 components: - - pos: -22.5,35.5 + - pos: -53.5,-22.5 parent: 2 type: Transform - - uid: 9703 + - uid: 4672 components: - - pos: -22.5,36.5 + - pos: -53.5,-21.5 parent: 2 type: Transform - - uid: 9704 + - uid: 4673 components: - - pos: -22.5,37.5 + - pos: -53.5,-20.5 parent: 2 type: Transform - - uid: 9705 + - uid: 4674 components: - - pos: -22.5,38.5 + - pos: -54.5,-21.5 parent: 2 type: Transform - - uid: 9706 + - uid: 4675 components: - - pos: -22.5,39.5 + - pos: -51.5,-20.5 parent: 2 type: Transform - - uid: 9707 + - uid: 4676 components: - - pos: -22.5,40.5 + - pos: -50.5,-20.5 parent: 2 type: Transform - - uid: 9708 + - uid: 4677 components: - - pos: -22.5,41.5 + - pos: -50.5,-21.5 parent: 2 type: Transform - - uid: 9710 + - uid: 4678 components: - - pos: -21.5,41.5 + - pos: -50.5,-22.5 parent: 2 type: Transform - - uid: 9711 + - uid: 4679 components: - - pos: -20.5,41.5 + - pos: -51.5,-22.5 parent: 2 type: Transform - - uid: 9712 + - uid: 4680 components: - - pos: -19.5,41.5 + - pos: -52.5,-22.5 parent: 2 type: Transform - - uid: 9713 + - uid: 4681 components: - - pos: -18.5,41.5 + - pos: -50.5,-23.5 parent: 2 type: Transform - - uid: 9889 + - uid: 4682 components: - - pos: -2.5,19.5 + - pos: -49.5,-23.5 parent: 2 type: Transform - - uid: 9904 + - uid: 4683 components: - - pos: -3.5,29.5 + - pos: -48.5,-23.5 parent: 2 type: Transform - - uid: 9905 + - uid: 4684 components: - - pos: -3.5,28.5 + - pos: -47.5,-23.5 parent: 2 type: Transform - - uid: 9906 + - uid: 4685 components: - - pos: -3.5,27.5 + - pos: -46.5,-23.5 parent: 2 type: Transform - - uid: 9907 + - uid: 4686 components: - - pos: -3.5,26.5 + - pos: -45.5,-23.5 parent: 2 type: Transform - - uid: 9908 + - uid: 4687 components: - - pos: -3.5,25.5 + - pos: -44.5,-23.5 parent: 2 type: Transform - - uid: 9909 + - uid: 4688 components: - - pos: -3.5,24.5 + - pos: -45.5,-21.5 parent: 2 type: Transform - - uid: 9910 + - uid: 4689 components: - - pos: -3.5,23.5 + - pos: -46.5,-21.5 parent: 2 type: Transform - - uid: 9911 + - uid: 4690 components: - - pos: -3.5,22.5 + - pos: -47.5,-21.5 parent: 2 type: Transform - - uid: 9912 + - uid: 4691 components: - - pos: -3.5,21.5 + - pos: -48.5,-21.5 parent: 2 type: Transform - - uid: 9913 + - uid: 4692 components: - - pos: -3.5,20.5 + - pos: -49.5,-21.5 parent: 2 type: Transform - - uid: 9914 + - uid: 4693 components: - - pos: -3.5,19.5 + - pos: 17.5,-21.5 parent: 2 type: Transform - - uid: 9915 + - uid: 4694 components: - - pos: -1.5,19.5 + - pos: -7.5,37.5 parent: 2 type: Transform - - uid: 9916 + - uid: 4695 components: - - pos: -0.5,19.5 + - pos: -15.5,-80.5 parent: 2 type: Transform - - uid: 9921 + - uid: 4696 components: - - pos: -0.5,20.5 + - pos: -16.5,-80.5 parent: 2 type: Transform - - uid: 9922 + - uid: 4697 components: - - pos: -0.5,21.5 + - pos: -16.5,-79.5 parent: 2 type: Transform - - uid: 10082 + - uid: 4698 components: - - pos: 16.5,-21.5 + - pos: -16.5,-78.5 parent: 2 type: Transform - - uid: 10083 + - uid: 4699 components: - - pos: 16.5,-22.5 + - pos: -16.5,-77.5 parent: 2 type: Transform - - uid: 10216 + - uid: 4700 components: - - pos: -25.5,14.5 + - pos: -16.5,-76.5 parent: 2 type: Transform - - uid: 10217 + - uid: 4701 components: - - pos: -25.5,13.5 + - pos: -16.5,-75.5 parent: 2 type: Transform - - uid: 10218 + - uid: 4702 components: - - pos: -25.5,12.5 + - pos: -16.5,-74.5 parent: 2 type: Transform - - uid: 10219 + - uid: 4703 components: - - pos: -25.5,11.5 + - pos: -16.5,-73.5 parent: 2 type: Transform - - uid: 10220 + - uid: 4704 components: - - pos: -25.5,10.5 + - pos: -16.5,-72.5 parent: 2 type: Transform - - uid: 10221 + - uid: 4705 components: - - pos: -26.5,10.5 + - pos: -17.5,-72.5 parent: 2 type: Transform - - uid: 10586 + - uid: 4706 components: - - pos: -7.5,-25.5 + - pos: -18.5,-72.5 parent: 2 type: Transform - - uid: 10971 + - uid: 4707 components: - - pos: -62.5,-10.5 + - pos: -11.5,-75.5 parent: 2 type: Transform - - uid: 10972 + - uid: 4708 components: - - pos: -63.5,-9.5 + - pos: -14.5,-80.5 parent: 2 type: Transform - - uid: 10988 + - uid: 4709 components: - - pos: -63.5,-8.5 + - pos: -15.5,-76.5 parent: 2 type: Transform - - uid: 11234 + - uid: 4710 components: - - pos: 2.5,-72.5 + - pos: -14.5,-76.5 parent: 2 type: Transform - - uid: 11433 + - uid: 4711 components: - - pos: -36.5,-82.5 + - pos: -13.5,-76.5 parent: 2 type: Transform - - uid: 11434 + - uid: 4712 components: - - pos: -36.5,-71.5 + - pos: -12.5,-76.5 parent: 2 type: Transform - - uid: 11546 + - uid: 4713 components: - - pos: 16.5,-23.5 + - pos: -11.5,-76.5 parent: 2 type: Transform - - uid: 12517 + - uid: 4714 components: - - pos: 20.5,-22.5 + - pos: -11.5,-74.5 parent: 2 type: Transform - - uid: 12668 + - uid: 4715 components: - - pos: 13.5,19.5 + - pos: -10.5,-74.5 parent: 2 type: Transform - - uid: 12909 + - uid: 4716 components: - - pos: -9.5,39.5 + - pos: -9.5,-74.5 parent: 2 type: Transform - - uid: 13017 + - uid: 4717 components: - - pos: -7.5,-87.5 + - pos: -8.5,-74.5 parent: 2 type: Transform - - uid: 13128 + - uid: 4718 components: - - pos: -67.5,-9.5 + - pos: -7.5,-74.5 parent: 2 type: Transform - - uid: 13133 + - uid: 4719 components: - - pos: -33.5,-8.5 + - pos: -6.5,-74.5 parent: 2 type: Transform - - uid: 13159 + - uid: 4720 components: - - pos: -67.5,-7.5 + - pos: -5.5,-74.5 parent: 2 type: Transform - - uid: 13163 + - uid: 4721 components: - - pos: -67.5,-8.5 + - pos: -4.5,-74.5 parent: 2 type: Transform - - uid: 13279 + - uid: 4722 components: - - pos: -5.5,38.5 + - pos: -4.5,-75.5 parent: 2 type: Transform - - uid: 13460 + - uid: 4723 components: - - pos: -60.5,-3.5 + - pos: -4.5,-76.5 parent: 2 type: Transform - - uid: 13461 + - uid: 4724 components: - - pos: -61.5,-3.5 + - pos: -3.5,-76.5 parent: 2 type: Transform - - uid: 13462 + - uid: 4725 components: - - pos: -61.5,-4.5 + - pos: -2.5,-76.5 parent: 2 type: Transform - - uid: 13463 + - uid: 4726 components: - - pos: -62.5,-4.5 + - pos: -18.5,-76.5 parent: 2 type: Transform - - uid: 13587 + - uid: 4727 components: - - pos: -1.5,-41.5 + - pos: -19.5,-76.5 parent: 2 type: Transform - - uid: 13621 + - uid: 4728 components: - - pos: -3.5,-41.5 + - pos: -20.5,-76.5 parent: 2 type: Transform - - uid: 13624 + - uid: 4729 components: - - pos: -2.5,-41.5 + - pos: -21.5,-76.5 parent: 2 type: Transform - - uid: 13788 + - uid: 4730 components: - - pos: -7.5,39.5 + - pos: -22.5,-76.5 parent: 2 type: Transform - - uid: 14434 + - uid: 4731 components: - - pos: -63.5,-5.5 + - pos: -23.5,-76.5 parent: 2 type: Transform - - uid: 14770 + - uid: 4732 components: - - pos: -16.5,-71.5 + - pos: -24.5,-76.5 parent: 2 type: Transform - - uid: 14771 + - uid: 4733 components: - - pos: -16.5,-70.5 + - pos: -25.5,-76.5 parent: 2 type: Transform - - uid: 14772 + - uid: 4734 components: - - pos: -16.5,-69.5 + - pos: -26.5,-76.5 parent: 2 type: Transform - - uid: 14773 + - uid: 4735 components: - - pos: -16.5,-68.5 + - pos: -27.5,-76.5 parent: 2 type: Transform - - uid: 14774 + - uid: 4736 components: - - pos: -16.5,-67.5 + - pos: -28.5,-76.5 parent: 2 type: Transform - - uid: 14775 + - uid: 4737 components: - - pos: -16.5,-66.5 + - pos: -29.5,-76.5 parent: 2 type: Transform - - uid: 14776 + - uid: 4738 components: - - pos: -16.5,-65.5 + - pos: -29.5,-77.5 parent: 2 type: Transform - - uid: 14777 + - uid: 4739 components: - - pos: -16.5,-64.5 + - pos: -29.5,-78.5 parent: 2 type: Transform - - uid: 14778 + - uid: 4740 components: - - pos: -17.5,-64.5 + - pos: -29.5,-79.5 parent: 2 type: Transform - - uid: 14779 + - uid: 4741 components: - - pos: -18.5,-64.5 + - pos: -29.5,-80.5 parent: 2 type: Transform - - uid: 14780 + - uid: 4742 components: - - pos: -19.5,-64.5 + - pos: 22.5,19.5 parent: 2 type: Transform - - uid: 14781 + - uid: 4743 components: - - pos: -20.5,-64.5 + - pos: 22.5,20.5 parent: 2 type: Transform - - uid: 14782 + - uid: 4744 components: - - pos: -21.5,-64.5 + - pos: 22.5,21.5 parent: 2 type: Transform - - uid: 14783 + - uid: 4745 components: - - pos: -22.5,-64.5 + - pos: -19.5,28.5 parent: 2 type: Transform - - uid: 14784 + - uid: 4746 components: - - pos: -22.5,-65.5 + - pos: -19.5,27.5 parent: 2 type: Transform - - uid: 14785 + - uid: 4747 components: - - pos: -23.5,-65.5 + - pos: -19.5,26.5 parent: 2 type: Transform - - uid: 14786 + - uid: 4748 components: - - pos: -24.5,-65.5 + - pos: -18.5,26.5 parent: 2 type: Transform - - uid: 14787 + - uid: 4749 components: - - pos: -25.5,-65.5 + - pos: -17.5,26.5 parent: 2 type: Transform - - uid: 14788 + - uid: 4750 components: - - pos: -26.5,-65.5 + - pos: -16.5,26.5 parent: 2 type: Transform - - uid: 14789 + - uid: 4751 components: - - pos: -26.5,-66.5 + - pos: -15.5,26.5 parent: 2 type: Transform - - uid: 14790 + - uid: 4752 components: - - pos: -27.5,-66.5 + - pos: -14.5,26.5 parent: 2 type: Transform - - uid: 14791 + - uid: 4753 components: - - pos: -28.5,-66.5 + - pos: -21.5,29.5 parent: 2 type: Transform - - uid: 14792 + - uid: 4754 components: - - pos: -29.5,-66.5 + - pos: -21.5,33.5 parent: 2 type: Transform - - uid: 14793 + - uid: 4755 components: - - pos: -30.5,-66.5 + - pos: -22.5,33.5 parent: 2 type: Transform - - uid: 14794 + - uid: 4756 components: - - pos: -31.5,-66.5 + - pos: -22.5,35.5 parent: 2 type: Transform - - uid: 14795 + - uid: 4757 components: - - pos: -32.5,-66.5 + - pos: -22.5,36.5 parent: 2 type: Transform - - uid: 14796 + - uid: 4758 components: - - pos: -33.5,-66.5 + - pos: -22.5,37.5 parent: 2 type: Transform - - uid: 14797 + - uid: 4759 components: - - pos: -33.5,-67.5 + - pos: -22.5,38.5 parent: 2 type: Transform - - uid: 14798 + - uid: 4760 components: - - pos: -34.5,-67.5 + - pos: -22.5,39.5 parent: 2 type: Transform - - uid: 14799 + - uid: 4761 components: - - pos: -35.5,-67.5 + - pos: -22.5,40.5 parent: 2 type: Transform - - uid: 14800 + - uid: 4762 components: - - pos: -35.5,-66.5 + - pos: -22.5,41.5 parent: 2 type: Transform - - uid: 14801 + - uid: 4763 components: - - pos: -36.5,-66.5 + - pos: -21.5,41.5 parent: 2 type: Transform - - uid: 14802 + - uid: 4764 components: - - pos: -37.5,-66.5 + - pos: -20.5,41.5 parent: 2 type: Transform - - uid: 14803 + - uid: 4765 components: - - pos: -37.5,-67.5 + - pos: -19.5,41.5 parent: 2 type: Transform - - uid: 14804 + - uid: 4766 components: - - pos: -37.5,-68.5 + - pos: -18.5,41.5 parent: 2 type: Transform - - uid: 14805 + - uid: 4767 components: - - pos: -37.5,-69.5 + - pos: -2.5,19.5 parent: 2 type: Transform - - uid: 14806 + - uid: 4768 components: - - pos: -37.5,-70.5 + - pos: -3.5,29.5 parent: 2 type: Transform - - uid: 14807 + - uid: 4769 components: - - pos: -37.5,-71.5 + - pos: -3.5,28.5 parent: 2 type: Transform - - uid: 14808 + - uid: 4770 components: - - pos: -37.5,-72.5 + - pos: -3.5,27.5 parent: 2 type: Transform - - uid: 14809 + - uid: 4771 components: - - pos: -38.5,-72.5 + - pos: -3.5,26.5 parent: 2 type: Transform - - uid: 14810 + - uid: 4772 components: - - pos: -39.5,-72.5 + - pos: -3.5,25.5 parent: 2 type: Transform - - uid: 14811 + - uid: 4773 components: - - pos: -39.5,-73.5 + - pos: -3.5,24.5 parent: 2 type: Transform - - uid: 14812 + - uid: 4774 components: - - pos: -39.5,-74.5 + - pos: -3.5,23.5 parent: 2 type: Transform - - uid: 14813 + - uid: 4775 components: - - pos: -39.5,-75.5 + - pos: -3.5,22.5 parent: 2 type: Transform - - uid: 14814 + - uid: 4776 components: - - pos: -39.5,-76.5 + - pos: -3.5,21.5 parent: 2 type: Transform - - uid: 14815 + - uid: 4777 components: - - pos: -39.5,-77.5 + - pos: -3.5,20.5 parent: 2 type: Transform - - uid: 14816 + - uid: 4778 components: - - pos: -39.5,-78.5 + - pos: -3.5,19.5 parent: 2 type: Transform - - uid: 14817 + - uid: 4779 components: - - pos: -39.5,-79.5 + - pos: -1.5,19.5 parent: 2 type: Transform - - uid: 14818 + - uid: 4780 components: - - pos: -39.5,-80.5 + - pos: -0.5,19.5 parent: 2 type: Transform - - uid: 14819 + - uid: 4781 components: - - pos: -38.5,-80.5 + - pos: -0.5,20.5 parent: 2 type: Transform - - uid: 14820 + - uid: 4782 components: - - pos: -37.5,-80.5 + - pos: -0.5,21.5 parent: 2 type: Transform - - uid: 14821 + - uid: 4783 components: - - pos: -37.5,-81.5 + - pos: 16.5,-21.5 parent: 2 type: Transform - - uid: 14822 + - uid: 4784 components: - - pos: -37.5,-82.5 + - pos: 16.5,-22.5 parent: 2 type: Transform - - uid: 14823 + - uid: 4785 components: - - pos: -37.5,-83.5 + - pos: -25.5,14.5 parent: 2 type: Transform - - uid: 14824 + - uid: 4786 components: - - pos: -37.5,-84.5 + - pos: -25.5,13.5 parent: 2 type: Transform - - uid: 14825 + - uid: 4787 components: - - pos: -37.5,-85.5 + - pos: -25.5,12.5 parent: 2 type: Transform - - uid: 14826 + - uid: 4788 components: - - pos: -37.5,-86.5 + - pos: -25.5,11.5 parent: 2 type: Transform - - uid: 14827 + - uid: 4789 components: - - pos: -36.5,-86.5 + - pos: -25.5,10.5 parent: 2 type: Transform - - uid: 14828 + - uid: 4790 components: - - pos: -35.5,-86.5 + - pos: -26.5,10.5 parent: 2 type: Transform - - uid: 14829 + - uid: 4791 components: - - pos: -34.5,-86.5 + - pos: -7.5,-25.5 parent: 2 type: Transform - - uid: 14830 + - uid: 4792 components: - - pos: -33.5,-86.5 + - pos: -62.5,-10.5 parent: 2 type: Transform - - uid: 14831 + - uid: 4793 components: - - pos: -32.5,-86.5 + - pos: -63.5,-9.5 parent: 2 type: Transform - - uid: 14832 + - uid: 4794 components: - - pos: -31.5,-86.5 + - pos: -63.5,-8.5 parent: 2 type: Transform - - uid: 14833 + - uid: 4795 components: - - pos: -30.5,-86.5 + - pos: 2.5,-72.5 parent: 2 type: Transform - - uid: 14834 + - uid: 4796 components: - - pos: -29.5,-86.5 + - pos: -36.5,-82.5 parent: 2 type: Transform - - uid: 14835 + - uid: 4797 components: - - pos: -28.5,-86.5 + - pos: -36.5,-71.5 parent: 2 type: Transform - - uid: 14836 + - uid: 4798 components: - - pos: -27.5,-86.5 + - pos: 16.5,-23.5 parent: 2 type: Transform - - uid: 14837 + - uid: 4799 components: - - pos: -26.5,-86.5 + - pos: 20.5,-22.5 parent: 2 type: Transform - - uid: 14838 + - uid: 4800 components: - - pos: -25.5,-86.5 + - pos: 13.5,19.5 parent: 2 type: Transform - - uid: 14839 + - uid: 4801 components: - - pos: -24.5,-86.5 + - pos: -9.5,39.5 parent: 2 type: Transform - - uid: 14840 + - uid: 4802 components: - - pos: -23.5,-86.5 + - pos: -7.5,-87.5 parent: 2 type: Transform - - uid: 14841 + - uid: 4803 components: - - pos: -23.5,-87.5 + - pos: -67.5,-9.5 parent: 2 type: Transform - - uid: 14842 + - uid: 4804 components: - - pos: -23.5,-88.5 + - pos: -33.5,-8.5 parent: 2 type: Transform - - uid: 14843 + - uid: 4805 components: - - pos: -23.5,-89.5 + - pos: -67.5,-7.5 parent: 2 type: Transform - - uid: 14844 + - uid: 4806 components: - - pos: -22.5,-89.5 + - pos: -67.5,-8.5 parent: 2 type: Transform - - uid: 14845 + - uid: 4807 components: - - pos: -21.5,-89.5 + - pos: -5.5,38.5 parent: 2 type: Transform - - uid: 14846 + - uid: 4808 components: - - pos: -20.5,-89.5 + - pos: -60.5,-3.5 parent: 2 type: Transform - - uid: 14847 + - uid: 4809 components: - - pos: -19.5,-89.5 + - pos: -61.5,-3.5 parent: 2 type: Transform - - uid: 14848 + - uid: 4810 components: - - pos: -18.5,-89.5 + - pos: -61.5,-4.5 parent: 2 type: Transform - - uid: 14849 + - uid: 4811 components: - - pos: -17.5,-89.5 + - pos: -62.5,-4.5 parent: 2 type: Transform - - uid: 14850 + - uid: 4812 components: - - pos: -16.5,-89.5 + - pos: -7.5,39.5 parent: 2 type: Transform - - uid: 14851 + - uid: 4813 components: - - pos: -15.5,-89.5 + - pos: -63.5,-5.5 parent: 2 type: Transform - - uid: 14852 + - uid: 4814 components: - - pos: -14.5,-89.5 + - pos: -16.5,-71.5 parent: 2 type: Transform - - uid: 14853 + - uid: 4815 components: - - pos: -13.5,-89.5 + - pos: -16.5,-70.5 parent: 2 type: Transform - - uid: 14854 + - uid: 4816 components: - - pos: -12.5,-89.5 + - pos: -16.5,-69.5 parent: 2 type: Transform - - uid: 14855 + - uid: 4817 components: - - pos: -11.5,-89.5 + - pos: -16.5,-68.5 parent: 2 type: Transform - - uid: 14856 + - uid: 4818 components: - - pos: -10.5,-89.5 + - pos: -16.5,-67.5 parent: 2 type: Transform - - uid: 14857 + - uid: 4819 components: - - pos: -9.5,-89.5 + - pos: -16.5,-66.5 parent: 2 type: Transform - - uid: 14858 + - uid: 4820 components: - - pos: -8.5,-89.5 + - pos: -16.5,-65.5 parent: 2 type: Transform - - uid: 14859 + - uid: 4821 components: - - pos: -8.5,-88.5 + - pos: -16.5,-64.5 parent: 2 type: Transform - - uid: 14860 + - uid: 4822 components: - - pos: -8.5,-87.5 + - pos: -17.5,-64.5 parent: 2 type: Transform - - uid: 14861 + - uid: 4823 components: - - pos: -6.5,-87.5 + - pos: -18.5,-64.5 parent: 2 type: Transform - - uid: 14862 + - uid: 4824 components: - - pos: -5.5,-87.5 + - pos: -19.5,-64.5 parent: 2 type: Transform - - uid: 14863 + - uid: 4825 components: - - pos: -4.5,-87.5 + - pos: -20.5,-64.5 parent: 2 type: Transform - - uid: 14864 + - uid: 4826 components: - - pos: -3.5,-87.5 + - pos: -21.5,-64.5 parent: 2 type: Transform - - uid: 14865 + - uid: 4827 components: - - pos: -2.5,-87.5 + - pos: -22.5,-64.5 parent: 2 type: Transform - - uid: 14866 + - uid: 4828 components: - - pos: -1.5,-87.5 + - pos: -22.5,-65.5 parent: 2 type: Transform - - uid: 14867 + - uid: 4829 components: - - pos: 3.5,-85.5 + - pos: -23.5,-65.5 parent: 2 type: Transform - - uid: 14868 + - uid: 4830 components: - - pos: -1.5,-86.5 + - pos: -24.5,-65.5 parent: 2 type: Transform - - uid: 14869 + - uid: 4831 components: - - pos: -0.5,-86.5 + - pos: -25.5,-65.5 parent: 2 type: Transform - - uid: 14870 + - uid: 4832 components: - - pos: 0.5,-86.5 + - pos: -26.5,-65.5 parent: 2 type: Transform - - uid: 14871 + - uid: 4833 components: - - pos: 1.5,-86.5 + - pos: -26.5,-66.5 parent: 2 type: Transform - - uid: 14872 + - uid: 4834 components: - - pos: 2.5,-86.5 + - pos: -27.5,-66.5 parent: 2 type: Transform - - uid: 14873 + - uid: 4835 components: - - pos: 3.5,-86.5 + - pos: -28.5,-66.5 parent: 2 type: Transform - - uid: 14874 + - uid: 4836 components: - - pos: 3.5,-84.5 + - pos: -29.5,-66.5 parent: 2 type: Transform - - uid: 14875 + - uid: 4837 components: - - pos: 3.5,-83.5 + - pos: -30.5,-66.5 parent: 2 type: Transform - - uid: 14876 + - uid: 4838 components: - - pos: 3.5,-82.5 + - pos: -31.5,-66.5 parent: 2 type: Transform - - uid: 14877 + - uid: 4839 components: - - pos: 3.5,-81.5 + - pos: -32.5,-66.5 parent: 2 type: Transform - - uid: 14878 + - uid: 4840 components: - - pos: 3.5,-80.5 + - pos: -33.5,-66.5 parent: 2 type: Transform - - uid: 14879 + - uid: 4841 components: - - pos: 4.5,-80.5 + - pos: -33.5,-67.5 parent: 2 type: Transform - - uid: 14880 + - uid: 4842 components: - - pos: 5.5,-80.5 + - pos: -34.5,-67.5 parent: 2 type: Transform - - uid: 14882 + - uid: 4843 components: - - pos: -8.5,-64.5 + - pos: -35.5,-67.5 parent: 2 type: Transform - - uid: 14883 + - uid: 4844 components: - - pos: -4.5,-64.5 + - pos: -35.5,-66.5 parent: 2 type: Transform - - uid: 14884 + - uid: 4845 components: - - pos: 5.5,-79.5 + - pos: -36.5,-66.5 parent: 2 type: Transform - - uid: 14885 + - uid: 4846 components: - - pos: 5.5,-78.5 + - pos: -37.5,-66.5 parent: 2 type: Transform - - uid: 14886 + - uid: 4847 components: - - pos: 5.5,-77.5 + - pos: -37.5,-67.5 parent: 2 type: Transform - - uid: 14887 + - uid: 4848 components: - - pos: 5.5,-76.5 + - pos: -37.5,-68.5 parent: 2 type: Transform - - uid: 14888 + - uid: 4849 components: - - pos: 5.5,-75.5 + - pos: -37.5,-69.5 parent: 2 type: Transform - - uid: 14889 + - uid: 4850 components: - - pos: 5.5,-74.5 + - pos: -37.5,-70.5 parent: 2 type: Transform - - uid: 14890 + - uid: 4851 components: - - pos: 5.5,-73.5 + - pos: -37.5,-71.5 parent: 2 type: Transform - - uid: 14891 + - uid: 4852 components: - - pos: 5.5,-72.5 + - pos: -37.5,-72.5 parent: 2 type: Transform - - uid: 14892 + - uid: 4853 components: - - pos: 4.5,-72.5 + - pos: -38.5,-72.5 parent: 2 type: Transform - - uid: 14893 + - uid: 4854 components: - - pos: 3.5,-72.5 + - pos: -39.5,-72.5 parent: 2 type: Transform - - uid: 14894 + - uid: 4855 components: - - pos: -5.5,-64.5 + - pos: -39.5,-73.5 parent: 2 type: Transform - - uid: 14895 + - uid: 4856 components: - - pos: 3.5,-71.5 + - pos: -39.5,-74.5 parent: 2 type: Transform - - uid: 14896 + - uid: 4857 components: - - pos: 3.5,-70.5 + - pos: -39.5,-75.5 parent: 2 type: Transform - - uid: 14897 + - uid: 4858 components: - - pos: 3.5,-69.5 + - pos: -39.5,-76.5 parent: 2 type: Transform - - uid: 14898 + - uid: 4859 components: - - pos: 3.5,-68.5 + - pos: -39.5,-77.5 parent: 2 type: Transform - - uid: 14899 + - uid: 4860 components: - - pos: 3.5,-67.5 + - pos: -39.5,-78.5 parent: 2 type: Transform - - uid: 14900 + - uid: 4861 components: - - pos: 3.5,-66.5 + - pos: -39.5,-79.5 parent: 2 type: Transform - - uid: 14901 + - uid: 4862 components: - - pos: 2.5,-66.5 + - pos: -39.5,-80.5 parent: 2 type: Transform - - uid: 14902 + - uid: 4863 components: - - pos: 1.5,-66.5 + - pos: -38.5,-80.5 parent: 2 type: Transform - - uid: 14903 + - uid: 4864 components: - - pos: 0.5,-66.5 + - pos: -37.5,-80.5 parent: 2 type: Transform - - uid: 14904 + - uid: 4865 components: - - pos: -0.5,-66.5 + - pos: -37.5,-81.5 parent: 2 type: Transform - - uid: 14905 + - uid: 4866 components: - - pos: -0.5,-65.5 + - pos: -37.5,-82.5 parent: 2 type: Transform - - uid: 14906 + - uid: 4867 components: - - pos: -1.5,-65.5 + - pos: -37.5,-83.5 parent: 2 type: Transform - - uid: 14907 + - uid: 4868 components: - - pos: -2.5,-65.5 + - pos: -37.5,-84.5 parent: 2 type: Transform - - uid: 14908 + - uid: 4869 components: - - pos: -3.5,-65.5 + - pos: -37.5,-85.5 parent: 2 type: Transform - - uid: 14909 + - uid: 4870 components: - - pos: -4.5,-65.5 + - pos: -37.5,-86.5 parent: 2 type: Transform - - uid: 14910 + - uid: 4871 components: - - pos: -6.5,-64.5 + - pos: -36.5,-86.5 parent: 2 type: Transform - - uid: 14911 + - uid: 4872 components: - - pos: -7.5,-64.5 + - pos: -35.5,-86.5 parent: 2 type: Transform - - uid: 14912 + - uid: 4873 components: - - pos: -9.5,-64.5 + - pos: -34.5,-86.5 parent: 2 type: Transform - - uid: 14913 + - uid: 4874 components: - - pos: -10.5,-64.5 + - pos: -33.5,-86.5 parent: 2 type: Transform - - uid: 14914 + - uid: 4875 components: - - pos: -11.5,-64.5 + - pos: -32.5,-86.5 parent: 2 type: Transform - - uid: 14915 + - uid: 4876 components: - - pos: -12.5,-64.5 + - pos: -31.5,-86.5 parent: 2 type: Transform - - uid: 14916 + - uid: 4877 components: - - pos: -13.5,-64.5 + - pos: -30.5,-86.5 parent: 2 type: Transform - - uid: 14917 + - uid: 4878 components: - - pos: -14.5,-64.5 + - pos: -29.5,-86.5 parent: 2 type: Transform - - uid: 14918 + - uid: 4879 components: - - pos: -15.5,-64.5 + - pos: -28.5,-86.5 parent: 2 type: Transform - - uid: 15341 + - uid: 4880 components: - - pos: -31.5,15.5 + - pos: -27.5,-86.5 parent: 2 type: Transform - - uid: 15498 + - uid: 4881 components: - - pos: 13.5,23.5 + - pos: -26.5,-86.5 parent: 2 type: Transform - - uid: 15688 + - uid: 4882 components: - - pos: -64.5,-9.5 + - pos: -25.5,-86.5 parent: 2 type: Transform - - uid: 15911 + - uid: 4883 components: - - pos: 2.5,-13.5 + - pos: -24.5,-86.5 parent: 2 type: Transform - - uid: 16006 + - uid: 4884 components: - - pos: 2.5,-82.5 + - pos: -23.5,-86.5 parent: 2 type: Transform - - uid: 16085 + - uid: 4885 components: - - pos: -9.5,-87.5 + - pos: -23.5,-87.5 parent: 2 type: Transform - - uid: 16089 + - uid: 4886 components: - - pos: -21.5,-88.5 + - pos: -23.5,-88.5 parent: 2 type: Transform - - uid: 16106 + - uid: 4887 components: - - pos: -12.5,39.5 + - pos: -23.5,-89.5 parent: 2 type: Transform - - uid: 16197 + - uid: 4888 components: - - pos: 6.5,-8.5 + - pos: -22.5,-89.5 parent: 2 type: Transform - - uid: 16200 + - uid: 4889 components: - - pos: 6.5,-10.5 + - pos: -21.5,-89.5 parent: 2 type: Transform - - uid: 16329 + - uid: 4890 components: - - pos: 0.5,-41.5 + - pos: -20.5,-89.5 parent: 2 type: Transform - - uid: 16375 + - uid: 4891 components: - - pos: 1.5,-41.5 + - pos: -19.5,-89.5 parent: 2 type: Transform - - uid: 17084 + - uid: 4892 components: - - pos: 2.5,-41.5 + - pos: -18.5,-89.5 parent: 2 type: Transform - - uid: 17085 + - uid: 4893 components: - - pos: 2.5,-40.5 + - pos: -17.5,-89.5 parent: 2 type: Transform - - uid: 17086 + - uid: 4894 components: - - pos: 2.5,-39.5 + - pos: -16.5,-89.5 parent: 2 type: Transform - - uid: 17087 + - uid: 4895 components: - - pos: 2.5,-38.5 + - pos: -15.5,-89.5 parent: 2 type: Transform - - uid: 17088 + - uid: 4896 components: - - pos: 3.5,-38.5 + - pos: -14.5,-89.5 parent: 2 type: Transform - - uid: 17089 + - uid: 4897 components: - - pos: 4.5,-38.5 + - pos: -13.5,-89.5 parent: 2 type: Transform - - uid: 17090 + - uid: 4898 components: - - pos: 5.5,-38.5 + - pos: -12.5,-89.5 parent: 2 type: Transform - - uid: 17091 + - uid: 4899 components: - - pos: 6.5,-38.5 + - pos: -11.5,-89.5 parent: 2 type: Transform - - uid: 17092 + - uid: 4900 components: - - pos: 7.5,-38.5 + - pos: -10.5,-89.5 parent: 2 type: Transform - - uid: 17093 + - uid: 4901 components: - - pos: 7.5,-39.5 + - pos: -9.5,-89.5 parent: 2 type: Transform - - uid: 17094 + - uid: 4902 components: - - pos: 7.5,-40.5 + - pos: -8.5,-89.5 parent: 2 type: Transform - - uid: 17205 + - uid: 4903 components: - - pos: 6.5,-7.5 + - pos: -8.5,-88.5 parent: 2 type: Transform - - uid: 17206 + - uid: 4904 components: - - pos: 6.5,-6.5 + - pos: -8.5,-87.5 parent: 2 type: Transform - - uid: 17207 + - uid: 4905 components: - - pos: 6.5,-5.5 + - pos: -6.5,-87.5 parent: 2 type: Transform - - uid: 17208 + - uid: 4906 components: - - pos: 7.5,-5.5 + - pos: -5.5,-87.5 parent: 2 type: Transform - - uid: 17209 + - uid: 4907 components: - - pos: 8.5,-5.5 + - pos: -4.5,-87.5 parent: 2 type: Transform -- proto: CableMVStack - entities: - - uid: 2733 + - uid: 4908 components: - - pos: -18.641283,-34.260426 + - pos: -3.5,-87.5 parent: 2 type: Transform - - uid: 16729 + - uid: 4909 components: - - pos: -11.407126,-24.44871 + - pos: -2.5,-87.5 parent: 2 type: Transform -- proto: CableMVStack1 - entities: - - uid: 6629 + - uid: 4910 components: - - rot: 3.141592653589793 rad - pos: -38.319168,-39.269604 + - pos: -1.5,-87.5 parent: 2 type: Transform - - uid: 6631 + - uid: 4911 components: - - rot: -1.5707963267948966 rad - pos: -39.461956,-41.789135 + - pos: 3.5,-85.5 parent: 2 type: Transform - - uid: 6640 + - uid: 4912 components: - - rot: 1.5707963267948966 rad - pos: -36.268005,-38.3614 + - pos: -1.5,-86.5 parent: 2 type: Transform - - uid: 6641 + - uid: 4913 components: - - pos: -33.513584,-42.462963 + - pos: -0.5,-86.5 parent: 2 type: Transform - - uid: 6642 + - uid: 4914 components: - - rot: -1.5707963267948966 rad - pos: -30.40754,-37.365307 + - pos: 0.5,-86.5 parent: 2 type: Transform - - uid: 6643 + - uid: 4915 components: - - rot: 3.141592653589793 rad - pos: -27.594513,-35.63679 + - pos: 1.5,-86.5 parent: 2 type: Transform -- proto: CableTerminal - entities: - - uid: 851 + - uid: 4916 components: - - rot: 3.141592653589793 rad - pos: 45.5,11.5 + - pos: 2.5,-86.5 parent: 2 type: Transform - - uid: 1375 + - uid: 4917 components: - - rot: 3.141592653589793 rad - pos: -3.5,-25.5 + - pos: 3.5,-86.5 parent: 2 type: Transform - - uid: 1377 + - uid: 4918 components: - - rot: 3.141592653589793 rad - pos: -2.5,-25.5 + - pos: 3.5,-84.5 parent: 2 type: Transform - - uid: 2613 + - uid: 4919 components: - - pos: -20.5,-32.5 + - pos: 3.5,-83.5 parent: 2 type: Transform - - uid: 2615 + - uid: 4920 components: - - rot: 3.141592653589793 rad - pos: -20.5,-44.5 + - pos: 3.5,-82.5 parent: 2 type: Transform - - uid: 6313 + - uid: 4921 components: - - pos: -44.5,51.5 + - pos: 3.5,-81.5 parent: 2 type: Transform -- proto: CannabisSeeds - entities: - - uid: 3485 + - uid: 4922 components: - - pos: -52.073597,-6.269678 + - pos: 3.5,-80.5 parent: 2 type: Transform - - uid: 13693 + - uid: 4923 components: - - pos: -59.584892,-16.591707 + - pos: 4.5,-80.5 parent: 2 type: Transform -- proto: CapacitorStockPart - entities: - - uid: 6193 + - uid: 4924 components: - - pos: -11.667542,-24.240232 + - pos: 5.5,-80.5 parent: 2 type: Transform -- proto: CargoRequestComputerCircuitboard - entities: - - uid: 1451 + - uid: 4925 components: - - pos: -14.633717,-29.633926 + - pos: -8.5,-64.5 parent: 2 type: Transform -- proto: CargoTelepadMachineCircuitboard - entities: - - uid: 1397 + - uid: 4926 components: - - pos: -14.289967,-29.37333 + - pos: -4.5,-64.5 parent: 2 type: Transform -- proto: Carpet - entities: - - uid: 3051 + - uid: 4927 components: - - pos: -52.5,0.5 + - pos: 5.5,-79.5 parent: 2 type: Transform - - uid: 3079 + - uid: 4928 components: - - pos: -52.5,-0.5 + - pos: 5.5,-78.5 parent: 2 type: Transform - - uid: 5740 + - uid: 4929 components: - - pos: -21.5,40.5 + - pos: 5.5,-77.5 parent: 2 type: Transform - - uid: 5741 + - uid: 4930 components: - - pos: -21.5,41.5 + - pos: 5.5,-76.5 parent: 2 type: Transform - - uid: 5742 + - uid: 4931 components: - - pos: -20.5,40.5 + - pos: 5.5,-75.5 parent: 2 type: Transform - - uid: 5743 + - uid: 4932 components: - - pos: -20.5,41.5 + - pos: 5.5,-74.5 parent: 2 type: Transform - - uid: 10910 + - uid: 4933 components: - - rot: 1.5707963267948966 rad - pos: -49.5,-0.5 + - pos: 5.5,-73.5 parent: 2 type: Transform - - uid: 10911 + - uid: 4934 components: - - rot: 1.5707963267948966 rad - pos: -49.5,0.5 + - pos: 5.5,-72.5 parent: 2 type: Transform - - uid: 10912 + - uid: 4935 components: - - rot: 1.5707963267948966 rad - pos: -49.5,1.5 + - pos: 4.5,-72.5 parent: 2 type: Transform - - uid: 10913 + - uid: 4936 components: - - rot: 1.5707963267948966 rad - pos: -50.5,-0.5 + - pos: 3.5,-72.5 parent: 2 type: Transform - - uid: 10914 + - uid: 4937 components: - - rot: 1.5707963267948966 rad - pos: -50.5,0.5 + - pos: -5.5,-64.5 parent: 2 type: Transform - - uid: 10915 + - uid: 4938 components: - - rot: 1.5707963267948966 rad - pos: -50.5,1.5 + - pos: 3.5,-71.5 parent: 2 type: Transform - - uid: 11878 + - uid: 4939 components: - - pos: -51.5,0.5 + - pos: 3.5,-70.5 parent: 2 type: Transform - - uid: 11879 + - uid: 4940 components: - - pos: -51.5,-0.5 + - pos: 3.5,-69.5 parent: 2 type: Transform - - uid: 15751 + - uid: 4941 components: - - pos: -52.5,1.5 + - pos: 3.5,-68.5 parent: 2 type: Transform - - uid: 15753 + - uid: 4942 components: - - pos: -51.5,1.5 + - pos: 3.5,-67.5 parent: 2 type: Transform - - uid: 15763 + - uid: 4943 components: - - pos: -53.5,1.5 + - pos: 3.5,-66.5 parent: 2 type: Transform - - uid: 15765 + - uid: 4944 components: - - pos: -53.5,0.5 + - pos: 2.5,-66.5 parent: 2 type: Transform - - uid: 15766 + - uid: 4945 components: - - pos: -53.5,-0.5 + - pos: 1.5,-66.5 parent: 2 type: Transform -- proto: CarpetBlack - entities: - - uid: 6 + - uid: 4946 components: - - pos: -10.5,-9.5 + - pos: 0.5,-66.5 parent: 2 type: Transform - - uid: 167 + - uid: 4947 components: - - pos: -10.5,-10.5 + - pos: -0.5,-66.5 parent: 2 type: Transform - - uid: 1215 + - uid: 4948 components: - - pos: -19.5,22.5 + - pos: -0.5,-65.5 parent: 2 type: Transform - - uid: 1216 + - uid: 4949 components: - - pos: -19.5,21.5 + - pos: -1.5,-65.5 parent: 2 type: Transform - - uid: 1217 + - uid: 4950 components: - - pos: -19.5,20.5 + - pos: -2.5,-65.5 parent: 2 type: Transform - - uid: 5727 + - uid: 4951 components: - - pos: -24.5,44.5 + - pos: -3.5,-65.5 parent: 2 type: Transform - - uid: 5728 + - uid: 4952 components: - - pos: -24.5,43.5 + - pos: -4.5,-65.5 parent: 2 type: Transform - - uid: 5729 + - uid: 4953 components: - - pos: -24.5,42.5 + - pos: -6.5,-64.5 parent: 2 type: Transform - - uid: 5730 + - uid: 4954 components: - - pos: -23.5,44.5 + - pos: -7.5,-64.5 parent: 2 type: Transform - - uid: 5731 + - uid: 4955 components: - - pos: -23.5,43.5 + - pos: -9.5,-64.5 parent: 2 type: Transform - - uid: 5732 + - uid: 4956 components: - - pos: -23.5,42.5 + - pos: -10.5,-64.5 parent: 2 type: Transform - - uid: 5733 + - uid: 4957 components: - - pos: -22.5,44.5 + - pos: -11.5,-64.5 parent: 2 type: Transform - - uid: 5734 + - uid: 4958 components: - - pos: -22.5,43.5 + - pos: -12.5,-64.5 parent: 2 type: Transform - - uid: 5735 + - uid: 4959 components: - - pos: -22.5,42.5 + - pos: -13.5,-64.5 parent: 2 type: Transform - - uid: 5806 + - uid: 4960 components: - - rot: 3.141592653589793 rad - pos: -30.5,31.5 + - pos: -14.5,-64.5 parent: 2 type: Transform - - uid: 5811 + - uid: 4961 components: - - rot: 3.141592653589793 rad - pos: -29.5,32.5 + - pos: -15.5,-64.5 parent: 2 type: Transform - - uid: 5821 + - uid: 4962 components: - - rot: 3.141592653589793 rad - pos: -29.5,31.5 + - pos: -31.5,15.5 parent: 2 type: Transform - - uid: 5824 + - uid: 4963 components: - - rot: 3.141592653589793 rad - pos: -28.5,31.5 + - pos: 13.5,23.5 parent: 2 type: Transform - - uid: 14299 + - uid: 4964 components: - - pos: -35.5,33.5 + - pos: -64.5,-9.5 parent: 2 type: Transform - - uid: 14343 + - uid: 4965 components: - - pos: -34.5,33.5 + - pos: 2.5,-13.5 parent: 2 type: Transform - - uid: 14346 + - uid: 4966 components: - - pos: -34.5,34.5 + - pos: 2.5,-82.5 parent: 2 type: Transform - - uid: 14347 + - uid: 4967 components: - - pos: -35.5,34.5 + - pos: -9.5,-87.5 parent: 2 type: Transform - - uid: 16010 + - uid: 4968 components: - - pos: -33.5,-13.5 + - pos: -21.5,-88.5 parent: 2 type: Transform - - uid: 16054 + - uid: 4969 components: - - pos: -30.5,-12.5 + - pos: -12.5,39.5 parent: 2 type: Transform - - uid: 16064 + - uid: 4970 components: - - pos: -32.5,-12.5 + - pos: 6.5,-8.5 parent: 2 type: Transform - - uid: 16065 + - uid: 4971 components: - - pos: -32.5,-13.5 + - pos: 6.5,-10.5 parent: 2 type: Transform - - uid: 16083 + - uid: 4972 components: - - pos: -31.5,-12.5 + - pos: 2.5,-38.5 parent: 2 type: Transform - - uid: 16128 + - uid: 4973 components: - - pos: -30.5,-13.5 + - pos: 3.5,-38.5 parent: 2 type: Transform - - uid: 16129 + - uid: 4974 components: - - pos: -31.5,-13.5 + - pos: 4.5,-38.5 parent: 2 type: Transform -- proto: CarpetBlue - entities: - - uid: 1730 + - uid: 4975 components: - - pos: -31.5,10.5 + - pos: 5.5,-38.5 parent: 2 type: Transform - - uid: 4303 + - uid: 4976 components: - - pos: -31.5,9.5 + - pos: 6.5,-38.5 parent: 2 type: Transform - - uid: 5736 + - uid: 4977 components: - - pos: -26.5,41.5 + - pos: 7.5,-38.5 parent: 2 type: Transform - - uid: 5737 + - uid: 4978 components: - - pos: -26.5,40.5 + - pos: 7.5,-39.5 parent: 2 type: Transform - - uid: 5738 + - uid: 4979 components: - - pos: -25.5,40.5 + - pos: 7.5,-40.5 parent: 2 type: Transform - - uid: 5739 + - uid: 4980 components: - - pos: -25.5,41.5 + - pos: 6.5,-7.5 parent: 2 type: Transform -- proto: CarpetChapel - entities: - - uid: 5200 + - uid: 4981 components: - - rot: 3.141592653589793 rad - pos: -31.5,27.5 + - pos: 6.5,-6.5 parent: 2 type: Transform - - uid: 5234 + - uid: 4982 components: - - rot: -1.5707963267948966 rad - pos: -27.5,27.5 + - pos: 6.5,-5.5 parent: 2 type: Transform - - uid: 5777 + - uid: 4983 components: - - pos: -31.5,38.5 + - pos: 7.5,-5.5 parent: 2 type: Transform - - uid: 5801 + - uid: 4984 components: - - rot: -1.5707963267948966 rad - pos: -32.5,30.5 + - pos: 8.5,-5.5 parent: 2 type: Transform - - uid: 5813 + - uid: 4985 components: - - rot: 1.5707963267948966 rad - pos: -26.5,26.5 + - pos: 0.5,-37.5 parent: 2 type: Transform - - uid: 5820 + - uid: 4986 components: - - pos: -32.5,29.5 + - pos: -5.5,-38.5 parent: 2 type: Transform - - uid: 5828 + - uid: 4987 components: - - rot: 3.141592653589793 rad - pos: -31.5,30.5 + - pos: -4.5,-37.5 parent: 2 type: Transform - - uid: 5829 + - uid: 4988 components: - - pos: -27.5,26.5 + - pos: 1.5,-38.5 parent: 2 type: Transform - - uid: 5830 + - uid: 4989 components: - - rot: 3.141592653589793 rad - pos: -26.5,30.5 + - pos: -0.5,-37.5 parent: 2 type: Transform - - uid: 5831 + - uid: 4990 components: - - rot: 1.5707963267948966 rad - pos: -31.5,26.5 + - pos: -1.5,-37.5 parent: 2 type: Transform - - uid: 5832 + - uid: 4991 components: - - pos: -27.5,29.5 + - pos: -2.5,-37.5 parent: 2 type: Transform - - uid: 5833 + - uid: 4992 components: - - rot: -1.5707963267948966 rad - pos: -27.5,30.5 + - pos: -3.5,-37.5 parent: 2 type: Transform - - uid: 5834 + - uid: 4993 components: - - rot: 1.5707963267948966 rad - pos: -26.5,29.5 + - pos: 1.5,-37.5 parent: 2 type: Transform - - uid: 5836 + - uid: 4994 components: - - rot: 1.5707963267948966 rad - pos: -31.5,29.5 + - pos: -4.5,-38.5 parent: 2 type: Transform - - uid: 5846 + - uid: 4995 components: - - rot: 3.141592653589793 rad - pos: -26.5,27.5 + - pos: -6.5,-38.5 parent: 2 type: Transform - - uid: 7424 +- proto: CableMVStack + entities: + - uid: 4996 components: - - rot: -1.5707963267948966 rad - pos: -31.5,36.5 + - pos: -18.641283,-34.260426 parent: 2 type: Transform - - uid: 8069 + - uid: 4997 components: - - rot: 3.141592653589793 rad - pos: -33.5,36.5 + - pos: -11.407126,-24.44871 parent: 2 type: Transform - - uid: 13422 +- proto: CableMVStack1 + entities: + - uid: 4998 components: - - pos: -32.5,26.5 + - rot: 3.141592653589793 rad + pos: -38.319168,-39.269604 parent: 2 type: Transform - - uid: 13423 + - uid: 4999 components: - rot: -1.5707963267948966 rad - pos: -32.5,27.5 + pos: -39.461956,-41.789135 parent: 2 type: Transform -- proto: CarpetPink - entities: - - uid: 8819 + - uid: 5000 components: - - rot: 3.141592653589793 rad - pos: -47.5,26.5 + - rot: 1.5707963267948966 rad + pos: -36.268005,-38.3614 parent: 2 type: Transform - - uid: 8820 + - uid: 5001 components: - - rot: 3.141592653589793 rad - pos: -47.5,27.5 + - pos: -33.513584,-42.462963 parent: 2 type: Transform - - uid: 8821 + - uid: 5002 components: - - rot: 3.141592653589793 rad - pos: -48.5,28.5 + - rot: -1.5707963267948966 rad + pos: -30.40754,-37.365307 parent: 2 type: Transform - - uid: 8822 + - uid: 5003 components: - rot: 3.141592653589793 rad - pos: -49.5,28.5 + pos: -27.594513,-35.63679 parent: 2 type: Transform - - uid: 8823 +- proto: CableTerminal + entities: + - uid: 5004 components: - rot: 3.141592653589793 rad - pos: -50.5,27.5 + pos: 45.5,11.5 parent: 2 type: Transform - - uid: 8824 + - uid: 5005 components: - rot: 3.141592653589793 rad - pos: -50.5,26.5 + pos: -3.5,-25.5 parent: 2 type: Transform - - uid: 8825 + - uid: 5006 components: - rot: 3.141592653589793 rad - pos: -49.5,25.5 + pos: -2.5,-25.5 parent: 2 type: Transform - - uid: 8826 + - uid: 5007 components: - - rot: 3.141592653589793 rad - pos: -48.5,25.5 + - pos: -20.5,-32.5 parent: 2 type: Transform -- proto: CarpetPurple - entities: - - uid: 5793 + - uid: 5008 components: - - pos: -28.5,28.5 + - rot: 3.141592653589793 rad + pos: -20.5,-44.5 parent: 2 type: Transform - - uid: 5797 + - uid: 5009 components: - - rot: -1.5707963267948966 rad - pos: -30.5,27.5 + - pos: -44.5,51.5 parent: 2 type: Transform - - uid: 5798 +- proto: CannabisSeeds + entities: + - uid: 5010 components: - - rot: -1.5707963267948966 rad - pos: -28.5,27.5 - parent: 2 - type: Transform - - uid: 5802 - components: - - pos: -29.5,27.5 + - pos: -52.073597,-6.269678 parent: 2 type: Transform - - uid: 5805 + - uid: 5011 components: - - pos: -29.5,28.5 + - pos: -59.584892,-16.591707 parent: 2 type: Transform - - uid: 5807 +- proto: CapacitorStockPart + entities: + - uid: 5012 components: - - pos: -30.5,28.5 + - pos: -11.667542,-24.240232 parent: 2 type: Transform - - uid: 5809 +- proto: CarbonDioxideCanister + entities: + - uid: 5013 components: - - pos: -28.5,26.5 + - pos: 7.5,-47.5 parent: 2 type: Transform - - uid: 5814 + - uid: 5014 components: - - pos: -29.5,26.5 + - pos: 0.5,-35.5 parent: 2 type: Transform - - uid: 5815 +- proto: CargoRequestComputerCircuitboard + entities: + - uid: 5015 components: - - pos: -30.5,26.5 + - pos: -14.633717,-29.633926 parent: 2 type: Transform -- proto: CarpetSBlue +- proto: CargoTelepadMachineCircuitboard entities: - - uid: 1710 + - uid: 5016 components: - - pos: 8.5,21.5 + - pos: -14.289967,-29.37333 parent: 2 type: Transform - - uid: 4530 +- proto: Carpet + entities: + - uid: 5017 components: - - pos: 8.5,25.5 + - pos: -52.5,0.5 parent: 2 type: Transform - - uid: 4532 + - uid: 5018 components: - - pos: 8.5,26.5 + - pos: -52.5,-0.5 parent: 2 type: Transform - - uid: 4571 + - uid: 5019 components: - - pos: 7.5,25.5 + - pos: -21.5,40.5 parent: 2 type: Transform - - uid: 4572 + - uid: 5020 components: - - pos: 7.5,27.5 + - pos: -21.5,41.5 parent: 2 type: Transform - - uid: 4573 + - uid: 5021 components: - - pos: 8.5,27.5 + - pos: -20.5,40.5 parent: 2 type: Transform - - uid: 4574 + - uid: 5022 components: - - pos: 7.5,26.5 + - pos: -20.5,41.5 parent: 2 type: Transform - - uid: 12340 + - uid: 5023 components: - - pos: 8.5,22.5 + - rot: 1.5707963267948966 rad + pos: -49.5,-0.5 parent: 2 type: Transform - - uid: 12706 + - uid: 5024 components: - - pos: 31.5,15.5 + - rot: 1.5707963267948966 rad + pos: -49.5,0.5 parent: 2 type: Transform - - uid: 12707 + - uid: 5025 components: - - pos: 32.5,15.5 + - rot: 1.5707963267948966 rad + pos: -49.5,1.5 parent: 2 type: Transform -- proto: CarrotSeeds - entities: - - uid: 4275 + - uid: 5026 components: - - pos: 32.31128,-12.466648 + - rot: 1.5707963267948966 rad + pos: -50.5,-0.5 parent: 2 type: Transform -- proto: CartridgeRocket - entities: - - uid: 15342 + - uid: 5027 components: - - pos: -41.510567,1.3497348 + - rot: 1.5707963267948966 rad + pos: -50.5,0.5 parent: 2 type: Transform -- proto: Catwalk - entities: - - uid: 198 + - uid: 5028 components: - - pos: -27.5,-19.5 + - rot: 1.5707963267948966 rad + pos: -50.5,1.5 parent: 2 type: Transform - - uid: 232 + - uid: 5029 components: - - pos: -52.5,36.5 + - pos: -51.5,0.5 parent: 2 type: Transform - - uid: 239 + - uid: 5030 components: - - pos: -54.5,37.5 + - pos: -51.5,-0.5 parent: 2 type: Transform - - uid: 248 + - uid: 5031 components: - - pos: -54.5,36.5 + - pos: -52.5,1.5 parent: 2 type: Transform - - uid: 308 + - uid: 5032 components: - - rot: 3.141592653589793 rad - pos: -20.5,17.5 + - pos: -51.5,1.5 parent: 2 type: Transform - - uid: 447 + - uid: 5033 components: - - pos: 20.5,-19.5 + - pos: -53.5,1.5 parent: 2 type: Transform - - uid: 469 + - uid: 5034 components: - - pos: -21.5,17.5 + - pos: -53.5,0.5 parent: 2 type: Transform - - uid: 513 + - uid: 5035 components: - - pos: 2.5,-33.5 + - pos: -53.5,-0.5 parent: 2 type: Transform - - uid: 528 +- proto: CarpetBlack + entities: + - uid: 5036 components: - - pos: 18.5,20.5 + - pos: -10.5,-9.5 parent: 2 type: Transform - - uid: 666 + - uid: 5037 components: - - rot: 3.141592653589793 rad - pos: -20.5,16.5 + - pos: -10.5,-10.5 parent: 2 type: Transform - - uid: 667 + - uid: 5038 components: - - rot: 3.141592653589793 rad - pos: -19.5,17.5 + - pos: -19.5,22.5 parent: 2 type: Transform - - uid: 668 + - uid: 5039 components: - - rot: 3.141592653589793 rad - pos: -18.5,17.5 + - pos: -19.5,21.5 parent: 2 type: Transform - - uid: 669 + - uid: 5040 components: - - rot: 3.141592653589793 rad - pos: -17.5,16.5 + - pos: -19.5,20.5 parent: 2 type: Transform - - uid: 670 + - uid: 5041 components: - - rot: 3.141592653589793 rad - pos: -17.5,17.5 + - pos: -24.5,44.5 parent: 2 type: Transform - - uid: 671 + - uid: 5042 components: - - rot: 3.141592653589793 rad - pos: -16.5,17.5 + - pos: -24.5,43.5 parent: 2 type: Transform - - uid: 672 + - uid: 5043 components: - - rot: 3.141592653589793 rad - pos: -15.5,17.5 + - pos: -24.5,42.5 parent: 2 type: Transform - - uid: 673 + - uid: 5044 components: - - rot: 3.141592653589793 rad - pos: -14.5,17.5 + - pos: -23.5,44.5 parent: 2 type: Transform - - uid: 674 + - uid: 5045 components: - - rot: 3.141592653589793 rad - pos: -13.5,17.5 + - pos: -23.5,43.5 parent: 2 type: Transform - - uid: 676 + - uid: 5046 components: - - rot: 3.141592653589793 rad - pos: -17.5,14.5 + - pos: -23.5,42.5 parent: 2 type: Transform - - uid: 677 + - uid: 5047 components: - - rot: 3.141592653589793 rad - pos: -17.5,13.5 + - pos: -22.5,44.5 parent: 2 type: Transform - - uid: 735 + - uid: 5048 components: - - pos: 2.5,-22.5 + - pos: -22.5,43.5 parent: 2 type: Transform - - uid: 781 + - uid: 5049 components: - - pos: 2.5,-23.5 + - pos: -22.5,42.5 parent: 2 type: Transform - - uid: 899 + - uid: 5050 components: - - pos: -16.5,21.5 + - rot: 3.141592653589793 rad + pos: -30.5,31.5 parent: 2 type: Transform - - uid: 917 + - uid: 5051 components: - - pos: -17.5,18.5 + - rot: 3.141592653589793 rad + pos: -29.5,32.5 parent: 2 type: Transform - - uid: 1097 + - uid: 5052 components: - - pos: 18.5,19.5 + - rot: 3.141592653589793 rad + pos: -29.5,31.5 parent: 2 type: Transform - - uid: 1149 + - uid: 5053 components: - - pos: -17.5,21.5 + - rot: 3.141592653589793 rad + pos: -28.5,31.5 parent: 2 type: Transform - - uid: 1150 + - uid: 5054 components: - - pos: -17.5,20.5 + - pos: -35.5,33.5 parent: 2 type: Transform - - uid: 1151 + - uid: 5055 components: - - pos: -17.5,22.5 + - pos: -34.5,33.5 parent: 2 type: Transform - - uid: 1152 + - uid: 5056 components: - - pos: -17.5,19.5 + - pos: -34.5,34.5 parent: 2 type: Transform - - uid: 1214 + - uid: 5057 components: - - pos: 3.5,-33.5 + - pos: -35.5,34.5 parent: 2 type: Transform - - uid: 1262 + - uid: 5058 components: - - pos: -17.5,-48.5 + - pos: -33.5,-13.5 parent: 2 type: Transform - - uid: 1286 + - uid: 5059 components: - - pos: -0.5,-7.5 + - pos: -30.5,-12.5 parent: 2 type: Transform - - uid: 1352 + - uid: 5060 components: - - pos: 5.5,-26.5 + - pos: -32.5,-12.5 parent: 2 type: Transform - - uid: 1428 + - uid: 5061 components: - - pos: 1.5,-26.5 + - pos: -32.5,-13.5 parent: 2 type: Transform - - uid: 1429 + - uid: 5062 components: - - pos: 2.5,-26.5 + - pos: -31.5,-12.5 parent: 2 type: Transform - - uid: 1430 + - uid: 5063 components: - - pos: 3.5,-26.5 + - pos: -30.5,-13.5 parent: 2 type: Transform - - uid: 1431 + - uid: 5064 components: - - pos: 4.5,-26.5 + - pos: -31.5,-13.5 parent: 2 type: Transform - - uid: 1432 +- proto: CarpetBlue + entities: + - uid: 5065 components: - - pos: 1.5,-23.5 + - pos: -31.5,10.5 parent: 2 type: Transform - - uid: 1433 + - uid: 5066 components: - - pos: 0.5,-23.5 + - pos: -31.5,9.5 parent: 2 type: Transform - - uid: 1434 + - uid: 5067 components: - - pos: -0.5,-23.5 + - pos: -26.5,41.5 parent: 2 type: Transform - - uid: 1435 + - uid: 5068 components: - - pos: -1.5,-23.5 + - pos: -26.5,40.5 parent: 2 type: Transform - - uid: 1436 + - uid: 5069 components: - - pos: -2.5,-23.5 + - pos: -25.5,40.5 parent: 2 type: Transform - - uid: 1437 + - uid: 5070 components: - - pos: -3.5,-23.5 + - pos: -25.5,41.5 parent: 2 type: Transform - - uid: 1438 +- proto: CarpetChapel + entities: + - uid: 5071 components: - - pos: -4.5,-23.5 + - rot: 3.141592653589793 rad + pos: -31.5,27.5 parent: 2 type: Transform - - uid: 1529 + - uid: 5072 components: - - pos: 4.5,-33.5 + - rot: -1.5707963267948966 rad + pos: -27.5,27.5 parent: 2 type: Transform - - uid: 1540 + - uid: 5073 components: - - pos: 2.5,-32.5 + - pos: -31.5,38.5 parent: 2 type: Transform - - uid: 1692 + - uid: 5074 components: - - pos: 2.5,-31.5 + - rot: -1.5707963267948966 rad + pos: -32.5,30.5 parent: 2 type: Transform - - uid: 2046 + - uid: 5075 components: - - pos: 0.5,-33.5 + - rot: 1.5707963267948966 rad + pos: -26.5,26.5 parent: 2 type: Transform - - uid: 2184 + - uid: 5076 components: - - pos: -27.5,-17.5 + - pos: -32.5,29.5 parent: 2 type: Transform - - uid: 2396 + - uid: 5077 components: - - pos: -27.5,-26.5 + - rot: 3.141592653589793 rad + pos: -31.5,30.5 parent: 2 type: Transform - - uid: 2523 + - uid: 5078 components: - - pos: -31.5,-26.5 + - pos: -27.5,26.5 parent: 2 type: Transform - - uid: 2524 + - uid: 5079 components: - - pos: -30.5,-27.5 + - rot: 3.141592653589793 rad + pos: -26.5,30.5 parent: 2 type: Transform - - uid: 2676 + - uid: 5080 components: - - pos: -31.5,-28.5 + - rot: 1.5707963267948966 rad + pos: -31.5,26.5 parent: 2 type: Transform - - uid: 2677 + - uid: 5081 components: - - pos: -31.5,-27.5 + - pos: -27.5,29.5 parent: 2 type: Transform - - uid: 2984 + - uid: 5082 components: - - pos: -33.5,-2.5 + - rot: -1.5707963267948966 rad + pos: -27.5,30.5 parent: 2 type: Transform - - uid: 3010 + - uid: 5083 components: - - pos: -34.5,-2.5 + - rot: 1.5707963267948966 rad + pos: -26.5,29.5 parent: 2 type: Transform - - uid: 3424 + - uid: 5084 components: - rot: 1.5707963267948966 rad - pos: -16.5,-34.5 + pos: -31.5,29.5 parent: 2 type: Transform - - uid: 3514 + - uid: 5085 components: - - pos: 16.5,-20.5 + - rot: 3.141592653589793 rad + pos: -26.5,27.5 parent: 2 type: Transform - - uid: 3595 + - uid: 5086 components: - - pos: -17.5,-49.5 + - rot: -1.5707963267948966 rad + pos: -31.5,36.5 parent: 2 type: Transform - - uid: 4273 + - uid: 5087 components: - - pos: -31.5,-18.5 + - rot: 3.141592653589793 rad + pos: -33.5,36.5 parent: 2 type: Transform - - uid: 4343 + - uid: 5088 components: - - pos: 17.5,-20.5 + - pos: -32.5,26.5 parent: 2 type: Transform - - uid: 4349 + - uid: 5089 components: - - pos: 18.5,-20.5 + - rot: -1.5707963267948966 rad + pos: -32.5,27.5 parent: 2 type: Transform - - uid: 4485 +- proto: CarpetPink + entities: + - uid: 5090 components: - - rot: 1.5707963267948966 rad - pos: 16.5,20.5 + - rot: 3.141592653589793 rad + pos: -47.5,26.5 parent: 2 type: Transform - - uid: 4969 + - uid: 5091 components: - - pos: 17.5,-19.5 + - rot: 3.141592653589793 rad + pos: -47.5,27.5 parent: 2 type: Transform - - uid: 5322 + - uid: 5092 components: - - pos: -31.5,41.5 + - rot: 3.141592653589793 rad + pos: -48.5,28.5 parent: 2 type: Transform - - uid: 5986 + - uid: 5093 components: - - pos: 2.5,-37.5 + - rot: 3.141592653589793 rad + pos: -49.5,28.5 parent: 2 type: Transform - - uid: 6021 + - uid: 5094 components: - - pos: 17.5,-48.5 + - rot: 3.141592653589793 rad + pos: -50.5,27.5 parent: 2 type: Transform - - uid: 6231 + - uid: 5095 components: - - pos: -24.5,-27.5 + - rot: 3.141592653589793 rad + pos: -50.5,26.5 parent: 2 type: Transform - - uid: 6330 + - uid: 5096 components: - - pos: -27.5,-25.5 + - rot: 3.141592653589793 rad + pos: -49.5,25.5 parent: 2 type: Transform - - uid: 6441 + - uid: 5097 components: - - pos: 15.5,-22.5 + - rot: 3.141592653589793 rad + pos: -48.5,25.5 parent: 2 type: Transform - - uid: 6597 +- proto: CarpetPurple + entities: + - uid: 5098 components: - - pos: 18.5,-15.5 + - pos: -28.5,28.5 parent: 2 type: Transform - - uid: 6615 + - uid: 5099 components: - - pos: -53.5,35.5 + - rot: -1.5707963267948966 rad + pos: -30.5,27.5 parent: 2 type: Transform - - uid: 6700 + - uid: 5100 components: - - pos: -56.5,35.5 + - rot: -1.5707963267948966 rad + pos: -28.5,27.5 parent: 2 type: Transform - - uid: 6702 + - uid: 5101 components: - - pos: -57.5,35.5 + - pos: -29.5,27.5 parent: 2 type: Transform - - uid: 6711 + - uid: 5102 components: - - pos: -53.5,34.5 + - pos: -29.5,28.5 parent: 2 type: Transform - - uid: 6716 + - uid: 5103 components: - - pos: -52.5,35.5 + - pos: -30.5,28.5 parent: 2 type: Transform - - uid: 6721 + - uid: 5104 components: - - pos: -54.5,35.5 + - pos: -28.5,26.5 parent: 2 type: Transform - - uid: 6724 + - uid: 5105 components: - - pos: -55.5,35.5 + - pos: -29.5,26.5 parent: 2 type: Transform - - uid: 6725 + - uid: 5106 components: - - pos: -53.5,33.5 + - pos: -30.5,26.5 parent: 2 type: Transform - - uid: 6726 +- proto: CarpetSBlue + entities: + - uid: 5107 components: - - pos: -53.5,32.5 + - pos: 8.5,21.5 parent: 2 type: Transform - - uid: 6727 + - uid: 5108 components: - - pos: -54.5,32.5 + - pos: 8.5,25.5 parent: 2 type: Transform - - uid: 6728 + - uid: 5109 components: - - pos: -55.5,32.5 + - pos: 8.5,26.5 parent: 2 type: Transform - - uid: 6729 + - uid: 5110 components: - - pos: -52.5,33.5 + - pos: 7.5,25.5 parent: 2 type: Transform - - uid: 6761 + - uid: 5111 components: - - pos: 7.5,-37.5 + - pos: 7.5,27.5 parent: 2 type: Transform - - uid: 6771 + - uid: 5112 components: - - pos: -0.5,-13.5 + - pos: 8.5,27.5 parent: 2 type: Transform - - uid: 6783 + - uid: 5113 components: - - rot: 3.141592653589793 rad - pos: -37.5,22.5 + - pos: 7.5,26.5 parent: 2 type: Transform - - uid: 6877 + - uid: 5114 components: - - pos: -7.5,-23.5 + - pos: 8.5,22.5 parent: 2 type: Transform - - uid: 6878 + - uid: 5115 components: - - pos: -7.5,-24.5 + - pos: 31.5,15.5 parent: 2 type: Transform - - uid: 6880 + - uid: 5116 components: - - pos: -7.5,-26.5 + - pos: 32.5,15.5 parent: 2 type: Transform - - uid: 6881 +- proto: CarrotSeeds + entities: + - uid: 5117 components: - - pos: -7.5,-27.5 + - pos: 32.31128,-12.466648 parent: 2 type: Transform - - uid: 6882 +- proto: CartridgeRocket + entities: + - uid: 5118 components: - - pos: -7.5,-28.5 + - pos: -41.510567,1.3497348 parent: 2 type: Transform - - uid: 7172 +- proto: Catwalk + entities: + - uid: 5119 components: - - pos: 28.5,28.5 + - rot: 1.5707963267948966 rad + pos: -8.5,-40.5 parent: 2 type: Transform - - uid: 7451 + - uid: 5120 components: - - pos: 27.5,28.5 + - rot: -1.5707963267948966 rad + pos: -6.5,-42.5 parent: 2 type: Transform - - uid: 7788 + - uid: 5121 components: - - rot: 1.5707963267948966 rad - pos: -8.5,-44.5 + - rot: -1.5707963267948966 rad + pos: -7.5,-42.5 parent: 2 type: Transform - - uid: 7828 + - uid: 5122 components: - rot: 1.5707963267948966 rad - pos: -8.5,-43.5 + pos: -8.5,-37.5 parent: 2 type: Transform - - uid: 7830 + - uid: 5123 components: - - rot: 1.5707963267948966 rad - pos: -7.5,-45.5 + - pos: -27.5,-19.5 parent: 2 type: Transform - - uid: 7831 + - uid: 5124 components: - - rot: 1.5707963267948966 rad - pos: -6.5,-43.5 + - pos: -52.5,36.5 parent: 2 type: Transform - - uid: 7832 + - uid: 5125 components: - - rot: 1.5707963267948966 rad - pos: -6.5,-45.5 + - pos: -54.5,37.5 parent: 2 type: Transform - - uid: 7833 + - uid: 5126 components: - - rot: 1.5707963267948966 rad - pos: -7.5,-43.5 + - pos: -54.5,36.5 parent: 2 type: Transform - - uid: 7836 + - uid: 5127 components: - - rot: 1.5707963267948966 rad - pos: -8.5,-45.5 + - rot: 3.141592653589793 rad + pos: -20.5,17.5 parent: 2 type: Transform - - uid: 7841 + - uid: 5128 components: - - pos: 20.5,-18.5 + - pos: 20.5,-19.5 parent: 2 type: Transform - - uid: 7875 + - uid: 5129 components: - - rot: 1.5707963267948966 rad - pos: -5.5,-43.5 + - pos: -21.5,17.5 parent: 2 type: Transform - - uid: 7876 + - uid: 5130 components: - - rot: 1.5707963267948966 rad - pos: -5.5,-44.5 + - pos: 2.5,-33.5 parent: 2 type: Transform - - uid: 7877 + - uid: 5131 components: - - rot: 1.5707963267948966 rad - pos: -5.5,-45.5 + - pos: 18.5,20.5 parent: 2 type: Transform - - uid: 8335 + - uid: 5132 components: - - pos: 20.5,-22.5 + - rot: 3.141592653589793 rad + pos: -20.5,16.5 parent: 2 type: Transform - - uid: 8399 + - uid: 5133 components: - - pos: 20.5,-21.5 + - rot: 3.141592653589793 rad + pos: -19.5,17.5 parent: 2 type: Transform - - uid: 8616 + - uid: 5134 components: - - pos: 6.5,-38.5 + - rot: 3.141592653589793 rad + pos: -18.5,17.5 parent: 2 type: Transform - - uid: 9325 + - uid: 5135 components: - rot: 3.141592653589793 rad - pos: -46.5,46.5 + pos: -17.5,16.5 parent: 2 type: Transform - - uid: 9555 + - uid: 5136 components: - - pos: 5.5,-38.5 + - rot: 3.141592653589793 rad + pos: -17.5,17.5 parent: 2 type: Transform - - uid: 9613 + - uid: 5137 components: - - rot: 1.5707963267948966 rad - pos: -21.5,-32.5 + - rot: 3.141592653589793 rad + pos: -16.5,17.5 parent: 2 type: Transform - - uid: 9632 + - uid: 5138 components: - - pos: -42.5,53.5 + - rot: 3.141592653589793 rad + pos: -15.5,17.5 parent: 2 type: Transform - - uid: 9634 + - uid: 5139 components: - - pos: -42.5,51.5 + - rot: 3.141592653589793 rad + pos: -14.5,17.5 parent: 2 type: Transform - - uid: 9635 + - uid: 5140 components: - - pos: -42.5,50.5 + - rot: 3.141592653589793 rad + pos: -13.5,17.5 parent: 2 type: Transform - - uid: 9636 + - uid: 5141 components: - - pos: -42.5,49.5 + - rot: 3.141592653589793 rad + pos: -17.5,14.5 parent: 2 type: Transform - - uid: 9638 + - uid: 5142 components: - - pos: -42.5,55.5 + - rot: 3.141592653589793 rad + pos: -17.5,13.5 parent: 2 type: Transform - - uid: 9639 + - uid: 5143 components: - - pos: -42.5,56.5 + - pos: 2.5,-22.5 parent: 2 type: Transform - - uid: 9640 + - uid: 5144 components: - - pos: -42.5,57.5 + - pos: 2.5,-23.5 parent: 2 type: Transform - - uid: 9641 + - uid: 5145 components: - - pos: -42.5,58.5 + - pos: -16.5,21.5 parent: 2 type: Transform - - uid: 9642 + - uid: 5146 components: - - pos: -42.5,59.5 + - pos: -17.5,18.5 parent: 2 type: Transform - - uid: 9644 + - uid: 5147 components: - - pos: -42.5,61.5 + - pos: 18.5,19.5 parent: 2 type: Transform - - uid: 9646 + - uid: 5148 components: - - pos: -42.5,63.5 + - pos: -17.5,21.5 parent: 2 type: Transform - - uid: 9648 + - uid: 5149 components: - - pos: -42.5,65.5 + - pos: -17.5,20.5 parent: 2 type: Transform - - uid: 9649 + - uid: 5150 components: - - pos: -42.5,66.5 + - pos: -17.5,22.5 parent: 2 type: Transform - - uid: 9650 + - uid: 5151 components: - - pos: -42.5,67.5 + - pos: -17.5,19.5 parent: 2 type: Transform - - uid: 9653 + - uid: 5152 components: - - pos: -39.5,65.5 + - pos: 3.5,-33.5 parent: 2 type: Transform - - uid: 9654 + - uid: 5153 components: - - pos: -38.5,65.5 + - pos: -17.5,-48.5 parent: 2 type: Transform - - uid: 9655 + - uid: 5154 components: - - pos: -37.5,65.5 + - pos: -0.5,-7.5 parent: 2 type: Transform - - uid: 9656 + - uid: 5155 components: - - pos: -36.5,65.5 + - pos: 5.5,-26.5 parent: 2 type: Transform - - uid: 9657 + - uid: 5156 components: - - pos: -35.5,65.5 + - pos: 1.5,-26.5 parent: 2 type: Transform - - uid: 9658 + - uid: 5157 components: - - pos: -34.5,65.5 + - pos: 2.5,-26.5 parent: 2 type: Transform - - uid: 9659 + - uid: 5158 components: - - pos: -43.5,65.5 + - pos: 3.5,-26.5 parent: 2 type: Transform - - uid: 9660 + - uid: 5159 components: - - pos: -44.5,65.5 + - pos: 4.5,-26.5 parent: 2 type: Transform - - uid: 9661 + - uid: 5160 components: - - pos: -45.5,65.5 + - pos: 1.5,-23.5 parent: 2 type: Transform - - uid: 9662 + - uid: 5161 components: - - pos: -46.5,65.5 + - pos: 0.5,-23.5 parent: 2 type: Transform - - uid: 9663 + - uid: 5162 components: - - pos: -47.5,65.5 + - pos: -0.5,-23.5 parent: 2 type: Transform - - uid: 9664 + - uid: 5163 components: - - pos: -48.5,65.5 + - pos: -1.5,-23.5 parent: 2 type: Transform - - uid: 9665 + - uid: 5164 components: - - pos: -49.5,65.5 + - pos: -2.5,-23.5 parent: 2 type: Transform - - uid: 9666 + - uid: 5165 components: - - pos: -50.5,65.5 + - pos: -3.5,-23.5 parent: 2 type: Transform - - uid: 9667 + - uid: 5166 components: - - pos: -43.5,61.5 + - pos: -4.5,-23.5 parent: 2 type: Transform - - uid: 9668 + - uid: 5167 components: - - pos: -44.5,61.5 + - pos: 4.5,-33.5 parent: 2 type: Transform - - uid: 9669 + - uid: 5168 components: - - pos: -45.5,61.5 + - pos: 2.5,-32.5 parent: 2 type: Transform - - uid: 9670 + - uid: 5169 components: - - pos: -46.5,61.5 + - pos: 2.5,-31.5 parent: 2 type: Transform - - uid: 9671 + - uid: 5170 components: - - pos: -47.5,61.5 + - pos: 0.5,-33.5 parent: 2 type: Transform - - uid: 9672 + - uid: 5171 components: - - pos: -48.5,61.5 + - pos: -27.5,-17.5 parent: 2 type: Transform - - uid: 9673 + - uid: 5172 components: - - pos: -49.5,61.5 + - pos: -27.5,-26.5 parent: 2 type: Transform - - uid: 9674 + - uid: 5173 components: - - pos: -50.5,61.5 + - pos: -31.5,-26.5 parent: 2 type: Transform - - uid: 9675 + - uid: 5174 components: - - pos: -40.5,61.5 + - pos: -30.5,-27.5 parent: 2 type: Transform - - uid: 9676 + - uid: 5175 components: - - pos: -39.5,61.5 + - pos: -31.5,-28.5 parent: 2 type: Transform - - uid: 9677 + - uid: 5176 components: - - pos: -38.5,61.5 + - pos: -31.5,-27.5 parent: 2 type: Transform - - uid: 9678 + - uid: 5177 components: - - pos: -37.5,61.5 + - pos: -33.5,-2.5 parent: 2 type: Transform - - uid: 9679 + - uid: 5178 components: - - pos: -36.5,61.5 + - pos: -34.5,-2.5 parent: 2 type: Transform - - uid: 9680 + - uid: 5179 components: - - pos: -35.5,61.5 + - rot: 1.5707963267948966 rad + pos: -16.5,-34.5 parent: 2 type: Transform - - uid: 9682 + - uid: 5180 components: - - pos: -34.5,61.5 + - pos: 16.5,-20.5 parent: 2 type: Transform - - uid: 9684 + - uid: 5181 components: - - pos: -34.5,57.5 + - pos: -17.5,-49.5 parent: 2 type: Transform - - uid: 9685 + - uid: 5182 components: - - pos: -35.5,57.5 + - pos: -31.5,-18.5 parent: 2 type: Transform - - uid: 9688 + - uid: 5183 components: - - pos: -38.5,57.5 + - pos: 17.5,-20.5 parent: 2 type: Transform - - uid: 9689 + - uid: 5184 components: - - pos: -39.5,57.5 + - pos: 18.5,-20.5 parent: 2 type: Transform - - uid: 9690 + - uid: 5185 components: - - pos: -40.5,57.5 + - rot: 1.5707963267948966 rad + pos: 16.5,20.5 parent: 2 type: Transform - - uid: 9691 + - uid: 5186 components: - - pos: -41.5,57.5 + - pos: 17.5,-19.5 parent: 2 type: Transform - - uid: 9695 + - uid: 5187 components: - - pos: -46.5,57.5 + - pos: -31.5,41.5 parent: 2 type: Transform - - uid: 9696 + - uid: 5188 components: - - pos: -47.5,57.5 + - pos: 2.5,-37.5 parent: 2 type: Transform - - uid: 9697 + - uid: 5189 components: - - pos: -48.5,57.5 + - pos: 17.5,-48.5 parent: 2 type: Transform - - uid: 9698 + - uid: 5190 components: - - pos: -49.5,57.5 + - pos: -24.5,-27.5 parent: 2 type: Transform - - uid: 9699 + - uid: 5191 components: - - pos: -50.5,57.5 + - pos: -27.5,-25.5 parent: 2 type: Transform - - uid: 9714 + - uid: 5192 components: - - pos: 49.5,11.5 + - pos: 15.5,-22.5 parent: 2 type: Transform - - uid: 9715 + - uid: 5193 components: - - pos: 50.5,11.5 + - pos: 18.5,-15.5 parent: 2 type: Transform - - uid: 9716 + - uid: 5194 components: - - pos: 51.5,11.5 + - pos: -53.5,35.5 parent: 2 type: Transform - - uid: 9717 + - uid: 5195 components: - - pos: 52.5,11.5 + - pos: -56.5,35.5 parent: 2 type: Transform - - uid: 9718 + - uid: 5196 components: - - pos: 56.5,11.5 + - pos: -57.5,35.5 parent: 2 type: Transform - - uid: 9719 + - uid: 5197 components: - - pos: 57.5,11.5 + - pos: -53.5,34.5 parent: 2 type: Transform - - uid: 9720 + - uid: 5198 components: - - pos: 58.5,11.5 + - pos: -52.5,35.5 parent: 2 type: Transform - - uid: 9721 + - uid: 5199 components: - - pos: 59.5,11.5 + - pos: -54.5,35.5 parent: 2 type: Transform - - uid: 9722 + - uid: 5200 components: - - pos: 60.5,11.5 + - pos: -55.5,35.5 parent: 2 type: Transform - - uid: 9723 + - uid: 5201 components: - - pos: 61.5,11.5 + - pos: -53.5,33.5 parent: 2 type: Transform - - uid: 9724 + - uid: 5202 components: - - pos: 62.5,11.5 + - pos: -53.5,32.5 parent: 2 type: Transform - - uid: 9725 + - uid: 5203 components: - - pos: 63.5,11.5 + - pos: -54.5,32.5 parent: 2 type: Transform - - uid: 9726 + - uid: 5204 components: - - pos: 59.5,12.5 + - pos: -55.5,32.5 parent: 2 type: Transform - - uid: 9727 + - uid: 5205 components: - - pos: 59.5,13.5 + - pos: -52.5,33.5 parent: 2 type: Transform - - uid: 9728 + - uid: 5206 components: - - pos: 59.5,14.5 + - pos: 7.5,-37.5 parent: 2 type: Transform - - uid: 9729 + - uid: 5207 components: - - pos: 59.5,15.5 + - pos: -0.5,-13.5 parent: 2 type: Transform - - uid: 9730 + - uid: 5208 components: - - pos: 59.5,16.5 + - rot: 3.141592653589793 rad + pos: -37.5,22.5 parent: 2 type: Transform - - uid: 9731 + - uid: 5209 components: - - pos: 59.5,18.5 + - pos: -7.5,-24.5 parent: 2 type: Transform - - uid: 9732 + - uid: 5210 components: - - pos: 55.5,18.5 + - pos: -7.5,-26.5 parent: 2 type: Transform - - uid: 9733 + - uid: 5211 components: - - pos: 55.5,17.5 + - pos: -7.5,-27.5 parent: 2 type: Transform - - uid: 9734 + - uid: 5212 components: - - pos: 55.5,16.5 + - pos: -7.5,-28.5 parent: 2 type: Transform - - uid: 9735 + - uid: 5213 components: - - pos: 55.5,15.5 + - pos: 28.5,28.5 parent: 2 type: Transform - - uid: 9736 + - uid: 5214 components: - - pos: 55.5,14.5 + - pos: 27.5,28.5 parent: 2 type: Transform - - uid: 9737 + - uid: 5215 components: - - pos: 55.5,13.5 + - pos: 20.5,-18.5 parent: 2 type: Transform - - uid: 9738 + - uid: 5216 components: - - pos: 55.5,12.5 + - pos: 20.5,-22.5 parent: 2 type: Transform - - uid: 9739 + - uid: 5217 components: - - pos: 55.5,11.5 + - pos: 20.5,-21.5 parent: 2 type: Transform - - uid: 9742 + - uid: 5218 components: - - pos: 51.5,12.5 + - pos: 6.5,-38.5 parent: 2 type: Transform - - uid: 9743 + - uid: 5219 components: - - pos: 51.5,13.5 + - rot: 3.141592653589793 rad + pos: -46.5,46.5 parent: 2 type: Transform - - uid: 9744 + - uid: 5220 components: - - pos: 51.5,14.5 + - pos: 5.5,-38.5 parent: 2 type: Transform - - uid: 9745 + - uid: 5221 components: - - pos: 51.5,15.5 + - rot: 1.5707963267948966 rad + pos: -21.5,-32.5 parent: 2 type: Transform - - uid: 9746 + - uid: 5222 components: - - pos: 51.5,16.5 + - pos: -42.5,53.5 parent: 2 type: Transform - - uid: 9749 + - uid: 5223 components: - - pos: 51.5,10.5 + - pos: -42.5,51.5 parent: 2 type: Transform - - uid: 9750 + - uid: 5224 components: - - pos: 51.5,9.5 + - pos: -42.5,50.5 parent: 2 type: Transform - - uid: 9751 + - uid: 5225 components: - - pos: 51.5,8.5 + - pos: -42.5,49.5 parent: 2 type: Transform - - uid: 9752 + - uid: 5226 components: - - pos: 51.5,7.5 + - pos: -42.5,55.5 parent: 2 type: Transform - - uid: 9753 + - uid: 5227 components: - - pos: 51.5,6.5 + - pos: -42.5,56.5 parent: 2 type: Transform - - uid: 9754 + - uid: 5228 components: - - pos: 51.5,5.5 + - pos: -42.5,57.5 parent: 2 type: Transform - - uid: 9755 + - uid: 5229 components: - - pos: 51.5,4.5 + - pos: -42.5,58.5 parent: 2 type: Transform - - uid: 9758 + - uid: 5230 components: - - pos: 55.5,10.5 + - pos: -42.5,59.5 parent: 2 type: Transform - - uid: 9759 + - uid: 5231 components: - - pos: 55.5,9.5 + - pos: -42.5,61.5 parent: 2 type: Transform - - uid: 9760 + - uid: 5232 components: - - pos: 55.5,8.5 + - pos: -42.5,63.5 parent: 2 type: Transform - - uid: 9761 + - uid: 5233 components: - - pos: 55.5,7.5 + - pos: -42.5,65.5 parent: 2 type: Transform - - uid: 9762 + - uid: 5234 components: - - pos: 55.5,6.5 + - pos: -42.5,66.5 parent: 2 type: Transform - - uid: 9763 + - uid: 5235 components: - - pos: 55.5,5.5 + - pos: -42.5,67.5 parent: 2 type: Transform - - uid: 9764 + - uid: 5236 components: - - pos: 55.5,4.5 + - pos: -39.5,65.5 parent: 2 type: Transform - - uid: 9766 + - uid: 5237 components: - - pos: 59.5,10.5 + - pos: -38.5,65.5 parent: 2 type: Transform - - uid: 9767 + - uid: 5238 components: - - pos: 59.5,9.5 + - pos: -37.5,65.5 parent: 2 type: Transform - - uid: 9768 + - uid: 5239 components: - - pos: 59.5,8.5 + - pos: -36.5,65.5 parent: 2 type: Transform - - uid: 9769 + - uid: 5240 components: - - pos: 59.5,7.5 + - pos: -35.5,65.5 parent: 2 type: Transform - - uid: 9770 + - uid: 5241 components: - - pos: 59.5,6.5 + - pos: -34.5,65.5 parent: 2 type: Transform - - uid: 9771 + - uid: 5242 components: - - pos: 59.5,5.5 + - pos: -43.5,65.5 parent: 2 type: Transform - - uid: 9772 + - uid: 5243 components: - - pos: 59.5,4.5 + - pos: -44.5,65.5 parent: 2 type: Transform - - uid: 10614 + - uid: 5244 components: - - pos: 17.5,-47.5 + - pos: -45.5,65.5 parent: 2 type: Transform - - uid: 10693 + - uid: 5245 components: - - rot: 3.141592653589793 rad - pos: -35.5,40.5 + - pos: -46.5,65.5 parent: 2 type: Transform - - uid: 10718 + - uid: 5246 components: - - rot: 3.141592653589793 rad - pos: -45.5,46.5 + - pos: -47.5,65.5 parent: 2 type: Transform - - uid: 10719 + - uid: 5247 components: - - rot: 3.141592653589793 rad - pos: -44.5,46.5 + - pos: -48.5,65.5 parent: 2 type: Transform - - uid: 10720 + - uid: 5248 components: - - rot: 3.141592653589793 rad - pos: -43.5,46.5 + - pos: -49.5,65.5 parent: 2 type: Transform - - uid: 10721 + - uid: 5249 components: - - rot: 3.141592653589793 rad - pos: -42.5,46.5 + - pos: -50.5,65.5 parent: 2 type: Transform - - uid: 10722 + - uid: 5250 components: - - rot: 3.141592653589793 rad - pos: -41.5,46.5 + - pos: -43.5,61.5 parent: 2 type: Transform - - uid: 10723 + - uid: 5251 components: - - rot: 3.141592653589793 rad - pos: -40.5,46.5 + - pos: -44.5,61.5 parent: 2 type: Transform - - uid: 10724 + - uid: 5252 components: - - rot: 3.141592653589793 rad - pos: -39.5,46.5 + - pos: -45.5,61.5 parent: 2 type: Transform - - uid: 10725 + - uid: 5253 components: - - rot: 3.141592653589793 rad - pos: -38.5,46.5 + - pos: -46.5,61.5 parent: 2 type: Transform - - uid: 10726 + - uid: 5254 components: - - rot: 3.141592653589793 rad - pos: -37.5,46.5 + - pos: -47.5,61.5 parent: 2 type: Transform - - uid: 10727 + - uid: 5255 components: - - rot: 3.141592653589793 rad - pos: -36.5,46.5 + - pos: -48.5,61.5 parent: 2 type: Transform - - uid: 10728 + - uid: 5256 components: - - rot: 3.141592653589793 rad - pos: -42.5,47.5 + - pos: -49.5,61.5 parent: 2 type: Transform - - uid: 10729 + - uid: 5257 components: - - rot: 3.141592653589793 rad - pos: -36.5,45.5 + - pos: -50.5,61.5 parent: 2 type: Transform - - uid: 10730 + - uid: 5258 components: - - rot: 3.141592653589793 rad - pos: -36.5,44.5 + - pos: -40.5,61.5 parent: 2 type: Transform - - uid: 10731 + - uid: 5259 components: - - rot: 3.141592653589793 rad - pos: -36.5,43.5 + - pos: -39.5,61.5 parent: 2 type: Transform - - uid: 10732 + - uid: 5260 components: - - rot: 3.141592653589793 rad - pos: -36.5,42.5 + - pos: -38.5,61.5 parent: 2 type: Transform - - uid: 10733 + - uid: 5261 components: - - rot: 3.141592653589793 rad - pos: -36.5,41.5 + - pos: -37.5,61.5 parent: 2 type: Transform - - uid: 10734 + - uid: 5262 components: - - rot: 3.141592653589793 rad - pos: -36.5,40.5 + - pos: -36.5,61.5 parent: 2 type: Transform - - uid: 10736 + - uid: 5263 components: - - rot: 3.141592653589793 rad - pos: -33.5,40.5 + - pos: -35.5,61.5 parent: 2 type: Transform - - uid: 10737 + - uid: 5264 components: - - rot: 3.141592653589793 rad - pos: -32.5,40.5 + - pos: -34.5,61.5 parent: 2 type: Transform - - uid: 10738 + - uid: 5265 components: - - rot: 3.141592653589793 rad - pos: -31.5,40.5 + - pos: -34.5,57.5 parent: 2 type: Transform - - uid: 10739 + - uid: 5266 components: - - rot: 3.141592653589793 rad - pos: -30.5,40.5 + - pos: -35.5,57.5 parent: 2 type: Transform - - uid: 10740 + - uid: 5267 components: - - rot: 3.141592653589793 rad - pos: -29.5,40.5 + - pos: -38.5,57.5 parent: 2 type: Transform - - uid: 10741 + - uid: 5268 components: - - rot: 3.141592653589793 rad - pos: 31.5,19.5 + - pos: -39.5,57.5 parent: 2 type: Transform - - uid: 10742 + - uid: 5269 components: - - rot: 3.141592653589793 rad - pos: -29.5,39.5 + - pos: -40.5,57.5 parent: 2 type: Transform - - uid: 10743 + - uid: 5270 components: - - rot: 3.141592653589793 rad - pos: -29.5,38.5 + - pos: -41.5,57.5 parent: 2 type: Transform - - uid: 10744 + - uid: 5271 components: - - rot: 3.141592653589793 rad - pos: -29.5,37.5 + - pos: -46.5,57.5 parent: 2 type: Transform - - uid: 10745 + - uid: 5272 components: - - rot: 3.141592653589793 rad - pos: -29.5,36.5 + - pos: -47.5,57.5 parent: 2 type: Transform - - uid: 10746 + - uid: 5273 components: - - rot: 3.141592653589793 rad - pos: -29.5,35.5 + - pos: -48.5,57.5 parent: 2 type: Transform - - uid: 10747 + - uid: 5274 components: - - rot: 3.141592653589793 rad - pos: -29.5,34.5 + - pos: -49.5,57.5 parent: 2 type: Transform - - uid: 10748 + - uid: 5275 components: - - rot: 3.141592653589793 rad - pos: -28.5,34.5 + - pos: -50.5,57.5 parent: 2 type: Transform - - uid: 10749 + - uid: 5276 components: - - rot: 3.141592653589793 rad - pos: -28.5,34.5 + - pos: 49.5,11.5 parent: 2 type: Transform - - uid: 10750 + - uid: 5277 components: - - rot: 3.141592653589793 rad - pos: -27.5,34.5 + - pos: 50.5,11.5 parent: 2 type: Transform - - uid: 10751 + - uid: 5278 components: - - rot: 3.141592653589793 rad - pos: -26.5,34.5 + - pos: 51.5,11.5 parent: 2 type: Transform - - uid: 10752 + - uid: 5279 components: - - rot: 3.141592653589793 rad - pos: -20.5,29.5 + - pos: 52.5,11.5 parent: 2 type: Transform - - uid: 10753 + - uid: 5280 components: - - rot: 3.141592653589793 rad - pos: -20.5,30.5 + - pos: 56.5,11.5 parent: 2 type: Transform - - uid: 10754 + - uid: 5281 components: - - rot: 3.141592653589793 rad - pos: -20.5,31.5 + - pos: 57.5,11.5 parent: 2 type: Transform - - uid: 10755 + - uid: 5282 components: - - rot: 3.141592653589793 rad - pos: -18.5,29.5 + - pos: 58.5,11.5 parent: 2 type: Transform - - uid: 10756 + - uid: 5283 components: - - rot: 3.141592653589793 rad - pos: -17.5,29.5 + - pos: 59.5,11.5 parent: 2 type: Transform - - uid: 10757 + - uid: 5284 components: - - rot: 3.141592653589793 rad - pos: -16.5,29.5 + - pos: 60.5,11.5 parent: 2 type: Transform - - uid: 10758 + - uid: 5285 components: - - rot: 3.141592653589793 rad - pos: -15.5,29.5 + - pos: 61.5,11.5 parent: 2 type: Transform - - uid: 10759 + - uid: 5286 components: - - rot: 3.141592653589793 rad - pos: -14.5,29.5 + - pos: 62.5,11.5 parent: 2 type: Transform - - uid: 10760 + - uid: 5287 components: - - rot: 3.141592653589793 rad - pos: -13.5,29.5 + - pos: 63.5,11.5 parent: 2 type: Transform - - uid: 10761 + - uid: 5288 components: - - rot: 3.141592653589793 rad - pos: -12.5,29.5 + - pos: 59.5,12.5 parent: 2 type: Transform - - uid: 10762 + - uid: 5289 components: - - rot: 3.141592653589793 rad - pos: -12.5,30.5 + - pos: 59.5,13.5 parent: 2 type: Transform - - uid: 10763 + - uid: 5290 components: - - rot: 3.141592653589793 rad - pos: -11.5,30.5 + - pos: 59.5,14.5 parent: 2 type: Transform - - uid: 10764 + - uid: 5291 components: - - rot: 3.141592653589793 rad - pos: -10.5,30.5 + - pos: 59.5,15.5 parent: 2 type: Transform - - uid: 10765 + - uid: 5292 components: - - rot: 3.141592653589793 rad - pos: -9.5,30.5 + - pos: 59.5,16.5 parent: 2 type: Transform - - uid: 10766 + - uid: 5293 components: - - rot: 3.141592653589793 rad - pos: -8.5,30.5 + - pos: 59.5,18.5 parent: 2 type: Transform - - uid: 10767 + - uid: 5294 components: - - rot: 3.141592653589793 rad - pos: -7.5,30.5 + - pos: 55.5,18.5 parent: 2 type: Transform - - uid: 10768 + - uid: 5295 components: - - rot: 3.141592653589793 rad - pos: 0.5,27.5 + - pos: 55.5,17.5 parent: 2 type: Transform - - uid: 10769 + - uid: 5296 components: - - rot: 3.141592653589793 rad - pos: 0.5,26.5 + - pos: 55.5,16.5 parent: 2 type: Transform - - uid: 10771 + - uid: 5297 components: - - rot: 3.141592653589793 rad - pos: 1.5,26.5 + - pos: 55.5,15.5 parent: 2 type: Transform - - uid: 10773 + - uid: 5298 components: - - rot: 3.141592653589793 rad - pos: 4.5,26.5 + - pos: 55.5,14.5 parent: 2 type: Transform - - uid: 10774 + - uid: 5299 components: - - rot: 3.141592653589793 rad - pos: 5.5,26.5 + - pos: 55.5,13.5 parent: 2 type: Transform - - uid: 10775 + - uid: 5300 components: - - rot: 3.141592653589793 rad - pos: 5.5,25.5 + - pos: 55.5,12.5 parent: 2 type: Transform - - uid: 10776 + - uid: 5301 components: - - rot: 3.141592653589793 rad - pos: 5.5,24.5 + - pos: 55.5,11.5 parent: 2 type: Transform - - uid: 10777 + - uid: 5302 components: - - rot: 3.141592653589793 rad - pos: 5.5,23.5 + - pos: 51.5,12.5 parent: 2 type: Transform - - uid: 10778 + - uid: 5303 components: - - rot: 3.141592653589793 rad - pos: 5.5,22.5 + - pos: 51.5,13.5 parent: 2 type: Transform - - uid: 10779 + - uid: 5304 components: - - rot: 3.141592653589793 rad - pos: 5.5,21.5 + - pos: 51.5,14.5 parent: 2 type: Transform - - uid: 10780 + - uid: 5305 components: - - rot: 3.141592653589793 rad - pos: 5.5,20.5 + - pos: 51.5,15.5 parent: 2 type: Transform - - uid: 10781 + - uid: 5306 components: - - rot: 3.141592653589793 rad - pos: 5.5,19.5 + - pos: 51.5,16.5 parent: 2 type: Transform - - uid: 10782 + - uid: 5307 components: - - rot: 3.141592653589793 rad - pos: 5.5,18.5 + - pos: 51.5,10.5 parent: 2 type: Transform - - uid: 10783 + - uid: 5308 components: - - rot: 3.141592653589793 rad - pos: 5.5,17.5 + - pos: 51.5,9.5 parent: 2 type: Transform - - uid: 10784 + - uid: 5309 components: - - rot: 3.141592653589793 rad - pos: 5.5,16.5 + - pos: 51.5,8.5 parent: 2 type: Transform - - uid: 10785 + - uid: 5310 components: - - rot: 3.141592653589793 rad - pos: 5.5,15.5 + - pos: 51.5,7.5 parent: 2 type: Transform - - uid: 10786 + - uid: 5311 components: - - rot: 3.141592653589793 rad - pos: 5.5,14.5 + - pos: 51.5,6.5 parent: 2 type: Transform - - uid: 10787 + - uid: 5312 components: - - rot: 3.141592653589793 rad - pos: 3.5,14.5 + - pos: 51.5,5.5 parent: 2 type: Transform - - uid: 10788 + - uid: 5313 components: - - rot: 3.141592653589793 rad - pos: 4.5,14.5 + - pos: 51.5,4.5 parent: 2 type: Transform - - uid: 10789 + - uid: 5314 components: - - rot: 3.141592653589793 rad - pos: 3.5,13.5 + - pos: 55.5,10.5 parent: 2 type: Transform - - uid: 10790 + - uid: 5315 components: - - rot: 3.141592653589793 rad - pos: 3.5,12.5 + - pos: 55.5,9.5 parent: 2 type: Transform - - uid: 10791 + - uid: 5316 components: - - rot: 3.141592653589793 rad - pos: 3.5,11.5 + - pos: 55.5,8.5 parent: 2 type: Transform - - uid: 10792 + - uid: 5317 components: - - rot: 3.141592653589793 rad - pos: 3.5,10.5 + - pos: 55.5,7.5 parent: 2 type: Transform - - uid: 10793 + - uid: 5318 components: - - rot: 3.141592653589793 rad - pos: 3.5,9.5 + - pos: 55.5,6.5 parent: 2 type: Transform - - uid: 10794 + - uid: 5319 components: - - rot: 3.141592653589793 rad - pos: 3.5,8.5 + - pos: 55.5,5.5 parent: 2 type: Transform - - uid: 10795 + - uid: 5320 components: - - rot: 3.141592653589793 rad - pos: 3.5,7.5 + - pos: 55.5,4.5 parent: 2 type: Transform - - uid: 10796 + - uid: 5321 components: - - rot: 3.141592653589793 rad - pos: 3.5,6.5 + - pos: 59.5,10.5 parent: 2 type: Transform - - uid: 10797 + - uid: 5322 components: - - rot: 3.141592653589793 rad - pos: 2.5,6.5 + - pos: 59.5,9.5 parent: 2 type: Transform - - uid: 10798 + - uid: 5323 components: - - rot: 3.141592653589793 rad - pos: 1.5,6.5 + - pos: 59.5,8.5 parent: 2 type: Transform - - uid: 10799 + - uid: 5324 components: - - rot: 3.141592653589793 rad - pos: 0.5,6.5 + - pos: 59.5,7.5 parent: 2 type: Transform - - uid: 10801 + - uid: 5325 components: - - rot: 3.141592653589793 rad - pos: 40.5,3.5 + - pos: 59.5,6.5 parent: 2 type: Transform - - uid: 10802 + - uid: 5326 components: - - rot: 3.141592653589793 rad - pos: 40.5,4.5 + - pos: 59.5,5.5 parent: 2 type: Transform - - uid: 10803 + - uid: 5327 components: - - rot: 3.141592653589793 rad - pos: 40.5,5.5 + - pos: 59.5,4.5 parent: 2 type: Transform - - uid: 10804 + - uid: 5328 components: - - rot: 3.141592653589793 rad - pos: 40.5,6.5 + - pos: 17.5,-47.5 parent: 2 type: Transform - - uid: 10805 + - uid: 5329 components: - rot: 3.141592653589793 rad - pos: 40.5,7.5 + pos: -35.5,40.5 parent: 2 type: Transform - - uid: 10806 + - uid: 5330 components: - rot: 3.141592653589793 rad - pos: 40.5,8.5 + pos: -45.5,46.5 parent: 2 type: Transform - - uid: 10807 + - uid: 5331 components: - rot: 3.141592653589793 rad - pos: 40.5,9.5 + pos: -44.5,46.5 parent: 2 type: Transform - - uid: 10808 + - uid: 5332 components: - rot: 3.141592653589793 rad - pos: 40.5,10.5 + pos: -43.5,46.5 parent: 2 type: Transform - - uid: 10809 + - uid: 5333 components: - rot: 3.141592653589793 rad - pos: 40.5,11.5 + pos: -42.5,46.5 parent: 2 type: Transform - - uid: 10810 + - uid: 5334 components: - rot: 3.141592653589793 rad - pos: 41.5,11.5 + pos: -41.5,46.5 parent: 2 type: Transform - - uid: 10811 + - uid: 5335 components: - rot: 3.141592653589793 rad - pos: 39.5,11.5 + pos: -40.5,46.5 parent: 2 type: Transform - - uid: 10812 + - uid: 5336 components: - rot: 3.141592653589793 rad - pos: 39.5,12.5 + pos: -39.5,46.5 parent: 2 type: Transform - - uid: 10813 + - uid: 5337 components: - rot: 3.141592653589793 rad - pos: 39.5,13.5 + pos: -38.5,46.5 parent: 2 type: Transform - - uid: 10814 + - uid: 5338 components: - rot: 3.141592653589793 rad - pos: 39.5,14.5 + pos: -37.5,46.5 parent: 2 type: Transform - - uid: 10815 + - uid: 5339 components: - rot: 3.141592653589793 rad - pos: 39.5,15.5 + pos: -36.5,46.5 parent: 2 type: Transform - - uid: 10816 + - uid: 5340 components: - rot: 3.141592653589793 rad - pos: 38.5,15.5 + pos: -42.5,47.5 parent: 2 type: Transform - - uid: 10817 + - uid: 5341 components: - rot: 3.141592653589793 rad - pos: 37.5,15.5 + pos: -36.5,45.5 parent: 2 type: Transform - - uid: 10818 + - uid: 5342 components: - rot: 3.141592653589793 rad - pos: 36.5,15.5 + pos: -36.5,44.5 parent: 2 type: Transform - - uid: 10819 + - uid: 5343 components: - rot: 3.141592653589793 rad - pos: 35.5,15.5 + pos: -36.5,43.5 parent: 2 type: Transform - - uid: 10820 + - uid: 5344 components: - rot: 3.141592653589793 rad - pos: 35.5,16.5 + pos: -36.5,42.5 parent: 2 type: Transform - - uid: 10821 + - uid: 5345 components: - rot: 3.141592653589793 rad - pos: 35.5,17.5 + pos: -36.5,41.5 parent: 2 type: Transform - - uid: 10822 + - uid: 5346 components: - rot: 3.141592653589793 rad - pos: 35.5,18.5 + pos: -36.5,40.5 parent: 2 type: Transform - - uid: 10823 + - uid: 5347 components: - rot: 3.141592653589793 rad - pos: 34.5,18.5 + pos: -33.5,40.5 parent: 2 type: Transform - - uid: 10824 + - uid: 5348 components: - rot: 3.141592653589793 rad - pos: 33.5,18.5 + pos: -32.5,40.5 parent: 2 type: Transform - - uid: 10825 + - uid: 5349 components: - rot: 3.141592653589793 rad - pos: 32.5,18.5 + pos: -31.5,40.5 parent: 2 type: Transform - - uid: 10826 + - uid: 5350 components: - rot: 3.141592653589793 rad - pos: 31.5,18.5 + pos: -30.5,40.5 parent: 2 type: Transform - - uid: 10827 + - uid: 5351 components: - rot: 3.141592653589793 rad - pos: 31.5,20.5 + pos: -29.5,40.5 parent: 2 type: Transform - - uid: 10828 + - uid: 5352 components: - rot: 3.141592653589793 rad - pos: 31.5,21.5 + pos: 31.5,19.5 parent: 2 type: Transform - - uid: 10829 + - uid: 5353 components: - rot: 3.141592653589793 rad - pos: 31.5,22.5 + pos: -29.5,39.5 parent: 2 type: Transform - - uid: 10830 + - uid: 5354 components: - rot: 3.141592653589793 rad - pos: 31.5,23.5 + pos: -29.5,38.5 parent: 2 type: Transform - - uid: 10831 + - uid: 5355 components: - rot: 3.141592653589793 rad - pos: 31.5,24.5 + pos: -29.5,37.5 parent: 2 type: Transform - - uid: 10832 + - uid: 5356 components: - rot: 3.141592653589793 rad - pos: 31.5,25.5 + pos: -29.5,36.5 parent: 2 type: Transform - - uid: 10833 + - uid: 5357 components: - rot: 3.141592653589793 rad - pos: 31.5,26.5 + pos: -29.5,35.5 parent: 2 type: Transform - - uid: 10834 + - uid: 5358 components: - rot: 3.141592653589793 rad - pos: 31.5,27.5 + pos: -29.5,34.5 parent: 2 type: Transform - - uid: 10836 + - uid: 5359 components: - rot: 3.141592653589793 rad - pos: 30.5,27.5 + pos: -28.5,34.5 parent: 2 type: Transform - - uid: 10837 + - uid: 5360 components: - rot: 3.141592653589793 rad - pos: 29.5,27.5 + pos: -28.5,34.5 parent: 2 type: Transform - - uid: 10838 + - uid: 5361 components: - rot: 3.141592653589793 rad - pos: 28.5,27.5 + pos: -27.5,34.5 parent: 2 type: Transform - - uid: 10839 + - uid: 5362 components: - - pos: 27.5,29.5 + - rot: 3.141592653589793 rad + pos: -26.5,34.5 parent: 2 type: Transform - - uid: 10842 + - uid: 5363 components: - rot: 3.141592653589793 rad - pos: 26.5,29.5 + pos: -20.5,29.5 parent: 2 type: Transform - - uid: 10843 + - uid: 5364 components: - rot: 3.141592653589793 rad - pos: 25.5,29.5 + pos: -20.5,30.5 parent: 2 type: Transform - - uid: 10844 + - uid: 5365 components: - rot: 3.141592653589793 rad - pos: 24.5,29.5 + pos: -20.5,31.5 parent: 2 type: Transform - - uid: 10845 + - uid: 5366 components: - rot: 3.141592653589793 rad - pos: 23.5,29.5 + pos: -18.5,29.5 parent: 2 type: Transform - - uid: 10846 + - uid: 5367 components: - rot: 3.141592653589793 rad - pos: 22.5,29.5 + pos: -17.5,29.5 parent: 2 type: Transform - - uid: 10847 + - uid: 5368 components: - rot: 3.141592653589793 rad - pos: 21.5,29.5 + pos: -16.5,29.5 parent: 2 type: Transform - - uid: 10848 + - uid: 5369 components: - rot: 3.141592653589793 rad - pos: 20.5,29.5 + pos: -15.5,29.5 parent: 2 type: Transform - - uid: 10849 + - uid: 5370 components: - rot: 3.141592653589793 rad - pos: 19.5,29.5 + pos: -14.5,29.5 parent: 2 type: Transform - - uid: 10850 + - uid: 5371 components: - rot: 3.141592653589793 rad - pos: 18.5,29.5 + pos: -13.5,29.5 parent: 2 type: Transform - - uid: 10851 + - uid: 5372 components: - rot: 3.141592653589793 rad - pos: 17.5,29.5 + pos: -12.5,29.5 parent: 2 type: Transform - - uid: 10852 + - uid: 5373 components: - rot: 3.141592653589793 rad - pos: 16.5,29.5 + pos: -12.5,30.5 parent: 2 type: Transform - - uid: 10853 + - uid: 5374 components: - rot: 3.141592653589793 rad - pos: 15.5,29.5 + pos: -11.5,30.5 parent: 2 type: Transform - - uid: 10854 + - uid: 5375 components: - rot: 3.141592653589793 rad - pos: 14.5,29.5 + pos: -10.5,30.5 parent: 2 type: Transform - - uid: 10855 + - uid: 5376 components: - rot: 3.141592653589793 rad - pos: 13.5,29.5 + pos: -9.5,30.5 parent: 2 type: Transform - - uid: 10856 + - uid: 5377 components: - rot: 3.141592653589793 rad - pos: 12.5,29.5 + pos: -8.5,30.5 parent: 2 type: Transform - - uid: 10857 + - uid: 5378 components: - rot: 3.141592653589793 rad - pos: 11.5,29.5 + pos: -7.5,30.5 parent: 2 type: Transform - - uid: 10858 + - uid: 5379 components: - rot: 3.141592653589793 rad - pos: 10.5,29.5 + pos: 0.5,27.5 parent: 2 type: Transform - - uid: 10859 + - uid: 5380 components: - rot: 3.141592653589793 rad - pos: 9.5,29.5 + pos: 0.5,26.5 parent: 2 type: Transform - - uid: 10860 + - uid: 5381 components: - rot: 3.141592653589793 rad - pos: 8.5,29.5 + pos: 1.5,26.5 parent: 2 type: Transform - - uid: 10861 + - uid: 5382 components: - rot: 3.141592653589793 rad - pos: 7.5,29.5 + pos: 4.5,26.5 parent: 2 type: Transform - - uid: 10862 + - uid: 5383 components: - rot: 3.141592653589793 rad - pos: 6.5,29.5 + pos: 5.5,26.5 parent: 2 type: Transform - - uid: 10863 + - uid: 5384 components: - rot: 3.141592653589793 rad - pos: 5.5,29.5 + pos: 5.5,25.5 parent: 2 type: Transform - - uid: 10864 + - uid: 5385 components: - rot: 3.141592653589793 rad - pos: 5.5,28.5 + pos: 5.5,24.5 parent: 2 type: Transform - - uid: 10865 + - uid: 5386 components: - rot: 3.141592653589793 rad - pos: 5.5,27.5 + pos: 5.5,23.5 parent: 2 type: Transform - - uid: 10866 + - uid: 5387 components: - rot: 3.141592653589793 rad - pos: 13.5,28.5 + pos: 5.5,22.5 parent: 2 type: Transform - - uid: 10867 + - uid: 5388 components: - rot: 3.141592653589793 rad - pos: 21.5,28.5 + pos: 5.5,21.5 parent: 2 type: Transform - - uid: 11061 + - uid: 5389 components: - - rot: 1.5707963267948966 rad - pos: -0.5,-26.5 + - rot: 3.141592653589793 rad + pos: 5.5,20.5 parent: 2 type: Transform - - uid: 11158 + - uid: 5390 components: - - rot: 1.5707963267948966 rad - pos: -19.5,-41.5 + - rot: 3.141592653589793 rad + pos: 5.5,19.5 parent: 2 type: Transform - - uid: 11170 + - uid: 5391 components: - - rot: 1.5707963267948966 rad - pos: -13.5,-33.5 + - rot: 3.141592653589793 rad + pos: 5.5,18.5 parent: 2 type: Transform - - uid: 11171 + - uid: 5392 components: - - rot: 1.5707963267948966 rad - pos: -12.5,-33.5 + - rot: 3.141592653589793 rad + pos: 5.5,17.5 parent: 2 type: Transform - - uid: 11172 + - uid: 5393 components: - - rot: 1.5707963267948966 rad - pos: -11.5,-33.5 + - rot: 3.141592653589793 rad + pos: 5.5,16.5 parent: 2 type: Transform - - uid: 11173 + - uid: 5394 components: - - rot: 1.5707963267948966 rad - pos: -10.5,-33.5 + - rot: 3.141592653589793 rad + pos: 5.5,15.5 parent: 2 type: Transform - - uid: 11174 + - uid: 5395 components: - - rot: 1.5707963267948966 rad - pos: -15.5,-33.5 + - rot: 3.141592653589793 rad + pos: 5.5,14.5 parent: 2 type: Transform - - uid: 11175 + - uid: 5396 components: - - rot: 1.5707963267948966 rad - pos: -16.5,-33.5 + - rot: 3.141592653589793 rad + pos: 3.5,14.5 parent: 2 type: Transform - - uid: 11176 + - uid: 5397 components: - - rot: 1.5707963267948966 rad - pos: -17.5,-33.5 + - rot: 3.141592653589793 rad + pos: 4.5,14.5 parent: 2 type: Transform - - uid: 11177 + - uid: 5398 components: - - rot: 1.5707963267948966 rad - pos: -18.5,-33.5 + - rot: 3.141592653589793 rad + pos: 3.5,13.5 parent: 2 type: Transform - - uid: 11178 + - uid: 5399 components: - - rot: 1.5707963267948966 rad - pos: -18.5,-32.5 + - rot: 3.141592653589793 rad + pos: 3.5,12.5 parent: 2 type: Transform - - uid: 11179 + - uid: 5400 components: - - rot: 1.5707963267948966 rad - pos: -18.5,-31.5 + - rot: 3.141592653589793 rad + pos: 3.5,11.5 parent: 2 type: Transform - - uid: 11180 + - uid: 5401 components: - - rot: 1.5707963267948966 rad - pos: -18.5,-30.5 + - rot: 3.141592653589793 rad + pos: 3.5,10.5 parent: 2 type: Transform - - uid: 11181 + - uid: 5402 components: - - rot: 1.5707963267948966 rad - pos: -19.5,-30.5 + - rot: 3.141592653589793 rad + pos: 3.5,9.5 parent: 2 type: Transform - - uid: 11182 + - uid: 5403 components: - - rot: 1.5707963267948966 rad - pos: -20.5,-30.5 + - rot: 3.141592653589793 rad + pos: 3.5,8.5 parent: 2 type: Transform - - uid: 11183 + - uid: 5404 components: - - rot: 1.5707963267948966 rad - pos: -21.5,-30.5 + - rot: 3.141592653589793 rad + pos: 3.5,7.5 parent: 2 type: Transform - - uid: 11185 + - uid: 5405 components: - - rot: 1.5707963267948966 rad - pos: -21.5,-28.5 + - rot: 3.141592653589793 rad + pos: 3.5,6.5 parent: 2 type: Transform - - uid: 11186 + - uid: 5406 components: - - rot: 1.5707963267948966 rad - pos: -21.5,-29.5 + - rot: 3.141592653589793 rad + pos: 2.5,6.5 parent: 2 type: Transform - - uid: 11187 + - uid: 5407 components: - - rot: 1.5707963267948966 rad - pos: -21.5,-27.5 + - rot: 3.141592653589793 rad + pos: 1.5,6.5 parent: 2 type: Transform - - uid: 11188 + - uid: 5408 components: - - rot: 1.5707963267948966 rad - pos: -22.5,-27.5 + - rot: 3.141592653589793 rad + pos: 0.5,6.5 parent: 2 type: Transform - - uid: 11189 + - uid: 5409 components: - - rot: 1.5707963267948966 rad - pos: -20.5,-34.5 + - rot: 3.141592653589793 rad + pos: 40.5,3.5 parent: 2 type: Transform - - uid: 11190 + - uid: 5410 components: - - rot: 1.5707963267948966 rad - pos: -19.5,-34.5 + - rot: 3.141592653589793 rad + pos: 40.5,4.5 parent: 2 type: Transform - - uid: 11191 + - uid: 5411 components: - - rot: 1.5707963267948966 rad - pos: -18.5,-34.5 + - rot: 3.141592653589793 rad + pos: 40.5,5.5 parent: 2 type: Transform - - uid: 11192 + - uid: 5412 components: - - rot: 1.5707963267948966 rad - pos: -16.5,-35.5 + - rot: 3.141592653589793 rad + pos: 40.5,6.5 parent: 2 type: Transform - - uid: 11193 + - uid: 5413 components: - - rot: 1.5707963267948966 rad - pos: -16.5,-36.5 + - rot: 3.141592653589793 rad + pos: 40.5,7.5 parent: 2 type: Transform - - uid: 11194 + - uid: 5414 components: - - rot: 1.5707963267948966 rad - pos: -16.5,-37.5 + - rot: 3.141592653589793 rad + pos: 40.5,8.5 parent: 2 type: Transform - - uid: 11195 + - uid: 5415 components: - - rot: 1.5707963267948966 rad - pos: -16.5,-38.5 + - rot: 3.141592653589793 rad + pos: 40.5,9.5 parent: 2 type: Transform - - uid: 11196 + - uid: 5416 components: - - rot: 1.5707963267948966 rad - pos: -16.5,-39.5 + - rot: 3.141592653589793 rad + pos: 40.5,10.5 parent: 2 type: Transform - - uid: 11197 + - uid: 5417 components: - - rot: 1.5707963267948966 rad - pos: -16.5,-40.5 + - rot: 3.141592653589793 rad + pos: 40.5,11.5 parent: 2 type: Transform - - uid: 11198 + - uid: 5418 components: - - rot: 1.5707963267948966 rad - pos: -16.5,-41.5 + - rot: 3.141592653589793 rad + pos: 41.5,11.5 parent: 2 type: Transform - - uid: 11199 + - uid: 5419 components: - - rot: 1.5707963267948966 rad - pos: -16.5,-42.5 + - rot: 3.141592653589793 rad + pos: 39.5,11.5 parent: 2 type: Transform - - uid: 11200 + - uid: 5420 components: - - rot: 1.5707963267948966 rad - pos: -16.5,-43.5 + - rot: 3.141592653589793 rad + pos: 39.5,12.5 parent: 2 type: Transform - - uid: 11201 + - uid: 5421 components: - - rot: 1.5707963267948966 rad - pos: -16.5,-44.5 + - rot: 3.141592653589793 rad + pos: 39.5,13.5 parent: 2 type: Transform - - uid: 11202 + - uid: 5422 components: - - rot: 1.5707963267948966 rad - pos: -16.5,-45.5 + - rot: 3.141592653589793 rad + pos: 39.5,14.5 parent: 2 type: Transform - - uid: 11203 + - uid: 5423 components: - - rot: 1.5707963267948966 rad - pos: -16.5,-46.5 + - rot: 3.141592653589793 rad + pos: 39.5,15.5 parent: 2 type: Transform - - uid: 11204 + - uid: 5424 components: - - rot: 1.5707963267948966 rad - pos: -19.5,-42.5 + - rot: 3.141592653589793 rad + pos: 38.5,15.5 parent: 2 type: Transform - - uid: 11205 + - uid: 5425 components: - - rot: 1.5707963267948966 rad - pos: -20.5,-42.5 + - rot: 3.141592653589793 rad + pos: 37.5,15.5 parent: 2 type: Transform - - uid: 11209 + - uid: 5426 components: - - rot: 1.5707963267948966 rad - pos: -22.5,-44.5 + - rot: 3.141592653589793 rad + pos: 36.5,15.5 parent: 2 type: Transform - - uid: 11210 + - uid: 5427 components: - - rot: 1.5707963267948966 rad - pos: -21.5,-44.5 + - rot: 3.141592653589793 rad + pos: 35.5,15.5 parent: 2 type: Transform - - uid: 11211 + - uid: 5428 components: - - rot: 1.5707963267948966 rad - pos: -20.5,-44.5 + - rot: 3.141592653589793 rad + pos: 35.5,16.5 parent: 2 type: Transform - - uid: 11212 + - uid: 5429 components: - - rot: 1.5707963267948966 rad - pos: -19.5,-35.5 + - rot: 3.141592653589793 rad + pos: 35.5,17.5 parent: 2 type: Transform - - uid: 11214 + - uid: 5430 components: - - rot: 1.5707963267948966 rad - pos: -20.5,-32.5 + - rot: 3.141592653589793 rad + pos: 35.5,18.5 parent: 2 type: Transform - - uid: 11215 + - uid: 5431 components: - - rot: 1.5707963267948966 rad - pos: -22.5,-32.5 + - rot: 3.141592653589793 rad + pos: 34.5,18.5 parent: 2 type: Transform - - uid: 11217 + - uid: 5432 components: - - rot: 1.5707963267948966 rad - pos: -6.5,-23.5 + - rot: 3.141592653589793 rad + pos: 33.5,18.5 parent: 2 type: Transform - - uid: 11219 + - uid: 5433 components: - - rot: 1.5707963267948966 rad - pos: -7.5,-29.5 + - rot: 3.141592653589793 rad + pos: 32.5,18.5 parent: 2 type: Transform - - uid: 11220 + - uid: 5434 components: - - rot: 1.5707963267948966 rad - pos: -7.5,-30.5 + - rot: 3.141592653589793 rad + pos: 31.5,18.5 parent: 2 type: Transform - - uid: 11221 + - uid: 5435 components: - - rot: 1.5707963267948966 rad - pos: -7.5,-31.5 + - rot: 3.141592653589793 rad + pos: 31.5,20.5 parent: 2 type: Transform - - uid: 11222 + - uid: 5436 components: - - rot: 1.5707963267948966 rad - pos: -7.5,-32.5 + - rot: 3.141592653589793 rad + pos: 31.5,21.5 parent: 2 type: Transform - - uid: 11223 + - uid: 5437 components: - - rot: 1.5707963267948966 rad - pos: -7.5,-33.5 + - rot: 3.141592653589793 rad + pos: 31.5,22.5 parent: 2 type: Transform - - uid: 11224 + - uid: 5438 components: - - rot: 1.5707963267948966 rad - pos: -8.5,-33.5 + - rot: 3.141592653589793 rad + pos: 31.5,23.5 parent: 2 type: Transform - - uid: 11227 + - uid: 5439 components: - - rot: 1.5707963267948966 rad - pos: -4.5,-22.5 + - rot: 3.141592653589793 rad + pos: 31.5,24.5 parent: 2 type: Transform - - uid: 11228 + - uid: 5440 components: - - rot: 1.5707963267948966 rad - pos: -1.5,-26.5 + - rot: 3.141592653589793 rad + pos: 31.5,25.5 parent: 2 type: Transform - - uid: 11604 + - uid: 5441 components: - - pos: 20.5,-17.5 + - rot: 3.141592653589793 rad + pos: 31.5,26.5 parent: 2 type: Transform - - uid: 11670 + - uid: 5442 components: - - pos: 14.5,-20.5 + - rot: 3.141592653589793 rad + pos: 31.5,27.5 parent: 2 type: Transform - - uid: 11744 + - uid: 5443 components: - - pos: 20.5,-20.5 + - rot: 3.141592653589793 rad + pos: 30.5,27.5 parent: 2 type: Transform - - uid: 11756 + - uid: 5444 components: - - pos: 21.5,-20.5 + - rot: 3.141592653589793 rad + pos: 29.5,27.5 parent: 2 type: Transform - - uid: 11877 + - uid: 5445 components: - - pos: 42.5,-3.5 + - rot: 3.141592653589793 rad + pos: 28.5,27.5 parent: 2 type: Transform - - uid: 11885 + - uid: 5446 components: - - pos: 42.5,-1.5 + - pos: 27.5,29.5 parent: 2 type: Transform - - uid: 12280 + - uid: 5447 components: - - pos: 42.5,-11.5 + - rot: 3.141592653589793 rad + pos: 26.5,29.5 parent: 2 type: Transform - - uid: 12283 + - uid: 5448 components: - - pos: 42.5,-9.5 + - rot: 3.141592653589793 rad + pos: 25.5,29.5 parent: 2 type: Transform - - uid: 12561 + - uid: 5449 components: - - rot: -1.5707963267948966 rad - pos: 15.5,-20.5 + - rot: 3.141592653589793 rad + pos: 24.5,29.5 parent: 2 type: Transform - - uid: 12562 + - uid: 5450 components: - - rot: -1.5707963267948966 rad - pos: 15.5,-21.5 + - rot: 3.141592653589793 rad + pos: 23.5,29.5 parent: 2 type: Transform - - uid: 13121 + - uid: 5451 components: - - pos: 17.5,-15.5 + - rot: 3.141592653589793 rad + pos: 22.5,29.5 parent: 2 type: Transform - - uid: 13145 + - uid: 5452 components: - - pos: -46.5,44.5 + - rot: 3.141592653589793 rad + pos: 21.5,29.5 parent: 2 type: Transform - - uid: 13158 + - uid: 5453 components: - - pos: 17.5,-16.5 + - rot: 3.141592653589793 rad + pos: 20.5,29.5 parent: 2 type: Transform - - uid: 13165 + - uid: 5454 components: - - pos: 17.5,-17.5 + - rot: 3.141592653589793 rad + pos: 19.5,29.5 parent: 2 type: Transform - - uid: 13559 + - uid: 5455 components: - - pos: 4.5,6.5 + - rot: 3.141592653589793 rad + pos: 18.5,29.5 parent: 2 type: Transform - - uid: 13560 + - uid: 5456 components: - - pos: 4.5,5.5 + - rot: 3.141592653589793 rad + pos: 17.5,29.5 parent: 2 type: Transform - - uid: 13561 + - uid: 5457 components: - - pos: 4.5,4.5 + - rot: 3.141592653589793 rad + pos: 16.5,29.5 parent: 2 type: Transform - - uid: 13565 + - uid: 5458 components: - - pos: 5.5,4.5 + - rot: 3.141592653589793 rad + pos: 15.5,29.5 parent: 2 type: Transform - - uid: 13566 + - uid: 5459 components: - - pos: 5.5,4.5 + - rot: 3.141592653589793 rad + pos: 14.5,29.5 parent: 2 type: Transform - - uid: 13567 + - uid: 5460 components: - - pos: 6.5,4.5 + - rot: 3.141592653589793 rad + pos: 13.5,29.5 parent: 2 type: Transform - - uid: 13569 + - uid: 5461 components: - - pos: 7.5,4.5 + - rot: 3.141592653589793 rad + pos: 12.5,29.5 parent: 2 type: Transform - - uid: 13570 + - uid: 5462 components: - - pos: 8.5,4.5 + - rot: 3.141592653589793 rad + pos: 11.5,29.5 parent: 2 type: Transform - - uid: 13596 + - uid: 5463 components: - - pos: -0.5,-10.5 + - rot: 3.141592653589793 rad + pos: 10.5,29.5 parent: 2 type: Transform - - uid: 13635 + - uid: 5464 components: - rot: 3.141592653589793 rad - pos: -37.5,23.5 + pos: 9.5,29.5 parent: 2 type: Transform - - uid: 13985 + - uid: 5465 components: - - pos: -36.5,3.5 + - rot: 3.141592653589793 rad + pos: 8.5,29.5 parent: 2 type: Transform - - uid: 14217 + - uid: 5466 components: - - pos: -27.5,-21.5 + - rot: 3.141592653589793 rad + pos: 7.5,29.5 parent: 2 type: Transform - - uid: 14361 + - uid: 5467 components: - - pos: -27.5,18.5 + - rot: 3.141592653589793 rad + pos: 6.5,29.5 parent: 2 type: Transform - - uid: 14362 + - uid: 5468 components: - - pos: -27.5,19.5 + - rot: 3.141592653589793 rad + pos: 5.5,29.5 parent: 2 type: Transform - - uid: 14363 + - uid: 5469 components: - - pos: -27.5,20.5 + - rot: 3.141592653589793 rad + pos: 5.5,28.5 parent: 2 type: Transform - - uid: 14364 + - uid: 5470 components: - - pos: -27.5,21.5 + - rot: 3.141592653589793 rad + pos: 5.5,27.5 parent: 2 type: Transform - - uid: 14365 + - uid: 5471 components: - - pos: -27.5,22.5 + - rot: 3.141592653589793 rad + pos: 13.5,28.5 parent: 2 type: Transform - - uid: 14366 + - uid: 5472 components: - - pos: -28.5,22.5 + - rot: 3.141592653589793 rad + pos: 21.5,28.5 parent: 2 type: Transform - - uid: 14367 + - uid: 5473 components: - - pos: -29.5,22.5 + - rot: 1.5707963267948966 rad + pos: -0.5,-26.5 parent: 2 type: Transform - - uid: 14471 + - uid: 5474 components: - - pos: -27.5,-22.5 + - rot: 1.5707963267948966 rad + pos: -19.5,-41.5 parent: 2 type: Transform - - uid: 14766 + - uid: 5475 components: - - pos: -31.5,-17.5 + - rot: 1.5707963267948966 rad + pos: -13.5,-33.5 parent: 2 type: Transform - - uid: 15042 + - uid: 5476 components: - - pos: -37.5,-18.5 + - rot: 1.5707963267948966 rad + pos: -12.5,-33.5 parent: 2 type: Transform - - uid: 15068 + - uid: 5477 components: - - pos: -1.5,-22.5 + - rot: 1.5707963267948966 rad + pos: -11.5,-33.5 parent: 2 type: Transform - - uid: 15085 + - uid: 5478 components: - - pos: 7.5,-20.5 + - rot: 1.5707963267948966 rad + pos: -10.5,-33.5 parent: 2 type: Transform - - uid: 15090 + - uid: 5479 components: - - pos: -0.5,-11.5 + - rot: 1.5707963267948966 rad + pos: -15.5,-33.5 parent: 2 type: Transform - - uid: 15109 + - uid: 5480 components: - - pos: -32.5,-2.5 + - rot: 1.5707963267948966 rad + pos: -16.5,-33.5 parent: 2 type: Transform - - uid: 15110 + - uid: 5481 components: - - pos: -31.5,-2.5 + - rot: 1.5707963267948966 rad + pos: -17.5,-33.5 parent: 2 type: Transform - - uid: 15111 + - uid: 5482 components: - - pos: -30.5,-2.5 + - rot: 1.5707963267948966 rad + pos: -18.5,-33.5 parent: 2 type: Transform - - uid: 15112 + - uid: 5483 components: - - pos: -29.5,-2.5 + - rot: 1.5707963267948966 rad + pos: -18.5,-32.5 parent: 2 type: Transform - - uid: 15113 + - uid: 5484 components: - - pos: -28.5,-2.5 + - rot: 1.5707963267948966 rad + pos: -18.5,-31.5 parent: 2 type: Transform - - uid: 15114 + - uid: 5485 components: - - pos: -27.5,-2.5 + - rot: 1.5707963267948966 rad + pos: -18.5,-30.5 parent: 2 type: Transform - - uid: 15115 + - uid: 5486 components: - - pos: -27.5,-1.5 + - rot: 1.5707963267948966 rad + pos: -19.5,-30.5 parent: 2 type: Transform - - uid: 15116 + - uid: 5487 components: - - pos: -27.5,-0.5 + - rot: 1.5707963267948966 rad + pos: -20.5,-30.5 parent: 2 type: Transform - - uid: 15170 + - uid: 5488 components: - - pos: -27.5,-18.5 + - rot: 1.5707963267948966 rad + pos: -21.5,-30.5 parent: 2 type: Transform - - uid: 15171 + - uid: 5489 components: - - pos: -20.5,-19.5 + - rot: 1.5707963267948966 rad + pos: -21.5,-28.5 parent: 2 type: Transform - - uid: 15183 + - uid: 5490 components: - - pos: 1.5,-19.5 + - rot: 1.5707963267948966 rad + pos: -21.5,-29.5 parent: 2 type: Transform - - uid: 15189 + - uid: 5491 components: - - pos: -22.5,-18.5 + - rot: 1.5707963267948966 rad + pos: -21.5,-27.5 parent: 2 type: Transform - - uid: 15208 + - uid: 5492 components: - - pos: -0.5,-8.5 + - rot: 1.5707963267948966 rad + pos: -22.5,-27.5 parent: 2 type: Transform - - uid: 15213 + - uid: 5493 components: - - pos: 1.5,-18.5 + - rot: 1.5707963267948966 rad + pos: -20.5,-34.5 parent: 2 type: Transform - - uid: 15221 + - uid: 5494 components: - - pos: -26.5,-18.5 + - rot: 1.5707963267948966 rad + pos: -19.5,-34.5 parent: 2 type: Transform - - uid: 15229 + - uid: 5495 components: - - pos: 4.5,-20.5 + - rot: 1.5707963267948966 rad + pos: -18.5,-34.5 parent: 2 type: Transform - - uid: 15231 + - uid: 5496 components: - - pos: -27.5,-27.5 + - rot: 1.5707963267948966 rad + pos: -16.5,-35.5 parent: 2 type: Transform - - uid: 15232 + - uid: 5497 components: - - pos: -20.5,-18.5 + - rot: 1.5707963267948966 rad + pos: -16.5,-36.5 parent: 2 type: Transform - - uid: 15236 + - uid: 5498 components: - - pos: -0.5,-9.5 + - rot: 1.5707963267948966 rad + pos: -16.5,-37.5 parent: 2 type: Transform - - uid: 15248 + - uid: 5499 components: - - pos: -24.5,-18.5 + - rot: 1.5707963267948966 rad + pos: -16.5,-38.5 parent: 2 type: Transform - - uid: 15257 + - uid: 5500 components: - - pos: 5.5,-20.5 + - rot: 1.5707963267948966 rad + pos: -16.5,-39.5 parent: 2 type: Transform - - uid: 15283 + - uid: 5501 components: - - pos: -0.5,-6.5 + - rot: 1.5707963267948966 rad + pos: -16.5,-40.5 parent: 2 type: Transform - - uid: 15284 + - uid: 5502 components: - - pos: -37.5,-19.5 + - rot: 1.5707963267948966 rad + pos: -16.5,-41.5 parent: 2 type: Transform - - uid: 15285 + - uid: 5503 components: - - pos: 3.5,-20.5 + - rot: 1.5707963267948966 rad + pos: -16.5,-42.5 parent: 2 type: Transform - - uid: 15286 + - uid: 5504 components: - - pos: -41.5,-20.5 + - rot: 1.5707963267948966 rad + pos: -16.5,-43.5 parent: 2 type: Transform - - uid: 15288 + - uid: 5505 components: - - pos: -40.5,-20.5 + - rot: 1.5707963267948966 rad + pos: -16.5,-44.5 parent: 2 type: Transform - - uid: 15291 + - uid: 5506 components: - - pos: -1.5,-6.5 + - rot: 1.5707963267948966 rad + pos: -16.5,-45.5 parent: 2 type: Transform - - uid: 15293 + - uid: 5507 components: - - pos: -23.5,-18.5 + - rot: 1.5707963267948966 rad + pos: -16.5,-46.5 parent: 2 type: Transform - - uid: 15294 + - uid: 5508 components: - - pos: 2.5,-19.5 + - rot: 1.5707963267948966 rad + pos: -19.5,-42.5 parent: 2 type: Transform - - uid: 15299 + - uid: 5509 components: - - pos: 1.5,-13.5 + - rot: 1.5707963267948966 rad + pos: -20.5,-42.5 parent: 2 type: Transform - - uid: 15325 + - uid: 5510 components: - - pos: -52.5,11.5 + - rot: 1.5707963267948966 rad + pos: -22.5,-44.5 parent: 2 type: Transform - - uid: 15382 + - uid: 5511 components: - - pos: -0.5,-12.5 + - rot: 1.5707963267948966 rad + pos: -21.5,-44.5 parent: 2 type: Transform - - uid: 15384 + - uid: 5512 components: - - pos: 0.5,-13.5 + - rot: 1.5707963267948966 rad + pos: -20.5,-44.5 parent: 2 type: Transform - - uid: 15402 + - uid: 5513 components: - - pos: 1.5,-14.5 + - rot: 1.5707963267948966 rad + pos: -19.5,-35.5 parent: 2 type: Transform - - uid: 15422 + - uid: 5514 components: - - rot: 3.141592653589793 rad - pos: -38.5,22.5 + - rot: 1.5707963267948966 rad + pos: -20.5,-32.5 parent: 2 type: Transform - - uid: 15430 + - uid: 5515 components: - - pos: -3.5,-13.5 + - rot: 1.5707963267948966 rad + pos: -22.5,-32.5 parent: 2 type: Transform - - uid: 15435 + - uid: 5516 components: - - pos: -1.5,-13.5 + - rot: -1.5707963267948966 rad + pos: -7.5,-33.5 parent: 2 type: Transform - - uid: 15437 + - uid: 5517 components: - - pos: -2.5,-13.5 + - rot: 1.5707963267948966 rad + pos: -7.5,-29.5 parent: 2 type: Transform - - uid: 15504 + - uid: 5518 components: - rot: -1.5707963267948966 rad - pos: 6.5,3.5 + pos: -7.5,-32.5 parent: 2 type: Transform - - uid: 15529 + - uid: 5519 components: - - pos: -25.5,-18.5 + - rot: 1.5707963267948966 rad + pos: -7.5,-31.5 parent: 2 type: Transform - - uid: 15531 + - uid: 5520 components: - - pos: -43.5,-20.5 + - rot: -1.5707963267948966 rad + pos: -7.5,-30.5 parent: 2 type: Transform - - uid: 15532 + - uid: 5521 components: - - pos: -42.5,-20.5 + - rot: 1.5707963267948966 rad + pos: -8.5,-33.5 parent: 2 type: Transform - - uid: 15534 + - uid: 5522 components: - - pos: 2.5,-20.5 + - rot: 1.5707963267948966 rad + pos: -4.5,-22.5 parent: 2 type: Transform - - uid: 15536 + - uid: 5523 components: - - pos: 6.5,-20.5 + - rot: 1.5707963267948966 rad + pos: -1.5,-26.5 parent: 2 type: Transform - - uid: 15539 + - uid: 5524 components: - - pos: -27.5,-20.5 + - pos: 20.5,-17.5 parent: 2 type: Transform - - uid: 15544 + - uid: 5525 components: - - pos: -29.5,-20.5 + - pos: 14.5,-20.5 parent: 2 type: Transform - - uid: 15545 + - uid: 5526 components: - - pos: -28.5,-20.5 + - pos: 20.5,-20.5 parent: 2 type: Transform - - uid: 15549 + - uid: 5527 components: - - pos: -39.5,-20.5 + - pos: 21.5,-20.5 parent: 2 type: Transform - - uid: 15564 + - uid: 5528 components: - - pos: -43.5,-18.5 + - pos: 42.5,-3.5 parent: 2 type: Transform - - uid: 15565 + - uid: 5529 components: - - pos: -43.5,-19.5 + - pos: 42.5,-1.5 parent: 2 type: Transform - - uid: 15577 + - uid: 5530 components: - - pos: -21.5,-18.5 + - pos: 42.5,-11.5 parent: 2 type: Transform - - uid: 15589 + - uid: 5531 components: - - pos: -37.5,-20.5 + - pos: 42.5,-9.5 parent: 2 type: Transform - - uid: 15590 + - uid: 5532 components: - - pos: -28.5,-17.5 + - rot: -1.5707963267948966 rad + pos: 15.5,-20.5 parent: 2 type: Transform - - uid: 15596 + - uid: 5533 components: - - pos: -38.5,-20.5 + - rot: -1.5707963267948966 rad + pos: 15.5,-21.5 parent: 2 type: Transform - - uid: 15597 + - uid: 5534 components: - - pos: -31.5,-20.5 + - pos: 17.5,-15.5 parent: 2 type: Transform - - uid: 15599 + - uid: 5535 components: - - pos: -30.5,-20.5 + - pos: -46.5,44.5 parent: 2 type: Transform - - uid: 15887 + - uid: 5536 components: - - pos: 1.5,-10.5 + - pos: 17.5,-16.5 parent: 2 type: Transform - - uid: 15889 + - uid: 5537 components: - - pos: 2.5,-10.5 + - pos: 17.5,-17.5 parent: 2 type: Transform - - uid: 15953 + - uid: 5538 components: - - pos: 4.5,-37.5 + - pos: 4.5,6.5 parent: 2 type: Transform - - uid: 15954 + - uid: 5539 components: - - pos: 4.5,-38.5 + - pos: 4.5,5.5 parent: 2 type: Transform - - uid: 15959 + - uid: 5540 components: - - pos: 7.5,-38.5 + - pos: 4.5,4.5 parent: 2 type: Transform - - uid: 15991 + - uid: 5541 components: - - pos: 28.5,25.5 + - pos: 5.5,4.5 parent: 2 type: Transform - - uid: 15992 + - uid: 5542 components: - - pos: 28.5,24.5 + - pos: 5.5,4.5 parent: 2 type: Transform - - uid: 16146 + - uid: 5543 components: - - pos: -35.5,3.5 + - pos: 6.5,4.5 parent: 2 type: Transform - - uid: 16147 + - uid: 5544 components: - - pos: -35.5,2.5 + - pos: 7.5,4.5 parent: 2 type: Transform - - uid: 16148 + - uid: 5545 components: - - pos: -35.5,1.5 + - pos: 8.5,4.5 parent: 2 type: Transform - - uid: 16149 + - uid: 5546 components: - - pos: -35.5,0.5 + - pos: -0.5,-10.5 parent: 2 type: Transform - - uid: 16150 + - uid: 5547 components: - - pos: -35.5,-0.5 + - rot: 3.141592653589793 rad + pos: -37.5,23.5 parent: 2 type: Transform - - uid: 16151 + - uid: 5548 components: - - pos: -35.5,-1.5 + - pos: -36.5,3.5 parent: 2 type: Transform - - uid: 16152 + - uid: 5549 components: - - pos: -35.5,-2.5 + - pos: -27.5,-21.5 parent: 2 type: Transform - - uid: 16169 + - uid: 5550 components: - - pos: -25.5,-27.5 + - pos: -27.5,18.5 parent: 2 type: Transform - - uid: 16187 + - uid: 5551 components: - - pos: 0.5,25.5 + - pos: -27.5,19.5 parent: 2 type: Transform - - uid: 16188 + - uid: 5552 components: - - pos: -0.5,25.5 + - pos: -27.5,20.5 parent: 2 type: Transform - - uid: 16224 + - uid: 5553 components: - - pos: 18.5,-8.5 + - pos: -27.5,21.5 parent: 2 type: Transform - - uid: 16225 + - uid: 5554 components: - - pos: 18.5,-9.5 + - pos: -27.5,22.5 parent: 2 type: Transform - - uid: 16226 + - uid: 5555 components: - - pos: 19.5,-9.5 + - pos: -28.5,22.5 parent: 2 type: Transform - - uid: 16227 + - uid: 5556 components: - - pos: 20.5,-9.5 + - pos: -29.5,22.5 parent: 2 type: Transform - - uid: 16228 + - uid: 5557 components: - - pos: 21.5,-9.5 + - pos: -27.5,-22.5 parent: 2 type: Transform - - uid: 16229 + - uid: 5558 components: - - pos: 17.5,-9.5 + - pos: -31.5,-17.5 parent: 2 type: Transform - - uid: 16237 + - uid: 5559 components: - - pos: 2.5,-38.5 + - pos: -37.5,-18.5 parent: 2 type: Transform - - uid: 16298 + - uid: 5560 components: - - pos: -53.5,11.5 + - pos: -1.5,-22.5 parent: 2 type: Transform - - uid: 16299 + - uid: 5561 components: - - pos: -52.5,13.5 + - pos: 7.5,-20.5 parent: 2 type: Transform - - uid: 16300 + - uid: 5562 components: - - pos: -53.5,13.5 + - pos: -0.5,-11.5 parent: 2 type: Transform - - uid: 16301 + - uid: 5563 components: - - pos: -52.5,19.5 + - pos: -32.5,-2.5 parent: 2 type: Transform - - uid: 16302 + - uid: 5564 components: - - pos: -53.5,19.5 + - pos: -31.5,-2.5 parent: 2 type: Transform - - uid: 16303 + - uid: 5565 components: - - pos: -52.5,21.5 + - pos: -30.5,-2.5 parent: 2 type: Transform - - uid: 16304 + - uid: 5566 components: - - pos: -53.5,21.5 + - pos: -29.5,-2.5 parent: 2 type: Transform - - uid: 16307 + - uid: 5567 components: - - pos: -28.5,-27.5 + - pos: -28.5,-2.5 parent: 2 type: Transform - - uid: 16605 + - uid: 5568 components: - - pos: -26.5,-27.5 + - pos: -27.5,-2.5 parent: 2 type: Transform - - uid: 16640 + - uid: 5569 components: - - pos: 41.5,5.5 + - pos: -27.5,-1.5 parent: 2 type: Transform - - uid: 16641 + - uid: 5570 components: - - pos: 10.5,30.5 + - pos: -27.5,-0.5 parent: 2 type: Transform - - uid: 16736 + - uid: 5571 components: - - pos: -27.5,-24.5 + - pos: -27.5,-18.5 parent: 2 type: Transform - - uid: 16758 + - uid: 5572 components: - - pos: 42.5,-17.5 + - pos: -20.5,-19.5 parent: 2 type: Transform - - uid: 16759 + - uid: 5573 components: - - pos: 42.5,-19.5 + - pos: 1.5,-19.5 parent: 2 type: Transform - - uid: 16861 + - uid: 5574 components: - - pos: -46.5,3.5 + - pos: -22.5,-18.5 parent: 2 type: Transform - - uid: 16862 + - uid: 5575 components: - - pos: -46.5,1.5 + - pos: -0.5,-8.5 parent: 2 type: Transform - - uid: 16863 + - uid: 5576 components: - - pos: -46.5,0.5 + - pos: 1.5,-18.5 parent: 2 type: Transform - - uid: 16950 + - uid: 5577 components: - - pos: 17.5,20.5 + - pos: -26.5,-18.5 parent: 2 type: Transform - - uid: 16963 + - uid: 5578 components: - - pos: -15.5,-48.5 + - pos: 4.5,-20.5 parent: 2 type: Transform - - uid: 16964 + - uid: 5579 components: - - pos: -15.5,-49.5 + - pos: -27.5,-27.5 parent: 2 type: Transform - - uid: 16966 + - uid: 5580 components: - - pos: -21.5,-46.5 + - pos: -20.5,-18.5 parent: 2 type: Transform - - uid: 16971 + - uid: 5581 components: - - pos: 23.5,-20.5 + - pos: -0.5,-9.5 parent: 2 type: Transform - - uid: 16972 + - uid: 5582 components: - - pos: 24.5,-20.5 + - pos: -24.5,-18.5 parent: 2 type: Transform - - uid: 17016 + - uid: 5583 components: - - pos: 25.5,-20.5 + - pos: 5.5,-20.5 parent: 2 type: Transform - - uid: 17020 + - uid: 5584 components: - - pos: 25.5,-21.5 + - pos: -0.5,-6.5 parent: 2 type: Transform - - uid: 17021 + - uid: 5585 components: - - pos: 25.5,-22.5 + - pos: -37.5,-19.5 parent: 2 type: Transform - - uid: 17033 + - uid: 5586 components: - - pos: 25.5,-19.5 + - pos: 3.5,-20.5 parent: 2 type: Transform - - uid: 17034 + - uid: 5587 components: - - pos: 25.5,-18.5 + - pos: -41.5,-20.5 parent: 2 type: Transform - - uid: 17138 + - uid: 5588 components: - - pos: 9.5,-37.5 + - pos: -40.5,-20.5 parent: 2 type: Transform - - uid: 17148 + - uid: 5589 components: - - pos: 10.5,-45.5 + - pos: -1.5,-6.5 parent: 2 type: Transform - - uid: 17149 + - uid: 5590 components: - - pos: 10.5,-46.5 + - pos: -23.5,-18.5 parent: 2 type: Transform - - uid: 17150 + - uid: 5591 components: - - pos: 11.5,-45.5 + - pos: 2.5,-19.5 parent: 2 type: Transform - - uid: 17151 + - uid: 5592 components: - - pos: 11.5,-46.5 + - pos: 1.5,-13.5 parent: 2 type: Transform - - uid: 17152 + - uid: 5593 components: - - pos: 12.5,-46.5 + - pos: -52.5,11.5 parent: 2 type: Transform - - uid: 17153 + - uid: 5594 components: - - pos: 13.5,-46.5 + - pos: -0.5,-12.5 parent: 2 type: Transform - - uid: 17154 + - uid: 5595 components: - - pos: 14.5,-46.5 + - pos: 0.5,-13.5 parent: 2 type: Transform - - uid: 17155 + - uid: 5596 components: - - pos: 15.5,-46.5 + - pos: 1.5,-14.5 parent: 2 type: Transform - - uid: 17156 + - uid: 5597 components: - - pos: 16.5,-46.5 + - rot: 3.141592653589793 rad + pos: -38.5,22.5 parent: 2 type: Transform - - uid: 17157 + - uid: 5598 components: - - pos: 17.5,-46.5 + - pos: -3.5,-13.5 parent: 2 type: Transform - - uid: 17158 + - uid: 5599 components: - - pos: 18.5,-46.5 + - pos: -1.5,-13.5 parent: 2 type: Transform - - uid: 17159 + - uid: 5600 components: - - pos: 19.5,-46.5 + - pos: -2.5,-13.5 parent: 2 type: Transform - - uid: 17168 + - uid: 5601 components: - - pos: 9.5,-38.5 + - rot: -1.5707963267948966 rad + pos: 6.5,3.5 parent: 2 type: Transform - - uid: 17169 + - uid: 5602 components: - - pos: 10.5,-36.5 + - pos: -25.5,-18.5 parent: 2 type: Transform - - uid: 17170 + - uid: 5603 components: - - pos: 10.5,-37.5 + - pos: -43.5,-20.5 parent: 2 type: Transform - - uid: 17171 + - uid: 5604 components: - - pos: 10.5,-38.5 + - pos: -42.5,-20.5 parent: 2 type: Transform - - uid: 17172 + - uid: 5605 components: - - pos: 10.5,-39.5 + - pos: 2.5,-20.5 parent: 2 type: Transform - - uid: 17173 + - uid: 5606 components: - - pos: 10.5,-40.5 + - pos: 6.5,-20.5 parent: 2 type: Transform - - uid: 17174 + - uid: 5607 components: - - pos: 10.5,-42.5 + - pos: -27.5,-20.5 parent: 2 type: Transform - - uid: 17175 + - uid: 5608 components: - - pos: 10.5,-43.5 + - pos: -29.5,-20.5 parent: 2 type: Transform - - uid: 17186 + - uid: 5609 components: - - pos: 20.5,-46.5 + - pos: -28.5,-20.5 parent: 2 type: Transform - - uid: 17187 + - uid: 5610 components: - - pos: -22.5,-46.5 + - pos: -39.5,-20.5 parent: 2 type: Transform -- proto: CellRechargerCircuitboard - entities: - - uid: 6814 + - uid: 5611 components: - - pos: -10.3003845,-26.329548 + - pos: -43.5,-18.5 parent: 2 type: Transform -- proto: Chair - entities: - - uid: 13 + - uid: 5612 components: - - rot: -1.5707963267948966 rad - pos: -7.5,4.5 + - pos: -43.5,-19.5 parent: 2 type: Transform - - uid: 66 + - uid: 5613 components: - - rot: 1.5707963267948966 rad - pos: 37.5,-6.5 + - pos: -21.5,-18.5 parent: 2 type: Transform - - uid: 69 + - uid: 5614 components: - - rot: 1.5707963267948966 rad - pos: -12.5,4.5 + - pos: -37.5,-20.5 parent: 2 type: Transform - - uid: 134 + - uid: 5615 components: - - rot: -1.5707963267948966 rad - pos: -10.5,3.5 + - pos: -28.5,-17.5 parent: 2 type: Transform - - uid: 136 + - uid: 5616 components: - - rot: 1.5707963267948966 rad - pos: -12.5,3.5 + - pos: -38.5,-20.5 parent: 2 type: Transform - - uid: 181 + - uid: 5617 components: - - pos: -21.5,-2.5 + - pos: -31.5,-20.5 parent: 2 type: Transform - - uid: 207 + - uid: 5618 components: - - rot: -1.5707963267948966 rad - pos: -10.5,4.5 + - pos: -30.5,-20.5 parent: 2 type: Transform - - uid: 283 + - uid: 5619 components: - - rot: 3.141592653589793 rad - pos: -8.5,3.5 + - pos: 1.5,-10.5 parent: 2 type: Transform - - uid: 874 + - uid: 5620 components: - - pos: -29.5,-4.5 + - pos: 2.5,-10.5 parent: 2 type: Transform - - uid: 886 + - uid: 5621 components: - - pos: -22.5,-2.5 + - pos: 4.5,-37.5 parent: 2 type: Transform - - uid: 887 + - uid: 5622 components: - - pos: -23.5,-2.5 + - pos: 4.5,-38.5 parent: 2 type: Transform - - uid: 1389 + - uid: 5623 components: - - rot: 1.5707963267948966 rad - pos: 37.5,-7.5 + - pos: 7.5,-38.5 parent: 2 type: Transform - - uid: 1402 + - uid: 5624 components: - - rot: 1.5707963267948966 rad - pos: 37.5,-13.5 + - pos: 28.5,25.5 parent: 2 type: Transform - - uid: 1411 + - uid: 5625 components: - - pos: 36.5,-18.5 + - pos: 28.5,24.5 parent: 2 type: Transform - - uid: 1412 + - uid: 5626 components: - - pos: 31.5,-18.5 + - pos: -35.5,3.5 parent: 2 type: Transform - - uid: 1625 + - uid: 5627 components: - - pos: 31.5,-18.5 + - pos: -35.5,2.5 parent: 2 type: Transform - - uid: 2132 + - uid: 5628 components: - - rot: -1.5707963267948966 rad - pos: -49.5,-2.5 + - pos: -35.5,1.5 parent: 2 type: Transform - - uid: 2669 + - uid: 5629 components: - - pos: -10.5,-39.5 + - pos: -35.5,0.5 parent: 2 type: Transform - - uid: 2670 + - uid: 5630 components: - - rot: 1.5707963267948966 rad - pos: -11.5,-40.5 + - pos: -35.5,-0.5 parent: 2 type: Transform - - uid: 3013 + - uid: 5631 components: - - rot: -1.5707963267948966 rad - pos: -49.5,-4.5 + - pos: -35.5,-1.5 parent: 2 type: Transform - - uid: 3016 + - uid: 5632 components: - - rot: 1.5707963267948966 rad - pos: -51.5,-4.5 + - pos: -35.5,-2.5 parent: 2 type: Transform - - uid: 3017 + - uid: 5633 components: - - rot: 1.5707963267948966 rad - pos: -51.5,-2.5 + - pos: -25.5,-27.5 parent: 2 type: Transform - - uid: 3188 + - uid: 5634 components: - - rot: -1.5707963267948966 rad - pos: -59.5,-1.5 + - pos: 0.5,25.5 parent: 2 type: Transform - - uid: 3189 + - uid: 5635 components: - - rot: -1.5707963267948966 rad - pos: -59.5,-0.5 + - pos: -0.5,25.5 parent: 2 type: Transform - - uid: 3191 + - uid: 5636 components: - - rot: -1.5707963267948966 rad - pos: -57.5,-3.5 + - pos: 18.5,-8.5 parent: 2 type: Transform - - uid: 3783 + - uid: 5637 components: - - rot: 1.5707963267948966 rad - pos: 19.5,-5.5 + - pos: 18.5,-9.5 parent: 2 type: Transform - - uid: 4566 + - uid: 5638 components: - - rot: 3.141592653589793 rad - pos: -47.5,40.5 + - pos: 19.5,-9.5 parent: 2 type: Transform - - uid: 4765 + - uid: 5639 components: - - rot: -1.5707963267948966 rad - pos: 15.5,4.5 + - pos: 20.5,-9.5 parent: 2 type: Transform - - uid: 4766 + - uid: 5640 components: - - rot: -1.5707963267948966 rad - pos: 15.5,5.5 + - pos: 21.5,-9.5 parent: 2 type: Transform - - uid: 4816 + - uid: 5641 components: - - rot: 3.141592653589793 rad - pos: 32.5,-22.5 + - pos: 17.5,-9.5 parent: 2 type: Transform - - uid: 4817 + - uid: 5642 components: - - rot: 3.141592653589793 rad - pos: 35.5,-22.5 + - pos: 2.5,-38.5 parent: 2 type: Transform - - uid: 4976 + - uid: 5643 components: - - rot: 3.141592653589793 rad - pos: 35.5,3.5 + - pos: -53.5,11.5 parent: 2 type: Transform - - uid: 4990 + - uid: 5644 components: - - rot: 3.141592653589793 rad - pos: 36.5,3.5 + - pos: -52.5,13.5 parent: 2 type: Transform - - uid: 5023 + - uid: 5645 components: - - pos: 31.5,13.5 + - pos: -53.5,13.5 parent: 2 type: Transform - - uid: 5024 + - uid: 5646 components: - - pos: 32.5,13.5 + - pos: -52.5,19.5 parent: 2 type: Transform - - uid: 5025 + - uid: 5647 components: - - pos: 36.5,13.5 + - pos: -53.5,19.5 parent: 2 type: Transform - - uid: 5031 + - uid: 5648 components: - - pos: 37.5,13.5 + - pos: -52.5,21.5 parent: 2 type: Transform - - uid: 5689 + - uid: 5649 components: - - pos: -21.5,43.5 + - pos: -53.5,21.5 parent: 2 type: Transform - - uid: 5691 + - uid: 5650 components: - - rot: 3.141592653589793 rad - pos: -20.5,39.5 + - pos: -28.5,-27.5 parent: 2 type: Transform - - uid: 5692 + - uid: 5651 components: - - rot: 3.141592653589793 rad - pos: -21.5,39.5 + - pos: -26.5,-27.5 parent: 2 type: Transform - - uid: 5695 + - uid: 5652 components: - - rot: 3.141592653589793 rad - pos: -25.5,39.5 + - pos: 41.5,5.5 parent: 2 type: Transform - - uid: 5696 + - uid: 5653 components: - - rot: 3.141592653589793 rad - pos: -26.5,39.5 + - pos: 10.5,30.5 parent: 2 type: Transform - - uid: 6822 + - uid: 5654 components: - - rot: -1.5707963267948966 rad - pos: -45.5,13.5 + - pos: -27.5,-24.5 parent: 2 type: Transform - - uid: 6823 + - uid: 5655 components: - - rot: -1.5707963267948966 rad - pos: -45.5,12.5 + - pos: 42.5,-17.5 parent: 2 type: Transform - - uid: 6824 + - uid: 5656 components: - - rot: -1.5707963267948966 rad - pos: -45.5,11.5 + - pos: 42.5,-19.5 parent: 2 type: Transform - - uid: 6825 + - uid: 5657 components: - - rot: -1.5707963267948966 rad - pos: -45.5,10.5 + - pos: -46.5,3.5 parent: 2 type: Transform - - uid: 6826 + - uid: 5658 components: - - rot: -1.5707963267948966 rad - pos: -45.5,21.5 + - pos: -46.5,1.5 parent: 2 type: Transform - - uid: 6827 + - uid: 5659 components: - - rot: -1.5707963267948966 rad - pos: -45.5,22.5 + - pos: -46.5,0.5 parent: 2 type: Transform - - uid: 6829 + - uid: 5660 components: - - rot: -1.5707963267948966 rad - pos: -45.5,23.5 + - pos: 17.5,20.5 parent: 2 type: Transform - - uid: 6830 + - uid: 5661 components: - - rot: -1.5707963267948966 rad - pos: -45.5,20.5 + - pos: -15.5,-48.5 parent: 2 type: Transform - - uid: 6832 + - uid: 5662 components: - - rot: -1.5707963267948966 rad - pos: -45.5,9.5 + - pos: -15.5,-49.5 parent: 2 type: Transform - - uid: 6849 + - uid: 5663 components: - - rot: -1.5707963267948966 rad - pos: -45.5,19.5 + - pos: -21.5,-46.5 parent: 2 type: Transform - - uid: 10708 + - uid: 5664 components: - - rot: 3.141592653589793 rad - pos: -27.5,39.5 + - pos: 23.5,-20.5 parent: 2 type: Transform - - uid: 10710 + - uid: 5665 components: - - rot: 3.141592653589793 rad - pos: -19.5,39.5 + - pos: 24.5,-20.5 parent: 2 type: Transform - - uid: 10711 + - uid: 5666 components: - - rot: 3.141592653589793 rad - pos: -19.5,38.5 + - pos: 25.5,-20.5 parent: 2 type: Transform - - uid: 10712 + - uid: 5667 components: - - rot: 3.141592653589793 rad - pos: -20.5,38.5 + - pos: 25.5,-21.5 parent: 2 type: Transform - - uid: 10713 + - uid: 5668 components: - - rot: 3.141592653589793 rad - pos: -21.5,38.5 + - pos: 25.5,-22.5 parent: 2 type: Transform - - uid: 10714 + - uid: 5669 components: - - rot: 3.141592653589793 rad - pos: -25.5,38.5 + - pos: 25.5,-19.5 parent: 2 type: Transform - - uid: 10715 + - uid: 5670 components: - - rot: 3.141592653589793 rad - pos: -26.5,38.5 + - pos: 25.5,-18.5 parent: 2 type: Transform - - uid: 10716 + - uid: 5671 components: - - rot: 3.141592653589793 rad - pos: -27.5,38.5 + - pos: 9.5,-37.5 parent: 2 type: Transform - - uid: 11650 + - uid: 5672 components: - - pos: -15.5,-7.5 + - pos: 10.5,-45.5 parent: 2 type: Transform - - uid: 11677 + - uid: 5673 components: - - rot: 3.141592653589793 rad - pos: -15.5,-9.5 + - pos: 10.5,-46.5 parent: 2 type: Transform - - uid: 11794 + - uid: 5674 components: - - pos: -37.5,47.5 + - pos: 11.5,-45.5 parent: 2 type: Transform - - uid: 12149 + - uid: 5675 components: - - rot: 1.5707963267948966 rad - pos: -10.5,1.5 + - pos: 11.5,-46.5 parent: 2 type: Transform - - uid: 12150 + - uid: 5676 components: - - rot: -1.5707963267948966 rad - pos: -8.5,1.5 + - pos: 12.5,-46.5 parent: 2 type: Transform - - uid: 12211 + - uid: 5677 components: - - rot: -1.5707963267948966 rad - pos: -48.5,49.5 + - pos: 13.5,-46.5 parent: 2 type: Transform - - uid: 12217 + - uid: 5678 components: - - pos: -49.5,50.5 + - pos: 14.5,-46.5 parent: 2 type: Transform - - uid: 12218 + - uid: 5679 components: - - pos: -50.5,50.5 + - pos: 15.5,-46.5 parent: 2 type: Transform - - uid: 12219 + - uid: 5680 components: - - pos: -51.5,50.5 + - pos: 16.5,-46.5 parent: 2 type: Transform - - uid: 12222 + - uid: 5681 components: - - rot: -1.5707963267948966 rad - pos: -48.5,48.5 + - pos: 17.5,-46.5 parent: 2 type: Transform - - uid: 12230 + - uid: 5682 components: - - rot: -1.5707963267948966 rad - pos: -48.5,47.5 + - pos: 18.5,-46.5 parent: 2 type: Transform - - uid: 12231 + - uid: 5683 components: - - rot: 1.5707963267948966 rad - pos: -52.5,47.5 + - pos: 19.5,-46.5 parent: 2 type: Transform - - uid: 12232 + - uid: 5684 components: - - rot: 1.5707963267948966 rad - pos: -52.5,48.5 + - pos: 9.5,-38.5 parent: 2 type: Transform - - uid: 12233 + - uid: 5685 components: - - rot: 1.5707963267948966 rad - pos: -52.5,49.5 + - pos: 10.5,-36.5 parent: 2 type: Transform - - uid: 12234 + - uid: 5686 components: - - rot: 3.141592653589793 rad - pos: -51.5,46.5 + - pos: 10.5,-37.5 parent: 2 type: Transform - - uid: 12235 + - uid: 5687 components: - - rot: 3.141592653589793 rad - pos: -50.5,46.5 + - pos: 10.5,-38.5 parent: 2 type: Transform - - uid: 12237 + - uid: 5688 components: - - rot: 3.141592653589793 rad - pos: -49.5,46.5 + - pos: 10.5,-39.5 parent: 2 type: Transform - - uid: 12276 + - uid: 5689 components: - - pos: -1.5,-8.5 + - pos: 10.5,-40.5 parent: 2 type: Transform - - uid: 12277 + - uid: 5690 components: - - rot: 3.141592653589793 rad - pos: -1.5,-10.5 + - pos: 10.5,-42.5 parent: 2 type: Transform - - uid: 12307 + - uid: 5691 components: - - pos: -58.5,-2.5 + - pos: 10.5,-43.5 parent: 2 type: Transform - - uid: 12918 + - uid: 5692 components: - - pos: -13.5,-15.5 + - pos: 20.5,-46.5 parent: 2 type: Transform - - uid: 12919 + - uid: 5693 components: - - rot: 3.141592653589793 rad - pos: -13.5,-19.5 + - pos: -22.5,-46.5 parent: 2 type: Transform - - uid: 12920 + - uid: 5694 components: - - rot: 3.141592653589793 rad - pos: -14.5,-19.5 + - rot: 1.5707963267948966 rad + pos: -8.5,-39.5 parent: 2 type: Transform - - uid: 13087 + - uid: 5695 components: - rot: -1.5707963267948966 rad - pos: -16.5,-21.5 + pos: -8.5,-43.5 parent: 2 type: Transform - - uid: 15739 + - uid: 5696 components: - - rot: 1.5707963267948966 rad - pos: -50.5,0.5 + - rot: -1.5707963267948966 rad + pos: 1.5,-52.5 parent: 2 type: Transform -- proto: ChairFolding - entities: - - uid: 330 + - uid: 5697 components: - - rot: 3.141592653589793 rad - pos: 2.415972,-10.23035 + - rot: -1.5707963267948966 rad + pos: 1.5,-53.5 parent: 2 type: Transform - - uid: 980 + - uid: 5698 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-38.5 + parent: 2 + type: Transform + - uid: 5699 components: - rot: -1.5707963267948966 rad - pos: -35.747646,-13.674477 + pos: -8.5,-42.5 parent: 2 type: Transform - - uid: 1220 + - uid: 5700 components: - - rot: 1.5707963267948966 rad - pos: -21.5,-15.5 + - rot: -1.5707963267948966 rad + pos: 2.5,-53.5 parent: 2 type: Transform - - uid: 1223 + - uid: 5701 components: - - pos: -13.583773,-4.5641017 + - rot: -1.5707963267948966 rad + pos: 3.5,-53.5 parent: 2 type: Transform - - uid: 1462 + - uid: 5702 components: - rot: -1.5707963267948966 rad - pos: -35.67909,-12.40797 + pos: 3.5,-52.5 parent: 2 type: Transform - - uid: 1488 + - uid: 5703 components: - - rot: 1.5707963267948966 rad - pos: -37.36659,-13.455574 + - rot: -1.5707963267948966 rad + pos: 2.5,-54.5 parent: 2 type: Transform - - uid: 1684 + - uid: 5704 components: - - pos: -33.5,16.5 + - rot: -1.5707963267948966 rad + pos: 3.5,-51.5 parent: 2 type: Transform - - uid: 1731 + - uid: 5705 components: - - pos: -32.5,16.5 + - rot: -1.5707963267948966 rad + pos: 3.5,-49.5 parent: 2 type: Transform - - uid: 2520 + - uid: 5706 components: - - pos: 10.666075,-30.613314 + - rot: -1.5707963267948966 rad + pos: 3.5,-47.5 parent: 2 type: Transform - - uid: 2598 + - uid: 5707 components: - - pos: 3.211309,-6.6789384 + - rot: -1.5707963267948966 rad + pos: 3.5,-45.5 parent: 2 type: Transform - - uid: 4974 + - uid: 5708 components: - - rot: 3.141592653589793 rad - pos: 15.543688,-20.216572 + - rot: -1.5707963267948966 rad + pos: 3.5,-43.5 parent: 2 type: Transform - - uid: 6589 + - uid: 5709 components: - - rot: 1.5707963267948966 rad - pos: 9.728575,-31.144934 + - rot: -1.5707963267948966 rad + pos: 3.5,-41.5 parent: 2 type: Transform - - uid: 10691 + - uid: 5710 components: - rot: 3.141592653589793 rad - pos: 10.353575,-32.12478 + pos: -5.5,-51.5 parent: 2 type: Transform - - uid: 14012 + - uid: 5711 components: - - rot: -1.5707963267948966 rad - pos: 4.5,-7.5 + - rot: 3.141592653589793 rad + pos: -6.5,-51.5 parent: 2 type: Transform - - uid: 14349 + - uid: 5712 components: - - rot: -1.5707963267948966 rad - pos: -37.80179,18.20842 + - rot: 3.141592653589793 rad + pos: -7.5,-51.5 parent: 2 type: Transform - - uid: 15480 + - uid: 5713 components: - - rot: 1.5707963267948966 rad - pos: 14.6138735,28.666597 + - rot: 3.141592653589793 rad + pos: -8.5,-51.5 parent: 2 type: Transform - - uid: 15731 + - uid: 5714 components: - - rot: 0.16572801669570403 rad - pos: -61.542484,-6.996279 + - rot: 3.141592653589793 rad + pos: -8.5,-50.5 parent: 2 type: Transform - - uid: 15741 + - uid: 5715 components: - - rot: -1.5707963267948966 rad - pos: -60.085514,-8.287038 + - rot: 3.141592653589793 rad + pos: -9.5,-49.5 parent: 2 type: Transform - - uid: 15988 + - uid: 5716 components: - rot: 3.141592653589793 rad - pos: -47.495026,-14.251597 + pos: -9.5,-48.5 parent: 2 type: Transform - - uid: 16820 + - uid: 5717 components: - - pos: -11.5,-23.5 + - pos: -7.5,-23.5 parent: 2 type: Transform - - uid: 16988 + - uid: 5718 components: - - pos: 15.68679,29.406694 + - pos: -6.5,-23.5 parent: 2 type: Transform - - uid: 17013 + - uid: 5719 components: - - pos: 6.4115915,23.493132 + - pos: -5.5,-40.5 parent: 2 type: Transform - - uid: 17014 + - uid: 5720 components: - - rot: 3.141592653589793 rad - pos: 6.557425,21.731491 + - pos: -6.5,-40.5 parent: 2 type: Transform -- proto: ChairFoldingSpawnFolded - entities: - - uid: 1321 + - uid: 5721 components: - - pos: 25.525442,5.5289335 + - pos: -7.5,-40.5 parent: 2 type: Transform -- proto: ChairOfficeDark - entities: - - uid: 328 + - uid: 5722 components: - - rot: -1.5707963267948966 rad - pos: 5.453184,-4.092387 + - pos: -7.5,-40.5 parent: 2 type: Transform - - uid: 433 + - uid: 5723 components: - - pos: -31.5,-12.5 + - pos: -4.5,-38.5 parent: 2 type: Transform - - uid: 522 + - uid: 5724 components: - - rot: 1.5707963267948966 rad - pos: 15.60216,-33.817013 + - pos: -4.5,-38.5 parent: 2 type: Transform - - uid: 1064 + - uid: 5725 components: - - rot: -1.5707963267948966 rad - pos: -27.595509,-5.7275686 + - pos: -4.5,-39.5 parent: 2 type: Transform - - uid: 1209 + - uid: 5726 components: - - pos: -19.652205,22.521683 + - pos: -7.5,-36.5 parent: 2 type: Transform - - uid: 1259 + - uid: 5727 components: - - pos: -13.658073,21.511776 + - pos: -6.5,-36.5 parent: 2 type: Transform - - uid: 1264 + - uid: 5728 components: - - rot: 1.5707963267948966 rad - pos: 27.5,5.5 + - pos: -9.5,-48.5 parent: 2 type: Transform - - uid: 1453 + - uid: 5729 components: - - rot: 3.141592653589793 rad - pos: -29.142384,-6.126006 + - pos: -9.5,-49.5 parent: 2 type: Transform - - uid: 1992 +- proto: CellRechargerCircuitboard + entities: + - uid: 5730 components: - - rot: -1.5707963267948966 rad - pos: -8.5,-16.5 + - pos: -10.3003845,-26.329548 parent: 2 type: Transform - - uid: 2054 +- proto: Chair + entities: + - uid: 5731 components: - - rot: 1.5707963267948966 rad - pos: 6.5383797,-17.353676 + - rot: -1.5707963267948966 rad + pos: -7.5,4.5 parent: 2 type: Transform - - uid: 2058 + - uid: 5732 components: - - pos: 6.9758797,-15.414829 + - rot: 1.5707963267948966 rad + pos: 37.5,-6.5 parent: 2 type: Transform - - uid: 3212 + - uid: 5733 components: - - rot: 1.2265667478230338 rad - pos: -36.25269,-6.3051906 + - rot: 1.5707963267948966 rad + pos: -12.5,4.5 parent: 2 type: Transform - - uid: 3717 + - uid: 5734 components: - - rot: 3.141592653589793 rad - pos: -12.5,-74.5 + - rot: -1.5707963267948966 rad + pos: -10.5,3.5 parent: 2 type: Transform - - uid: 3834 + - uid: 5735 components: - - rot: -1.5707963267948966 rad - pos: 18.5,-3.5 + - rot: 1.5707963267948966 rad + pos: -12.5,3.5 parent: 2 type: Transform - - uid: 3885 + - uid: 5736 components: - - pos: -12.5,-78.5 + - pos: -21.5,-2.5 parent: 2 type: Transform - - uid: 4177 + - uid: 5737 components: - - rot: 1.5707963267948966 rad - pos: -20.5,-73.5 + - rot: -1.5707963267948966 rad + pos: -10.5,4.5 parent: 2 type: Transform - - uid: 4179 + - uid: 5738 components: - rot: 3.141592653589793 rad - pos: -21.5,-74.5 + pos: -8.5,3.5 parent: 2 type: Transform - - uid: 4180 + - uid: 5739 components: - - pos: -21.5,-78.5 + - pos: -29.5,-4.5 parent: 2 type: Transform - - uid: 4181 + - uid: 5740 components: - - rot: 1.5707963267948966 rad - pos: -20.5,-78.5 + - pos: -22.5,-2.5 parent: 2 type: Transform - - uid: 4310 + - uid: 5741 components: - - pos: 18.5,10.5 + - pos: -23.5,-2.5 parent: 2 type: Transform - - uid: 4311 + - uid: 5742 components: - - pos: 15.5,10.5 + - rot: 1.5707963267948966 rad + pos: 37.5,-7.5 parent: 2 type: Transform - - uid: 4365 + - uid: 5743 components: - rot: 1.5707963267948966 rad - pos: 27.5,12.5 + pos: 37.5,-13.5 parent: 2 type: Transform - - uid: 4753 + - uid: 5744 components: - - pos: 11.5,7.5 + - pos: 36.5,-18.5 parent: 2 type: Transform - - uid: 4755 + - uid: 5745 components: - - rot: 3.141592653589793 rad - pos: -22.365059,-7.3702555 + - pos: 31.5,-18.5 parent: 2 type: Transform - - uid: 5531 + - uid: 5746 components: - - rot: -1.5707963267948966 rad - pos: -8.5,32.5 + - pos: 31.5,-18.5 parent: 2 type: Transform - - uid: 5553 + - uid: 5747 components: - rot: -1.5707963267948966 rad - pos: -8.5,33.5 + pos: -49.5,-2.5 parent: 2 type: Transform - - uid: 5554 + - uid: 5748 components: - - rot: 1.5707963267948966 rad - pos: -11.5,33.5 + - pos: -10.5,-39.5 parent: 2 type: Transform - - uid: 5555 + - uid: 5749 components: - rot: 1.5707963267948966 rad - pos: -11.5,34.5 + pos: -11.5,-40.5 parent: 2 type: Transform - - uid: 5557 + - uid: 5750 components: - rot: -1.5707963267948966 rad - pos: -8.5,34.5 + pos: -49.5,-4.5 parent: 2 type: Transform - - uid: 5558 + - uid: 5751 components: - rot: 1.5707963267948966 rad - pos: -11.5,32.5 + pos: -51.5,-4.5 parent: 2 type: Transform - - uid: 6680 + - uid: 5752 components: - - pos: 1.5,38.5 + - rot: 1.5707963267948966 rad + pos: -51.5,-2.5 parent: 2 type: Transform - - uid: 8396 + - uid: 5753 components: - rot: -1.5707963267948966 rad - pos: 21.38911,-5.868959 - parent: 2 - type: Transform - - uid: 9578 - components: - - rot: 1.5707963267948966 rad - pos: -35.5,33.5 + pos: -59.5,-1.5 parent: 2 type: Transform - - uid: 15917 + - uid: 5754 components: - - rot: 3.141592653589793 rad - pos: 24.5,-19.5 + - rot: -1.5707963267948966 rad + pos: -59.5,-0.5 parent: 2 type: Transform - - uid: 16805 + - uid: 5755 components: - rot: -1.5707963267948966 rad - pos: 12.64448,-8.406829 + pos: -57.5,-3.5 parent: 2 type: Transform - - uid: 16808 + - uid: 5756 components: - rot: 1.5707963267948966 rad - pos: 8.5,-3.5 + pos: 19.5,-5.5 parent: 2 type: Transform -- proto: ChairOfficeLight - entities: - - uid: 805 + - uid: 5757 components: - rot: 3.141592653589793 rad - pos: -28.077522,2.7313628 + pos: -47.5,40.5 parent: 2 type: Transform - - uid: 1208 + - uid: 5758 components: - - rot: 3.141592653589793 rad - pos: -19.266788,20.770468 + - rot: -1.5707963267948966 rad + pos: 15.5,4.5 parent: 2 type: Transform - - uid: 1738 + - uid: 5759 components: - - pos: -2.6649227,-32.512672 + - rot: -1.5707963267948966 rad + pos: 15.5,5.5 parent: 2 type: Transform - - uid: 2301 + - uid: 5760 components: - - rot: 1.5707963267948966 rad - pos: -11.200975,-29.84575 + - rot: 3.141592653589793 rad + pos: 32.5,-22.5 parent: 2 type: Transform - - uid: 2879 + - uid: 5761 components: - - rot: 1.5707963267948966 rad - pos: 4.671968,-39.39453 + - rot: 3.141592653589793 rad + pos: 35.5,-22.5 parent: 2 type: Transform - - uid: 4269 + - uid: 5762 components: - rot: 3.141592653589793 rad - pos: -31.5,10.5 + pos: 35.5,3.5 parent: 2 type: Transform - - uid: 4502 + - uid: 5763 components: - - rot: 1.5707963267948966 rad - pos: 7.5,26.5 + - rot: 3.141592653589793 rad + pos: 36.5,3.5 parent: 2 type: Transform - - uid: 4560 + - uid: 5764 components: - - pos: 22.5,25.5 + - pos: 31.5,13.5 parent: 2 type: Transform - - uid: 5559 + - uid: 5765 components: - - rot: 0.638550877571106 rad - pos: -10.009502,35.599583 + - pos: 32.5,13.5 parent: 2 type: Transform - - uid: 6620 + - uid: 5766 components: - - pos: -48.5,41.5 + - pos: 36.5,13.5 parent: 2 type: Transform - - uid: 9442 + - uid: 5767 components: - - rot: -1.5707963267948966 rad - pos: 10.5,22.5 + - pos: 37.5,13.5 parent: 2 type: Transform - - uid: 12342 + - uid: 5768 components: - - rot: 1.5707963267948966 rad - pos: 8.5,22.5 + - pos: -21.5,43.5 parent: 2 type: Transform - - uid: 15144 + - uid: 5769 components: - - rot: -1.5707963267948966 rad - pos: -12.5,43.5 + - rot: 3.141592653589793 rad + pos: -20.5,39.5 parent: 2 type: Transform - - uid: 15146 + - uid: 5770 components: - - rot: -1.5707963267948966 rad - pos: -10.5,41.5 + - rot: 3.141592653589793 rad + pos: -21.5,39.5 parent: 2 type: Transform - - uid: 15153 + - uid: 5771 components: - rot: 3.141592653589793 rad - pos: -10.5,43.5 + pos: -25.5,39.5 parent: 2 type: Transform - - uid: 15855 + - uid: 5772 components: - - rot: 1.5707963267948966 rad - pos: -34.578865,29.158278 + - rot: 3.141592653589793 rad + pos: -26.5,39.5 parent: 2 type: Transform -- proto: ChairWood - entities: - - uid: 8 + - uid: 5773 components: - rot: -1.5707963267948966 rad - pos: -9.5,-2.5 + pos: -45.5,13.5 parent: 2 type: Transform - - uid: 27 + - uid: 5774 components: - - rot: 3.141592653589793 rad - pos: -10.5,-3.5 + - rot: -1.5707963267948966 rad + pos: -45.5,12.5 parent: 2 type: Transform - - uid: 38 + - uid: 5775 components: - rot: -1.5707963267948966 rad - pos: -5.6117735,-10.606748 - parent: 2 - type: Transform - - uid: 82 - components: - - rot: 1.5707963267948966 rad - pos: -7.3305235,-10.335726 - parent: 2 - type: Transform - - uid: 505 - components: - - rot: 1.5707963267948966 rad - pos: 28.5,-3.5 + pos: -45.5,11.5 parent: 2 type: Transform - - uid: 643 + - uid: 5776 components: - rot: -1.5707963267948966 rad - pos: -19.679546,9.418754 - parent: 2 - type: Transform - - uid: 645 - components: - - pos: -20.752462,10.336058 + pos: -45.5,10.5 parent: 2 type: Transform - - uid: 1168 + - uid: 5777 components: - rot: -1.5707963267948966 rad - pos: 30.5,-3.5 + pos: -45.5,21.5 parent: 2 type: Transform - - uid: 1192 + - uid: 5778 components: - - pos: -6.5,23.5 + - rot: -1.5707963267948966 rad + pos: -45.5,22.5 parent: 2 type: Transform - - uid: 1195 + - uid: 5779 components: - - rot: 3.141592653589793 rad - pos: -8.5,22.5 + - rot: -1.5707963267948966 rad + pos: -45.5,23.5 parent: 2 type: Transform - - uid: 1196 + - uid: 5780 components: - - rot: 1.5707963267948966 rad - pos: -9.5,23.5 + - rot: -1.5707963267948966 rad + pos: -45.5,20.5 parent: 2 type: Transform - - uid: 1197 + - uid: 5781 components: - rot: -1.5707963267948966 rad - pos: -5.5,22.5 + pos: -45.5,9.5 parent: 2 type: Transform - - uid: 1675 + - uid: 5782 components: - rot: -1.5707963267948966 rad - pos: 30.5,-2.5 + pos: -45.5,19.5 parent: 2 type: Transform - - uid: 1681 + - uid: 5783 components: - - rot: 1.5707963267948966 rad - pos: 33.5,-2.5 + - rot: 3.141592653589793 rad + pos: -27.5,39.5 parent: 2 type: Transform - - uid: 1775 + - uid: 5784 components: - - rot: -1.5707963267948966 rad - pos: 35.5,-4.5 + - rot: 3.141592653589793 rad + pos: -19.5,39.5 parent: 2 type: Transform - - uid: 3497 + - uid: 5785 components: - - rot: 1.5707963267948966 rad - pos: 33.5,-4.5 + - rot: 3.141592653589793 rad + pos: -19.5,38.5 parent: 2 type: Transform - - uid: 4169 + - uid: 5786 components: - - rot: -1.5707963267948966 rad - pos: 35.5,-2.5 + - rot: 3.141592653589793 rad + pos: -20.5,38.5 parent: 2 type: Transform - - uid: 4276 + - uid: 5787 components: - - rot: 1.5707963267948966 rad - pos: -36.5,11.5 + - rot: 3.141592653589793 rad + pos: -21.5,38.5 parent: 2 type: Transform - - uid: 4277 + - uid: 5788 components: - - rot: -1.5707963267948966 rad - pos: -33.5,11.5 + - rot: 3.141592653589793 rad + pos: -25.5,38.5 parent: 2 type: Transform - - uid: 4291 + - uid: 5789 components: - - pos: -33.5,14.5 + - rot: 3.141592653589793 rad + pos: -26.5,38.5 parent: 2 type: Transform - - uid: 4520 + - uid: 5790 components: - - rot: -1.5707963267948966 rad - pos: 9.5,26.5 + - rot: 3.141592653589793 rad + pos: -27.5,38.5 parent: 2 type: Transform - - uid: 5368 + - uid: 5791 components: - - rot: 1.5707963267948966 rad - pos: -45.5,25.5 + - pos: -15.5,-7.5 parent: 2 type: Transform - - uid: 5513 + - uid: 5792 components: - rot: 3.141592653589793 rad - pos: -1.5,31.5 + pos: -15.5,-9.5 parent: 2 type: Transform - - uid: 5514 + - uid: 5793 components: - - pos: -1.5,33.5 + - pos: -37.5,47.5 parent: 2 type: Transform - - uid: 5516 + - uid: 5794 components: - - rot: 3.141592653589793 rad - pos: 1.5,29.5 + - rot: 1.5707963267948966 rad + pos: -10.5,1.5 parent: 2 type: Transform - - uid: 5517 + - uid: 5795 components: - rot: -1.5707963267948966 rad - pos: 2.5,30.5 + pos: -8.5,1.5 parent: 2 type: Transform - - uid: 5518 + - uid: 5796 components: - - pos: 1.5,31.5 + - rot: -1.5707963267948966 rad + pos: -48.5,49.5 parent: 2 type: Transform - - uid: 5668 + - uid: 5797 components: - - rot: 3.141592653589793 rad - pos: -25.5,40.5 + - pos: -49.5,50.5 parent: 2 type: Transform - - uid: 5670 + - uid: 5798 components: - - rot: 3.141592653589793 rad - pos: -26.5,40.5 + - pos: -50.5,50.5 parent: 2 type: Transform - - uid: 5687 + - uid: 5799 components: - - rot: 3.141592653589793 rad - pos: -21.5,40.5 + - pos: -51.5,50.5 parent: 2 type: Transform - - uid: 5688 + - uid: 5800 components: - - rot: 3.141592653589793 rad - pos: -20.5,40.5 + - rot: -1.5707963267948966 rad + pos: -48.5,48.5 parent: 2 type: Transform - - uid: 5858 + - uid: 5801 components: - - rot: 3.141592653589793 rad - pos: -48.5,25.5 + - rot: -1.5707963267948966 rad + pos: -48.5,47.5 parent: 2 type: Transform - - uid: 5860 + - uid: 5802 components: - rot: 1.5707963267948966 rad - pos: -50.5,27.5 + pos: -52.5,47.5 parent: 2 type: Transform - - uid: 5875 + - uid: 5803 components: - rot: 1.5707963267948966 rad - pos: -50.5,26.5 + pos: -52.5,48.5 parent: 2 type: Transform - - uid: 5877 + - uid: 5804 components: - - pos: -49.5,28.5 + - rot: 1.5707963267948966 rad + pos: -52.5,49.5 parent: 2 type: Transform - - uid: 5882 + - uid: 5805 components: - rot: 3.141592653589793 rad - pos: -49.5,25.5 + pos: -51.5,46.5 parent: 2 type: Transform - - uid: 5890 + - uid: 5806 components: - - rot: -1.5707963267948966 rad - pos: -47.5,26.5 + - rot: 3.141592653589793 rad + pos: -50.5,46.5 parent: 2 type: Transform - - uid: 5891 + - uid: 5807 components: - - rot: -1.5707963267948966 rad - pos: -47.5,27.5 + - rot: 3.141592653589793 rad + pos: -49.5,46.5 parent: 2 type: Transform - - uid: 5893 + - uid: 5808 components: - - pos: -44.5,26.5 + - pos: -1.5,-8.5 parent: 2 type: Transform - - uid: 5897 + - uid: 5809 components: - - pos: -48.5,28.5 + - rot: 3.141592653589793 rad + pos: -1.5,-10.5 parent: 2 type: Transform - - uid: 15233 + - uid: 5810 components: - - rot: 3.0847128947549542 rad - pos: -31.532867,-14.156494 + - pos: -58.5,-2.5 parent: 2 type: Transform -- proto: CheapLighter - entities: - - uid: 16990 + - uid: 5811 components: - - pos: 15.2492895,28.416422 + - pos: -13.5,-15.5 parent: 2 type: Transform -- proto: chem_master - entities: - - uid: 379 + - uid: 5812 components: - - pos: -20.5,7.5 + - rot: 3.141592653589793 rad + pos: -13.5,-19.5 parent: 2 type: Transform - - uid: 802 + - uid: 5813 components: - - pos: -27.5,3.5 + - rot: 3.141592653589793 rad + pos: -14.5,-19.5 parent: 2 type: Transform - - uid: 3106 + - uid: 5814 components: - - pos: 17.5,10.5 + - rot: -1.5707963267948966 rad + pos: -16.5,-21.5 parent: 2 type: Transform - - uid: 4257 + - uid: 5815 components: - - pos: 15.5,13.5 + - rot: 1.5707963267948966 rad + pos: -50.5,0.5 parent: 2 type: Transform -- proto: ChemicalPayload +- proto: ChairFolding entities: - - uid: 6722 + - uid: 5816 components: - - pos: 9.617371,21.476503 + - rot: 3.141592653589793 rad + pos: 2.415972,-10.23035 parent: 2 type: Transform -- proto: ChemistryEmptyBottle01 - entities: - - uid: 807 + - uid: 5817 components: - - pos: -28.317106,3.867569 + - rot: -1.5707963267948966 rad + pos: -35.747646,-13.674477 parent: 2 type: Transform - - uid: 810 + - uid: 5818 components: - - pos: -28.192106,3.76333 + - rot: 1.5707963267948966 rad + pos: -21.5,-15.5 parent: 2 type: Transform -- proto: ChemistryHotplate - entities: - - uid: 16953 + - uid: 5819 components: - - pos: 16.5,10.5 + - pos: -13.583773,-4.5641017 parent: 2 type: Transform -- proto: Cigar - entities: - - uid: 16882 + - uid: 5820 components: - - pos: -10.435092,-2.2350075 + - rot: -1.5707963267948966 rad + pos: -35.67909,-12.40797 parent: 2 type: Transform -- proto: Cigarette - entities: - - uid: 16869 + - uid: 5821 components: - - pos: -1.2400136,-9.542189 + - rot: 1.5707963267948966 rad + pos: -37.36659,-13.455574 parent: 2 type: Transform -- proto: CigaretteSpent - entities: - - uid: 15793 + - uid: 5822 components: - - pos: -49.604855,-0.48506254 + - pos: -33.5,16.5 parent: 2 type: Transform - - uid: 15794 + - uid: 5823 components: - - pos: -49.667355,-0.45381254 + - pos: -32.5,16.5 parent: 2 type: Transform - - uid: 15795 + - uid: 5824 components: - - pos: -49.854855,-0.36006254 + - pos: 10.666075,-30.613314 parent: 2 type: Transform - - uid: 16779 + - uid: 5825 components: - - pos: -30.9229,19.499895 + - pos: 3.211309,-6.6789384 parent: 2 type: Transform - - uid: 16780 + - uid: 5826 components: - - rot: -1.5707963267948966 rad - pos: -30.558315,19.197601 + - rot: 3.141592653589793 rad + pos: 15.543688,-20.216572 parent: 2 type: Transform - - uid: 16781 + - uid: 5827 components: - - pos: -32.787483,14.005925 + - rot: 1.5707963267948966 rad + pos: 9.728575,-31.144934 parent: 2 type: Transform - - uid: 16782 + - uid: 5828 components: - - rot: -1.5707963267948966 rad - pos: -34.797047,13.286675 + - rot: 3.141592653589793 rad + pos: 10.353575,-32.12478 parent: 2 type: Transform - - uid: 16870 + - uid: 5829 components: - rot: -1.5707963267948966 rad - pos: -0.8962636,-10.230166 - parent: 2 - type: Transform - - uid: 16871 - components: - - pos: -0.2712636,-9.312862 + pos: 4.5,-7.5 parent: 2 type: Transform - - uid: 16872 + - uid: 5830 components: - rot: -1.5707963267948966 rad - pos: -1.2504303,-7.697158 + pos: -37.80179,18.20842 parent: 2 type: Transform - - uid: 16873 + - uid: 5831 components: - - pos: -1.104597,-8.155809 + - rot: 1.5707963267948966 rad + pos: 14.6138735,28.666597 parent: 2 type: Transform - - uid: 16991 + - uid: 5832 components: - - pos: 14.1451235,28.426847 + - rot: 0.16572801669570403 rad + pos: -61.542484,-6.996279 parent: 2 type: Transform - - uid: 16992 + - uid: 5833 components: - rot: -1.5707963267948966 rad - pos: 16.551373,28.770836 + pos: -60.085514,-8.287038 parent: 2 type: Transform -- proto: CigarSpent - entities: - - uid: 15792 + - uid: 5834 components: - - pos: -49.68298,-0.5319376 + - rot: 3.141592653589793 rad + pos: -47.495026,-14.251597 parent: 2 type: Transform - - uid: 16881 + - uid: 5835 components: - - pos: -6.1678247,-7.392461 + - pos: -11.5,-23.5 parent: 2 type: Transform -- proto: CigPackBlack - entities: - - uid: 6302 + - uid: 5836 components: - - pos: -13.670089,-38.21763 + - pos: 15.68679,29.406694 parent: 2 type: Transform -- proto: CigPackBlue - entities: - - uid: 16989 + - uid: 5837 components: - - pos: 15.7701235,28.416422 + - pos: 6.4115915,23.493132 parent: 2 type: Transform -- proto: CigPackGreen - entities: - - uid: 6070 + - uid: 5838 components: - - pos: -33.656166,13.587164 + - rot: 3.141592653589793 rad + pos: 6.557425,21.731491 parent: 2 type: Transform -- proto: CigPackRed +- proto: ChairFoldingSpawnFolded entities: - - uid: 16877 + - uid: 5839 components: - - pos: -6.2785864,-10.556837 + - pos: 25.525442,5.5289335 parent: 2 type: Transform -- proto: CircuitImprinter +- proto: ChairOfficeDark entities: - - uid: 13616 + - uid: 5840 components: - - pos: -36.5,29.5 + - rot: -1.5707963267948966 rad + pos: 5.453184,-4.092387 parent: 2 type: Transform -- proto: CircuitImprinterMachineCircuitboard - entities: - - uid: 6815 + - uid: 5841 components: - - pos: -14.560801,-29.289936 + - pos: -31.5,-12.5 parent: 2 type: Transform -- proto: CloningPod - entities: - - uid: 3422 + - uid: 5842 components: - - pos: 25.5,25.5 + - rot: 1.5707963267948966 rad + pos: 15.60216,-33.817013 parent: 2 type: Transform -- proto: ClosetBase - entities: - - uid: 1676 + - uid: 5843 components: - - pos: -34.5,20.5 + - rot: -1.5707963267948966 rad + pos: -27.595509,-5.7275686 parent: 2 type: Transform -- proto: ClosetBombFilled - entities: - - uid: 1308 + - uid: 5844 components: - - pos: -20.5,-13.5 + - pos: -19.652205,22.521683 parent: 2 type: Transform - - uid: 5937 + - uid: 5845 components: - - pos: -49.5,37.5 + - pos: -13.658073,21.511776 parent: 2 type: Transform - - uid: 11743 + - uid: 5846 components: - - pos: -45.5,-13.5 + - rot: 1.5707963267948966 rad + pos: 27.5,5.5 parent: 2 type: Transform - - uid: 12180 + - uid: 5847 components: - - pos: -45.5,-12.5 + - rot: 3.141592653589793 rad + pos: -29.142384,-6.126006 parent: 2 type: Transform - - uid: 16021 + - uid: 5848 components: - - pos: -44.5,-5.5 + - rot: -1.5707963267948966 rad + pos: -8.5,-16.5 parent: 2 type: Transform -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 946 + - uid: 5849 components: - - pos: -21.5,16.5 + - rot: 1.5707963267948966 rad + pos: 6.5383797,-17.353676 parent: 2 type: Transform - - uid: 1246 + - uid: 5850 components: - - pos: 7.5,-19.5 + - pos: 6.9758797,-15.414829 parent: 2 type: Transform - - uid: 1851 + - uid: 5851 components: - - pos: -2.5,-12.5 + - rot: 1.2265667478230338 rad + pos: -36.25269,-6.3051906 parent: 2 type: Transform - - uid: 1856 + - uid: 5852 components: - - pos: 29.5,29.5 + - rot: 3.141592653589793 rad + pos: -12.5,-74.5 parent: 2 type: Transform - - uid: 2203 + - uid: 5853 components: - - pos: 20.5,-8.5 + - rot: -1.5707963267948966 rad + pos: 18.5,-3.5 parent: 2 type: Transform - - uid: 3456 + - uid: 5854 components: - - pos: 21.5,-17.5 + - pos: -12.5,-78.5 parent: 2 type: Transform - - uid: 6013 + - uid: 5855 components: - - pos: -26.5,-17.5 + - rot: 1.5707963267948966 rad + pos: -20.5,-73.5 parent: 2 type: Transform - - uid: 6802 + - uid: 5856 components: - - pos: -51.5,17.5 + - rot: 3.141592653589793 rad + pos: -21.5,-74.5 parent: 2 type: Transform - - uid: 6803 + - uid: 5857 components: - - pos: -52.5,20.5 + - pos: -21.5,-78.5 parent: 2 type: Transform - - uid: 6804 + - uid: 5858 components: - - pos: -52.5,12.5 + - rot: 1.5707963267948966 rad + pos: -20.5,-78.5 parent: 2 type: Transform - - uid: 10665 + - uid: 5859 components: - - pos: 18.211266,-25.5 + - pos: 18.5,10.5 parent: 2 type: Transform - - uid: 11925 + - uid: 5860 components: - - pos: 37.5,-1.5 + - pos: 15.5,10.5 parent: 2 type: Transform - - uid: 11935 + - uid: 5861 components: - - pos: 28.5,-21.5 + - rot: 1.5707963267948966 rad + pos: 27.5,12.5 parent: 2 type: Transform - - uid: 11939 + - uid: 5862 components: - - pos: -36.5,-2.5 + - pos: 11.5,7.5 parent: 2 type: Transform - - uid: 11940 + - uid: 5863 components: - - pos: -40.5,-21.5 + - rot: 3.141592653589793 rad + pos: -22.365059,-7.3702555 parent: 2 type: Transform - - uid: 11953 + - uid: 5864 components: - - pos: 8.5,3.5 + - rot: -1.5707963267948966 rad + pos: -8.5,32.5 parent: 2 type: Transform - - uid: 14288 + - uid: 5865 components: - - pos: -34.5,23.5 + - rot: -1.5707963267948966 rad + pos: -8.5,33.5 parent: 2 type: Transform - - uid: 15961 + - uid: 5866 components: - - pos: 41.5,13.5 + - rot: 1.5707963267948966 rad + pos: -11.5,33.5 parent: 2 type: Transform - - uid: 16232 + - uid: 5867 components: - - pos: 8.5,15.5 + - rot: 1.5707963267948966 rad + pos: -11.5,34.5 parent: 2 type: Transform - - uid: 16606 + - uid: 5868 components: - - pos: -32.5,-25.5 + - rot: -1.5707963267948966 rad + pos: -8.5,34.5 parent: 2 type: Transform - - uid: 16889 + - uid: 5869 components: - - pos: -15.5,-4.5 + - rot: 1.5707963267948966 rad + pos: -11.5,32.5 parent: 2 type: Transform - - uid: 17177 + - uid: 5870 components: - - pos: 9.5,-39.5 + - pos: 1.5,38.5 parent: 2 type: Transform -- proto: ClosetFireFilled - entities: - - uid: 1263 + - uid: 5871 components: - - pos: -28.5,-22.5 + - rot: -1.5707963267948966 rad + pos: 21.38911,-5.868959 parent: 2 type: Transform - - uid: 3482 + - uid: 5872 components: - - pos: 21.5,-18.5 + - rot: 1.5707963267948966 rad + pos: -35.5,33.5 parent: 2 type: Transform - - uid: 6014 + - uid: 5873 components: - - pos: 7.5,3.5 + - rot: 3.141592653589793 rad + pos: 24.5,-19.5 parent: 2 type: Transform - - uid: 6805 + - uid: 5874 components: - - pos: -51.5,15.5 + - rot: -1.5707963267948966 rad + pos: 12.64448,-8.406829 parent: 2 type: Transform - - uid: 11567 + - uid: 5875 components: - - pos: -15.5,-5.5 + - rot: 1.5707963267948966 rad + pos: 8.5,-3.5 parent: 2 type: Transform - - uid: 11924 + - uid: 5876 components: - - pos: 37.5,-2.5 + - rot: -1.5707963267948966 rad + pos: -1.5,-50.5 parent: 2 type: Transform - - uid: 11931 + - uid: 5877 components: - - pos: 28.5,-22.5 + - rot: -1.5707963267948966 rad + pos: -1.5,-50.5 parent: 2 type: Transform - - uid: 15734 + - uid: 5878 components: - - pos: -35.5,23.5 + - rot: -1.5707963267948966 rad + pos: -1.5,-50.5 parent: 2 type: Transform - - uid: 15964 +- proto: ChairOfficeLight + entities: + - uid: 5879 components: - - pos: 41.5,15.5 + - rot: 3.141592653589793 rad + pos: -28.077522,2.7313628 parent: 2 type: Transform - - uid: 16156 + - uid: 5880 components: - - pos: 28.5,29.5 + - rot: 3.141592653589793 rad + pos: -19.266788,20.770468 parent: 2 type: Transform - - uid: 16607 + - uid: 5881 components: - - pos: -30.5,-25.5 + - pos: -2.6649227,-32.512672 parent: 2 type: Transform -- proto: ClosetJanitorFilled - entities: - - uid: 2730 + - uid: 5882 components: - - pos: -0.5,12.5 + - rot: 1.5707963267948966 rad + pos: -11.200975,-29.84575 parent: 2 type: Transform -- proto: ClosetL3JanitorFilled - entities: - - uid: 11165 + - uid: 5883 components: - - pos: 0.5,12.5 + - rot: 3.141592653589793 rad + pos: -31.5,10.5 parent: 2 type: Transform -- proto: ClosetL3ScienceFilled - entities: - - uid: 6247 + - uid: 5884 components: - - pos: -50.5,34.5 + - rot: 1.5707963267948966 rad + pos: 7.5,26.5 parent: 2 type: Transform - - uid: 6456 + - uid: 5885 components: - - pos: -50.5,35.5 + - pos: 22.5,25.5 parent: 2 type: Transform -- proto: ClosetL3VirologyFilled - entities: - - uid: 1825 + - uid: 5886 components: - - pos: 25.5,14.5 + - rot: 0.638550877571106 rad + pos: -10.009502,35.599583 parent: 2 type: Transform - - uid: 4377 + - uid: 5887 components: - - pos: 25.5,15.5 + - pos: -48.5,41.5 parent: 2 type: Transform -- proto: ClosetMaintenanceFilledRandom - entities: - - uid: 2045 + - uid: 5888 components: - - pos: 18.211266,-26.5 + - rot: -1.5707963267948966 rad + pos: 10.5,22.5 parent: 2 type: Transform - - uid: 6012 + - uid: 5889 components: - - pos: -25.5,-17.5 + - rot: 1.5707963267948966 rad + pos: 8.5,22.5 parent: 2 type: Transform - - uid: 11781 + - uid: 5890 components: - - pos: -42.5,-17.5 + - rot: -1.5707963267948966 rad + pos: -12.5,43.5 parent: 2 type: Transform - - uid: 11783 + - uid: 5891 components: - - pos: -35.5,47.5 + - rot: -1.5707963267948966 rad + pos: -10.5,41.5 parent: 2 type: Transform - - uid: 11784 + - uid: 5892 components: - - pos: 41.5,3.5 + - rot: 3.141592653589793 rad + pos: -10.5,43.5 parent: 2 type: Transform - - uid: 11785 + - uid: 5893 components: - - pos: 16.5,30.5 + - rot: 1.5707963267948966 rad + pos: -34.578865,29.158278 parent: 2 type: Transform - - uid: 11793 + - uid: 5894 components: - - pos: 2.5,-18.5 + - rot: -1.5707963267948966 rad + pos: 6.5,-39.5 parent: 2 type: Transform - - uid: 15254 +- proto: ChairWood + entities: + - uid: 5895 components: - - pos: 18.5,-19.5 + - rot: -1.5707963267948966 rad + pos: -9.5,-2.5 parent: 2 type: Transform - - uid: 15735 + - uid: 5896 components: - - pos: -26.5,21.5 + - rot: 3.141592653589793 rad + pos: -10.5,-3.5 parent: 2 type: Transform -- proto: ClosetRadiationSuitFilled - entities: - - uid: 1686 + - uid: 5897 components: - - pos: -3.5,-15.5 + - rot: -1.5707963267948966 rad + pos: -5.6117735,-10.606748 parent: 2 type: Transform - - uid: 1770 + - uid: 5898 components: - - pos: -4.5,-15.5 + - rot: 1.5707963267948966 rad + pos: -7.3305235,-10.335726 parent: 2 type: Transform - - uid: 2200 + - uid: 5899 components: - - pos: -17.5,-27.5 + - rot: 1.5707963267948966 rad + pos: 28.5,-3.5 parent: 2 type: Transform - - uid: 2241 + - uid: 5900 components: - - pos: -17.5,-28.5 + - rot: -1.5707963267948966 rad + pos: -19.679546,9.418754 parent: 2 type: Transform - - uid: 5938 + - uid: 5901 components: - - pos: -50.5,37.5 + - pos: -20.752462,10.336058 parent: 2 type: Transform - - uid: 16737 + - uid: 5902 components: - - pos: -28.5,-28.5 + - rot: -1.5707963267948966 rad + pos: 30.5,-3.5 parent: 2 type: Transform -- proto: ClosetToolFilled - entities: - - uid: 1182 + - uid: 5903 components: - - pos: -20.5,-12.5 + - pos: -6.5,23.5 parent: 2 type: Transform - - uid: 1900 + - uid: 5904 components: - - pos: 18.211266,-24.5 + - rot: 3.141592653589793 rad + pos: -8.5,22.5 parent: 2 type: Transform - - uid: 2732 + - uid: 5905 components: - - pos: -17.5,-34.5 + - rot: 1.5707963267948966 rad + pos: -9.5,23.5 parent: 2 type: Transform -- proto: ClosetWallEmergency - entities: - - uid: 11968 + - uid: 5906 components: - - rot: 3.141592653589793 rad - pos: -32.5,12.5 + - rot: -1.5707963267948966 rad + pos: -5.5,22.5 parent: 2 type: Transform -- proto: ClosetWallEmergencyFilledRandom - entities: - - uid: 11942 + - uid: 5907 components: - rot: -1.5707963267948966 rad - pos: -34.5,45.5 + pos: 30.5,-2.5 parent: 2 type: Transform -- proto: ClosetWallFireFilledRandom - entities: - - uid: 2111 + - uid: 5908 components: - - pos: 1.5,-11.5 + - rot: 1.5707963267948966 rad + pos: 33.5,-2.5 parent: 2 type: Transform - - uid: 2141 + - uid: 5909 components: - - pos: -33.5,8.5 + - rot: -1.5707963267948966 rad + pos: 35.5,-4.5 parent: 2 type: Transform - - uid: 11943 + - uid: 5910 components: - - rot: -1.5707963267948966 rad - pos: -34.5,46.5 + - rot: 1.5707963267948966 rad + pos: 33.5,-4.5 parent: 2 type: Transform -- proto: ClosetWallMaintenanceFilledRandom - entities: - - uid: 9519 + - uid: 5911 components: - - pos: -0.5,15.5 + - rot: -1.5707963267948966 rad + pos: 35.5,-2.5 parent: 2 type: Transform - - uid: 11792 + - uid: 5912 components: - - pos: 4.5,8.5 + - rot: 1.5707963267948966 rad + pos: -36.5,11.5 parent: 2 type: Transform -- proto: ClosetWallOrange - entities: - - uid: 3592 + - uid: 5913 components: - - pos: 26.5,10.5 + - rot: -1.5707963267948966 rad + pos: -33.5,11.5 parent: 2 type: Transform - - uid: 3593 + - uid: 5914 components: - - pos: 25.5,10.5 + - pos: -33.5,14.5 parent: 2 type: Transform -- proto: ClothingBackpackDuffelSurgeryFilled - entities: - - uid: 4436 + - uid: 5915 components: - - pos: 29.527794,18.740719 + - rot: -1.5707963267948966 rad + pos: 9.5,26.5 parent: 2 type: Transform - - uid: 4504 + - uid: 5916 components: - - pos: 17.485447,26.751778 + - rot: 1.5707963267948966 rad + pos: -45.5,25.5 parent: 2 type: Transform -- proto: ClothingBeltBandolier - entities: - - uid: 15380 + - uid: 5917 components: - - pos: -44.28039,-6.7017746 + - rot: 3.141592653589793 rad + pos: -1.5,31.5 parent: 2 type: Transform - - uid: 15997 + - uid: 5918 components: - - pos: -44.72831,-6.409906 + - pos: -1.5,33.5 parent: 2 type: Transform -- proto: ClothingBeltCeremonial - entities: - - uid: 11401 + - uid: 5919 components: - - pos: 1.4949155,20.411163 + - rot: 3.141592653589793 rad + pos: 1.5,29.5 parent: 2 type: Transform -- proto: ClothingBeltChampion - entities: - - uid: 13458 + - uid: 5920 components: - - pos: 1.0714827,18.494755 + - rot: -1.5707963267948966 rad + pos: 2.5,30.5 parent: 2 type: Transform -- proto: ClothingBeltMartialBlack - entities: - - uid: 5042 + - uid: 5921 components: - - pos: 30.517687,16.270493 + - pos: 1.5,31.5 parent: 2 type: Transform -- proto: ClothingBeltMilitaryWebbing - entities: - - uid: 13452 + - uid: 5922 components: - - pos: -49.576385,43.535995 + - rot: 3.141592653589793 rad + pos: -25.5,40.5 parent: 2 type: Transform -- proto: ClothingEyesGlasses - entities: - - uid: 16528 + - uid: 5923 components: - - pos: 23.567316,26.744034 + - rot: 3.141592653589793 rad + pos: -26.5,40.5 parent: 2 type: Transform - - uid: 16615 + - uid: 5924 components: - - pos: -38.63154,18.250366 + - rot: 3.141592653589793 rad + pos: -21.5,40.5 parent: 2 type: Transform -- proto: ClothingEyesGlassesChemical - entities: - - uid: 15707 + - uid: 5925 components: - - pos: 16.420506,13.364536 + - rot: 3.141592653589793 rad + pos: -20.5,40.5 parent: 2 type: Transform -- proto: ClothingEyesGlassesOutlawGlasses - entities: - - uid: 12709 + - uid: 5926 components: - - name: silly glasses - type: MetaData - - rot: -1.5707963267948966 rad - pos: 32.67021,-16.227297 + - rot: 3.141592653589793 rad + pos: -48.5,25.5 parent: 2 type: Transform -- proto: ClothingHandsGlovesLatex - entities: - - uid: 16550 + - uid: 5927 components: - - pos: -40.541256,39.437683 + - rot: 1.5707963267948966 rad + pos: -50.5,27.5 parent: 2 type: Transform - - uid: 16955 + - uid: 5928 components: - - pos: 28.882524,18.45939 + - rot: 1.5707963267948966 rad + pos: -50.5,26.5 parent: 2 type: Transform -- proto: ClothingHandsGlovesLeather - entities: - - uid: 13982 + - uid: 5929 components: - - pos: -63.287838,-6.2306004 + - pos: -49.5,28.5 parent: 2 type: Transform -- proto: ClothingHeadAreopagite - entities: - - uid: 5868 + - uid: 5930 components: - - pos: -48.492077,26.412785 + - rot: 3.141592653589793 rad + pos: -49.5,25.5 parent: 2 type: Transform -- proto: ClothingHeadCourierFlipped - entities: - - uid: 15888 + - uid: 5931 components: - - pos: 8.2997675,-4.4767094 + - rot: -1.5707963267948966 rad + pos: -47.5,26.5 parent: 2 type: Transform -- proto: ClothingHeadHatBeretCap - entities: - - uid: 5476 + - uid: 5932 components: - - pos: -10.056755,35.562653 + - rot: -1.5707963267948966 rad + pos: -47.5,27.5 parent: 2 type: Transform -- proto: ClothingHeadHatBeretCmo - entities: - - uid: 5556 + - uid: 5933 components: - - pos: -8.585127,34.42984 + - pos: -44.5,26.5 parent: 2 type: Transform -- proto: ClothingHeadHatBeretEngineering - entities: - - uid: 5564 + - uid: 5934 components: - - pos: -11.463266,32.41284 + - pos: -48.5,28.5 parent: 2 type: Transform -- proto: ClothingHeadHatBeretHoS - entities: - - uid: 5550 + - uid: 5935 components: - - pos: -11.463266,34.41682 + - rot: 3.0847128947549542 rad + pos: -31.532867,-14.156494 parent: 2 type: Transform -- proto: ClothingHeadHatBeretMysta +- proto: CheapLighter entities: - - uid: 5472 + - uid: 5936 components: - - pos: -11.372104,33.375153 + - pos: 15.2492895,28.416422 parent: 2 type: Transform -- proto: ClothingHeadHatCone +- proto: chem_master entities: - - uid: 16599 + - uid: 5937 components: - - pos: -8.767582,-19.624268 + - pos: -20.5,7.5 parent: 2 type: Transform - - uid: 16600 + - uid: 5938 components: - - pos: -8.288415,-19.624268 + - pos: -27.5,3.5 parent: 2 type: Transform - - uid: 16601 + - uid: 5939 components: - - pos: -8.496748,-19.290703 + - pos: 17.5,10.5 parent: 2 type: Transform -- proto: ClothingHeadHatFedoraBrown - entities: - - uid: 14690 + - uid: 5940 components: - - pos: -34.621883,32.745262 + - pos: 15.5,13.5 parent: 2 type: Transform -- proto: ClothingHeadHatHopcap +- proto: ChemicalPayload entities: - - uid: 5563 + - uid: 5941 components: - - pos: -8.5721035,33.414215 + - pos: 9.617371,21.476503 parent: 2 type: Transform -- proto: ClothingHeadHatJesterAlt +- proto: ChemistryEmptyBottle01 entities: - - uid: 15097 + - uid: 5942 components: - - pos: -52.468784,47.862778 + - pos: -28.317106,3.867569 parent: 2 type: Transform -- proto: ClothingHeadHatPaper - entities: - - uid: 1648 + - uid: 5943 components: - - pos: 4.4031324,-2.8545325 + - pos: -28.192106,3.76333 parent: 2 type: Transform - - uid: 9586 +- proto: ChemistryHotplate + entities: + - uid: 5944 components: - - pos: -33.23254,13.700514 + - pos: 16.5,10.5 parent: 2 type: Transform -- proto: ClothingHeadHatSombrero +- proto: Cigar entities: - - uid: 16777 + - uid: 5945 components: - - pos: 1.7666821,-2.5246186 + - pos: -10.435092,-2.2350075 parent: 2 type: Transform -- proto: ClothingHeadHatWelding +- proto: Cigarette entities: - - uid: 17035 + - uid: 5946 components: - - pos: 23.457123,-19.327557 + - pos: -1.2400136,-9.542189 parent: 2 type: Transform -- proto: ClothingHeadHatWizardFake +- proto: CigaretteSpent entities: - - uid: 5859 + - uid: 5947 components: - - pos: -48.488728,27.811165 + - pos: -49.604855,-0.48506254 parent: 2 type: Transform -- proto: ClothingHeadHelmetAncient - entities: - - uid: 11233 + - uid: 5948 components: - - pos: -45.559616,65.48788 + - pos: -49.667355,-0.45381254 parent: 2 type: Transform -- proto: ClothingHeadHelmetBasic - entities: - - uid: 16026 + - uid: 5949 components: - - pos: -40.537624,1.7286271 + - pos: -49.854855,-0.36006254 parent: 2 type: Transform -- proto: ClothingHeadHelmetTemplar - entities: - - uid: 5880 + - uid: 5950 components: - - pos: -49.4264,27.869759 + - pos: -30.9229,19.499895 parent: 2 type: Transform -- proto: ClothingMaskClown - entities: - - uid: 16023 + - uid: 5951 components: - - pos: -42.499344,1.6973771 + - rot: -1.5707963267948966 rad + pos: -30.558315,19.197601 parent: 2 type: Transform -- proto: ClothingMaskSterile - entities: - - uid: 4382 + - uid: 5952 components: - - pos: 28.401783,14.799805 + - pos: -32.787483,14.005925 parent: 2 type: Transform - - uid: 4383 + - uid: 5953 components: - - pos: 28.577597,16.44043 + - rot: -1.5707963267948966 rad + pos: -34.797047,13.286675 parent: 2 type: Transform -- proto: ClothingNeckCloakGoliathCloak - entities: - - uid: 2069 + - uid: 5954 components: - - pos: 9.051177,-32.178223 + - rot: -1.5707963267948966 rad + pos: -0.8962636,-10.230166 parent: 2 type: Transform -- proto: ClothingNeckMantleHOS - entities: - - uid: 16109 + - uid: 5955 components: - - pos: -32.509495,-13.323168 + - pos: -0.2712636,-9.312862 parent: 2 type: Transform -- proto: ClothingOuterApronChef - entities: - - uid: 11834 + - uid: 5956 components: - - pos: -36.57301,-24.390759 + - rot: -1.5707963267948966 rad + pos: -1.2504303,-7.697158 parent: 2 type: Transform -- proto: ClothingOuterHardsuitAncientEVA - entities: - - uid: 16028 + - uid: 5957 components: - - rot: -1.5707963267948966 rad - pos: -48.028408,61.378693 + - pos: -1.104597,-8.155809 parent: 2 type: Transform -- proto: ClothingOuterWinterMed - entities: - - uid: 16957 + - uid: 5958 components: - - pos: 17.701422,21.768103 + - pos: 14.1451235,28.426847 parent: 2 type: Transform - - uid: 16958 + - uid: 5959 components: - - pos: 17.378506,21.51793 + - rot: -1.5707963267948966 rad + pos: 16.551373,28.770836 parent: 2 type: Transform -- proto: ClothingShoesBling +- proto: CigarSpent entities: - - uid: 13465 + - uid: 5960 components: - - pos: -60.347687,-3.4251437 + - pos: -49.68298,-0.5319376 parent: 2 type: Transform -- proto: ClothingShoesBootsMag - entities: - - uid: 13699 + - uid: 5961 components: - - pos: -20.697605,-21.704687 + - pos: -6.1678247,-7.392461 parent: 2 type: Transform - - uid: 13708 +- proto: CigPackBlack + entities: + - uid: 5962 components: - - pos: -20.70455,-25.651873 + - pos: -13.670089,-38.21763 parent: 2 type: Transform - - uid: 13709 +- proto: CigPackBlue + entities: + - uid: 5963 components: - - pos: -20.31566,-25.554583 + - pos: 15.7701235,28.416422 parent: 2 type: Transform - - uid: 13710 +- proto: CigPackGreen + entities: + - uid: 5964 components: - - pos: -20.64205,-25.373901 + - pos: -33.656166,13.587164 parent: 2 type: Transform - - uid: 13711 +- proto: CigPackRed + entities: + - uid: 5965 components: - - pos: -20.287882,-21.551802 + - pos: -6.2785864,-10.556837 parent: 2 type: Transform - - uid: 13712 +- proto: CircuitImprinter + entities: + - uid: 5966 components: - - pos: -20.655937,-21.371122 + - pos: -36.5,29.5 parent: 2 type: Transform -- proto: ClothingShoesBootsSalvage +- proto: CircuitImprinterMachineCircuitboard entities: - - uid: 15220 + - uid: 5967 components: - - desc: Grimey and dirty, it hurts walking in it. - name: Dirty Shoes - type: MetaData - - rot: -1.5707963267948966 rad - pos: -30.948536,18.385483 + - pos: -14.560801,-29.289936 parent: 2 type: Transform -- proto: ClothingShoesBootsWork +- proto: CloningPod entities: - - uid: 16616 + - uid: 5968 components: - - pos: -36.84664,17.434761 + - pos: 25.5,25.5 parent: 2 type: Transform -- proto: ClothingShoesGaloshes +- proto: ClosetBase entities: - - uid: 11213 + - uid: 5969 components: - - pos: 0.6865115,9.316086 + - pos: -34.5,20.5 parent: 2 type: Transform -- proto: ClothingShoeSlippersDuck +- proto: ClosetBombFilled entities: - - uid: 13459 + - uid: 5970 components: - - pos: 39.612816,19.54828 + - pos: -20.5,-13.5 parent: 2 type: Transform -- proto: ClothingShoesSlippers - entities: - - uid: 4434 + - uid: 5971 components: - - pos: 19.471035,24.516733 + - pos: -49.5,37.5 parent: 2 type: Transform - - uid: 4554 + - uid: 5972 components: - - pos: 19.700201,24.339525 + - pos: -45.5,-13.5 parent: 2 type: Transform - - uid: 4557 + - uid: 5973 components: - - pos: 19.346035,24.693937 + - pos: -45.5,-12.5 parent: 2 type: Transform -- proto: ClothingUnderSocksCoder - entities: - - uid: 7840 + - uid: 5974 components: - - pos: 3.2979054,-16.180712 + - pos: -44.5,-5.5 parent: 2 type: Transform -- proto: ClothingUniformJumpsuitSuitBrownAlt +- proto: ClosetEmergencyFilledRandom entities: - - uid: 7107 + - uid: 5975 components: - - rot: 3.141592653589793 rad - pos: -56.71352,48.250168 + - pos: -21.5,16.5 parent: 2 type: Transform - - uid: 12252 + - uid: 5976 components: - - pos: -50.49964,46.379307 + - pos: 7.5,-19.5 parent: 2 type: Transform -- proto: ClothingUniformMartialGi - entities: - - uid: 5041 + - uid: 5977 components: - - pos: 30.303776,16.804146 + - pos: -2.5,-12.5 parent: 2 type: Transform - - uid: 5043 + - uid: 5978 components: - - pos: 30.460026,16.564396 + - pos: 29.5,29.5 parent: 2 type: Transform - - uid: 5044 + - uid: 5979 components: - - pos: 30.616276,16.824993 + - pos: 20.5,-8.5 parent: 2 type: Transform -- proto: ClothingUniformMNKGymBra - entities: - - uid: 16767 + - uid: 5980 components: - - pos: -38.27737,18.636051 + - pos: 21.5,-17.5 parent: 2 type: Transform -- proto: ClothingUniformRat - entities: - - uid: 6767 + - uid: 5981 components: - - rot: -1.5707963267948966 rad - pos: -30.5102,18.311106 + - pos: -26.5,-17.5 parent: 2 type: Transform - - uid: 15505 + - uid: 5982 components: - - pos: -50.45654,26.608307 + - pos: -51.5,17.5 parent: 2 type: Transform -- proto: CombatKnife - entities: - - uid: 17018 + - uid: 5983 components: - - rot: 3.141592653589793 rad - pos: 0.43691832,23.500238 + - pos: -52.5,20.5 parent: 2 type: Transform -- proto: ComfyChair - entities: - - uid: 80 + - uid: 5984 components: - - rot: -1.5707963267948966 rad - pos: -9.5,-9.5 + - pos: -52.5,12.5 parent: 2 type: Transform - - uid: 139 + - uid: 5985 components: - - rot: -1.5707963267948966 rad - pos: -9.5,-10.5 + - pos: 18.211266,-25.5 parent: 2 type: Transform - - uid: 1683 + - uid: 5986 components: - - rot: -1.5707963267948966 rad - pos: -32.5,13.5 + - pos: 37.5,-1.5 parent: 2 type: Transform - - uid: 3561 + - uid: 5987 components: - - rot: -1.5707963267948966 rad - pos: -36.5,-75.5 + - pos: 28.5,-21.5 parent: 2 type: Transform - - uid: 3818 + - uid: 5988 components: - - rot: -1.5707963267948966 rad - pos: -36.5,-77.5 + - pos: -36.5,-2.5 parent: 2 type: Transform - - uid: 4195 + - uid: 5989 components: - - rot: 1.5707963267948966 rad - pos: 2.5,-77.5 + - pos: -40.5,-21.5 parent: 2 type: Transform - - uid: 4196 + - uid: 5990 components: - - rot: 1.5707963267948966 rad - pos: 2.5,-75.5 + - pos: 8.5,3.5 parent: 2 type: Transform - - uid: 4298 + - uid: 5991 components: - - rot: 1.5707963267948966 rad - pos: -34.5,13.5 + - pos: -34.5,23.5 parent: 2 type: Transform - - uid: 4301 + - uid: 5992 components: - - rot: -1.5707963267948966 rad - pos: -33.5,19.5 + - pos: 41.5,13.5 parent: 2 type: Transform - - uid: 5030 + - uid: 5993 components: - - pos: 34.5,13.5 + - pos: 8.5,15.5 parent: 2 type: Transform - - uid: 5341 + - uid: 5994 components: - - rot: 1.5707963267948966 rad - pos: 20.5,32.5 + - pos: -32.5,-25.5 parent: 2 type: Transform - - uid: 5351 + - uid: 5995 components: - - rot: -1.5707963267948966 rad - pos: 22.5,32.5 + - pos: -15.5,-4.5 parent: 2 type: Transform - - uid: 5690 + - uid: 5996 components: - - pos: -23.5,44.5 + - pos: 9.5,-39.5 parent: 2 type: Transform - - uid: 6678 +- proto: ClosetFireFilled + entities: + - uid: 5997 components: - - rot: 3.141592653589793 rad - pos: -0.5,39.5 + - pos: -28.5,-22.5 parent: 2 type: Transform - - uid: 7052 + - uid: 5998 components: - - rot: 3.141592653589793 rad - pos: -31.5,36.5 + - pos: 21.5,-18.5 parent: 2 type: Transform - - uid: 7434 + - uid: 5999 components: - - pos: -31.5,38.5 + - pos: 7.5,3.5 parent: 2 type: Transform - - uid: 15411 + - uid: 6000 components: - - pos: -13.5,-8.5 + - pos: -51.5,15.5 parent: 2 type: Transform - - uid: 15614 + - uid: 6001 components: - - pos: 35.5,13.5 + - pos: -15.5,-5.5 parent: 2 type: Transform - - uid: 16626 + - uid: 6002 components: - - rot: 1.5707963267948966 rad - pos: 8.5,24.5 + - pos: 37.5,-2.5 parent: 2 type: Transform -- proto: CommsComputerCircuitboard - entities: - - uid: 5537 + - uid: 6003 components: - - pos: -14.633717,-28.65408 + - pos: 28.5,-22.5 parent: 2 type: Transform -- proto: ComputerAlert - entities: - - uid: 5434 + - uid: 6004 components: - - pos: -10.5,44.5 + - pos: -35.5,23.5 parent: 2 type: Transform - - uid: 12345 + - uid: 6005 components: - - rot: -1.5707963267948966 rad - pos: 2.5,-39.5 + - pos: 41.5,15.5 parent: 2 type: Transform -- proto: ComputerAnalysisConsole - entities: - - uid: 4171 + - uid: 6006 components: - - rot: 1.5707963267948966 rad - pos: -55.5,37.5 + - pos: 28.5,29.5 parent: 2 type: Transform - - linkedPorts: - 10462: - - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver - type: DeviceLinkSource -- proto: ComputerBroken + - uid: 6007 + components: + - pos: -30.5,-25.5 + parent: 2 + type: Transform +- proto: ClosetJanitorFilled entities: - - uid: 3828 + - uid: 6008 components: - - rot: -1.5707963267948966 rad - pos: -14.5,-70.5 + - pos: -0.5,12.5 parent: 2 type: Transform -- proto: ComputerCargoBounty +- proto: ClosetL3JanitorFilled entities: - - uid: 10674 + - uid: 6009 components: - - rot: -1.5707963267948966 rad - pos: 16.5,-33.5 + - pos: 0.5,12.5 parent: 2 type: Transform -- proto: ComputerCargoOrders +- proto: ClosetL3ScienceFilled entities: - - uid: 434 + - uid: 6010 components: - - rot: 1.5707963267948966 rad - pos: 11.5,-8.5 + - pos: -50.5,34.5 parent: 2 type: Transform - - uid: 4829 + - uid: 6011 components: - - rot: 1.5707963267948966 rad - pos: 4.5,-17.5 + - pos: -50.5,35.5 parent: 2 type: Transform -- proto: ComputerCloningConsole +- proto: ClosetL3VirologyFilled entities: - - uid: 4558 + - uid: 6012 components: - - rot: 3.141592653589793 rad - pos: 22.5,24.5 + - pos: 25.5,14.5 parent: 2 type: Transform -- proto: ComputerComms + - uid: 6013 + components: + - pos: 25.5,15.5 + parent: 2 + type: Transform +- proto: ClosetMaintenanceFilledRandom entities: - - uid: 5603 + - uid: 6014 components: - - pos: -9.5,44.5 + - pos: 18.211266,-26.5 parent: 2 type: Transform - - uid: 6686 + - uid: 6015 components: - - rot: 3.141592653589793 rad - pos: 1.5,37.5 + - pos: -25.5,-17.5 parent: 2 type: Transform -- proto: ComputerCrewMonitoring - entities: - - uid: 1767 + - uid: 6016 components: - - pos: -21.5,-73.5 + - pos: -42.5,-17.5 parent: 2 type: Transform - - uid: 4746 + - uid: 6017 components: - - rot: 3.141592653589793 rad - pos: 10.5,6.5 + - pos: -35.5,47.5 parent: 2 type: Transform - - uid: 5604 + - uid: 6018 components: - - rot: -1.5707963267948966 rad - pos: -6.5,42.5 + - pos: 41.5,3.5 parent: 2 type: Transform -- proto: ComputerCriminalRecords - entities: - - uid: 3590 + - uid: 6019 components: - - pos: 28.5,7.5 + - pos: 16.5,30.5 parent: 2 type: Transform - - uid: 5606 + - uid: 6020 components: - - rot: -1.5707963267948966 rad - pos: -6.5,41.5 + - pos: 2.5,-18.5 parent: 2 type: Transform -- proto: ComputerId - entities: - - uid: 916 + - uid: 6021 components: - - rot: -1.5707963267948966 rad - pos: 9.5,22.5 + - pos: 18.5,-19.5 parent: 2 type: Transform - - uid: 918 + - uid: 6022 components: - - pos: -3.5,-30.5 + - pos: -26.5,21.5 parent: 2 type: Transform - - uid: 921 +- proto: ClosetRadiationSuitFilled + entities: + - uid: 6023 components: - - rot: 1.5707963267948966 rad - pos: -49.5,41.5 + - pos: -3.5,-15.5 parent: 2 type: Transform - - uid: 925 + - uid: 6024 components: - - rot: 1.5707963267948966 rad - pos: -32.5,-12.5 + - pos: -4.5,-15.5 parent: 2 type: Transform - - uid: 3085 + - uid: 6025 components: - - rot: 1.5707963267948966 rad - pos: 17.5,-3.5 + - pos: -17.5,-27.5 parent: 2 type: Transform - - uid: 12449 + - uid: 6026 components: - - rot: 3.141592653589793 rad - pos: 0.5,37.5 + - pos: -17.5,-28.5 parent: 2 type: Transform - - uid: 14723 + - uid: 6027 components: - - rot: -1.5707963267948966 rad - pos: 7.5,-17.5 + - pos: -50.5,37.5 parent: 2 type: Transform -- proto: ComputerMassMedia - entities: - - uid: 15252 + - uid: 6028 components: - - rot: 3.141592653589793 rad - pos: -13.5,20.5 + - pos: -28.5,-28.5 parent: 2 type: Transform -- proto: ComputerMedicalRecords +- proto: ClosetToolFilled entities: - - uid: 5613 + - uid: 6029 components: - - rot: 1.5707963267948966 rad - pos: -13.5,41.5 + - pos: -20.5,-12.5 parent: 2 type: Transform -- proto: ComputerPowerMonitoring - entities: - - uid: 252 + - uid: 6030 components: - - pos: -1.5,-21.5 + - pos: 18.211266,-24.5 parent: 2 type: Transform - - uid: 1355 + - uid: 6031 components: - - rot: -1.5707963267948966 rad - pos: 0.5,-25.5 + - pos: -17.5,-34.5 parent: 2 type: Transform -- proto: ComputerRadar +- proto: ClosetWallEmergency entities: - - uid: 5611 + - uid: 6032 components: - - rot: -1.5707963267948966 rad - pos: -6.5,43.5 + - rot: 3.141592653589793 rad + pos: -32.5,12.5 parent: 2 type: Transform - - uid: 17192 +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 6033 components: - rot: -1.5707963267948966 rad - pos: 20.5,-46.5 + pos: -34.5,45.5 parent: 2 type: Transform -- proto: ComputerResearchAndDevelopment +- proto: ClosetWallFireFilledRandom entities: - - uid: 1785 + - uid: 6034 components: - - rot: 1.5707963267948966 rad - pos: -49.5,40.5 + - pos: 1.5,-11.5 parent: 2 type: Transform - - uid: 5614 + - uid: 6035 components: - - rot: 1.5707963267948966 rad - pos: -13.5,42.5 + - pos: -33.5,8.5 parent: 2 type: Transform - - uid: 6259 + - uid: 6036 components: - - pos: -38.5,29.5 + - rot: -1.5707963267948966 rad + pos: -34.5,46.5 parent: 2 type: Transform -- proto: ComputerShuttleCargo +- proto: ClosetWallMaintenanceFilledRandom entities: - - uid: 410 + - uid: 6037 components: - - rot: -1.5707963267948966 rad - pos: 16.5,-34.5 + - pos: -0.5,15.5 parent: 2 type: Transform -- proto: ComputerShuttleSalvage - entities: - - uid: 10681 + - uid: 6038 components: - - rot: 3.141592653589793 rad - pos: 9.5,-34.5 + - pos: 4.5,8.5 parent: 2 type: Transform -- proto: ComputerSolarControl +- proto: ClosetWallOrange entities: - - uid: 1685 + - uid: 6039 components: - - rot: 3.141592653589793 rad - pos: -20.5,-79.5 + - pos: 26.5,10.5 parent: 2 type: Transform - - uid: 4190 + - uid: 6040 components: - - rot: 1.5707963267948966 rad - pos: -17.5,-81.5 + - pos: 25.5,10.5 parent: 2 type: Transform - - uid: 5065 +- proto: ClothingBackpackDuffelSurgeryFilled + entities: + - uid: 6041 components: - - rot: -1.5707963267948966 rad - pos: 45.5,10.5 + - pos: 29.527794,18.740719 parent: 2 type: Transform - - uid: 6426 + - uid: 6042 components: - - pos: -41.5,51.5 + - pos: 17.485447,26.751778 parent: 2 type: Transform - - uid: 13636 +- proto: ClothingBeltBandolier + entities: + - uid: 6043 components: - - pos: -0.5,-21.5 + - pos: -44.28039,-6.7017746 parent: 2 type: Transform -- proto: ComputerStationRecords - entities: - - uid: 1996 + - uid: 6044 components: - - rot: -1.5707963267948966 rad - pos: 28.5,4.5 + - pos: -44.72831,-6.409906 parent: 2 type: Transform - - uid: 4166 +- proto: ClothingBeltCeremonial + entities: + - uid: 6045 components: - - rot: 3.141592653589793 rad - pos: -21.5,-79.5 + - pos: 1.4949155,20.411163 parent: 2 type: Transform - - uid: 4739 - components: - - rot: -1.5707963267948966 rad - pos: -20.5,-7.5 +- proto: ClothingBeltChampion + entities: + - uid: 6046 + components: + - pos: 1.0714827,18.494755 parent: 2 type: Transform - - uid: 5616 +- proto: ClothingBeltMartialBlack + entities: + - uid: 6047 components: - - rot: 1.5707963267948966 rad - pos: -13.5,43.5 + - pos: 30.517687,16.270493 parent: 2 type: Transform - - uid: 14345 +- proto: ClothingBeltMilitaryWebbing + entities: + - uid: 6048 components: - - rot: -1.5707963267948966 rad - pos: -34.5,33.5 + - pos: -49.576385,43.535995 parent: 2 type: Transform -- proto: ComputerSurveillanceCameraMonitor +- proto: ClothingEyesGlasses entities: - - uid: 3211 + - uid: 6049 components: - - rot: 1.5707963267948966 rad - pos: -23.5,-7.5 + - pos: 23.567316,26.744034 parent: 2 type: Transform - - uid: 3238 + - uid: 6050 components: - - rot: -1.5707963267948966 rad - pos: -35.5,-6.5 + - pos: -38.63154,18.250366 parent: 2 type: Transform - - uid: 5618 +- proto: ClothingEyesGlassesChemical + entities: + - uid: 6051 components: - - rot: 1.5707963267948966 rad - pos: -11.5,42.5 + - pos: 16.420506,13.364536 parent: 2 type: Transform - - uid: 6592 +- proto: ClothingEyesGlassesOutlawGlasses + entities: + - uid: 6052 components: + - name: silly glasses + type: MetaData - rot: -1.5707963267948966 rad - pos: 28.5,5.5 + pos: 32.67021,-16.227297 parent: 2 type: Transform -- proto: ComputerSurveillanceWirelessCameraMonitor +- proto: ClothingHandsGlovesCombat entities: - - uid: 5600 + - uid: 6053 components: - - rot: 1.5707963267948966 rad - pos: -11.5,41.5 + - pos: -8.5,-39.5 parent: 2 type: Transform - - uid: 15476 +- proto: ClothingHandsGlovesLatex + entities: + - uid: 6054 components: - - desc: an old, blocky computer that has a roaring fan. - name: old pc - type: MetaData - - pos: -31.5,20.5 + - pos: -40.541256,39.437683 parent: 2 type: Transform -- proto: ComputerTechnologyDiskTerminal - entities: - - uid: 6410 + - uid: 6055 components: - - pos: -40.5,29.5 + - pos: 28.882524,18.45939 parent: 2 type: Transform -- proto: ComputerTelevision +- proto: ClothingHandsGlovesLeather entities: - - uid: 142 + - uid: 6056 components: - - pos: -10.5,-10.5 + - pos: -63.287838,-6.2306004 parent: 2 type: Transform - - uid: 10959 +- proto: ClothingHeadAreopagite + entities: + - uid: 6057 components: - - pos: -49.5,1.5 + - pos: -48.492077,26.412785 parent: 2 type: Transform -- proto: ContainmentFieldGenerator +- proto: ClothingHeadCourierFlipped entities: - - uid: 2072 + - uid: 6058 components: - - pos: -35.5,-34.5 + - pos: 8.2997675,-4.4767094 parent: 2 type: Transform - - uid: 2391 +- proto: ClothingHeadHatBeretCap + entities: + - uid: 6059 components: - - pos: -27.5,-42.5 + - pos: -10.056755,35.562653 parent: 2 type: Transform - - uid: 2392 +- proto: ClothingHeadHatBeretCmo + entities: + - uid: 6060 components: - - pos: -27.5,-38.5 + - pos: -8.585127,34.42984 parent: 2 type: Transform -- proto: ConveyorBelt +- proto: ClothingHeadHatBeretEngineering entities: - - uid: 406 + - uid: 6061 components: - - pos: 15.5,-13.5 + - pos: -11.463266,32.41284 parent: 2 type: Transform - - links: - - 16209 - type: DeviceLinkSink - - uid: 407 +- proto: ClothingHeadHatBeretHoS + entities: + - uid: 6062 components: - - pos: 15.5,-14.5 + - pos: -11.463266,34.41682 parent: 2 type: Transform - - links: - - 16209 - type: DeviceLinkSink - - uid: 408 +- proto: ClothingHeadHatBeretMysta + entities: + - uid: 6063 components: - - pos: 15.5,-12.5 + - pos: -11.372104,33.375153 parent: 2 type: Transform - - links: - - 16209 - type: DeviceLinkSink - - uid: 409 +- proto: ClothingHeadHatCone + entities: + - uid: 6064 components: - - pos: 15.5,-11.5 + - pos: -8.767582,-19.624268 parent: 2 type: Transform - - links: - - 16209 - type: DeviceLinkSink - - uid: 411 + - uid: 6065 components: - - pos: 15.5,-8.5 + - pos: -8.288415,-19.624268 parent: 2 type: Transform - - links: - - 427 - type: DeviceLinkSink - - uid: 412 + - uid: 6066 components: - - pos: 15.5,-7.5 + - pos: -8.496748,-19.290703 parent: 2 type: Transform - - links: - - 427 - type: DeviceLinkSink - - uid: 413 +- proto: ClothingHeadHatFedoraBrown + entities: + - uid: 6067 components: - - pos: 15.5,-6.5 + - pos: -34.621883,32.745262 parent: 2 type: Transform - - links: - - 427 - type: DeviceLinkSink - - uid: 414 +- proto: ClothingHeadHatHopcap + entities: + - uid: 6068 components: - - pos: 15.5,-5.5 + - pos: -8.5721035,33.414215 parent: 2 type: Transform - - links: - - 427 - type: DeviceLinkSink - - uid: 429 +- proto: ClothingHeadHatJesterAlt + entities: + - uid: 6069 components: - - pos: 15.5,-10.5 + - pos: -52.468784,47.862778 parent: 2 type: Transform - - links: - - 16209 - type: DeviceLinkSink - - uid: 2039 +- proto: ClothingHeadHatPaper + entities: + - uid: 6070 components: - - rot: 3.141592653589793 rad - pos: 18.5,-31.5 + - pos: 4.4031324,-2.8545325 parent: 2 type: Transform - - links: - - 12512 - type: DeviceLinkSink - - uid: 2983 + - uid: 6071 components: - - rot: -1.5707963267948966 rad - pos: 14.5,-14.5 + - pos: -33.23254,13.700514 parent: 2 type: Transform - - links: - - 16209 - type: DeviceLinkSink - - uid: 4220 +- proto: ClothingHeadHatSombrero + entities: + - uid: 6072 components: - - rot: 1.5707963267948966 rad - pos: 18.5,-22.5 + - pos: 1.7666821,-2.5246186 parent: 2 type: Transform - - links: - - 14963 - type: DeviceLinkSink - - uid: 4222 +- proto: ClothingHeadHatWelding + entities: + - uid: 6073 components: - - rot: 1.5707963267948966 rad - pos: 17.5,-22.5 + - pos: 23.457123,-19.327557 parent: 2 type: Transform - - links: - - 14963 - type: DeviceLinkSink - - uid: 4959 +- proto: ClothingHeadHatWizardFake + entities: + - uid: 6074 components: - - rot: 1.5707963267948966 rad - pos: 16.5,-22.5 + - pos: -48.488728,27.811165 parent: 2 type: Transform - - links: - - 14963 - type: DeviceLinkSink - - uid: 6730 +- proto: ClothingHeadHelmetAncient + entities: + - uid: 6075 components: - - rot: -1.5707963267948966 rad - pos: -50.5,3.5 + - pos: -45.559616,65.48788 parent: 2 type: Transform - - links: - - 6732 - type: DeviceLinkSink - - uid: 7909 +- proto: ClothingHeadHelmetBasic + entities: + - uid: 6076 components: - - pos: 11.5,-25.5 + - pos: -40.537624,1.7286271 parent: 2 type: Transform - - links: - - 1549 - type: DeviceLinkSink - - uid: 8295 +- proto: ClothingHeadHelmetTemplar + entities: + - uid: 6077 components: - - rot: 3.141592653589793 rad - pos: 18.5,-35.5 + - pos: -49.4264,27.869759 parent: 2 type: Transform - - links: - - 12512 - type: DeviceLinkSink - - uid: 8304 +- proto: ClothingMaskClown + entities: + - uid: 6078 components: - - pos: 11.5,-22.5 + - pos: -42.499344,1.6973771 parent: 2 type: Transform - - links: - - 1549 - type: DeviceLinkSink - - uid: 8336 +- proto: ClothingMaskSterile + entities: + - uid: 6079 components: - - pos: 11.5,-23.5 + - pos: 28.401783,14.799805 parent: 2 type: Transform - - links: - - 1549 - type: DeviceLinkSink - - uid: 8337 + - uid: 6080 components: - - pos: 22.5,-33.5 + - pos: 28.577597,16.44043 parent: 2 type: Transform - - links: - - 12512 - type: DeviceLinkSink - - uid: 8338 +- proto: ClothingNeckCloakGoliathCloak + entities: + - uid: 6081 components: - - rot: 3.141592653589793 rad - pos: 18.5,-32.5 + - pos: 9.051177,-32.178223 parent: 2 type: Transform - - links: - - 12512 - type: DeviceLinkSink - - uid: 8339 +- proto: ClothingNeckMantleHOS + entities: + - uid: 6082 components: - - pos: 22.5,-34.5 + - pos: -32.509495,-13.323168 parent: 2 type: Transform - - links: - - 12512 - type: DeviceLinkSink - - uid: 8341 +- proto: ClothingOuterApronChef + entities: + - uid: 6083 components: - - pos: 11.5,-17.5 + - pos: -36.57301,-24.390759 parent: 2 type: Transform - - links: - - 1549 - type: DeviceLinkSink - - uid: 8400 +- proto: ClothingOuterHardsuitAncientEVA + entities: + - uid: 6084 components: - - pos: 22.5,-35.5 + - rot: -1.5707963267948966 rad + pos: -48.028408,61.378693 parent: 2 type: Transform - - links: - - 12512 - type: DeviceLinkSink - - uid: 8881 +- proto: ClothingOuterWinterMed + entities: + - uid: 6085 components: - - pos: 11.5,-18.5 + - pos: 17.701422,21.768103 parent: 2 type: Transform - - links: - - 1549 - type: DeviceLinkSink - - uid: 8882 + - uid: 6086 components: - - pos: 11.5,-19.5 + - pos: 17.378506,21.51793 parent: 2 type: Transform - - links: - - 1549 - type: DeviceLinkSink - - uid: 8883 +- proto: ClothingShoesBling + entities: + - uid: 6087 components: - - pos: 11.5,-20.5 + - pos: -60.347687,-3.4251437 parent: 2 type: Transform - - links: - - 1549 - type: DeviceLinkSink - - uid: 10644 +- proto: ClothingShoesBootsMag + entities: + - uid: 6088 components: - - pos: 11.5,-21.5 + - pos: -20.697605,-21.704687 parent: 2 type: Transform - - links: - - 1549 - type: DeviceLinkSink - - uid: 10647 + - uid: 6089 components: - - rot: 3.141592653589793 rad - pos: 18.5,-33.5 + - pos: -20.70455,-25.651873 parent: 2 type: Transform - - links: - - 12512 - type: DeviceLinkSink - - uid: 10659 + - uid: 6090 components: - - pos: 11.5,-24.5 + - pos: -20.31566,-25.554583 parent: 2 type: Transform - - links: - - 1549 - type: DeviceLinkSink - - uid: 10660 + - uid: 6091 components: - - pos: 22.5,-32.5 + - pos: -20.64205,-25.373901 parent: 2 type: Transform - - links: - - 12512 - type: DeviceLinkSink - - uid: 10663 + - uid: 6092 components: - - rot: 3.141592653589793 rad - pos: 18.5,-34.5 + - pos: -20.287882,-21.551802 parent: 2 type: Transform - - links: - - 12512 - type: DeviceLinkSink - - uid: 10671 + - uid: 6093 components: - - rot: -1.5707963267948966 rad - pos: 12.5,-14.5 + - pos: -20.655937,-21.371122 parent: 2 type: Transform - - links: - - 16209 - type: DeviceLinkSink - - uid: 10672 +- proto: ClothingShoesBootsSalvage + entities: + - uid: 6094 components: + - desc: Grimey and dirty, it hurts walking in it. + name: Dirty Shoes + type: MetaData - rot: -1.5707963267948966 rad - pos: 13.5,-14.5 + pos: -30.948536,18.385483 parent: 2 type: Transform - - links: - - 16209 - type: DeviceLinkSink -- proto: CornSeeds +- proto: ClothingShoesBootsWork entities: - - uid: 4278 + - uid: 6095 components: - - pos: 32.565235,-12.427586 + - pos: -36.84664,17.434761 parent: 2 type: Transform -- proto: CrateArtifactContainer +- proto: ClothingShoesGaloshes entities: - - uid: 10505 + - uid: 6096 components: - - pos: -52.5,34.5 + - pos: 0.6865115,9.316086 parent: 2 type: Transform - - uid: 13009 +- proto: ClothingShoeSlippersDuck + entities: + - uid: 6097 components: - - pos: 14.5,-45.5 + - pos: 39.612816,19.54828 parent: 2 type: Transform -- proto: CrateChemistryS +- proto: ClothingShoesSlippers entities: - - uid: 15878 + - uid: 6098 components: - - pos: 19.5,12.5 + - pos: 19.471035,24.516733 parent: 2 type: Transform -- proto: CrateEmergencyInflatablewall + - uid: 6099 + components: + - pos: 19.700201,24.339525 + parent: 2 + type: Transform + - uid: 6100 + components: + - pos: 19.346035,24.693937 + parent: 2 + type: Transform +- proto: ClothingUnderSocksCoder entities: - - uid: 3580 + - uid: 6101 components: - - pos: 19.3288,-24.5 + - pos: 3.2979054,-16.180712 parent: 2 type: Transform -- proto: CrateEmptySpawner +- proto: ClothingUniformJumpsuitSuitBrownAlt entities: - - uid: 6601 + - uid: 6102 components: - - pos: 21.5,-30.5 + - rot: 3.141592653589793 rad + pos: -56.71352,48.250168 parent: 2 type: Transform - - uid: 12701 + - uid: 6103 components: - - pos: 14.5,-28.5 + - pos: -50.49964,46.379307 parent: 2 type: Transform - - uid: 13010 +- proto: ClothingUniformMartialGi + entities: + - uid: 6104 components: - - pos: 9.5,-36.5 + - pos: 30.303776,16.804146 parent: 2 type: Transform - - uid: 13627 + - uid: 6105 components: - - pos: 21.5,-28.5 + - pos: 30.460026,16.564396 parent: 2 type: Transform - - uid: 17073 + - uid: 6106 components: - - pos: 11.5,-23.5 + - pos: 30.616276,16.824993 parent: 2 type: Transform -- proto: CrateEngineeringAMEShielding +- proto: ClothingUniformMNKGymBra entities: - - uid: 1380 + - uid: 6107 components: - - pos: 3.5,-22.5 + - pos: -38.27737,18.636051 parent: 2 type: Transform -- proto: CrateEngineeringSingularityCollector +- proto: ClothingUniformRat entities: - - uid: 2641 + - uid: 6108 components: - - pos: -13.5,-42.5 + - rot: -1.5707963267948966 rad + pos: -30.5102,18.311106 parent: 2 type: Transform - - uid: 2642 + - uid: 6109 components: - - pos: -12.5,-43.5 + - pos: -50.45654,26.608307 parent: 2 type: Transform - - uid: 2645 +- proto: CombatKnife + entities: + - uid: 6110 components: - - pos: -12.5,-46.5 + - rot: 3.141592653589793 rad + pos: 0.43691832,23.500238 parent: 2 type: Transform - - uid: 2646 +- proto: ComfyChair + entities: + - uid: 6111 components: - - pos: -13.5,-46.5 + - rot: -1.5707963267948966 rad + pos: -9.5,-9.5 parent: 2 type: Transform - - uid: 2648 + - uid: 6112 components: - - pos: -10.5,-45.5 + - rot: -1.5707963267948966 rad + pos: -9.5,-10.5 parent: 2 type: Transform - - uid: 2649 + - uid: 6113 components: - - pos: -11.5,-45.5 + - rot: -1.5707963267948966 rad + pos: -32.5,13.5 parent: 2 type: Transform - - uid: 2705 + - uid: 6114 components: - - pos: -13.5,-44.5 + - rot: -1.5707963267948966 rad + pos: -36.5,-75.5 parent: 2 type: Transform - - uid: 6605 + - uid: 6115 components: - - pos: -13.5,-43.5 + - rot: -1.5707963267948966 rad + pos: -36.5,-77.5 parent: 2 type: Transform -- proto: CrateEngineeringSingularityContainment - entities: - - uid: 2420 + - uid: 6116 components: - - pos: -11.5,-42.5 + - rot: 1.5707963267948966 rad + pos: 2.5,-77.5 parent: 2 type: Transform - - uid: 2439 + - uid: 6117 components: - - pos: -10.5,-43.5 + - rot: 1.5707963267948966 rad + pos: 2.5,-75.5 parent: 2 type: Transform - - uid: 2441 + - uid: 6118 components: - - pos: -11.5,-43.5 + - rot: 1.5707963267948966 rad + pos: -34.5,13.5 parent: 2 type: Transform - - uid: 2444 + - uid: 6119 components: - - pos: -12.5,-42.5 + - rot: -1.5707963267948966 rad + pos: -33.5,19.5 parent: 2 type: Transform - - uid: 2704 + - uid: 6120 components: - - pos: -10.5,-42.5 + - pos: 34.5,13.5 parent: 2 type: Transform - - uid: 2706 + - uid: 6121 components: - - pos: -12.5,-44.5 + - rot: 1.5707963267948966 rad + pos: 20.5,32.5 parent: 2 type: Transform -- proto: CrateEngineeringSingularityEmitter - entities: - - uid: 2599 + - uid: 6122 components: - - pos: -11.5,-44.5 + - rot: -1.5707963267948966 rad + pos: 22.5,32.5 parent: 2 type: Transform - - uid: 2699 + - uid: 6123 components: - - pos: -10.5,-44.5 + - pos: -23.5,44.5 parent: 2 type: Transform - - uid: 2700 + - uid: 6124 components: - - pos: -11.5,-46.5 + - rot: 3.141592653589793 rad + pos: -0.5,39.5 parent: 2 type: Transform - - uid: 2701 + - uid: 6125 components: - - pos: -10.5,-46.5 + - rot: 3.141592653589793 rad + pos: -31.5,36.5 parent: 2 type: Transform - - uid: 2702 + - uid: 6126 components: - - pos: -12.5,-45.5 + - pos: -31.5,38.5 parent: 2 type: Transform - - uid: 2703 + - uid: 6127 components: - - pos: -13.5,-45.5 + - pos: -13.5,-8.5 parent: 2 type: Transform -- proto: CrateEngineeringSolar - entities: - - uid: 5067 + - uid: 6128 components: - - pos: 43.5,9.5 + - pos: 35.5,13.5 parent: 2 type: Transform - - uid: 6416 + - uid: 6129 components: - - pos: -40.5,49.5 + - rot: 1.5707963267948966 rad + pos: 8.5,24.5 parent: 2 type: Transform -- proto: CrateEngineeringToolbox +- proto: CommsComputerCircuitboard entities: - - uid: 1776 + - uid: 6130 components: - - pos: -6.5,-20.5 + - pos: -14.633717,-28.65408 parent: 2 type: Transform -- proto: CrateFilledSpawner +- proto: ComputerAlert entities: - - uid: 12702 + - uid: 6131 components: - - pos: 15.5,-16.5 + - rot: 3.141592653589793 rad + pos: -2.5,-51.5 parent: 2 type: Transform - - uid: 12762 + - uid: 6132 components: - - pos: 14.5,-17.5 + - pos: -10.5,44.5 parent: 2 type: Transform - - uid: 13620 +- proto: ComputerAnalysisConsole + entities: + - uid: 6133 components: - - pos: 16.5,-29.5 + - rot: 1.5707963267948966 rad + pos: -55.5,37.5 parent: 2 type: Transform - - uid: 13626 + - linkedPorts: + 11830: + - ArtifactAnalyzerSender: ArtifactAnalyzerReceiver + type: DeviceLinkSource +- proto: ComputerBroken + entities: + - uid: 6134 components: - - pos: 18.5,-28.5 + - rot: -1.5707963267948966 rad + pos: -14.5,-70.5 parent: 2 type: Transform - - uid: 15921 +- proto: ComputerCargoBounty + entities: + - uid: 6135 components: - - pos: 15.5,-3.5 + - rot: -1.5707963267948966 rad + pos: 16.5,-33.5 parent: 2 type: Transform - - uid: 17072 +- proto: ComputerCargoOrders + entities: + - uid: 6136 components: - - pos: 13.5,-14.5 + - rot: 1.5707963267948966 rad + pos: 11.5,-8.5 parent: 2 type: Transform -- proto: CrateFreezer - entities: - - uid: 659 + - uid: 6137 components: - - pos: 31.5,-12.5 + - rot: 1.5707963267948966 rad + pos: 4.5,-17.5 parent: 2 type: Transform -- proto: CrateFunBoxing +- proto: ComputerCloningConsole entities: - - uid: 5040 + - uid: 6138 components: - - pos: 32.5,16.5 + - rot: 3.141592653589793 rad + pos: 22.5,24.5 parent: 2 type: Transform -- proto: CrateGenericSteel +- proto: ComputerComms entities: - - uid: 4207 + - uid: 6139 components: - - pos: 14.5,-22.5 + - pos: -9.5,44.5 parent: 2 type: Transform - - uid: 13015 + - uid: 6140 components: - - pos: 16.5,-45.5 + - rot: 3.141592653589793 rad + pos: 1.5,37.5 parent: 2 type: Transform -- proto: CrateHydroponics +- proto: ComputerCrewMonitoring entities: - - uid: 10881 + - uid: 6141 components: - - pos: -17.5,7.5 + - pos: -21.5,-73.5 parent: 2 type: Transform -- proto: CrateHydroSecure - entities: - - uid: 1256 + - uid: 6142 components: - - pos: -21.5,9.5 + - rot: 3.141592653589793 rad + pos: 10.5,6.5 parent: 2 type: Transform -- proto: CrateMaterialGlass + - uid: 6143 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,42.5 + parent: 2 + type: Transform +- proto: ComputerCriminalRecords entities: - - uid: 5068 + - uid: 6144 components: - - pos: 43.5,10.5 + - pos: 28.5,7.5 parent: 2 type: Transform - - uid: 6428 + - uid: 6145 components: - - pos: -41.5,49.5 + - rot: -1.5707963267948966 rad + pos: -6.5,41.5 parent: 2 type: Transform -- proto: CrateMedicalScrubs +- proto: ComputerId entities: - - uid: 4568 + - uid: 6146 components: - - pos: 19.5,25.5 + - rot: -1.5707963267948966 rad + pos: 9.5,22.5 parent: 2 type: Transform -- proto: CrateMedicalSurgery - entities: - - uid: 4509 + - uid: 6147 components: - - pos: 15.5,26.5 + - pos: -3.5,-30.5 parent: 2 type: Transform - - air: - volume: 200 - immutable: False - temperature: 93.465614 - moles: - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - type: EntityStorage -- proto: CrateNPCCow - entities: - - uid: 631 + - uid: 6148 components: - - pos: -6.5,12.5 + - rot: 1.5707963267948966 rad + pos: -49.5,41.5 parent: 2 type: Transform -- proto: CrateNPCHamster - entities: - - uid: 1687 + - uid: 6149 components: - - pos: -35.5,9.5 + - rot: 1.5707963267948966 rad + pos: -32.5,-12.5 parent: 2 type: Transform -- proto: CrateScience - entities: - - uid: 6245 + - uid: 6150 components: - - pos: -42.5,31.5 + - rot: 1.5707963267948966 rad + pos: 17.5,-3.5 parent: 2 type: Transform -- proto: CrateScienceSecure - entities: - - uid: 16823 + - uid: 6151 components: - - pos: -40.5,37.5 + - rot: 3.141592653589793 rad + pos: 0.5,37.5 parent: 2 type: Transform -- proto: CrateSecurityNonlethal - entities: - - uid: 1067 + - uid: 6152 components: - - pos: -25.5,-12.5 + - rot: -1.5707963267948966 rad + pos: 7.5,-17.5 parent: 2 type: Transform -- proto: CrateSecurityRiot +- proto: ComputerMassMedia entities: - - uid: 6775 + - uid: 6153 components: - - pos: -43.5,-6.5 + - rot: 3.141592653589793 rad + pos: -13.5,20.5 parent: 2 type: Transform -- proto: CrayonWhite +- proto: ComputerMedicalRecords entities: - - uid: 11528 + - uid: 6154 components: - - pos: 12.680383,-31.937042 + - rot: 1.5707963267948966 rad + pos: -13.5,41.5 parent: 2 type: Transform -- proto: CrayonYellow +- proto: ComputerPowerMonitoring entities: - - uid: 11496 + - uid: 6155 components: - - pos: 12.352258,-32.062134 + - pos: -1.5,-21.5 parent: 2 type: Transform -- proto: Crematorium - entities: - - uid: 5785 + - uid: 6156 components: - rot: -1.5707963267948966 rad - pos: -35.5,38.5 + pos: 0.5,-25.5 parent: 2 type: Transform -- proto: CrewMonitoringServer +- proto: ComputerRadar entities: - - uid: 4445 + - uid: 6157 components: - - pos: 8.5,17.5 + - rot: -1.5707963267948966 rad + pos: -6.5,43.5 parent: 2 type: Transform -- proto: CriminalRecordsComputerCircuitboard - entities: - - uid: 6810 + - uid: 6158 components: - - pos: -14.342051,-28.424751 + - rot: -1.5707963267948966 rad + pos: 20.5,-46.5 parent: 2 type: Transform -- proto: CrowbarRed +- proto: ComputerResearchAndDevelopment entities: - - uid: 16815 + - uid: 6159 components: - - pos: 4.5887365,-10.48069 + - rot: 1.5707963267948966 rad + pos: -49.5,40.5 parent: 2 type: Transform -- proto: CryoPod - entities: - - uid: 4455 + - uid: 6160 components: - - pos: 16.5,21.5 + - rot: 1.5707963267948966 rad + pos: -13.5,42.5 parent: 2 type: Transform - - uid: 6129 + - uid: 6161 components: - - pos: 18.5,21.5 + - pos: -38.5,29.5 parent: 2 type: Transform -- proto: CyborgEndoskeleton +- proto: ComputerShuttleCargo entities: - - uid: 16389 + - uid: 6162 components: - - pos: -41.983334,41.682137 + - rot: -1.5707963267948966 rad + pos: 16.5,-34.5 parent: 2 type: Transform -- proto: d6Dice +- proto: ComputerShuttleSalvage entities: - - uid: 16828 + - uid: 6163 components: - - pos: -36.346603,-12.981798 + - rot: 3.141592653589793 rad + pos: 9.5,-34.5 parent: 2 type: Transform -- proto: DefibrillatorCabinetFilled +- proto: ComputerSolarControl entities: - - uid: 13583 + - uid: 6164 components: - - rot: -1.5707963267948966 rad - pos: 18.5,25.5 + - rot: 3.141592653589793 rad + pos: -20.5,-79.5 parent: 2 type: Transform - - uid: 13584 + - uid: 6165 components: - - pos: 23.5,9.5 + - rot: 1.5707963267948966 rad + pos: -17.5,-81.5 parent: 2 type: Transform - - uid: 15251 + - uid: 6166 components: - - rot: 1.5707963267948966 rad - pos: -34.5,2.5 + - rot: -1.5707963267948966 rad + pos: 45.5,10.5 parent: 2 type: Transform -- proto: DeployableBarrier - entities: - - uid: 534 + - uid: 6167 components: - - pos: -31.5,-6.5 + - pos: -41.5,51.5 parent: 2 type: Transform - - uid: 969 + - uid: 6168 components: - - pos: -31.5,-4.5 + - pos: -0.5,-21.5 parent: 2 type: Transform - - uid: 1456 +- proto: ComputerStationRecords + entities: + - uid: 6169 components: - - pos: -31.5,-5.5 + - rot: -1.5707963267948966 rad + pos: 28.5,4.5 parent: 2 type: Transform -- proto: DeskBell - entities: - - uid: 6693 + - uid: 6170 components: - - pos: -33.34242,29.657118 + - rot: 3.141592653589793 rad + pos: -21.5,-79.5 parent: 2 type: Transform - - type: Anchorable - - uid: 15168 + - uid: 6171 components: - - pos: -22.62739,-6.2531323 + - rot: -1.5707963267948966 rad + pos: -20.5,-7.5 parent: 2 type: Transform - - type: Anchorable - missingComponents: - - Item - - Pullable - - uid: 15193 + - uid: 6172 components: - - pos: -10.555967,8.660141 + - rot: 1.5707963267948966 rad + pos: -13.5,43.5 parent: 2 type: Transform - - type: Anchorable - missingComponents: - - Item - - Pullable - - uid: 16361 + - uid: 6173 components: - - pos: 14.373379,9.564 + - rot: -1.5707963267948966 rad + pos: -34.5,33.5 parent: 2 type: Transform - - type: Anchorable - missingComponents: - - Item - - Pullable - - uid: 16362 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 6174 components: - - pos: 18.722757,-2.328849 + - rot: 1.5707963267948966 rad + pos: -23.5,-7.5 parent: 2 type: Transform - - type: Anchorable - missingComponents: - - Item - - Pullable - - uid: 16363 + - uid: 6175 components: - - pos: 13.527524,-7.3327374 + - rot: -1.5707963267948966 rad + pos: -35.5,-6.5 parent: 2 type: Transform - - type: Anchorable - missingComponents: - - Item - - Pullable - - uid: 16366 + - uid: 6176 components: - - pos: -9.677367,-16.180046 + - rot: 1.5707963267948966 rad + pos: -11.5,42.5 parent: 2 type: Transform - - type: Anchorable - missingComponents: - - Item - - Pullable -- proto: DiceBag - entities: - - uid: 5894 + - uid: 6177 components: - - pos: -49.01911,27.04921 + - rot: -1.5707963267948966 rad + pos: 28.5,5.5 parent: 2 type: Transform -- proto: DiseaseDiagnoser +- proto: ComputerSurveillanceWirelessCameraMonitor entities: - - uid: 1802 + - uid: 6178 components: - - pos: 25.5,12.5 + - rot: 1.5707963267948966 rad + pos: -11.5,41.5 parent: 2 type: Transform -- proto: DisgustingSweptSoup - entities: - - uid: 11062 + - uid: 6179 components: - - pos: -63.024055,-8.147281 + - desc: an old, blocky computer that has a roaring fan. + name: old pc + type: MetaData + - pos: -31.5,20.5 parent: 2 type: Transform -- proto: DisposalBend +- proto: ComputerTechnologyDiskTerminal entities: - - uid: 1853 + - uid: 6180 components: - - pos: 12.5,-12.5 + - pos: -40.5,29.5 parent: 2 type: Transform - - uid: 1857 +- proto: ComputerTelevision + entities: + - uid: 6181 components: - - rot: 3.141592653589793 rad - pos: 5.5,-12.5 + - pos: -10.5,-10.5 parent: 2 type: Transform - - uid: 3283 + - uid: 6182 components: - - pos: -55.5,1.5 + - pos: -49.5,1.5 parent: 2 type: Transform - - uid: 3284 +- proto: ContainmentFieldGenerator + entities: + - uid: 6183 components: - - rot: 1.5707963267948966 rad - pos: -56.5,0.5 + - pos: -35.5,-34.5 parent: 2 type: Transform - - uid: 3285 + - uid: 6184 components: - - rot: 3.141592653589793 rad - pos: -56.5,1.5 + - pos: -27.5,-42.5 parent: 2 type: Transform - - uid: 3289 + - uid: 6185 components: - - rot: 1.5707963267948966 rad - pos: -52.5,3.5 + - pos: -27.5,-38.5 parent: 2 type: Transform - - uid: 3312 +- proto: ConveyorBelt + entities: + - uid: 6186 components: - - rot: 3.141592653589793 rad - pos: -52.5,-0.5 + - pos: 15.5,-13.5 parent: 2 type: Transform - - uid: 3323 + - links: + - 14707 + type: DeviceLinkSink + - uid: 6187 components: - - rot: -1.5707963267948966 rad - pos: -56.5,-14.5 + - pos: 15.5,-14.5 parent: 2 type: Transform - - uid: 3829 + - links: + - 14707 + type: DeviceLinkSink + - uid: 6188 components: - - rot: 1.5707963267948966 rad - pos: -45.5,-8.5 + - pos: 15.5,-12.5 parent: 2 type: Transform - - uid: 4965 + - links: + - 14707 + type: DeviceLinkSink + - uid: 6189 components: - - rot: 3.141592653589793 rad - pos: -44.5,40.5 + - pos: 15.5,-11.5 parent: 2 type: Transform - - uid: 5520 + - links: + - 14707 + type: DeviceLinkSink + - uid: 6190 components: - - pos: -14.5,5.5 + - pos: 15.5,-8.5 parent: 2 type: Transform - - uid: 12064 + - links: + - 14703 + type: DeviceLinkSink + - uid: 6191 components: - - rot: 3.141592653589793 rad - pos: 33.5,0.5 + - pos: 15.5,-7.5 parent: 2 type: Transform - - uid: 12336 + - links: + - 14703 + type: DeviceLinkSink + - uid: 6192 components: - - pos: 13.5,26.5 + - pos: 15.5,-6.5 parent: 2 type: Transform - - uid: 12365 + - links: + - 14703 + type: DeviceLinkSink + - uid: 6193 components: - - rot: -1.5707963267948966 rad - pos: 23.5,15.5 + - pos: 15.5,-5.5 parent: 2 type: Transform - - uid: 12386 + - links: + - 14703 + type: DeviceLinkSink + - uid: 6194 components: - - rot: 1.5707963267948966 rad - pos: 12.5,15.5 + - pos: 15.5,-10.5 parent: 2 type: Transform - - uid: 12470 + - links: + - 14707 + type: DeviceLinkSink + - uid: 6195 components: - - rot: -1.5707963267948966 rad - pos: 12.5,0.5 + - rot: 3.141592653589793 rad + pos: 18.5,-31.5 parent: 2 type: Transform - - uid: 12478 + - links: + - 13609 + type: DeviceLinkSink + - uid: 6196 components: - rot: -1.5707963267948966 rad - pos: 11.5,-6.5 + pos: 14.5,-14.5 parent: 2 type: Transform - - uid: 12492 + - links: + - 14707 + type: DeviceLinkSink + - uid: 6197 components: - rot: 1.5707963267948966 rad - pos: 5.5,-6.5 + pos: 18.5,-22.5 parent: 2 type: Transform - - uid: 12524 + - links: + - 14706 + type: DeviceLinkSink + - uid: 6198 components: - - rot: 3.141592653589793 rad - pos: 12.5,-20.5 + - rot: 1.5707963267948966 rad + pos: 17.5,-22.5 parent: 2 type: Transform - - uid: 12574 + - links: + - 14706 + type: DeviceLinkSink + - uid: 6199 components: - - rot: -1.5707963267948966 rad - pos: 25.5,-20.5 + - rot: 1.5707963267948966 rad + pos: 16.5,-22.5 parent: 2 type: Transform - - uid: 12597 + - links: + - 14706 + type: DeviceLinkSink + - uid: 6200 components: - - pos: 29.5,-15.5 + - rot: -1.5707963267948966 rad + pos: -50.5,3.5 parent: 2 type: Transform - - uid: 12603 + - links: + - 14705 + type: DeviceLinkSink + - uid: 6201 components: - - rot: 3.141592653589793 rad - pos: 29.5,-21.5 + - pos: 11.5,-25.5 parent: 2 type: Transform - - uid: 12616 + - links: + - 14704 + type: DeviceLinkSink + - uid: 6202 components: - rot: 3.141592653589793 rad - pos: 39.5,-22.5 - parent: 2 - type: Transform - - uid: 12618 - components: - - pos: 39.5,0.5 + pos: 18.5,-35.5 parent: 2 type: Transform - - uid: 12679 + - links: + - 13609 + type: DeviceLinkSink + - uid: 6203 components: - - rot: 1.5707963267948966 rad - pos: 19.5,-5.5 + - pos: 11.5,-22.5 parent: 2 type: Transform - - uid: 12693 + - links: + - 14704 + type: DeviceLinkSink + - uid: 6204 components: - - pos: 33.5,3.5 + - pos: 11.5,-23.5 parent: 2 type: Transform - - uid: 12716 + - links: + - 14704 + type: DeviceLinkSink + - uid: 6205 components: - - pos: 25.5,0.5 + - pos: 22.5,-33.5 parent: 2 type: Transform - - uid: 12725 + - links: + - 13609 + type: DeviceLinkSink + - uid: 6206 components: - rot: 3.141592653589793 rad - pos: 17.5,0.5 + pos: 18.5,-32.5 parent: 2 type: Transform - - uid: 12726 + - links: + - 13609 + type: DeviceLinkSink + - uid: 6207 components: - - rot: 1.5707963267948966 rad - pos: 11.5,0.5 + - pos: 22.5,-34.5 parent: 2 type: Transform - - uid: 12780 + - links: + - 13609 + type: DeviceLinkSink + - uid: 6208 components: - - rot: 3.141592653589793 rad - pos: 28.5,-10.5 + - pos: 11.5,-17.5 parent: 2 type: Transform - - uid: 12787 + - links: + - 14704 + type: DeviceLinkSink + - uid: 6209 components: - - rot: -1.5707963267948966 rad - pos: -8.5,-12.5 + - pos: 22.5,-35.5 parent: 2 type: Transform - - uid: 12827 + - links: + - 13609 + type: DeviceLinkSink + - uid: 6210 components: - - rot: 1.5707963267948966 rad - pos: -17.5,-12.5 + - pos: 11.5,-18.5 parent: 2 type: Transform - - uid: 12925 + - links: + - 14704 + type: DeviceLinkSink + - uid: 6211 components: - - rot: 3.141592653589793 rad - pos: -12.5,-18.5 + - pos: 11.5,-19.5 parent: 2 type: Transform - - uid: 12933 + - links: + - 14704 + type: DeviceLinkSink + - uid: 6212 components: - - rot: -1.5707963267948966 rad - pos: -6.5,-18.5 + - pos: 11.5,-20.5 parent: 2 type: Transform - - uid: 12947 + - links: + - 14704 + type: DeviceLinkSink + - uid: 6213 components: - - rot: -1.5707963267948966 rad - pos: -2.5,-22.5 + - pos: 11.5,-21.5 parent: 2 type: Transform - - uid: 12968 + - links: + - 14704 + type: DeviceLinkSink + - uid: 6214 components: - rot: 3.141592653589793 rad - pos: -16.5,-33.5 + pos: 18.5,-33.5 parent: 2 type: Transform - - uid: 12969 + - links: + - 13609 + type: DeviceLinkSink + - uid: 6215 components: - - pos: -16.5,-32.5 + - pos: 11.5,-24.5 parent: 2 type: Transform - - uid: 12973 + - links: + - 14704 + type: DeviceLinkSink + - uid: 6216 components: - - rot: 3.141592653589793 rad - pos: -20.5,-32.5 + - pos: 22.5,-32.5 parent: 2 type: Transform - - uid: 12989 + - links: + - 13609 + type: DeviceLinkSink + - uid: 6217 components: - rot: 3.141592653589793 rad - pos: -7.5,-41.5 + pos: 18.5,-34.5 parent: 2 type: Transform - - uid: 13021 + - links: + - 13609 + type: DeviceLinkSink + - uid: 6218 components: - - pos: -16.5,-71.5 + - rot: -1.5707963267948966 rad + pos: 12.5,-14.5 parent: 2 type: Transform - - uid: 13022 + - links: + - 14707 + type: DeviceLinkSink + - uid: 6219 components: - - rot: 3.141592653589793 rad - pos: -19.5,-76.5 + - rot: -1.5707963267948966 rad + pos: 13.5,-14.5 parent: 2 type: Transform - - uid: 13082 + - links: + - 14707 + type: DeviceLinkSink +- proto: CornSeeds + entities: + - uid: 6220 components: - - rot: -1.5707963267948966 rad - pos: -17.5,-15.5 + - pos: 32.565235,-12.427586 parent: 2 type: Transform - - uid: 13166 +- proto: CrateArtifactContainer + entities: + - uid: 6221 components: - - rot: 3.141592653589793 rad - pos: -24.5,-0.5 + - pos: -52.5,34.5 parent: 2 type: Transform - - uid: 13196 + - uid: 6222 components: - - rot: 3.141592653589793 rad - pos: -21.5,5.5 + - pos: 14.5,-45.5 parent: 2 type: Transform - - uid: 13225 +- proto: CrateChemistryS + entities: + - uid: 6223 components: - - rot: 3.141592653589793 rad - pos: -9.5,25.5 + - pos: 19.5,12.5 parent: 2 type: Transform - - uid: 13228 +- proto: CrateEmergencyInflatablewall + entities: + - uid: 6224 components: - - pos: -4.5,25.5 + - pos: 19.3288,-24.5 parent: 2 type: Transform - - uid: 13281 +- proto: CrateEmptySpawner + entities: + - uid: 6225 components: - - pos: -5.5,39.5 + - pos: 21.5,-30.5 parent: 2 type: Transform - - uid: 13282 + - uid: 6226 components: - - rot: 3.141592653589793 rad - pos: -12.5,39.5 + - pos: 14.5,-28.5 parent: 2 type: Transform - - uid: 13286 + - uid: 6227 components: - - rot: 1.5707963267948966 rad - pos: -12.5,43.5 + - pos: 9.5,-36.5 parent: 2 type: Transform - - uid: 13287 + - uid: 6228 components: - - rot: -1.5707963267948966 rad - pos: -11.5,43.5 + - pos: 21.5,-28.5 parent: 2 type: Transform - - uid: 13343 + - uid: 6229 components: - - pos: -24.5,38.5 + - pos: 11.5,-23.5 parent: 2 type: Transform - - uid: 13344 +- proto: CrateEngineeringAMEShielding + entities: + - uid: 6230 components: - - rot: 1.5707963267948966 rad - pos: -27.5,38.5 + - pos: 3.5,-22.5 parent: 2 type: Transform - - uid: 13410 +- proto: CrateEngineeringSingularityCollector + entities: + - uid: 6231 components: - - rot: 3.141592653589793 rad - pos: -50.5,15.5 + - pos: -13.5,-42.5 parent: 2 type: Transform - - uid: 13421 + - uid: 6232 components: - - rot: 3.141592653589793 rad - pos: -32.5,25.5 + - pos: -12.5,-43.5 parent: 2 type: Transform - - uid: 13491 + - uid: 6233 components: - - rot: 1.5707963267948966 rad - pos: -48.5,6.5 + - pos: -12.5,-46.5 parent: 2 type: Transform - - uid: 13501 + - uid: 6234 components: - - rot: 1.5707963267948966 rad - pos: -32.5,34.5 + - pos: -13.5,-46.5 parent: 2 type: Transform - - uid: 13512 + - uid: 6235 components: - - rot: 3.141592653589793 rad - pos: -41.5,26.5 + - pos: -10.5,-45.5 parent: 2 type: Transform - - uid: 13516 + - uid: 6236 components: - - rot: -1.5707963267948966 rad - pos: -46.5,22.5 + - pos: -11.5,-45.5 parent: 2 type: Transform - - uid: 13523 + - uid: 6237 components: - - rot: -1.5707963267948966 rad - pos: -44.5,29.5 + - pos: -13.5,-44.5 parent: 2 type: Transform - - uid: 13524 + - uid: 6238 components: - - rot: 1.5707963267948966 rad - pos: -46.5,29.5 + - pos: -13.5,-43.5 parent: 2 type: Transform - - uid: 13534 +- proto: CrateEngineeringSingularityContainment + entities: + - uid: 6239 components: - - rot: 1.5707963267948966 rad - pos: -41.5,34.5 + - pos: -11.5,-42.5 parent: 2 type: Transform - - uid: 13551 + - uid: 6240 components: - - rot: 1.5707963267948966 rad - pos: -57.5,33.5 + - pos: -10.5,-43.5 parent: 2 type: Transform - - uid: 13556 + - uid: 6241 components: - - rot: -1.5707963267948966 rad - pos: -39.5,34.5 + - pos: -11.5,-43.5 parent: 2 type: Transform - - uid: 13568 + - uid: 6242 components: - - pos: -39.5,40.5 + - pos: -12.5,-42.5 parent: 2 type: Transform - - uid: 15635 + - uid: 6243 components: - - pos: 2.5,38.5 + - pos: -10.5,-42.5 parent: 2 type: Transform - - uid: 16819 + - uid: 6244 components: - - rot: 1.5707963267948966 rad - pos: 0.5,4.5 + - pos: -12.5,-44.5 parent: 2 type: Transform -- proto: DisposalJunction +- proto: CrateEngineeringSingularityEmitter entities: - - uid: 12376 + - uid: 6245 components: - - rot: -1.5707963267948966 rad - pos: 13.5,15.5 + - pos: -11.5,-44.5 parent: 2 type: Transform - - uid: 12510 + - uid: 6246 components: - - pos: 5.5,-9.5 + - pos: -10.5,-44.5 parent: 2 type: Transform - - uid: 12580 + - uid: 6247 components: - - pos: 25.5,-16.5 + - pos: -11.5,-46.5 parent: 2 type: Transform - - uid: 12664 + - uid: 6248 components: - - pos: 25.5,-5.5 + - pos: -10.5,-46.5 parent: 2 type: Transform - - uid: 12736 + - uid: 6249 components: - - pos: 11.5,-0.5 + - pos: -12.5,-45.5 parent: 2 type: Transform - - uid: 12756 + - uid: 6250 components: - - rot: 1.5707963267948966 rad - pos: -8.5,-0.5 + - pos: -13.5,-45.5 parent: 2 type: Transform - - uid: 12784 +- proto: CrateEngineeringSolar + entities: + - uid: 6251 components: - - rot: 3.141592653589793 rad - pos: -8.5,-2.5 + - pos: 43.5,9.5 parent: 2 type: Transform - - uid: 12801 + - uid: 6252 components: - - rot: 1.5707963267948966 rad - pos: -12.5,-12.5 + - pos: -40.5,49.5 parent: 2 type: Transform - - uid: 12823 +- proto: CrateEngineeringToolbox + entities: + - uid: 6253 components: - - rot: 1.5707963267948966 rad - pos: -23.5,-0.5 + - pos: -6.5,-20.5 parent: 2 type: Transform - - uid: 12948 +- proto: CrateFilledSpawner + entities: + - uid: 6254 components: - - rot: 3.141592653589793 rad - pos: -7.5,-22.5 + - pos: 15.5,-16.5 parent: 2 type: Transform - - uid: 12962 + - uid: 6255 components: - - rot: 1.5707963267948966 rad - pos: -10.5,-33.5 + - pos: 14.5,-17.5 parent: 2 type: Transform - - uid: 13034 + - uid: 6256 components: - - pos: -16.5,-76.5 + - pos: 16.5,-29.5 parent: 2 type: Transform - - uid: 13172 + - uid: 6257 components: - - pos: -14.5,3.5 + - pos: 18.5,-28.5 parent: 2 type: Transform - - uid: 13183 + - uid: 6258 components: - - pos: -4.5,9.5 + - pos: 15.5,-3.5 parent: 2 type: Transform - - uid: 13265 + - uid: 6259 components: - - pos: -5.5,36.5 + - pos: 13.5,-14.5 parent: 2 type: Transform - - uid: 13312 +- proto: CrateFreezer + entities: + - uid: 6260 components: - - pos: -24.5,6.5 + - pos: 31.5,-12.5 parent: 2 type: Transform - - uid: 13358 +- proto: CrateFunBoxing + entities: + - uid: 6261 components: - - pos: -24.5,15.5 + - pos: 32.5,16.5 parent: 2 type: Transform - - uid: 13386 +- proto: CrateGenericSteel + entities: + - uid: 6262 components: - - rot: 1.5707963267948966 rad - pos: -38.5,15.5 + - pos: 14.5,-22.5 parent: 2 type: Transform - - uid: 13413 + - uid: 6263 components: - - pos: -24.5,25.5 + - pos: 16.5,-45.5 parent: 2 type: Transform - - uid: 13493 +- proto: CrateHydroponics + entities: + - uid: 6264 components: - - pos: -32.5,26.5 + - pos: -17.5,7.5 parent: 2 type: Transform - - uid: 13508 +- proto: CrateHydroSecure + entities: + - uid: 6265 components: - - rot: 1.5707963267948966 rad - pos: -38.5,26.5 + - pos: -21.5,9.5 parent: 2 type: Transform - - uid: 13533 +- proto: CrateMaterialGlass + entities: + - uid: 6266 components: - - pos: -41.5,33.5 + - pos: 43.5,10.5 parent: 2 type: Transform - - uid: 13555 + - uid: 6267 components: - - pos: -39.5,36.5 + - pos: -41.5,49.5 parent: 2 type: Transform - - uid: 14021 +- proto: CrateMedicalScrubs + entities: + - uid: 6268 components: - - pos: -24.5,17.5 + - pos: 19.5,25.5 parent: 2 type: Transform -- proto: DisposalJunctionFlipped +- proto: CrateMedicalSurgery entities: - - uid: 654 + - uid: 6269 components: - - rot: 1.5707963267948966 rad - pos: 0.5,-0.5 + - pos: 15.5,26.5 parent: 2 type: Transform - - uid: 3223 + - air: + volume: 200 + immutable: False + temperature: 93.465614 + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + type: EntityStorage +- proto: CrateNPCCow + entities: + - uid: 6270 components: - - rot: 1.5707963267948966 rad - pos: -38.5,-8.5 + - pos: -6.5,12.5 parent: 2 type: Transform - - uid: 3293 +- proto: CrateNPCHamster + entities: + - uid: 6271 components: - - rot: 1.5707963267948966 rad - pos: -55.5,0.5 + - pos: -35.5,9.5 parent: 2 type: Transform - - uid: 3308 +- proto: CrateScience + entities: + - uid: 6272 components: - - rot: 3.141592653589793 rad - pos: -52.5,0.5 + - pos: -42.5,31.5 parent: 2 type: Transform - - uid: 4317 +- proto: CrateScienceSecure + entities: + - uid: 6273 components: - - rot: -1.5707963267948966 rad - pos: -10.5,-18.5 + - pos: -40.5,37.5 parent: 2 type: Transform - - uid: 7248 +- proto: CrateSecurityNonlethal + entities: + - uid: 6274 components: - - pos: 25.5,-4.5 + - pos: -25.5,-12.5 parent: 2 type: Transform - - uid: 7565 +- proto: CrateSecurityRiot + entities: + - uid: 6275 components: - - pos: -5.5,38.5 + - pos: -43.5,-6.5 parent: 2 type: Transform - - uid: 7701 +- proto: CrayonWhite + entities: + - uid: 6276 components: - - rot: 1.5707963267948966 rad - pos: -33.5,-8.5 + - pos: 12.680383,-31.937042 parent: 2 type: Transform - - uid: 12385 +- proto: CrayonYellow + entities: + - uid: 6277 components: - - pos: 12.5,11.5 + - pos: 12.352258,-32.062134 parent: 2 type: Transform - - uid: 12457 +- proto: Crematorium + entities: + - uid: 6278 components: - - pos: 12.5,8.5 + - rot: -1.5707963267948966 rad + pos: -35.5,38.5 parent: 2 type: Transform - - uid: 12581 - components: - - pos: 25.5,-15.5 - parent: 2 - type: Transform - - uid: 12617 +- proto: CrewMonitoringServer + entities: + - uid: 6279 components: - - rot: 1.5707963267948966 rad - pos: 37.5,0.5 + - pos: 8.5,17.5 parent: 2 type: Transform - - uid: 12687 +- proto: CriminalRecordsComputerCircuitboard + entities: + - uid: 6280 components: - - rot: 1.5707963267948966 rad - pos: -5.5,25.5 + - pos: -14.342051,-28.424751 parent: 2 type: Transform - - uid: 12752 +- proto: CrowbarRed + entities: + - uid: 6281 components: - - rot: 1.5707963267948966 rad - pos: -4.5,-0.5 + - pos: 4.5887365,-10.48069 parent: 2 type: Transform - - uid: 12814 +- proto: CryoPod + entities: + - uid: 6282 components: - - rot: 1.5707963267948966 rad - pos: -14.5,-0.5 + - pos: 16.5,21.5 parent: 2 type: Transform - - uid: 12934 + - uid: 6283 components: - - rot: -1.5707963267948966 rad - pos: -7.5,-18.5 + - pos: 18.5,21.5 parent: 2 type: Transform - - uid: 12959 +- proto: CyborgEndoskeleton + entities: + - uid: 6284 components: - - rot: 3.141592653589793 rad - pos: -7.5,-33.5 + - pos: -41.983334,41.682137 parent: 2 type: Transform - - uid: 13104 +- proto: d6Dice + entities: + - uid: 6285 components: - - rot: 3.141592653589793 rad - pos: -23.5,-8.5 + - pos: -36.346603,-12.981798 parent: 2 type: Transform - - uid: 13258 +- proto: DefibrillatorCabinetFilled + entities: + - uid: 6286 components: - - pos: -5.5,35.5 + - rot: -1.5707963267948966 rad + pos: 18.5,25.5 parent: 2 type: Transform - - uid: 13342 + - uid: 6287 components: - - pos: -24.5,36.5 + - pos: 23.5,9.5 parent: 2 type: Transform - - uid: 13403 + - uid: 6288 components: - - pos: -50.5,22.5 + - rot: 1.5707963267948966 rad + pos: -34.5,2.5 parent: 2 type: Transform -- proto: DisposalPipe +- proto: DeployableBarrier entities: - - uid: 605 + - uid: 6289 components: - - pos: 0.5,0.5 + - pos: -31.5,-6.5 parent: 2 type: Transform - - uid: 641 + - uid: 6290 components: - - pos: 0.5,1.5 + - pos: -31.5,-4.5 parent: 2 type: Transform - - uid: 650 + - uid: 6291 components: - - pos: 0.5,2.5 + - pos: -31.5,-5.5 parent: 2 type: Transform - - uid: 653 +- proto: DeskBell + entities: + - uid: 6292 components: - - pos: 0.5,3.5 + - pos: -33.34242,29.657118 parent: 2 type: Transform - - uid: 1045 + - type: Anchorable + - uid: 6293 components: - - rot: -1.5707963267948966 rad - pos: 9.5,-12.5 + - pos: -22.62739,-6.2531323 parent: 2 type: Transform - - uid: 1095 + - type: Anchorable + missingComponents: + - Item + - Pullable + - uid: 6294 components: - - rot: 3.141592653589793 rad - pos: 12.5,-13.5 + - pos: -10.555967,8.660141 parent: 2 type: Transform - - uid: 1096 + - type: Anchorable + missingComponents: + - Item + - Pullable + - uid: 6295 components: - - rot: 3.141592653589793 rad - pos: 12.5,-14.5 + - pos: 14.373379,9.564 parent: 2 type: Transform - - uid: 1101 + - type: Anchorable + missingComponents: + - Item + - Pullable + - uid: 6296 components: - - rot: 3.141592653589793 rad - pos: 12.5,-16.5 + - pos: 18.722757,-2.328849 parent: 2 type: Transform - - uid: 1114 + - type: Anchorable + missingComponents: + - Item + - Pullable + - uid: 6297 components: - - rot: 3.141592653589793 rad - pos: 12.5,-15.5 + - pos: 13.527524,-7.3327374 parent: 2 type: Transform - - uid: 1474 + - type: Anchorable + missingComponents: + - Item + - Pullable + - uid: 6298 components: - - rot: -1.5707963267948966 rad - pos: -51.5,3.5 + - pos: -9.677367,-16.180046 parent: 2 type: Transform - - uid: 1870 + - type: Anchorable + missingComponents: + - Item + - Pullable +- proto: DiceBag + entities: + - uid: 6299 components: - - rot: -1.5707963267948966 rad - pos: 11.5,-12.5 + - pos: -49.01911,27.04921 parent: 2 type: Transform - - uid: 2291 +- proto: DiseaseDiagnoser + entities: + - uid: 6300 components: - - pos: -12.5,-13.5 + - pos: 25.5,12.5 parent: 2 type: Transform - - uid: 2292 +- proto: DisgustingSweptSoup + entities: + - uid: 6301 components: - - pos: -12.5,-14.5 + - pos: -63.024055,-8.147281 parent: 2 type: Transform - - uid: 3002 +- proto: DisposalBend + entities: + - uid: 6302 components: - - rot: -1.5707963267948966 rad - pos: -31.5,-8.5 + - pos: 12.5,-12.5 parent: 2 type: Transform - - uid: 3198 + - uid: 6303 components: - - rot: -1.5707963267948966 rad - pos: -36.5,-8.5 + - rot: 3.141592653589793 rad + pos: 5.5,-12.5 parent: 2 type: Transform - - uid: 3232 + - uid: 6304 components: - - pos: -38.5,-7.5 + - pos: -55.5,1.5 parent: 2 type: Transform - - uid: 3291 + - uid: 6305 components: - - pos: -52.5,2.5 + - rot: 1.5707963267948966 rad + pos: -56.5,0.5 parent: 2 type: Transform - - uid: 3297 + - uid: 6306 components: - - pos: -56.5,-0.5 + - rot: 3.141592653589793 rad + pos: -56.5,1.5 parent: 2 type: Transform - - uid: 3298 + - uid: 6307 components: - - pos: -56.5,-1.5 + - rot: 1.5707963267948966 rad + pos: -52.5,3.5 parent: 2 type: Transform - - uid: 3299 + - uid: 6308 components: - - pos: -56.5,-2.5 + - rot: 3.141592653589793 rad + pos: -52.5,-0.5 parent: 2 type: Transform - - uid: 3300 + - uid: 6309 components: - - pos: -56.5,-3.5 + - rot: -1.5707963267948966 rad + pos: -56.5,-14.5 parent: 2 type: Transform - - uid: 3301 + - uid: 6310 components: - - pos: -56.5,-4.5 + - rot: 1.5707963267948966 rad + pos: -45.5,-8.5 parent: 2 type: Transform - - uid: 3302 + - uid: 6311 components: - - pos: -56.5,-5.5 + - rot: 3.141592653589793 rad + pos: -44.5,40.5 parent: 2 type: Transform - - uid: 3303 + - uid: 6312 components: - - pos: -56.5,-6.5 + - pos: -14.5,5.5 parent: 2 type: Transform - - uid: 3307 + - uid: 6313 components: - - pos: -52.5,1.5 + - rot: 3.141592653589793 rad + pos: 33.5,0.5 parent: 2 type: Transform - - uid: 3310 + - uid: 6314 components: - - rot: 1.5707963267948966 rad - pos: -50.5,-0.5 + - pos: 13.5,26.5 parent: 2 type: Transform - - uid: 3311 + - uid: 6315 components: - - rot: 1.5707963267948966 rad - pos: -51.5,-0.5 + - rot: -1.5707963267948966 rad + pos: 23.5,15.5 parent: 2 type: Transform - - uid: 3313 + - uid: 6316 components: - rot: 1.5707963267948966 rad - pos: -54.5,0.5 + pos: 12.5,15.5 parent: 2 type: Transform - - uid: 3314 + - uid: 6317 components: - - rot: 1.5707963267948966 rad - pos: -53.5,0.5 + - rot: -1.5707963267948966 rad + pos: 12.5,0.5 parent: 2 type: Transform - - uid: 3316 + - uid: 6318 components: - - rot: 3.141592653589793 rad - pos: -56.5,-7.5 + - rot: -1.5707963267948966 rad + pos: 11.5,-6.5 parent: 2 type: Transform - - uid: 3317 + - uid: 6319 components: - - rot: 3.141592653589793 rad - pos: -56.5,-8.5 + - rot: 1.5707963267948966 rad + pos: 5.5,-6.5 parent: 2 type: Transform - - uid: 3318 + - uid: 6320 components: - rot: 3.141592653589793 rad - pos: -56.5,-9.5 + pos: 12.5,-20.5 parent: 2 type: Transform - - uid: 3319 + - uid: 6321 components: - - rot: 3.141592653589793 rad - pos: -56.5,-10.5 + - rot: -1.5707963267948966 rad + pos: 25.5,-20.5 parent: 2 type: Transform - - uid: 3320 + - uid: 6322 components: - - rot: 3.141592653589793 rad - pos: -56.5,-11.5 + - pos: 29.5,-15.5 parent: 2 type: Transform - - uid: 3321 + - uid: 6323 components: - rot: 3.141592653589793 rad - pos: -56.5,-12.5 + pos: 29.5,-21.5 parent: 2 type: Transform - - uid: 3322 + - uid: 6324 components: - rot: 3.141592653589793 rad - pos: -56.5,-13.5 + pos: 39.5,-22.5 parent: 2 type: Transform - - uid: 3325 + - uid: 6325 components: - - rot: -1.5707963267948966 rad - pos: -57.5,-14.5 + - pos: 39.5,0.5 parent: 2 type: Transform - - uid: 3326 + - uid: 6326 components: - - rot: -1.5707963267948966 rad - pos: -58.5,-14.5 + - rot: 1.5707963267948966 rad + pos: 19.5,-5.5 parent: 2 type: Transform - - uid: 3479 + - uid: 6327 components: - - pos: -23.5,-9.5 + - pos: 33.5,3.5 parent: 2 type: Transform - - uid: 3848 + - uid: 6328 components: - - pos: -45.5,-9.5 + - pos: 25.5,0.5 parent: 2 type: Transform - - uid: 3933 + - uid: 6329 components: - - pos: 13.5,22.5 + - rot: 3.141592653589793 rad + pos: 17.5,0.5 parent: 2 type: Transform - - uid: 4271 + - uid: 6330 components: - - pos: -14.5,4.5 + - rot: 1.5707963267948966 rad + pos: 11.5,0.5 parent: 2 type: Transform - - uid: 4322 + - uid: 6331 components: - - rot: -1.5707963267948966 rad - pos: -37.5,6.5 + - rot: 3.141592653589793 rad + pos: 28.5,-10.5 parent: 2 type: Transform - - uid: 4836 + - uid: 6332 components: - rot: -1.5707963267948966 rad - pos: 10.5,-12.5 + pos: -8.5,-12.5 parent: 2 type: Transform - - uid: 4842 + - uid: 6333 components: - - rot: -1.5707963267948966 rad - pos: 8.5,-12.5 + - rot: 1.5707963267948966 rad + pos: -17.5,-12.5 parent: 2 type: Transform - - uid: 4953 + - uid: 6334 components: - rot: 3.141592653589793 rad - pos: 12.5,-19.5 + pos: -12.5,-18.5 parent: 2 type: Transform - - uid: 4964 + - uid: 6335 components: - - pos: 17.5,-21.5 + - rot: -1.5707963267948966 rad + pos: -6.5,-18.5 parent: 2 type: Transform - - uid: 4978 + - uid: 6336 components: - rot: -1.5707963267948966 rad - pos: 20.5,-20.5 + pos: -2.5,-22.5 parent: 2 type: Transform - - uid: 4983 + - uid: 6337 components: - - rot: -1.5707963267948966 rad - pos: 31.5,3.5 + - rot: 3.141592653589793 rad + pos: -16.5,-33.5 parent: 2 type: Transform - - uid: 5623 + - uid: 6338 components: - - rot: -1.5707963267948966 rad - pos: -15.5,5.5 + - pos: -16.5,-32.5 parent: 2 type: Transform - - uid: 5825 + - uid: 6339 components: - - rot: -1.5707963267948966 rad - pos: 7.5,-12.5 + - rot: 3.141592653589793 rad + pos: -20.5,-32.5 parent: 2 type: Transform - - uid: 5913 + - uid: 6340 components: - - rot: -1.5707963267948966 rad - pos: 6.5,-12.5 + - pos: -16.5,-71.5 parent: 2 type: Transform - - uid: 7561 + - uid: 6341 components: - - rot: -1.5707963267948966 rad - pos: -37.5,-8.5 + - rot: 3.141592653589793 rad + pos: -19.5,-76.5 parent: 2 type: Transform - - uid: 7785 + - uid: 6342 components: - rot: -1.5707963267948966 rad - pos: 16.5,-20.5 + pos: -17.5,-15.5 parent: 2 type: Transform - - uid: 11625 + - uid: 6343 components: - rot: 3.141592653589793 rad - pos: 12.5,-18.5 + pos: -24.5,-0.5 parent: 2 type: Transform - - uid: 12117 + - uid: 6344 components: - - rot: 1.5707963267948966 rad - pos: 31.5,-21.5 + - rot: 3.141592653589793 rad + pos: -21.5,5.5 parent: 2 type: Transform - - uid: 12337 + - uid: 6345 components: - - pos: 13.5,25.5 + - rot: 3.141592653589793 rad + pos: -9.5,25.5 parent: 2 type: Transform - - uid: 12338 + - uid: 6346 components: - - pos: 13.5,24.5 + - pos: -4.5,25.5 parent: 2 type: Transform - - uid: 12339 + - uid: 6347 components: - - pos: 13.5,23.5 + - pos: -5.5,39.5 parent: 2 type: Transform - - uid: 12350 + - uid: 6348 components: - rot: 3.141592653589793 rad - pos: 13.5,21.5 + pos: -12.5,39.5 parent: 2 type: Transform - - uid: 12351 + - uid: 6349 components: - - rot: 3.141592653589793 rad - pos: 13.5,20.5 + - rot: 1.5707963267948966 rad + pos: -12.5,43.5 parent: 2 type: Transform - - uid: 12352 + - uid: 6350 components: - - rot: 3.141592653589793 rad - pos: 13.5,19.5 + - rot: -1.5707963267948966 rad + pos: -11.5,43.5 parent: 2 type: Transform - - uid: 12353 + - uid: 6351 components: - - rot: 3.141592653589793 rad - pos: 13.5,18.5 + - pos: -24.5,38.5 parent: 2 type: Transform - - uid: 12354 + - uid: 6352 components: - - rot: 3.141592653589793 rad - pos: 13.5,17.5 + - rot: 1.5707963267948966 rad + pos: -27.5,38.5 parent: 2 type: Transform - - uid: 12355 + - uid: 6353 components: - rot: 3.141592653589793 rad - pos: 13.5,16.5 + pos: -50.5,15.5 parent: 2 type: Transform - - uid: 12358 + - uid: 6354 components: - rot: 3.141592653589793 rad - pos: 23.5,20.5 + pos: -32.5,25.5 parent: 2 type: Transform - - uid: 12359 + - uid: 6355 components: - - rot: 3.141592653589793 rad - pos: 23.5,19.5 + - rot: 1.5707963267948966 rad + pos: -48.5,6.5 parent: 2 type: Transform - - uid: 12360 + - uid: 6356 components: - - rot: 3.141592653589793 rad - pos: 23.5,18.5 + - rot: 1.5707963267948966 rad + pos: -32.5,34.5 parent: 2 type: Transform - - uid: 12361 + - uid: 6357 components: - rot: 3.141592653589793 rad - pos: 23.5,17.5 + pos: -41.5,26.5 parent: 2 type: Transform - - uid: 12362 + - uid: 6358 components: - - rot: 3.141592653589793 rad - pos: 23.5,16.5 + - rot: -1.5707963267948966 rad + pos: -46.5,22.5 parent: 2 type: Transform - - uid: 12367 + - uid: 6359 components: - rot: -1.5707963267948966 rad - pos: 22.5,15.5 + pos: -44.5,29.5 parent: 2 type: Transform - - uid: 12368 + - uid: 6360 components: - - rot: -1.5707963267948966 rad - pos: 21.5,15.5 + - rot: 1.5707963267948966 rad + pos: -46.5,29.5 parent: 2 type: Transform - - uid: 12369 + - uid: 6361 components: - - rot: -1.5707963267948966 rad - pos: 20.5,15.5 + - rot: 1.5707963267948966 rad + pos: -41.5,34.5 parent: 2 type: Transform - - uid: 12370 + - uid: 6362 components: - - rot: -1.5707963267948966 rad - pos: 19.5,15.5 + - rot: 1.5707963267948966 rad + pos: -57.5,33.5 parent: 2 type: Transform - - uid: 12371 + - uid: 6363 components: - rot: -1.5707963267948966 rad - pos: 18.5,15.5 + pos: -39.5,34.5 parent: 2 type: Transform - - uid: 12372 + - uid: 6364 components: - - rot: -1.5707963267948966 rad - pos: 17.5,15.5 + - pos: -39.5,40.5 parent: 2 type: Transform - - uid: 12373 + - uid: 6365 components: - - rot: -1.5707963267948966 rad - pos: 16.5,15.5 + - pos: 2.5,38.5 parent: 2 type: Transform - - uid: 12374 + - uid: 6366 components: - - rot: -1.5707963267948966 rad - pos: 15.5,15.5 + - rot: 1.5707963267948966 rad + pos: 0.5,4.5 parent: 2 type: Transform - - uid: 12375 + - uid: 6367 components: - rot: -1.5707963267948966 rad - pos: 14.5,15.5 + pos: -7.5,-37.5 parent: 2 type: Transform - - uid: 12378 + - uid: 6368 components: - - rot: 3.141592653589793 rad - pos: 12.5,14.5 + - rot: 1.5707963267948966 rad + pos: -8.5,-37.5 parent: 2 type: Transform - - uid: 12379 +- proto: DisposalJunction + entities: + - uid: 6369 components: - - rot: 3.141592653589793 rad - pos: 12.5,13.5 + - rot: -1.5707963267948966 rad + pos: 13.5,15.5 parent: 2 type: Transform - - uid: 12380 + - uid: 6370 components: - - rot: 3.141592653589793 rad - pos: 12.5,12.5 + - pos: 5.5,-9.5 parent: 2 type: Transform - - uid: 12382 - components: - - rot: 3.141592653589793 rad - pos: 12.5,10.5 - parent: 2 - type: Transform - - uid: 12383 - components: - - rot: 3.141592653589793 rad - pos: 12.5,9.5 - parent: 2 - type: Transform - - uid: 12389 + - uid: 6371 components: - - rot: -1.5707963267948966 rad - pos: 13.5,11.5 + - pos: 25.5,-16.5 parent: 2 type: Transform - - uid: 12453 + - uid: 6372 components: - - rot: -1.5707963267948966 rad - pos: 16.5,8.5 + - pos: 25.5,-5.5 parent: 2 type: Transform - - uid: 12454 + - uid: 6373 components: - - rot: -1.5707963267948966 rad - pos: 15.5,8.5 + - pos: 11.5,-0.5 parent: 2 type: Transform - - uid: 12455 + - uid: 6374 components: - - rot: -1.5707963267948966 rad - pos: 14.5,8.5 + - rot: 1.5707963267948966 rad + pos: -8.5,-0.5 parent: 2 type: Transform - - uid: 12456 + - uid: 6375 components: - - rot: -1.5707963267948966 rad - pos: 13.5,8.5 + - rot: 3.141592653589793 rad + pos: -8.5,-2.5 parent: 2 type: Transform - - uid: 12461 + - uid: 6376 components: - - pos: 12.5,7.5 + - rot: 1.5707963267948966 rad + pos: -12.5,-12.5 parent: 2 type: Transform - - uid: 12462 + - uid: 6377 components: - - pos: 12.5,6.5 + - rot: 1.5707963267948966 rad + pos: -23.5,-0.5 parent: 2 type: Transform - - uid: 12463 + - uid: 6378 components: - - pos: 12.5,5.5 + - rot: 3.141592653589793 rad + pos: -7.5,-22.5 parent: 2 type: Transform - - uid: 12464 + - uid: 6379 components: - - pos: 12.5,4.5 + - rot: 1.5707963267948966 rad + pos: -10.5,-33.5 parent: 2 type: Transform - - uid: 12465 + - uid: 6380 components: - - pos: 12.5,3.5 + - pos: -16.5,-76.5 parent: 2 type: Transform - - uid: 12466 + - uid: 6381 components: - - pos: 12.5,2.5 + - pos: -14.5,3.5 parent: 2 type: Transform - - uid: 12467 + - uid: 6382 components: - - pos: 12.5,1.5 + - pos: -4.5,9.5 parent: 2 type: Transform - - uid: 12471 + - uid: 6383 components: - - rot: -1.5707963267948966 rad - pos: 7.5,-0.5 + - pos: -5.5,36.5 parent: 2 type: Transform - - uid: 12472 + - uid: 6384 components: - - rot: -1.5707963267948966 rad - pos: 8.5,-0.5 + - pos: -24.5,6.5 parent: 2 type: Transform - - uid: 12473 + - uid: 6385 components: - - pos: 11.5,-1.5 + - pos: -24.5,15.5 parent: 2 type: Transform - - uid: 12474 + - uid: 6386 components: - - pos: 11.5,-2.5 + - rot: 1.5707963267948966 rad + pos: -38.5,15.5 parent: 2 type: Transform - - uid: 12475 + - uid: 6387 components: - - pos: 11.5,-3.5 + - pos: -24.5,25.5 parent: 2 type: Transform - - uid: 12476 + - uid: 6388 components: - - pos: 11.5,-4.5 + - pos: -32.5,26.5 parent: 2 type: Transform - - uid: 12477 + - uid: 6389 components: - - pos: 11.5,-5.5 + - rot: 1.5707963267948966 rad + pos: -38.5,26.5 parent: 2 type: Transform - - uid: 12485 + - uid: 6390 components: - - rot: -1.5707963267948966 rad - pos: 10.5,-6.5 + - pos: -41.5,33.5 parent: 2 type: Transform - - uid: 12486 + - uid: 6391 components: - - rot: -1.5707963267948966 rad - pos: 9.5,-6.5 + - pos: -39.5,36.5 parent: 2 type: Transform - - uid: 12487 + - uid: 6392 components: - - rot: -1.5707963267948966 rad - pos: 8.5,-6.5 + - pos: -24.5,17.5 parent: 2 type: Transform - - uid: 12488 +- proto: DisposalJunctionFlipped + entities: + - uid: 6393 components: - - rot: -1.5707963267948966 rad - pos: 7.5,-6.5 + - rot: 1.5707963267948966 rad + pos: 0.5,-0.5 parent: 2 type: Transform - - uid: 12489 + - uid: 6394 components: - - rot: -1.5707963267948966 rad - pos: 6.5,-6.5 + - rot: 1.5707963267948966 rad + pos: -38.5,-8.5 parent: 2 type: Transform - - uid: 12490 + - uid: 6395 components: - - pos: 5.5,-7.5 + - rot: 1.5707963267948966 rad + pos: -55.5,0.5 parent: 2 type: Transform - - uid: 12493 + - uid: 6396 components: - - pos: 5.5,-8.5 + - rot: 3.141592653589793 rad + pos: -52.5,0.5 parent: 2 type: Transform - - uid: 12495 + - uid: 6397 components: - - pos: 5.5,-10.5 + - rot: -1.5707963267948966 rad + pos: -10.5,-18.5 parent: 2 type: Transform - - uid: 12496 + - uid: 6398 components: - - pos: 5.5,-11.5 + - pos: 25.5,-4.5 parent: 2 type: Transform - - uid: 12501 + - uid: 6399 components: - - rot: 3.141592653589793 rad - pos: 12.5,-17.5 + - pos: -5.5,38.5 parent: 2 type: Transform - - uid: 12525 + - uid: 6400 components: - rot: 1.5707963267948966 rad - pos: 13.5,-20.5 + pos: -33.5,-8.5 parent: 2 type: Transform - - uid: 12526 + - uid: 6401 components: - - rot: 1.5707963267948966 rad - pos: 14.5,-20.5 + - pos: 12.5,11.5 parent: 2 type: Transform - - uid: 12542 + - uid: 6402 components: - - rot: -1.5707963267948966 rad - pos: 18.5,-20.5 + - pos: 12.5,8.5 parent: 2 type: Transform - - uid: 12543 + - uid: 6403 components: - - rot: -1.5707963267948966 rad - pos: 19.5,-20.5 + - pos: 25.5,-15.5 parent: 2 type: Transform - - uid: 12569 + - uid: 6404 components: - - rot: -1.5707963267948966 rad - pos: 21.5,-20.5 + - rot: 1.5707963267948966 rad + pos: 37.5,0.5 parent: 2 type: Transform - - uid: 12570 + - uid: 6405 components: - - rot: -1.5707963267948966 rad - pos: 22.5,-20.5 + - rot: 1.5707963267948966 rad + pos: -5.5,25.5 parent: 2 type: Transform - - uid: 12571 + - uid: 6406 components: - - rot: -1.5707963267948966 rad - pos: 23.5,-20.5 + - rot: 1.5707963267948966 rad + pos: -4.5,-0.5 parent: 2 type: Transform - - uid: 12572 + - uid: 6407 components: - - rot: -1.5707963267948966 rad - pos: 24.5,-20.5 + - rot: 1.5707963267948966 rad + pos: -14.5,-0.5 parent: 2 type: Transform - - uid: 12577 + - uid: 6408 components: - - rot: 3.141592653589793 rad - pos: 25.5,-19.5 + - rot: -1.5707963267948966 rad + pos: -7.5,-18.5 parent: 2 type: Transform - - uid: 12578 + - uid: 6409 components: - rot: 3.141592653589793 rad - pos: 25.5,-18.5 + pos: -7.5,-33.5 parent: 2 type: Transform - - uid: 12579 + - uid: 6410 components: - rot: 3.141592653589793 rad - pos: 25.5,-17.5 + pos: -23.5,-8.5 parent: 2 type: Transform - - uid: 12594 + - uid: 6411 components: - - rot: -1.5707963267948966 rad - pos: 26.5,-15.5 + - pos: -5.5,35.5 parent: 2 type: Transform - - uid: 12595 + - uid: 6412 components: - - rot: -1.5707963267948966 rad - pos: 27.5,-15.5 + - pos: -24.5,36.5 parent: 2 type: Transform - - uid: 12596 + - uid: 6413 components: - - rot: -1.5707963267948966 rad - pos: 28.5,-15.5 + - pos: -50.5,22.5 parent: 2 type: Transform - - uid: 12598 +- proto: DisposalPipe + entities: + - uid: 6414 components: - - pos: 29.5,-16.5 + - pos: 0.5,0.5 parent: 2 type: Transform - - uid: 12599 + - uid: 6415 components: - - pos: 29.5,-17.5 + - pos: 0.5,1.5 parent: 2 type: Transform - - uid: 12600 + - uid: 6416 components: - - pos: 29.5,-18.5 + - pos: 0.5,2.5 parent: 2 type: Transform - - uid: 12601 + - uid: 6417 components: - - pos: 29.5,-19.5 + - pos: 0.5,3.5 parent: 2 type: Transform - - uid: 12602 + - uid: 6418 components: - - pos: 29.5,-20.5 + - rot: -1.5707963267948966 rad + pos: 9.5,-12.5 parent: 2 type: Transform - - uid: 12604 + - uid: 6419 components: - - rot: 1.5707963267948966 rad - pos: 30.5,-21.5 + - rot: 3.141592653589793 rad + pos: 12.5,-13.5 parent: 2 type: Transform - - uid: 12605 + - uid: 6420 components: - - rot: 1.5707963267948966 rad - pos: 32.5,-21.5 + - rot: 3.141592653589793 rad + pos: 12.5,-14.5 parent: 2 type: Transform - - uid: 12606 + - uid: 6421 components: - - rot: 1.5707963267948966 rad - pos: 33.5,-21.5 + - rot: 3.141592653589793 rad + pos: 12.5,-16.5 parent: 2 type: Transform - - uid: 12607 + - uid: 6422 components: - - rot: 1.5707963267948966 rad - pos: 34.5,-21.5 + - rot: 3.141592653589793 rad + pos: 12.5,-15.5 parent: 2 type: Transform - - uid: 12608 + - uid: 6423 components: - - rot: 1.5707963267948966 rad - pos: 35.5,-21.5 + - rot: -1.5707963267948966 rad + pos: -51.5,3.5 parent: 2 type: Transform - - uid: 12609 + - uid: 6424 components: - - rot: 1.5707963267948966 rad - pos: 36.5,-21.5 + - rot: -1.5707963267948966 rad + pos: 11.5,-12.5 parent: 2 type: Transform - - uid: 12610 + - uid: 6425 components: - - rot: 1.5707963267948966 rad - pos: 37.5,-21.5 + - pos: -12.5,-13.5 parent: 2 type: Transform - - uid: 12630 + - uid: 6426 components: - - rot: 3.141592653589793 rad - pos: 39.5,-20.5 + - pos: -12.5,-14.5 parent: 2 type: Transform - - uid: 12631 + - uid: 6427 components: - - rot: 3.141592653589793 rad - pos: 39.5,-19.5 + - rot: -1.5707963267948966 rad + pos: -31.5,-8.5 parent: 2 type: Transform - - uid: 12632 + - uid: 6428 components: - - rot: 3.141592653589793 rad - pos: 39.5,-18.5 + - rot: -1.5707963267948966 rad + pos: -36.5,-8.5 parent: 2 type: Transform - - uid: 12633 + - uid: 6429 components: - - rot: 3.141592653589793 rad - pos: 39.5,-17.5 + - pos: -38.5,-7.5 parent: 2 type: Transform - - uid: 12634 + - uid: 6430 components: - - rot: 3.141592653589793 rad - pos: 39.5,-16.5 + - pos: -52.5,2.5 parent: 2 type: Transform - - uid: 12635 + - uid: 6431 components: - - rot: 3.141592653589793 rad - pos: 39.5,-15.5 + - pos: -56.5,-0.5 parent: 2 type: Transform - - uid: 12636 + - uid: 6432 components: - - rot: 3.141592653589793 rad - pos: 39.5,-14.5 + - pos: -56.5,-1.5 parent: 2 type: Transform - - uid: 12637 + - uid: 6433 components: - - rot: 3.141592653589793 rad - pos: 39.5,-13.5 + - pos: -56.5,-2.5 parent: 2 type: Transform - - uid: 12638 + - uid: 6434 components: - - rot: 3.141592653589793 rad - pos: 39.5,-12.5 + - pos: -56.5,-3.5 parent: 2 type: Transform - - uid: 12639 + - uid: 6435 components: - - rot: 3.141592653589793 rad - pos: 39.5,-11.5 + - pos: -56.5,-4.5 parent: 2 type: Transform - - uid: 12640 + - uid: 6436 components: - - rot: 3.141592653589793 rad - pos: 39.5,-10.5 + - pos: -56.5,-5.5 parent: 2 type: Transform - - uid: 12641 + - uid: 6437 components: - - rot: 3.141592653589793 rad - pos: 39.5,-9.5 + - pos: -56.5,-6.5 parent: 2 type: Transform - - uid: 12642 + - uid: 6438 components: - - rot: 3.141592653589793 rad - pos: 39.5,-8.5 + - pos: -52.5,1.5 parent: 2 type: Transform - - uid: 12643 + - uid: 6439 components: - - rot: 3.141592653589793 rad - pos: 39.5,-7.5 + - rot: 1.5707963267948966 rad + pos: -50.5,-0.5 parent: 2 type: Transform - - uid: 12644 + - uid: 6440 components: - - rot: 3.141592653589793 rad - pos: 39.5,-6.5 + - rot: 1.5707963267948966 rad + pos: -51.5,-0.5 parent: 2 type: Transform - - uid: 12645 + - uid: 6441 components: - - rot: 3.141592653589793 rad - pos: 39.5,-5.5 + - rot: 1.5707963267948966 rad + pos: -54.5,0.5 parent: 2 type: Transform - - uid: 12646 + - uid: 6442 components: - - rot: 3.141592653589793 rad - pos: 39.5,-4.5 + - rot: 1.5707963267948966 rad + pos: -53.5,0.5 parent: 2 type: Transform - - uid: 12647 + - uid: 6443 components: - rot: 3.141592653589793 rad - pos: 39.5,-3.5 + pos: -56.5,-7.5 parent: 2 type: Transform - - uid: 12648 + - uid: 6444 components: - rot: 3.141592653589793 rad - pos: 39.5,-2.5 + pos: -56.5,-8.5 parent: 2 type: Transform - - uid: 12649 + - uid: 6445 components: - rot: 3.141592653589793 rad - pos: 39.5,-1.5 + pos: -56.5,-9.5 parent: 2 type: Transform - - uid: 12650 + - uid: 6446 components: - rot: 3.141592653589793 rad - pos: 39.5,-0.5 - parent: 2 - type: Transform - - uid: 12651 - components: - - rot: -1.5707963267948966 rad - pos: 38.5,-21.5 + pos: -56.5,-10.5 parent: 2 type: Transform - - uid: 12655 + - uid: 6447 components: - rot: 3.141592653589793 rad - pos: 25.5,-14.5 + pos: -56.5,-11.5 parent: 2 type: Transform - - uid: 12656 + - uid: 6448 components: - rot: 3.141592653589793 rad - pos: 25.5,-13.5 + pos: -56.5,-12.5 parent: 2 type: Transform - - uid: 12657 + - uid: 6449 components: - rot: 3.141592653589793 rad - pos: 25.5,-12.5 + pos: -56.5,-13.5 parent: 2 type: Transform - - uid: 12658 + - uid: 6450 components: - - rot: 3.141592653589793 rad - pos: 25.5,-11.5 + - rot: -1.5707963267948966 rad + pos: -57.5,-14.5 parent: 2 type: Transform - - uid: 12659 + - uid: 6451 components: - - rot: 3.141592653589793 rad - pos: 25.5,-10.5 + - rot: -1.5707963267948966 rad + pos: -58.5,-14.5 parent: 2 type: Transform - - uid: 12660 + - uid: 6452 components: - - rot: 3.141592653589793 rad - pos: 25.5,-9.5 + - pos: -23.5,-9.5 parent: 2 type: Transform - - uid: 12661 + - uid: 6453 components: - - rot: 3.141592653589793 rad - pos: 25.5,-8.5 + - pos: -45.5,-9.5 parent: 2 type: Transform - - uid: 12662 + - uid: 6454 components: - - rot: 3.141592653589793 rad - pos: 25.5,-7.5 + - pos: 13.5,22.5 parent: 2 type: Transform - - uid: 12663 + - uid: 6455 components: - - rot: 3.141592653589793 rad - pos: 25.5,-6.5 + - pos: -14.5,4.5 parent: 2 type: Transform - - uid: 12666 + - uid: 6456 components: - - rot: 3.141592653589793 rad - pos: 25.5,-3.5 + - rot: -1.5707963267948966 rad + pos: -37.5,6.5 parent: 2 type: Transform - - uid: 12669 + - uid: 6457 components: - rot: -1.5707963267948966 rad - pos: 26.5,-4.5 + pos: 10.5,-12.5 parent: 2 type: Transform - - uid: 12670 + - uid: 6458 components: - rot: -1.5707963267948966 rad - pos: 27.5,-4.5 + pos: 8.5,-12.5 parent: 2 type: Transform - - uid: 12671 + - uid: 6459 components: - rot: 3.141592653589793 rad - pos: 28.5,-6.5 + pos: 12.5,-19.5 parent: 2 type: Transform - - uid: 12673 + - uid: 6460 components: - - pos: 28.5,-3.5 + - pos: 17.5,-21.5 parent: 2 type: Transform - - uid: 12674 + - uid: 6461 components: - rot: -1.5707963267948966 rad - pos: 24.5,-5.5 + pos: 20.5,-20.5 parent: 2 type: Transform - - uid: 12675 + - uid: 6462 components: - rot: -1.5707963267948966 rad - pos: 23.5,-5.5 + pos: 31.5,3.5 parent: 2 type: Transform - - uid: 12676 + - uid: 6463 components: - rot: -1.5707963267948966 rad - pos: 22.5,-5.5 + pos: -15.5,5.5 parent: 2 type: Transform - - uid: 12677 + - uid: 6464 components: - rot: -1.5707963267948966 rad - pos: 21.5,-5.5 + pos: 7.5,-12.5 parent: 2 type: Transform - - uid: 12678 + - uid: 6465 components: - rot: -1.5707963267948966 rad - pos: 20.5,-5.5 + pos: 6.5,-12.5 parent: 2 type: Transform - - uid: 12686 + - uid: 6466 components: - rot: -1.5707963267948966 rad - pos: 38.5,0.5 + pos: -37.5,-8.5 parent: 2 type: Transform - - uid: 12688 + - uid: 6467 components: - rot: -1.5707963267948966 rad - pos: 36.5,0.5 + pos: 16.5,-20.5 parent: 2 type: Transform - - uid: 12689 + - uid: 6468 components: - - rot: -1.5707963267948966 rad - pos: 35.5,0.5 + - rot: 3.141592653589793 rad + pos: 12.5,-18.5 parent: 2 type: Transform - - uid: 12690 + - uid: 6469 components: - - rot: -1.5707963267948966 rad - pos: 34.5,0.5 + - rot: 1.5707963267948966 rad + pos: 31.5,-21.5 parent: 2 type: Transform - - uid: 12691 + - uid: 6470 + components: + - pos: 13.5,25.5 + parent: 2 + type: Transform + - uid: 6471 + components: + - pos: 13.5,24.5 + parent: 2 + type: Transform + - uid: 6472 + components: + - pos: 13.5,23.5 + parent: 2 + type: Transform + - uid: 6473 components: - rot: 3.141592653589793 rad - pos: 33.5,1.5 + pos: 13.5,21.5 parent: 2 type: Transform - - uid: 12692 + - uid: 6474 components: - rot: 3.141592653589793 rad - pos: 33.5,2.5 + pos: 13.5,20.5 parent: 2 type: Transform - - uid: 12694 + - uid: 6475 components: - - rot: -1.5707963267948966 rad - pos: 32.5,3.5 + - rot: 3.141592653589793 rad + pos: 13.5,19.5 parent: 2 type: Transform - - uid: 12713 + - uid: 6476 components: - rot: 3.141592653589793 rad - pos: 25.5,-2.5 + pos: 13.5,18.5 parent: 2 type: Transform - - uid: 12714 + - uid: 6477 components: - rot: 3.141592653589793 rad - pos: 25.5,-1.5 + pos: 13.5,17.5 parent: 2 type: Transform - - uid: 12715 + - uid: 6478 components: - rot: 3.141592653589793 rad - pos: 25.5,-0.5 + pos: 13.5,16.5 parent: 2 type: Transform - - uid: 12718 + - uid: 6479 components: - - rot: -1.5707963267948966 rad - pos: 24.5,0.5 + - rot: 3.141592653589793 rad + pos: 23.5,20.5 parent: 2 type: Transform - - uid: 12719 + - uid: 6480 components: - - rot: -1.5707963267948966 rad - pos: 23.5,0.5 + - rot: 3.141592653589793 rad + pos: 23.5,19.5 parent: 2 type: Transform - - uid: 12720 + - uid: 6481 components: - - rot: -1.5707963267948966 rad - pos: 22.5,0.5 + - rot: 3.141592653589793 rad + pos: 23.5,18.5 parent: 2 type: Transform - - uid: 12721 + - uid: 6482 components: - - rot: -1.5707963267948966 rad - pos: 21.5,0.5 + - rot: 3.141592653589793 rad + pos: 23.5,17.5 parent: 2 type: Transform - - uid: 12722 + - uid: 6483 components: - - rot: -1.5707963267948966 rad - pos: 20.5,0.5 + - rot: 3.141592653589793 rad + pos: 23.5,16.5 parent: 2 type: Transform - - uid: 12723 + - uid: 6484 components: - rot: -1.5707963267948966 rad - pos: 19.5,0.5 + pos: 22.5,15.5 parent: 2 type: Transform - - uid: 12724 + - uid: 6485 components: - rot: -1.5707963267948966 rad - pos: 18.5,0.5 + pos: 21.5,15.5 parent: 2 type: Transform - - uid: 12727 + - uid: 6486 components: - rot: -1.5707963267948966 rad - pos: 10.5,-0.5 + pos: 20.5,15.5 parent: 2 type: Transform - - uid: 12737 + - uid: 6487 components: - rot: -1.5707963267948966 rad - pos: 9.5,-0.5 + pos: 19.5,15.5 parent: 2 type: Transform - - uid: 12738 + - uid: 6488 components: - rot: -1.5707963267948966 rad - pos: 6.5,-0.5 + pos: 18.5,15.5 parent: 2 type: Transform - - uid: 12739 + - uid: 6489 components: - rot: -1.5707963267948966 rad - pos: 5.5,-0.5 + pos: 17.5,15.5 parent: 2 type: Transform - - uid: 12740 + - uid: 6490 components: - rot: -1.5707963267948966 rad - pos: 4.5,-0.5 + pos: 16.5,15.5 parent: 2 type: Transform - - uid: 12741 + - uid: 6491 components: - rot: -1.5707963267948966 rad - pos: 3.5,-0.5 + pos: 15.5,15.5 parent: 2 type: Transform - - uid: 12742 + - uid: 6492 components: - rot: -1.5707963267948966 rad - pos: 2.5,-0.5 + pos: 14.5,15.5 parent: 2 type: Transform - - uid: 12743 + - uid: 6493 components: - - rot: -1.5707963267948966 rad - pos: 1.5,-0.5 + - rot: 3.141592653589793 rad + pos: 12.5,14.5 parent: 2 type: Transform - - uid: 12748 + - uid: 6494 components: - - rot: 1.5707963267948966 rad - pos: -0.5,-0.5 + - rot: 3.141592653589793 rad + pos: 12.5,13.5 parent: 2 type: Transform - - uid: 12749 + - uid: 6495 components: - - rot: 1.5707963267948966 rad - pos: -1.5,-0.5 + - rot: 3.141592653589793 rad + pos: 12.5,12.5 parent: 2 type: Transform - - uid: 12750 + - uid: 6496 components: - - rot: 1.5707963267948966 rad - pos: -2.5,-0.5 + - rot: 3.141592653589793 rad + pos: 12.5,10.5 parent: 2 type: Transform - - uid: 12751 + - uid: 6497 components: - - rot: 1.5707963267948966 rad - pos: -3.5,-0.5 + - rot: 3.141592653589793 rad + pos: 12.5,9.5 parent: 2 type: Transform - - uid: 12753 + - uid: 6498 components: - - rot: 1.5707963267948966 rad - pos: -5.5,-0.5 + - rot: -1.5707963267948966 rad + pos: 13.5,11.5 parent: 2 type: Transform - - uid: 12754 + - uid: 6499 components: - - rot: 1.5707963267948966 rad - pos: -6.5,-0.5 + - rot: -1.5707963267948966 rad + pos: 16.5,8.5 parent: 2 type: Transform - - uid: 12755 + - uid: 6500 components: - - rot: 1.5707963267948966 rad - pos: -7.5,-0.5 + - rot: -1.5707963267948966 rad + pos: 15.5,8.5 parent: 2 type: Transform - - uid: 12757 + - uid: 6501 components: - - pos: -8.5,-1.5 + - rot: -1.5707963267948966 rad + pos: 14.5,8.5 parent: 2 type: Transform - - uid: 12772 + - uid: 6502 components: - - rot: 3.141592653589793 rad - pos: 28.5,-5.5 + - rot: -1.5707963267948966 rad + pos: 13.5,8.5 parent: 2 type: Transform - - uid: 12776 + - uid: 6503 components: - - rot: 3.141592653589793 rad - pos: 28.5,-7.5 + - pos: 12.5,7.5 parent: 2 type: Transform - - uid: 12777 + - uid: 6504 components: - - rot: 3.141592653589793 rad - pos: 28.5,-8.5 + - pos: 12.5,6.5 parent: 2 type: Transform - - uid: 12778 + - uid: 6505 components: - - rot: 3.141592653589793 rad - pos: 28.5,-9.5 + - pos: 12.5,5.5 parent: 2 type: Transform - - uid: 12782 + - uid: 6506 components: - - rot: -1.5707963267948966 rad - pos: 29.5,-10.5 + - pos: 12.5,4.5 parent: 2 type: Transform - - uid: 12783 + - uid: 6507 components: - - rot: -1.5707963267948966 rad - pos: 30.5,-10.5 + - pos: 12.5,3.5 parent: 2 type: Transform - - uid: 12788 + - uid: 6508 components: - - rot: 3.141592653589793 rad - pos: -8.5,-3.5 + - pos: 12.5,2.5 parent: 2 type: Transform - - uid: 12789 + - uid: 6509 components: - - rot: 3.141592653589793 rad - pos: -8.5,-4.5 + - pos: 12.5,1.5 parent: 2 type: Transform - - uid: 12790 + - uid: 6510 components: - - rot: 3.141592653589793 rad - pos: -8.5,-5.5 + - rot: -1.5707963267948966 rad + pos: 7.5,-0.5 parent: 2 type: Transform - - uid: 12791 + - uid: 6511 components: - - rot: 3.141592653589793 rad - pos: -8.5,-6.5 + - rot: -1.5707963267948966 rad + pos: 8.5,-0.5 parent: 2 type: Transform - - uid: 12792 + - uid: 6512 components: - - rot: 3.141592653589793 rad - pos: -8.5,-7.5 + - pos: 11.5,-1.5 parent: 2 type: Transform - - uid: 12793 + - uid: 6513 components: - - rot: 3.141592653589793 rad - pos: -8.5,-8.5 + - pos: 11.5,-2.5 parent: 2 type: Transform - - uid: 12794 + - uid: 6514 components: - - rot: 3.141592653589793 rad - pos: -8.5,-9.5 + - pos: 11.5,-3.5 parent: 2 type: Transform - - uid: 12795 + - uid: 6515 components: - - rot: 3.141592653589793 rad - pos: -8.5,-10.5 + - pos: 11.5,-4.5 parent: 2 type: Transform - - uid: 12796 + - uid: 6516 components: - - rot: 3.141592653589793 rad - pos: -8.5,-11.5 + - pos: 11.5,-5.5 parent: 2 type: Transform - - uid: 12798 + - uid: 6517 components: - - rot: 1.5707963267948966 rad - pos: -9.5,-12.5 + - rot: -1.5707963267948966 rad + pos: 10.5,-6.5 parent: 2 type: Transform - - uid: 12799 + - uid: 6518 components: - - rot: 1.5707963267948966 rad - pos: -10.5,-12.5 + - rot: -1.5707963267948966 rad + pos: 9.5,-6.5 parent: 2 type: Transform - - uid: 12800 + - uid: 6519 components: - - rot: 1.5707963267948966 rad - pos: -11.5,-12.5 + - rot: -1.5707963267948966 rad + pos: 8.5,-6.5 parent: 2 type: Transform - - uid: 12802 + - uid: 6520 components: - - rot: 1.5707963267948966 rad - pos: -13.5,-12.5 + - rot: -1.5707963267948966 rad + pos: 7.5,-6.5 parent: 2 type: Transform - - uid: 12803 + - uid: 6521 components: - - rot: 1.5707963267948966 rad - pos: -14.5,-12.5 + - rot: -1.5707963267948966 rad + pos: 6.5,-6.5 parent: 2 type: Transform - - uid: 12804 + - uid: 6522 components: - - rot: 1.5707963267948966 rad - pos: -15.5,-12.5 + - pos: 5.5,-7.5 parent: 2 type: Transform - - uid: 12805 + - uid: 6523 components: - - rot: 1.5707963267948966 rad - pos: -16.5,-12.5 + - pos: 5.5,-8.5 parent: 2 type: Transform - - uid: 12809 + - uid: 6524 components: - - rot: 1.5707963267948966 rad - pos: -9.5,-0.5 + - pos: 5.5,-10.5 parent: 2 type: Transform - - uid: 12810 + - uid: 6525 components: - - rot: 1.5707963267948966 rad - pos: -10.5,-0.5 + - pos: 5.5,-11.5 parent: 2 type: Transform - - uid: 12811 + - uid: 6526 components: - - rot: 1.5707963267948966 rad - pos: -11.5,-0.5 + - rot: 3.141592653589793 rad + pos: 12.5,-17.5 parent: 2 type: Transform - - uid: 12812 + - uid: 6527 components: - rot: 1.5707963267948966 rad - pos: -12.5,-0.5 + pos: 13.5,-20.5 parent: 2 type: Transform - - uid: 12813 + - uid: 6528 components: - rot: 1.5707963267948966 rad - pos: -13.5,-0.5 + pos: 14.5,-20.5 parent: 2 type: Transform - - uid: 12815 + - uid: 6529 components: - - rot: 1.5707963267948966 rad - pos: -15.5,-0.5 + - rot: -1.5707963267948966 rad + pos: 18.5,-20.5 parent: 2 type: Transform - - uid: 12816 + - uid: 6530 components: - - rot: 1.5707963267948966 rad - pos: -16.5,-0.5 + - rot: -1.5707963267948966 rad + pos: 19.5,-20.5 parent: 2 type: Transform - - uid: 12817 + - uid: 6531 components: - - rot: 1.5707963267948966 rad - pos: -17.5,-0.5 + - rot: -1.5707963267948966 rad + pos: 21.5,-20.5 parent: 2 type: Transform - - uid: 12818 + - uid: 6532 components: - - rot: 1.5707963267948966 rad - pos: -18.5,-0.5 + - rot: -1.5707963267948966 rad + pos: 22.5,-20.5 parent: 2 type: Transform - - uid: 12819 + - uid: 6533 components: - - rot: 1.5707963267948966 rad - pos: -19.5,-0.5 + - rot: -1.5707963267948966 rad + pos: 23.5,-20.5 parent: 2 type: Transform - - uid: 12820 + - uid: 6534 components: - - rot: 1.5707963267948966 rad - pos: -20.5,-0.5 + - rot: -1.5707963267948966 rad + pos: 24.5,-20.5 parent: 2 type: Transform - - uid: 12821 + - uid: 6535 components: - - rot: 1.5707963267948966 rad - pos: -21.5,-0.5 + - rot: 3.141592653589793 rad + pos: 25.5,-19.5 parent: 2 type: Transform - - uid: 12822 + - uid: 6536 components: - - rot: 1.5707963267948966 rad - pos: -22.5,-0.5 + - rot: 3.141592653589793 rad + pos: 25.5,-18.5 parent: 2 type: Transform - - uid: 12864 + - uid: 6537 components: - - pos: -5.5,26.5 + - rot: 3.141592653589793 rad + pos: 25.5,-17.5 parent: 2 type: Transform - - uid: 12922 + - uid: 6538 components: - - pos: -12.5,-15.5 + - rot: -1.5707963267948966 rad + pos: 26.5,-15.5 parent: 2 type: Transform - - uid: 12923 + - uid: 6539 components: - - pos: -12.5,-16.5 + - rot: -1.5707963267948966 rad + pos: 27.5,-15.5 parent: 2 type: Transform - - uid: 12924 + - uid: 6540 components: - - pos: -12.5,-17.5 + - rot: -1.5707963267948966 rad + pos: 28.5,-15.5 parent: 2 type: Transform - - uid: 12929 + - uid: 6541 components: - - rot: 1.5707963267948966 rad - pos: -11.5,-18.5 + - pos: 29.5,-16.5 parent: 2 type: Transform - - uid: 12930 + - uid: 6542 components: - - rot: 1.5707963267948966 rad - pos: -9.5,-18.5 + - pos: 29.5,-17.5 parent: 2 type: Transform - - uid: 12931 + - uid: 6543 components: - - pos: -6.5,-16.5 + - pos: 29.5,-18.5 parent: 2 type: Transform - - uid: 12932 + - uid: 6544 components: - - pos: -6.5,-17.5 + - pos: 29.5,-19.5 parent: 2 type: Transform - - uid: 12935 + - uid: 6545 components: - - rot: -1.5707963267948966 rad - pos: -8.5,-18.5 + - pos: 29.5,-20.5 parent: 2 type: Transform - - uid: 12937 + - uid: 6546 components: - - pos: -7.5,-19.5 + - rot: 1.5707963267948966 rad + pos: 30.5,-21.5 parent: 2 type: Transform - - uid: 12938 + - uid: 6547 components: - - pos: -7.5,-20.5 + - rot: 1.5707963267948966 rad + pos: 32.5,-21.5 parent: 2 type: Transform - - uid: 12939 + - uid: 6548 components: - - pos: -7.5,-21.5 + - rot: 1.5707963267948966 rad + pos: 33.5,-21.5 parent: 2 type: Transform - - uid: 12942 + - uid: 6549 components: - rot: 1.5707963267948966 rad - pos: -6.5,-22.5 + pos: 34.5,-21.5 parent: 2 type: Transform - - uid: 12943 + - uid: 6550 components: - rot: 1.5707963267948966 rad - pos: -5.5,-22.5 + pos: 35.5,-21.5 parent: 2 type: Transform - - uid: 12944 + - uid: 6551 components: - rot: 1.5707963267948966 rad - pos: -4.5,-22.5 + pos: 36.5,-21.5 parent: 2 type: Transform - - uid: 12945 + - uid: 6552 components: - rot: 1.5707963267948966 rad - pos: -3.5,-22.5 + pos: 37.5,-21.5 parent: 2 type: Transform - - uid: 12949 + - uid: 6553 components: - rot: 3.141592653589793 rad - pos: -7.5,-23.5 + pos: 39.5,-20.5 parent: 2 type: Transform - - uid: 12950 + - uid: 6554 components: - rot: 3.141592653589793 rad - pos: -7.5,-24.5 + pos: 39.5,-19.5 parent: 2 type: Transform - - uid: 12951 + - uid: 6555 components: - rot: 3.141592653589793 rad - pos: -7.5,-25.5 + pos: 39.5,-18.5 parent: 2 type: Transform - - uid: 12952 + - uid: 6556 components: - rot: 3.141592653589793 rad - pos: -7.5,-26.5 + pos: 39.5,-17.5 parent: 2 type: Transform - - uid: 12953 + - uid: 6557 components: - rot: 3.141592653589793 rad - pos: -7.5,-27.5 + pos: 39.5,-16.5 parent: 2 type: Transform - - uid: 12954 + - uid: 6558 components: - rot: 3.141592653589793 rad - pos: -7.5,-28.5 + pos: 39.5,-15.5 parent: 2 type: Transform - - uid: 12955 + - uid: 6559 components: - rot: 3.141592653589793 rad - pos: -7.5,-29.5 + pos: 39.5,-14.5 parent: 2 type: Transform - - uid: 12956 + - uid: 6560 components: - rot: 3.141592653589793 rad - pos: -7.5,-30.5 + pos: 39.5,-13.5 parent: 2 type: Transform - - uid: 12957 + - uid: 6561 components: - rot: 3.141592653589793 rad - pos: -7.5,-31.5 + pos: 39.5,-12.5 parent: 2 type: Transform - - uid: 12958 + - uid: 6562 components: - rot: 3.141592653589793 rad - pos: -7.5,-32.5 + pos: 39.5,-11.5 parent: 2 type: Transform - - uid: 12960 + - uid: 6563 components: - - rot: -1.5707963267948966 rad - pos: -8.5,-33.5 + - rot: 3.141592653589793 rad + pos: 39.5,-10.5 parent: 2 type: Transform - - uid: 12961 + - uid: 6564 components: - - rot: -1.5707963267948966 rad - pos: -9.5,-33.5 + - rot: 3.141592653589793 rad + pos: 39.5,-9.5 parent: 2 type: Transform - - uid: 12963 + - uid: 6565 components: - - rot: -1.5707963267948966 rad - pos: -11.5,-33.5 + - rot: 3.141592653589793 rad + pos: 39.5,-8.5 parent: 2 type: Transform - - uid: 12964 + - uid: 6566 components: - - rot: -1.5707963267948966 rad - pos: -12.5,-33.5 + - rot: 3.141592653589793 rad + pos: 39.5,-7.5 parent: 2 type: Transform - - uid: 12965 + - uid: 6567 components: - - rot: -1.5707963267948966 rad - pos: -13.5,-33.5 + - rot: 3.141592653589793 rad + pos: 39.5,-6.5 parent: 2 type: Transform - - uid: 12966 + - uid: 6568 components: - - rot: -1.5707963267948966 rad - pos: -14.5,-33.5 + - rot: 3.141592653589793 rad + pos: 39.5,-5.5 parent: 2 type: Transform - - uid: 12967 + - uid: 6569 components: - - rot: -1.5707963267948966 rad - pos: -15.5,-33.5 + - rot: 3.141592653589793 rad + pos: 39.5,-4.5 parent: 2 type: Transform - - uid: 12970 + - uid: 6570 components: - - rot: -1.5707963267948966 rad - pos: -17.5,-32.5 + - rot: 3.141592653589793 rad + pos: 39.5,-3.5 parent: 2 type: Transform - - uid: 12971 + - uid: 6571 components: - - rot: -1.5707963267948966 rad - pos: -18.5,-32.5 + - rot: 3.141592653589793 rad + pos: 39.5,-2.5 parent: 2 type: Transform - - uid: 12972 + - uid: 6572 components: - - rot: -1.5707963267948966 rad - pos: -19.5,-32.5 + - rot: 3.141592653589793 rad + pos: 39.5,-1.5 parent: 2 type: Transform - - uid: 12974 + - uid: 6573 components: - rot: 3.141592653589793 rad - pos: -20.5,-31.5 + pos: 39.5,-0.5 parent: 2 type: Transform - - uid: 12975 + - uid: 6574 components: - - rot: 3.141592653589793 rad - pos: -20.5,-30.5 + - rot: -1.5707963267948966 rad + pos: 38.5,-21.5 parent: 2 type: Transform - - uid: 12976 + - uid: 6575 components: - rot: 3.141592653589793 rad - pos: -20.5,-29.5 + pos: 25.5,-14.5 parent: 2 type: Transform - - uid: 12977 + - uid: 6576 components: - rot: 3.141592653589793 rad - pos: -20.5,-28.5 + pos: 25.5,-13.5 parent: 2 type: Transform - - uid: 12979 + - uid: 6577 components: - - pos: -10.5,-34.5 + - rot: 3.141592653589793 rad + pos: 25.5,-12.5 parent: 2 type: Transform - - uid: 12980 + - uid: 6578 components: - - pos: -10.5,-35.5 + - rot: 3.141592653589793 rad + pos: 25.5,-11.5 parent: 2 type: Transform - - uid: 12982 + - uid: 6579 components: - rot: 3.141592653589793 rad - pos: -7.5,-34.5 + pos: 25.5,-10.5 parent: 2 type: Transform - - uid: 12983 + - uid: 6580 components: - rot: 3.141592653589793 rad - pos: -7.5,-35.5 + pos: 25.5,-9.5 parent: 2 type: Transform - - uid: 12984 + - uid: 6581 components: - rot: 3.141592653589793 rad - pos: -7.5,-36.5 + pos: 25.5,-8.5 parent: 2 type: Transform - - uid: 12985 + - uid: 6582 components: - rot: 3.141592653589793 rad - pos: -7.5,-37.5 + pos: 25.5,-7.5 parent: 2 type: Transform - - uid: 12986 + - uid: 6583 components: - rot: 3.141592653589793 rad - pos: -7.5,-38.5 + pos: 25.5,-6.5 parent: 2 type: Transform - - uid: 12987 + - uid: 6584 components: - rot: 3.141592653589793 rad - pos: -7.5,-39.5 + pos: 25.5,-3.5 parent: 2 type: Transform - - uid: 12988 + - uid: 6585 components: - - rot: 3.141592653589793 rad - pos: -7.5,-40.5 + - rot: -1.5707963267948966 rad + pos: 26.5,-4.5 parent: 2 type: Transform - - uid: 13028 + - uid: 6586 components: - - rot: 3.141592653589793 rad - pos: -16.5,-72.5 + - rot: -1.5707963267948966 rad + pos: 27.5,-4.5 parent: 2 type: Transform - - uid: 13029 + - uid: 6587 components: - rot: 3.141592653589793 rad - pos: -16.5,-73.5 + pos: 28.5,-6.5 parent: 2 type: Transform - - uid: 13030 + - uid: 6588 components: - - rot: 3.141592653589793 rad - pos: -16.5,-74.5 + - pos: 28.5,-3.5 parent: 2 type: Transform - - uid: 13031 + - uid: 6589 components: - - rot: 3.141592653589793 rad - pos: -16.5,-75.5 + - rot: -1.5707963267948966 rad + pos: 24.5,-5.5 parent: 2 type: Transform - - uid: 13033 + - uid: 6590 components: - - rot: 3.141592653589793 rad - pos: -16.5,-77.5 + - rot: -1.5707963267948966 rad + pos: 23.5,-5.5 parent: 2 type: Transform - - uid: 13035 + - uid: 6591 components: - rot: -1.5707963267948966 rad - pos: -17.5,-76.5 + pos: 22.5,-5.5 parent: 2 type: Transform - - uid: 13036 + - uid: 6592 components: - rot: -1.5707963267948966 rad - pos: -18.5,-76.5 + pos: 21.5,-5.5 parent: 2 type: Transform - - uid: 13046 + - uid: 6593 components: - - rot: 3.141592653589793 rad - pos: -16.5,-78.5 + - rot: -1.5707963267948966 rad + pos: 20.5,-5.5 parent: 2 type: Transform - - uid: 13047 + - uid: 6594 components: - - rot: 3.141592653589793 rad - pos: -16.5,-79.5 + - rot: -1.5707963267948966 rad + pos: 38.5,0.5 parent: 2 type: Transform - - uid: 13048 + - uid: 6595 components: - - rot: 3.141592653589793 rad - pos: -16.5,-80.5 + - rot: -1.5707963267948966 rad + pos: 36.5,0.5 parent: 2 type: Transform - - uid: 13049 + - uid: 6596 components: - - rot: 3.141592653589793 rad - pos: -16.5,-81.5 + - rot: -1.5707963267948966 rad + pos: 35.5,0.5 parent: 2 type: Transform - - uid: 13050 + - uid: 6597 components: - - rot: 3.141592653589793 rad - pos: -16.5,-82.5 + - rot: -1.5707963267948966 rad + pos: 34.5,0.5 parent: 2 type: Transform - - uid: 13051 + - uid: 6598 components: - rot: 3.141592653589793 rad - pos: -16.5,-83.5 + pos: 33.5,1.5 parent: 2 type: Transform - - uid: 13052 + - uid: 6599 components: - rot: 3.141592653589793 rad - pos: -16.5,-84.5 + pos: 33.5,2.5 parent: 2 type: Transform - - uid: 13053 + - uid: 6600 components: - - rot: 3.141592653589793 rad - pos: -16.5,-85.5 + - rot: -1.5707963267948966 rad + pos: 32.5,3.5 parent: 2 type: Transform - - uid: 13054 + - uid: 6601 components: - rot: 3.141592653589793 rad - pos: -16.5,-86.5 + pos: 25.5,-2.5 parent: 2 type: Transform - - uid: 13080 + - uid: 6602 components: - rot: 3.141592653589793 rad - pos: -17.5,-13.5 + pos: 25.5,-1.5 parent: 2 type: Transform - - uid: 13081 + - uid: 6603 components: - rot: 3.141592653589793 rad - pos: -17.5,-14.5 + pos: 25.5,-0.5 parent: 2 type: Transform - - uid: 13088 + - uid: 6604 components: - - rot: 3.141592653589793 rad - pos: -23.5,-1.5 + - rot: -1.5707963267948966 rad + pos: 24.5,0.5 parent: 2 type: Transform - - uid: 13089 + - uid: 6605 components: - - rot: 3.141592653589793 rad - pos: -23.5,-2.5 + - rot: -1.5707963267948966 rad + pos: 23.5,0.5 parent: 2 type: Transform - - uid: 13090 + - uid: 6606 components: - - rot: 3.141592653589793 rad - pos: -23.5,-3.5 + - rot: -1.5707963267948966 rad + pos: 22.5,0.5 parent: 2 type: Transform - - uid: 13091 + - uid: 6607 components: - - rot: 3.141592653589793 rad - pos: -23.5,-4.5 + - rot: -1.5707963267948966 rad + pos: 21.5,0.5 parent: 2 type: Transform - - uid: 13092 + - uid: 6608 components: - - rot: 3.141592653589793 rad - pos: -23.5,-5.5 + - rot: -1.5707963267948966 rad + pos: 20.5,0.5 parent: 2 type: Transform - - uid: 13093 + - uid: 6609 components: - - rot: 3.141592653589793 rad - pos: -23.5,-6.5 + - rot: -1.5707963267948966 rad + pos: 19.5,0.5 parent: 2 type: Transform - - uid: 13094 + - uid: 6610 components: - - rot: 3.141592653589793 rad - pos: -23.5,-7.5 + - rot: -1.5707963267948966 rad + pos: 18.5,0.5 parent: 2 type: Transform - - uid: 13099 + - uid: 6611 components: - - rot: 3.141592653589793 rad - pos: -23.5,-10.5 + - rot: -1.5707963267948966 rad + pos: 10.5,-0.5 parent: 2 type: Transform - - uid: 13105 + - uid: 6612 components: - - rot: 1.5707963267948966 rad - pos: -24.5,-8.5 + - rot: -1.5707963267948966 rad + pos: 9.5,-0.5 parent: 2 type: Transform - - uid: 13106 + - uid: 6613 components: - - rot: 1.5707963267948966 rad - pos: -25.5,-8.5 + - rot: -1.5707963267948966 rad + pos: 6.5,-0.5 parent: 2 type: Transform - - uid: 13107 + - uid: 6614 components: - - rot: 1.5707963267948966 rad - pos: -26.5,-8.5 + - rot: -1.5707963267948966 rad + pos: 5.5,-0.5 parent: 2 type: Transform - - uid: 13108 + - uid: 6615 components: - - rot: 1.5707963267948966 rad - pos: -27.5,-8.5 + - rot: -1.5707963267948966 rad + pos: 4.5,-0.5 parent: 2 type: Transform - - uid: 13109 + - uid: 6616 components: - - rot: 1.5707963267948966 rad - pos: -28.5,-8.5 + - rot: -1.5707963267948966 rad + pos: 3.5,-0.5 parent: 2 type: Transform - - uid: 13110 + - uid: 6617 components: - - rot: 1.5707963267948966 rad - pos: -29.5,-8.5 + - rot: -1.5707963267948966 rad + pos: 2.5,-0.5 parent: 2 type: Transform - - uid: 13111 + - uid: 6618 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 2 + type: Transform + - uid: 6619 components: - rot: 1.5707963267948966 rad - pos: -30.5,-8.5 + pos: -0.5,-0.5 parent: 2 type: Transform - - uid: 13130 + - uid: 6620 components: - - pos: -33.5,-5.5 + - rot: 1.5707963267948966 rad + pos: -1.5,-0.5 parent: 2 type: Transform - - uid: 13131 + - uid: 6621 components: - - pos: -33.5,-6.5 + - rot: 1.5707963267948966 rad + pos: -2.5,-0.5 parent: 2 type: Transform - - uid: 13132 + - uid: 6622 components: - - pos: -33.5,-7.5 + - rot: 1.5707963267948966 rad + pos: -3.5,-0.5 parent: 2 type: Transform - - uid: 13134 + - uid: 6623 components: - rot: 1.5707963267948966 rad - pos: -32.5,-8.5 + pos: -5.5,-0.5 parent: 2 type: Transform - - uid: 13135 + - uid: 6624 components: - rot: 1.5707963267948966 rad - pos: -34.5,-8.5 + pos: -6.5,-0.5 parent: 2 type: Transform - - uid: 13136 + - uid: 6625 components: - rot: 1.5707963267948966 rad - pos: -35.5,-8.5 + pos: -7.5,-0.5 parent: 2 type: Transform - - uid: 13152 + - uid: 6626 components: - - rot: -1.5707963267948966 rad - pos: -39.5,-8.5 + - pos: -8.5,-1.5 parent: 2 type: Transform - - uid: 13153 + - uid: 6627 components: - - rot: -1.5707963267948966 rad - pos: -40.5,-8.5 + - rot: 3.141592653589793 rad + pos: 28.5,-5.5 parent: 2 type: Transform - - uid: 13154 + - uid: 6628 components: - - rot: -1.5707963267948966 rad - pos: -41.5,-8.5 + - rot: 3.141592653589793 rad + pos: 28.5,-7.5 parent: 2 type: Transform - - uid: 13155 + - uid: 6629 components: - - rot: -1.5707963267948966 rad - pos: -42.5,-8.5 + - rot: 3.141592653589793 rad + pos: 28.5,-8.5 parent: 2 type: Transform - - uid: 13156 + - uid: 6630 components: - - rot: -1.5707963267948966 rad - pos: -43.5,-8.5 + - rot: 3.141592653589793 rad + pos: 28.5,-9.5 parent: 2 type: Transform - - uid: 13157 + - uid: 6631 components: - rot: -1.5707963267948966 rad - pos: -44.5,-8.5 + pos: 29.5,-10.5 parent: 2 type: Transform - - uid: 13167 + - uid: 6632 components: - - pos: -14.5,0.5 + - rot: -1.5707963267948966 rad + pos: 30.5,-10.5 parent: 2 type: Transform - - uid: 13169 + - uid: 6633 components: - rot: 3.141592653589793 rad - pos: -5.5,37.5 + pos: -8.5,-3.5 parent: 2 type: Transform - - uid: 13170 + - uid: 6634 components: - - pos: -14.5,1.5 + - rot: 3.141592653589793 rad + pos: -8.5,-4.5 parent: 2 type: Transform - - uid: 13171 + - uid: 6635 components: - - pos: -14.5,2.5 + - rot: 3.141592653589793 rad + pos: -8.5,-5.5 parent: 2 type: Transform - - uid: 13174 + - uid: 6636 components: - - pos: -4.5,0.5 + - rot: 3.141592653589793 rad + pos: -8.5,-6.5 parent: 2 type: Transform - - uid: 13175 + - uid: 6637 components: - - pos: -4.5,1.5 + - rot: 3.141592653589793 rad + pos: -8.5,-7.5 parent: 2 type: Transform - - uid: 13176 + - uid: 6638 components: - - pos: -4.5,2.5 + - rot: 3.141592653589793 rad + pos: -8.5,-8.5 parent: 2 type: Transform - - uid: 13177 + - uid: 6639 components: - - pos: -4.5,3.5 + - rot: 3.141592653589793 rad + pos: -8.5,-9.5 parent: 2 type: Transform - - uid: 13178 + - uid: 6640 components: - - pos: -4.5,4.5 + - rot: 3.141592653589793 rad + pos: -8.5,-10.5 parent: 2 type: Transform - - uid: 13179 + - uid: 6641 components: - - pos: -4.5,5.5 + - rot: 3.141592653589793 rad + pos: -8.5,-11.5 parent: 2 type: Transform - - uid: 13180 + - uid: 6642 components: - - pos: -4.5,6.5 + - rot: 1.5707963267948966 rad + pos: -9.5,-12.5 parent: 2 type: Transform - - uid: 13181 + - uid: 6643 components: - - pos: -4.5,7.5 + - rot: 1.5707963267948966 rad + pos: -10.5,-12.5 parent: 2 type: Transform - - uid: 13182 + - uid: 6644 components: - - pos: -4.5,8.5 + - rot: 1.5707963267948966 rad + pos: -11.5,-12.5 parent: 2 type: Transform - - uid: 13184 + - uid: 6645 components: - - rot: -1.5707963267948966 rad - pos: -5.5,9.5 + - rot: 1.5707963267948966 rad + pos: -13.5,-12.5 parent: 2 type: Transform - - uid: 13191 + - uid: 6646 components: - - rot: -1.5707963267948966 rad - pos: -16.5,5.5 + - rot: 1.5707963267948966 rad + pos: -14.5,-12.5 parent: 2 type: Transform - - uid: 13192 + - uid: 6647 components: - - rot: -1.5707963267948966 rad - pos: -17.5,5.5 + - rot: 1.5707963267948966 rad + pos: -15.5,-12.5 parent: 2 type: Transform - - uid: 13193 + - uid: 6648 components: - - rot: -1.5707963267948966 rad - pos: -18.5,5.5 + - rot: 1.5707963267948966 rad + pos: -16.5,-12.5 parent: 2 type: Transform - - uid: 13194 + - uid: 6649 components: - - rot: -1.5707963267948966 rad - pos: -19.5,5.5 + - rot: 1.5707963267948966 rad + pos: -9.5,-0.5 parent: 2 type: Transform - - uid: 13195 + - uid: 6650 components: - - rot: -1.5707963267948966 rad - pos: -20.5,5.5 + - rot: 1.5707963267948966 rad + pos: -10.5,-0.5 parent: 2 type: Transform - - uid: 13197 + - uid: 6651 components: - - rot: 3.141592653589793 rad - pos: -21.5,6.5 + - rot: 1.5707963267948966 rad + pos: -11.5,-0.5 parent: 2 type: Transform - - uid: 13198 + - uid: 6652 components: - - rot: 3.141592653589793 rad - pos: -21.5,7.5 + - rot: 1.5707963267948966 rad + pos: -12.5,-0.5 parent: 2 type: Transform - - uid: 13199 + - uid: 6653 components: - - rot: 3.141592653589793 rad - pos: -21.5,8.5 + - rot: 1.5707963267948966 rad + pos: -13.5,-0.5 parent: 2 type: Transform - - uid: 13200 + - uid: 6654 components: - - rot: 3.141592653589793 rad - pos: -21.5,9.5 + - rot: 1.5707963267948966 rad + pos: -15.5,-0.5 parent: 2 type: Transform - - uid: 13201 + - uid: 6655 components: - - rot: 3.141592653589793 rad - pos: -21.5,10.5 + - rot: 1.5707963267948966 rad + pos: -16.5,-0.5 parent: 2 type: Transform - - uid: 13202 + - uid: 6656 components: - - rot: 3.141592653589793 rad - pos: -21.5,11.5 + - rot: 1.5707963267948966 rad + pos: -17.5,-0.5 parent: 2 type: Transform - - uid: 13203 + - uid: 6657 components: - - rot: 3.141592653589793 rad - pos: -21.5,12.5 + - rot: 1.5707963267948966 rad + pos: -18.5,-0.5 parent: 2 type: Transform - - uid: 13204 + - uid: 6658 components: - - rot: 3.141592653589793 rad - pos: -21.5,13.5 + - rot: 1.5707963267948966 rad + pos: -19.5,-0.5 parent: 2 type: Transform - - uid: 13206 + - uid: 6659 components: - - pos: -4.5,10.5 + - rot: 1.5707963267948966 rad + pos: -20.5,-0.5 parent: 2 type: Transform - - uid: 13207 + - uid: 6660 components: - - pos: -4.5,11.5 + - rot: 1.5707963267948966 rad + pos: -21.5,-0.5 parent: 2 type: Transform - - uid: 13208 + - uid: 6661 components: - - pos: -4.5,12.5 + - rot: 1.5707963267948966 rad + pos: -22.5,-0.5 parent: 2 type: Transform - - uid: 13209 + - uid: 6662 components: - - pos: -4.5,13.5 + - pos: -5.5,26.5 parent: 2 type: Transform - - uid: 13210 + - uid: 6663 components: - - pos: -4.5,14.5 + - pos: -12.5,-15.5 parent: 2 type: Transform - - uid: 13211 + - uid: 6664 components: - - pos: -4.5,15.5 + - pos: -12.5,-16.5 parent: 2 type: Transform - - uid: 13212 + - uid: 6665 components: - - pos: -4.5,16.5 + - pos: -12.5,-17.5 parent: 2 type: Transform - - uid: 13213 + - uid: 6666 components: - - pos: -4.5,17.5 + - rot: 1.5707963267948966 rad + pos: -11.5,-18.5 parent: 2 type: Transform - - uid: 13214 + - uid: 6667 components: - - pos: -4.5,18.5 + - rot: 1.5707963267948966 rad + pos: -9.5,-18.5 parent: 2 type: Transform - - uid: 13215 + - uid: 6668 components: - - pos: -4.5,19.5 + - pos: -6.5,-16.5 parent: 2 type: Transform - - uid: 13216 + - uid: 6669 components: - - pos: -4.5,20.5 + - pos: -6.5,-17.5 parent: 2 type: Transform - - uid: 13217 + - uid: 6670 components: - - pos: -4.5,21.5 + - rot: -1.5707963267948966 rad + pos: -8.5,-18.5 parent: 2 type: Transform - - uid: 13218 + - uid: 6671 components: - - pos: -4.5,22.5 + - pos: -7.5,-19.5 parent: 2 type: Transform - - uid: 13219 + - uid: 6672 components: - - pos: -4.5,23.5 + - pos: -7.5,-20.5 parent: 2 type: Transform - - uid: 13220 + - uid: 6673 components: - - pos: -4.5,24.5 + - pos: -7.5,-21.5 parent: 2 type: Transform - - uid: 13222 + - uid: 6674 components: - - rot: -1.5707963267948966 rad - pos: -6.5,25.5 + - rot: 1.5707963267948966 rad + pos: -6.5,-22.5 parent: 2 type: Transform - - uid: 13223 + - uid: 6675 components: - - rot: -1.5707963267948966 rad - pos: -7.5,25.5 + - rot: 1.5707963267948966 rad + pos: -5.5,-22.5 parent: 2 type: Transform - - uid: 13224 + - uid: 6676 components: - - rot: -1.5707963267948966 rad - pos: -8.5,25.5 + - rot: 1.5707963267948966 rad + pos: -4.5,-22.5 parent: 2 type: Transform - - uid: 13226 + - uid: 6677 components: - - rot: 3.141592653589793 rad - pos: -9.5,26.5 + - rot: 1.5707963267948966 rad + pos: -3.5,-22.5 parent: 2 type: Transform - - uid: 13250 + - uid: 6678 components: - rot: 3.141592653589793 rad - pos: -5.5,27.5 + pos: -7.5,-23.5 parent: 2 type: Transform - - uid: 13251 + - uid: 6679 components: - rot: 3.141592653589793 rad - pos: -5.5,28.5 + pos: -7.5,-24.5 parent: 2 type: Transform - - uid: 13252 + - uid: 6680 components: - rot: 3.141592653589793 rad - pos: -5.5,29.5 + pos: -7.5,-25.5 parent: 2 type: Transform - - uid: 13253 + - uid: 6681 components: - rot: 3.141592653589793 rad - pos: -5.5,30.5 + pos: -7.5,-26.5 parent: 2 type: Transform - - uid: 13254 + - uid: 6682 components: - rot: 3.141592653589793 rad - pos: -5.5,31.5 + pos: -7.5,-27.5 parent: 2 type: Transform - - uid: 13255 + - uid: 6683 components: - rot: 3.141592653589793 rad - pos: -5.5,32.5 + pos: -7.5,-28.5 parent: 2 type: Transform - - uid: 13256 + - uid: 6684 components: - rot: 3.141592653589793 rad - pos: -5.5,33.5 + pos: -7.5,-29.5 parent: 2 type: Transform - - uid: 13257 + - uid: 6685 components: - rot: 3.141592653589793 rad - pos: -5.5,34.5 + pos: -7.5,-30.5 parent: 2 type: Transform - - uid: 13266 + - uid: 6686 components: - - rot: -1.5707963267948966 rad - pos: -7.5,36.5 + - rot: 3.141592653589793 rad + pos: -7.5,-31.5 parent: 2 type: Transform - - uid: 13271 + - uid: 6687 components: - - rot: -1.5707963267948966 rad - pos: -6.5,36.5 + - rot: 3.141592653589793 rad + pos: -7.5,-32.5 parent: 2 type: Transform - - uid: 13272 + - uid: 6688 components: - rot: -1.5707963267948966 rad - pos: -4.5,35.5 + pos: -8.5,-33.5 parent: 2 type: Transform - - uid: 13273 + - uid: 6689 components: - rot: -1.5707963267948966 rad - pos: -3.5,35.5 + pos: -9.5,-33.5 parent: 2 type: Transform - - uid: 13274 + - uid: 6690 components: - rot: -1.5707963267948966 rad - pos: -2.5,35.5 + pos: -11.5,-33.5 parent: 2 type: Transform - - uid: 13283 + - uid: 6691 components: - - rot: 3.141592653589793 rad - pos: -12.5,40.5 + - rot: -1.5707963267948966 rad + pos: -12.5,-33.5 parent: 2 type: Transform - - uid: 13284 + - uid: 6692 components: - - rot: 3.141592653589793 rad - pos: -12.5,41.5 + - rot: -1.5707963267948966 rad + pos: -13.5,-33.5 parent: 2 type: Transform - - uid: 13285 + - uid: 6693 components: - - rot: 3.141592653589793 rad - pos: -12.5,42.5 + - rot: -1.5707963267948966 rad + pos: -14.5,-33.5 parent: 2 type: Transform - - uid: 13290 + - uid: 6694 components: - rot: -1.5707963267948966 rad - pos: -1.5,38.5 + pos: -15.5,-33.5 parent: 2 type: Transform - - uid: 13292 + - uid: 6695 components: - rot: -1.5707963267948966 rad - pos: -0.5,38.5 + pos: -17.5,-32.5 parent: 2 type: Transform - - uid: 13294 + - uid: 6696 components: - rot: -1.5707963267948966 rad - pos: 0.5,38.5 + pos: -18.5,-32.5 parent: 2 type: Transform - - uid: 13295 + - uid: 6697 components: - rot: -1.5707963267948966 rad - pos: -3.5,38.5 + pos: -19.5,-32.5 parent: 2 type: Transform - - uid: 13298 + - uid: 6698 components: - - rot: 1.5707963267948966 rad - pos: -4.5,38.5 + - rot: 3.141592653589793 rad + pos: -20.5,-31.5 parent: 2 type: Transform - - uid: 13299 + - uid: 6699 components: - - rot: -1.5707963267948966 rad - pos: -6.5,39.5 + - rot: 3.141592653589793 rad + pos: -20.5,-30.5 parent: 2 type: Transform - - uid: 13300 + - uid: 6700 components: - - rot: -1.5707963267948966 rad - pos: -7.5,39.5 + - rot: 3.141592653589793 rad + pos: -20.5,-29.5 parent: 2 type: Transform - - uid: 13301 + - uid: 6701 components: - - rot: -1.5707963267948966 rad - pos: -8.5,39.5 + - rot: 3.141592653589793 rad + pos: -20.5,-28.5 parent: 2 type: Transform - - uid: 13302 + - uid: 6702 components: - - rot: -1.5707963267948966 rad - pos: -9.5,39.5 + - pos: -10.5,-34.5 parent: 2 type: Transform - - uid: 13303 + - uid: 6703 components: - - rot: -1.5707963267948966 rad - pos: -10.5,39.5 + - pos: -10.5,-35.5 parent: 2 type: Transform - - uid: 13304 + - uid: 6704 components: - - rot: -1.5707963267948966 rad - pos: -11.5,39.5 + - rot: 3.141592653589793 rad + pos: -7.5,-34.5 parent: 2 type: Transform - - uid: 13306 + - uid: 6705 components: - rot: 3.141592653589793 rad - pos: -24.5,0.5 + pos: -7.5,-35.5 parent: 2 type: Transform - - uid: 13307 + - uid: 6706 components: - rot: 3.141592653589793 rad - pos: -24.5,1.5 + pos: -7.5,-36.5 parent: 2 type: Transform - - uid: 13308 + - uid: 6707 components: - rot: 3.141592653589793 rad - pos: -24.5,2.5 + pos: -16.5,-72.5 parent: 2 type: Transform - - uid: 13309 + - uid: 6708 components: - rot: 3.141592653589793 rad - pos: -24.5,3.5 + pos: -16.5,-73.5 parent: 2 type: Transform - - uid: 13310 + - uid: 6709 components: - rot: 3.141592653589793 rad - pos: -24.5,4.5 + pos: -16.5,-74.5 parent: 2 type: Transform - - uid: 13311 + - uid: 6710 components: - rot: 3.141592653589793 rad - pos: -24.5,5.5 + pos: -16.5,-75.5 parent: 2 type: Transform - - uid: 13313 + - uid: 6711 components: - rot: 3.141592653589793 rad - pos: -24.5,7.5 + pos: -16.5,-77.5 parent: 2 type: Transform - - uid: 13314 + - uid: 6712 components: - - rot: 3.141592653589793 rad - pos: -24.5,8.5 + - rot: -1.5707963267948966 rad + pos: -17.5,-76.5 parent: 2 type: Transform - - uid: 13315 + - uid: 6713 components: - - rot: 3.141592653589793 rad - pos: -24.5,9.5 + - rot: -1.5707963267948966 rad + pos: -18.5,-76.5 parent: 2 type: Transform - - uid: 13316 + - uid: 6714 components: - rot: 3.141592653589793 rad - pos: -24.5,10.5 + pos: -16.5,-78.5 parent: 2 type: Transform - - uid: 13317 + - uid: 6715 components: - rot: 3.141592653589793 rad - pos: -24.5,11.5 + pos: -16.5,-79.5 parent: 2 type: Transform - - uid: 13318 + - uid: 6716 components: - rot: 3.141592653589793 rad - pos: -24.5,12.5 + pos: -16.5,-80.5 parent: 2 type: Transform - - uid: 13319 + - uid: 6717 components: - rot: 3.141592653589793 rad - pos: -24.5,13.5 + pos: -16.5,-81.5 parent: 2 type: Transform - - uid: 13320 + - uid: 6718 components: - rot: 3.141592653589793 rad - pos: -24.5,14.5 + pos: -16.5,-82.5 parent: 2 type: Transform - - uid: 13322 + - uid: 6719 components: - rot: 3.141592653589793 rad - pos: -24.5,16.5 + pos: -16.5,-83.5 parent: 2 type: Transform - - uid: 13324 + - uid: 6720 components: - rot: 3.141592653589793 rad - pos: -24.5,18.5 + pos: -16.5,-84.5 parent: 2 type: Transform - - uid: 13325 + - uid: 6721 components: - rot: 3.141592653589793 rad - pos: -24.5,19.5 + pos: -16.5,-85.5 parent: 2 type: Transform - - uid: 13326 + - uid: 6722 components: - rot: 3.141592653589793 rad - pos: -24.5,20.5 + pos: -16.5,-86.5 parent: 2 type: Transform - - uid: 13328 + - uid: 6723 components: - rot: 3.141592653589793 rad - pos: -24.5,22.5 + pos: -17.5,-13.5 parent: 2 type: Transform - - uid: 13329 + - uid: 6724 components: - rot: 3.141592653589793 rad - pos: -24.5,23.5 + pos: -17.5,-14.5 parent: 2 type: Transform - - uid: 13330 + - uid: 6725 components: - rot: 3.141592653589793 rad - pos: -24.5,24.5 + pos: -23.5,-1.5 parent: 2 type: Transform - - uid: 13332 + - uid: 6726 components: - rot: 3.141592653589793 rad - pos: -24.5,26.5 + pos: -23.5,-2.5 parent: 2 type: Transform - - uid: 13333 + - uid: 6727 components: - rot: 3.141592653589793 rad - pos: -24.5,27.5 + pos: -23.5,-3.5 parent: 2 type: Transform - - uid: 13334 + - uid: 6728 components: - rot: 3.141592653589793 rad - pos: -24.5,28.5 + pos: -23.5,-4.5 parent: 2 type: Transform - - uid: 13335 + - uid: 6729 components: - rot: 3.141592653589793 rad - pos: -24.5,29.5 + pos: -23.5,-5.5 parent: 2 type: Transform - - uid: 13336 + - uid: 6730 components: - rot: 3.141592653589793 rad - pos: -24.5,30.5 + pos: -23.5,-6.5 parent: 2 type: Transform - - uid: 13337 + - uid: 6731 components: - rot: 3.141592653589793 rad - pos: -24.5,31.5 + pos: -23.5,-7.5 parent: 2 type: Transform - - uid: 13338 + - uid: 6732 components: - rot: 3.141592653589793 rad - pos: -24.5,32.5 + pos: -23.5,-10.5 parent: 2 type: Transform - - uid: 13339 + - uid: 6733 components: - - rot: 3.141592653589793 rad - pos: -24.5,33.5 + - rot: 1.5707963267948966 rad + pos: -24.5,-8.5 parent: 2 type: Transform - - uid: 13340 + - uid: 6734 components: - - rot: 3.141592653589793 rad - pos: -24.5,34.5 + - rot: 1.5707963267948966 rad + pos: -25.5,-8.5 parent: 2 type: Transform - - uid: 13341 + - uid: 6735 components: - - rot: 3.141592653589793 rad - pos: -24.5,35.5 + - rot: 1.5707963267948966 rad + pos: -26.5,-8.5 parent: 2 type: Transform - - uid: 13345 + - uid: 6736 components: - - rot: -1.5707963267948966 rad - pos: -26.5,38.5 + - rot: 1.5707963267948966 rad + pos: -27.5,-8.5 parent: 2 type: Transform - - uid: 13346 + - uid: 6737 components: - - rot: -1.5707963267948966 rad - pos: -25.5,38.5 + - rot: 1.5707963267948966 rad + pos: -28.5,-8.5 parent: 2 type: Transform - - uid: 13348 + - uid: 6738 components: - - rot: 3.141592653589793 rad - pos: -24.5,37.5 + - rot: 1.5707963267948966 rad + pos: -29.5,-8.5 parent: 2 type: Transform - - uid: 13359 + - uid: 6739 components: - - pos: -24.5,21.5 + - rot: 1.5707963267948966 rad + pos: -30.5,-8.5 parent: 2 type: Transform - - uid: 13371 + - uid: 6740 components: - - rot: -1.5707963267948966 rad - pos: -25.5,15.5 + - pos: -33.5,-5.5 parent: 2 type: Transform - - uid: 13372 + - uid: 6741 components: - - rot: -1.5707963267948966 rad - pos: -26.5,15.5 + - pos: -33.5,-6.5 parent: 2 type: Transform - - uid: 13373 + - uid: 6742 components: - - rot: -1.5707963267948966 rad - pos: -27.5,15.5 + - pos: -33.5,-7.5 parent: 2 type: Transform - - uid: 13374 + - uid: 6743 components: - - rot: -1.5707963267948966 rad - pos: -28.5,15.5 + - rot: 1.5707963267948966 rad + pos: -32.5,-8.5 parent: 2 type: Transform - - uid: 13375 + - uid: 6744 components: - - rot: -1.5707963267948966 rad - pos: -29.5,15.5 + - rot: 1.5707963267948966 rad + pos: -34.5,-8.5 parent: 2 type: Transform - - uid: 13376 + - uid: 6745 components: - - rot: -1.5707963267948966 rad - pos: -30.5,15.5 + - rot: 1.5707963267948966 rad + pos: -35.5,-8.5 parent: 2 type: Transform - - uid: 13377 + - uid: 6746 components: - rot: -1.5707963267948966 rad - pos: -31.5,15.5 + pos: -39.5,-8.5 parent: 2 type: Transform - - uid: 13378 + - uid: 6747 components: - rot: -1.5707963267948966 rad - pos: -32.5,15.5 + pos: -40.5,-8.5 parent: 2 type: Transform - - uid: 13379 + - uid: 6748 components: - rot: -1.5707963267948966 rad - pos: -33.5,15.5 + pos: -41.5,-8.5 parent: 2 type: Transform - - uid: 13380 + - uid: 6749 components: - rot: -1.5707963267948966 rad - pos: -34.5,15.5 + pos: -42.5,-8.5 parent: 2 type: Transform - - uid: 13381 + - uid: 6750 components: - rot: -1.5707963267948966 rad - pos: -35.5,15.5 + pos: -43.5,-8.5 parent: 2 type: Transform - - uid: 13382 + - uid: 6751 components: - rot: -1.5707963267948966 rad - pos: -36.5,15.5 + pos: -44.5,-8.5 parent: 2 type: Transform - - uid: 13383 + - uid: 6752 components: - - rot: -1.5707963267948966 rad - pos: -37.5,15.5 + - pos: -14.5,0.5 parent: 2 type: Transform - - uid: 13388 + - uid: 6753 components: - rot: 3.141592653589793 rad - pos: -38.5,14.5 + pos: -5.5,37.5 parent: 2 type: Transform - - uid: 13392 + - uid: 6754 components: - - rot: 1.5707963267948966 rad - pos: -39.5,15.5 + - pos: -14.5,1.5 parent: 2 type: Transform - - uid: 13393 + - uid: 6755 components: - - rot: 1.5707963267948966 rad - pos: -40.5,15.5 + - pos: -14.5,2.5 parent: 2 type: Transform - - uid: 13394 + - uid: 6756 components: - - rot: 1.5707963267948966 rad - pos: -41.5,15.5 + - pos: -4.5,0.5 parent: 2 type: Transform - - uid: 13395 + - uid: 6757 components: - - rot: 1.5707963267948966 rad - pos: -42.5,15.5 + - pos: -4.5,1.5 parent: 2 type: Transform - - uid: 13396 + - uid: 6758 components: - - rot: 1.5707963267948966 rad - pos: -43.5,15.5 + - pos: -4.5,2.5 parent: 2 type: Transform - - uid: 13397 + - uid: 6759 components: - - rot: 1.5707963267948966 rad - pos: -44.5,15.5 + - pos: -4.5,3.5 parent: 2 type: Transform - - uid: 13398 + - uid: 6760 components: - - rot: 1.5707963267948966 rad - pos: -45.5,15.5 + - pos: -4.5,4.5 parent: 2 type: Transform - - uid: 13399 + - uid: 6761 components: - - rot: 1.5707963267948966 rad - pos: -46.5,15.5 + - pos: -4.5,5.5 parent: 2 type: Transform - - uid: 13400 + - uid: 6762 components: - - rot: 1.5707963267948966 rad - pos: -47.5,15.5 + - pos: -4.5,6.5 parent: 2 type: Transform - - uid: 13401 + - uid: 6763 components: - - rot: 1.5707963267948966 rad - pos: -48.5,15.5 + - pos: -4.5,7.5 parent: 2 type: Transform - - uid: 13402 + - uid: 6764 components: - - rot: 1.5707963267948966 rad - pos: -49.5,15.5 + - pos: -4.5,8.5 parent: 2 type: Transform - - uid: 13404 + - uid: 6765 components: - - pos: -50.5,21.5 + - rot: -1.5707963267948966 rad + pos: -5.5,9.5 parent: 2 type: Transform - - uid: 13405 + - uid: 6766 components: - - pos: -50.5,20.5 + - rot: -1.5707963267948966 rad + pos: -16.5,5.5 parent: 2 type: Transform - - uid: 13406 + - uid: 6767 components: - - pos: -50.5,19.5 + - rot: -1.5707963267948966 rad + pos: -17.5,5.5 parent: 2 type: Transform - - uid: 13407 + - uid: 6768 components: - - pos: -50.5,18.5 + - rot: -1.5707963267948966 rad + pos: -18.5,5.5 parent: 2 type: Transform - - uid: 13408 + - uid: 6769 components: - - pos: -50.5,17.5 + - rot: -1.5707963267948966 rad + pos: -19.5,5.5 parent: 2 type: Transform - - uid: 13409 + - uid: 6770 components: - - pos: -50.5,16.5 + - rot: -1.5707963267948966 rad + pos: -20.5,5.5 parent: 2 type: Transform - - uid: 13414 + - uid: 6771 components: - - rot: -1.5707963267948966 rad - pos: -25.5,25.5 + - rot: 3.141592653589793 rad + pos: -21.5,6.5 parent: 2 type: Transform - - uid: 13415 + - uid: 6772 components: - - rot: -1.5707963267948966 rad - pos: -26.5,25.5 + - rot: 3.141592653589793 rad + pos: -21.5,7.5 parent: 2 type: Transform - - uid: 13416 + - uid: 6773 components: - - rot: -1.5707963267948966 rad - pos: -27.5,25.5 + - rot: 3.141592653589793 rad + pos: -21.5,8.5 parent: 2 type: Transform - - uid: 13417 + - uid: 6774 components: - - rot: -1.5707963267948966 rad - pos: -28.5,25.5 + - rot: 3.141592653589793 rad + pos: -21.5,9.5 parent: 2 type: Transform - - uid: 13418 + - uid: 6775 components: - - rot: -1.5707963267948966 rad - pos: -29.5,25.5 + - rot: 3.141592653589793 rad + pos: -21.5,10.5 parent: 2 type: Transform - - uid: 13419 + - uid: 6776 components: - - rot: -1.5707963267948966 rad - pos: -30.5,25.5 + - rot: 3.141592653589793 rad + pos: -21.5,11.5 parent: 2 type: Transform - - uid: 13420 + - uid: 6777 components: - - rot: -1.5707963267948966 rad - pos: -31.5,25.5 + - rot: 3.141592653589793 rad + pos: -21.5,12.5 parent: 2 type: Transform - - uid: 13467 + - uid: 6778 components: - - rot: -1.5707963267948966 rad - pos: -25.5,6.5 + - rot: 3.141592653589793 rad + pos: -21.5,13.5 parent: 2 type: Transform - - uid: 13469 + - uid: 6779 components: - - rot: -1.5707963267948966 rad - pos: -26.5,6.5 + - pos: -4.5,10.5 parent: 2 type: Transform - - uid: 13470 + - uid: 6780 components: - - rot: -1.5707963267948966 rad - pos: -27.5,6.5 + - pos: -4.5,11.5 parent: 2 type: Transform - - uid: 13471 + - uid: 6781 components: - - rot: -1.5707963267948966 rad - pos: -28.5,6.5 + - pos: -4.5,12.5 parent: 2 type: Transform - - uid: 13472 + - uid: 6782 components: - - rot: -1.5707963267948966 rad - pos: -29.5,6.5 + - pos: -4.5,13.5 parent: 2 type: Transform - - uid: 13473 + - uid: 6783 components: - - rot: -1.5707963267948966 rad - pos: -30.5,6.5 + - pos: -4.5,14.5 parent: 2 type: Transform - - uid: 13474 + - uid: 6784 components: - - rot: -1.5707963267948966 rad - pos: -31.5,6.5 + - pos: -4.5,15.5 parent: 2 type: Transform - - uid: 13475 + - uid: 6785 components: - - rot: -1.5707963267948966 rad - pos: -32.5,6.5 + - pos: -4.5,16.5 parent: 2 type: Transform - - uid: 13476 + - uid: 6786 components: - - rot: -1.5707963267948966 rad - pos: -33.5,6.5 + - pos: -4.5,17.5 parent: 2 type: Transform - - uid: 13477 + - uid: 6787 components: - - rot: -1.5707963267948966 rad - pos: -34.5,6.5 + - pos: -4.5,18.5 parent: 2 type: Transform - - uid: 13478 + - uid: 6788 components: - - rot: -1.5707963267948966 rad - pos: -35.5,6.5 + - pos: -4.5,19.5 parent: 2 type: Transform - - uid: 13479 + - uid: 6789 components: - - rot: -1.5707963267948966 rad - pos: -36.5,6.5 + - pos: -4.5,20.5 parent: 2 type: Transform - - uid: 13481 + - uid: 6790 components: - - rot: -1.5707963267948966 rad - pos: -38.5,6.5 + - pos: -4.5,21.5 parent: 2 type: Transform - - uid: 13482 + - uid: 6791 components: - - rot: -1.5707963267948966 rad - pos: -39.5,6.5 + - pos: -4.5,22.5 parent: 2 type: Transform - - uid: 13483 + - uid: 6792 components: - - rot: -1.5707963267948966 rad - pos: -40.5,6.5 + - pos: -4.5,23.5 parent: 2 type: Transform - - uid: 13484 + - uid: 6793 components: - - rot: -1.5707963267948966 rad - pos: -41.5,6.5 + - pos: -4.5,24.5 parent: 2 type: Transform - - uid: 13485 + - uid: 6794 components: - rot: -1.5707963267948966 rad - pos: -42.5,6.5 + pos: -6.5,25.5 parent: 2 type: Transform - - uid: 13486 + - uid: 6795 components: - rot: -1.5707963267948966 rad - pos: -43.5,6.5 + pos: -7.5,25.5 parent: 2 type: Transform - - uid: 13487 + - uid: 6796 components: - rot: -1.5707963267948966 rad - pos: -44.5,6.5 + pos: -8.5,25.5 parent: 2 type: Transform - - uid: 13488 + - uid: 6797 components: - - rot: -1.5707963267948966 rad - pos: -45.5,6.5 + - rot: 3.141592653589793 rad + pos: -9.5,26.5 parent: 2 type: Transform - - uid: 13489 + - uid: 6798 components: - - rot: -1.5707963267948966 rad - pos: -46.5,6.5 + - rot: 3.141592653589793 rad + pos: -5.5,27.5 parent: 2 type: Transform - - uid: 13490 + - uid: 6799 components: - - rot: -1.5707963267948966 rad - pos: -47.5,6.5 + - rot: 3.141592653589793 rad + pos: -5.5,28.5 parent: 2 type: Transform - - uid: 13494 + - uid: 6800 components: - - pos: -32.5,27.5 + - rot: 3.141592653589793 rad + pos: -5.5,29.5 parent: 2 type: Transform - - uid: 13495 + - uid: 6801 components: - - pos: -32.5,28.5 + - rot: 3.141592653589793 rad + pos: -5.5,30.5 parent: 2 type: Transform - - uid: 13496 + - uid: 6802 components: - - pos: -32.5,29.5 + - rot: 3.141592653589793 rad + pos: -5.5,31.5 parent: 2 type: Transform - - uid: 13497 + - uid: 6803 components: - - pos: -32.5,30.5 + - rot: 3.141592653589793 rad + pos: -5.5,32.5 parent: 2 type: Transform - - uid: 13498 + - uid: 6804 components: - - pos: -32.5,31.5 + - rot: 3.141592653589793 rad + pos: -5.5,33.5 parent: 2 type: Transform - - uid: 13499 + - uid: 6805 components: - - pos: -32.5,32.5 + - rot: 3.141592653589793 rad + pos: -5.5,34.5 parent: 2 type: Transform - - uid: 13500 + - uid: 6806 components: - - pos: -32.5,33.5 + - rot: -1.5707963267948966 rad + pos: -7.5,36.5 parent: 2 type: Transform - - uid: 13503 + - uid: 6807 components: - rot: -1.5707963267948966 rad - pos: -33.5,26.5 + pos: -6.5,36.5 parent: 2 type: Transform - - uid: 13504 + - uid: 6808 components: - rot: -1.5707963267948966 rad - pos: -34.5,26.5 + pos: -4.5,35.5 parent: 2 type: Transform - - uid: 13505 + - uid: 6809 components: - rot: -1.5707963267948966 rad - pos: -35.5,26.5 + pos: -3.5,35.5 parent: 2 type: Transform - - uid: 13506 + - uid: 6810 components: - rot: -1.5707963267948966 rad - pos: -36.5,26.5 + pos: -2.5,35.5 parent: 2 type: Transform - - uid: 13507 + - uid: 6811 components: - - rot: -1.5707963267948966 rad - pos: -37.5,26.5 + - rot: 3.141592653589793 rad + pos: -12.5,40.5 parent: 2 type: Transform - - uid: 13510 + - uid: 6812 components: - - rot: 1.5707963267948966 rad - pos: -39.5,26.5 + - rot: 3.141592653589793 rad + pos: -12.5,41.5 parent: 2 type: Transform - - uid: 13511 + - uid: 6813 components: - - rot: 1.5707963267948966 rad - pos: -40.5,26.5 + - rot: 3.141592653589793 rad + pos: -12.5,42.5 parent: 2 type: Transform - - uid: 13513 + - uid: 6814 components: - rot: -1.5707963267948966 rad - pos: -49.5,22.5 + pos: -1.5,38.5 parent: 2 type: Transform - - uid: 13514 + - uid: 6815 components: - rot: -1.5707963267948966 rad - pos: -48.5,22.5 + pos: -0.5,38.5 parent: 2 type: Transform - - uid: 13515 + - uid: 6816 components: - rot: -1.5707963267948966 rad - pos: -47.5,22.5 + pos: 0.5,38.5 parent: 2 type: Transform - - uid: 13517 + - uid: 6817 components: - - rot: 3.141592653589793 rad - pos: -46.5,28.5 + - rot: -1.5707963267948966 rad + pos: -3.5,38.5 parent: 2 type: Transform - - uid: 13518 + - uid: 6818 components: - - rot: 3.141592653589793 rad - pos: -46.5,27.5 + - rot: 1.5707963267948966 rad + pos: -4.5,38.5 parent: 2 type: Transform - - uid: 13519 + - uid: 6819 components: - - rot: 3.141592653589793 rad - pos: -46.5,26.5 + - rot: -1.5707963267948966 rad + pos: -6.5,39.5 parent: 2 type: Transform - - uid: 13520 + - uid: 6820 components: - - rot: 3.141592653589793 rad - pos: -46.5,25.5 + - rot: -1.5707963267948966 rad + pos: -7.5,39.5 parent: 2 type: Transform - - uid: 13521 + - uid: 6821 components: - - rot: 3.141592653589793 rad - pos: -46.5,24.5 + - rot: -1.5707963267948966 rad + pos: -8.5,39.5 parent: 2 type: Transform - - uid: 13522 + - uid: 6822 components: - - rot: 3.141592653589793 rad - pos: -46.5,23.5 + - rot: -1.5707963267948966 rad + pos: -9.5,39.5 parent: 2 type: Transform - - uid: 13526 + - uid: 6823 components: - rot: -1.5707963267948966 rad - pos: -45.5,29.5 + pos: -10.5,39.5 parent: 2 type: Transform - - uid: 13527 + - uid: 6824 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,39.5 + parent: 2 + type: Transform + - uid: 6825 components: - rot: 3.141592653589793 rad - pos: -41.5,27.5 + pos: -24.5,0.5 parent: 2 type: Transform - - uid: 13528 + - uid: 6826 components: - rot: 3.141592653589793 rad - pos: -41.5,28.5 + pos: -24.5,1.5 parent: 2 type: Transform - - uid: 13529 + - uid: 6827 components: - rot: 3.141592653589793 rad - pos: -41.5,29.5 + pos: -24.5,2.5 parent: 2 type: Transform - - uid: 13530 + - uid: 6828 components: - rot: 3.141592653589793 rad - pos: -41.5,30.5 + pos: -24.5,3.5 parent: 2 type: Transform - - uid: 13531 + - uid: 6829 components: - rot: 3.141592653589793 rad - pos: -41.5,31.5 + pos: -24.5,4.5 parent: 2 type: Transform - - uid: 13532 + - uid: 6830 components: - rot: 3.141592653589793 rad - pos: -41.5,32.5 + pos: -24.5,5.5 parent: 2 type: Transform - - uid: 13536 + - uid: 6831 components: - - rot: 1.5707963267948966 rad - pos: -42.5,33.5 + - rot: 3.141592653589793 rad + pos: -24.5,7.5 parent: 2 type: Transform - - uid: 13537 + - uid: 6832 components: - - rot: 1.5707963267948966 rad - pos: -43.5,33.5 + - rot: 3.141592653589793 rad + pos: -24.5,8.5 parent: 2 type: Transform - - uid: 13538 + - uid: 6833 components: - - rot: 1.5707963267948966 rad - pos: -44.5,33.5 + - rot: 3.141592653589793 rad + pos: -24.5,9.5 parent: 2 type: Transform - - uid: 13539 + - uid: 6834 components: - - rot: 1.5707963267948966 rad - pos: -45.5,33.5 + - rot: 3.141592653589793 rad + pos: -24.5,10.5 parent: 2 type: Transform - - uid: 13540 + - uid: 6835 components: - - rot: 1.5707963267948966 rad - pos: -46.5,33.5 + - rot: 3.141592653589793 rad + pos: -24.5,11.5 parent: 2 type: Transform - - uid: 13541 + - uid: 6836 components: - - rot: 1.5707963267948966 rad - pos: -47.5,33.5 + - rot: 3.141592653589793 rad + pos: -24.5,12.5 parent: 2 type: Transform - - uid: 13542 + - uid: 6837 components: - - rot: 1.5707963267948966 rad - pos: -48.5,33.5 + - rot: 3.141592653589793 rad + pos: -24.5,13.5 parent: 2 type: Transform - - uid: 13543 + - uid: 6838 components: - - rot: 1.5707963267948966 rad - pos: -49.5,33.5 + - rot: 3.141592653589793 rad + pos: -24.5,14.5 parent: 2 type: Transform - - uid: 13544 + - uid: 6839 components: - - rot: 1.5707963267948966 rad - pos: -50.5,33.5 + - rot: 3.141592653589793 rad + pos: -24.5,16.5 parent: 2 type: Transform - - uid: 13545 + - uid: 6840 components: - - rot: 1.5707963267948966 rad - pos: -51.5,33.5 + - rot: 3.141592653589793 rad + pos: -24.5,18.5 parent: 2 type: Transform - - uid: 13546 + - uid: 6841 components: - - rot: 1.5707963267948966 rad - pos: -52.5,33.5 + - rot: 3.141592653589793 rad + pos: -24.5,19.5 parent: 2 type: Transform - - uid: 13547 + - uid: 6842 components: - - rot: 1.5707963267948966 rad - pos: -53.5,33.5 + - rot: 3.141592653589793 rad + pos: -24.5,20.5 parent: 2 type: Transform - - uid: 13548 + - uid: 6843 components: - - rot: 1.5707963267948966 rad - pos: -54.5,33.5 + - rot: 3.141592653589793 rad + pos: -24.5,22.5 parent: 2 type: Transform - - uid: 13549 + - uid: 6844 components: - - rot: 1.5707963267948966 rad - pos: -55.5,33.5 + - rot: 3.141592653589793 rad + pos: -24.5,23.5 parent: 2 type: Transform - - uid: 13550 + - uid: 6845 components: - - rot: 1.5707963267948966 rad - pos: -56.5,33.5 + - rot: 3.141592653589793 rad + pos: -24.5,24.5 parent: 2 type: Transform - - uid: 13552 + - uid: 6846 components: - - pos: -57.5,32.5 + - rot: 3.141592653589793 rad + pos: -24.5,26.5 parent: 2 type: Transform - - uid: 13554 + - uid: 6847 components: - rot: 3.141592653589793 rad - pos: -39.5,35.5 + pos: -24.5,27.5 parent: 2 type: Transform - - uid: 13557 + - uid: 6848 components: - - rot: -1.5707963267948966 rad - pos: -40.5,34.5 + - rot: 3.141592653589793 rad + pos: -24.5,28.5 parent: 2 type: Transform - - uid: 13562 + - uid: 6849 components: - - pos: -39.5,37.5 + - rot: 3.141592653589793 rad + pos: -24.5,29.5 parent: 2 type: Transform - - uid: 13563 + - uid: 6850 components: - - pos: -39.5,38.5 + - rot: 3.141592653589793 rad + pos: -24.5,30.5 parent: 2 type: Transform - - uid: 13564 + - uid: 6851 components: - - pos: -39.5,39.5 + - rot: 3.141592653589793 rad + pos: -24.5,31.5 parent: 2 type: Transform - - uid: 13572 + - uid: 6852 components: - - rot: 1.5707963267948966 rad - pos: -43.5,40.5 + - rot: 3.141592653589793 rad + pos: -24.5,32.5 parent: 2 type: Transform - - uid: 13573 + - uid: 6853 components: - - rot: 1.5707963267948966 rad - pos: -42.5,40.5 + - rot: 3.141592653589793 rad + pos: -24.5,33.5 parent: 2 type: Transform - - uid: 13574 + - uid: 6854 components: - - rot: 1.5707963267948966 rad - pos: -41.5,40.5 + - rot: 3.141592653589793 rad + pos: -24.5,34.5 parent: 2 type: Transform - - uid: 13575 + - uid: 6855 components: - - rot: 1.5707963267948966 rad - pos: -40.5,40.5 + - rot: 3.141592653589793 rad + pos: -24.5,35.5 parent: 2 type: Transform - - uid: 14500 + - uid: 6856 components: - rot: -1.5707963267948966 rad - pos: -11.5,36.5 + pos: -26.5,38.5 parent: 2 type: Transform - - uid: 14501 + - uid: 6857 components: - rot: -1.5707963267948966 rad - pos: -10.5,36.5 + pos: -25.5,38.5 parent: 2 type: Transform - - uid: 14502 + - uid: 6858 components: - - rot: -1.5707963267948966 rad - pos: -9.5,36.5 + - rot: 3.141592653589793 rad + pos: -24.5,37.5 parent: 2 type: Transform - - uid: 14503 + - uid: 6859 + components: + - pos: -24.5,21.5 + parent: 2 + type: Transform + - uid: 6860 components: - rot: -1.5707963267948966 rad - pos: -8.5,36.5 + pos: -25.5,15.5 parent: 2 type: Transform - - uid: 15118 + - uid: 6861 components: - rot: -1.5707963267948966 rad - pos: -2.5,38.5 + pos: -26.5,15.5 parent: 2 type: Transform - - uid: 15466 + - uid: 6862 components: - rot: -1.5707963267948966 rad - pos: 15.5,-20.5 + pos: -27.5,15.5 parent: 2 type: Transform - - uid: 15636 + - uid: 6863 components: - rot: -1.5707963267948966 rad - pos: 1.5,38.5 + pos: -28.5,15.5 parent: 2 type: Transform - - uid: 16818 + - uid: 6864 components: - rot: -1.5707963267948966 rad - pos: 1.5,4.5 + pos: -29.5,15.5 parent: 2 type: Transform -- proto: DisposalTrunk - entities: - - uid: 1651 + - uid: 6865 components: - rot: -1.5707963267948966 rad - pos: 40.5,-22.5 + pos: -30.5,15.5 parent: 2 type: Transform - - uid: 2400 + - uid: 6866 components: - rot: -1.5707963267948966 rad - pos: -6.5,-41.5 + pos: -31.5,15.5 parent: 2 type: Transform - - uid: 3001 + - uid: 6867 components: - - rot: 3.141592653589793 rad - pos: -45.5,-10.5 + - rot: -1.5707963267948966 rad + pos: -32.5,15.5 parent: 2 type: Transform - - uid: 3213 + - uid: 6868 components: - - pos: -38.5,-6.5 + - rot: -1.5707963267948966 rad + pos: -33.5,15.5 parent: 2 type: Transform - - uid: 3292 + - uid: 6869 components: - - pos: -56.5,2.5 + - rot: -1.5707963267948966 rad + pos: -34.5,15.5 parent: 2 type: Transform - - uid: 3309 + - uid: 6870 components: - rot: -1.5707963267948966 rad - pos: -49.5,-0.5 + pos: -35.5,15.5 parent: 2 type: Transform - - uid: 3324 + - uid: 6871 components: - - rot: 1.5707963267948966 rad - pos: -59.5,-14.5 + - rot: -1.5707963267948966 rad + pos: -36.5,15.5 parent: 2 type: Transform - - uid: 4979 + - uid: 6872 components: - - rot: 3.141592653589793 rad - pos: 17.5,-22.5 + - rot: -1.5707963267948966 rad + pos: -37.5,15.5 parent: 2 type: Transform - - uid: 6684 + - uid: 6873 components: - rot: 3.141592653589793 rad - pos: 2.5,37.5 + pos: -38.5,14.5 parent: 2 type: Transform - - uid: 6731 + - uid: 6874 components: - - rot: -1.5707963267948966 rad - pos: -50.5,3.5 + - rot: 1.5707963267948966 rad + pos: -39.5,15.5 parent: 2 type: Transform - - uid: 12335 + - uid: 6875 components: - rot: 1.5707963267948966 rad - pos: 12.5,26.5 + pos: -40.5,15.5 parent: 2 type: Transform - - uid: 12363 + - uid: 6876 components: - - pos: 23.5,21.5 + - rot: 1.5707963267948966 rad + pos: -41.5,15.5 parent: 2 type: Transform - - uid: 12387 + - uid: 6877 components: - - rot: -1.5707963267948966 rad - pos: 14.5,11.5 + - rot: 1.5707963267948966 rad + pos: -42.5,15.5 parent: 2 type: Transform - - uid: 12451 + - uid: 6878 components: - - rot: -1.5707963267948966 rad - pos: 17.5,8.5 + - rot: 1.5707963267948966 rad + pos: -43.5,15.5 parent: 2 type: Transform - - uid: 12523 + - uid: 6879 components: - - pos: -44.5,41.5 + - rot: 1.5707963267948966 rad + pos: -44.5,15.5 parent: 2 type: Transform - - uid: 12587 + - uid: 6880 components: - rot: 1.5707963267948966 rad - pos: 24.5,-16.5 + pos: -45.5,15.5 parent: 2 type: Transform - - uid: 12672 + - uid: 6881 components: - - pos: 28.5,-2.5 + - rot: 1.5707963267948966 rad + pos: -46.5,15.5 parent: 2 type: Transform - - uid: 12680 + - uid: 6882 components: - - rot: 3.141592653589793 rad - pos: 19.5,-6.5 + - rot: 1.5707963267948966 rad + pos: -47.5,15.5 parent: 2 type: Transform - - uid: 12682 + - uid: 6883 components: - rot: 1.5707963267948966 rad - pos: 4.5,-9.5 + pos: -48.5,15.5 parent: 2 type: Transform - - uid: 12683 + - uid: 6884 components: - - pos: 37.5,1.5 + - rot: 1.5707963267948966 rad + pos: -49.5,15.5 parent: 2 type: Transform - - uid: 12696 + - uid: 6885 components: - - rot: 1.5707963267948966 rad - pos: 30.5,3.5 + - pos: -50.5,21.5 parent: 2 type: Transform - - uid: 12717 + - uid: 6886 components: - - pos: 17.5,1.5 + - pos: -50.5,20.5 parent: 2 type: Transform - - uid: 12758 + - uid: 6887 components: - - rot: -1.5707963267948966 rad - pos: 31.5,-10.5 + - pos: -50.5,19.5 parent: 2 type: Transform - - uid: 12759 + - uid: 6888 components: - - rot: -1.5707963267948966 rad - pos: -7.5,-2.5 + - pos: -50.5,18.5 parent: 2 type: Transform - - uid: 12928 + - uid: 6889 components: - - rot: 3.141592653589793 rad - pos: -10.5,-19.5 + - pos: -50.5,17.5 parent: 2 type: Transform - - uid: 12936 + - uid: 6890 components: - - pos: -6.5,-15.5 + - pos: -50.5,16.5 parent: 2 type: Transform - - uid: 12946 + - uid: 6891 components: - - pos: -2.5,-21.5 + - rot: -1.5707963267948966 rad + pos: -25.5,25.5 parent: 2 type: Transform - - uid: 12978 + - uid: 6892 components: - - pos: -20.5,-27.5 + - rot: -1.5707963267948966 rad + pos: -26.5,25.5 parent: 2 type: Transform - - uid: 12981 + - uid: 6893 components: - - rot: 3.141592653589793 rad - pos: -10.5,-36.5 + - rot: -1.5707963267948966 rad + pos: -27.5,25.5 parent: 2 type: Transform - - uid: 13018 + - uid: 6894 components: - - rot: 1.5707963267948966 rad - pos: -17.5,-71.5 + - rot: -1.5707963267948966 rad + pos: -28.5,25.5 parent: 2 type: Transform - - uid: 13020 + - uid: 6895 components: - - pos: -19.5,-75.5 + - rot: -1.5707963267948966 rad + pos: -29.5,25.5 parent: 2 type: Transform - - uid: 13042 + - uid: 6896 components: - - rot: 3.141592653589793 rad - pos: -15.5,-88.5 + - rot: -1.5707963267948966 rad + pos: -30.5,25.5 parent: 2 type: Transform - - uid: 13083 + - uid: 6897 components: - - rot: 1.5707963267948966 rad - pos: -18.5,-15.5 + - rot: -1.5707963267948966 rad + pos: -31.5,25.5 parent: 2 type: Transform - - uid: 13100 + - uid: 6898 components: - - rot: 3.141592653589793 rad - pos: -23.5,-11.5 + - rot: -1.5707963267948966 rad + pos: -25.5,6.5 parent: 2 type: Transform - - uid: 13173 + - uid: 6899 components: - - rot: 1.5707963267948966 rad - pos: -15.5,3.5 + - rot: -1.5707963267948966 rad + pos: -26.5,6.5 parent: 2 type: Transform - - uid: 13185 + - uid: 6900 components: - - rot: 1.5707963267948966 rad - pos: -6.5,9.5 + - rot: -1.5707963267948966 rad + pos: -27.5,6.5 parent: 2 type: Transform - - uid: 13205 + - uid: 6901 components: - - pos: -21.5,14.5 + - rot: -1.5707963267948966 rad + pos: -28.5,6.5 parent: 2 type: Transform - - uid: 13227 + - uid: 6902 components: - - pos: -9.5,27.5 + - rot: -1.5707963267948966 rad + pos: -29.5,6.5 parent: 2 type: Transform - - uid: 13275 + - uid: 6903 components: - - rot: 1.5707963267948966 rad - pos: -12.5,36.5 + - rot: -1.5707963267948966 rad + pos: -30.5,6.5 parent: 2 type: Transform - - uid: 13276 + - uid: 6904 components: - rot: -1.5707963267948966 rad - pos: -1.5,35.5 + pos: -31.5,6.5 parent: 2 type: Transform - - uid: 13288 + - uid: 6905 components: - - pos: -11.5,44.5 + - rot: -1.5707963267948966 rad + pos: -32.5,6.5 parent: 2 type: Transform - - uid: 13347 + - uid: 6906 components: - - rot: 3.141592653589793 rad - pos: -27.5,37.5 + - rot: -1.5707963267948966 rad + pos: -33.5,6.5 parent: 2 type: Transform - - uid: 13387 + - uid: 6907 components: - - rot: 3.141592653589793 rad - pos: -38.5,13.5 + - rot: -1.5707963267948966 rad + pos: -34.5,6.5 parent: 2 type: Transform - - uid: 13411 + - uid: 6908 components: - - pos: -50.5,23.5 + - rot: -1.5707963267948966 rad + pos: -35.5,6.5 parent: 2 type: Transform - - uid: 13492 + - uid: 6909 components: - - rot: 3.141592653589793 rad - pos: -48.5,5.5 + - rot: -1.5707963267948966 rad + pos: -36.5,6.5 parent: 2 type: Transform - - uid: 13502 + - uid: 6910 components: - rot: -1.5707963267948966 rad - pos: -31.5,34.5 + pos: -38.5,6.5 parent: 2 type: Transform - - uid: 13509 + - uid: 6911 components: - - rot: 3.141592653589793 rad - pos: -38.5,25.5 + - rot: -1.5707963267948966 rad + pos: -39.5,6.5 parent: 2 type: Transform - - uid: 13525 + - uid: 6912 components: - - pos: -44.5,30.5 + - rot: -1.5707963267948966 rad + pos: -40.5,6.5 parent: 2 type: Transform - - uid: 13553 + - uid: 6913 components: - - rot: 3.141592653589793 rad - pos: -57.5,31.5 + - rot: -1.5707963267948966 rad + pos: -41.5,6.5 parent: 2 type: Transform - - uid: 13558 + - uid: 6914 components: - - rot: 1.5707963267948966 rad - pos: -40.5,36.5 + - rot: -1.5707963267948966 rad + pos: -42.5,6.5 parent: 2 type: Transform - - uid: 14022 + - uid: 6915 components: - - rot: 1.5707963267948966 rad - pos: -25.5,17.5 + - rot: -1.5707963267948966 rad + pos: -43.5,6.5 parent: 2 type: Transform - - uid: 15258 + - uid: 6916 components: - rot: -1.5707963267948966 rad - pos: -23.5,36.5 + pos: -44.5,6.5 parent: 2 type: Transform - - uid: 16814 + - uid: 6917 components: - rot: -1.5707963267948966 rad - pos: 2.5,4.5 + pos: -45.5,6.5 parent: 2 type: Transform -- proto: DisposalUnit - entities: - - uid: 483 + - uid: 6918 components: - - pos: 4.5,-9.5 + - rot: -1.5707963267948966 rad + pos: -46.5,6.5 parent: 2 type: Transform - - uid: 632 + - uid: 6919 components: - - pos: -6.5,9.5 + - rot: -1.5707963267948966 rad + pos: -47.5,6.5 parent: 2 type: Transform - - uid: 638 + - uid: 6920 components: - - pos: -15.5,3.5 + - pos: -32.5,27.5 parent: 2 type: Transform - - uid: 655 + - uid: 6921 components: - - pos: -11.5,18.5 + - pos: -32.5,28.5 parent: 2 type: Transform - - uid: 909 + - uid: 6922 components: - - pos: -7.5,-2.5 + - pos: -32.5,29.5 parent: 2 type: Transform - - uid: 973 + - uid: 6923 components: - - pos: -23.5,-11.5 + - pos: -32.5,30.5 parent: 2 type: Transform - - uid: 1153 + - uid: 6924 components: - - pos: -9.5,27.5 + - pos: -32.5,31.5 parent: 2 type: Transform - - uid: 1288 + - uid: 6925 components: - - pos: 28.5,-2.5 + - pos: -32.5,32.5 parent: 2 type: Transform - - uid: 1530 + - uid: 6926 components: - - pos: 14.5,11.5 + - pos: -32.5,33.5 parent: 2 type: Transform - - uid: 2509 + - uid: 6927 components: - - pos: -10.5,-36.5 + - rot: -1.5707963267948966 rad + pos: -33.5,26.5 parent: 2 type: Transform - - uid: 2515 + - uid: 6928 components: - - pos: -2.5,-21.5 + - rot: -1.5707963267948966 rad + pos: -34.5,26.5 parent: 2 type: Transform - - uid: 2601 + - uid: 6929 components: - - pos: 24.5,-16.5 + - rot: -1.5707963267948966 rad + pos: -35.5,26.5 parent: 2 type: Transform - - uid: 2697 + - uid: 6930 components: - - pos: -21.5,14.5 + - rot: -1.5707963267948966 rad + pos: -36.5,26.5 parent: 2 type: Transform - - uid: 2698 + - uid: 6931 components: - - pos: -6.5,-41.5 + - rot: -1.5707963267948966 rad + pos: -37.5,26.5 parent: 2 type: Transform - - uid: 3193 + - uid: 6932 components: - - pos: -56.5,2.5 + - rot: 1.5707963267948966 rad + pos: -39.5,26.5 parent: 2 type: Transform - - uid: 3276 + - uid: 6933 components: - - pos: -38.5,-6.5 + - rot: 1.5707963267948966 rad + pos: -40.5,26.5 parent: 2 type: Transform - - uid: 3315 + - uid: 6934 components: - - pos: -59.5,-14.5 + - rot: -1.5707963267948966 rad + pos: -49.5,22.5 parent: 2 type: Transform - - uid: 4539 + - uid: 6935 components: - - pos: 23.5,21.5 + - rot: -1.5707963267948966 rad + pos: -48.5,22.5 parent: 2 type: Transform - - uid: 4563 + - uid: 6936 components: - - pos: 17.5,8.5 + - rot: -1.5707963267948966 rad + pos: -47.5,22.5 parent: 2 type: Transform - - uid: 4577 + - uid: 6937 components: - - pos: 12.5,26.5 + - rot: 3.141592653589793 rad + pos: -46.5,28.5 parent: 2 type: Transform - - uid: 4587 + - uid: 6938 components: - - pos: -17.5,-71.5 + - rot: 3.141592653589793 rad + pos: -46.5,27.5 parent: 2 type: Transform - - uid: 5751 + - uid: 6939 components: - - pos: -31.5,34.5 + - rot: 3.141592653589793 rad + pos: -46.5,26.5 parent: 2 type: Transform - - uid: 5929 + - uid: 6940 components: - - pos: 2.5,4.5 + - rot: 3.141592653589793 rad + pos: -46.5,25.5 parent: 2 type: Transform - - uid: 6250 + - uid: 6941 components: - - pos: -40.5,36.5 + - rot: 3.141592653589793 rad + pos: -46.5,24.5 parent: 2 type: Transform - - uid: 6319 + - uid: 6942 components: - - pos: -38.5,25.5 + - rot: 3.141592653589793 rad + pos: -46.5,23.5 parent: 2 type: Transform - - uid: 6681 + - uid: 6943 components: - - pos: 2.5,37.5 + - rot: -1.5707963267948966 rad + pos: -45.5,29.5 parent: 2 type: Transform - - uid: 12112 + - uid: 6944 components: - - pos: -11.5,44.5 + - rot: 3.141592653589793 rad + pos: -41.5,27.5 parent: 2 type: Transform - - uid: 12364 + - uid: 6945 components: - - pos: -18.5,-15.5 + - rot: 3.141592653589793 rad + pos: -41.5,28.5 parent: 2 type: Transform - - uid: 12393 + - uid: 6946 components: - - pos: 30.5,3.5 + - rot: 3.141592653589793 rad + pos: -41.5,29.5 parent: 2 type: Transform - - uid: 12394 + - uid: 6947 components: - - pos: 37.5,1.5 + - rot: 3.141592653589793 rad + pos: -41.5,30.5 parent: 2 type: Transform - - uid: 12395 + - uid: 6948 components: - - pos: 40.5,-22.5 + - rot: 3.141592653589793 rad + pos: -41.5,31.5 parent: 2 type: Transform - - uid: 12406 + - uid: 6949 components: - - pos: -20.5,-27.5 + - rot: 3.141592653589793 rad + pos: -41.5,32.5 parent: 2 type: Transform - - uid: 12422 + - uid: 6950 components: - - pos: -48.5,5.5 + - rot: 1.5707963267948966 rad + pos: -42.5,33.5 parent: 2 type: Transform - - uid: 12424 + - uid: 6951 components: - - pos: -50.5,23.5 + - rot: 1.5707963267948966 rad + pos: -43.5,33.5 parent: 2 type: Transform - - uid: 12425 + - uid: 6952 components: - - pos: -44.5,30.5 + - rot: 1.5707963267948966 rad + pos: -44.5,33.5 parent: 2 type: Transform - - uid: 12431 + - uid: 6953 components: - - pos: -27.5,37.5 + - rot: 1.5707963267948966 rad + pos: -45.5,33.5 parent: 2 type: Transform - - uid: 12442 + - uid: 6954 components: - - pos: -1.5,35.5 + - rot: 1.5707963267948966 rad + pos: -46.5,33.5 parent: 2 type: Transform - - uid: 12445 + - uid: 6955 components: - - pos: -12.5,36.5 + - rot: 1.5707963267948966 rad + pos: -47.5,33.5 parent: 2 type: Transform - - uid: 12667 + - uid: 6956 components: - - pos: 19.5,-6.5 + - rot: 1.5707963267948966 rad + pos: -48.5,33.5 parent: 2 type: Transform - - uid: 12712 + - uid: 6957 components: - - pos: 17.5,1.5 + - rot: 1.5707963267948966 rad + pos: -49.5,33.5 parent: 2 type: Transform - - uid: 12786 + - uid: 6958 components: - - pos: 31.5,-10.5 + - rot: 1.5707963267948966 rad + pos: -50.5,33.5 parent: 2 type: Transform - - uid: 12829 + - uid: 6959 components: - - pos: -6.5,-15.5 + - rot: 1.5707963267948966 rad + pos: -51.5,33.5 parent: 2 type: Transform - - uid: 12927 + - uid: 6960 components: - - pos: -10.5,-19.5 + - rot: 1.5707963267948966 rad + pos: -52.5,33.5 parent: 2 type: Transform - - uid: 13019 + - uid: 6961 components: - - pos: -19.5,-75.5 + - rot: 1.5707963267948966 rad + pos: -53.5,33.5 parent: 2 type: Transform - - uid: 13127 + - uid: 6962 components: - - pos: -33.5,-4.5 + - rot: 1.5707963267948966 rad + pos: -54.5,33.5 parent: 2 type: Transform - - uid: 13370 + - uid: 6963 components: - - pos: -38.5,13.5 + - rot: 1.5707963267948966 rad + pos: -55.5,33.5 parent: 2 type: Transform - - uid: 13535 + - uid: 6964 components: - - pos: -57.5,31.5 + - rot: 1.5707963267948966 rad + pos: -56.5,33.5 parent: 2 type: Transform - - uid: 14010 + - uid: 6965 components: - - pos: -44.5,41.5 + - pos: -57.5,32.5 parent: 2 type: Transform - - uid: 14011 + - uid: 6966 components: - - pos: -25.5,17.5 + - rot: 3.141592653589793 rad + pos: -39.5,35.5 parent: 2 type: Transform - - uid: 15172 + - uid: 6967 components: - - pos: -45.5,-10.5 + - rot: -1.5707963267948966 rad + pos: -40.5,34.5 parent: 2 type: Transform - - uid: 15259 + - uid: 6968 components: - - pos: -23.5,36.5 + - pos: -39.5,37.5 parent: 2 type: Transform -- proto: DisposalYJunction - entities: - - uid: 4961 + - uid: 6969 components: - - pos: 17.5,-20.5 + - pos: -39.5,38.5 parent: 2 type: Transform - - uid: 12614 + - uid: 6970 components: - - rot: -1.5707963267948966 rad - pos: 39.5,-21.5 + - pos: -39.5,39.5 parent: 2 type: Transform - - uid: 12781 + - uid: 6971 components: - - rot: -1.5707963267948966 rad - pos: 28.5,-4.5 + - rot: 1.5707963267948966 rad + pos: -43.5,40.5 parent: 2 type: Transform -- proto: DogBed - entities: - - uid: 614 + - uid: 6972 components: - - pos: -30.5,-15.5 + - rot: 1.5707963267948966 rad + pos: -42.5,40.5 parent: 2 type: Transform - - uid: 1850 + - uid: 6973 components: - - pos: -1.5,-30.5 + - rot: 1.5707963267948966 rad + pos: -41.5,40.5 parent: 2 type: Transform - - uid: 4514 + - uid: 6974 components: - - pos: 9.5,17.5 + - rot: 1.5707963267948966 rad + pos: -40.5,40.5 parent: 2 type: Transform - - uid: 4562 + - uid: 6975 components: - - pos: 9.5,27.5 + - rot: -1.5707963267948966 rad + pos: -11.5,36.5 parent: 2 type: Transform - - uid: 10901 + - uid: 6976 components: - - pos: -37.5,-4.5 + - rot: -1.5707963267948966 rad + pos: -10.5,36.5 parent: 2 type: Transform - - uid: 12341 + - uid: 6977 components: - - pos: -48.5,39.5 + - rot: -1.5707963267948966 rad + pos: -9.5,36.5 parent: 2 type: Transform - - uid: 13873 + - uid: 6978 + components: + - rot: -1.5707963267948966 rad + pos: -8.5,36.5 + parent: 2 + type: Transform + - uid: 6979 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,38.5 + parent: 2 + type: Transform + - uid: 6980 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-20.5 + parent: 2 + type: Transform + - uid: 6981 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,38.5 + parent: 2 + type: Transform + - uid: 6982 + components: + - rot: -1.5707963267948966 rad + pos: 1.5,4.5 + parent: 2 + type: Transform + - uid: 6983 + components: + - pos: -8.5,-38.5 + parent: 2 + type: Transform + - uid: 6984 + components: + - pos: -8.5,-39.5 + parent: 2 + type: Transform +- proto: DisposalTrunk + entities: + - uid: 6985 + components: + - rot: -1.5707963267948966 rad + pos: 40.5,-22.5 + parent: 2 + type: Transform + - uid: 6986 + components: + - rot: 3.141592653589793 rad + pos: -45.5,-10.5 + parent: 2 + type: Transform + - uid: 6987 + components: + - pos: -38.5,-6.5 + parent: 2 + type: Transform + - uid: 6988 + components: + - pos: -56.5,2.5 + parent: 2 + type: Transform + - uid: 6989 + components: + - rot: -1.5707963267948966 rad + pos: -49.5,-0.5 + parent: 2 + type: Transform + - uid: 6990 + components: + - rot: 1.5707963267948966 rad + pos: -59.5,-14.5 + parent: 2 + type: Transform + - uid: 6991 + components: + - rot: 3.141592653589793 rad + pos: 17.5,-22.5 + parent: 2 + type: Transform + - uid: 6992 + components: + - rot: 3.141592653589793 rad + pos: 2.5,37.5 + parent: 2 + type: Transform + - uid: 6993 + components: + - rot: -1.5707963267948966 rad + pos: -50.5,3.5 + parent: 2 + type: Transform + - uid: 6994 + components: + - rot: 1.5707963267948966 rad + pos: 12.5,26.5 + parent: 2 + type: Transform + - uid: 6995 + components: + - pos: 23.5,21.5 + parent: 2 + type: Transform + - uid: 6996 + components: + - rot: -1.5707963267948966 rad + pos: 14.5,11.5 + parent: 2 + type: Transform + - uid: 6997 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,8.5 + parent: 2 + type: Transform + - uid: 6998 + components: + - pos: -44.5,41.5 + parent: 2 + type: Transform + - uid: 6999 + components: + - rot: 1.5707963267948966 rad + pos: 24.5,-16.5 + parent: 2 + type: Transform + - uid: 7000 + components: + - pos: 28.5,-2.5 + parent: 2 + type: Transform + - uid: 7001 + components: + - rot: 3.141592653589793 rad + pos: 19.5,-6.5 + parent: 2 + type: Transform + - uid: 7002 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 2 + type: Transform + - uid: 7003 + components: + - pos: 37.5,1.5 + parent: 2 + type: Transform + - uid: 7004 + components: + - rot: 1.5707963267948966 rad + pos: 30.5,3.5 + parent: 2 + type: Transform + - uid: 7005 + components: + - pos: 17.5,1.5 + parent: 2 + type: Transform + - uid: 7006 + components: + - rot: -1.5707963267948966 rad + pos: 31.5,-10.5 + parent: 2 + type: Transform + - uid: 7007 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 2 + type: Transform + - uid: 7008 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-19.5 + parent: 2 + type: Transform + - uid: 7009 + components: + - pos: -6.5,-15.5 + parent: 2 + type: Transform + - uid: 7010 + components: + - pos: -2.5,-21.5 + parent: 2 + type: Transform + - uid: 7011 + components: + - pos: -20.5,-27.5 + parent: 2 + type: Transform + - uid: 7012 + components: + - rot: 3.141592653589793 rad + pos: -10.5,-36.5 + parent: 2 + type: Transform + - uid: 7013 + components: + - rot: 1.5707963267948966 rad + pos: -17.5,-71.5 + parent: 2 + type: Transform + - uid: 7014 + components: + - pos: -19.5,-75.5 + parent: 2 + type: Transform + - uid: 7015 + components: + - rot: 3.141592653589793 rad + pos: -15.5,-88.5 + parent: 2 + type: Transform + - uid: 7016 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-15.5 + parent: 2 + type: Transform + - uid: 7017 + components: + - rot: 3.141592653589793 rad + pos: -23.5,-11.5 + parent: 2 + type: Transform + - uid: 7018 + components: + - rot: 1.5707963267948966 rad + pos: -15.5,3.5 + parent: 2 + type: Transform + - uid: 7019 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,9.5 + parent: 2 + type: Transform + - uid: 7020 + components: + - pos: -21.5,14.5 + parent: 2 + type: Transform + - uid: 7021 + components: + - pos: -9.5,27.5 + parent: 2 + type: Transform + - uid: 7022 + components: + - rot: 1.5707963267948966 rad + pos: -12.5,36.5 + parent: 2 + type: Transform + - uid: 7023 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,35.5 + parent: 2 + type: Transform + - uid: 7024 + components: + - pos: -11.5,44.5 + parent: 2 + type: Transform + - uid: 7025 + components: + - rot: 3.141592653589793 rad + pos: -27.5,37.5 + parent: 2 + type: Transform + - uid: 7026 + components: + - rot: 3.141592653589793 rad + pos: -38.5,13.5 + parent: 2 + type: Transform + - uid: 7027 + components: + - pos: -50.5,23.5 + parent: 2 + type: Transform + - uid: 7028 + components: + - rot: 3.141592653589793 rad + pos: -48.5,5.5 + parent: 2 + type: Transform + - uid: 7029 + components: + - rot: -1.5707963267948966 rad + pos: -31.5,34.5 + parent: 2 + type: Transform + - uid: 7030 + components: + - rot: 3.141592653589793 rad + pos: -38.5,25.5 + parent: 2 + type: Transform + - uid: 7031 + components: + - pos: -44.5,30.5 + parent: 2 + type: Transform + - uid: 7032 + components: + - rot: 3.141592653589793 rad + pos: -57.5,31.5 + parent: 2 + type: Transform + - uid: 7033 + components: + - rot: 1.5707963267948966 rad + pos: -40.5,36.5 + parent: 2 + type: Transform + - uid: 7034 + components: + - rot: 1.5707963267948966 rad + pos: -25.5,17.5 + parent: 2 + type: Transform + - uid: 7035 + components: + - rot: -1.5707963267948966 rad + pos: -23.5,36.5 + parent: 2 + type: Transform + - uid: 7036 + components: + - rot: -1.5707963267948966 rad + pos: 2.5,4.5 + parent: 2 + type: Transform + - uid: 7037 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-40.5 + parent: 2 + type: Transform +- proto: DisposalUnit + entities: + - uid: 7038 + components: + - pos: 4.5,-9.5 + parent: 2 + type: Transform + - uid: 7039 + components: + - pos: -6.5,9.5 + parent: 2 + type: Transform + - uid: 7040 + components: + - pos: -15.5,3.5 + parent: 2 + type: Transform + - uid: 7041 + components: + - pos: -11.5,18.5 + parent: 2 + type: Transform + - uid: 7042 + components: + - pos: -7.5,-2.5 + parent: 2 + type: Transform + - uid: 7043 + components: + - pos: -23.5,-11.5 + parent: 2 + type: Transform + - uid: 7044 + components: + - pos: -9.5,27.5 + parent: 2 + type: Transform + - uid: 7045 + components: + - pos: 28.5,-2.5 + parent: 2 + type: Transform + - uid: 7046 + components: + - pos: 14.5,11.5 + parent: 2 + type: Transform + - uid: 7047 + components: + - pos: -10.5,-36.5 + parent: 2 + type: Transform + - uid: 7048 + components: + - pos: -2.5,-21.5 + parent: 2 + type: Transform + - uid: 7049 + components: + - pos: 24.5,-16.5 + parent: 2 + type: Transform + - uid: 7050 + components: + - pos: -21.5,14.5 + parent: 2 + type: Transform + - uid: 7051 + components: + - pos: -56.5,2.5 + parent: 2 + type: Transform + - uid: 7052 + components: + - pos: -38.5,-6.5 + parent: 2 + type: Transform + - uid: 7053 + components: + - pos: -59.5,-14.5 + parent: 2 + type: Transform + - uid: 7054 + components: + - pos: 23.5,21.5 + parent: 2 + type: Transform + - uid: 7055 + components: + - pos: 17.5,8.5 + parent: 2 + type: Transform + - uid: 7056 + components: + - pos: 12.5,26.5 + parent: 2 + type: Transform + - uid: 7057 + components: + - pos: -17.5,-71.5 + parent: 2 + type: Transform + - uid: 7058 + components: + - pos: -31.5,34.5 + parent: 2 + type: Transform + - uid: 7059 + components: + - pos: 2.5,4.5 + parent: 2 + type: Transform + - uid: 7060 + components: + - pos: -40.5,36.5 + parent: 2 + type: Transform + - uid: 7061 + components: + - pos: -38.5,25.5 + parent: 2 + type: Transform + - uid: 7062 + components: + - pos: 2.5,37.5 + parent: 2 + type: Transform + - uid: 7063 + components: + - pos: -11.5,44.5 + parent: 2 + type: Transform + - uid: 7064 + components: + - pos: -18.5,-15.5 + parent: 2 + type: Transform + - uid: 7065 + components: + - pos: 30.5,3.5 + parent: 2 + type: Transform + - uid: 7066 + components: + - pos: 37.5,1.5 + parent: 2 + type: Transform + - uid: 7067 + components: + - pos: 40.5,-22.5 + parent: 2 + type: Transform + - uid: 7068 + components: + - pos: -20.5,-27.5 + parent: 2 + type: Transform + - uid: 7069 + components: + - pos: -48.5,5.5 + parent: 2 + type: Transform + - uid: 7070 + components: + - pos: -50.5,23.5 + parent: 2 + type: Transform + - uid: 7071 + components: + - pos: -44.5,30.5 + parent: 2 + type: Transform + - uid: 7072 + components: + - pos: -27.5,37.5 + parent: 2 + type: Transform + - uid: 7073 + components: + - pos: -1.5,35.5 + parent: 2 + type: Transform + - uid: 7074 + components: + - pos: -12.5,36.5 + parent: 2 + type: Transform + - uid: 7075 + components: + - pos: 19.5,-6.5 + parent: 2 + type: Transform + - uid: 7076 + components: + - pos: 17.5,1.5 + parent: 2 + type: Transform + - uid: 7077 + components: + - pos: 31.5,-10.5 + parent: 2 + type: Transform + - uid: 7078 + components: + - pos: -6.5,-15.5 + parent: 2 + type: Transform + - uid: 7079 + components: + - pos: -10.5,-19.5 + parent: 2 + type: Transform + - uid: 7080 + components: + - pos: -19.5,-75.5 + parent: 2 + type: Transform + - uid: 7081 + components: + - pos: -33.5,-4.5 + parent: 2 + type: Transform + - uid: 7082 + components: + - pos: -38.5,13.5 + parent: 2 + type: Transform + - uid: 7083 + components: + - pos: -57.5,31.5 + parent: 2 + type: Transform + - uid: 7084 + components: + - pos: -44.5,41.5 + parent: 2 + type: Transform + - uid: 7085 + components: + - pos: -25.5,17.5 + parent: 2 + type: Transform + - uid: 7086 + components: + - pos: -45.5,-10.5 + parent: 2 + type: Transform + - uid: 7087 + components: + - pos: -23.5,36.5 + parent: 2 + type: Transform + - uid: 7088 + components: + - pos: -8.5,-40.5 + parent: 2 + type: Transform +- proto: DisposalYJunction + entities: + - uid: 7089 + components: + - pos: 17.5,-20.5 + parent: 2 + type: Transform + - uid: 7090 + components: + - rot: -1.5707963267948966 rad + pos: 39.5,-21.5 + parent: 2 + type: Transform + - uid: 7091 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-4.5 + parent: 2 + type: Transform +- proto: DogBed + entities: + - uid: 7092 + components: + - pos: -30.5,-15.5 + parent: 2 + type: Transform + - uid: 7093 + components: + - pos: -1.5,-30.5 + parent: 2 + type: Transform + - uid: 7094 + components: + - pos: 9.5,17.5 + parent: 2 + type: Transform + - uid: 7095 + components: + - pos: 9.5,27.5 + parent: 2 + type: Transform + - uid: 7096 + components: + - pos: -37.5,-4.5 + parent: 2 + type: Transform + - uid: 7097 + components: + - pos: -48.5,39.5 + parent: 2 + type: Transform + - uid: 7098 components: - pos: -1.5,37.5 parent: 2 type: Transform - - uid: 15032 + - uid: 7099 components: - pos: 21.5,-3.5 parent: 2 type: Transform - - uid: 15908 + - uid: 7100 components: - pos: 7.5,-7.5 parent: 2 type: Transform - - uid: 16305 + - uid: 7101 components: - pos: -35.5,13.5 parent: 2 type: Transform - proto: DonkpocketBoxSpawner entities: - - uid: 2661 + - uid: 7102 components: - pos: -13.5,-38.5 parent: 2 type: Transform - - uid: 3825 + - uid: 7103 components: - pos: -22.5,-74.5 parent: 2 type: Transform - - uid: 4202 + - uid: 7104 components: - pos: 7.5,6.5 parent: 2 type: Transform - proto: Dresser entities: - - uid: 1677 + - uid: 7105 components: - pos: -31.5,9.5 parent: 2 type: Transform - - uid: 3486 + - uid: 7106 components: - pos: -59.5,-17.5 parent: 2 type: Transform - - uid: 3490 + - uid: 7107 components: - pos: -50.5,-17.5 parent: 2 type: Transform - - uid: 14289 + - uid: 7108 components: - pos: -34.5,32.5 parent: 2 type: Transform - - uid: 15409 + - uid: 7109 components: - pos: -38.5,10.5 parent: 2 type: Transform - proto: DrinkBeerBottleFull entities: - - uid: 16865 + - uid: 7110 components: - pos: -1.7504303,-9.396182 parent: 2 type: Transform - - uid: 16866 + - uid: 7111 components: - pos: -1.229597,-9.07304 parent: 2 type: Transform - proto: DrinkBottleBeer entities: - - uid: 4299 + - uid: 7112 components: - rot: -1.5707963267948966 rad pos: -30.276623,19.046211 parent: 2 type: Transform - - uid: 4300 + - uid: 7113 components: - pos: -30.932873,20.015636 parent: 2 type: Transform - - uid: 16867 + - uid: 7114 components: - rot: -1.5707963267948966 rad pos: -1.5212636,-11.241214 parent: 2 type: Transform - - uid: 16868 + - uid: 7115 components: - pos: -1.8545971,-11.282908 parent: 2 type: Transform - proto: DrinkCafeLatte entities: - - uid: 16614 + - uid: 7116 components: - pos: -20.679987,-2.1549442 parent: 2 type: Transform - proto: DrinkChangelingStingCan entities: - - uid: 13451 + - uid: 7117 components: - pos: -30.521725,-23.399918 parent: 2 type: Transform - proto: DrinkCoffee entities: - - uid: 15685 + - uid: 7118 components: - pos: -20.620462,-14.877153 parent: 2 type: Transform - - uid: 15687 + - uid: 7119 components: - pos: -20.682962,-7.126827 parent: 2 type: Transform - - uid: 16595 + - uid: 7120 components: - pos: -9.650637,1.9549263 parent: 2 type: Transform - proto: DrinkColaCan entities: - - uid: 6401 + - uid: 7121 components: - pos: 3.5747638,-7.359473 parent: 2 type: Transform - proto: DrinkDetFlask entities: - - uid: 3199 + - uid: 7122 components: - pos: -34.904297,32.002953 parent: 2 type: Transform - proto: DrinkDrGibbCan entities: - - uid: 4192 + - uid: 7123 components: - pos: 8.70818,6.552321 parent: 2 type: Transform - - uid: 16735 + - uid: 7124 components: - pos: 5.7441163,-39.113068 parent: 2 type: Transform - proto: DrinkEnergyDrinkCan entities: - - uid: 16280 + - uid: 7125 components: - pos: -2.6950586,-15.133556 parent: 2 type: Transform - - uid: 16741 + - uid: 7126 components: - pos: 4.202278,-2.2945619 parent: 2 type: Transform - - uid: 16806 + - uid: 7127 components: - pos: 4.296028,-2.4926157 parent: 2 type: Transform - - uid: 17197 + - uid: 7128 components: - pos: 4.4731116,-2.2632902 parent: 2 type: Transform - - uid: 17203 + - uid: 7129 components: - rot: -1.5707963267948966 rad pos: 4.6918616,-2.6177022 @@ -44642,14 +45175,14 @@ entities: type: Transform - proto: DrinkFlask entities: - - uid: 15633 + - uid: 7130 components: - pos: -1.3559332,40.9537 parent: 2 type: Transform - proto: DrinkGlass entities: - - uid: 3944 + - uid: 7131 components: - desc: An all time classic, mild cocktail. name: gin and tonic glass @@ -44752,7 +45285,7 @@ entities: boilingPoint: null recognizable: False type: TransformableContainer - - uid: 16879 + - uid: 7132 components: - desc: Whiskey, mixed with cola. Surprisingly refreshing. name: whiskey cola glass @@ -44857,52 +45390,52 @@ entities: type: TransformableContainer - proto: DrinkGoldenCup entities: - - uid: 11397 + - uid: 7133 components: - pos: 0.75259066,18.887726 parent: 2 type: Transform - proto: DrinkGrapeCan entities: - - uid: 2284 + - uid: 7134 components: - pos: 8.374847,6.5835924 parent: 2 type: Transform - proto: DrinkIcedTeaCan entities: - - uid: 6235 + - uid: 7135 components: - pos: 8.249847,6.802495 parent: 2 type: Transform - - uid: 15667 + - uid: 7136 components: - pos: 3.0435138,-7.2239623 parent: 2 type: Transform - proto: DrinkJarWhat entities: - - uid: 15537 + - uid: 7137 components: - pos: -30.32212,20.784021 parent: 2 type: Transform - proto: DrinkManlyDorfGlass entities: - - uid: 1574 + - uid: 7138 components: - pos: 10.738677,-31.104563 parent: 2 type: Transform - - uid: 2073 + - uid: 7139 components: - pos: 10.305383,-31.436697 parent: 2 type: Transform - proto: DrinkMugBlack entities: - - uid: 6701 + - uid: 7140 components: - pos: -9.319299,32.83632 parent: 2 @@ -44920,7 +45453,7 @@ entities: type: SolutionContainerManager - proto: DrinkMugBlue entities: - - uid: 6749 + - uid: 7141 components: - pos: -9.272424,34.712624 parent: 2 @@ -44938,7 +45471,7 @@ entities: type: SolutionContainerManager - proto: DrinkMugGreen entities: - - uid: 2946 + - uid: 7142 components: - pos: -9.397424,33.790108 parent: 2 @@ -44956,32 +45489,32 @@ entities: type: SolutionContainerManager - proto: DrinkMugMetal entities: - - uid: 3221 + - uid: 7143 components: - pos: -58.624435,-3.4879594 parent: 2 type: Transform - - uid: 3222 + - uid: 7144 components: - pos: -58.76118,-3.1559281 parent: 2 type: Transform - - uid: 10664 + - uid: 7145 components: - pos: -59.26182,2.693884 parent: 2 type: Transform - - uid: 12519 + - uid: 7146 components: - pos: -59.428486,2.4645584 parent: 2 type: Transform - - uid: 14273 + - uid: 7147 components: - pos: -59.657654,2.6521893 parent: 2 type: Transform - - uid: 15028 + - uid: 7148 components: - pos: -10.700483,32.45439 parent: 2 @@ -44999,7 +45532,7 @@ entities: type: SolutionContainerManager - proto: DrinkMugMoebius entities: - - uid: 4820 + - uid: 7149 components: - pos: -10.709924,33.602478 parent: 2 @@ -45020,7 +45553,7 @@ entities: type: SolutionContainerManager - proto: DrinkMugOne entities: - - uid: 6921 + - uid: 7150 components: - pos: -10.616174,34.75953 parent: 2 @@ -45038,7 +45571,7 @@ entities: type: SolutionContainerManager - proto: DrinkMugRed entities: - - uid: 15013 + - uid: 7151 components: - pos: -10.700483,34.07939 parent: 2 @@ -45056,615 +45589,592 @@ entities: type: SolutionContainerManager - proto: DrinkRumBottleFull entities: - - uid: 3401 + - uid: 7152 components: - pos: -1.3125067,40.817005 parent: 2 type: Transform - proto: DrinkShotGlass entities: - - uid: 1494 + - uid: 7153 components: - pos: -1.6250658,40.44591 parent: 2 type: Transform - - uid: 2116 + - uid: 7154 components: - pos: -1.7032061,40.75841 parent: 2 type: Transform - - uid: 4296 + - uid: 7155 components: - pos: -30.448498,20.48471 parent: 2 type: Transform - - uid: 4297 + - uid: 7156 components: - pos: -30.760998,20.609798 parent: 2 type: Transform - - uid: 16880 + - uid: 7157 components: - pos: -5.1731544,-7.5824575 parent: 2 type: Transform - - uid: 16883 + - uid: 7158 components: - pos: -4.975238,-7.363556 parent: 2 type: Transform - proto: DrinkSilencerGlass entities: - - uid: 4258 + - uid: 7159 components: - pos: -35.32141,11.850042 parent: 2 type: Transform - proto: DrinkSingulo entities: - - uid: 13984 + - uid: 7160 components: - pos: -10.513839,-40.031387 parent: 2 type: Transform - proto: DrinkSodaWaterCan entities: - - uid: 1840 + - uid: 7161 components: - pos: 8.686324,-31.392466 parent: 2 type: Transform - proto: DrinkSoyLatte entities: - - uid: 3869 + - uid: 7162 components: - pos: 20.79814,-5.199406 parent: 2 type: Transform - proto: DrinkSpaceMountainWindCan entities: - - uid: 711 + - uid: 7163 components: - pos: -7.7122755,19.819637 parent: 2 type: Transform - proto: DrinkSpaceUpCan entities: - - uid: 4775 + - uid: 7164 components: - pos: 8.577665,6.831503 parent: 2 type: Transform - proto: DrinkTonicWaterCan entities: - - uid: 4295 + - uid: 7165 components: - pos: -30.542248,20.875607 parent: 2 type: Transform - proto: DrinkVodkaBottleFull entities: - - uid: 4293 + - uid: 7166 components: - pos: -30.260998,21.000694 parent: 2 type: Transform - proto: DrinkWaterBottleFull entities: - - uid: 1333 + - uid: 7167 components: - pos: -20.323587,-14.877153 parent: 2 type: Transform - - uid: 15682 + - uid: 7168 components: - pos: -20.198587,-15.033403 parent: 2 type: Transform - - uid: 15683 + - uid: 7169 components: - pos: -20.386087,-15.127153 parent: 2 type: Transform - - uid: 15684 + - uid: 7170 components: - pos: -20.245462,-15.345903 parent: 2 type: Transform - proto: DrinkWaterCup entities: - - uid: 6261 + - uid: 7171 components: - pos: -38.694744,31.552332 parent: 2 type: Transform - - uid: 6274 + - uid: 7172 components: - pos: -38.340576,31.594028 parent: 2 type: Transform - - uid: 6326 + - uid: 7173 components: - pos: -38.517662,31.698267 parent: 2 type: Transform - - uid: 6349 + - uid: 7174 components: - pos: -38.475994,31.479364 parent: 2 type: Transform - - uid: 15677 + - uid: 7175 components: - pos: -25.372353,-4.2691045 parent: 2 type: Transform - - uid: 15678 + - uid: 7176 components: - pos: -25.684853,-4.1909795 parent: 2 type: Transform - - uid: 15679 + - uid: 7177 components: - pos: -25.653603,-4.4722295 parent: 2 type: Transform - - uid: 15681 + - uid: 7178 components: - pos: -25.356728,-4.5034795 parent: 2 type: Transform - proto: DrinkWhiskeyGlass entities: - - uid: 9159 + - uid: 7179 components: - pos: -34.792107,34.534798 parent: 2 type: Transform - proto: DrinkWineGlass entities: - - uid: 4208 + - uid: 7180 components: - pos: 21.29036,32.63575 parent: 2 type: Transform - - uid: 5354 + - uid: 7181 components: - pos: 21.79023,32.68312 parent: 2 type: Transform - - uid: 15400 + - uid: 7182 components: - pos: -13.151632,-9.295929 parent: 2 type: Transform - - uid: 15484 + - uid: 7183 components: - pos: -33.236088,18.75058 parent: 2 type: Transform - proto: Dropper entities: - - uid: 806 + - uid: 7184 components: - pos: -28.348356,3.377645 parent: 2 type: Transform - - uid: 1202 + - uid: 7185 components: - pos: -19.54627,6.510217 parent: 2 type: Transform - - uid: 4486 + - uid: 7186 components: - pos: 15.466989,20.498625 parent: 2 type: Transform - - uid: 5350 + - uid: 7187 components: - pos: -35.433304,27.757446 parent: 2 type: Transform - proto: ElectricGuitarInstrument entities: - - uid: 3233 + - uid: 7188 components: - pos: -54.45359,-13.424999 parent: 2 type: Transform - proto: EmergencyLight entities: - - uid: 1289 + - uid: 7189 components: - rot: -1.5707963267948966 rad pos: 2.5,31.5 parent: 2 type: Transform - - uid: 2047 + - uid: 7190 components: - rot: 3.141592653589793 rad pos: 12.5,-17.5 parent: 2 type: Transform - - uid: 3937 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-45.5 - parent: 2 - type: Transform - - uid: 5364 + - uid: 7191 components: - rot: 3.141592653589793 rad pos: -33.5,13.5 parent: 2 type: Transform - - uid: 5373 + - uid: 7192 components: - rot: 3.141592653589793 rad pos: -20.5,-34.5 parent: 2 type: Transform - - uid: 5375 + - uid: 7193 components: - pos: -20.5,-42.5 parent: 2 type: Transform - - uid: 5391 - components: - - pos: -0.5,-38.5 - parent: 2 - type: Transform - - uid: 5400 + - uid: 7194 components: - rot: 3.141592653589793 rad pos: 4.5,-7.5 parent: 2 type: Transform - - uid: 5403 + - uid: 7195 components: - rot: -1.5707963267948966 rad pos: -12.5,12.5 parent: 2 type: Transform - - uid: 6173 + - uid: 7196 components: - pos: 17.5,-24.5 parent: 2 type: Transform - - uid: 7762 + - uid: 7197 components: - rot: -1.5707963267948966 rad pos: 7.5,-11.5 parent: 2 type: Transform - - uid: 9054 + - uid: 7198 components: - rot: 1.5707963267948966 rad pos: 9.5,-27.5 parent: 2 type: Transform - - uid: 12239 + - uid: 7199 components: - rot: -1.5707963267948966 rad pos: 11.5,-36.5 parent: 2 type: Transform - - uid: 12764 + - uid: 7200 components: - pos: -7.5,1.5 parent: 2 type: Transform - - uid: 14694 + - uid: 7201 components: - rot: 3.141592653589793 rad pos: 4.5,-0.5 parent: 2 type: Transform - - uid: 15289 + - uid: 7202 components: - rot: 1.5707963267948966 rad pos: -24.5,19.5 parent: 2 type: Transform - - uid: 15963 + - uid: 7203 components: - rot: 3.141592653589793 rad pos: -41.5,39.5 parent: 2 type: Transform - - uid: 15978 + - uid: 7204 components: - pos: -7.5,26.5 parent: 2 type: Transform - - uid: 16219 + - uid: 7205 components: - rot: -1.5707963267948966 rad pos: 12.5,-22.5 parent: 2 type: Transform - - uid: 16454 + - uid: 7206 components: - rot: 1.5707963267948966 rad pos: -4.5,13.5 parent: 2 type: Transform - - uid: 16455 + - uid: 7207 components: - rot: 1.5707963267948966 rad pos: -10.5,14.5 parent: 2 type: Transform - - uid: 16456 + - uid: 7208 components: - pos: -39.5,7.5 parent: 2 type: Transform - - uid: 16457 + - uid: 7209 components: - rot: 1.5707963267948966 rad pos: -50.5,10.5 parent: 2 type: Transform - - uid: 16458 + - uid: 7210 components: - rot: 1.5707963267948966 rad pos: -50.5,22.5 parent: 2 type: Transform - - uid: 16459 + - uid: 7211 components: - rot: 3.141592653589793 rad pos: -48.5,32.5 parent: 2 type: Transform - - uid: 16461 + - uid: 7212 components: - pos: -37.5,29.5 parent: 2 type: Transform - - uid: 16462 + - uid: 7213 components: - rot: 3.141592653589793 rad pos: -54.5,31.5 parent: 2 type: Transform - - uid: 16463 + - uid: 7214 components: - pos: -50.5,50.5 parent: 2 type: Transform - - uid: 16464 + - uid: 7215 components: - pos: 30.5,1.5 parent: 2 type: Transform - - uid: 16465 + - uid: 7216 components: - pos: -52.5,-11.5 parent: 2 type: Transform - - uid: 16466 + - uid: 7217 components: - rot: 3.141592653589793 rad pos: 32.5,-22.5 parent: 2 type: Transform - - uid: 16467 + - uid: 7218 components: - pos: 1.5,-22.5 parent: 2 type: Transform - - uid: 16468 + - uid: 7219 components: - pos: -10.5,39.5 parent: 2 type: Transform - - uid: 16469 + - uid: 7220 components: - rot: 3.141592653589793 rad pos: -10.5,41.5 parent: 2 type: Transform - - uid: 16470 + - uid: 7221 components: - rot: -1.5707963267948966 rad pos: -6.5,-17.5 parent: 2 type: Transform - - uid: 16471 + - uid: 7222 components: - rot: -1.5707963267948966 rad pos: 37.5,6.5 parent: 2 type: Transform - - uid: 16472 + - uid: 7223 components: - pos: -5.5,-29.5 parent: 2 type: Transform - - uid: 16473 + - uid: 7224 components: - rot: -1.5707963267948966 rad pos: -17.5,8.5 parent: 2 type: Transform - - uid: 16475 + - uid: 7225 components: - rot: 1.5707963267948966 rad pos: -18.5,-18.5 parent: 2 type: Transform - - uid: 16476 + - uid: 7226 components: - rot: 3.141592653589793 rad pos: 0.5,37.5 parent: 2 type: Transform - - uid: 16477 + - uid: 7227 components: - rot: -1.5707963267948966 rad pos: -15.5,-3.5 parent: 2 type: Transform - - uid: 16478 + - uid: 7228 components: - rot: 1.5707963267948966 rad pos: -10.5,-5.5 parent: 2 type: Transform - - uid: 16480 - components: - - rot: 3.141592653589793 rad - pos: 4.5,-51.5 - parent: 2 - type: Transform - - uid: 16481 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-41.5 - parent: 2 - type: Transform - - uid: 16483 + - uid: 7229 components: - rot: 1.5707963267948966 rad pos: 24.5,-10.5 parent: 2 type: Transform - - uid: 16484 + - uid: 7230 components: - rot: -1.5707963267948966 rad pos: 23.5,16.5 parent: 2 type: Transform - - uid: 16485 + - uid: 7231 components: - rot: 1.5707963267948966 rad pos: 6.5,9.5 parent: 2 type: Transform - - uid: 16486 + - uid: 7232 components: - rot: 1.5707963267948966 rad pos: 10.5,5.5 parent: 2 type: Transform - - uid: 16488 + - uid: 7233 components: - rot: -1.5707963267948966 rad pos: 23.5,4.5 parent: 2 type: Transform - - uid: 16489 + - uid: 7234 components: - rot: 1.5707963267948966 rad pos: 12.5,20.5 parent: 2 type: Transform - - uid: 16490 + - uid: 7235 components: - pos: 31.5,-8.5 parent: 2 type: Transform - - uid: 16492 + - uid: 7236 components: - rot: 1.5707963267948966 rad pos: 37.5,-7.5 parent: 2 type: Transform - - uid: 16499 + - uid: 7237 components: - rot: 3.141592653589793 rad pos: 19.5,-6.5 parent: 2 type: Transform - - uid: 16503 + - uid: 7238 components: - rot: -1.5707963267948966 rad pos: -54.5,-7.5 parent: 2 type: Transform - - uid: 16504 + - uid: 7239 components: - rot: -1.5707963267948966 rad pos: -49.5,-0.5 parent: 2 type: Transform - - uid: 16505 + - uid: 7240 components: - rot: 3.141592653589793 rad pos: 17.5,15.5 parent: 2 type: Transform - - uid: 16507 + - uid: 7241 components: - rot: 1.5707963267948966 rad pos: -28.5,-12.5 parent: 2 type: Transform - - uid: 16508 + - uid: 7242 components: - pos: -39.5,-8.5 parent: 2 type: Transform - - uid: 16509 + - uid: 7243 components: - rot: 3.141592653589793 rad pos: -23.5,-5.5 parent: 2 type: Transform - - uid: 16510 + - uid: 7244 components: - rot: 1.5707963267948966 rad pos: -25.5,-23.5 parent: 2 type: Transform - - uid: 16511 + - uid: 7245 components: - rot: 3.141592653589793 rad pos: 1.5,-20.5 parent: 2 type: Transform - - uid: 16512 + - uid: 7246 components: - pos: -29.5,32.5 parent: 2 type: Transform - - uid: 16513 + - uid: 7247 components: - rot: -1.5707963267948966 rad pos: -19.5,40.5 parent: 2 type: Transform - - uid: 16515 + - uid: 7248 components: - rot: 1.5707963267948966 rad pos: -30.5,-76.5 parent: 2 type: Transform - - uid: 16516 + - uid: 7249 components: - pos: -15.5,-74.5 parent: 2 type: Transform - - uid: 16517 + - uid: 7250 components: - rot: -1.5707963267948966 rad pos: -10.5,-76.5 parent: 2 type: Transform - - uid: 16518 + - uid: 7251 components: - rot: 1.5707963267948966 rad pos: -5.5,-75.5 parent: 2 type: Transform - - uid: 16519 + - uid: 7252 components: - rot: 3.141592653589793 rad pos: -15.5,-83.5 parent: 2 type: Transform - - uid: 17193 + - uid: 7253 components: - rot: 3.141592653589793 rad pos: 13.5,-17.5 @@ -45672,35 +46182,35 @@ entities: type: Transform - proto: Emitter entities: - - uid: 2266 + - uid: 7254 components: - rot: 1.5707963267948966 rad pos: -38.5,-42.5 parent: 2 type: Transform - - uid: 2370 + - uid: 7255 components: - rot: 1.5707963267948966 rad pos: -38.5,-34.5 parent: 2 type: Transform - - uid: 2442 + - uid: 7256 components: - rot: -1.5707963267948966 rad pos: -24.5,-42.5 parent: 2 type: Transform - - uid: 2443 + - uid: 7257 components: - pos: -27.5,-31.5 parent: 2 type: Transform - - uid: 16756 + - uid: 7258 components: - pos: -35.5,-31.5 parent: 2 type: Transform - - uid: 16757 + - uid: 7259 components: - rot: 3.141592653589793 rad pos: -35.5,-45.5 @@ -45708,145 +46218,145 @@ entities: type: Transform - proto: EncryptionKeyCargo entities: - - uid: 14674 + - uid: 7261 components: - flags: InContainer type: MetaData - - parent: 3908 + - parent: 7260 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyCommand entities: - - uid: 14505 + - uid: 7264 components: - flags: InContainer type: MetaData - - parent: 3906 + - parent: 7263 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyCommon entities: - - uid: 14478 + - uid: 7266 components: - flags: InContainer type: MetaData - - parent: 3903 + - parent: 7265 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyEngineering entities: - - uid: 14342 + - uid: 7268 components: - flags: InContainer type: MetaData - - parent: 3901 + - parent: 7267 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyMedical entities: - - uid: 14667 + - uid: 7271 components: - flags: InContainer type: MetaData - - parent: 3907 + - parent: 7270 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyRobo entities: - - uid: 14387 + - uid: 7269 components: - flags: InContainer type: MetaData - - parent: 3901 + - parent: 7267 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyScience entities: - - uid: 14277 + - uid: 7273 components: - flags: InContainer type: MetaData - - parent: 3900 + - parent: 7272 type: Transform - canCollide: False type: Physics - proto: EncryptionKeySecurity entities: - - uid: 14504 + - uid: 7275 components: - flags: InContainer type: MetaData - - parent: 3904 + - parent: 7274 type: Transform - canCollide: False type: Physics - proto: EncryptionKeyService entities: - - uid: 14675 + - uid: 7262 components: - flags: InContainer type: MetaData - - parent: 3908 + - parent: 7260 type: Transform - canCollide: False type: Physics - proto: EpinephrineChemistryBottle entities: - - uid: 2070 + - uid: 7276 components: - pos: 20.344051,5.533956 parent: 2 type: Transform - proto: ExosuitFabricator entities: - - uid: 12513 + - uid: 7277 components: - pos: -44.5,39.5 parent: 2 type: Transform - proto: ExplosivesSignMed entities: - - uid: 662 + - uid: 7278 components: - pos: -47.5,-11.5 parent: 2 type: Transform - - uid: 1502 + - uid: 7279 components: - pos: -44.5,-17.5 parent: 2 type: Transform - - uid: 11126 + - uid: 7280 components: - pos: -45.5,-11.5 parent: 2 type: Transform - - uid: 13990 + - uid: 7281 components: - pos: -39.5,4.5 parent: 2 type: Transform - - uid: 15856 + - uid: 7282 components: - pos: -43.5,4.5 parent: 2 type: Transform - proto: ExtendedEmergencyOxygenTankFilled entities: - - uid: 1639 + - uid: 7283 components: - pos: 2.6238086,-9.236151 parent: 2 type: Transform - proto: ExtinguisherCabinet entities: - - uid: 13700 + - uid: 7284 components: - rot: 3.141592653589793 rad pos: 20.5,22.5 @@ -45854,156 +46364,168 @@ entities: type: Transform - proto: ExtinguisherCabinetFilled entities: - - uid: 12703 + - uid: 7285 components: - pos: 8.5,-14.5 parent: 2 type: Transform - - uid: 15360 + - uid: 7286 components: - rot: -1.5707963267948966 rad pos: 10.5,16.5 parent: 2 type: Transform - - uid: 15471 + - uid: 7287 components: - rot: -1.5707963267948966 rad pos: 9.5,8.5 parent: 2 type: Transform - - uid: 15477 + - uid: 7288 components: - pos: -8.5,14.5 parent: 2 type: Transform - - uid: 15497 + - uid: 7289 components: - pos: -16.5,8.5 parent: 2 type: Transform - - uid: 15622 + - uid: 7290 components: - pos: 13.5,10.5 parent: 2 type: Transform - - uid: 16576 + - uid: 7291 components: - pos: -26.5,-7.5 parent: 2 type: Transform - - uid: 16577 + - uid: 7292 components: - pos: -44.5,-10.5 parent: 2 type: Transform - - uid: 16578 + - uid: 7293 components: - pos: -55.5,2.5 parent: 2 type: Transform - - uid: 16579 + - uid: 7294 components: - pos: -15.5,-31.5 parent: 2 type: Transform - - uid: 16580 + - uid: 7295 components: - pos: 13.5,-28.5 parent: 2 type: Transform - - uid: 16581 + - uid: 7296 components: - pos: 35.5,-10.5 parent: 2 type: Transform - - uid: 16582 + - uid: 7297 components: - pos: -13.5,37.5 parent: 2 type: Transform - - uid: 16583 + - uid: 7298 components: - pos: -21.5,37.5 parent: 2 type: Transform - - uid: 16584 + - uid: 7299 components: - pos: -50.5,31.5 parent: 2 type: Transform - - uid: 16585 + - uid: 7300 components: - pos: -32.5,17.5 parent: 2 type: Transform - - uid: 16586 + - uid: 7301 components: - pos: -33.5,25.5 parent: 2 type: Transform - - uid: 16587 + - uid: 7302 components: - pos: 3.5,-1.5 parent: 2 type: Transform - - uid: 16588 + - uid: 7303 components: - pos: 13.5,-18.5 parent: 2 type: Transform - - uid: 16589 + - uid: 7304 components: - pos: 23.5,-10.5 parent: 2 type: Transform - - uid: 16914 + - uid: 7305 components: - pos: -32.5,8.5 parent: 2 type: Transform + - uid: 7306 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-44.5 + parent: 2 + type: Transform + - uid: 7307 + components: + - rot: -1.5707963267948966 rad + pos: -9.5,-38.5 + parent: 2 + type: Transform - proto: FaxMachineBase entities: - - uid: 439 + - uid: 7308 components: - pos: 10.5,-10.5 parent: 2 type: Transform - name: cargo type: FaxMachine - - uid: 1213 + - uid: 7309 components: - pos: -20.5,23.5 parent: 2 type: Transform - name: lawyer's office type: FaxMachine - - uid: 3847 + - uid: 7310 components: - pos: 20.5,-6.5 parent: 2 type: Transform - name: head of personnel type: FaxMachine - - uid: 4757 + - uid: 7311 components: - pos: -20.5,-9.5 parent: 2 type: Transform - name: security type: FaxMachine - - uid: 5621 + - uid: 7312 components: - pos: -8.5,42.5 parent: 2 type: Transform - name: bridge type: FaxMachine - - uid: 5827 + - uid: 7313 components: - pos: -19.5,-74.5 parent: 2 type: Transform - - uid: 15237 + - uid: 7314 components: - pos: -12.5,20.5 parent: 2 @@ -46012,7 +46534,7 @@ entities: type: FaxMachine - proto: FaxMachineCaptain entities: - - uid: 6685 + - uid: 7315 components: - pos: -0.5,37.5 parent: 2 @@ -46021,7 +46543,7 @@ entities: type: FaxMachine - proto: FenceMetalCorner entities: - - uid: 1537 + - uid: 7316 components: - rot: -1.5707963267948966 rad pos: 18.5,-26.5 @@ -46029,36 +46551,36 @@ entities: type: Transform - proto: FenceMetalGate entities: - - uid: 8885 + - uid: 7317 components: - pos: 20.5,-26.5 parent: 2 type: Transform - proto: FenceMetalStraight entities: - - uid: 7912 + - uid: 7318 components: - rot: -1.5707963267948966 rad pos: 19.5,-26.5 parent: 2 type: Transform - - uid: 8884 + - uid: 7319 components: - rot: -1.5707963267948966 rad pos: 21.5,-26.5 parent: 2 type: Transform - - uid: 10646 + - uid: 7320 components: - pos: 18.5,-25.5 parent: 2 type: Transform - - uid: 10649 + - uid: 7321 components: - pos: 18.5,-24.5 parent: 2 type: Transform - - uid: 10651 + - uid: 7322 components: - rot: -1.5707963267948966 rad pos: 22.5,-26.5 @@ -46066,2184 +46588,2243 @@ entities: type: Transform - proto: filingCabinet entities: - - uid: 867 + - uid: 7323 components: - pos: 7.5,27.5 parent: 2 type: Transform - proto: filingCabinetDrawer entities: - - uid: 415 + - uid: 7324 components: - pos: 14.5,-34.5 parent: 2 type: Transform - proto: filingCabinetDrawerRandom entities: - - uid: 443 + - uid: 7325 components: - pos: 10.5,-8.5 parent: 2 type: Transform - - uid: 716 + - uid: 7326 components: - pos: -25.5,-7.5 parent: 2 type: Transform - - uid: 1248 + - uid: 7327 components: - pos: -13.5,23.5 parent: 2 type: Transform - - uid: 4575 + - uid: 7328 components: - pos: 28.5,11.5 parent: 2 type: Transform - - uid: 5617 + - uid: 7329 components: - pos: -8.5,41.5 parent: 2 type: Transform - proto: filingCabinetRandom entities: - - uid: 422 + - uid: 7330 components: - pos: 4.748836,-15.5 parent: 2 type: Transform - - uid: 1211 + - uid: 7331 components: - pos: -19.5,23.5 parent: 2 type: Transform - - uid: 2059 + - uid: 7332 components: - pos: 4.248836,-15.5 parent: 2 type: Transform - - uid: 4185 + - uid: 7333 components: - pos: -22.5,-77.5 parent: 2 type: Transform - - uid: 12498 + - uid: 7334 components: - pos: 25.5,7.5 parent: 2 type: Transform + - uid: 7335 + components: + - pos: -0.5,-50.5 + parent: 2 + type: Transform - proto: filingCabinetTallRandom entities: - - uid: 1644 + - uid: 7336 components: - pos: 7.5,-4.5 parent: 2 type: Transform - proto: FireAlarm entities: - - uid: 191 + - uid: 7337 components: - pos: -25.5,-6.5 parent: 2 type: Transform - ShutdownSubscribers: - - 1520 - - 1394 + - 7394 + - 7391 type: DeviceNetwork - devices: - - 1520 - - 1394 - - 11017 - - 11013 - - 11014 + - 7394 + - 7391 + - 7464 + - 7462 + - 7463 type: DeviceList - - uid: 387 + - uid: 7338 components: - rot: 1.5707963267948966 rad pos: 8.5,-23.5 parent: 2 type: Transform - ShutdownSubscribers: - - 4241 - - 2997 - - 5101 - - 11806 - - 17141 - - 17140 + - 7422 + - 7421 + - 7425 + - 7542 + - 7561 + - 7560 type: DeviceNetwork - devices: - - 4241 - - 2997 - - 5101 - - 11806 - - 17141 - - 17140 + - 7422 + - 7421 + - 7425 + - 7542 + - 7561 + - 7560 type: DeviceList - - uid: 3866 + - uid: 7339 components: - pos: 31.5,-17.5 parent: 2 type: Transform - ShutdownSubscribers: - - 11052 - - 11053 - - 11054 + - 7487 + - 7488 + - 7489 type: DeviceNetwork - devices: - - 11052 - - 11053 - - 11054 + - 7487 + - 7488 + - 7489 type: DeviceList - - uid: 4213 + - uid: 7340 components: - rot: 1.5707963267948966 rad pos: 36.5,-7.5 parent: 2 type: Transform - ShutdownSubscribers: - - 11054 - - 11053 - - 11023 - - 10950 - - 15174 + - 7489 + - 7488 + - 7467 + - 7435 + - 7379 type: DeviceNetwork - devices: - - 11054 - - 11053 - - 11023 - - 10950 - - 15174 + - 7489 + - 7488 + - 7467 + - 7435 + - 7379 type: DeviceList - - uid: 4215 + - uid: 7341 components: - rot: 1.5707963267948966 rad pos: 9.5,6.5 parent: 2 type: Transform - ShutdownSubscribers: - - 11142 - - 11143 - - 11115 - - 11114 - - 11012 - - 11011 - - 5185 - - 3826 - - 10998 - - 10999 + - 7534 + - 7535 + - 7524 + - 7523 + - 7367 + - 7461 + - 7404 + - 7398 + - 7409 + - 7410 type: DeviceNetwork - devices: - - 11143 - - 11142 - - 11012 - - 11011 - - 5185 - - 3826 - - 10998 - - 10999 - - 11115 - - 11114 + - 7535 + - 7534 + - 7367 + - 7461 + - 7404 + - 7398 + - 7409 + - 7410 + - 7524 + - 7523 type: DeviceList - - uid: 4330 + - uid: 7342 components: - rot: 1.5707963267948966 rad pos: 11.5,23.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15578 - - 11116 - - 11117 + - 7382 + - 7525 + - 7526 type: DeviceNetwork - devices: - - 15578 - - 11116 - - 11117 + - 7382 + - 7525 + - 7526 type: DeviceList - - uid: 9559 + - uid: 7343 components: - pos: -28.5,17.5 parent: 2 type: Transform - ShutdownSubscribers: - - 11043 - - 11042 - - 793 - - 15845 - - 11037 - - 11038 + - 7481 + - 7480 + - 7356 + - 7384 + - 7475 + - 7476 type: DeviceNetwork - devices: - - 793 - - 11043 - - 11042 - - 15845 - - 11037 - - 11038 + - 7356 + - 7481 + - 7480 + - 7384 + - 7475 + - 7476 type: DeviceList - - uid: 12684 + - uid: 7344 components: - rot: -1.5707963267948966 rad pos: -44.5,21.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15093 - - 15094 - - 15095 - - 15096 + - 7551 + - 7552 + - 7553 + - 7554 type: DeviceNetwork - devices: - - 15093 - - 15094 - - 15095 - - 15096 + - 7551 + - 7552 + - 7553 + - 7554 type: DeviceList - - uid: 12875 + - uid: 7345 components: - rot: 3.141592653589793 rad pos: 9.5,-1.5 parent: 2 type: Transform - ShutdownSubscribers: - - 3081 - - 3175 - - 2425 - - 16946 - - 11002 - - 11142 - - 11143 - - 10994 - - 10992 - - 2086 + - 7396 + - 7397 + - 7395 + - 7389 + - 7460 + - 7534 + - 7535 + - 7459 + - 7458 + - 7358 type: DeviceNetwork - devices: - - 3081 - - 3175 - - 2425 - - 16946 - - 11002 - - 11142 - - 11143 - - 10994 - - 10992 - - 2086 + - 7396 + - 7397 + - 7395 + - 7389 + - 7460 + - 7534 + - 7535 + - 7459 + - 7458 + - 7358 type: DeviceList - - uid: 15269 + - uid: 7346 components: - rot: -1.5707963267948966 rad pos: 24.5,17.5 parent: 2 type: Transform - ShutdownSubscribers: - - 11115 - - 11114 - - 11121 - - 11119 - - 11132 - - 11131 + - 7524 + - 7523 + - 7372 + - 7371 + - 7531 + - 7530 type: DeviceNetwork - devices: - - 11115 - - 11114 - - 11121 - - 11119 - - 11132 - - 11131 + - 7524 + - 7523 + - 7372 + - 7371 + - 7531 + - 7530 type: DeviceList - - uid: 15317 + - uid: 7347 components: - pos: -39.5,-7.5 parent: 2 type: Transform - ShutdownSubscribers: - - 1518 - - 1404 + - 7393 + - 7392 type: DeviceNetwork - devices: - - 10963 - - 10964 - - 10965 - - 10962 - - 10961 - - 1518 - - 1404 + - 7438 + - 7439 + - 7440 + - 7437 + - 7436 + - 7393 + - 7392 type: DeviceList - - uid: 15362 + - uid: 7348 components: - rot: -1.5707963267948966 rad pos: -50.5,-7.5 parent: 2 type: Transform - ShutdownSubscribers: - - 10969 - - 10970 - - 10973 - - 10974 - - 10975 - - 10977 - - 10976 - - 10981 - - 10980 - - 10979 - - 10982 - - 10983 - - 10978 + - 7443 + - 7444 + - 7445 + - 7446 + - 7447 + - 7449 + - 7448 + - 7453 + - 7452 + - 7451 + - 7454 + - 7455 + - 7450 type: DeviceNetwork - devices: - - 10969 - - 10970 - - 10973 - - 10974 - - 10975 - - 10977 - - 10976 - - 10981 - - 10980 - - 10979 - - 10982 - - 10983 - - 10978 + - 7443 + - 7444 + - 7445 + - 7446 + - 7447 + - 7449 + - 7448 + - 7453 + - 7452 + - 7451 + - 7454 + - 7455 + - 7450 type: DeviceList - - uid: 15365 + - uid: 7349 components: - rot: 1.5707963267948966 rad pos: -17.5,-35.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15300 - - 11130 - - 11141 - - 11140 + - 434 + - 7529 + - 7533 + - 7532 type: DeviceNetwork - devices: - - 15300 - - 11130 - - 11141 - - 11140 + - 434 + - 7529 + - 7533 + - 7532 type: DeviceList - - uid: 15460 + - uid: 7350 components: - rot: 1.5707963267948966 rad pos: 22.5,-2.5 parent: 2 type: Transform - ShutdownSubscribers: - - 5171 - - 11041 - - 11002 - - 10950 - - 11021 - - 11022 - - 11024 - - 11035 - - 11036 + - 7426 + - 7479 + - 7460 + - 7435 + - 7465 + - 7466 + - 7468 + - 7473 + - 7474 type: DeviceNetwork - devices: - - 5171 - - 11041 - - 11002 - - 10950 - - 11021 - - 11022 - - 11024 - - 11035 - - 11036 + - 7426 + - 7479 + - 7460 + - 7435 + - 7465 + - 7466 + - 7468 + - 7473 + - 7474 type: DeviceList - - uid: 15561 + - uid: 7351 components: - pos: 28.5,23.5 parent: 2 type: Transform - ShutdownSubscribers: - - 11119 - - 11121 - - 15455 + - 7371 + - 7372 + - 7381 type: DeviceNetwork - devices: - - 11119 - - 11121 - - 15455 + - 7371 + - 7372 + - 7381 type: DeviceList - - uid: 15886 + - uid: 7352 components: - rot: 3.141592653589793 rad pos: -0.5,-4.5 parent: 2 type: Transform - ShutdownSubscribers: - - 1542 + - 7357 + type: DeviceNetwork + - devices: + - 7357 + - 7457 + - 7456 + - 7459 + - 7458 + type: DeviceList + - uid: 7353 + components: + - pos: -5.5,-41.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 7566 + - 7565 + - 7564 + - 7563 + - 7363 + - 7364 + - 7416 + - 441 + - 442 type: DeviceNetwork - devices: - - 1542 - - 10991 - - 10990 - - 10994 - - 10992 + - 7566 + - 7565 + - 7564 + - 7563 + - 7363 + - 7364 + - 7416 + - 441 + - 442 type: DeviceList - proto: FireAxeCabinetFilled entities: - - uid: 16653 + - uid: 7354 components: - - rot: 1.5707963267948966 rad - pos: -0.5,-36.5 + - pos: -5.5,40.5 parent: 2 type: Transform - - uid: 16654 + - uid: 7355 components: - - pos: -5.5,40.5 + - pos: -1.5,-36.5 parent: 2 type: Transform - proto: Firelock entities: - - uid: 793 + - uid: 7356 components: - pos: -37.5,12.5 parent: 2 type: Transform - ShutdownSubscribers: - - 876 - - 9559 + - 5 + - 7343 type: DeviceNetwork - - uid: 1542 + - uid: 7357 components: - pos: 2.5,-4.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15691 - - 15886 + - 42 + - 7352 type: DeviceNetwork - - uid: 2086 + - uid: 7358 components: - pos: 6.5,-1.5 parent: 2 type: Transform - ShutdownSubscribers: - - 12875 - - 15121 + - 7345 + - 28 type: DeviceNetwork - - uid: 4221 + - uid: 7359 components: - pos: -14.5,-33.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15361 + - 37 type: DeviceNetwork - - uid: 5186 + - uid: 7360 components: - rot: -1.5707963267948966 rad pos: -23.5,12.5 parent: 2 type: Transform - ShutdownSubscribers: - - 10984 + - 16 type: DeviceNetwork - - uid: 5323 + - uid: 7361 components: - pos: -35.5,42.5 parent: 2 type: Transform - - uid: 5339 + - uid: 7362 components: - pos: -36.5,42.5 parent: 2 type: Transform - - uid: 5353 + - uid: 7363 components: - pos: 3.5,-38.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15937 + - 53 + - 7353 type: DeviceNetwork - - uid: 5384 + - uid: 7364 components: - pos: 3.5,-37.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15937 + - 53 + - 7353 type: DeviceNetwork - - uid: 9303 + - uid: 7365 components: - pos: -32.5,33.5 parent: 2 type: Transform - - uid: 9946 + - uid: 7366 components: - pos: -19.5,-8.5 parent: 2 type: Transform - - uid: 11012 + - uid: 7367 components: - pos: 9.5,7.5 parent: 2 type: Transform - ShutdownSubscribers: - - 4215 + - 7341 type: DeviceNetwork - - uid: 11073 + - uid: 7368 components: - pos: -35.5,30.5 parent: 2 type: Transform - ShutdownSubscribers: - - 1541 + - 9 type: DeviceNetwork - - uid: 11075 + - uid: 7369 components: - pos: -37.5,32.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14051 - - 13809 + - 23 + - 19 type: DeviceNetwork - - uid: 11076 + - uid: 7370 components: - pos: 25.5,-17.5 parent: 2 type: Transform - - uid: 11119 + - uid: 7371 components: - pos: 24.5,22.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15269 - - 15561 - - 6892 + - 7346 + - 7351 + - 12 type: DeviceNetwork - - uid: 11121 + - uid: 7372 components: - pos: 24.5,19.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15269 - - 15561 - - 6892 + - 7346 + - 7351 + - 12 type: DeviceNetwork - - uid: 11136 + - uid: 7373 components: - pos: -7.5,40.5 parent: 2 type: Transform - - uid: 11137 + - uid: 7374 components: - pos: -12.5,40.5 parent: 2 type: Transform - - uid: 11138 + - uid: 7375 components: - pos: -18.5,-26.5 parent: 2 type: Transform - - uid: 11139 + - uid: 7376 components: - pos: -16.5,-26.5 parent: 2 type: Transform - - uid: 11144 + - uid: 7377 components: - pos: 30.5,14.5 parent: 2 type: Transform - - uid: 15169 + - uid: 7378 components: - rot: 1.5707963267948966 rad pos: -39.5,22.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15163 + - 29 type: DeviceNetwork - - uid: 15174 + - uid: 7379 components: - rot: 1.5707963267948966 rad pos: 40.5,2.5 parent: 2 type: Transform - ShutdownSubscribers: - - 4213 + - 7340 type: DeviceNetwork - - uid: 15358 + - uid: 7380 components: - rot: 1.5707963267948966 rad pos: -27.5,-23.5 parent: 2 type: Transform - - uid: 15455 + - uid: 7381 components: - pos: 26.5,17.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15561 - - 6892 + - 7351 + - 12 type: DeviceNetwork - - uid: 15578 + - uid: 7382 components: - rot: 3.141592653589793 rad pos: 13.5,27.5 parent: 2 type: Transform - ShutdownSubscribers: - - 4330 + - 7342 type: DeviceNetwork - - uid: 15703 + - uid: 7383 components: - pos: -2.5,11.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15702 + - 43 type: DeviceNetwork - - uid: 15845 + - uid: 7384 components: - pos: -28.5,13.5 parent: 2 type: Transform - ShutdownSubscribers: - - 9559 - - 876 + - 7343 + - 5 type: DeviceNetwork - - uid: 16717 + - uid: 7385 components: - pos: -16.5,-73.5 parent: 2 type: Transform - ShutdownSubscribers: - - 16716 + - 50 type: DeviceNetwork - - uid: 16718 + - uid: 7386 components: - pos: -18.5,-76.5 parent: 2 type: Transform - ShutdownSubscribers: - - 16716 + - 50 type: DeviceNetwork - - uid: 16719 + - uid: 7387 components: - pos: -13.5,-76.5 parent: 2 type: Transform - ShutdownSubscribers: - - 16716 + - 50 type: DeviceNetwork - - uid: 16720 + - uid: 7388 components: - pos: -16.5,-79.5 parent: 2 type: Transform - ShutdownSubscribers: - - 16716 + - 50 type: DeviceNetwork - - uid: 16946 + - uid: 7389 components: - pos: 9.5,-6.5 parent: 2 type: Transform - ShutdownSubscribers: - - 12875 + - 7345 type: DeviceNetwork - proto: FirelockEdge entities: - - uid: 224 + - uid: 7390 components: - rot: 1.5707963267948966 rad pos: -16.5,5.5 parent: 2 type: Transform - - uid: 1394 + - uid: 7391 components: - rot: 3.141592653589793 rad pos: -22.5,-6.5 parent: 2 type: Transform - ShutdownSubscribers: - - 191 - - 15246 + - 7337 + - 31 type: DeviceNetwork - - uid: 1404 + - uid: 7392 components: - pos: -42.5,-7.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15317 - - 15647 + - 7347 + - 41 type: DeviceNetwork - - uid: 1518 + - uid: 7393 components: - pos: -41.5,-7.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15317 - - 15647 + - 7347 + - 41 type: DeviceNetwork - - uid: 1520 + - uid: 7394 components: - rot: 3.141592653589793 rad pos: -21.5,-6.5 parent: 2 type: Transform - ShutdownSubscribers: - - 191 - - 15246 + - 7337 + - 31 type: DeviceNetwork - - uid: 2425 + - uid: 7395 components: - rot: 1.5707963267948966 rad pos: 9.5,-3.5 parent: 2 type: Transform - ShutdownSubscribers: - - 12875 + - 7345 type: DeviceNetwork - - uid: 3081 + - uid: 7396 components: - rot: 3.141592653589793 rad pos: 13.5,-7.5 parent: 2 type: Transform - ShutdownSubscribers: - - 10669 - - 12875 + - 14 + - 7345 type: DeviceNetwork - - uid: 3175 + - uid: 7397 components: - rot: 3.141592653589793 rad pos: 12.5,-7.5 parent: 2 type: Transform - ShutdownSubscribers: - - 10669 - - 12875 + - 14 + - 7345 type: DeviceNetwork - - uid: 3826 + - uid: 7398 components: - pos: 15.5,9.5 parent: 2 type: Transform - ShutdownSubscribers: - - 1716 - - 16976 - - 4215 + - 10 + - 51 + - 7341 type: DeviceNetwork - - uid: 3851 + - uid: 7399 components: - rot: 3.141592653589793 rad pos: -10.5,8.5 parent: 2 type: Transform - - uid: 3905 + - uid: 7400 components: - rot: 3.141592653589793 rad pos: -9.5,8.5 parent: 2 type: Transform - - uid: 3919 + - uid: 7401 components: - rot: 3.141592653589793 rad pos: -8.5,8.5 parent: 2 type: Transform - - uid: 4112 + - uid: 7402 components: - pos: -6.5,19.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15627 + - 40 type: DeviceNetwork - - uid: 4139 + - uid: 7403 components: - pos: -7.5,19.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15627 + - 40 type: DeviceNetwork - - uid: 5185 + - uid: 7404 components: - pos: 14.5,9.5 parent: 2 type: Transform - ShutdownSubscribers: - - 1716 - - 16976 - - 4215 + - 10 + - 51 + - 7341 type: DeviceNetwork - - uid: 10986 + - uid: 7405 components: - rot: -1.5707963267948966 rad pos: -43.5,28.5 parent: 2 type: Transform - ShutdownSubscribers: - - 1541 + - 9 type: DeviceNetwork - - uid: 10987 + - uid: 7406 components: - rot: -1.5707963267948966 rad pos: -43.5,27.5 parent: 2 type: Transform - ShutdownSubscribers: - - 1541 + - 9 type: DeviceNetwork - - uid: 10996 + - uid: 7407 components: - rot: 1.5707963267948966 rad pos: -33.5,29.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14075 - - 1541 + - 24 + - 9 type: DeviceNetwork - - uid: 10997 + - uid: 7408 components: - rot: 1.5707963267948966 rad pos: -33.5,28.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14075 - - 1541 + - 24 + - 9 type: DeviceNetwork - - uid: 10998 + - uid: 7409 components: - pos: 18.5,9.5 parent: 2 type: Transform - ShutdownSubscribers: - - 1716 - - 16976 - - 4215 + - 10 + - 51 + - 7341 type: DeviceNetwork - - uid: 10999 + - uid: 7410 components: - pos: 19.5,9.5 parent: 2 type: Transform - ShutdownSubscribers: - - 1716 - - 16976 - - 4215 + - 10 + - 51 + - 7341 type: DeviceNetwork - - uid: 11148 + - uid: 7411 components: - rot: 3.141592653589793 rad pos: -7.5,8.5 parent: 2 type: Transform - - uid: 11150 + - uid: 7412 components: - rot: 1.5707963267948966 rad pos: -16.5,4.5 parent: 2 type: Transform - - uid: 11152 + - uid: 7413 components: - pos: -8.5,19.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15627 + - 40 type: DeviceNetwork - - uid: 11154 + - uid: 7414 components: - rot: -1.5707963267948966 rad pos: -22.5,5.5 parent: 2 type: Transform - ShutdownSubscribers: - - 10984 + - 16 type: DeviceNetwork - - uid: 11155 + - uid: 7415 components: - rot: -1.5707963267948966 rad pos: -22.5,6.5 parent: 2 type: Transform - ShutdownSubscribers: - - 10984 + - 16 + type: DeviceNetwork + - uid: 7416 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-51.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 53 + - 7353 type: DeviceNetwork - proto: FirelockGlass entities: - - uid: 194 + - uid: 7417 components: - pos: 8.5,-12.5 parent: 2 type: Transform - - uid: 390 + - uid: 7418 components: - pos: -26.5,6.5 parent: 2 type: Transform - ShutdownSubscribers: - - 10984 - - 1468 + - 16 + - 7 type: DeviceNetwork - - uid: 1174 + - uid: 7419 components: - pos: -11.5,-0.5 parent: 2 type: Transform - ShutdownSubscribers: - - 13942 + - 22 type: DeviceNetwork - - uid: 1360 + - uid: 7420 components: - pos: 34.5,2.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15267 + - 32 type: DeviceNetwork - - uid: 2997 + - uid: 7421 components: - pos: 13.5,-25.5 parent: 2 type: Transform - ShutdownSubscribers: - - 387 + - 7338 type: DeviceNetwork - - uid: 4241 + - uid: 7422 components: - pos: 13.5,-26.5 parent: 2 type: Transform - ShutdownSubscribers: - - 387 + - 7338 type: DeviceNetwork - - uid: 5011 + - uid: 7423 components: - rot: 1.5707963267948966 rad pos: -21.5,-26.5 parent: 2 type: Transform - - uid: 5051 + - uid: 7424 components: - pos: 8.5,-13.5 parent: 2 type: Transform - - uid: 5101 + - uid: 7425 components: - pos: 10.5,-18.5 parent: 2 type: Transform - ShutdownSubscribers: - - 387 + - 7338 type: DeviceNetwork - - uid: 5171 + - uid: 7426 components: - pos: 18.5,-2.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15460 + - 7350 type: DeviceNetwork - - uid: 5348 + - uid: 7427 components: - pos: -21.5,33.5 parent: 2 type: Transform - - uid: 5349 + - uid: 7428 components: - pos: -21.5,35.5 parent: 2 type: Transform - - uid: 5401 + - uid: 7429 components: - pos: -12.5,-14.5 parent: 2 type: Transform - - uid: 6873 + - uid: 7430 components: - pos: -11.5,-14.5 parent: 2 type: Transform - - uid: 6874 + - uid: 7431 components: - pos: -15.5,-17.5 parent: 2 type: Transform - - uid: 6875 + - uid: 7432 components: - pos: -15.5,-18.5 parent: 2 type: Transform - - uid: 6876 + - uid: 7433 components: - pos: -9.5,-18.5 parent: 2 type: Transform - - uid: 10074 + - uid: 7434 components: - pos: 33.5,2.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15267 + - 32 type: DeviceNetwork - - uid: 10950 + - uid: 7435 components: - pos: 36.5,0.5 parent: 2 type: Transform - ShutdownSubscribers: - - 4213 - - 15460 + - 7340 + - 7350 type: DeviceNetwork - - uid: 10961 + - uid: 7436 components: - pos: -44.5,-9.5 parent: 2 type: Transform - ShutdownSubscribers: - - 11016 + - 17 type: DeviceNetwork - - uid: 10962 + - uid: 7437 components: - pos: -44.5,-8.5 parent: 2 type: Transform - ShutdownSubscribers: - - 11016 + - 17 type: DeviceNetwork - - uid: 10963 + - uid: 7438 components: - pos: -34.5,-9.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14335 + - 27 type: DeviceNetwork - - uid: 10964 + - uid: 7439 components: - pos: -34.5,-8.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14335 + - 27 type: DeviceNetwork - - uid: 10965 + - uid: 7440 components: - pos: -37.5,-7.5 parent: 2 type: Transform - - uid: 10967 + - uid: 7441 components: - pos: -41.5,-3.5 parent: 2 type: Transform - - uid: 10968 + - uid: 7442 components: - pos: -46.5,-5.5 parent: 2 type: Transform - ShutdownSubscribers: - - 11016 + - 17 type: DeviceNetwork - - uid: 10969 + - uid: 7443 components: - pos: -50.5,-8.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15362 - - 11016 + - 7348 + - 17 type: DeviceNetwork - - uid: 10970 + - uid: 7444 components: - pos: -50.5,-9.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15362 - - 11016 + - 7348 + - 17 type: DeviceNetwork - - uid: 10973 + - uid: 7445 components: - pos: -54.5,-10.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15362 - - 15789 + - 7348 + - 44 type: DeviceNetwork - - uid: 10974 + - uid: 7446 components: - pos: -55.5,-10.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15362 - - 15789 + - 7348 + - 44 type: DeviceNetwork - - uid: 10975 + - uid: 7447 components: - pos: -56.5,-10.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15362 - - 15789 + - 7348 + - 44 type: DeviceNetwork - - uid: 10976 + - uid: 7448 components: - pos: -56.5,-5.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15362 - - 13768 + - 7348 + - 18 type: DeviceNetwork - - uid: 10977 + - uid: 7449 components: - pos: -55.5,-5.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15362 - - 13768 + - 7348 + - 18 type: DeviceNetwork - - uid: 10978 + - uid: 7450 components: - pos: -57.5,-7.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15362 - - 1266 + - 7348 + - 6 type: DeviceNetwork - - uid: 10979 + - uid: 7451 components: - pos: -58.5,-13.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15362 + - 7348 type: DeviceNetwork - - uid: 10980 + - uid: 7452 components: - pos: -58.5,-15.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15362 + - 7348 type: DeviceNetwork - - uid: 10981 + - uid: 7453 components: - pos: -55.5,-15.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15362 + - 7348 type: DeviceNetwork - - uid: 10982 + - uid: 7454 components: - pos: -52.5,-15.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15362 + - 7348 type: DeviceNetwork - - uid: 10983 + - uid: 7455 components: - pos: -49.5,-15.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15362 + - 7348 type: DeviceNetwork - - uid: 10990 + - uid: 7456 components: - pos: -2.5,1.5 parent: 2 type: Transform - - uid: 10991 + - uid: 7457 components: - pos: -2.5,-0.5 parent: 2 type: Transform - - uid: 10992 + - uid: 7458 components: - pos: 3.5,-0.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15307 - - 12875 + - 35 + - 7345 type: DeviceNetwork - - uid: 10994 + - uid: 7459 components: - pos: 3.5,1.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15307 - - 12875 + - 35 + - 7345 type: DeviceNetwork - - uid: 11002 + - uid: 7460 components: - pos: 16.5,0.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15460 - - 15307 - - 12875 + - 7350 + - 35 + - 7345 type: DeviceNetwork - - uid: 11011 + - uid: 7461 components: - pos: 11.5,9.5 parent: 2 type: Transform - ShutdownSubscribers: - - 4215 + - 7341 type: DeviceNetwork - - uid: 11013 + - uid: 7462 components: - rot: 3.141592653589793 rad pos: -26.5,-8.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14335 + - 27 type: DeviceNetwork - - uid: 11014 + - uid: 7463 components: - rot: 3.141592653589793 rad pos: -26.5,-9.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14335 + - 27 type: DeviceNetwork - - uid: 11017 + - uid: 7464 components: - rot: 3.141592653589793 rad pos: -24.5,-6.5 parent: 2 type: Transform - - uid: 11021 + - uid: 7465 components: - pos: 32.5,-1.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15460 + - 7350 type: DeviceNetwork - - uid: 11022 + - uid: 7466 components: - pos: 31.5,-1.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15460 + - 7350 type: DeviceNetwork - - uid: 11023 + - uid: 7467 components: - pos: 36.5,-5.5 parent: 2 type: Transform - ShutdownSubscribers: - - 4213 + - 7340 type: DeviceNetwork - - uid: 11024 + - uid: 7468 components: - pos: 27.5,-4.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15460 + - 7350 type: DeviceNetwork - - uid: 11029 + - uid: 7469 components: - rot: 3.141592653589793 rad pos: -17.5,-6.5 parent: 2 type: Transform - ShutdownSubscribers: - - 13942 + - 22 type: DeviceNetwork - - uid: 11030 + - uid: 7470 components: - rot: 3.141592653589793 rad pos: -16.5,-6.5 parent: 2 type: Transform - ShutdownSubscribers: - - 13942 + - 22 type: DeviceNetwork - - uid: 11032 + - uid: 7471 components: - pos: -20.5,-0.5 parent: 2 type: Transform - ShutdownSubscribers: - - 10984 - - 13942 + - 16 + - 22 type: DeviceNetwork - - uid: 11033 + - uid: 7472 components: - rot: 3.141592653589793 rad pos: -26.5,5.5 parent: 2 type: Transform - ShutdownSubscribers: - - 1468 - - 10984 + - 7 + - 16 type: DeviceNetwork - - uid: 11035 + - uid: 7473 components: - pos: 25.5,-6.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15460 + - 7350 type: DeviceNetwork - - uid: 11036 + - uid: 7474 components: - pos: 24.5,-6.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15460 + - 7350 type: DeviceNetwork - - uid: 11037 + - uid: 7475 components: - rot: 3.141592653589793 rad pos: -26.5,14.5 parent: 2 type: Transform - ShutdownSubscribers: - - 9559 - - 876 - - 10984 + - 7343 + - 5 + - 16 type: DeviceNetwork - - uid: 11038 + - uid: 7476 components: - rot: 3.141592653589793 rad pos: -26.5,15.5 parent: 2 type: Transform - ShutdownSubscribers: - - 9559 - - 876 - - 10984 + - 7343 + - 5 + - 16 type: DeviceNetwork - - uid: 11039 + - uid: 7477 components: - rot: 3.141592653589793 rad pos: -24.5,18.5 parent: 2 type: Transform - ShutdownSubscribers: - - 10984 + - 16 type: DeviceNetwork - - uid: 11040 + - uid: 7478 components: - rot: 3.141592653589793 rad pos: -23.5,18.5 parent: 2 type: Transform - ShutdownSubscribers: - - 10984 + - 16 type: DeviceNetwork - - uid: 11041 + - uid: 7479 components: - pos: 22.5,-4.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15460 + - 7350 type: DeviceNetwork - - uid: 11042 + - uid: 7480 components: - rot: 3.141592653589793 rad pos: -39.5,15.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15163 - - 9559 - - 876 + - 29 + - 7343 + - 5 type: DeviceNetwork - - uid: 11043 + - uid: 7481 components: - rot: 3.141592653589793 rad pos: -39.5,14.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15163 - - 9559 - - 876 + - 29 + - 7343 + - 5 type: DeviceNetwork - - uid: 11044 + - uid: 7482 components: - pos: -26.5,2.5 parent: 2 type: Transform - ShutdownSubscribers: - - 10984 + - 16 type: DeviceNetwork - - uid: 11045 + - uid: 7483 components: - pos: -31.5,4.5 parent: 2 type: Transform - - uid: 11046 + - uid: 7484 components: - pos: -14.5,24.5 parent: 2 type: Transform - - uid: 11048 + - uid: 7485 components: - pos: 23.5,-12.5 parent: 2 type: Transform - - uid: 11050 + - uid: 7486 components: - pos: 23.5,-15.5 parent: 2 type: Transform - - uid: 11052 + - uid: 7487 components: - pos: 29.5,-17.5 parent: 2 type: Transform - ShutdownSubscribers: - - 3866 - - 15297 + - 7339 + - 34 type: DeviceNetwork - - uid: 11053 + - uid: 7488 components: - pos: 38.5,-14.5 parent: 2 type: Transform - ShutdownSubscribers: - - 4213 - - 3866 - - 15297 + - 7340 + - 7339 + - 34 type: DeviceNetwork - - uid: 11054 + - uid: 7489 components: - pos: 39.5,-14.5 parent: 2 type: Transform - ShutdownSubscribers: - - 4213 - - 3866 - - 15297 + - 7340 + - 7339 + - 34 type: DeviceNetwork - - uid: 11059 + - uid: 7490 components: - rot: 3.141592653589793 rad pos: -40.5,8.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15163 + - 29 type: DeviceNetwork - - uid: 11060 + - uid: 7491 components: - rot: 3.141592653589793 rad pos: -42.5,8.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15163 + - 29 type: DeviceNetwork - - uid: 11063 + - uid: 7492 components: - rot: 3.141592653589793 rad pos: -42.5,24.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15163 - - 1541 + - 29 + - 9 type: DeviceNetwork - - uid: 11064 + - uid: 7493 components: - rot: 3.141592653589793 rad pos: -40.5,24.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15163 - - 1541 + - 29 + - 9 type: DeviceNetwork - - uid: 11067 + - uid: 7494 components: - rot: 3.141592653589793 rad pos: -46.5,31.5 parent: 2 type: Transform - ShutdownSubscribers: - - 13809 + - 19 type: DeviceNetwork - - uid: 11068 + - uid: 7495 components: - rot: 3.141592653589793 rad pos: -41.5,30.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14051 - - 13809 - - 1541 + - 23 + - 19 + - 9 type: DeviceNetwork - - uid: 11069 + - uid: 7496 components: - rot: 3.141592653589793 rad pos: -43.5,33.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14051 - - 13809 + - 23 + - 19 type: DeviceNetwork - - uid: 11072 + - uid: 7497 components: - pos: -51.5,36.5 parent: 2 type: Transform - ShutdownSubscribers: - - 13809 + - 19 type: DeviceNetwork - - uid: 11074 + - uid: 7498 components: - pos: -22.5,22.5 parent: 2 type: Transform - - uid: 11079 + - uid: 7499 components: - pos: -51.5,33.5 parent: 2 type: Transform - ShutdownSubscribers: - - 13809 + - 19 type: DeviceNetwork - - uid: 11081 + - uid: 7500 components: - pos: -25.5,26.5 parent: 2 type: Transform - - uid: 11082 + - uid: 7501 components: - pos: -25.5,25.5 parent: 2 type: Transform - - uid: 11084 + - uid: 7502 components: - pos: -33.5,26.5 parent: 2 type: Transform - ShutdownSubscribers: - - 1541 + - 9 type: DeviceNetwork - - uid: 11089 + - uid: 7503 components: - pos: -11.5,26.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15627 + - 40 type: DeviceNetwork - - uid: 11090 + - uid: 7504 components: - pos: -11.5,25.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15627 + - 40 type: DeviceNetwork - - uid: 11091 + - uid: 7505 components: - pos: -5.5,28.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15627 + - 40 type: DeviceNetwork - - uid: 11092 + - uid: 7506 components: - pos: -3.5,28.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15627 + - 40 type: DeviceNetwork - - uid: 11093 + - uid: 7507 components: - pos: -3.5,32.5 parent: 2 type: Transform - - uid: 11094 + - uid: 7508 components: - pos: -5.5,32.5 parent: 2 type: Transform - - uid: 11095 + - uid: 7509 components: - pos: -2.5,30.5 parent: 2 type: Transform - ShutdownSubscribers: - - 9317 + - 13 type: DeviceNetwork - - uid: 11096 + - uid: 7510 components: - pos: -2.5,34.5 parent: 2 type: Transform - ShutdownSubscribers: - - 9317 + - 13 type: DeviceNetwork - - uid: 11097 + - uid: 7511 components: - pos: -6.5,35.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15353 + - 36 type: DeviceNetwork - - uid: 11098 + - uid: 7512 components: - pos: -13.5,35.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15353 + - 36 type: DeviceNetwork - - uid: 11100 + - uid: 7513 components: - pos: 9.5,-9.5 parent: 2 type: Transform - - uid: 11101 + - uid: 7514 components: - pos: -14.5,-39.5 parent: 2 type: Transform - - uid: 11103 + - uid: 7515 components: - pos: 0.5,41.5 parent: 2 type: Transform - - uid: 11104 + - uid: 7516 components: - pos: -22.5,37.5 parent: 2 type: Transform - - uid: 11105 + - uid: 7517 components: - pos: -24.5,37.5 parent: 2 type: Transform - - uid: 11108 + - uid: 7518 components: - pos: -4.5,15.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15627 + - 40 type: DeviceNetwork - - uid: 11109 + - uid: 7519 components: - pos: -3.5,15.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15627 + - 40 type: DeviceNetwork - - uid: 11110 + - uid: 7520 components: - pos: -11.5,0.5 parent: 2 type: Transform - ShutdownSubscribers: - - 13942 + - 22 type: DeviceNetwork - - uid: 11111 + - uid: 7521 components: - pos: -8.5,-1.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15844 + - 49 type: DeviceNetwork - - uid: 11112 + - uid: 7522 components: - pos: -8.5,-11.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15844 + - 49 type: DeviceNetwork - - uid: 11114 + - uid: 7523 components: - pos: 24.5,6.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15269 - - 4215 + - 7346 + - 7341 type: DeviceNetwork - - uid: 11115 + - uid: 7524 components: - pos: 22.5,9.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15269 - - 6892 - - 4215 + - 7346 + - 12 + - 7341 type: DeviceNetwork - - uid: 11116 + - uid: 7525 components: - pos: 13.5,17.5 parent: 2 type: Transform - ShutdownSubscribers: - - 4330 - - 15276 + - 7342 + - 33 type: DeviceNetwork - - uid: 11117 + - uid: 7526 components: - pos: 12.5,17.5 parent: 2 type: Transform - ShutdownSubscribers: - - 4330 - - 15276 + - 7342 + - 33 type: DeviceNetwork - - uid: 11125 + - uid: 7527 components: - pos: -5.5,-23.5 parent: 2 type: Transform - - uid: 11128 + - uid: 7528 components: - pos: -9.5,-28.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15838 + - 47 type: DeviceNetwork - - uid: 11130 + - uid: 7529 components: - pos: -9.5,-33.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15838 - - 15365 + - 47 + - 7349 type: DeviceNetwork - - uid: 11131 + - uid: 7530 components: - pos: 20.5,15.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15269 - - 6892 + - 7346 + - 12 type: DeviceNetwork - - uid: 11132 + - uid: 7531 components: - pos: 20.5,16.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15269 - - 6892 + - 7346 + - 12 type: DeviceNetwork - - uid: 11140 + - uid: 7532 components: - pos: -18.5,-29.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15365 + - 7349 type: DeviceNetwork - - uid: 11141 + - uid: 7533 components: - pos: -16.5,-29.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15365 + - 7349 type: DeviceNetwork - - uid: 11142 + - uid: 7534 components: - pos: 13.5,3.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15307 - - 4215 - - 12875 + - 35 + - 7341 + - 7345 type: DeviceNetwork - - uid: 11143 + - uid: 7535 components: - pos: 12.5,3.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15307 - - 4215 - - 12875 - type: DeviceNetwork - - uid: 11225 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-36.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 15838 - - 15937 - type: DeviceNetwork - - uid: 11226 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-36.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 15838 - - 15937 + - 35 + - 7341 + - 7345 type: DeviceNetwork - - uid: 11229 + - uid: 7536 components: - pos: -16.5,-14.5 parent: 2 type: Transform - - uid: 11230 + - uid: 7537 components: - pos: -17.5,-14.5 parent: 2 type: Transform - - uid: 11231 + - uid: 7538 components: - pos: -5.5,-18.5 parent: 2 type: Transform - - uid: 11232 + - uid: 7539 components: - pos: -3.5,-20.5 parent: 2 type: Transform - - uid: 11393 + - uid: 7540 components: - pos: -7.5,-25.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15838 + - 47 type: DeviceNetwork - - uid: 11800 + - uid: 7541 components: - pos: 1.5,-15.5 parent: 2 type: Transform - - uid: 11806 + - uid: 7542 components: - pos: 9.5,-18.5 parent: 2 type: Transform - ShutdownSubscribers: - - 387 + - 7338 type: DeviceNetwork - - uid: 11809 + - uid: 7543 components: - pos: -31.5,22.5 parent: 2 type: Transform - - uid: 11810 + - uid: 7544 components: - pos: 5.5,16.5 parent: 2 type: Transform - - uid: 11811 + - uid: 7545 components: - pos: 6.5,16.5 parent: 2 type: Transform - - uid: 11819 + - uid: 7546 components: - pos: 31.5,26.5 parent: 2 type: Transform - - uid: 11820 + - uid: 7547 components: - pos: 32.5,26.5 parent: 2 type: Transform - - uid: 11821 + - uid: 7548 components: - pos: 39.5,14.5 parent: 2 type: Transform - - uid: 11822 + - uid: 7549 components: - pos: 40.5,14.5 parent: 2 type: Transform - - uid: 11823 + - uid: 7550 components: - pos: 41.5,14.5 parent: 2 type: Transform - - uid: 15093 + - uid: 7551 components: - rot: -1.5707963267948966 rad pos: -43.5,17.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15163 - - 12684 - - 14284 + - 29 + - 7344 + - 25 type: DeviceNetwork - - uid: 15094 + - uid: 7552 components: - rot: -1.5707963267948966 rad pos: -43.5,15.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15163 - - 12684 - - 14284 + - 29 + - 7344 + - 25 type: DeviceNetwork - - uid: 15095 + - uid: 7553 components: - rot: -1.5707963267948966 rad pos: -46.5,8.5 parent: 2 type: Transform - ShutdownSubscribers: - - 12684 - - 14284 + - 7344 + - 25 type: DeviceNetwork - - uid: 15096 + - uid: 7554 components: - rot: -1.5707963267948966 rad pos: -48.5,8.5 parent: 2 type: Transform - ShutdownSubscribers: - - 12684 - - 14284 + - 7344 + - 25 type: DeviceNetwork - - uid: 15562 + - uid: 7555 components: - rot: -1.5707963267948966 rad pos: 9.5,11.5 parent: 2 type: Transform - - uid: 15617 + - uid: 7556 components: - pos: -5.5,10.5 parent: 2 type: Transform - - uid: 15807 + - uid: 7557 components: - rot: -1.5707963267948966 rad pos: -10.5,19.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15627 + - 40 type: DeviceNetwork - - uid: 16768 + - uid: 7558 components: - pos: 17.5,29.5 parent: 2 type: Transform - - uid: 16769 + - uid: 7559 components: - pos: 17.5,28.5 parent: 2 type: Transform - - uid: 17140 + - uid: 7560 components: - pos: 11.5,-35.5 parent: 2 type: Transform - ShutdownSubscribers: - - 387 + - 7338 type: DeviceNetwork - - uid: 17141 + - uid: 7561 components: - pos: 10.5,-35.5 parent: 2 type: Transform - ShutdownSubscribers: - - 387 + - 7338 type: DeviceNetwork - - uid: 17188 + - uid: 7562 components: - pos: -20.5,0.5 parent: 2 type: Transform - ShutdownSubscribers: - - 10984 - - 13942 + - 16 + - 22 + type: DeviceNetwork + - uid: 7563 + components: + - pos: -7.5,-36.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 53 + - 7353 + type: DeviceNetwork + - uid: 7564 + components: + - pos: -6.5,-36.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 53 + - 7353 + type: DeviceNetwork + - uid: 7565 + components: + - pos: -4.5,-38.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 53 + - 7353 + type: DeviceNetwork + - uid: 7566 + components: + - pos: -4.5,-39.5 + parent: 2 + type: Transform + - ShutdownSubscribers: + - 53 + - 7353 type: DeviceNetwork - proto: Fireplace entities: - - uid: 1219 + - uid: 7567 components: - pos: -29.5,16.5 parent: 2 type: Transform - - uid: 4538 + - uid: 7568 components: - pos: 10.5,27.5 parent: 2 type: Transform - - uid: 6677 + - uid: 7569 components: - pos: -0.5,40.5 parent: 2 type: Transform - - uid: 7435 + - uid: 7570 components: - pos: -33.5,38.5 parent: 2 type: Transform - proto: FlashlightLantern entities: - - uid: 17019 + - uid: 7571 components: - pos: -0.81021476,10.196323 parent: 2 type: Transform - proto: Floodlight entities: - - uid: 1457 + - uid: 7572 components: - pos: -30.2877,-10.496739 parent: 2 type: Transform - - uid: 1458 + - uid: 7573 components: - pos: -30.704367,-10.475892 parent: 2 type: Transform - - uid: 3572 + - uid: 7574 components: - pos: 22.724634,-25.5 parent: 2 type: Transform - - uid: 11133 + - uid: 7575 components: - pos: -1.6349056,10.465635 parent: 2 type: Transform - - uid: 16171 + - uid: 7576 components: - pos: -8.722752,-20.562252 parent: 2 type: Transform - - uid: 16172 + - uid: 7577 components: - pos: -8.264419,-20.572676 parent: 2 type: Transform - - uid: 16841 + - uid: 7578 components: - pos: 4.249159,-5.478261 parent: 2 type: Transform - - uid: 16842 + - uid: 7579 components: - pos: 4.7387424,-5.488684 parent: 2 type: Transform - - uid: 16857 + - uid: 7580 components: - pos: 31.762112,28.453157 parent: 2 type: Transform - - uid: 16858 + - uid: 7581 components: - pos: -28.682898,18.498981 parent: 2 type: Transform - proto: FloorDrain entities: - - uid: 7 + - uid: 7582 components: - pos: -4.5,-3.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 683 + - uid: 7583 components: - pos: -14.5,12.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 859 + - uid: 7584 components: - pos: 0.5,10.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 3879 + - uid: 7585 components: - pos: 32.5,-9.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 4228 + - uid: 7586 components: - pos: 21.5,-14.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 4324 + - uid: 7587 components: - pos: 17.5,12.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 4579 + - uid: 7588 components: - pos: 35.5,-16.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 4591 + - uid: 7589 components: - pos: 17.5,26.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 5569 + - uid: 7590 components: - rot: -1.5707963267948966 rad pos: 1.5,42.5 @@ -48251,28 +48832,28 @@ entities: type: Transform - fixtures: {} type: Fixtures - - uid: 6082 + - uid: 7591 components: - pos: 28.5,20.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 11238 + - uid: 7592 components: - pos: 35.5,-14.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 16388 + - uid: 7593 components: - pos: -55.5,34.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 17139 + - uid: 7594 components: - pos: 9.5,-43.5 parent: 2 @@ -48281,107 +48862,107 @@ entities: type: Fixtures - proto: FloorWaterEntity entities: - - uid: 5467 + - uid: 7595 components: - pos: -10.5,38.5 parent: 2 type: Transform - - uid: 5609 + - uid: 7596 components: - pos: -9.5,38.5 parent: 2 type: Transform - - uid: 13119 + - uid: 7597 components: - pos: -10.5,37.5 parent: 2 type: Transform - - uid: 15800 + - uid: 7598 components: - pos: -9.5,37.5 parent: 2 type: Transform - proto: FoamBlade entities: - - uid: 13449 + - uid: 7599 components: - pos: -30.443775,-23.511929 parent: 2 type: Transform - proto: FoodApple entities: - - uid: 378 + - uid: 7600 components: - pos: -22.372084,6.141997 parent: 2 type: Transform - proto: FoodBakedWaffleSoy entities: - - uid: 3871 + - uid: 7601 components: - pos: 20.464806,-5.5433955 parent: 2 type: Transform - proto: FoodBoritoPie entities: - - uid: 16033 + - uid: 7602 components: - pos: -60.37967,-1.3542025 parent: 2 type: Transform - proto: FoodBoxDonut entities: - - uid: 6698 + - uid: 7603 components: - pos: -10.054111,32.930138 parent: 2 type: Transform - - uid: 15680 + - uid: 7604 components: - pos: -20.417337,-14.549028 parent: 2 type: Transform - proto: FoodBoxNugget entities: - - uid: 16799 + - uid: 7605 components: - pos: -8.693767,4.45767 parent: 2 type: Transform - proto: FoodBoxPizzaFilled entities: - - uid: 5372 + - uid: 7606 components: - pos: -3.538867,-7.2398877 parent: 2 type: Transform - proto: FoodBurgerClown entities: - - uid: 3965 + - uid: 7607 components: - pos: -35.033707,11.511257 parent: 2 type: Transform - proto: FoodCarrot entities: - - uid: 16793 + - uid: 7608 components: - pos: -15.333906,14.554829 parent: 2 type: Transform - - uid: 16794 + - uid: 7609 components: - pos: -15.490156,14.606949 parent: 2 type: Transform - - uid: 16795 + - uid: 7610 components: - pos: -15.677656,14.669493 parent: 2 type: Transform - proto: FoodCartCold entities: - - uid: 1810 + - uid: 7611 components: - rot: -1.5707963267948966 rad pos: -13.5,9.5 @@ -48389,7 +48970,7 @@ entities: type: Transform - proto: FoodCartHot entities: - - uid: 16310 + - uid: 7612 components: - rot: -1.5707963267948966 rad pos: -6.5,16.5 @@ -48397,154 +48978,154 @@ entities: type: Transform - proto: FoodCondimentBottleBBQ entities: - - uid: 6134 + - uid: 7613 components: - pos: -8.74585,4.93717 parent: 2 type: Transform - proto: FoodCondimentBottleHotsauce entities: - - uid: 1257 + - uid: 7614 components: - pos: -11.386693,4.9844956 parent: 2 type: Transform - proto: FoodCondimentPacketHotsauce entities: - - uid: 15436 + - uid: 7615 components: - pos: -13.750666,-9.525864 parent: 2 type: Transform - proto: FoodCondimentPacketKetchup entities: - - uid: 1141 + - uid: 7616 components: - pos: -8.091682,19.548225 parent: 2 type: Transform - proto: FoodCorn entities: - - uid: 15623 + - uid: 7617 components: - pos: -15.57349,15.722307 parent: 2 type: Transform - - uid: 16796 + - uid: 7618 components: - pos: -15.375573,15.607644 parent: 2 type: Transform - - uid: 16797 + - uid: 7619 components: - pos: -15.656822,15.503405 parent: 2 type: Transform - - uid: 16798 + - uid: 7620 components: - pos: -15.302656,15.367894 parent: 2 type: Transform - proto: FoodDonutCaramel entities: - - uid: 16613 + - uid: 7621 components: - pos: -20.372719,-2.4756277 parent: 2 type: Transform - proto: FoodDonutJellySlugcat entities: - - uid: 3996 + - uid: 7622 components: - pos: 2.5049953,35.55643 parent: 2 type: Transform - - uid: 4762 + - uid: 7623 components: - pos: 11.517811,6.4848995 parent: 2 type: Transform - - uid: 16649 + - uid: 7624 components: - pos: 8.443369,26.925972 parent: 2 type: Transform - proto: FoodDonutSpaceman entities: - - uid: 6894 + - uid: 7625 components: - pos: -10.241611,34.587536 parent: 2 type: Transform - proto: FoodLollipop entities: - - uid: 17067 + - uid: 7626 components: - pos: 12.074322,6.534174 parent: 2 type: Transform - proto: FoodMealCornedbeef entities: - - uid: 16039 + - uid: 7627 components: - pos: -51.488167,-0.36223078 parent: 2 type: Transform - proto: FoodMealFriesCheesy entities: - - uid: 712 + - uid: 7628 components: - pos: -8.591682,19.777552 parent: 2 type: Transform - proto: FoodMealNachos entities: - - uid: 1258 + - uid: 7629 components: - pos: -11.58461,4.5779634 parent: 2 type: Transform - proto: FoodMealRibs entities: - - uid: 15729 + - uid: 7630 components: - pos: -61.46964,-8.387285 parent: 2 type: Transform - proto: FoodMealSoftTaco entities: - - uid: 1247 + - uid: 7631 components: - pos: -11.366393,4.2297497 parent: 2 type: Transform - proto: FoodMeat entities: - - uid: 994 + - uid: 7632 components: - pos: -13.626667,11.3615885 parent: 2 type: Transform - - uid: 16886 + - uid: 7633 components: - pos: -13.387084,11.538795 parent: 2 type: Transform - proto: FoodMeatBacon entities: - - uid: 1251 + - uid: 7634 components: - pos: -13.65891,13.412291 parent: 2 type: Transform - - uid: 1252 + - uid: 7635 components: - pos: -13.523493,13.6520405 parent: 2 type: Transform - proto: FoodMeatBearCooked entities: - - uid: 16036 + - uid: 7636 components: - desc: What's brown and sticky and OH GOD WHAT THE- name: poop @@ -48571,209 +49152,209 @@ entities: - SliceableFood - proto: FoodMeatChicken entities: - - uid: 39 + - uid: 7637 components: - pos: -13.62076,14.650166 parent: 2 type: Transform - - uid: 1250 + - uid: 7638 components: - pos: -13.454093,14.462536 parent: 2 type: Transform - proto: FoodMeatChickenFried entities: - - uid: 10206 + - uid: 7639 components: - pos: -63.54857,-9.081 parent: 2 type: Transform - - uid: 15738 + - uid: 7640 components: - pos: -62.954815,-9.471625 parent: 2 type: Transform - - uid: 15740 + - uid: 7641 components: - pos: -62.50169,-8.971625 parent: 2 type: Transform - - uid: 16800 + - uid: 7642 components: - pos: -8.297933,4.686996 parent: 2 type: Transform - proto: FoodMeatCooked entities: - - uid: 15434 + - uid: 7643 components: - pos: -13.479757,-9.217804 parent: 2 type: Transform - proto: FoodMeatGoliathCooked entities: - - uid: 15447 + - uid: 7644 components: - pos: -33.579838,18.766205 parent: 2 type: Transform - proto: FoodMothChiliCabbageWrap entities: - - uid: 5177 + - uid: 7645 components: - pos: 29.592472,-7.415272 parent: 2 type: Transform - proto: FoodMothGreenLasagne entities: - - uid: 15649 + - uid: 7646 components: - pos: -19.499077,21.71364 parent: 2 type: Transform - proto: FoodOnion entities: - - uid: 16786 + - uid: 7647 components: - pos: -15.719322,11.656984 parent: 2 type: Transform - - uid: 16787 + - uid: 7648 components: - pos: -15.29224,11.688255 parent: 2 type: Transform - proto: FoodOrange entities: - - uid: 470 + - uid: 7649 components: - pos: -22.6325,5.6103783 parent: 2 type: Transform - proto: FoodPieBananaCream entities: - - uid: 4274 + - uid: 7650 components: - pos: -34.60266,11.521688 parent: 2 type: Transform - - uid: 4279 + - uid: 7651 components: - pos: -34.25891,11.709319 parent: 2 type: Transform - proto: FoodPlateSmall entities: - - uid: 15315 + - uid: 7652 components: - pos: -13.479757,-9.170929 parent: 2 type: Transform - - uid: 15432 + - uid: 7653 components: - pos: -33.548588,18.828705 parent: 2 type: Transform - - uid: 15701 + - uid: 7654 components: - pos: 29.595211,-7.3157077 parent: 2 type: Transform - proto: FoodPlateSmallTrash entities: - - uid: 15556 + - uid: 7655 components: - pos: -30.593216,20.519981 parent: 2 type: Transform - proto: FoodPlateTin entities: - - uid: 15791 + - uid: 7656 components: - pos: -49.729855,-0.5163126 parent: 2 type: Transform - proto: FoodPotato entities: - - uid: 16783 + - uid: 7657 components: - pos: -15.281823,11.354691 parent: 2 type: Transform - - uid: 16784 + - uid: 7658 components: - pos: -15.469323,11.448505 parent: 2 type: Transform - - uid: 16785 + - uid: 7659 components: - pos: -15.719322,11.30257 parent: 2 type: Transform - proto: FoodPSB entities: - - uid: 4028 + - uid: 7660 components: - pos: -47.577477,43.695927 parent: 2 type: Transform - - uid: 16093 + - uid: 7661 components: - pos: -47.389977,43.43533 parent: 2 type: Transform - proto: FoodSaladWatermelonFruitBowl entities: - - uid: 222 + - uid: 7662 components: - pos: -16.36061,5.4444323 parent: 2 type: Transform - proto: FoodSnackChips entities: - - uid: 6412 + - uid: 7663 components: - pos: -40.52819,51.500805 parent: 2 type: Transform - proto: FoodSnackPopcorn entities: - - uid: 1928 + - uid: 7664 components: - pos: 37.339508,3.5884066 parent: 2 type: Transform - proto: FoodSoupBungo entities: - - uid: 3953 + - uid: 7665 components: - pos: 34.49436,-2.317297 parent: 2 type: Transform - proto: FoodSoupStew entities: - - uid: 3979 + - uid: 7666 components: - pos: -35.444843,-5.5133715 parent: 2 type: Transform - proto: FoodTartMime entities: - - uid: 3135 + - uid: 7667 components: - pos: -35.587036,11.55296 parent: 2 type: Transform - proto: FoodTinBeans entities: - - uid: 6068 + - uid: 7668 components: - pos: 40.696686,13.195562 parent: 2 type: Transform - proto: FoodTinBeansTrash entities: - - uid: 14131 + - uid: 7669 components: - rot: -0.024610182270407677 rad pos: -30.367012,20.042763 @@ -48781,87 +49362,82 @@ entities: type: Transform - proto: FoodTinPeachesMaint entities: - - uid: 5393 + - uid: 7670 components: - pos: 6.489133,-21.393927 parent: 2 type: Transform - - uid: 11787 + - uid: 7671 components: - pos: 23.429745,29.51601 parent: 2 type: Transform - - uid: 11790 + - uid: 7672 components: - pos: 5.418648,4.430817 parent: 2 type: Transform - - uid: 11797 + - uid: 7673 components: - pos: -36.142467,0.62692785 parent: 2 type: Transform - - uid: 11798 + - uid: 7674 components: - pos: -29.5934,-2.1855721 parent: 2 type: Transform - proto: FoodTomato entities: - - uid: 16788 + - uid: 7675 components: - pos: -15.219323,12.480472 parent: 2 type: Transform - - uid: 16789 + - uid: 7676 components: - pos: -15.344323,12.657679 parent: 2 type: Transform - - uid: 16790 + - uid: 7677 components: - pos: -15.688072,12.74107 parent: 2 type: Transform - - uid: 16791 + - uid: 7678 components: - pos: -15.708906,12.480472 parent: 2 type: Transform - - uid: 16792 + - uid: 7679 components: - pos: -15.500572,12.522167 parent: 2 type: Transform - proto: Football entities: - - uid: 16775 + - uid: 7680 components: - pos: 1.7270865,2.275586 parent: 2 type: Transform - proto: ForkPlastic entities: - - uid: 3218 + - uid: 7681 components: - pos: -58.25037,-3.1736562 parent: 2 type: Transform - proto: GasAnalyzer entities: - - uid: 2674 - components: - - pos: -8.691249,-43.411953 - parent: 2 - type: Transform - - uid: 17031 + - uid: 7682 components: - pos: 19.619722,21.18556 parent: 2 type: Transform - proto: GasFilter entities: - - uid: 4476 + - uid: 7683 components: - name: waste gas filter type: MetaData @@ -48869,9 +49445,9 @@ entities: pos: 17.5,19.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 4477 + - uid: 7684 components: - name: waste gas filter type: MetaData @@ -48879,404 +49455,469 @@ entities: pos: 16.5,19.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 6340 + - uid: 7685 components: - pos: -56.5,36.5 parent: 2 type: Transform - - uid: 6347 + - uid: 7686 components: - pos: -56.5,32.5 parent: 2 type: Transform - proto: GasFilterFlipped entities: - - uid: 1495 + - uid: 7687 components: - - rot: -1.5707963267948966 rad - pos: -1.5,-40.5 + - rot: 3.141592653589793 rad + pos: -0.5,-44.5 parent: 2 type: Transform - - uid: 1788 + - color: '#800080FF' + type: AtmosPipeColor + - uid: 7688 components: - - rot: -1.5707963267948966 rad - pos: -3.5,-40.5 + - rot: 3.141592653589793 rad + pos: -0.5,-42.5 parent: 2 type: Transform - - color: '#F64400FF' + - color: '#800080FF' type: AtmosPipeColor - - uid: 2210 + - uid: 7689 components: - - pos: 0.5,-42.5 + - rot: 3.141592653589793 rad + pos: -0.5,-48.5 parent: 2 type: Transform - - uid: 2354 + - color: '#800080FF' + type: AtmosPipeColor + - uid: 7690 components: - rot: 3.141592653589793 rad - pos: 2.5,-44.5 + pos: -0.5,-46.5 parent: 2 type: Transform - - uid: 2356 + - color: '#800080FF' + type: AtmosPipeColor + - uid: 7691 components: - - rot: 3.141592653589793 rad - pos: 2.5,-42.5 + - rot: -1.5707963267948966 rad + pos: -5.5,-43.5 parent: 2 type: Transform + - color: '#66FF00FF' + type: AtmosPipeColor - proto: GasMinerCarbonDioxide entities: - - uid: 13643 + - uid: 7692 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-47.5 + parent: 2 + type: Transform +- proto: GasMinerNitrogenStation + entities: + - uid: 7693 components: - - pos: -3.5,-43.5 + - rot: 3.141592653589793 rad + pos: 6.5,-43.5 parent: 2 type: Transform -- proto: GasMinerNitrogenStation +- proto: GasMinerOxygen entities: - - uid: 2886 + - uid: 7694 components: - - pos: -3.5,-35.5 + - rot: -1.5707963267948966 rad + pos: 6.5,-45.5 parent: 2 type: Transform - proto: GasMinerPlasma entities: - - uid: 2885 + - uid: 7695 components: - - pos: 7.5,-42.5 + - rot: 1.5707963267948966 rad + pos: 6.5,-49.5 parent: 2 type: Transform - proto: GasMixer entities: - - uid: 2333 + - uid: 7696 components: - - rot: -1.5707963267948966 rad - pos: -2.5,-39.5 + - rot: 3.141592653589793 rad + pos: -2.5,-43.5 parent: 2 type: Transform - - inletTwoConcentration: 0.78 - inletOneConcentration: 0.22 - targetPressure: 1000 - type: GasMixer - color: '#0000FFFF' type: AtmosPipeColor - - uid: 6335 + - uid: 7697 components: - rot: 1.5707963267948966 rad pos: -57.5,34.5 parent: 2 type: Transform -- proto: GasOutletInjector +- proto: GasMixerFlipped entities: - - uid: 2202 - components: - - pos: -3.5,-36.5 - parent: 2 - type: Transform - - uid: 2282 - components: - - pos: -1.5,-36.5 - parent: 2 - type: Transform - - uid: 2727 + - uid: 7698 components: - - rot: -1.5707963267948966 rad - pos: 6.5,-44.5 + - rot: 3.141592653589793 rad + pos: -2.5,-47.5 parent: 2 type: Transform - - uid: 2751 + - color: '#66FF00FF' + type: AtmosPipeColor + - uid: 7699 components: - - rot: -1.5707963267948966 rad - pos: 6.5,-42.5 + - rot: 3.141592653589793 rad + pos: -2.5,-49.5 parent: 2 type: Transform - - uid: 6358 + - color: '#66FF00FF' + type: AtmosPipeColor +- proto: GasOutletInjector + entities: + - uid: 7700 components: - pos: -61.5,37.5 parent: 2 type: Transform - - uid: 6364 + - uid: 7701 components: - rot: 3.141592653589793 rad pos: -61.5,31.5 parent: 2 type: Transform - - uid: 6366 + - uid: 7702 components: - pos: -54.5,39.5 parent: 2 type: Transform + - uid: 7703 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-48.5 + parent: 2 + type: Transform + - color: '#66FF00FF' + type: AtmosPipeColor - proto: GasPassiveGate entities: - - uid: 2178 + - uid: 7704 components: - rot: -1.5707963267948966 rad pos: -48.5,-7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 6334 + - uid: 7705 components: - rot: 1.5707963267948966 rad pos: -52.5,33.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12881 + - uid: 7706 components: - rot: -1.5707963267948966 rad pos: -12.5,10.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - proto: GasPassiveVent entities: - - uid: 2214 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-35.5 - parent: 2 - type: Transform - - uid: 2230 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-44.5 - parent: 2 - type: Transform - - uid: 2251 + - uid: 7707 components: - rot: -1.5707963267948966 rad - pos: 8.5,-46.5 - parent: 2 - type: Transform - - uid: 2297 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-35.5 + pos: 5.5,-41.5 parent: 2 type: Transform - - uid: 2756 + - color: '#800080FF' + type: AtmosPipeColor + - uid: 7708 components: - - pos: 7.5,-44.5 + - rot: 3.141592653589793 rad + pos: 6.5,-41.5 parent: 2 type: Transform - - uid: 2757 + - uid: 7709 components: - rot: 3.141592653589793 rad - pos: 7.5,-42.5 + pos: 6.5,-49.5 parent: 2 type: Transform - - uid: 2909 + - uid: 7710 components: - - rot: 1.5707963267948966 rad - pos: -1.5,-49.5 + - rot: 3.141592653589793 rad + pos: 6.5,-51.5 parent: 2 type: Transform - - uid: 2910 + - uid: 7711 components: - rot: 3.141592653589793 rad - pos: -1.5,-48.5 + pos: 6.5,-47.5 parent: 2 type: Transform - - uid: 6207 + - uid: 7712 components: - rot: 1.5707963267948966 rad pos: -59.5,37.5 parent: 2 type: Transform - - uid: 6336 + - uid: 7713 components: - pos: -55.5,39.5 parent: 2 type: Transform - - uid: 6341 + - uid: 7714 components: - pos: -62.5,37.5 parent: 2 type: Transform - - uid: 6345 + - uid: 7715 components: - rot: 3.141592653589793 rad pos: -62.5,31.5 parent: 2 type: Transform -- proto: GasPipeBend - entities: - - uid: 385 + - uid: 7716 components: - rot: 3.141592653589793 rad - pos: -8.5,-38.5 + pos: 6.5,-45.5 parent: 2 type: Transform - - color: '#F64400FF' - type: AtmosPipeColor - - uid: 816 + - uid: 7717 components: - rot: -1.5707963267948966 rad - pos: -43.5,-18.5 + pos: 5.5,-43.5 parent: 2 type: Transform - - color: '#0066FFFF' - type: AtmosPipeColor - - uid: 940 + - uid: 7718 + components: + - rot: 3.141592653589793 rad + pos: 6.5,-43.5 + parent: 2 + type: Transform + - uid: 7719 components: - rot: -1.5707963267948966 rad - pos: -3.5,-18.5 + pos: 5.5,-51.5 parent: 2 type: Transform - - color: '#0066FFFF' - type: AtmosPipeColor - - uid: 1341 + - uid: 7720 components: - - pos: -15.5,6.5 + - rot: -1.5707963267948966 rad + pos: 5.5,-49.5 parent: 2 type: Transform - - color: '#0066FFFF' - type: AtmosPipeColor - - uid: 1423 + - uid: 7721 components: - rot: -1.5707963267948966 rad - pos: -5.5,-38.5 + pos: 5.5,-47.5 parent: 2 type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 1594 + - uid: 7722 components: - - rot: 3.141592653589793 rad - pos: -18.5,6.5 + - rot: -1.5707963267948966 rad + pos: 5.5,-45.5 parent: 2 type: Transform - - color: '#0066FFFF' - type: AtmosPipeColor - - uid: 1718 + - uid: 7723 components: - rot: -1.5707963267948966 rad - pos: 20.5,-25.5 + pos: 3.5,-40.5 parent: 2 type: Transform - - color: '#0066FFFF' - type: AtmosPipeColor - - uid: 1795 + - uid: 7724 components: - - rot: 1.5707963267948966 rad - pos: 18.5,-20.5 + - rot: 3.141592653589793 rad + pos: -4.5,-53.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#66FF00FF' type: AtmosPipeColor - - uid: 1804 + - uid: 7725 components: - - rot: 1.5707963267948966 rad - pos: 5.5,-13.5 + - rot: 3.141592653589793 rad + pos: -0.5,-53.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#800080FF' type: AtmosPipeColor - - uid: 1852 +- proto: GasPipeBend + entities: + - uid: 7726 components: - - pos: 9.5,-14.5 + - pos: -5.5,-44.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#66FF00FF' type: AtmosPipeColor - - uid: 1864 + - uid: 7727 components: - - rot: 1.5707963267948966 rad - pos: -49.5,-6.5 + - rot: -1.5707963267948966 rad + pos: -3.5,-43.5 parent: 2 type: Transform - - color: '#34EB43FF' + - color: '#66FF00FF' type: AtmosPipeColor - - uid: 2075 + - uid: 7728 components: - - pos: 5.5,-33.5 + - rot: 3.141592653589793 rad + pos: -7.5,-39.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#800080FF' type: AtmosPipeColor - - uid: 2076 + - uid: 7729 + components: + - pos: 6.5,-40.5 + parent: 2 + type: Transform + - uid: 7730 components: - rot: 3.141592653589793 rad - pos: 4.5,-33.5 + pos: 4.5,-40.5 parent: 2 type: Transform - - color: '#0066FFFF' + - uid: 7731 + components: + - rot: 3.141592653589793 rad + pos: 0.5,-39.5 + parent: 2 + type: Transform + - color: '#00008BFF' type: AtmosPipeColor - - uid: 2325 + - uid: 7732 components: - - pos: -2.5,-35.5 + - pos: 4.5,-39.5 parent: 2 type: Transform - - uid: 2326 + - uid: 7733 components: - - pos: -0.5,-35.5 + - rot: 3.141592653589793 rad + pos: -6.5,-38.5 parent: 2 type: Transform - - uid: 2327 + - color: '#00008BFF' + type: AtmosPipeColor + - uid: 7734 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-41.5 + parent: 2 + type: Transform + - color: '#00008BFF' + type: AtmosPipeColor + - uid: 7735 components: - rot: -1.5707963267948966 rad - pos: 17.5,18.5 + pos: -43.5,-18.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 2331 + - uid: 7736 components: - rot: -1.5707963267948966 rad - pos: -0.5,-44.5 + pos: -3.5,-18.5 parent: 2 type: Transform - - uid: 2341 + - color: '#ADD8E6FF' + type: AtmosPipeColor + - uid: 7737 components: - - pos: 2.5,-40.5 + - pos: -15.5,6.5 parent: 2 type: Transform - - uid: 2361 + - color: '#ADD8E6FF' + type: AtmosPipeColor + - uid: 7738 components: - rot: 3.141592653589793 rad - pos: 2.5,-46.5 + pos: -18.5,6.5 parent: 2 type: Transform - - uid: 2542 + - color: '#ADD8E6FF' + type: AtmosPipeColor + - uid: 7739 components: - rot: -1.5707963267948966 rad - pos: 0.5,-49.5 + pos: 20.5,-25.5 parent: 2 type: Transform - - uid: 2758 + - color: '#ADD8E6FF' + type: AtmosPipeColor + - uid: 7740 components: - - pos: 7.5,-41.5 + - rot: 1.5707963267948966 rad + pos: 18.5,-20.5 parent: 2 type: Transform - - uid: 2760 + - color: '#ADD8E6FF' + type: AtmosPipeColor + - uid: 7741 components: - - rot: -1.5707963267948966 rad - pos: 7.5,-45.5 + - rot: 1.5707963267948966 rad + pos: 5.5,-13.5 parent: 2 type: Transform - - uid: 2911 + - color: '#FF5349FF' + type: AtmosPipeColor + - uid: 7742 components: - - rot: 1.5707963267948966 rad - pos: -1.5,-47.5 + - pos: 9.5,-14.5 parent: 2 type: Transform - - uid: 2929 + - color: '#ADD8E6FF' + type: AtmosPipeColor + - uid: 7743 components: - rot: 1.5707963267948966 rad - pos: 0.5,-48.5 + pos: -49.5,-6.5 parent: 2 type: Transform - - uid: 4431 + - color: '#34EB43FF' + type: AtmosPipeColor + - uid: 7744 + components: + - pos: 5.5,-33.5 + parent: 2 + type: Transform + - color: '#ADD8E6FF' + type: AtmosPipeColor + - uid: 7745 + components: + - rot: 3.141592653589793 rad + pos: 4.5,-33.5 + parent: 2 + type: Transform + - color: '#ADD8E6FF' + type: AtmosPipeColor + - uid: 7746 + components: + - rot: -1.5707963267948966 rad + pos: 17.5,18.5 + parent: 2 + type: Transform + - color: '#FF5349FF' + type: AtmosPipeColor + - uid: 7747 + components: + - pos: 6.5,-48.5 + parent: 2 + type: Transform + - uid: 7748 components: - pos: 19.5,20.5 parent: 2 type: Transform - color: '#00FFFFFF' type: AtmosPipeColor - - uid: 4472 + - uid: 7749 components: - rot: 1.5707963267948966 rad pos: 15.5,20.5 @@ -49284,7 +49925,7 @@ entities: type: Transform - color: '#00FFFFFF' type: AtmosPipeColor - - uid: 4487 + - uid: 7750 components: - rot: -1.5707963267948966 rad pos: 18.5,19.5 @@ -49292,741 +49933,728 @@ entities: type: Transform - color: '#00FFFFFF' type: AtmosPipeColor - - uid: 4534 + - uid: 7751 components: - rot: -1.5707963267948966 rad pos: 17.5,17.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 5790 + - uid: 7752 components: - rot: 3.141592653589793 rad pos: -46.5,28.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 6112 + - uid: 7753 components: - rot: -1.5707963267948966 rad pos: -57.5,33.5 parent: 2 type: Transform - - uid: 6236 + - uid: 7754 components: - rot: -1.5707963267948966 rad pos: 7.5,-5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 6294 + - uid: 7755 components: - rot: -1.5707963267948966 rad pos: -55.5,37.5 parent: 2 type: Transform - - uid: 6357 + - uid: 7756 components: - rot: 3.141592653589793 rad pos: -61.5,36.5 parent: 2 type: Transform - - uid: 6360 + - uid: 7757 components: - rot: 1.5707963267948966 rad pos: -62.5,33.5 parent: 2 type: Transform - - uid: 6372 + - uid: 7758 components: - rot: 1.5707963267948966 rad pos: -61.5,32.5 parent: 2 type: Transform - - uid: 6380 + - uid: 7759 components: - rot: 3.141592653589793 rad pos: -56.5,31.5 parent: 2 type: Transform - - uid: 6386 + - uid: 7760 components: - rot: -1.5707963267948966 rad pos: -53.5,31.5 parent: 2 type: Transform - - uid: 6403 + - uid: 7761 components: - rot: 3.141592653589793 rad pos: -62.5,34.5 parent: 2 type: Transform - - uid: 6415 + - uid: 7762 components: - pos: -53.5,34.5 parent: 2 type: Transform - - uid: 6780 + - uid: 7763 components: - rot: -1.5707963267948966 rad pos: -16.5,-23.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 7108 + - uid: 7764 components: - rot: 1.5707963267948966 rad pos: 4.5,-5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 7558 + - uid: 7765 components: - rot: 1.5707963267948966 rad pos: -44.5,41.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 7898 - components: - - rot: 3.141592653589793 rad - pos: 0.5,-44.5 - parent: 2 - type: Transform - - uid: 7899 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-44.5 - parent: 2 - type: Transform - - uid: 7905 + - uid: 7766 components: - - pos: 1.5,-41.5 + - pos: 6.5,-44.5 parent: 2 type: Transform - - uid: 7924 + - uid: 7767 components: - - rot: 1.5707963267948966 rad - pos: -0.5,-41.5 + - pos: 6.5,-46.5 parent: 2 type: Transform - - uid: 8951 + - uid: 7768 components: - pos: -39.5,40.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 8978 + - uid: 7769 components: - pos: 28.5,29.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 9341 + - uid: 7770 components: - pos: -27.5,-21.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 9947 + - uid: 7771 components: - rot: -1.5707963267948966 rad pos: -44.5,40.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 10047 + - uid: 7772 components: - rot: 1.5707963267948966 rad pos: -27.5,20.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 10689 + - uid: 7773 components: - rot: -1.5707963267948966 rad pos: 11.5,-10.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 10951 + - uid: 7774 components: - pos: -27.5,41.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11010 + - uid: 7775 components: - rot: 3.141592653589793 rad pos: -23.5,-12.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11015 + - uid: 7776 components: - rot: 3.141592653589793 rad pos: 9.5,-25.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11056 + - uid: 7777 components: - rot: -1.5707963267948966 rad pos: -19.5,25.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11307 + - uid: 7778 components: - rot: 3.141592653589793 rad pos: -10.5,-28.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11340 + - uid: 7779 components: - rot: 3.141592653589793 rad pos: 30.5,-11.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11341 + - uid: 7780 components: - pos: 34.5,-11.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11358 + - uid: 7781 components: - rot: -1.5707963267948966 rad pos: 33.5,-8.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11361 + - uid: 7782 components: - pos: 33.5,-4.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11380 + - uid: 7783 components: - rot: 3.141592653589793 rad pos: 34.5,0.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11425 + - uid: 7784 components: - pos: -6.5,-17.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11476 + - uid: 7785 components: - pos: 39.5,-7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11485 + - uid: 7786 components: - rot: 3.141592653589793 rad pos: 37.5,-7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11486 + - uid: 7787 components: - pos: 2.5,-20.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11538 + - uid: 7788 components: - rot: 1.5707963267948966 rad pos: 38.5,-1.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11543 + - uid: 7789 components: - rot: 3.141592653589793 rad pos: 10.5,-20.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11584 + - uid: 7790 components: - pos: 30.5,-19.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11589 + - uid: 7791 components: - pos: 29.5,-16.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11590 + - uid: 7792 components: - rot: 3.141592653589793 rad pos: 29.5,-15.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11607 + - uid: 7793 components: - rot: 3.141592653589793 rad pos: 31.5,-19.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11615 + - uid: 7794 components: - rot: -1.5707963267948966 rad pos: 39.5,-19.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11651 + - uid: 7795 components: - rot: 3.141592653589793 rad pos: 25.5,-8.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11659 + - uid: 7796 components: - rot: 3.141592653589793 rad pos: 24.5,-16.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11679 + - uid: 7797 components: - rot: -1.5707963267948966 rad pos: 17.5,-20.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11695 + - uid: 7798 components: - rot: 1.5707963267948966 rad pos: 34.5,12.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11708 + - uid: 7799 components: - rot: -1.5707963267948966 rad pos: 33.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11735 + - uid: 7800 components: - rot: 1.5707963267948966 rad pos: 25.5,-14.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11745 + - uid: 7801 components: - rot: 1.5707963267948966 rad pos: 17.5,-15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11786 + - uid: 7802 components: - rot: 3.141592653589793 rad pos: 18.5,-9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11813 + - uid: 7803 components: - rot: 3.141592653589793 rad pos: -45.5,15.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11838 + - uid: 7804 components: - rot: -1.5707963267948966 rad pos: 40.5,0.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11853 + - uid: 7805 components: - rot: 1.5707963267948966 rad pos: 40.5,9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11854 + - uid: 7806 components: - pos: 41.5,15.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11855 + - uid: 7807 components: - rot: 3.141592653589793 rad pos: 40.5,15.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11856 + - uid: 7808 components: - pos: 40.5,16.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11888 + - uid: 7809 components: - pos: 36.5,19.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11889 + - uid: 7810 components: - rot: 3.141592653589793 rad pos: 36.5,16.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11930 + - uid: 7811 components: - rot: -1.5707963267948966 rad pos: 32.5,22.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11933 + - uid: 7812 components: - rot: 3.141592653589793 rad pos: 35.5,15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11936 + - uid: 7813 components: - pos: 35.5,18.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11937 + - uid: 7814 components: - pos: 39.5,15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11959 + - uid: 7815 components: - pos: 31.5,27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11962 + - uid: 7816 components: - rot: 3.141592653589793 rad pos: 28.5,27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11994 + - uid: 7817 components: - rot: 1.5707963267948966 rad pos: 5.5,29.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12007 + - uid: 7818 components: - pos: 33.5,24.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12008 + - uid: 7819 components: - rot: 3.141592653589793 rad pos: 32.5,24.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12010 + - uid: 7820 components: - pos: 32.5,28.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12035 + - uid: 7821 components: - rot: 3.141592653589793 rad pos: 12.5,28.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12037 + - uid: 7822 components: - rot: 1.5707963267948966 rad pos: 4.5,30.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12063 + - uid: 7823 components: - rot: 3.141592653589793 rad pos: 5.5,15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12070 + - uid: 7824 components: - rot: 3.141592653589793 rad pos: 4.5,24.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12073 + - uid: 7825 components: - pos: 6.5,24.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12084 + - uid: 7826 components: - rot: 3.141592653589793 rad pos: 6.5,14.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12088 + - uid: 7827 components: - rot: -1.5707963267948966 rad pos: 14.5,-6.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12154 + - uid: 7828 components: - rot: 3.141592653589793 rad pos: 21.5,22.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12162 + - uid: 7829 components: - pos: 26.5,22.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12265 + - uid: 7830 components: - rot: 3.141592653589793 rad pos: 21.5,14.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12327 + - uid: 7831 components: - rot: 1.5707963267948966 rad pos: 11.5,16.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12346 + - uid: 7832 components: - rot: 1.5707963267948966 rad pos: 11.5,2.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12347 + - uid: 7833 components: - rot: -1.5707963267948966 rad pos: 12.5,2.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12348 + - uid: 7834 components: - pos: 14.5,2.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12349 + - uid: 7835 components: - rot: 3.141592653589793 rad pos: 13.5,2.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12366 + - uid: 7836 components: - rot: 1.5707963267948966 rad pos: 12.5,5.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12377 + - uid: 7837 components: - rot: -1.5707963267948966 rad pos: 15.5,4.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12410 + - uid: 7838 components: - rot: 1.5707963267948966 rad pos: 15.5,6.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12417 + - uid: 7839 components: - rot: -1.5707963267948966 rad pos: 14.5,5.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12516 + - uid: 7840 components: - rot: -1.5707963267948966 rad pos: -0.5,-3.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12518 + - uid: 7841 components: - rot: 1.5707963267948966 rad pos: -1.5,-3.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12540 + - uid: 7842 components: - rot: 1.5707963267948966 rad pos: -0.5,3.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12541 + - uid: 7843 components: - rot: -1.5707963267948966 rad pos: 0.5,3.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12573 + - uid: 7844 components: - rot: 3.141592653589793 rad pos: 1.5,-3.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12611 + - uid: 7845 components: - rot: -1.5707963267948966 rad pos: 12.5,11.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12612 + - uid: 7846 components: - rot: -1.5707963267948966 rad pos: 11.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12913 + - uid: 7847 components: - rot: 1.5707963267948966 rad pos: -15.5,10.5 @@ -50034,7 +50662,7 @@ entities: type: Transform - color: '#00AABBFF' type: AtmosPipeColor - - uid: 12915 + - uid: 7848 components: - rot: 1.5707963267948966 rad pos: -13.5,11.5 @@ -50042,90 +50670,90 @@ entities: type: Transform - color: '#00AABBFF' type: AtmosPipeColor - - uid: 13113 + - uid: 7849 components: - pos: -17.5,10.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13293 + - uid: 7850 components: - pos: -42.5,50.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13305 + - uid: 7851 components: - rot: 3.141592653589793 rad pos: -24.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13389 + - uid: 7852 components: - rot: -1.5707963267948966 rad pos: -23.5,14.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13390 + - uid: 7853 components: - rot: 1.5707963267948966 rad pos: -25.5,17.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13577 + - uid: 7854 components: - pos: -36.5,46.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13665 + - uid: 7855 components: - rot: 1.5707963267948966 rad pos: -41.5,-1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13739 + - uid: 7856 components: - pos: -35.5,-15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13750 + - uid: 7857 components: - rot: -1.5707963267948966 rad pos: -36.5,-12.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13812 + - uid: 7858 components: - rot: -1.5707963267948966 rad pos: -52.5,-4.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13814 + - uid: 7859 components: - pos: -49.5,-14.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13857 + - uid: 7860 components: - rot: -1.5707963267948966 rad pos: -49.5,-9.5 @@ -50133,7346 +50761,7439 @@ entities: type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13924 + - uid: 7861 components: - pos: -23.5,-9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13961 + - uid: 7862 components: - rot: 1.5707963267948966 rad pos: -21.5,-22.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13986 + - uid: 7863 components: - rot: 3.141592653589793 rad pos: 22.5,4.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14172 + - uid: 7864 components: - rot: 3.141592653589793 rad pos: -41.5,26.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14174 + - uid: 7865 components: - rot: 3.141592653589793 rad pos: -44.5,28.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14204 + - uid: 7866 components: - rot: 3.141592653589793 rad pos: -32.5,1.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14253 + - uid: 7867 components: - rot: 3.141592653589793 rad pos: -39.5,32.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14263 + - uid: 7868 components: - rot: 3.141592653589793 rad pos: -43.5,40.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14276 + - uid: 7869 components: - pos: -44.5,28.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14285 + - uid: 7870 components: - pos: -46.5,33.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14298 + - uid: 7871 components: - rot: 1.5707963267948966 rad pos: -3.5,38.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14309 + - uid: 7872 components: - rot: 3.141592653589793 rad pos: -45.5,33.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14310 + - uid: 7873 components: - pos: -45.5,34.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14311 + - uid: 7874 components: - rot: 3.141592653589793 rad pos: -46.5,34.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14370 + - uid: 7875 components: - pos: -20.5,20.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14371 + - uid: 7876 components: - rot: -1.5707963267948966 rad pos: -16.5,17.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14420 + - uid: 7877 components: - rot: 1.5707963267948966 rad pos: -23.5,36.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14421 + - uid: 7878 components: - rot: -1.5707963267948966 rad pos: -22.5,36.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14468 + - uid: 7879 components: - rot: 3.141592653589793 rad pos: -26.5,34.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14470 + - uid: 7880 components: - rot: 1.5707963267948966 rad pos: -17.5,36.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14492 + - uid: 7881 components: - rot: -1.5707963267948966 rad pos: -14.5,34.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14493 + - uid: 7882 components: - rot: 1.5707963267948966 rad pos: -14.5,35.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14561 + - uid: 7883 components: - pos: -5.5,35.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14594 + - uid: 7884 components: - rot: 3.141592653589793 rad pos: -36.5,36.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14685 + - uid: 7885 components: - pos: -3.5,21.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14740 + - uid: 7886 components: - rot: -1.5707963267948966 rad pos: -3.5,22.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14930 + - uid: 7887 components: - pos: -14.5,3.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14931 + - uid: 7888 components: - rot: 3.141592653589793 rad pos: -15.5,3.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15026 + - uid: 7889 components: - rot: 3.141592653589793 rad pos: -48.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15027 + - uid: 7890 components: - pos: -48.5,9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15074 + - uid: 7891 components: - rot: 1.5707963267948966 rad pos: -40.5,22.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15206 + - uid: 7892 components: - rot: 3.141592653589793 rad pos: -37.5,23.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15272 + - uid: 7893 components: - rot: -1.5707963267948966 rad pos: -17.5,13.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15323 + - uid: 7894 components: - rot: 1.5707963267948966 rad pos: -31.5,-5.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15419 + - uid: 7895 components: - rot: -1.5707963267948966 rad pos: -17.5,-24.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15512 + - uid: 7896 components: - rot: 1.5707963267948966 rad pos: -8.5,30.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15651 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-42.5 - parent: 2 - type: Transform - - uid: 15772 + - uid: 7897 components: - rot: 3.141592653589793 rad pos: -27.5,39.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15815 + - uid: 7898 components: - rot: 3.141592653589793 rad pos: -21.5,-31.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15816 + - uid: 7899 components: - pos: -16.5,-31.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15900 + - uid: 7900 components: - rot: 3.141592653589793 rad pos: -0.5,-6.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15967 + - uid: 7901 components: - pos: 6.5,3.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16487 + - uid: 7902 components: - rot: 1.5707963267948966 rad pos: 23.5,24.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 16493 + - uid: 7903 components: - rot: 1.5707963267948966 rad pos: 22.5,26.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16571 + - uid: 7904 components: - rot: 3.141592653589793 rad pos: -46.5,-18.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16684 + - uid: 7905 components: - rot: -1.5707963267948966 rad pos: -11.5,-75.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16731 - components: - - pos: -1.5,-41.5 - parent: 2 - type: Transform - - uid: 16895 + - uid: 7906 components: - rot: -1.5707963267948966 rad pos: -12.5,-24.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16900 + - uid: 7907 components: - rot: -1.5707963267948966 rad pos: -50.5,32.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 16916 + - uid: 7908 components: - pos: -20.5,27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 16917 + - uid: 7909 components: - rot: 3.141592653589793 rad pos: -20.5,26.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 17135 + - uid: 7910 components: - rot: -1.5707963267948966 rad pos: 9.5,-38.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' + type: AtmosPipeColor + - uid: 7911 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-50.5 + parent: 2 + type: Transform + - color: '#800080FF' + type: AtmosPipeColor + - uid: 7912 + components: + - pos: 6.5,-50.5 + parent: 2 + type: Transform + - uid: 7913 + components: + - pos: 6.5,-42.5 + parent: 2 + type: Transform + - uid: 7914 + components: + - pos: -0.5,-39.5 + parent: 2 + type: Transform + - color: '#800080FF' + type: AtmosPipeColor + - uid: 7915 + components: + - pos: 0.5,-38.5 + parent: 2 + type: Transform + - color: '#00008BFF' + type: AtmosPipeColor + - uid: 7916 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-43.5 + parent: 2 + type: Transform + - color: '#66FF00FF' + type: AtmosPipeColor + - uid: 7917 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-50.5 + parent: 2 + type: Transform + - color: '#66FF00FF' + type: AtmosPipeColor + - uid: 7918 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-51.5 + parent: 2 + type: Transform + - color: '#800080FF' + type: AtmosPipeColor + - uid: 7919 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-45.5 + parent: 2 + type: Transform + - color: '#66FF00FF' type: AtmosPipeColor - proto: GasPipeFourway entities: - - uid: 1945 + - uid: 7920 + components: + - pos: -4.5,-43.5 + parent: 2 + type: Transform + - color: '#66FF00FF' + type: AtmosPipeColor + - uid: 7921 components: - pos: 16.5,-25.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 4404 + - uid: 7922 components: - pos: 18.5,20.5 parent: 2 type: Transform - color: '#00FFFFFF' type: AtmosPipeColor - - uid: 6719 + - uid: 7923 components: - pos: -4.5,10.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 9316 + - uid: 7924 components: - pos: -36.5,14.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 10957 + - uid: 7925 components: - pos: -46.5,-9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11018 + - uid: 7926 components: - pos: -17.5,-3.5 parent: 2 type: Transform - - color: '#0066FFFF' - type: AtmosPipeColor - - uid: 11261 - components: - - pos: -6.5,-39.5 - parent: 2 - type: Transform - - color: '#0000FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11392 + - uid: 7927 components: - pos: -7.5,-22.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11405 + - uid: 7928 components: - pos: -6.5,-24.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11841 + - uid: 7929 components: - pos: -34.5,15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11919 + - uid: 7930 components: - pos: 24.5,-4.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12005 + - uid: 7931 components: - pos: 14.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12009 + - uid: 7932 components: - pos: 11.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12240 + - uid: 7933 components: - pos: 22.5,16.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12484 + - uid: 7934 components: - pos: -0.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12491 + - uid: 7935 components: - pos: 22.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12834 + - uid: 7936 + components: + - pos: -7.5,10.5 + parent: 2 + type: Transform + - color: '#ADD8E6FF' + type: AtmosPipeColor + - uid: 7937 + components: + - pos: -22.5,-8.5 + parent: 2 + type: Transform + - color: '#FF5349FF' + type: AtmosPipeColor + - uid: 7938 + components: + - pos: -9.5,5.5 + parent: 2 + type: Transform + - color: '#FF5349FF' + type: AtmosPipeColor + - uid: 7939 + components: + - pos: -28.5,-8.5 + parent: 2 + type: Transform + - color: '#FF5349FF' + type: AtmosPipeColor + - uid: 7940 + components: + - pos: -37.5,-9.5 + parent: 2 + type: Transform + - color: '#ADD8E6FF' + type: AtmosPipeColor + - uid: 7941 + components: + - pos: -36.5,-8.5 + parent: 2 + type: Transform + - color: '#FF5349FF' + type: AtmosPipeColor + - uid: 7942 + components: + - pos: -39.5,-15.5 + parent: 2 + type: Transform + - color: '#FF5349FF' + type: AtmosPipeColor + - uid: 7943 + components: + - pos: -47.5,-8.5 + parent: 2 + type: Transform + - color: '#FF5349FF' + type: AtmosPipeColor + - uid: 7944 + components: + - pos: -52.5,-14.5 + parent: 2 + type: Transform + - color: '#FF5349FF' + type: AtmosPipeColor + - uid: 7945 + components: + - pos: -55.5,-14.5 + parent: 2 + type: Transform + - color: '#FF5349FF' + type: AtmosPipeColor + - uid: 7946 + components: + - pos: -16.5,-12.5 + parent: 2 + type: Transform + - color: '#FF5349FF' + type: AtmosPipeColor + - uid: 7947 + components: + - pos: 20.5,6.5 + parent: 2 + type: Transform + - color: '#FF5349FF' + type: AtmosPipeColor + - uid: 7948 + components: + - pos: -17.5,-17.5 + parent: 2 + type: Transform + - color: '#ADD8E6FF' + type: AtmosPipeColor + - uid: 7949 + components: + - pos: -35.5,27.5 + parent: 2 + type: Transform + - color: '#FF5349FF' + type: AtmosPipeColor + - uid: 7950 + components: + - pos: -24.5,27.5 + parent: 2 + type: Transform + - color: '#FF5349FF' + type: AtmosPipeColor + - uid: 7951 + components: + - pos: -40.5,-14.5 + parent: 2 + type: Transform + - color: '#ADD8E6FF' + type: AtmosPipeColor + - uid: 7952 + components: + - pos: -41.5,33.5 + parent: 2 + type: Transform + - color: '#ADD8E6FF' + type: AtmosPipeColor + - uid: 7953 + components: + - pos: -36.5,41.5 + parent: 2 + type: Transform + - color: '#FF5349FF' + type: AtmosPipeColor + - uid: 7954 + components: + - pos: -24.5,34.5 + parent: 2 + type: Transform + - color: '#FF5349FF' + type: AtmosPipeColor + - uid: 7955 + components: + - pos: -8.5,35.5 + parent: 2 + type: Transform + - color: '#FF5349FF' + type: AtmosPipeColor + - uid: 7956 + components: + - pos: -11.5,36.5 + parent: 2 + type: Transform + - color: '#ADD8E6FF' + type: AtmosPipeColor + - uid: 7957 + components: + - pos: -7.5,21.5 + parent: 2 + type: Transform + - color: '#FF5349FF' + type: AtmosPipeColor + - uid: 7958 + components: + - pos: -37.5,15.5 + parent: 2 + type: Transform + - color: '#FF5349FF' + type: AtmosPipeColor + - uid: 7959 + components: + - pos: -30.5,14.5 + parent: 2 + type: Transform + - color: '#ADD8E6FF' + type: AtmosPipeColor + - uid: 7960 + components: + - pos: -31.5,15.5 + parent: 2 + type: Transform + - color: '#FF5349FF' + type: AtmosPipeColor + - uid: 7961 + components: + - pos: -16.5,-75.5 + parent: 2 + type: Transform + - color: '#ADD8E6FF' + type: AtmosPipeColor +- proto: GasPipeStraight + entities: + - uid: 7962 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-43.5 + parent: 2 + type: Transform + - color: '#EE4B2BFF' + type: AtmosPipeColor + - uid: 7963 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-40.5 + parent: 2 + type: Transform + - uid: 7964 + components: + - rot: -1.5707963267948966 rad + pos: -4.5,-38.5 + parent: 2 + type: Transform + - color: '#00008BFF' + type: AtmosPipeColor + - uid: 7965 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-39.5 + parent: 2 + type: Transform + - color: '#800080FF' + type: AtmosPipeColor + - uid: 7966 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-37.5 + parent: 2 + type: Transform + - color: '#00008BFF' + type: AtmosPipeColor + - uid: 7967 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-38.5 + parent: 2 + type: Transform + - color: '#00008BFF' + type: AtmosPipeColor + - uid: 7968 components: - - pos: -7.5,10.5 + - rot: -1.5707963267948966 rad + pos: 3.5,-39.5 parent: 2 type: Transform - - color: '#0066FFFF' - type: AtmosPipeColor - - uid: 12902 + - uid: 7969 components: - - pos: -22.5,-8.5 + - rot: -1.5707963267948966 rad + pos: 2.5,-39.5 parent: 2 type: Transform - - color: '#FF4400FF' - type: AtmosPipeColor - - uid: 13058 + - uid: 7970 components: - - pos: -9.5,5.5 + - rot: 1.5707963267948966 rad + pos: 0.5,-43.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#EE4B2BFF' type: AtmosPipeColor - - uid: 13673 + - uid: 7971 components: - - pos: -28.5,-8.5 + - rot: -1.5707963267948966 rad + pos: 4.5,-45.5 parent: 2 type: Transform - - color: '#FF4400FF' - type: AtmosPipeColor - - uid: 13707 + - uid: 7972 components: - - pos: -37.5,-9.5 + - rot: -1.5707963267948966 rad + pos: 3.5,-45.5 parent: 2 type: Transform - - color: '#0066FFFF' - type: AtmosPipeColor - - uid: 13713 + - uid: 7973 components: - - pos: -36.5,-8.5 + - rot: -1.5707963267948966 rad + pos: 4.5,-49.5 parent: 2 type: Transform - - color: '#FF4400FF' - type: AtmosPipeColor - - uid: 13740 + - uid: 7974 components: - - pos: -39.5,-15.5 + - rot: 1.5707963267948966 rad + pos: 0.5,-46.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#800080FF' type: AtmosPipeColor - - uid: 13757 + - uid: 7975 components: - - pos: -47.5,-8.5 + - rot: -1.5707963267948966 rad + pos: 2.5,-46.5 parent: 2 type: Transform - - color: '#FF4400FF' - type: AtmosPipeColor - - uid: 13843 + - uid: 7976 components: - - pos: -52.5,-14.5 + - pos: -2.5,-42.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#00008BFF' type: AtmosPipeColor - - uid: 13844 + - uid: 7977 components: - - pos: -55.5,-14.5 + - pos: -2.5,-44.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#0000FFFF' type: AtmosPipeColor - - uid: 13964 + - uid: 7978 components: - - pos: -16.5,-12.5 + - rot: 1.5707963267948966 rad + pos: 3.5,-41.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#800080FF' type: AtmosPipeColor - - uid: 13971 + - uid: 7979 components: - - pos: 20.5,6.5 + - rot: -1.5707963267948966 rad + pos: 3.5,-47.5 parent: 2 type: Transform - - color: '#FF4400FF' - type: AtmosPipeColor - - uid: 13988 + - uid: 7980 components: - - pos: -17.5,-17.5 + - rot: -1.5707963267948966 rad + pos: 4.5,-51.5 parent: 2 type: Transform - - color: '#0066FFFF' - type: AtmosPipeColor - - uid: 14104 + - uid: 7981 components: - - pos: -35.5,27.5 + - rot: -1.5707963267948966 rad + pos: 2.5,-45.5 parent: 2 type: Transform - - color: '#FF4400FF' - type: AtmosPipeColor - - uid: 14124 + - uid: 7982 components: - - pos: -24.5,27.5 + - rot: 1.5707963267948966 rad + pos: 4.5,-50.5 parent: 2 type: Transform - - color: '#FF4400FF' - type: AtmosPipeColor - - uid: 14168 + - uid: 7983 components: - - pos: -40.5,-14.5 + - pos: -0.5,-49.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#800080FF' type: AtmosPipeColor - - uid: 14194 + - uid: 7984 components: - - pos: -41.5,33.5 + - rot: 1.5707963267948966 rad + pos: 0.5,-44.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#800080FF' type: AtmosPipeColor - - uid: 14212 + - uid: 7985 components: - - pos: -36.5,41.5 + - rot: 1.5707963267948966 rad + pos: -4.5,-39.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#800080FF' type: AtmosPipeColor - - uid: 14457 + - uid: 7986 components: - - pos: -24.5,34.5 + - rot: -1.5707963267948966 rad + pos: 4.5,-48.5 parent: 2 type: Transform - - color: '#FF4400FF' - type: AtmosPipeColor - - uid: 14498 + - uid: 7987 components: - - pos: -8.5,35.5 + - rot: -1.5707963267948966 rad + pos: 4.5,-46.5 parent: 2 type: Transform - - color: '#FF4400FF' - type: AtmosPipeColor - - uid: 14512 + - uid: 7988 components: - - pos: -11.5,36.5 + - rot: 1.5707963267948966 rad + pos: 3.5,-42.5 parent: 2 type: Transform - - color: '#0066FFFF' - type: AtmosPipeColor - - uid: 14715 + - uid: 7989 components: - - pos: -7.5,21.5 + - rot: 1.5707963267948966 rad + pos: 5.5,-42.5 parent: 2 type: Transform - - color: '#FF4400FF' - type: AtmosPipeColor - - uid: 15081 + - uid: 7990 components: - - pos: -37.5,15.5 + - rot: -1.5707963267948966 rad + pos: 5.5,-48.5 parent: 2 type: Transform - - color: '#FF4400FF' - type: AtmosPipeColor - - uid: 15593 + - uid: 7991 components: - - pos: -30.5,14.5 + - rot: -1.5707963267948966 rad + pos: 3.5,-44.5 parent: 2 type: Transform - - color: '#0066FFFF' - type: AtmosPipeColor - - uid: 15602 + - uid: 7992 components: - - pos: -31.5,15.5 + - rot: -1.5707963267948966 rad + pos: 5.5,-44.5 parent: 2 type: Transform - - color: '#FF4400FF' - type: AtmosPipeColor - - uid: 15818 + - uid: 7993 components: - - pos: -16.5,-75.5 + - rot: -1.5707963267948966 rad + pos: 2.5,-43.5 parent: 2 type: Transform - - color: '#0066FFFF' - type: AtmosPipeColor -- proto: GasPipeStraight - entities: - - uid: 47 + - uid: 7994 components: - pos: -6.5,-36.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 374 + - uid: 7995 components: - rot: 3.141592653589793 rad pos: -7.5,-32.5 parent: 2 type: Transform - - color: '#F64400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 384 + - uid: 7996 components: - pos: 10.5,-18.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 386 + - uid: 7997 components: - pos: 10.5,-19.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 507 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-39.5 - parent: 2 - type: Transform - - uid: 518 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-39.5 - parent: 2 - type: Transform - - uid: 691 + - uid: 7998 components: - - rot: 3.141592653589793 rad - pos: -2.5,-36.5 + - rot: 1.5707963267948966 rad + pos: 2.5,-50.5 parent: 2 type: Transform - - uid: 906 + - uid: 7999 components: - pos: -46.5,-14.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 1072 + - uid: 8000 components: - rot: 3.141592653589793 rad pos: -31.5,-8.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 1180 + - uid: 8001 components: - pos: 0.5,6.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 1181 + - uid: 8002 components: - pos: -0.5,1.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 1285 + - uid: 8003 components: - rot: 3.141592653589793 rad pos: -36.5,42.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 1326 + - uid: 8004 components: - pos: 7.5,-13.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 1327 + - uid: 8005 components: - rot: 1.5707963267948966 rad pos: 8.5,-14.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 1330 + - uid: 8006 components: - rot: 1.5707963267948966 rad pos: -17.5,6.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 1334 + - uid: 8007 components: - rot: 1.5707963267948966 rad pos: -16.5,6.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 1344 + - uid: 8008 components: - pos: -15.5,5.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 1524 + - uid: 8009 components: - rot: -1.5707963267948966 rad pos: 9.5,-37.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 1568 + - uid: 8010 components: - pos: 10.5,-16.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 1575 + - uid: 8011 components: - pos: 10.5,-26.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 1589 + - uid: 8012 components: - pos: 10.5,-27.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 1591 + - uid: 8013 components: - pos: 11.5,-29.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 1595 + - uid: 8014 components: - rot: 3.141592653589793 rad pos: 16.5,-31.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 1596 + - uid: 8015 components: - rot: 3.141592653589793 rad pos: 16.5,-30.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 1626 + - uid: 8016 components: - rot: 3.141592653589793 rad pos: 16.5,-29.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 1627 + - uid: 8017 components: - rot: 3.141592653589793 rad pos: 16.5,-28.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 1650 + - uid: 8018 components: - pos: 11.5,-30.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 1657 + - uid: 8019 components: - rot: 3.141592653589793 rad pos: 16.5,-27.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 1658 + - uid: 8020 components: - rot: 3.141592653589793 rad pos: 16.5,-26.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 1719 + - uid: 8021 components: - rot: -1.5707963267948966 rad pos: 17.5,-25.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 1720 + - uid: 8022 components: - rot: 3.141592653589793 rad pos: 20.5,-24.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 1721 + - uid: 8023 components: - rot: 3.141592653589793 rad pos: 20.5,-23.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 1724 + - uid: 8024 components: - rot: 3.141592653589793 rad pos: 20.5,-21.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 1747 + - uid: 8025 components: - rot: -1.5707963267948966 rad pos: 19.5,-20.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 1805 + - uid: 8026 components: - pos: 10.5,-14.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 1815 + - uid: 8027 components: - rot: -1.5707963267948966 rad pos: 18.5,-25.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 1816 + - uid: 8028 components: - rot: -1.5707963267948966 rad pos: 19.5,-25.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 1829 + - uid: 8029 components: - rot: 1.5707963267948966 rad pos: 7.5,-37.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 1844 + - uid: 8030 components: - rot: 1.5707963267948966 rad pos: -12.5,-18.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 1884 + - uid: 8031 components: - pos: 7.5,-12.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 1885 + - uid: 8032 components: - pos: 7.5,-11.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 1888 + - uid: 8033 components: - rot: -1.5707963267948966 rad pos: 8.5,-10.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 1904 + - uid: 8034 components: - pos: 10.5,-15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 1905 + - uid: 8035 components: - pos: 10.5,-17.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 1916 + - uid: 8036 components: - rot: -1.5707963267948966 rad pos: 7.5,-24.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 1921 + - uid: 8037 components: - rot: -1.5707963267948966 rad pos: 6.5,-24.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 1924 + - uid: 8038 components: - rot: -1.5707963267948966 rad pos: 8.5,-27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 1950 + - uid: 8039 components: - rot: 1.5707963267948966 rad pos: 10.5,-16.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 1960 + - uid: 8040 components: - rot: -1.5707963267948966 rad pos: 14.5,-25.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 1970 + - uid: 8041 components: - rot: 1.5707963267948966 rad pos: 8.5,-13.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 2016 + - uid: 8042 components: - rot: -1.5707963267948966 rad pos: -55.5,31.5 parent: 2 type: Transform - - uid: 2044 + - uid: 8043 components: - rot: -1.5707963267948966 rad pos: 8.5,-24.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 2067 + - uid: 8044 components: - pos: 5.5,-36.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 2074 + - uid: 8045 components: - pos: 5.5,-34.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 2077 + - uid: 8046 components: - pos: 4.5,-32.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 2078 + - uid: 8047 components: - pos: 4.5,-31.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 2079 + - uid: 8048 components: - pos: 4.5,-30.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 2080 + - uid: 8049 components: - pos: 4.5,-29.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 2081 + - uid: 8050 components: - pos: 4.5,-28.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 2082 + - uid: 8051 components: - rot: 3.141592653589793 rad pos: 15.5,-28.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 2083 + - uid: 8052 components: - rot: 3.141592653589793 rad pos: 15.5,-29.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 2084 + - uid: 8053 components: - rot: 3.141592653589793 rad pos: 15.5,-30.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 2085 + - uid: 8054 components: - rot: 3.141592653589793 rad pos: 15.5,-31.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 2094 + - uid: 8055 components: - pos: 22.5,6.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 2099 + - uid: 8056 components: - pos: 5.5,-35.5 parent: 2 type: Transform - - color: '#0066FFFF' - type: AtmosPipeColor - - uid: 2215 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-37.5 - parent: 2 - type: Transform - - uid: 2216 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-36.5 - parent: 2 - type: Transform - - uid: 2217 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-37.5 - parent: 2 - type: Transform - - uid: 2227 - components: - - rot: 1.5707963267948966 rad - pos: -2.5,-44.5 - parent: 2 - type: Transform - - uid: 2236 - components: - - pos: -1.5,-37.5 - parent: 2 - type: Transform - - uid: 2243 - components: - - pos: -3.5,-37.5 - parent: 2 - type: Transform - - uid: 2321 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-40.5 - parent: 2 - type: Transform - - color: '#F64400FF' - type: AtmosPipeColor - - uid: 2323 - components: - - rot: 1.5707963267948966 rad - pos: -4.5,-40.5 - parent: 2 - type: Transform - - color: '#F64400FF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 2324 + - uid: 8057 components: - - pos: -7.5,-39.5 + - rot: -1.5707963267948966 rad + pos: 0.5,-42.5 parent: 2 type: Transform - - color: '#F64400FF' + - color: '#800080FF' type: AtmosPipeColor - - uid: 2328 + - uid: 8058 components: - - rot: 1.5707963267948966 rad - pos: -1.5,-39.5 + - rot: -1.5707963267948966 rad + pos: 2.5,-51.5 parent: 2 type: Transform - - uid: 2329 + - uid: 8059 components: - rot: 1.5707963267948966 rad - pos: -3.5,-39.5 + pos: -0.5,-45.5 parent: 2 type: Transform - color: '#0000FFFF' type: AtmosPipeColor - - uid: 2335 + - uid: 8060 components: - rot: 1.5707963267948966 rad - pos: -5.5,-39.5 + pos: 0.5,-50.5 parent: 2 type: Transform - - color: '#0000FFFF' + - color: '#800080FF' type: AtmosPipeColor - - uid: 2336 + - uid: 8061 components: - - rot: -1.5707963267948966 rad - pos: -0.5,-40.5 + - rot: 1.5707963267948966 rad + pos: 3.5,-50.5 parent: 2 type: Transform - - uid: 2342 + - uid: 8062 components: - rot: -1.5707963267948966 rad - pos: 0.5,-40.5 + pos: 2.5,-49.5 parent: 2 type: Transform - - uid: 2343 + - uid: 8063 components: - rot: -1.5707963267948966 rad - pos: 1.5,-40.5 - parent: 2 - type: Transform - - uid: 2350 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-41.5 - parent: 2 - type: Transform - - uid: 2358 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-43.5 - parent: 2 - type: Transform - - uid: 2359 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-45.5 - parent: 2 - type: Transform - - uid: 2360 - components: - - rot: 1.5707963267948966 rad - pos: 3.5,-46.5 - parent: 2 - type: Transform - - uid: 2363 - components: - - rot: 1.5707963267948966 rad - pos: 5.5,-46.5 - parent: 2 - type: Transform - - uid: 2364 - components: - - rot: 1.5707963267948966 rad - pos: 4.5,-46.5 - parent: 2 - type: Transform - - uid: 2365 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-46.5 + pos: 2.5,-44.5 parent: 2 type: Transform - - uid: 2366 + - uid: 8064 components: - rot: 1.5707963267948966 rad - pos: 7.5,-46.5 + pos: 2.5,-42.5 parent: 2 type: Transform - - uid: 2424 + - uid: 8065 components: - rot: 1.5707963267948966 rad pos: 11.5,-25.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 2679 + - uid: 8066 components: - rot: -1.5707963267948966 rad pos: 10.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 2696 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-45.5 - parent: 2 - type: Transform - - uid: 2723 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-44.5 - parent: 2 - type: Transform - - uid: 2725 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-44.5 - parent: 2 - type: Transform - - uid: 2746 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-42.5 - parent: 2 - type: Transform - - uid: 2750 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-42.5 - parent: 2 - type: Transform - - uid: 2761 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-45.5 - parent: 2 - type: Transform - - uid: 2763 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-41.5 - parent: 2 - type: Transform - - uid: 2764 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-41.5 - parent: 2 - type: Transform - - uid: 2797 + - uid: 8067 components: - - rot: -1.5707963267948966 rad - pos: -0.5,-49.5 + - rot: 3.141592653589793 rad + pos: -2.5,-37.5 parent: 2 type: Transform - - uid: 2912 + - color: '#00008BFF' + type: AtmosPipeColor + - uid: 8068 components: - rot: 1.5707963267948966 rad - pos: -0.5,-47.5 + pos: -2.5,-39.5 parent: 2 type: Transform - - uid: 2913 + - color: '#800080FF' + type: AtmosPipeColor + - uid: 8069 components: - rot: 1.5707963267948966 rad - pos: 0.5,-47.5 + pos: 4.5,-42.5 parent: 2 type: Transform - - uid: 2914 + - uid: 8070 components: - - rot: 1.5707963267948966 rad - pos: 1.5,-47.5 + - rot: -1.5707963267948966 rad + pos: 3.5,-48.5 parent: 2 type: Transform - - uid: 2930 + - uid: 8071 components: - - rot: 1.5707963267948966 rad - pos: 1.5,-48.5 + - rot: -1.5707963267948966 rad + pos: 2.5,-48.5 parent: 2 type: Transform - - uid: 2951 + - uid: 8072 components: - rot: 1.5707963267948966 rad pos: 10.5,-27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 2953 + - uid: 8073 components: - pos: 5.5,-37.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 2956 + - uid: 8074 components: - rot: 1.5707963267948966 rad pos: 8.5,-37.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 2958 + - uid: 8075 components: - pos: 11.5,-31.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 2986 + - uid: 8076 components: - rot: 1.5707963267948966 rad pos: 11.5,-20.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 3147 + - uid: 8077 components: - rot: 3.141592653589793 rad pos: -9.5,6.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 3327 + - uid: 8078 components: - pos: -56.5,33.5 parent: 2 type: Transform - - uid: 3395 + - uid: 8079 components: - pos: 22.5,5.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 3532 + - uid: 8080 components: - rot: -1.5707963267948966 rad pos: 11.5,-22.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 3542 + - uid: 8081 components: - pos: 12.5,-24.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 3544 + - uid: 8082 components: - rot: 1.5707963267948966 rad pos: 7.5,-13.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 3819 + - uid: 8083 components: - pos: 9.5,-22.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 3886 + - uid: 8084 components: - pos: 9.5,-23.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 3889 + - uid: 8085 components: - rot: 1.5707963267948966 rad pos: 27.5,-19.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 4005 + - uid: 8086 components: - rot: 1.5707963267948966 rad pos: 17.5,16.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 4399 + - uid: 8087 components: - pos: 32.5,18.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 4400 + - uid: 8088 components: - pos: 32.5,17.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 4474 + - uid: 8089 components: - pos: 18.5,17.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 4480 - components: - - pos: -2.5,-38.5 - parent: 2 - type: Transform - - uid: 4590 - components: - - pos: 1.5,-42.5 - parent: 2 - type: Transform - - uid: 4774 + - uid: 8090 components: - pos: 31.5,17.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 4819 + - uid: 8091 components: - rot: -1.5707963267948966 rad pos: 17.5,-27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 4839 + - uid: 8092 components: - rot: -1.5707963267948966 rad pos: 14.5,-27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 4840 + - uid: 8093 components: - rot: -1.5707963267948966 rad pos: 13.5,-27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 4967 + - uid: 8094 components: - rot: 3.141592653589793 rad pos: 28.5,28.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 4985 + - uid: 8095 components: - rot: 1.5707963267948966 rad pos: 27.5,29.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 5367 + - uid: 8096 components: - rot: 1.5707963267948966 rad pos: -35.5,36.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 5784 + - uid: 8097 components: - pos: -7.5,-36.5 parent: 2 type: Transform - - color: '#F64400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 5908 + - uid: 8098 components: - pos: 36.5,18.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 5921 + - uid: 8099 components: - rot: 1.5707963267948966 rad pos: 15.5,16.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 6085 + - uid: 8100 components: - pos: -53.5,32.5 parent: 2 type: Transform - - uid: 6187 + - uid: 8101 components: - pos: 5.5,-10.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 6206 + - uid: 8102 components: - rot: 3.141592653589793 rad pos: -55.5,38.5 parent: 2 type: Transform - - uid: 6208 + - uid: 8103 components: - rot: -1.5707963267948966 rad pos: -58.5,37.5 parent: 2 type: Transform - - uid: 6209 + - uid: 8104 components: - pos: -62.5,32.5 parent: 2 type: Transform - - uid: 6212 + - uid: 8105 components: - rot: 3.141592653589793 rad pos: -62.5,35.5 parent: 2 type: Transform - - uid: 6219 + - uid: 8106 components: - rot: 1.5707963267948966 rad pos: -61.5,33.5 parent: 2 type: Transform - - uid: 6243 + - uid: 8107 components: - rot: 1.5707963267948966 rad pos: -60.5,33.5 parent: 2 type: Transform - - uid: 6272 + - uid: 8108 components: - rot: 1.5707963267948966 rad pos: -59.5,33.5 parent: 2 type: Transform - - uid: 6298 + - uid: 8109 components: - rot: 1.5707963267948966 rad pos: 5.5,-5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 6312 + - uid: 8110 components: - pos: -54.5,37.5 parent: 2 type: Transform - - uid: 6314 + - uid: 8111 components: - rot: 1.5707963267948966 rad pos: -58.5,36.5 parent: 2 type: Transform - - uid: 6315 + - uid: 8112 components: - rot: 1.5707963267948966 rad pos: -59.5,36.5 parent: 2 type: Transform - - uid: 6316 + - uid: 8113 components: - rot: 1.5707963267948966 rad pos: -57.5,36.5 parent: 2 type: Transform - - uid: 6317 + - uid: 8114 components: - pos: -54.5,38.5 parent: 2 type: Transform - - uid: 6318 + - uid: 8115 components: - rot: 1.5707963267948966 rad pos: -61.5,34.5 parent: 2 type: Transform - - uid: 6328 + - uid: 8116 components: - rot: 1.5707963267948966 rad pos: -58.5,34.5 parent: 2 type: Transform - - uid: 6332 + - uid: 8117 components: - rot: 1.5707963267948966 rad pos: -60.5,34.5 parent: 2 type: Transform - - uid: 6333 + - uid: 8118 components: - rot: 1.5707963267948966 rad pos: -59.5,34.5 parent: 2 type: Transform - - uid: 6343 + - uid: 8119 components: - rot: 1.5707963267948966 rad pos: -60.5,36.5 parent: 2 type: Transform - - uid: 6361 + - uid: 8120 components: - pos: -62.5,36.5 parent: 2 type: Transform - - uid: 6367 + - uid: 8121 components: - rot: 1.5707963267948966 rad pos: -57.5,32.5 parent: 2 type: Transform - - uid: 6368 + - uid: 8122 components: - rot: 1.5707963267948966 rad pos: -58.5,32.5 parent: 2 type: Transform - - uid: 6369 + - uid: 8123 components: - rot: 1.5707963267948966 rad pos: -59.5,32.5 parent: 2 type: Transform - - uid: 6370 + - uid: 8124 components: - rot: 1.5707963267948966 rad pos: -60.5,32.5 parent: 2 type: Transform - - uid: 6373 + - uid: 8125 components: - rot: 3.141592653589793 rad pos: -3.5,10.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 6374 + - uid: 8126 components: - rot: 3.141592653589793 rad pos: -56.5,35.5 parent: 2 type: Transform - - uid: 6375 + - uid: 8127 components: - rot: 3.141592653589793 rad pos: -56.5,34.5 parent: 2 type: Transform - - uid: 6377 + - uid: 8128 components: - rot: -1.5707963267948966 rad pos: -54.5,31.5 parent: 2 type: Transform - - uid: 6378 + - uid: 8129 components: - rot: -1.5707963267948966 rad pos: -56.5,34.5 parent: 2 type: Transform - - uid: 6404 + - uid: 8130 components: - rot: 1.5707963267948966 rad pos: -58.5,33.5 parent: 2 type: Transform - - uid: 6593 + - uid: 8131 components: - rot: -1.5707963267948966 rad pos: 9.5,-10.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 6697 + - uid: 8132 components: - rot: 1.5707963267948966 rad pos: 9.5,-27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 6717 + - uid: 8133 components: - rot: 3.141592653589793 rad pos: -4.5,11.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 6718 + - uid: 8134 components: - rot: 1.5707963267948966 rad pos: -3.5,10.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 6742 + - uid: 8135 components: - rot: 1.5707963267948966 rad pos: -18.5,-33.5 parent: 2 type: Transform - - color: '#F64400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 6760 + - uid: 8136 components: - rot: 1.5707963267948966 rad pos: -16.5,-33.5 parent: 2 type: Transform - - color: '#F64400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 6768 + - uid: 8137 components: - rot: 1.5707963267948966 rad pos: -17.5,-33.5 parent: 2 type: Transform - - color: '#F64400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 6770 + - uid: 8138 components: - rot: 1.5707963267948966 rad pos: -15.5,-33.5 parent: 2 type: Transform - - color: '#F64400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 6828 + - uid: 8139 components: - rot: -1.5707963267948966 rad pos: -31.5,27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 6915 + - uid: 8140 components: - pos: 0.5,5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 7233 + - uid: 8141 components: - pos: 11.5,-28.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 7427 + - uid: 8142 components: - rot: -1.5707963267948966 rad pos: -29.5,27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 7556 + - uid: 8143 components: - rot: -1.5707963267948966 rad pos: -45.5,40.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 7562 + - uid: 8144 components: - rot: 1.5707963267948966 rad pos: -41.5,41.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 7834 + - uid: 8145 components: - - pos: -7.5,-41.5 + - rot: -1.5707963267948966 rad + pos: 2.5,-47.5 parent: 2 type: Transform - - color: '#F64400FF' - type: AtmosPipeColor - - uid: 7835 + - uid: 8146 components: - - rot: 3.141592653589793 rad - pos: -6.5,-43.5 + - rot: 1.5707963267948966 rad + pos: 2.5,-40.5 parent: 2 type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 7839 + - uid: 8147 components: - rot: -1.5707963267948966 rad pos: 10.5,-10.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 7844 + - uid: 8148 components: - rot: 1.5707963267948966 rad pos: 24.5,-12.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 7906 + - uid: 8149 components: - - pos: -0.5,-42.5 + - rot: 3.141592653589793 rad + pos: -0.5,-45.5 parent: 2 type: Transform - - uid: 7941 + - color: '#800080FF' + type: AtmosPipeColor + - uid: 8150 components: - - rot: 1.5707963267948966 rad - pos: -0.5,-42.5 + - rot: -1.5707963267948966 rad + pos: 4.5,-44.5 parent: 2 type: Transform - - uid: 7948 + - uid: 8151 components: - rot: -1.5707963267948966 rad pos: -16.5,-3.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 8973 + - uid: 8152 components: - rot: -1.5707963267948966 rad pos: 10.5,-4.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 8980 + - uid: 8153 components: - rot: -1.5707963267948966 rad pos: 27.5,21.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 9106 + - uid: 8154 components: - rot: 3.141592653589793 rad pos: -21.5,-29.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 9529 + - uid: 8155 components: - pos: -27.5,-23.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 9553 + - uid: 8156 components: - rot: 1.5707963267948966 rad pos: -13.5,-17.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 9581 + - uid: 8157 components: - rot: -1.5707963267948966 rad pos: -32.5,27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 9585 + - uid: 8158 components: - rot: 3.141592653589793 rad pos: -31.5,-7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 9945 + - uid: 8159 components: - rot: 1.5707963267948966 rad pos: -43.5,41.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 10123 + - uid: 8160 components: - rot: -1.5707963267948966 rad pos: 3.5,-24.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 10642 + - uid: 8161 components: - rot: 3.141592653589793 rad pos: 33.5,6.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 10648 + - uid: 8162 components: - rot: -1.5707963267948966 rad pos: 6.5,-27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 10657 + - uid: 8163 components: - rot: -1.5707963267948966 rad pos: -39.5,41.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 10673 + - uid: 8164 components: - pos: 9.5,-15.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 10680 + - uid: 8165 components: - pos: 4.5,-26.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11000 + - uid: 8166 components: - pos: -23.5,-11.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11025 + - uid: 8167 components: - rot: 1.5707963267948966 rad pos: -22.5,-12.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11026 + - uid: 8168 components: - rot: -1.5707963267948966 rad pos: -8.5,-12.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11057 + - uid: 8169 components: - rot: 3.141592653589793 rad pos: -33.5,16.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11058 + - uid: 8170 components: - rot: 1.5707963267948966 rad pos: -41.5,-14.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11123 + - uid: 8171 components: - pos: 39.5,-14.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11246 + - uid: 8172 components: - pos: 12.5,-25.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11255 + - uid: 8173 components: - rot: 1.5707963267948966 rad - pos: -7.5,-39.5 + pos: 0.5,-45.5 parent: 2 type: Transform - color: '#0000FFFF' type: AtmosPipeColor - - uid: 11258 + - uid: 8174 components: - - rot: 3.141592653589793 rad - pos: -6.5,-42.5 + - rot: -1.5707963267948966 rad + pos: 3.5,-49.5 parent: 2 type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 11259 + - uid: 8175 components: - - rot: 3.141592653589793 rad - pos: -6.5,-41.5 + - rot: -1.5707963267948966 rad + pos: 3.5,-51.5 parent: 2 type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 11260 + - uid: 8176 components: - rot: 3.141592653589793 rad - pos: -6.5,-40.5 - parent: 2 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 11262 - components: - - pos: -7.5,-42.5 - parent: 2 - type: Transform - - color: '#F64400FF' - type: AtmosPipeColor - - uid: 11263 - components: - - pos: -7.5,-43.5 + pos: -0.5,-41.5 parent: 2 type: Transform - - color: '#F64400FF' + - color: '#800080FF' type: AtmosPipeColor - - uid: 11271 + - uid: 8177 components: - rot: 1.5707963267948966 rad pos: -5.5,-33.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11272 + - uid: 8178 components: - rot: 1.5707963267948966 rad pos: -4.5,-33.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11289 + - uid: 8179 components: - pos: -6.5,-31.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11290 + - uid: 8180 components: - pos: -6.5,-30.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11293 + - uid: 8181 components: - pos: -6.5,-27.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11294 + - uid: 8182 components: - pos: -6.5,-26.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11295 + - uid: 8183 components: - pos: -6.5,-25.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11297 + - uid: 8184 components: - pos: -6.5,-23.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11298 + - uid: 8185 components: - pos: -6.5,-22.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11299 + - uid: 8186 components: - pos: -6.5,-21.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11300 + - uid: 8187 components: - pos: -6.5,-20.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11301 + - uid: 8188 components: - pos: -6.5,-19.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11303 + - uid: 8189 components: - rot: -1.5707963267948966 rad pos: -7.5,-28.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11304 + - uid: 8190 components: - rot: -1.5707963267948966 rad pos: -8.5,-28.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11305 + - uid: 8191 components: - rot: -1.5707963267948966 rad pos: -9.5,-28.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11315 + - uid: 8192 components: - rot: -1.5707963267948966 rad pos: -8.5,-33.5 parent: 2 type: Transform - - color: '#F64400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11316 + - uid: 8193 components: - rot: -1.5707963267948966 rad pos: -9.5,-33.5 parent: 2 type: Transform - - color: '#F64400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11318 + - uid: 8194 components: - rot: 3.141592653589793 rad pos: -11.5,-32.5 parent: 2 type: Transform - - color: '#F64400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11319 + - uid: 8195 components: - rot: 3.141592653589793 rad pos: -11.5,-31.5 parent: 2 type: Transform - - color: '#F64400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11320 + - uid: 8196 components: - rot: 3.141592653589793 rad pos: -11.5,-30.5 parent: 2 type: Transform - - color: '#F64400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11323 + - uid: 8197 components: - pos: 34.5,-13.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11324 + - uid: 8198 components: - pos: 34.5,-12.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11325 + - uid: 8199 components: - rot: -1.5707963267948966 rad pos: 33.5,-11.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11326 + - uid: 8200 components: - rot: -1.5707963267948966 rad pos: 32.5,-11.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11327 + - uid: 8201 components: - rot: -1.5707963267948966 rad pos: 31.5,-11.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11328 + - uid: 8202 components: - rot: 3.141592653589793 rad pos: 30.5,-9.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11329 + - uid: 8203 components: - rot: 3.141592653589793 rad pos: 30.5,-8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11330 + - uid: 8204 components: - rot: 3.141592653589793 rad pos: 30.5,-7.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11331 + - uid: 8205 components: - rot: 3.141592653589793 rad pos: 30.5,-6.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11332 + - uid: 8206 components: - rot: 3.141592653589793 rad pos: 30.5,-5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11334 + - uid: 8207 components: - rot: 1.5707963267948966 rad pos: 29.5,-4.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11335 + - uid: 8208 components: - rot: 1.5707963267948966 rad pos: 28.5,-4.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11336 + - uid: 8209 components: - rot: 1.5707963267948966 rad pos: 27.5,-4.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11337 + - uid: 8210 components: - rot: 1.5707963267948966 rad pos: 26.5,-4.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11343 + - uid: 8211 components: - pos: -12.5,-34.5 parent: 2 type: Transform - - color: '#F64400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11344 + - uid: 8212 components: - pos: -12.5,-35.5 parent: 2 type: Transform - - color: '#F64400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11345 + - uid: 8213 components: - pos: -12.5,-36.5 parent: 2 type: Transform - - color: '#F64400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11347 + - uid: 8214 components: - pos: 33.5,-7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11348 + - uid: 8215 components: - pos: 33.5,-6.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11349 + - uid: 8216 components: - rot: -1.5707963267948966 rad pos: 34.5,-5.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11350 + - uid: 8217 components: - rot: -1.5707963267948966 rad pos: 35.5,-5.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11351 + - uid: 8218 components: - rot: -1.5707963267948966 rad pos: 36.5,-5.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11353 + - uid: 8219 components: - rot: -1.5707963267948966 rad pos: -7.5,-32.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11354 + - uid: 8220 components: - rot: -1.5707963267948966 rad pos: -8.5,-32.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11355 + - uid: 8221 components: - rot: -1.5707963267948966 rad pos: -9.5,-32.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11356 + - uid: 8222 components: - rot: -1.5707963267948966 rad pos: 32.5,-15.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11357 + - uid: 8223 components: - rot: -1.5707963267948966 rad pos: 31.5,-15.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11359 + - uid: 8224 components: - rot: -1.5707963267948966 rad pos: 30.5,-15.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11368 + - uid: 8225 components: - rot: 3.141592653589793 rad pos: -7.5,-30.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11369 + - uid: 8226 components: - rot: 3.141592653589793 rad pos: -7.5,-29.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11370 + - uid: 8227 components: - rot: 3.141592653589793 rad pos: -7.5,-28.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11371 + - uid: 8228 components: - rot: 3.141592653589793 rad pos: -7.5,-27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11373 + - uid: 8229 components: - rot: 3.141592653589793 rad pos: -7.5,-25.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11374 + - uid: 8230 components: - rot: 3.141592653589793 rad pos: -7.5,-24.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11375 + - uid: 8231 components: - rot: 3.141592653589793 rad pos: -7.5,-23.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11377 + - uid: 8232 components: - rot: 3.141592653589793 rad pos: -7.5,-21.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11378 + - uid: 8233 components: - rot: 3.141592653589793 rad pos: -7.5,-20.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11379 + - uid: 8234 components: - rot: 3.141592653589793 rad pos: -7.5,-19.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11382 + - uid: 8235 components: - rot: 3.141592653589793 rad pos: 34.5,-14.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11402 + - uid: 8236 components: - rot: -1.5707963267948966 rad pos: -7.5,-24.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11408 + - uid: 8237 components: - rot: -1.5707963267948966 rad pos: -6.5,-22.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11409 + - uid: 8238 components: - rot: -1.5707963267948966 rad pos: -5.5,-22.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11410 + - uid: 8239 components: - rot: -1.5707963267948966 rad pos: -4.5,-22.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11412 + - uid: 8240 components: - rot: -1.5707963267948966 rad pos: -2.5,-22.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11413 + - uid: 8241 components: - rot: -1.5707963267948966 rad pos: -5.5,-24.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11415 + - uid: 8242 components: - rot: -1.5707963267948966 rad pos: -3.5,-24.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11416 + - uid: 8243 components: - rot: -1.5707963267948966 rad pos: -2.5,-24.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11417 + - uid: 8244 components: - rot: -1.5707963267948966 rad pos: -1.5,-24.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11428 + - uid: 8245 components: - pos: -3.5,-19.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11429 + - uid: 8246 components: - rot: -1.5707963267948966 rad pos: -5.5,-18.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11430 + - uid: 8247 components: - rot: -1.5707963267948966 rad pos: -4.5,-18.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11431 + - uid: 8248 components: - rot: 3.141592653589793 rad pos: -3.5,-17.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11439 + - uid: 8249 components: - pos: 37.5,-0.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11440 + - uid: 8250 components: - pos: 37.5,-1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11441 + - uid: 8251 components: - pos: 37.5,-2.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11442 + - uid: 8252 components: - pos: 37.5,-3.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11443 + - uid: 8253 components: - pos: 37.5,-4.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11444 + - uid: 8254 components: - rot: 3.141592653589793 rad pos: -3.5,-21.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11445 + - uid: 8255 components: - rot: 3.141592653589793 rad pos: -3.5,-20.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11448 + - uid: 8256 components: - rot: -1.5707963267948966 rad pos: -26.5,15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11450 + - uid: 8257 components: - rot: 1.5707963267948966 rad pos: 36.5,0.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11452 + - uid: 8258 components: - rot: -1.5707963267948966 rad pos: 33.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11453 + - uid: 8259 components: - rot: -1.5707963267948966 rad pos: 32.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11454 + - uid: 8260 components: - rot: -1.5707963267948966 rad pos: 31.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11455 + - uid: 8261 components: - rot: -1.5707963267948966 rad pos: 30.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11456 + - uid: 8262 components: - rot: -1.5707963267948966 rad pos: 29.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11457 + - uid: 8263 components: - rot: -1.5707963267948966 rad pos: 28.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11460 + - uid: 8264 components: - rot: -1.5707963267948966 rad pos: 24.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11461 + - uid: 8265 components: - rot: -1.5707963267948966 rad pos: 23.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11462 + - uid: 8266 components: - rot: -1.5707963267948966 rad pos: 22.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11463 + - uid: 8267 components: - rot: -1.5707963267948966 rad pos: 21.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11464 + - uid: 8268 components: - rot: -1.5707963267948966 rad pos: 20.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11465 + - uid: 8269 components: - rot: -1.5707963267948966 rad pos: 19.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11466 + - uid: 8270 components: - rot: -1.5707963267948966 rad pos: 18.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11469 + - uid: 8271 components: - rot: 1.5707963267948966 rad pos: -0.5,-24.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11470 + - uid: 8272 components: - rot: 1.5707963267948966 rad pos: 0.5,-24.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11471 + - uid: 8273 components: - rot: 1.5707963267948966 rad pos: 1.5,-24.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11475 + - uid: 8274 components: - rot: 3.141592653589793 rad pos: 37.5,-6.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11482 + - uid: 8275 components: - pos: 2.5,-23.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11483 + - uid: 8276 components: - pos: 2.5,-22.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11484 + - uid: 8277 components: - pos: 2.5,-21.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11487 + - uid: 8278 components: - rot: -1.5707963267948966 rad pos: 38.5,-7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11490 + - uid: 8279 components: - pos: 39.5,-8.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11491 + - uid: 8280 components: - pos: 39.5,-9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11492 + - uid: 8281 components: - pos: 39.5,-10.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11493 + - uid: 8282 components: - pos: 39.5,-11.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11494 + - uid: 8283 components: - pos: 39.5,-12.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11507 + - uid: 8284 components: - rot: -1.5707963267948966 rad pos: 35.5,-15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11508 + - uid: 8285 components: - rot: -1.5707963267948966 rad pos: 36.5,-15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11510 + - uid: 8286 components: - rot: -1.5707963267948966 rad pos: 37.5,-15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11511 + - uid: 8287 components: - rot: 3.141592653589793 rad pos: 38.5,-14.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11512 + - uid: 8288 components: - rot: 3.141592653589793 rad pos: 38.5,-13.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11513 + - uid: 8289 components: - rot: 3.141592653589793 rad pos: 38.5,-12.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11515 + - uid: 8290 components: - rot: 3.141592653589793 rad pos: 38.5,-10.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11516 + - uid: 8291 components: - rot: 3.141592653589793 rad pos: 38.5,-9.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11517 + - uid: 8292 components: - rot: 3.141592653589793 rad pos: 38.5,-8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11518 + - uid: 8293 components: - rot: 3.141592653589793 rad pos: 38.5,-7.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11519 + - uid: 8294 components: - rot: 3.141592653589793 rad pos: 38.5,-6.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11520 + - uid: 8295 components: - rot: 3.141592653589793 rad pos: 38.5,-5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11521 + - uid: 8296 components: - rot: 3.141592653589793 rad pos: 38.5,-4.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11522 + - uid: 8297 components: - rot: 3.141592653589793 rad pos: 38.5,-3.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11523 + - uid: 8298 components: - rot: 3.141592653589793 rad pos: 38.5,-2.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11524 + - uid: 8299 components: - pos: 38.5,-19.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11525 + - uid: 8300 components: - pos: 38.5,-18.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11526 + - uid: 8301 components: - pos: 38.5,-17.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11527 + - uid: 8302 components: - pos: 38.5,-16.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11529 + - uid: 8303 components: - rot: -1.5707963267948966 rad pos: 37.5,-20.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11530 + - uid: 8304 components: - rot: -1.5707963267948966 rad pos: 36.5,-20.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11531 + - uid: 8305 components: - rot: -1.5707963267948966 rad pos: 35.5,-20.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11532 + - uid: 8306 components: - rot: -1.5707963267948966 rad pos: 34.5,-20.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11533 + - uid: 8307 components: - rot: -1.5707963267948966 rad pos: 33.5,-20.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11534 + - uid: 8308 components: - rot: -1.5707963267948966 rad pos: 32.5,-20.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11535 + - uid: 8309 components: - rot: -1.5707963267948966 rad pos: 31.5,-20.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11549 + - uid: 8310 components: - rot: -1.5707963267948966 rad pos: 31.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11550 + - uid: 8311 components: - rot: -1.5707963267948966 rad pos: 30.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11551 + - uid: 8312 components: - rot: -1.5707963267948966 rad pos: 29.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11552 + - uid: 8313 components: - rot: -1.5707963267948966 rad pos: 28.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11553 + - uid: 8314 components: - rot: -1.5707963267948966 rad pos: 27.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11554 + - uid: 8315 components: - rot: -1.5707963267948966 rad pos: 26.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11556 + - uid: 8316 components: - rot: -1.5707963267948966 rad pos: 23.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11557 + - uid: 8317 components: - rot: -1.5707963267948966 rad pos: 22.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11558 + - uid: 8318 components: - rot: -1.5707963267948966 rad pos: 21.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11559 + - uid: 8319 components: - rot: 1.5707963267948966 rad pos: 19.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11562 + - uid: 8320 components: - rot: -1.5707963267948966 rad pos: 25.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11565 + - uid: 8321 components: - rot: 3.141592653589793 rad pos: 24.5,-2.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11566 + - uid: 8322 components: - rot: 3.141592653589793 rad pos: 24.5,-3.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11568 + - uid: 8323 components: - rot: 3.141592653589793 rad pos: 24.5,-5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11569 + - uid: 8324 components: - rot: 3.141592653589793 rad pos: 25.5,-7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11570 + - uid: 8325 components: - rot: 3.141592653589793 rad pos: 24.5,-1.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11571 + - uid: 8326 components: - pos: 24.5,-6.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11572 + - uid: 8327 components: - pos: 24.5,-7.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11573 + - uid: 8328 components: - pos: 24.5,-8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11574 + - uid: 8329 components: - pos: 24.5,-9.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11575 + - uid: 8330 components: - pos: 24.5,-11.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11576 + - uid: 8331 components: - pos: 24.5,-12.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11577 + - uid: 8332 components: - pos: 24.5,-13.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11578 + - uid: 8333 components: - pos: 24.5,-14.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11581 + - uid: 8334 components: - rot: 3.141592653589793 rad pos: 29.5,-17.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11582 + - uid: 8335 components: - rot: 3.141592653589793 rad pos: 29.5,-18.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11587 + - uid: 8336 components: - rot: 3.141592653589793 rad pos: -1.5,-23.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11588 + - uid: 8337 components: - rot: 3.141592653589793 rad pos: -1.5,-24.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11592 + - uid: 8338 components: - pos: -1.5,-26.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11593 + - uid: 8339 components: - pos: -1.5,-25.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11597 + - uid: 8340 components: - rot: 1.5707963267948966 rad pos: -0.5,-27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11598 + - uid: 8341 components: - rot: 1.5707963267948966 rad pos: 0.5,-27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11599 + - uid: 8342 components: - rot: 1.5707963267948966 rad pos: 1.5,-27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11600 + - uid: 8343 components: - rot: 1.5707963267948966 rad pos: 2.5,-27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11601 + - uid: 8344 components: - rot: 1.5707963267948966 rad pos: 3.5,-27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11602 + - uid: 8345 components: - rot: 1.5707963267948966 rad pos: 4.5,-27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11603 + - uid: 8346 components: - rot: 1.5707963267948966 rad pos: 5.5,-27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11605 + - uid: 8347 components: - rot: 1.5707963267948966 rad pos: 7.5,-27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11608 + - uid: 8348 components: - rot: 1.5707963267948966 rad pos: 32.5,-19.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11609 + - uid: 8349 components: - rot: 1.5707963267948966 rad pos: 33.5,-19.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11610 + - uid: 8350 components: - rot: 1.5707963267948966 rad pos: 34.5,-19.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11611 + - uid: 8351 components: - rot: 1.5707963267948966 rad pos: 35.5,-19.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11612 + - uid: 8352 components: - rot: 1.5707963267948966 rad pos: 36.5,-19.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11613 + - uid: 8353 components: - rot: 1.5707963267948966 rad pos: 37.5,-19.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11614 + - uid: 8354 components: - rot: 1.5707963267948966 rad pos: 38.5,-19.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11616 + - uid: 8355 components: - rot: 3.141592653589793 rad pos: 39.5,-18.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11617 + - uid: 8356 components: - rot: 3.141592653589793 rad pos: 39.5,-17.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11618 + - uid: 8357 components: - rot: 3.141592653589793 rad pos: 39.5,-16.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11627 + - uid: 8358 components: - pos: 6.5,-12.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11631 + - uid: 8359 components: - rot: -1.5707963267948966 rad pos: 16.5,-27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11632 + - uid: 8360 components: - rot: 1.5707963267948966 rad pos: 15.5,-25.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11637 + - uid: 8361 components: - rot: 1.5707963267948966 rad pos: 25.5,-12.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11638 + - uid: 8362 components: - rot: -1.5707963267948966 rad pos: 13.5,-20.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11640 + - uid: 8363 components: - rot: 3.141592653589793 rad pos: 25.5,-6.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11641 + - uid: 8364 components: - rot: -1.5707963267948966 rad pos: 25.5,-4.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11643 + - uid: 8365 components: - rot: 3.141592653589793 rad pos: 26.5,-13.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11644 + - uid: 8366 components: - rot: -1.5707963267948966 rad pos: 27.5,-14.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11645 + - uid: 8367 components: - rot: -1.5707963267948966 rad pos: 28.5,-14.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11646 + - uid: 8368 components: - rot: 3.141592653589793 rad pos: 26.5,-11.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11647 + - uid: 8369 components: - rot: 3.141592653589793 rad pos: 26.5,-10.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11652 + - uid: 8370 components: - rot: 3.141592653589793 rad pos: 25.5,-5.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11653 + - uid: 8371 components: - rot: 3.141592653589793 rad pos: 25.5,-4.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11654 + - uid: 8372 components: - rot: 3.141592653589793 rad pos: 25.5,-3.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11655 + - uid: 8373 components: - rot: 3.141592653589793 rad pos: 25.5,-2.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11656 + - uid: 8374 components: - rot: 3.141592653589793 rad pos: 25.5,-1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11657 + - uid: 8375 components: - rot: 3.141592653589793 rad pos: 25.5,-0.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11658 + - uid: 8376 components: - rot: 3.141592653589793 rad pos: 25.5,0.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11661 + - uid: 8377 components: - rot: 1.5707963267948966 rad pos: 28.5,-16.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11662 + - uid: 8378 components: - rot: 1.5707963267948966 rad pos: 26.5,-16.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11663 + - uid: 8379 components: - rot: 1.5707963267948966 rad pos: 25.5,-16.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11668 + - uid: 8380 components: - rot: 1.5707963267948966 rad pos: 23.5,-12.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11669 + - uid: 8381 components: - rot: 1.5707963267948966 rad pos: 22.5,-12.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11671 + - uid: 8382 components: - rot: 1.5707963267948966 rad pos: 22.5,-15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11672 + - uid: 8383 components: - rot: 1.5707963267948966 rad pos: 23.5,-15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11673 + - uid: 8384 components: - rot: -1.5707963267948966 rad pos: 15.5,-20.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11674 + - uid: 8385 components: - rot: -1.5707963267948966 rad pos: 16.5,-20.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11675 + - uid: 8386 components: - rot: 3.141592653589793 rad pos: 17.5,-19.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11676 + - uid: 8387 components: - rot: 3.141592653589793 rad pos: 17.5,-18.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11696 + - uid: 8388 components: - pos: 34.5,2.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11698 + - uid: 8389 components: - pos: 34.5,4.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11699 + - uid: 8390 components: - pos: 34.5,5.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11700 + - uid: 8391 components: - pos: 34.5,6.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11701 + - uid: 8392 components: - pos: 34.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11702 + - uid: 8393 components: - pos: 34.5,8.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11703 + - uid: 8394 components: - pos: 34.5,9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11704 + - uid: 8395 components: - pos: 34.5,10.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11705 + - uid: 8396 components: - pos: 34.5,11.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11711 + - uid: 8397 components: - rot: 3.141592653589793 rad pos: 33.5,0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11712 + - uid: 8398 components: - rot: 3.141592653589793 rad pos: 33.5,1.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11713 + - uid: 8399 components: - rot: 3.141592653589793 rad pos: 33.5,2.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11714 + - uid: 8400 components: - rot: 3.141592653589793 rad pos: 33.5,4.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11715 + - uid: 8401 components: - rot: 3.141592653589793 rad pos: 33.5,5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11716 + - uid: 8402 components: - rot: -1.5707963267948966 rad pos: 8.5,-3.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11717 + - uid: 8403 components: - rot: 3.141592653589793 rad pos: 33.5,7.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11718 + - uid: 8404 components: - rot: 3.141592653589793 rad pos: 33.5,8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11719 + - uid: 8405 components: - rot: 3.141592653589793 rad pos: 33.5,9.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11720 + - uid: 8406 components: - rot: 3.141592653589793 rad pos: 33.5,10.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11738 + - uid: 8407 components: - rot: -1.5707963267948966 rad pos: 20.5,-15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11739 + - uid: 8408 components: - rot: -1.5707963267948966 rad pos: 19.5,-15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11740 + - uid: 8409 components: - rot: -1.5707963267948966 rad pos: 18.5,-15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11742 + - uid: 8410 components: - rot: 3.141592653589793 rad pos: 17.5,-16.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11746 + - uid: 8411 components: - rot: 3.141592653589793 rad pos: 21.5,-14.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11747 + - uid: 8412 components: - rot: 3.141592653589793 rad pos: 25.5,-16.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11748 + - uid: 8413 components: - rot: 3.141592653589793 rad pos: 25.5,-15.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11749 + - uid: 8414 components: - rot: 3.141592653589793 rad pos: 25.5,-17.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11750 + - uid: 8415 components: - rot: 3.141592653589793 rad pos: 25.5,-18.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11751 + - uid: 8416 components: - rot: 3.141592653589793 rad pos: 25.5,-19.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11752 + - uid: 8417 components: - rot: 1.5707963267948966 rad pos: 24.5,-20.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11753 + - uid: 8418 components: - rot: 1.5707963267948966 rad pos: 23.5,-20.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11754 + - uid: 8419 components: - rot: 1.5707963267948966 rad pos: 22.5,-20.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11826 + - uid: 8420 components: - rot: 1.5707963267948966 rad pos: 41.5,11.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11827 + - uid: 8421 components: - rot: 1.5707963267948966 rad pos: 42.5,11.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11828 + - uid: 8422 components: - rot: 1.5707963267948966 rad pos: 43.5,11.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11829 + - uid: 8423 components: - rot: 1.5707963267948966 rad pos: 38.5,11.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11830 + - uid: 8424 components: - rot: 1.5707963267948966 rad pos: 37.5,11.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11831 + - uid: 8425 components: - rot: 1.5707963267948966 rad pos: 36.5,11.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11832 + - uid: 8426 components: - rot: 1.5707963267948966 rad pos: 35.5,11.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11833 + - uid: 8427 components: - rot: 1.5707963267948966 rad pos: 34.5,11.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11840 + - uid: 8428 components: - rot: -1.5707963267948966 rad pos: 38.5,0.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11843 + - uid: 8429 components: - rot: 3.141592653589793 rad pos: 40.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11845 + - uid: 8430 components: - rot: 3.141592653589793 rad pos: 40.5,2.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11846 + - uid: 8431 components: - rot: 3.141592653589793 rad pos: 40.5,4.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11847 + - uid: 8432 components: - rot: 3.141592653589793 rad pos: 40.5,5.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11848 + - uid: 8433 components: - rot: 3.141592653589793 rad pos: 40.5,6.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11849 + - uid: 8434 components: - rot: 3.141592653589793 rad pos: 40.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11850 + - uid: 8435 components: - rot: 3.141592653589793 rad pos: 40.5,8.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11859 + - uid: 8436 components: - pos: 41.5,10.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11860 + - uid: 8437 components: - pos: 41.5,11.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11861 + - uid: 8438 components: - pos: 41.5,12.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11862 + - uid: 8439 components: - pos: 41.5,13.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11863 + - uid: 8440 components: - pos: 41.5,14.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11865 + - uid: 8441 components: - rot: 1.5707963267948966 rad pos: 42.5,9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11866 + - uid: 8442 components: - rot: 1.5707963267948966 rad pos: 43.5,9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11881 + - uid: 8443 components: - rot: 1.5707963267948966 rad pos: 39.5,16.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11882 + - uid: 8444 components: - rot: 1.5707963267948966 rad pos: 38.5,16.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11883 + - uid: 8445 components: - rot: 1.5707963267948966 rad pos: 37.5,16.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11884 + - uid: 8446 components: - pos: 36.5,17.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11886 + - uid: 8447 components: - rot: -1.5707963267948966 rad pos: 35.5,19.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11887 + - uid: 8448 components: - rot: -1.5707963267948966 rad pos: 34.5,19.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11891 + - uid: 8449 components: - rot: -1.5707963267948966 rad pos: 25.5,-9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11892 + - uid: 8450 components: - rot: -1.5707963267948966 rad pos: 24.5,-9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11893 + - uid: 8451 components: - rot: -1.5707963267948966 rad pos: 23.5,-9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11894 + - uid: 8452 components: - rot: -1.5707963267948966 rad pos: 22.5,-9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11895 + - uid: 8453 components: - rot: -1.5707963267948966 rad pos: 38.5,15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11896 + - uid: 8454 components: - rot: -1.5707963267948966 rad pos: 20.5,-9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11897 + - uid: 8455 components: - rot: -1.5707963267948966 rad pos: 19.5,-9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11898 + - uid: 8456 components: - rot: 3.141592653589793 rad pos: 33.5,21.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11899 + - uid: 8457 components: - rot: 3.141592653589793 rad pos: 33.5,22.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11900 + - uid: 8458 components: - rot: 3.141592653589793 rad pos: 33.5,23.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11902 + - uid: 8459 components: - rot: 3.141592653589793 rad pos: 18.5,-8.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11903 + - uid: 8460 components: - rot: 3.141592653589793 rad pos: 18.5,-7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11907 + - uid: 8461 components: - pos: 39.5,12.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11908 + - uid: 8462 components: - pos: 39.5,13.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11909 + - uid: 8463 components: - pos: 39.5,14.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11910 + - uid: 8464 components: - rot: -1.5707963267948966 rad pos: 37.5,15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11911 + - uid: 8465 components: - rot: -1.5707963267948966 rad pos: 36.5,15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11913 + - uid: 8466 components: - rot: 3.141592653589793 rad pos: 35.5,16.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11914 + - uid: 8467 components: - rot: 3.141592653589793 rad pos: 35.5,17.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11916 + - uid: 8468 components: - rot: 1.5707963267948966 rad pos: 34.5,18.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11917 + - uid: 8469 components: - rot: 1.5707963267948966 rad pos: 33.5,18.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11918 + - uid: 8470 components: - rot: 1.5707963267948966 rad pos: 32.5,18.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11921 + - uid: 8471 components: - pos: 31.5,19.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11922 + - uid: 8472 components: - pos: 31.5,20.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11923 + - uid: 8473 components: - pos: 31.5,21.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11927 + - uid: 8474 components: - rot: 1.5707963267948966 rad pos: 23.5,-4.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11928 + - uid: 8475 components: - rot: 1.5707963267948966 rad pos: 22.5,-4.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11929 + - uid: 8476 components: - rot: 1.5707963267948966 rad pos: 21.5,-4.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11955 + - uid: 8477 components: - pos: 31.5,23.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11956 + - uid: 8478 components: - pos: 31.5,24.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11957 + - uid: 8479 components: - pos: 31.5,25.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11958 + - uid: 8480 components: - pos: 31.5,26.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11964 + - uid: 8481 components: - rot: -1.5707963267948966 rad pos: 29.5,27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11967 + - uid: 8482 components: - rot: -1.5707963267948966 rad pos: 30.5,27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11969 + - uid: 8483 components: - rot: -1.5707963267948966 rad pos: 26.5,29.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11970 + - uid: 8484 components: - rot: -1.5707963267948966 rad pos: 25.5,29.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11971 + - uid: 8485 components: - rot: -1.5707963267948966 rad pos: 24.5,29.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11972 + - uid: 8486 components: - rot: -1.5707963267948966 rad pos: 23.5,29.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11973 + - uid: 8487 components: - rot: -1.5707963267948966 rad pos: 22.5,29.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11974 + - uid: 8488 components: - rot: -1.5707963267948966 rad pos: 21.5,29.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11977 + - uid: 8489 components: - rot: -1.5707963267948966 rad pos: 21.5,29.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11978 + - uid: 8490 components: - rot: -1.5707963267948966 rad pos: 19.5,29.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11979 + - uid: 8491 components: - rot: -1.5707963267948966 rad pos: 18.5,29.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11980 + - uid: 8492 components: - rot: -1.5707963267948966 rad pos: 17.5,29.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11981 + - uid: 8493 components: - rot: -1.5707963267948966 rad pos: 16.5,29.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11982 + - uid: 8494 components: - rot: -1.5707963267948966 rad pos: 15.5,29.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11983 + - uid: 8495 components: - rot: -1.5707963267948966 rad pos: 14.5,29.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11985 + - uid: 8496 components: - rot: -1.5707963267948966 rad pos: 12.5,29.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11986 + - uid: 8497 components: - rot: -1.5707963267948966 rad pos: 11.5,29.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11987 + - uid: 8498 components: - rot: -1.5707963267948966 rad pos: 10.5,29.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11988 + - uid: 8499 components: - rot: -1.5707963267948966 rad pos: 9.5,29.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11989 + - uid: 8500 components: - rot: -1.5707963267948966 rad pos: 8.5,29.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11990 + - uid: 8501 components: - rot: -1.5707963267948966 rad pos: 7.5,29.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11991 + - uid: 8502 components: - rot: -1.5707963267948966 rad pos: 6.5,29.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11992 + - uid: 8503 components: - rot: 3.141592653589793 rad pos: 5.5,28.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11993 + - uid: 8504 components: - rot: 3.141592653589793 rad pos: 5.5,27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11997 + - uid: 8505 components: - rot: 3.141592653589793 rad pos: 5.5,26.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11998 + - uid: 8506 components: - rot: 1.5707963267948966 rad pos: 4.5,25.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11999 + - uid: 8507 components: - rot: 1.5707963267948966 rad pos: 18.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12000 + - uid: 8508 components: - rot: 1.5707963267948966 rad pos: 17.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12001 + - uid: 8509 components: - rot: 1.5707963267948966 rad pos: 16.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12002 + - uid: 8510 components: - rot: 1.5707963267948966 rad pos: 15.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12003 + - uid: 8511 components: - rot: 3.141592653589793 rad pos: 27.5,2.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12011 + - uid: 8512 components: - pos: 32.5,27.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12012 + - uid: 8513 components: - pos: 32.5,26.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12013 + - uid: 8514 components: - pos: 32.5,25.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12015 + - uid: 8515 components: - rot: -1.5707963267948966 rad pos: 31.5,28.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12016 + - uid: 8516 components: - rot: -1.5707963267948966 rad pos: 30.5,28.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12017 + - uid: 8517 components: - rot: -1.5707963267948966 rad pos: 29.5,28.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12018 + - uid: 8518 components: - rot: -1.5707963267948966 rad pos: 28.5,28.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12019 + - uid: 8519 components: - rot: -1.5707963267948966 rad pos: 27.5,28.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12020 + - uid: 8520 components: - rot: -1.5707963267948966 rad pos: 26.5,28.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12021 + - uid: 8521 components: - rot: -1.5707963267948966 rad pos: 25.5,28.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12022 + - uid: 8522 components: - rot: -1.5707963267948966 rad pos: 24.5,28.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12023 + - uid: 8523 components: - rot: -1.5707963267948966 rad pos: 23.5,28.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12024 + - uid: 8524 components: - rot: -1.5707963267948966 rad pos: 22.5,28.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12025 + - uid: 8525 components: - rot: -1.5707963267948966 rad pos: 21.5,28.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12026 + - uid: 8526 components: - rot: -1.5707963267948966 rad pos: 20.5,28.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12027 + - uid: 8527 components: - rot: -1.5707963267948966 rad pos: 19.5,28.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12028 + - uid: 8528 components: - rot: -1.5707963267948966 rad pos: 18.5,28.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12029 + - uid: 8529 components: - rot: -1.5707963267948966 rad pos: 17.5,28.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12030 + - uid: 8530 components: - rot: -1.5707963267948966 rad pos: 16.5,28.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12031 + - uid: 8531 components: - rot: -1.5707963267948966 rad pos: 15.5,28.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12032 + - uid: 8532 components: - rot: -1.5707963267948966 rad pos: 14.5,28.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12033 + - uid: 8533 components: - rot: -1.5707963267948966 rad pos: 13.5,28.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12034 + - uid: 8534 components: - rot: 3.141592653589793 rad pos: 12.5,29.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12039 + - uid: 8535 components: - rot: 3.141592653589793 rad pos: 4.5,29.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12040 + - uid: 8536 components: - rot: 3.141592653589793 rad pos: 4.5,28.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12041 + - uid: 8537 components: - pos: 14.5,-1.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12042 + - uid: 8538 components: - pos: 14.5,-2.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12044 + - uid: 8539 components: - rot: 1.5707963267948966 rad pos: 5.5,30.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12045 + - uid: 8540 components: - rot: 1.5707963267948966 rad pos: 6.5,30.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12046 + - uid: 8541 components: - rot: 1.5707963267948966 rad pos: 7.5,30.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12047 + - uid: 8542 components: - rot: 1.5707963267948966 rad pos: 8.5,30.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12048 + - uid: 8543 components: - rot: 1.5707963267948966 rad pos: 9.5,30.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12049 + - uid: 8544 components: - rot: 1.5707963267948966 rad pos: 10.5,30.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12050 + - uid: 8545 components: - rot: 1.5707963267948966 rad pos: 11.5,30.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12054 + - uid: 8546 components: - rot: 3.141592653589793 rad pos: 5.5,24.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12055 + - uid: 8547 components: - rot: 3.141592653589793 rad pos: 5.5,23.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12056 + - uid: 8548 components: - rot: 3.141592653589793 rad pos: 5.5,22.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12057 + - uid: 8549 components: - rot: 3.141592653589793 rad pos: 5.5,21.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12058 + - uid: 8550 components: - rot: 3.141592653589793 rad pos: 5.5,20.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12059 + - uid: 8551 components: - rot: 3.141592653589793 rad pos: 5.5,19.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12060 + - uid: 8552 components: - rot: 3.141592653589793 rad pos: 5.5,18.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12061 + - uid: 8553 components: - rot: 3.141592653589793 rad pos: 5.5,17.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12062 + - uid: 8554 components: - rot: 3.141592653589793 rad pos: 5.5,16.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12065 + - uid: 8555 components: - pos: 4.5,26.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12066 + - uid: 8556 components: - pos: 4.5,25.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12074 + - uid: 8557 components: - rot: -1.5707963267948966 rad pos: 5.5,24.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12075 + - uid: 8558 components: - rot: 3.141592653589793 rad pos: 6.5,23.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12076 + - uid: 8559 components: - rot: 3.141592653589793 rad pos: 6.5,22.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12077 + - uid: 8560 components: - rot: 3.141592653589793 rad pos: 6.5,21.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12078 + - uid: 8561 components: - rot: 3.141592653589793 rad pos: 6.5,20.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12079 + - uid: 8562 components: - rot: 3.141592653589793 rad pos: 6.5,19.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12080 + - uid: 8563 components: - rot: 3.141592653589793 rad pos: 6.5,18.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12081 + - uid: 8564 components: - rot: 3.141592653589793 rad pos: 6.5,17.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12082 + - uid: 8565 components: - rot: 3.141592653589793 rad pos: 6.5,16.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12083 + - uid: 8566 components: - rot: 3.141592653589793 rad pos: 6.5,15.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12086 + - uid: 8567 components: - pos: 14.5,-5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12093 + - uid: 8568 components: - pos: 14.5,-4.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12094 + - uid: 8569 components: - rot: -1.5707963267948966 rad pos: 9.5,-4.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12097 + - uid: 8570 components: - rot: 3.141592653589793 rad pos: 27.5,3.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12098 + - uid: 8571 components: - rot: 3.141592653589793 rad pos: 27.5,4.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12102 + - uid: 8572 components: - rot: -1.5707963267948966 rad pos: 13.5,-3.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12103 + - uid: 8573 components: - rot: -1.5707963267948966 rad pos: 12.5,-3.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12104 + - uid: 8574 components: - rot: -1.5707963267948966 rad pos: 11.5,-3.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12105 + - uid: 8575 components: - rot: -1.5707963267948966 rad pos: 10.5,-3.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12106 + - uid: 8576 components: - rot: -1.5707963267948966 rad pos: 9.5,-3.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12108 + - uid: 8577 components: - rot: 3.141592653589793 rad pos: 26.5,7.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12109 + - uid: 8578 components: - rot: 3.141592653589793 rad pos: 26.5,8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12110 + - uid: 8579 components: - rot: 1.5707963267948966 rad pos: 25.5,6.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12111 + - uid: 8580 components: - rot: 1.5707963267948966 rad pos: 24.5,6.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12114 + - uid: 8581 components: - rot: -1.5707963267948966 rad pos: 14.5,4.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12118 + - uid: 8582 components: - rot: 1.5707963267948966 rad pos: 12.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12119 + - uid: 8583 components: - rot: 1.5707963267948966 rad pos: 13.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12120 + - uid: 8584 components: - rot: 1.5707963267948966 rad pos: 14.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12121 + - uid: 8585 components: - rot: 1.5707963267948966 rad pos: 15.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12122 + - uid: 8586 components: - rot: 1.5707963267948966 rad pos: 16.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12123 + - uid: 8587 components: - pos: 1.5,0.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12124 + - uid: 8588 components: - pos: 11.5,0.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12125 + - uid: 8589 components: - pos: 11.5,-0.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12126 + - uid: 8590 components: - pos: 11.5,-1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12127 + - uid: 8591 components: - pos: 11.5,-2.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12128 + - uid: 8592 components: - pos: 11.5,-3.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12132 + - uid: 8593 components: - pos: 8.5,-3.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12137 + - uid: 8594 components: - rot: 1.5707963267948966 rad pos: 22.5,22.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12143 + - uid: 8595 components: - rot: -1.5707963267948966 rad pos: 12.5,-13.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12146 + - uid: 8596 components: - pos: 13.5,-7.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12147 + - uid: 8597 components: - pos: 13.5,-8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12148 + - uid: 8598 components: - rot: 3.141592653589793 rad pos: 21.5,23.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12152 + - uid: 8599 components: - rot: -1.5707963267948966 rad pos: 25.5,13.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12153 + - uid: 8600 components: - rot: 3.141592653589793 rad pos: 22.5,20.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12157 + - uid: 8601 components: - pos: 13.5,-10.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12159 + - uid: 8602 components: - rot: 1.5707963267948966 rad pos: 24.5,22.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12160 + - uid: 8603 components: - rot: 1.5707963267948966 rad pos: 25.5,22.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12161 + - uid: 8604 components: - pos: 13.5,-11.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12163 + - uid: 8605 components: - pos: 13.5,-12.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12167 + - uid: 8606 components: - pos: 26.5,20.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12168 + - uid: 8607 components: - pos: 26.5,19.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12169 + - uid: 8608 components: - pos: 26.5,18.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12170 + - uid: 8609 components: - pos: 26.5,17.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12171 + - uid: 8610 components: - pos: 26.5,16.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12173 + - uid: 8611 components: - pos: 26.5,14.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12174 + - uid: 8612 components: - pos: 26.5,13.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12176 + - uid: 8613 components: - rot: -1.5707963267948966 rad pos: 11.5,-13.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12178 + - uid: 8614 components: - rot: -1.5707963267948966 rad pos: 9.5,-13.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12181 + - uid: 8615 components: - rot: -1.5707963267948966 rad pos: 18.5,-27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12183 + - uid: 8616 components: - pos: 10.5,-28.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12184 + - uid: 8617 components: - rot: -1.5707963267948966 rad pos: 24.5,13.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12188 + - uid: 8618 components: - rot: -1.5707963267948966 rad pos: 24.5,19.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12191 + - uid: 8619 components: - rot: -1.5707963267948966 rad pos: 23.5,19.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12196 + - uid: 8620 components: - rot: 3.141592653589793 rad pos: 22.5,18.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12197 + - uid: 8621 components: - rot: 3.141592653589793 rad pos: 22.5,17.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12199 + - uid: 8622 components: - rot: 3.141592653589793 rad pos: 22.5,15.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12200 + - uid: 8623 components: - rot: 3.141592653589793 rad pos: 22.5,14.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12202 + - uid: 8624 components: - rot: 1.5707963267948966 rad pos: 23.5,13.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12213 + - uid: 8625 components: - pos: -22.5,-13.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12215 + - uid: 8626 components: - rot: -1.5707963267948966 rad pos: 25.5,15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12216 + - uid: 8627 components: - rot: -1.5707963267948966 rad pos: 24.5,15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12220 + - uid: 8628 components: - rot: -1.5707963267948966 rad pos: 23.5,15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12221 + - uid: 8629 components: - rot: -1.5707963267948966 rad pos: 22.5,15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12223 + - uid: 8630 components: - pos: 8.5,-5.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12224 + - uid: 8631 components: - rot: -1.5707963267948966 rad pos: 7.5,-6.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12225 + - uid: 8632 components: - rot: -1.5707963267948966 rad pos: 6.5,-6.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12227 + - uid: 8633 components: - rot: 3.141592653589793 rad pos: 5.5,-7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12228 + - uid: 8634 components: - rot: 3.141592653589793 rad pos: 5.5,-8.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12229 + - uid: 8635 components: - rot: 3.141592653589793 rad pos: 5.5,-9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12236 + - uid: 8636 components: - rot: 3.141592653589793 rad pos: 5.5,-11.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12242 + - uid: 8637 components: - pos: 12.5,-21.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12244 + - uid: 8638 components: - pos: 5.5,-14.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12246 + - uid: 8639 components: - pos: 9.5,-18.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12250 + - uid: 8640 components: - rot: 3.141592653589793 rad pos: 7.5,-4.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12251 + - uid: 8641 components: - rot: 1.5707963267948966 rad pos: 6.5,-5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12268 + - uid: 8642 components: - rot: 1.5707963267948966 rad pos: 21.5,16.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12269 + - uid: 8643 components: - rot: 1.5707963267948966 rad pos: 20.5,16.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12270 + - uid: 8644 components: - rot: 1.5707963267948966 rad pos: 20.5,15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12272 + - uid: 8645 components: - rot: 1.5707963267948966 rad pos: 19.5,16.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12278 + - uid: 8646 components: - rot: 3.141592653589793 rad pos: 19.5,16.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12279 + - uid: 8647 components: - rot: 3.141592653589793 rad pos: 19.5,17.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12286 + - uid: 8648 components: - rot: 1.5707963267948966 rad pos: 16.5,16.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12289 + - uid: 8649 components: - rot: -1.5707963267948966 rad pos: 17.5,15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12291 + - uid: 8650 components: - rot: -1.5707963267948966 rad pos: 15.5,15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12292 + - uid: 8651 components: - rot: -1.5707963267948966 rad pos: 14.5,15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12293 + - uid: 8652 components: - rot: -1.5707963267948966 rad pos: 13.5,15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12296 + - uid: 8653 components: - rot: -1.5707963267948966 rad pos: 14.5,16.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12298 + - uid: 8654 components: - rot: -1.5707963267948966 rad pos: 12.5,16.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12312 + - uid: 8655 components: - pos: 12.5,16.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12313 + - uid: 8656 components: - pos: 12.5,17.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12314 + - uid: 8657 components: - pos: 12.5,18.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12315 + - uid: 8658 components: - pos: 12.5,19.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12316 + - uid: 8659 components: - rot: -1.5707963267948966 rad pos: 4.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12317 + - uid: 8660 components: - pos: 13.5,17.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12318 + - uid: 8661 components: - pos: 13.5,18.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12320 + - uid: 8662 components: - pos: 13.5,20.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12322 + - uid: 8663 components: - pos: 11.5,15.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12323 + - uid: 8664 components: - pos: 11.5,14.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12328 + - uid: 8665 components: - rot: 1.5707963267948966 rad pos: 12.5,12.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12329 + - uid: 8666 components: - rot: 1.5707963267948966 rad pos: 13.5,12.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12333 + - uid: 8667 components: - rot: 3.141592653589793 rad pos: 18.5,14.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12334 + - uid: 8668 components: - rot: 3.141592653589793 rad pos: 18.5,13.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12356 + - uid: 8669 components: - rot: 3.141592653589793 rad pos: 13.5,3.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12357 + - uid: 8670 components: - rot: 3.141592653589793 rad pos: 12.5,3.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12381 + - uid: 8671 components: - pos: 14.5,1.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12388 + - uid: 8672 components: - pos: 14.5,0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12391 + - uid: 8673 components: - rot: 3.141592653589793 rad pos: 15.5,5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12392 + - uid: 8674 components: - pos: 4.5,-27.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12396 + - uid: 8675 components: - rot: -1.5707963267948966 rad pos: 3.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12400 + - uid: 8676 components: - rot: -1.5707963267948966 rad pos: 17.5,12.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12401 + - uid: 8677 components: - rot: 3.141592653589793 rad pos: 18.5,11.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12402 + - uid: 8678 components: - rot: 3.141592653589793 rad pos: 18.5,10.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12403 + - uid: 8679 components: - rot: 3.141592653589793 rad pos: 18.5,9.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12404 + - uid: 8680 components: - rot: 3.141592653589793 rad pos: 18.5,8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12405 + - uid: 8681 components: - rot: 3.141592653589793 rad pos: 18.5,7.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12407 + - uid: 8682 components: - rot: 1.5707963267948966 rad pos: 17.5,6.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12408 + - uid: 8683 components: - rot: 1.5707963267948966 rad pos: 16.5,6.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12409 + - uid: 8684 components: - rot: -1.5707963267948966 rad pos: 3.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12411 + - uid: 8685 components: - pos: 14.5,11.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12412 + - uid: 8686 components: - pos: 14.5,10.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12413 + - uid: 8687 components: - pos: 14.5,9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12414 + - uid: 8688 components: - pos: 14.5,8.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12415 + - uid: 8689 components: - pos: -0.5,-1.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12416 + - uid: 8690 components: - pos: 14.5,6.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12418 + - uid: 8691 components: - rot: -1.5707963267948966 rad pos: 13.5,5.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12426 + - uid: 8692 components: - rot: -1.5707963267948966 rad pos: 12.5,0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12433 + - uid: 8693 components: - rot: -1.5707963267948966 rad pos: 12.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12434 + - uid: 8694 components: - rot: -1.5707963267948966 rad pos: 11.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12435 + - uid: 8695 components: - rot: -1.5707963267948966 rad pos: 10.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12436 + - uid: 8696 components: - rot: -1.5707963267948966 rad pos: 9.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12437 + - uid: 8697 components: - rot: -1.5707963267948966 rad pos: 8.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12438 + - uid: 8698 components: - rot: -1.5707963267948966 rad pos: 7.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12439 + - uid: 8699 components: - rot: -1.5707963267948966 rad pos: 6.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12440 + - uid: 8700 components: - rot: -1.5707963267948966 rad pos: 5.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12441 + - uid: 8701 components: - rot: -1.5707963267948966 rad pos: 4.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12443 + - uid: 8702 components: - rot: 1.5707963267948966 rad pos: 11.5,4.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12444 + - uid: 8703 components: - rot: -1.5707963267948966 rad pos: 9.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12446 + - uid: 8704 components: - rot: -1.5707963267948966 rad pos: 7.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12448 + - uid: 8705 components: - rot: -1.5707963267948966 rad pos: 5.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12458 + - uid: 8706 components: - rot: -1.5707963267948966 rad pos: 2.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12459 + - uid: 8707 components: - rot: -1.5707963267948966 rad pos: 1.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12469 + - uid: 8708 components: - rot: 1.5707963267948966 rad pos: 19.5,6.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12479 + - uid: 8709 components: - pos: 22.5,12.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12480 + - uid: 8710 components: - pos: 22.5,11.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12481 + - uid: 8711 components: - pos: 22.5,10.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12482 + - uid: 8712 components: - pos: 22.5,9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12483 + - uid: 8713 components: - pos: 22.5,8.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12502 + - uid: 8714 components: - rot: 1.5707963267948966 rad pos: 28.5,-19.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12503 + - uid: 8715 components: - rot: 1.5707963267948966 rad pos: 15.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12504 + - uid: 8716 components: - rot: 1.5707963267948966 rad pos: 16.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12505 + - uid: 8717 components: - rot: 1.5707963267948966 rad pos: 17.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12506 + - uid: 8718 components: - rot: 1.5707963267948966 rad pos: 18.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12507 + - uid: 8719 components: - rot: 1.5707963267948966 rad pos: 19.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12508 + - uid: 8720 components: - rot: 1.5707963267948966 rad pos: 20.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12509 + - uid: 8721 components: - rot: 1.5707963267948966 rad pos: 21.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12511 + - uid: 8722 components: - pos: -0.5,-2.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12531 + - uid: 8723 components: - pos: -1.5,-4.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12532 + - uid: 8724 components: - pos: -0.5,0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12535 + - uid: 8725 components: - pos: -0.5,2.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12536 + - uid: 8726 components: - rot: 1.5707963267948966 rad pos: 11.5,24.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12544 + - uid: 8727 components: - pos: 0.5,4.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12545 + - uid: 8728 components: - rot: 1.5707963267948966 rad pos: 12.5,24.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12549 + - uid: 8729 components: - rot: -1.5707963267948966 rad pos: 14.5,24.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12550 + - uid: 8730 components: - rot: -1.5707963267948966 rad pos: 15.5,24.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12551 + - uid: 8731 components: - rot: -1.5707963267948966 rad pos: 15.5,25.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12552 + - uid: 8732 components: - rot: -1.5707963267948966 rad pos: 14.5,25.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12554 + - uid: 8733 components: - rot: -1.5707963267948966 rad pos: 11.5,25.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12555 + - uid: 8734 components: - rot: -1.5707963267948966 rad pos: 10.5,25.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12558 + - uid: 8735 components: - rot: -1.5707963267948966 rad pos: 2.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12560 + - uid: 8736 components: - pos: 5.5,-15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12566 + - uid: 8737 components: - pos: 1.5,-0.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12567 + - uid: 8738 components: - pos: 1.5,-1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12568 + - uid: 8739 components: - pos: 1.5,-2.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12582 + - uid: 8740 components: - rot: 1.5707963267948966 rad pos: 10.5,21.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12583 + - uid: 8741 components: - rot: 1.5707963267948966 rad pos: 11.5,21.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12584 + - uid: 8742 components: - rot: 1.5707963267948966 rad pos: 10.5,19.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12585 + - uid: 8743 components: - rot: 1.5707963267948966 rad pos: 11.5,19.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12588 + - uid: 8744 components: - pos: 13.5,21.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12589 + - uid: 8745 components: - pos: 13.5,22.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12591 + - uid: 8746 components: - pos: 12.5,22.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12592 + - uid: 8747 components: - pos: 12.5,23.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12593 + - uid: 8748 components: - pos: 12.5,24.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12619 + - uid: 8749 components: - rot: -1.5707963267948966 rad pos: 10.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12620 + - uid: 8750 components: - rot: -1.5707963267948966 rad pos: 9.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12621 + - uid: 8751 components: - rot: -1.5707963267948966 rad pos: 8.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12622 + - uid: 8752 components: - rot: 3.141592653589793 rad pos: 11.5,8.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12623 + - uid: 8753 components: - rot: 3.141592653589793 rad pos: 11.5,9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12624 + - uid: 8754 components: - rot: 3.141592653589793 rad pos: 11.5,10.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12625 + - uid: 8755 components: - rot: 3.141592653589793 rad pos: 11.5,11.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12626 + - uid: 8756 components: - rot: 1.5707963267948966 rad pos: 11.5,11.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12628 + - uid: 8757 components: - rot: 1.5707963267948966 rad pos: 9.5,11.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12629 + - uid: 8758 components: - rot: 1.5707963267948966 rad pos: 8.5,11.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12652 + - uid: 8759 components: - pos: 12.5,14.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12653 + - uid: 8760 components: - pos: 12.5,13.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12654 + - uid: 8761 components: - pos: 12.5,12.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12699 + - uid: 8762 components: - rot: 1.5707963267948966 rad pos: 13.5,-25.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12728 + - uid: 8763 components: - rot: 1.5707963267948966 rad pos: -15.5,-12.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12730 + - uid: 8764 components: - rot: 1.5707963267948966 rad pos: 21.5,6.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12731 + - uid: 8765 components: - rot: 1.5707963267948966 rad pos: 22.5,6.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12732 + - uid: 8766 components: - rot: 1.5707963267948966 rad pos: 23.5,6.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12765 + - uid: 8767 components: - rot: -1.5707963267948966 rad pos: 0.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12766 + - uid: 8768 components: - rot: -1.5707963267948966 rad pos: -0.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12767 + - uid: 8769 components: - rot: -1.5707963267948966 rad pos: -1.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12768 + - uid: 8770 components: - rot: -1.5707963267948966 rad pos: -2.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12769 + - uid: 8771 components: - rot: -1.5707963267948966 rad pos: -3.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12770 + - uid: 8772 components: - rot: 3.141592653589793 rad pos: -4.5,2.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12771 + - uid: 8773 components: - rot: 3.141592653589793 rad pos: -4.5,3.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12773 + - uid: 8774 components: - rot: 3.141592653589793 rad pos: -4.5,5.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12774 + - uid: 8775 components: - rot: 3.141592653589793 rad pos: -4.5,6.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12806 + - uid: 8776 components: - rot: -1.5707963267948966 rad pos: -3.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12807 + - uid: 8777 components: - rot: -1.5707963267948966 rad pos: -2.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12808 + - uid: 8778 components: - rot: -1.5707963267948966 rad pos: -1.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12826 + - uid: 8779 components: - pos: -7.5,13.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12830 + - uid: 8780 components: - rot: 3.141592653589793 rad pos: -4.5,8.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12831 + - uid: 8781 components: - rot: 3.141592653589793 rad pos: -4.5,9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12832 + - uid: 8782 components: - rot: 1.5707963267948966 rad pos: -5.5,10.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12833 + - uid: 8783 components: - rot: 1.5707963267948966 rad pos: -6.5,10.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12835 + - uid: 8784 components: - rot: 3.141592653589793 rad pos: -7.5,12.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12836 + - uid: 8785 components: - rot: -1.5707963267948966 rad pos: -1.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12837 + - uid: 8786 components: - rot: -1.5707963267948966 rad pos: -2.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12839 + - uid: 8787 components: - rot: -1.5707963267948966 rad pos: -4.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12841 + - uid: 8788 components: - rot: -1.5707963267948966 rad pos: -6.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12842 + - uid: 8789 components: - rot: -1.5707963267948966 rad pos: -7.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12844 + - uid: 8790 components: - rot: -1.5707963267948966 rad pos: -9.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12845 + - uid: 8791 components: - rot: -1.5707963267948966 rad pos: -10.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12846 + - uid: 8792 components: - rot: -1.5707963267948966 rad pos: -11.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12847 + - uid: 8793 components: - rot: -1.5707963267948966 rad pos: -12.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12848 + - uid: 8794 components: - rot: -1.5707963267948966 rad pos: -13.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12850 + - uid: 8795 components: - rot: -1.5707963267948966 rad pos: -15.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12851 + - uid: 8796 components: - rot: -1.5707963267948966 rad pos: -5.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12852 + - uid: 8797 components: - rot: -1.5707963267948966 rad pos: -6.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12853 + - uid: 8798 components: - rot: -1.5707963267948966 rad pos: -7.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12854 + - uid: 8799 components: - rot: -1.5707963267948966 rad pos: -8.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12856 + - uid: 8800 components: - rot: -1.5707963267948966 rad pos: -10.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12857 + - uid: 8801 components: - rot: -1.5707963267948966 rad pos: -11.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12858 + - uid: 8802 components: - rot: -1.5707963267948966 rad pos: -12.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12861 + - uid: 8803 components: - rot: -1.5707963267948966 rad pos: -15.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12862 + - uid: 8804 components: - rot: -1.5707963267948966 rad pos: -16.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12865 + - uid: 8805 components: - pos: -17.5,0.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12866 + - uid: 8806 components: - pos: -17.5,-0.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12867 + - uid: 8807 components: - pos: -17.5,-1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12868 + - uid: 8808 components: - pos: -17.5,-2.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12870 + - uid: 8809 components: - pos: -17.5,-4.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12871 + - uid: 8810 components: - pos: -17.5,-5.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12872 + - uid: 8811 components: - pos: -17.5,-6.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12873 + - uid: 8812 components: - pos: -17.5,-7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12874 + - uid: 8813 components: - pos: -16.5,-1.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12876 + - uid: 8814 components: - pos: -16.5,-3.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12878 + - uid: 8815 components: - pos: -16.5,-5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12879 + - uid: 8816 components: - pos: -16.5,-6.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12880 + - uid: 8817 components: - pos: -16.5,-7.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12882 + - uid: 8818 components: - rot: -1.5707963267948966 rad pos: -17.5,-4.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12883 + - uid: 8819 components: - rot: -1.5707963267948966 rad pos: -18.5,-4.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12884 + - uid: 8820 components: - rot: -1.5707963267948966 rad pos: -19.5,-4.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12885 + - uid: 8821 components: - rot: -1.5707963267948966 rad pos: -20.5,-4.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12886 + - uid: 8822 components: - rot: -1.5707963267948966 rad pos: -21.5,-4.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12887 + - uid: 8823 components: - rot: -1.5707963267948966 rad pos: -18.5,-3.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12888 + - uid: 8824 components: - rot: -1.5707963267948966 rad pos: -19.5,-3.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12889 + - uid: 8825 components: - rot: -1.5707963267948966 rad pos: -20.5,-3.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12890 + - uid: 8826 components: - rot: -1.5707963267948966 rad pos: -21.5,-3.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12891 + - uid: 8827 components: - rot: -1.5707963267948966 rad pos: -22.5,-3.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12892 + - uid: 8828 components: - rot: -1.5707963267948966 rad pos: -23.5,-3.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12894 + - uid: 8829 components: - rot: -1.5707963267948966 rad pos: -8.5,10.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12895 + - uid: 8830 components: - rot: -1.5707963267948966 rad pos: -9.5,10.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12897 + - uid: 8831 components: - rot: -1.5707963267948966 rad pos: -10.5,10.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12898 + - uid: 8832 components: - rot: -1.5707963267948966 rad pos: -11.5,10.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12903 + - uid: 8833 components: - rot: 3.141592653589793 rad pos: -22.5,-5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12904 + - uid: 8834 components: - rot: 3.141592653589793 rad pos: -22.5,-6.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12905 + - uid: 8835 components: - rot: 3.141592653589793 rad pos: -22.5,-7.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12906 + - uid: 8836 components: - rot: 3.141592653589793 rad pos: -24.5,-4.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12907 + - uid: 8837 components: - rot: 3.141592653589793 rad pos: -24.5,-5.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12908 + - uid: 8838 components: - rot: 3.141592653589793 rad pos: -24.5,-6.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12910 + - uid: 8839 components: - rot: 3.141592653589793 rad pos: -24.5,-8.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12914 + - uid: 8840 components: - rot: -1.5707963267948966 rad pos: -14.5,10.5 @@ -57480,1301 +58201,1301 @@ entities: type: Transform - color: '#00AABBFF' type: AtmosPipeColor - - uid: 12917 + - uid: 8841 components: - pos: -7.5,14.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13016 + - uid: 8842 components: - rot: 3.141592653589793 rad pos: -14.5,2.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13023 + - uid: 8843 components: - pos: -3.5,0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13024 + - uid: 8844 components: - pos: -3.5,1.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13025 + - uid: 8845 components: - pos: -3.5,2.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13026 + - uid: 8846 components: - pos: -3.5,3.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13027 + - uid: 8847 components: - pos: -3.5,4.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13037 + - uid: 8848 components: - rot: -1.5707963267948966 rad pos: -4.5,5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13038 + - uid: 8849 components: - rot: -1.5707963267948966 rad pos: -5.5,5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13039 + - uid: 8850 components: - rot: -1.5707963267948966 rad pos: -6.5,5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13040 + - uid: 8851 components: - rot: -1.5707963267948966 rad pos: -7.5,5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13041 + - uid: 8852 components: - rot: -1.5707963267948966 rad pos: -8.5,5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13043 + - uid: 8853 components: - rot: -1.5707963267948966 rad pos: -10.5,5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13044 + - uid: 8854 components: - rot: -1.5707963267948966 rad pos: -11.5,5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13045 + - uid: 8855 components: - rot: -1.5707963267948966 rad pos: -12.5,5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13070 + - uid: 8856 components: - pos: -14.5,6.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13071 + - uid: 8857 components: - pos: -14.5,7.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13072 + - uid: 8858 components: - pos: -14.5,8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13073 + - uid: 8859 components: - pos: -14.5,9.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13074 + - uid: 8860 components: - pos: -14.5,10.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13098 + - uid: 8861 components: - rot: -1.5707963267948966 rad pos: -15.5,5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13101 + - uid: 8862 components: - rot: -1.5707963267948966 rad pos: -16.5,5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13103 + - uid: 8863 components: - rot: -1.5707963267948966 rad pos: -18.5,5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13114 + - uid: 8864 components: - pos: -17.5,6.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13115 + - uid: 8865 components: - pos: -17.5,7.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13116 + - uid: 8866 components: - pos: -17.5,8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13117 + - uid: 8867 components: - pos: -17.5,9.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13118 + - uid: 8868 components: - rot: -1.5707963267948966 rad pos: -18.5,10.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13120 + - uid: 8869 components: - rot: -1.5707963267948966 rad pos: -19.5,10.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13231 + - uid: 8870 components: - rot: -1.5707963267948966 rad pos: -18.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13232 + - uid: 8871 components: - rot: -1.5707963267948966 rad pos: -19.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13233 + - uid: 8872 components: - rot: -1.5707963267948966 rad pos: -20.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13234 + - uid: 8873 components: - rot: -1.5707963267948966 rad pos: -21.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13235 + - uid: 8874 components: - rot: -1.5707963267948966 rad pos: -22.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13239 + - uid: 8875 components: - rot: -1.5707963267948966 rad pos: -17.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13240 + - uid: 8876 components: - rot: -1.5707963267948966 rad pos: -18.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13241 + - uid: 8877 components: - rot: -1.5707963267948966 rad pos: -19.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13242 + - uid: 8878 components: - rot: -1.5707963267948966 rad pos: -20.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13243 + - uid: 8879 components: - rot: -1.5707963267948966 rad pos: -21.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13244 + - uid: 8880 components: - rot: -1.5707963267948966 rad pos: -23.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13245 + - uid: 8881 components: - rot: -1.5707963267948966 rad pos: -24.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13248 + - uid: 8882 components: - rot: 1.5707963267948966 rad pos: -26.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13249 + - uid: 8883 components: - rot: 1.5707963267948966 rad pos: -27.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13259 + - uid: 8884 components: - pos: -25.5,0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13260 + - uid: 8885 components: - pos: -25.5,1.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13262 + - uid: 8886 components: - pos: -25.5,3.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13263 + - uid: 8887 components: - pos: -25.5,4.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13267 + - uid: 8888 components: - rot: 1.5707963267948966 rad pos: -42.5,41.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13270 + - uid: 8889 components: - rot: -1.5707963267948966 rad pos: -46.5,40.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13278 + - uid: 8890 components: - pos: -24.5,3.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13296 + - uid: 8891 components: - rot: -1.5707963267948966 rad pos: -49.5,46.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13297 + - uid: 8892 components: - rot: -1.5707963267948966 rad pos: -48.5,46.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13327 + - uid: 8893 components: - pos: -24.5,4.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13349 + - uid: 8894 components: - pos: -24.5,5.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13352 + - uid: 8895 components: - pos: -24.5,8.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13353 + - uid: 8896 components: - pos: -24.5,9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13354 + - uid: 8897 components: - pos: -24.5,10.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13355 + - uid: 8898 components: - pos: -24.5,11.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13356 + - uid: 8899 components: - pos: -24.5,12.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13357 + - uid: 8900 components: - pos: -24.5,13.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13361 + - uid: 8901 components: - pos: -25.5,7.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13362 + - uid: 8902 components: - pos: -25.5,8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13363 + - uid: 8903 components: - pos: -25.5,9.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13364 + - uid: 8904 components: - pos: -25.5,10.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13365 + - uid: 8905 components: - pos: -25.5,11.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13366 + - uid: 8906 components: - pos: -25.5,12.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13367 + - uid: 8907 components: - pos: -25.5,13.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13368 + - uid: 8908 components: - pos: -25.5,14.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13597 + - uid: 8909 components: - rot: 3.141592653589793 rad pos: -9.5,-6.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13599 + - uid: 8910 components: - rot: 3.141592653589793 rad pos: -9.5,-4.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13600 + - uid: 8911 components: - rot: 3.141592653589793 rad pos: -9.5,-3.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13601 + - uid: 8912 components: - rot: 3.141592653589793 rad pos: -9.5,-2.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13602 + - uid: 8913 components: - rot: 3.141592653589793 rad pos: -9.5,-1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13603 + - uid: 8914 components: - rot: 3.141592653589793 rad pos: -9.5,-0.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13604 + - uid: 8915 components: - rot: 3.141592653589793 rad pos: -9.5,0.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13606 + - uid: 8916 components: - rot: 1.5707963267948966 rad pos: -9.5,-8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13608 + - uid: 8917 components: - rot: 1.5707963267948966 rad pos: -10.5,-8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13609 + - uid: 8918 components: - rot: 1.5707963267948966 rad pos: -11.5,-8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13610 + - uid: 8919 components: - rot: -1.5707963267948966 rad pos: -11.5,-4.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13611 + - uid: 8920 components: - pos: -8.5,-7.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13612 + - uid: 8921 components: - pos: -8.5,-6.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13613 + - uid: 8922 components: - pos: -8.5,-5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13614 + - uid: 8923 components: - rot: -1.5707963267948966 rad pos: -10.5,-4.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13615 + - uid: 8924 components: - rot: -1.5707963267948966 rad pos: -9.5,-4.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13617 + - uid: 8925 components: - pos: -8.5,-2.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13618 + - uid: 8926 components: - pos: -8.5,-1.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13651 + - uid: 8927 components: - pos: -42.5,-1.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13652 + - uid: 8928 components: - pos: -42.5,-2.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13653 + - uid: 8929 components: - pos: -42.5,-3.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13654 + - uid: 8930 components: - pos: -42.5,-4.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13655 + - uid: 8931 components: - pos: -42.5,-6.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13656 + - uid: 8932 components: - pos: -42.5,-7.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13660 + - uid: 8933 components: - rot: 3.141592653589793 rad pos: -41.5,-5.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13661 + - uid: 8934 components: - rot: 3.141592653589793 rad pos: -41.5,-4.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13662 + - uid: 8935 components: - rot: 3.141592653589793 rad pos: -41.5,-3.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13663 + - uid: 8936 components: - rot: 3.141592653589793 rad pos: -41.5,-2.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13664 + - uid: 8937 components: - rot: 1.5707963267948966 rad pos: -40.5,-1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13666 + - uid: 8938 components: - pos: -41.5,-7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13667 + - uid: 8939 components: - pos: -41.5,-8.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13668 + - uid: 8940 components: - rot: -1.5707963267948966 rad pos: -23.5,-8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13669 + - uid: 8941 components: - rot: -1.5707963267948966 rad pos: -24.5,-8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13670 + - uid: 8942 components: - rot: -1.5707963267948966 rad pos: -25.5,-8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13671 + - uid: 8943 components: - rot: -1.5707963267948966 rad pos: -26.5,-8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13672 + - uid: 8944 components: - rot: -1.5707963267948966 rad pos: -27.5,-8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13674 + - uid: 8945 components: - rot: -1.5707963267948966 rad pos: -29.5,-8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13675 + - uid: 8946 components: - rot: -1.5707963267948966 rad pos: -30.5,-8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13676 + - uid: 8947 components: - rot: -1.5707963267948966 rad pos: -31.5,-8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13678 + - uid: 8948 components: - rot: -1.5707963267948966 rad pos: -33.5,-8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13679 + - uid: 8949 components: - rot: -1.5707963267948966 rad pos: -34.5,-8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13680 + - uid: 8950 components: - rot: -1.5707963267948966 rad pos: -35.5,-8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13682 + - uid: 8951 components: - rot: -1.5707963267948966 rad pos: -37.5,-8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13683 + - uid: 8952 components: - rot: -1.5707963267948966 rad pos: -38.5,-8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13685 + - uid: 8953 components: - rot: -1.5707963267948966 rad pos: -40.5,-8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13687 + - uid: 8954 components: - rot: -1.5707963267948966 rad pos: -25.5,-9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13688 + - uid: 8955 components: - rot: -1.5707963267948966 rad pos: -26.5,-9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13690 + - uid: 8956 components: - rot: -1.5707963267948966 rad pos: -28.5,-9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13691 + - uid: 8957 components: - rot: -1.5707963267948966 rad pos: -29.5,-9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13692 + - uid: 8958 components: - rot: -1.5707963267948966 rad pos: -30.5,-9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13694 + - uid: 8959 components: - rot: -1.5707963267948966 rad pos: -32.5,-9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13695 + - uid: 8960 components: - rot: -1.5707963267948966 rad pos: -33.5,-9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13696 + - uid: 8961 components: - rot: -1.5707963267948966 rad pos: -34.5,-9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13697 + - uid: 8962 components: - rot: -1.5707963267948966 rad pos: -35.5,-9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13698 + - uid: 8963 components: - rot: -1.5707963267948966 rad pos: -36.5,-9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13702 + - uid: 8964 components: - rot: -1.5707963267948966 rad pos: -40.5,-9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13705 + - uid: 8965 components: - rot: 1.5707963267948966 rad pos: -41.5,-8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13714 + - uid: 8966 components: - rot: 3.141592653589793 rad pos: -37.5,-6.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13715 + - uid: 8967 components: - rot: 3.141592653589793 rad pos: -37.5,-7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13716 + - uid: 8968 components: - rot: 3.141592653589793 rad pos: -37.5,-8.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13717 + - uid: 8969 components: - rot: 3.141592653589793 rad pos: -36.5,-7.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13720 + - uid: 8970 components: - rot: 3.141592653589793 rad pos: -36.5,-7.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13721 + - uid: 8971 components: - rot: 3.141592653589793 rad pos: -36.5,-6.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13726 + - uid: 8972 components: - rot: 1.5707963267948966 rad pos: -29.5,-14.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13727 + - uid: 8973 components: - pos: -28.5,-13.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13728 + - uid: 8974 components: - pos: -28.5,-12.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13729 + - uid: 8975 components: - pos: -28.5,-11.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13730 + - uid: 8976 components: - pos: -28.5,-10.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13731 + - uid: 8977 components: - pos: -28.5,-9.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13732 + - uid: 8978 components: - pos: -35.5,-16.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13733 + - uid: 8979 components: - pos: -39.5,-16.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13734 + - uid: 8980 components: - rot: -1.5707963267948966 rad pos: -41.5,-15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13735 + - uid: 8981 components: - rot: -1.5707963267948966 rad pos: -40.5,-15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13736 + - uid: 8982 components: - rot: -1.5707963267948966 rad pos: -41.5,-12.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13737 + - uid: 8983 components: - rot: -1.5707963267948966 rad pos: -40.5,-12.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13743 + - uid: 8984 components: - rot: 3.141592653589793 rad pos: -39.5,-13.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13744 + - uid: 8985 components: - rot: 3.141592653589793 rad pos: -39.5,-14.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13745 + - uid: 8986 components: - rot: 1.5707963267948966 rad pos: -36.5,-15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13747 + - uid: 8987 components: - rot: 1.5707963267948966 rad pos: -38.5,-15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13748 + - uid: 8988 components: - pos: -37.5,-13.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13749 + - uid: 8989 components: - rot: -1.5707963267948966 rad pos: -38.5,-12.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13751 + - uid: 8990 components: - rot: 3.141592653589793 rad pos: -36.5,-11.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13752 + - uid: 8991 components: - rot: 3.141592653589793 rad pos: -36.5,-10.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13753 + - uid: 8992 components: - rot: 3.141592653589793 rad pos: -36.5,-9.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13754 + - uid: 8993 components: - rot: 3.141592653589793 rad pos: -37.5,-10.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13756 + - uid: 8994 components: - rot: 1.5707963267948966 rad pos: -42.5,-9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13758 + - uid: 8995 components: - rot: 1.5707963267948966 rad pos: -43.5,-9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13759 + - uid: 8996 components: - rot: 1.5707963267948966 rad pos: -44.5,-9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13760 + - uid: 8997 components: - rot: 1.5707963267948966 rad pos: -45.5,-9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13761 + - uid: 8998 components: - rot: 1.5707963267948966 rad pos: -46.5,-8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13762 + - uid: 8999 components: - rot: 1.5707963267948966 rad pos: -45.5,-8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13763 + - uid: 9000 components: - rot: 1.5707963267948966 rad pos: -44.5,-8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13764 + - uid: 9001 components: - rot: 1.5707963267948966 rad pos: -43.5,-8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13765 + - uid: 9002 components: - pos: -46.5,-10.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13766 + - uid: 9003 components: - pos: -46.5,-11.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13767 + - uid: 9004 components: - pos: -46.5,-12.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13769 + - uid: 9005 components: - pos: -47.5,-9.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13770 + - uid: 9006 components: - pos: -47.5,-10.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13771 + - uid: 9007 components: - pos: -47.5,-11.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13772 + - uid: 9008 components: - pos: -47.5,-12.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13773 + - uid: 9009 components: - pos: -47.5,-13.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13774 + - uid: 9010 components: - pos: -47.5,-14.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13778 + - uid: 9011 components: - rot: -1.5707963267948966 rad pos: -50.5,-9.5 @@ -58782,351 +59503,351 @@ entities: type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13784 + - uid: 9012 components: - rot: -1.5707963267948966 rad pos: -49.5,-8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13785 + - uid: 9013 components: - rot: -1.5707963267948966 rad pos: -50.5,-8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13786 + - uid: 9014 components: - rot: -1.5707963267948966 rad pos: -51.5,-8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13792 + - uid: 9015 components: - pos: -46.5,-5.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13793 + - uid: 9016 components: - pos: -46.5,-6.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13794 + - uid: 9017 components: - rot: -1.5707963267948966 rad pos: -47.5,-7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13795 + - uid: 9018 components: - pos: -46.5,-8.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13797 + - uid: 9019 components: - pos: -47.5,-4.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13798 + - uid: 9020 components: - pos: -47.5,-5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13799 + - uid: 9021 components: - pos: -47.5,-6.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13800 + - uid: 9022 components: - pos: -47.5,-7.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13807 + - uid: 9023 components: - rot: 1.5707963267948966 rad pos: -18.5,22.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13816 + - uid: 9024 components: - pos: -49.5,-15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13817 + - uid: 9025 components: - pos: -52.5,-15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13818 + - uid: 9026 components: - pos: -55.5,-15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13819 + - uid: 9027 components: - pos: -58.5,-15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13820 + - uid: 9028 components: - pos: -58.5,-13.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13821 + - uid: 9029 components: - rot: -1.5707963267948966 rad pos: -57.5,-14.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13822 + - uid: 9030 components: - rot: -1.5707963267948966 rad pos: -56.5,-14.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13823 + - uid: 9031 components: - rot: -1.5707963267948966 rad pos: -54.5,-14.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13824 + - uid: 9032 components: - rot: -1.5707963267948966 rad pos: -53.5,-14.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13825 + - uid: 9033 components: - rot: -1.5707963267948966 rad pos: -51.5,-14.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13826 + - uid: 9034 components: - rot: -1.5707963267948966 rad pos: -50.5,-14.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13828 + - uid: 9035 components: - rot: 3.141592653589793 rad pos: -55.5,-13.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13829 + - uid: 9036 components: - rot: 3.141592653589793 rad pos: -55.5,-12.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13830 + - uid: 9037 components: - rot: 3.141592653589793 rad pos: -55.5,-11.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13831 + - uid: 9038 components: - rot: 3.141592653589793 rad pos: -55.5,-10.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13832 + - uid: 9039 components: - rot: 3.141592653589793 rad pos: -55.5,-9.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13833 + - uid: 9040 components: - rot: 3.141592653589793 rad pos: -55.5,-6.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13834 + - uid: 9041 components: - rot: 3.141592653589793 rad pos: -55.5,-5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13835 + - uid: 9042 components: - rot: 3.141592653589793 rad pos: -55.5,-3.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13836 + - uid: 9043 components: - rot: 3.141592653589793 rad pos: -55.5,-2.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13837 + - uid: 9044 components: - rot: 3.141592653589793 rad pos: -55.5,-1.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13838 + - uid: 9045 components: - rot: 3.141592653589793 rad pos: -55.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13841 + - uid: 9046 components: - rot: -1.5707963267948966 rad pos: -54.5,-8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13842 + - uid: 9047 components: - rot: -1.5707963267948966 rad pos: -53.5,-8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13846 + - uid: 9048 components: - pos: -58.5,-15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13847 + - uid: 9049 components: - pos: -58.5,-13.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13848 + - uid: 9050 components: - pos: -55.5,-15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13849 + - uid: 9051 components: - pos: -52.5,-15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13850 + - uid: 9052 components: - rot: -1.5707963267948966 rad pos: -56.5,-7.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13851 + - uid: 9053 components: - rot: -1.5707963267948966 rad pos: -57.5,-7.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13852 + - uid: 9054 components: - rot: -1.5707963267948966 rad pos: -58.5,-7.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13854 + - uid: 9055 components: - rot: -1.5707963267948966 rad pos: -53.5,-4.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13855 + - uid: 9056 components: - rot: -1.5707963267948966 rad pos: -54.5,-4.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13856 + - uid: 9057 components: - rot: -1.5707963267948966 rad pos: -50.5,-9.5 @@ -59134,7 +59855,7 @@ entities: type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13858 + - uid: 9058 components: - rot: -1.5707963267948966 rad pos: -51.5,-9.5 @@ -59142,7 +59863,7 @@ entities: type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13859 + - uid: 9059 components: - rot: -1.5707963267948966 rad pos: -52.5,-9.5 @@ -59150,7 +59871,7 @@ entities: type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13860 + - uid: 9060 components: - rot: -1.5707963267948966 rad pos: -53.5,-9.5 @@ -59158,7 +59879,7 @@ entities: type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13861 + - uid: 9061 components: - rot: -1.5707963267948966 rad pos: -54.5,-9.5 @@ -59166,7 +59887,7 @@ entities: type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13862 + - uid: 9062 components: - rot: -1.5707963267948966 rad pos: -55.5,-9.5 @@ -59174,7 +59895,7 @@ entities: type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13863 + - uid: 9063 components: - rot: 1.5707963267948966 rad pos: -57.5,-16.5 @@ -59182,7 +59903,7 @@ entities: type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13868 + - uid: 9064 components: - rot: 1.5707963267948966 rad pos: -58.5,-16.5 @@ -59190,7 +59911,7 @@ entities: type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13876 + - uid: 9065 components: - rot: -1.5707963267948966 rad pos: -55.5,-0.5 @@ -59198,21 +59919,21 @@ entities: type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13882 + - uid: 9066 components: - pos: -56.5,-15.5 parent: 2 type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13883 + - uid: 9067 components: - pos: -56.5,-14.5 parent: 2 type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13884 + - uid: 9068 components: - rot: -1.5707963267948966 rad pos: -58.5,-12.5 @@ -59220,35 +59941,35 @@ entities: type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13885 + - uid: 9069 components: - pos: -50.5,-16.5 parent: 2 type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13886 + - uid: 9070 components: - pos: -50.5,-15.5 parent: 2 type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13887 + - uid: 9071 components: - pos: -53.5,-15.5 parent: 2 type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13888 + - uid: 9072 components: - pos: -53.5,-16.5 parent: 2 type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13889 + - uid: 9073 components: - rot: 3.141592653589793 rad pos: -50.5,-14.5 @@ -59256,7 +59977,7 @@ entities: type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13891 + - uid: 9074 components: - rot: 3.141592653589793 rad pos: -50.5,-15.5 @@ -59264,14 +59985,14 @@ entities: type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13892 + - uid: 9075 components: - pos: -53.5,-14.5 parent: 2 type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13893 + - uid: 9076 components: - rot: -1.5707963267948966 rad pos: -51.5,-13.5 @@ -59279,14 +60000,14 @@ entities: type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13894 + - uid: 9077 components: - pos: -52.5,-13.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13895 + - uid: 9078 components: - rot: -1.5707963267948966 rad pos: -52.5,-13.5 @@ -59294,7 +60015,7 @@ entities: type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13896 + - uid: 9079 components: - rot: -1.5707963267948966 rad pos: -54.5,-13.5 @@ -59302,7 +60023,7 @@ entities: type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13897 + - uid: 9080 components: - rot: -1.5707963267948966 rad pos: -55.5,-13.5 @@ -59310,7 +60031,7 @@ entities: type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13898 + - uid: 9081 components: - rot: -1.5707963267948966 rad pos: -57.5,-12.5 @@ -59318,14 +60039,14 @@ entities: type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13904 + - uid: 9082 components: - pos: -56.5,-10.5 parent: 2 type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13905 + - uid: 9083 components: - rot: -1.5707963267948966 rad pos: -57.5,-8.5 @@ -59333,7 +60054,7 @@ entities: type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13906 + - uid: 9084 components: - rot: -1.5707963267948966 rad pos: -55.5,-11.5 @@ -59341,14 +60062,14 @@ entities: type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13909 + - uid: 9085 components: - pos: -56.5,-7.5 parent: 2 type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13910 + - uid: 9086 components: - rot: -1.5707963267948966 rad pos: -55.5,-6.5 @@ -59356,7 +60077,7 @@ entities: type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13911 + - uid: 9087 components: - rot: 3.141592653589793 rad pos: -56.5,-5.5 @@ -59364,7 +60085,7 @@ entities: type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13912 + - uid: 9088 components: - rot: 3.141592653589793 rad pos: -56.5,-4.5 @@ -59372,7 +60093,7 @@ entities: type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13913 + - uid: 9089 components: - rot: 3.141592653589793 rad pos: -56.5,-3.5 @@ -59380,7 +60101,7 @@ entities: type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13914 + - uid: 9090 components: - rot: 1.5707963267948966 rad pos: -55.5,-2.5 @@ -59388,7 +60109,7 @@ entities: type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13915 + - uid: 9091 components: - rot: 1.5707963267948966 rad pos: -54.5,-2.5 @@ -59396,7 +60117,7 @@ entities: type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13916 + - uid: 9092 components: - rot: 1.5707963267948966 rad pos: -53.5,-2.5 @@ -59404,3732 +60125,3732 @@ entities: type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13917 + - uid: 9093 components: - pos: -56.5,-1.5 parent: 2 type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13919 + - uid: 9094 components: - pos: -49.5,-8.5 parent: 2 type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13920 + - uid: 9095 components: - pos: -22.5,-12.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13921 + - uid: 9096 components: - pos: -22.5,-10.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13922 + - uid: 9097 components: - pos: -22.5,-11.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13923 + - uid: 9098 components: - pos: -22.5,-9.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13927 + - uid: 9099 components: - pos: -23.5,-10.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13929 + - uid: 9100 components: - pos: -37.5,-16.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13930 + - uid: 9101 components: - pos: -37.5,-17.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13931 + - uid: 9102 components: - pos: -37.5,-18.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13932 + - uid: 9103 components: - pos: -37.5,-19.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13939 + - uid: 9104 components: - pos: -37.5,-21.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13941 + - uid: 9105 components: - rot: 1.5707963267948966 rad pos: 12.5,-25.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13949 + - uid: 9106 components: - rot: 3.141592653589793 rad pos: -16.5,-8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13950 + - uid: 9107 components: - rot: 3.141592653589793 rad pos: -16.5,-9.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13951 + - uid: 9108 components: - rot: 3.141592653589793 rad pos: -16.5,-10.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13952 + - uid: 9109 components: - rot: 3.141592653589793 rad pos: -16.5,-11.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13953 + - uid: 9110 components: - rot: 3.141592653589793 rad pos: -16.5,-13.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13954 + - uid: 9111 components: - rot: 3.141592653589793 rad pos: -16.5,-14.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13955 + - uid: 9112 components: - rot: 3.141592653589793 rad pos: -16.5,-15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13956 + - uid: 9113 components: - rot: 3.141592653589793 rad pos: -16.5,-16.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13957 + - uid: 9114 components: - rot: 3.141592653589793 rad pos: -16.5,-17.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13958 + - uid: 9115 components: - rot: 3.141592653589793 rad pos: -16.5,-20.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13959 + - uid: 9116 components: - rot: 3.141592653589793 rad pos: -16.5,-21.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13965 + - uid: 9117 components: - rot: 1.5707963267948966 rad pos: -14.5,-12.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13966 + - uid: 9118 components: - rot: 1.5707963267948966 rad pos: -13.5,-12.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13967 + - uid: 9119 components: - rot: 1.5707963267948966 rad pos: -12.5,-12.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13968 + - uid: 9120 components: - rot: 1.5707963267948966 rad pos: -11.5,-12.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13969 + - uid: 9121 components: - rot: 1.5707963267948966 rad pos: -10.5,-12.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13970 + - uid: 9122 components: - rot: 1.5707963267948966 rad pos: -9.5,-12.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13972 + - uid: 9123 components: - rot: 1.5707963267948966 rad pos: -20.5,-22.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13973 + - uid: 9124 components: - rot: 1.5707963267948966 rad pos: -19.5,-22.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13974 + - uid: 9125 components: - rot: 1.5707963267948966 rad pos: -18.5,-22.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13975 + - uid: 9126 components: - rot: 1.5707963267948966 rad pos: -17.5,-22.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13976 + - uid: 9127 components: - rot: 3.141592653589793 rad pos: 20.5,5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13977 + - uid: 9128 components: - rot: 1.5707963267948966 rad pos: -20.5,-19.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13978 + - uid: 9129 components: - rot: 1.5707963267948966 rad pos: -19.5,-19.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13979 + - uid: 9130 components: - rot: 1.5707963267948966 rad pos: -18.5,-19.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13980 + - uid: 9131 components: - rot: 1.5707963267948966 rad pos: -17.5,-19.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13992 + - uid: 9132 components: - rot: 1.5707963267948966 rad pos: -16.5,-17.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13993 + - uid: 9133 components: - rot: 1.5707963267948966 rad pos: -15.5,-17.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13995 + - uid: 9134 components: - pos: -17.5,-16.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13996 + - uid: 9135 components: - pos: -17.5,-15.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13997 + - uid: 9136 components: - pos: -17.5,-14.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13999 + - uid: 9137 components: - pos: -17.5,-12.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14000 + - uid: 9138 components: - pos: -17.5,-11.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14001 + - uid: 9139 components: - pos: -17.5,-10.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14002 + - uid: 9140 components: - pos: -17.5,-9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14003 + - uid: 9141 components: - pos: -17.5,-8.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14004 + - uid: 9142 components: - rot: 1.5707963267948966 rad pos: -16.5,-13.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14005 + - uid: 9143 components: - rot: 1.5707963267948966 rad pos: -15.5,-13.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14009 + - uid: 9144 components: - rot: 3.141592653589793 rad pos: -28.5,26.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14018 + - uid: 9145 components: - rot: 3.141592653589793 rad pos: -28.5,-7.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14033 + - uid: 9146 components: - rot: -1.5707963267948966 rad pos: -26.5,5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14038 + - uid: 9147 components: - rot: -1.5707963267948966 rad pos: -27.5,5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14040 + - uid: 9148 components: - rot: -1.5707963267948966 rad pos: -29.5,5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14041 + - uid: 9149 components: - rot: -1.5707963267948966 rad pos: -30.5,5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14042 + - uid: 9150 components: - rot: -1.5707963267948966 rad pos: -31.5,5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14044 + - uid: 9151 components: - rot: -1.5707963267948966 rad pos: -40.5,33.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14045 + - uid: 9152 components: - rot: -1.5707963267948966 rad pos: -34.5,5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14046 + - uid: 9153 components: - rot: -1.5707963267948966 rad pos: -35.5,5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14047 + - uid: 9154 components: - rot: -1.5707963267948966 rad pos: -36.5,5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14048 + - uid: 9155 components: - rot: -1.5707963267948966 rad pos: -37.5,5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14049 + - uid: 9156 components: - rot: -1.5707963267948966 rad pos: -38.5,5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14050 + - uid: 9157 components: - rot: -1.5707963267948966 rad pos: -39.5,5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14052 + - uid: 9158 components: - rot: -1.5707963267948966 rad pos: -41.5,5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14054 + - uid: 9159 components: - rot: -1.5707963267948966 rad pos: -43.5,5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14055 + - uid: 9160 components: - rot: -1.5707963267948966 rad pos: -44.5,5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14056 + - uid: 9161 components: - rot: -1.5707963267948966 rad pos: -45.5,5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14057 + - uid: 9162 components: - rot: 3.141592653589793 rad pos: -23.5,15.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14058 + - uid: 9163 components: - rot: -1.5707963267948966 rad pos: -25.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14059 + - uid: 9164 components: - rot: -1.5707963267948966 rad pos: -26.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14060 + - uid: 9165 components: - rot: -1.5707963267948966 rad pos: -27.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14062 + - uid: 9166 components: - rot: -1.5707963267948966 rad pos: -29.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14063 + - uid: 9167 components: - rot: -1.5707963267948966 rad pos: -30.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14065 + - uid: 9168 components: - pos: -41.5,32.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14066 + - uid: 9169 components: - rot: -1.5707963267948966 rad pos: -33.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14068 + - uid: 9170 components: - rot: -1.5707963267948966 rad pos: -35.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14070 + - uid: 9171 components: - rot: -1.5707963267948966 rad pos: -37.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14071 + - uid: 9172 components: - rot: -1.5707963267948966 rad pos: -38.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14072 + - uid: 9173 components: - rot: -1.5707963267948966 rad pos: -39.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14073 + - uid: 9174 components: - rot: -1.5707963267948966 rad pos: -40.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14074 + - uid: 9175 components: - rot: -1.5707963267948966 rad pos: -41.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14077 + - uid: 9176 components: - rot: -1.5707963267948966 rad pos: -44.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14078 + - uid: 9177 components: - rot: -1.5707963267948966 rad pos: -45.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14079 + - uid: 9178 components: - rot: -1.5707963267948966 rad pos: -33.5,27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14082 + - uid: 9179 components: - rot: -1.5707963267948966 rad pos: -30.5,27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14085 + - uid: 9180 components: - rot: -1.5707963267948966 rad pos: -34.5,27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14087 + - uid: 9181 components: - pos: -25.5,2.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14090 + - uid: 9182 components: - rot: -1.5707963267948966 rad pos: -25.5,2.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14091 + - uid: 9183 components: - rot: -1.5707963267948966 rad pos: -26.5,2.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14096 + - uid: 9184 components: - pos: -28.5,4.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14097 + - uid: 9185 components: - pos: -28.5,3.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14099 + - uid: 9186 components: - rot: 3.141592653589793 rad pos: -30.5,26.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14101 + - uid: 9187 components: - rot: 3.141592653589793 rad pos: -30.5,27.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14102 + - uid: 9188 components: - pos: -28.5,8.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14106 + - uid: 9189 components: - rot: 3.141592653589793 rad pos: -35.5,28.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14109 + - uid: 9190 components: - rot: -1.5707963267948966 rad pos: -27.5,27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14111 + - uid: 9191 components: - rot: -1.5707963267948966 rad pos: -26.5,27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14112 + - uid: 9192 components: - rot: -1.5707963267948966 rad pos: -25.5,27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14115 + - uid: 9193 components: - rot: 3.141592653589793 rad pos: -24.5,18.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14116 + - uid: 9194 components: - rot: 3.141592653589793 rad pos: -24.5,19.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14117 + - uid: 9195 components: - rot: 3.141592653589793 rad pos: -24.5,20.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14118 + - uid: 9196 components: - rot: 3.141592653589793 rad pos: -24.5,21.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14119 + - uid: 9197 components: - rot: 3.141592653589793 rad pos: -24.5,22.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14120 + - uid: 9198 components: - rot: 3.141592653589793 rad pos: -24.5,23.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14121 + - uid: 9199 components: - rot: 3.141592653589793 rad pos: -24.5,24.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14122 + - uid: 9200 components: - rot: 3.141592653589793 rad pos: -24.5,25.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14123 + - uid: 9201 components: - rot: 3.141592653589793 rad pos: -24.5,26.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14126 + - uid: 9202 components: - pos: 12.5,-26.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14127 + - uid: 9203 components: - rot: -1.5707963267948966 rad pos: -36.5,27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14128 + - uid: 9204 components: - rot: -1.5707963267948966 rad pos: -37.5,27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14129 + - uid: 9205 components: - rot: -1.5707963267948966 rad pos: -38.5,27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14130 + - uid: 9206 components: - rot: -1.5707963267948966 rad pos: -39.5,27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14132 + - uid: 9207 components: - rot: -1.5707963267948966 rad pos: -41.5,27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14133 + - uid: 9208 components: - rot: -1.5707963267948966 rad pos: -42.5,27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14134 + - uid: 9209 components: - rot: -1.5707963267948966 rad pos: -43.5,27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14136 + - uid: 9210 components: - rot: 3.141592653589793 rad pos: -35.5,29.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14137 + - uid: 9211 components: - rot: 3.141592653589793 rad pos: -35.5,30.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14139 + - uid: 9212 components: - rot: 3.141592653589793 rad pos: -23.5,16.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14140 + - uid: 9213 components: - rot: 3.141592653589793 rad pos: -23.5,17.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14141 + - uid: 9214 components: - rot: 3.141592653589793 rad pos: -23.5,18.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14142 + - uid: 9215 components: - rot: 3.141592653589793 rad pos: -23.5,19.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14143 + - uid: 9216 components: - rot: 3.141592653589793 rad pos: -23.5,20.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14144 + - uid: 9217 components: - rot: 3.141592653589793 rad pos: -23.5,21.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14146 + - uid: 9218 components: - rot: 3.141592653589793 rad pos: -23.5,23.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14147 + - uid: 9219 components: - rot: 3.141592653589793 rad pos: -23.5,24.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14151 + - uid: 9220 components: - pos: -36.5,6.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14152 + - uid: 9221 components: - pos: -36.5,5.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14153 + - uid: 9222 components: - pos: -36.5,4.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14154 + - uid: 9223 components: - pos: -36.5,3.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14155 + - uid: 9224 components: - rot: -1.5707963267948966 rad pos: -24.5,26.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14156 + - uid: 9225 components: - rot: -1.5707963267948966 rad pos: -25.5,26.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14157 + - uid: 9226 components: - rot: -1.5707963267948966 rad pos: -26.5,26.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14158 + - uid: 9227 components: - rot: -1.5707963267948966 rad pos: -27.5,26.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14159 + - uid: 9228 components: - rot: -1.5707963267948966 rad pos: -28.5,26.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14160 + - uid: 9229 components: - rot: -1.5707963267948966 rad pos: -29.5,26.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14162 + - uid: 9230 components: - rot: -1.5707963267948966 rad pos: -31.5,26.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14163 + - uid: 9231 components: - rot: -1.5707963267948966 rad pos: -32.5,26.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14164 + - uid: 9232 components: - rot: -1.5707963267948966 rad pos: -33.5,26.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14165 + - uid: 9233 components: - rot: -1.5707963267948966 rad pos: -34.5,26.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14166 + - uid: 9234 components: - rot: -1.5707963267948966 rad pos: -35.5,26.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14167 + - uid: 9235 components: - rot: -1.5707963267948966 rad pos: -36.5,26.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14169 + - uid: 9236 components: - rot: -1.5707963267948966 rad pos: -38.5,26.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14170 + - uid: 9237 components: - rot: -1.5707963267948966 rad pos: -39.5,26.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14171 + - uid: 9238 components: - rot: -1.5707963267948966 rad pos: -40.5,26.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14175 + - uid: 9239 components: - rot: 1.5707963267948966 rad pos: -43.5,28.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14176 + - uid: 9240 components: - pos: -41.5,27.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14183 + - uid: 9241 components: - rot: 3.141592653589793 rad pos: -34.5,8.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14184 + - uid: 9242 components: - rot: 3.141592653589793 rad pos: -40.5,28.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14185 + - uid: 9243 components: - rot: 3.141592653589793 rad pos: -40.5,29.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14186 + - uid: 9244 components: - rot: 3.141592653589793 rad pos: -40.5,30.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14187 + - uid: 9245 components: - rot: 3.141592653589793 rad pos: -40.5,31.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14188 + - uid: 9246 components: - rot: 3.141592653589793 rad pos: -41.5,29.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14189 + - uid: 9247 components: - rot: 3.141592653589793 rad pos: -41.5,30.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14190 + - uid: 9248 components: - rot: 3.141592653589793 rad pos: -41.5,31.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14191 + - uid: 9249 components: - rot: 3.141592653589793 rad pos: -30.5,15.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14198 + - uid: 9250 components: - rot: 3.141592653589793 rad pos: -43.5,43.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14201 + - uid: 9251 components: - pos: -32.5,4.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14202 + - uid: 9252 components: - pos: -32.5,3.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14203 + - uid: 9253 components: - pos: -32.5,2.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14207 + - uid: 9254 components: - pos: -31.5,6.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14208 + - uid: 9255 components: - pos: -31.5,5.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14209 + - uid: 9256 components: - pos: -31.5,4.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14210 + - uid: 9257 components: - pos: -31.5,3.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14213 + - uid: 9258 components: - rot: 3.141592653589793 rad pos: -36.5,43.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14218 + - uid: 9259 components: - rot: 1.5707963267948966 rad pos: -38.5,41.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14219 + - uid: 9260 components: - rot: 1.5707963267948966 rad pos: -37.5,41.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14221 + - uid: 9261 components: - pos: -36.5,40.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14222 + - uid: 9262 components: - pos: -36.5,39.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14223 + - uid: 9263 components: - pos: -36.5,38.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14227 + - uid: 9264 components: - pos: 0.5,35.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14228 + - uid: 9265 components: - pos: 0.5,36.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14231 + - uid: 9266 components: - pos: -35.5,31.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14233 + - uid: 9267 components: - pos: 0.5,38.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14249 + - uid: 9268 components: - pos: 0.5,37.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14255 + - uid: 9269 components: - rot: 3.141592653589793 rad pos: -39.5,34.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14256 + - uid: 9270 components: - rot: 3.141592653589793 rad pos: -39.5,35.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14257 + - uid: 9271 components: - rot: 3.141592653589793 rad pos: -39.5,36.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14258 + - uid: 9272 components: - rot: 3.141592653589793 rad pos: -39.5,37.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14259 + - uid: 9273 components: - rot: 3.141592653589793 rad pos: -39.5,38.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14260 + - uid: 9274 components: - rot: 3.141592653589793 rad pos: -39.5,39.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14264 + - uid: 9275 components: - rot: 1.5707963267948966 rad pos: -42.5,40.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14265 + - uid: 9276 components: - rot: 1.5707963267948966 rad pos: -41.5,40.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14266 + - uid: 9277 components: - rot: 1.5707963267948966 rad pos: -40.5,40.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14267 + - uid: 9278 components: - pos: -43.5,41.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14278 + - uid: 9279 components: - rot: 1.5707963267948966 rad pos: -45.5,28.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14281 + - uid: 9280 components: - rot: -1.5707963267948966 rad pos: -42.5,33.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14282 + - uid: 9281 components: - rot: -1.5707963267948966 rad pos: -43.5,33.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14283 + - uid: 9282 components: - rot: -1.5707963267948966 rad pos: -44.5,33.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14287 + - uid: 9283 components: - rot: -1.5707963267948966 rad pos: -48.5,33.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14291 + - uid: 9284 components: - pos: -46.5,29.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14292 + - uid: 9285 components: - pos: -46.5,30.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14293 + - uid: 9286 components: - pos: -46.5,31.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14294 + - uid: 9287 components: - pos: -46.5,32.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14300 + - uid: 9288 components: - rot: -1.5707963267948966 rad pos: -51.5,33.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14303 + - uid: 9289 components: - rot: -1.5707963267948966 rad pos: -51.5,36.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14304 + - uid: 9290 components: - rot: -1.5707963267948966 rad pos: -50.5,36.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14305 + - uid: 9291 components: - rot: -1.5707963267948966 rad pos: -49.5,36.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14306 + - uid: 9292 components: - rot: -1.5707963267948966 rad pos: -48.5,36.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14307 + - uid: 9293 components: - rot: -1.5707963267948966 rad pos: -47.5,36.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14312 + - uid: 9294 components: - pos: -40.5,6.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14313 + - uid: 9295 components: - pos: -40.5,7.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14314 + - uid: 9296 components: - pos: -40.5,8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14315 + - uid: 9297 components: - pos: -40.5,9.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14316 + - uid: 9298 components: - pos: -40.5,10.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14317 + - uid: 9299 components: - pos: -40.5,11.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14318 + - uid: 9300 components: - pos: -40.5,12.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14319 + - uid: 9301 components: - pos: -40.5,13.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14320 + - uid: 9302 components: - pos: -40.5,14.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14323 + - uid: 9303 components: - pos: -40.5,17.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14324 + - uid: 9304 components: - pos: -40.5,18.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14325 + - uid: 9305 components: - pos: -40.5,19.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14326 + - uid: 9306 components: - pos: -40.5,20.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14327 + - uid: 9307 components: - rot: 3.141592653589793 rad pos: -46.5,35.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14328 + - uid: 9308 components: - pos: -42.5,8.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14329 + - uid: 9309 components: - pos: -42.5,9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14330 + - uid: 9310 components: - pos: -42.5,10.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14331 + - uid: 9311 components: - pos: -42.5,11.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14332 + - uid: 9312 components: - pos: -42.5,12.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14333 + - uid: 9313 components: - pos: -42.5,13.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14336 + - uid: 9314 components: - rot: 1.5707963267948966 rad pos: -38.5,14.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14337 + - uid: 9315 components: - rot: 1.5707963267948966 rad pos: -37.5,14.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14338 + - uid: 9316 components: - rot: 1.5707963267948966 rad pos: -39.5,14.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14339 + - uid: 9317 components: - rot: 1.5707963267948966 rad pos: -40.5,14.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14340 + - uid: 9318 components: - rot: 1.5707963267948966 rad pos: -41.5,14.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14352 + - uid: 9319 components: - rot: 1.5707963267948966 rad pos: -34.5,36.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14353 + - uid: 9320 components: - rot: 1.5707963267948966 rad pos: -33.5,36.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14372 + - uid: 9321 components: - rot: 1.5707963267948966 rad pos: -23.5,17.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14373 + - uid: 9322 components: - rot: 1.5707963267948966 rad pos: -22.5,17.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14374 + - uid: 9323 components: - rot: 1.5707963267948966 rad pos: -21.5,17.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14375 + - uid: 9324 components: - rot: 1.5707963267948966 rad pos: -19.5,17.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14376 + - uid: 9325 components: - rot: 1.5707963267948966 rad pos: -18.5,17.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14379 + - uid: 9326 components: - rot: 3.141592653589793 rad pos: -20.5,18.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14380 + - uid: 9327 components: - rot: 3.141592653589793 rad pos: -20.5,19.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14382 + - uid: 9328 components: - rot: 1.5707963267948966 rad pos: -22.5,22.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14384 + - uid: 9329 components: - rot: 1.5707963267948966 rad pos: -21.5,22.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14385 + - uid: 9330 components: - rot: 1.5707963267948966 rad pos: -20.5,22.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14390 + - uid: 9331 components: - rot: -1.5707963267948966 rad pos: -23.5,27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14397 + - uid: 9332 components: - rot: 3.141592653589793 rad pos: -23.5,27.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14398 + - uid: 9333 components: - rot: 3.141592653589793 rad pos: -23.5,28.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14400 + - uid: 9334 components: - rot: 3.141592653589793 rad pos: -24.5,28.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14402 + - uid: 9335 components: - rot: 3.141592653589793 rad pos: -24.5,29.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14408 + - uid: 9336 components: - rot: 3.141592653589793 rad pos: -23.5,30.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14409 + - uid: 9337 components: - rot: 3.141592653589793 rad pos: -23.5,31.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14410 + - uid: 9338 components: - rot: 3.141592653589793 rad pos: -23.5,32.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14412 + - uid: 9339 components: - rot: 3.141592653589793 rad pos: -23.5,34.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14413 + - uid: 9340 components: - rot: 3.141592653589793 rad pos: -23.5,35.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14414 + - uid: 9341 components: - rot: 3.141592653589793 rad pos: -24.5,30.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14415 + - uid: 9342 components: - rot: 3.141592653589793 rad pos: -24.5,31.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14416 + - uid: 9343 components: - rot: 3.141592653589793 rad pos: -24.5,32.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14417 + - uid: 9344 components: - rot: 3.141592653589793 rad pos: -24.5,33.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14418 + - uid: 9345 components: - rot: -1.5707963267948966 rad pos: -20.5,34.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14419 + - uid: 9346 components: - rot: 3.141592653589793 rad pos: -24.5,35.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14424 + - uid: 9347 components: - rot: 3.141592653589793 rad pos: -24.5,36.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14425 + - uid: 9348 components: - rot: 3.141592653589793 rad pos: -24.5,37.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14426 + - uid: 9349 components: - rot: 3.141592653589793 rad pos: -22.5,37.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14427 + - uid: 9350 components: - rot: 3.141592653589793 rad pos: -22.5,38.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14428 + - uid: 9351 components: - rot: 3.141592653589793 rad pos: -24.5,38.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14435 + - uid: 9352 components: - rot: 3.141592653589793 rad pos: -24.5,39.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14456 + - uid: 9353 components: - rot: -1.5707963267948966 rad pos: -21.5,34.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14458 + - uid: 9354 components: - rot: -1.5707963267948966 rad pos: -22.5,34.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14459 + - uid: 9355 components: - rot: -1.5707963267948966 rad pos: -23.5,34.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14460 + - uid: 9356 components: - rot: -1.5707963267948966 rad pos: -18.5,34.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14463 + - uid: 9357 components: - rot: -1.5707963267948966 rad pos: -18.5,34.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14464 + - uid: 9358 components: - rot: -1.5707963267948966 rad pos: -17.5,34.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14465 + - uid: 9359 components: - rot: -1.5707963267948966 rad pos: -16.5,34.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14466 + - uid: 9360 components: - rot: -1.5707963267948966 rad pos: -25.5,34.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14476 + - uid: 9361 components: - rot: 1.5707963267948966 rad pos: -22.5,33.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14477 + - uid: 9362 components: - rot: 1.5707963267948966 rad pos: -21.5,33.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14479 + - uid: 9363 components: - rot: 1.5707963267948966 rad pos: -19.5,33.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14480 + - uid: 9364 components: - rot: 1.5707963267948966 rad pos: -18.5,33.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14482 + - uid: 9365 components: - rot: 3.141592653589793 rad pos: -17.5,34.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14483 + - uid: 9366 components: - rot: 3.141592653589793 rad pos: -17.5,35.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14489 + - uid: 9367 components: - rot: 1.5707963267948966 rad pos: -16.5,36.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14494 + - uid: 9368 components: - rot: 1.5707963267948966 rad pos: -15.5,36.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14495 + - uid: 9369 components: - rot: 1.5707963267948966 rad pos: -14.5,36.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14496 + - uid: 9370 components: - rot: 1.5707963267948966 rad pos: -13.5,36.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14497 + - uid: 9371 components: - rot: 1.5707963267948966 rad pos: -12.5,36.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14507 + - uid: 9372 components: - rot: -1.5707963267948966 rad pos: -13.5,35.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14508 + - uid: 9373 components: - rot: -1.5707963267948966 rad pos: -12.5,35.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14509 + - uid: 9374 components: - rot: -1.5707963267948966 rad pos: -11.5,35.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14510 + - uid: 9375 components: - rot: -1.5707963267948966 rad pos: -10.5,35.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14511 + - uid: 9376 components: - rot: -1.5707963267948966 rad pos: -9.5,35.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14529 + - uid: 9377 components: - pos: -11.5,37.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14530 + - uid: 9378 components: - pos: -11.5,38.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14531 + - uid: 9379 components: - pos: -11.5,39.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14532 + - uid: 9380 components: - pos: -11.5,40.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14533 + - uid: 9381 components: - pos: -11.5,41.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14534 + - uid: 9382 components: - pos: -11.5,42.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14536 + - uid: 9383 components: - pos: -8.5,42.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14537 + - uid: 9384 components: - pos: -8.5,41.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14538 + - uid: 9385 components: - pos: -8.5,40.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14539 + - uid: 9386 components: - pos: -8.5,39.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14540 + - uid: 9387 components: - pos: -8.5,38.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14541 + - uid: 9388 components: - pos: -8.5,37.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14542 + - uid: 9389 components: - pos: -8.5,36.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14544 + - uid: 9390 components: - rot: -1.5707963267948966 rad pos: -10.5,36.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14545 + - uid: 9391 components: - rot: -1.5707963267948966 rad pos: -9.5,36.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14546 + - uid: 9392 components: - rot: -1.5707963267948966 rad pos: -8.5,36.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14547 + - uid: 9393 components: - rot: -1.5707963267948966 rad pos: -7.5,36.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14548 + - uid: 9394 components: - rot: -1.5707963267948966 rad pos: -6.5,36.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14549 + - uid: 9395 components: - rot: -1.5707963267948966 rad pos: -5.5,36.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14550 + - uid: 9396 components: - rot: -1.5707963267948966 rad pos: -7.5,35.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14551 + - uid: 9397 components: - rot: -1.5707963267948966 rad pos: -6.5,35.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14552 + - uid: 9398 components: - rot: -1.5707963267948966 rad pos: -3.5,25.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14558 + - uid: 9399 components: - rot: -1.5707963267948966 rad pos: -4.5,36.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14562 + - uid: 9400 components: - rot: -1.5707963267948966 rad pos: -4.5,34.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14563 + - uid: 9401 components: - rot: -1.5707963267948966 rad pos: -4.5,25.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14564 + - uid: 9402 components: - pos: -3.5,35.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14565 + - uid: 9403 components: - rot: 3.141592653589793 rad pos: -3.5,37.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14566 + - uid: 9404 components: - rot: -1.5707963267948966 rad pos: -2.5,38.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14567 + - uid: 9405 components: - rot: 3.141592653589793 rad pos: -47.5,34.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14568 + - uid: 9406 components: - rot: -1.5707963267948966 rad pos: -3.5,34.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14569 + - uid: 9407 components: - rot: -1.5707963267948966 rad pos: -2.5,34.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14570 + - uid: 9408 components: - rot: -1.5707963267948966 rad pos: -1.5,34.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14573 + - uid: 9409 components: - rot: -1.5707963267948966 rad pos: -0.5,34.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14578 + - uid: 9410 components: - rot: 3.141592653589793 rad pos: -47.5,35.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14579 + - uid: 9411 components: - rot: 3.141592653589793 rad pos: -47.5,36.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14580 + - uid: 9412 components: - rot: 3.141592653589793 rad pos: -47.5,37.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14581 + - uid: 9413 components: - rot: 3.141592653589793 rad pos: -47.5,38.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14582 + - uid: 9414 components: - rot: 3.141592653589793 rad pos: -47.5,39.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14585 + - uid: 9415 components: - rot: 3.141592653589793 rad pos: -1.5,34.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14586 + - uid: 9416 components: - rot: 3.141592653589793 rad pos: -1.5,35.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14587 + - uid: 9417 components: - rot: 3.141592653589793 rad pos: -1.5,36.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14588 + - uid: 9418 components: - rot: 3.141592653589793 rad pos: -1.5,37.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14602 + - uid: 9419 components: - rot: -1.5707963267948966 rad pos: -38.5,32.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14603 + - uid: 9420 components: - rot: -1.5707963267948966 rad pos: -37.5,32.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14617 + - uid: 9421 components: - rot: 1.5707963267948966 rad pos: 3.5,27.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14618 + - uid: 9422 components: - rot: 1.5707963267948966 rad pos: 1.5,27.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14619 + - uid: 9423 components: - rot: 1.5707963267948966 rad pos: 0.5,27.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14620 + - uid: 9424 components: - rot: 1.5707963267948966 rad pos: -0.5,27.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14621 + - uid: 9425 components: - rot: 1.5707963267948966 rad pos: -1.5,27.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14625 + - uid: 9426 components: - pos: -40.5,32.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14627 + - uid: 9427 components: - rot: 1.5707963267948966 rad pos: 2.5,25.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14628 + - uid: 9428 components: - rot: 1.5707963267948966 rad pos: 1.5,25.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14629 + - uid: 9429 components: - rot: 1.5707963267948966 rad pos: 0.5,25.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14630 + - uid: 9430 components: - rot: 1.5707963267948966 rad pos: -0.5,25.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14631 + - uid: 9431 components: - rot: 1.5707963267948966 rad pos: -1.5,25.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14632 + - uid: 9432 components: - rot: 1.5707963267948966 rad pos: -2.5,25.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14664 + - uid: 9433 components: - pos: -3.5,34.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14665 + - uid: 9434 components: - pos: -3.5,33.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14666 + - uid: 9435 components: - pos: -3.5,32.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14668 + - uid: 9436 components: - pos: -3.5,30.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14669 + - uid: 9437 components: - pos: -3.5,29.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14670 + - uid: 9438 components: - pos: -3.5,28.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14671 + - uid: 9439 components: - pos: -5.5,26.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14672 + - uid: 9440 components: - pos: -5.5,27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14673 + - uid: 9441 components: - pos: -5.5,28.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14676 + - uid: 9442 components: - pos: -5.5,31.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14677 + - uid: 9443 components: - pos: -5.5,32.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14678 + - uid: 9444 components: - pos: -5.5,33.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14681 + - uid: 9445 components: - rot: 3.141592653589793 rad pos: -3.5,26.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14682 + - uid: 9446 components: - rot: 3.141592653589793 rad pos: -3.5,25.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14683 + - uid: 9447 components: - rot: 3.141592653589793 rad pos: -3.5,24.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14684 + - uid: 9448 components: - rot: 3.141592653589793 rad pos: -3.5,23.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14686 + - uid: 9449 components: - rot: 3.141592653589793 rad pos: -5.5,24.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14687 + - uid: 9450 components: - rot: 3.141592653589793 rad pos: -5.5,23.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14688 + - uid: 9451 components: - rot: 3.141592653589793 rad pos: -5.5,22.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14695 + - uid: 9452 components: - pos: -3.5,15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14697 + - uid: 9453 components: - rot: 1.5707963267948966 rad pos: -12.5,21.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14698 + - uid: 9454 components: - rot: 1.5707963267948966 rad pos: -11.5,21.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14699 + - uid: 9455 components: - rot: 1.5707963267948966 rad pos: -9.5,21.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14700 + - uid: 9456 components: - rot: 1.5707963267948966 rad pos: -10.5,21.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14702 + - uid: 9457 components: - rot: 1.5707963267948966 rad pos: -8.5,21.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14703 + - uid: 9458 components: - pos: -3.5,16.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14704 + - uid: 9459 components: - rot: 1.5707963267948966 rad pos: -6.5,21.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14705 + - uid: 9460 components: - pos: -3.5,19.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14706 + - uid: 9461 components: - rot: 1.5707963267948966 rad pos: -11.5,22.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14707 + - uid: 9462 components: - rot: 1.5707963267948966 rad pos: -10.5,22.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14708 + - uid: 9463 components: - rot: 1.5707963267948966 rad pos: -9.5,22.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14709 + - uid: 9464 components: - rot: 1.5707963267948966 rad pos: -8.5,22.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14710 + - uid: 9465 components: - rot: 1.5707963267948966 rad pos: -7.5,22.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14711 + - uid: 9466 components: - rot: 1.5707963267948966 rad pos: -6.5,22.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14712 + - uid: 9467 components: - rot: 1.5707963267948966 rad pos: -5.5,22.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14713 + - uid: 9468 components: - pos: -3.5,20.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14716 + - uid: 9469 components: - pos: -3.5,18.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14718 + - uid: 9470 components: - pos: -3.5,17.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14719 + - uid: 9471 components: - pos: -3.5,14.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14720 + - uid: 9472 components: - pos: -3.5,13.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14721 + - uid: 9473 components: - pos: -3.5,12.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14724 + - uid: 9474 components: - pos: -3.5,9.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14725 + - uid: 9475 components: - pos: -3.5,8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14726 + - uid: 9476 components: - pos: -3.5,7.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14727 + - uid: 9477 components: - pos: -3.5,6.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14729 + - uid: 9478 components: - pos: -4.5,12.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14730 + - uid: 9479 components: - pos: -4.5,13.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14731 + - uid: 9480 components: - pos: -4.5,14.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14732 + - uid: 9481 components: - pos: -4.5,15.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14734 + - uid: 9482 components: - pos: -4.5,17.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14735 + - uid: 9483 components: - pos: -4.5,18.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14736 + - uid: 9484 components: - pos: -4.5,19.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14737 + - uid: 9485 components: - pos: -4.5,20.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14738 + - uid: 9486 components: - pos: -4.5,21.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14741 + - uid: 9487 components: - rot: -1.5707963267948966 rad pos: -4.5,21.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14742 + - uid: 9488 components: - rot: 3.141592653589793 rad pos: -7.5,20.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14743 + - uid: 9489 components: - rot: 3.141592653589793 rad pos: -7.5,19.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14744 + - uid: 9490 components: - rot: 3.141592653589793 rad pos: -7.5,18.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14745 + - uid: 9491 components: - rot: 3.141592653589793 rad pos: -7.5,17.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14747 + - uid: 9492 components: - rot: 3.141592653589793 rad pos: -7.5,9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14748 + - uid: 9493 components: - rot: 3.141592653589793 rad pos: -7.5,8.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14940 + - uid: 9494 components: - rot: 3.141592653589793 rad pos: -18.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14941 + - uid: 9495 components: - rot: 3.141592653589793 rad pos: -18.5,8.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14948 + - uid: 9496 components: - rot: 3.141592653589793 rad pos: -9.5,7.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14949 + - uid: 9497 components: - rot: 3.141592653589793 rad pos: -9.5,8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15015 + - uid: 9498 components: - pos: -46.5,4.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15016 + - uid: 9499 components: - pos: -46.5,3.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15017 + - uid: 9500 components: - pos: -46.5,6.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15018 + - uid: 9501 components: - pos: -46.5,7.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15019 + - uid: 9502 components: - pos: -46.5,8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15020 + - uid: 9503 components: - pos: -46.5,9.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15021 + - uid: 9504 components: - pos: -46.5,10.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15022 + - uid: 9505 components: - pos: -46.5,11.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15023 + - uid: 9506 components: - pos: -46.5,12.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15024 + - uid: 9507 components: - rot: -1.5707963267948966 rad pos: -46.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15025 + - uid: 9508 components: - rot: -1.5707963267948966 rad pos: -47.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15029 + - uid: 9509 components: - pos: -48.5,8.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15033 + - uid: 9510 components: - rot: -1.5707963267948966 rad pos: -35.5,14.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15035 + - uid: 9511 components: - rot: 1.5707963267948966 rad pos: -39.5,15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15036 + - uid: 9512 components: - rot: 1.5707963267948966 rad pos: -38.5,15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15045 + - uid: 9513 components: - rot: 3.141592653589793 rad pos: -28.5,12.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15046 + - uid: 9514 components: - rot: 3.141592653589793 rad pos: -28.5,13.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15047 + - uid: 9515 components: - rot: 3.141592653589793 rad pos: -28.5,14.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15052 + - uid: 9516 components: - pos: -27.5,16.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15053 + - uid: 9517 components: - rot: 1.5707963267948966 rad pos: -39.5,15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15054 + - uid: 9518 components: - rot: 1.5707963267948966 rad pos: -38.5,15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15055 + - uid: 9519 components: - rot: 1.5707963267948966 rad pos: -36.5,15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15056 + - uid: 9520 components: - rot: 1.5707963267948966 rad pos: -35.5,15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15057 + - uid: 9521 components: - rot: 1.5707963267948966 rad pos: -33.5,15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15058 + - uid: 9522 components: - rot: 1.5707963267948966 rad pos: -32.5,15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15059 + - uid: 9523 components: - rot: 1.5707963267948966 rad pos: -30.5,15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15060 + - uid: 9524 components: - rot: 1.5707963267948966 rad pos: -29.5,15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15061 + - uid: 9525 components: - pos: -31.5,16.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15062 + - uid: 9526 components: - pos: -31.5,17.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15063 + - uid: 9527 components: - pos: -31.5,18.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15064 + - uid: 9528 components: - pos: -34.5,18.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15065 + - uid: 9529 components: - pos: -34.5,17.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15066 + - uid: 9530 components: - pos: -34.5,16.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15067 + - uid: 9531 components: - pos: -37.5,17.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15069 + - uid: 9532 components: - pos: -37.5,16.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15070 + - uid: 9533 components: - pos: -27.5,17.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15071 + - uid: 9534 components: - pos: -27.5,18.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15072 + - uid: 9535 components: - pos: -27.5,19.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15075 + - uid: 9536 components: - pos: -40.5,21.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15076 + - uid: 9537 components: - rot: -1.5707963267948966 rad pos: -39.5,22.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15077 + - uid: 9538 components: - rot: -1.5707963267948966 rad pos: -38.5,22.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15078 + - uid: 9539 components: - rot: -1.5707963267948966 rad pos: -37.5,22.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15080 + - uid: 9540 components: - rot: -1.5707963267948966 rad pos: -34.5,14.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15083 + - uid: 9541 components: - rot: -1.5707963267948966 rad pos: -32.5,14.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15084 + - uid: 9542 components: - rot: -1.5707963267948966 rad pos: -31.5,14.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15086 + - uid: 9543 components: - rot: -1.5707963267948966 rad pos: -29.5,14.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15087 + - uid: 9544 components: - rot: -1.5707963267948966 rad pos: -28.5,14.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15102 + - uid: 9545 components: - rot: 1.5707963267948966 rad pos: -22.5,25.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15103 + - uid: 9546 components: - rot: 1.5707963267948966 rad pos: -21.5,25.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15104 + - uid: 9547 components: - rot: 1.5707963267948966 rad pos: -20.5,25.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15105 + - uid: 9548 components: - pos: -19.5,28.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15107 + - uid: 9549 components: - pos: -19.5,26.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15123 + - uid: 9550 components: - rot: -1.5707963267948966 rad pos: -47.5,46.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15124 + - uid: 9551 components: - rot: -1.5707963267948966 rad pos: -46.5,46.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15125 + - uid: 9552 components: - rot: -1.5707963267948966 rad pos: -45.5,46.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15126 + - uid: 9553 components: - rot: -1.5707963267948966 rad pos: -44.5,46.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15127 + - uid: 9554 components: - rot: -1.5707963267948966 rad pos: -43.5,46.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15128 + - uid: 9555 components: - rot: -1.5707963267948966 rad pos: -42.5,46.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15129 + - uid: 9556 components: - rot: -1.5707963267948966 rad pos: -41.5,46.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15130 + - uid: 9557 components: - rot: -1.5707963267948966 rad pos: -40.5,46.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15131 + - uid: 9558 components: - rot: -1.5707963267948966 rad pos: -39.5,46.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15132 + - uid: 9559 components: - rot: -1.5707963267948966 rad pos: -38.5,46.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15133 + - uid: 9560 components: - rot: -1.5707963267948966 rad pos: -37.5,46.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15136 + - uid: 9561 components: - rot: 1.5707963267948966 rad pos: -47.5,47.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15137 + - uid: 9562 components: - rot: 1.5707963267948966 rad pos: -46.5,47.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15138 + - uid: 9563 components: - rot: 1.5707963267948966 rad pos: -45.5,47.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15139 + - uid: 9564 components: - rot: 1.5707963267948966 rad pos: -44.5,47.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15142 + - uid: 9565 components: - rot: 3.141592653589793 rad pos: -43.5,44.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15143 + - uid: 9566 components: - rot: 3.141592653589793 rad pos: -43.5,45.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15145 + - uid: 9567 components: - rot: 3.141592653589793 rad pos: -43.5,46.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15151 + - uid: 9568 components: - rot: 3.141592653589793 rad pos: -36.5,44.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15152 + - uid: 9569 components: - rot: 3.141592653589793 rad pos: -36.5,45.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15156 + - uid: 9570 components: - rot: 3.141592653589793 rad pos: -42.5,48.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15157 + - uid: 9571 components: - rot: 3.141592653589793 rad pos: -42.5,49.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15190 + - uid: 9572 components: - pos: -37.5,24.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15197 + - uid: 9573 components: - rot: -1.5707963267948966 rad pos: -35.5,-14.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15199 + - uid: 9574 components: - rot: 1.5707963267948966 rad pos: -14.5,-33.5 parent: 2 type: Transform - - color: '#F64400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15203 + - uid: 9575 components: - pos: 27.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15217 + - uid: 9576 components: - pos: -19.5,29.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15273 + - uid: 9577 components: - rot: -1.5707963267948966 rad pos: 17.5,20.5 @@ -63137,1850 +63858,2169 @@ entities: type: Transform - color: '#00FFFFFF' type: AtmosPipeColor - - uid: 15296 + - uid: 9578 components: - rot: 3.141592653589793 rad pos: -31.5,-6.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15327 + - uid: 9579 components: - rot: -1.5707963267948966 rad pos: -38.5,-14.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15328 + - uid: 9580 components: - rot: -1.5707963267948966 rad pos: -36.5,-14.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15334 + - uid: 9581 components: - rot: 3.141592653589793 rad pos: -21.5,-25.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15355 + - uid: 9582 components: - rot: -1.5707963267948966 rad pos: 26.5,5.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15367 + - uid: 9583 components: - pos: -17.5,15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15375 + - uid: 9584 components: - rot: -1.5707963267948966 rad pos: -24.5,-24.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15376 + - uid: 9585 components: - rot: -1.5707963267948966 rad pos: -23.5,-24.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15377 + - uid: 9586 components: - rot: -1.5707963267948966 rad pos: -22.5,-24.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15378 + - uid: 9587 components: - rot: -1.5707963267948966 rad pos: -25.5,-24.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15404 + - uid: 9588 components: - rot: -1.5707963267948966 rad pos: -26.5,-24.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15406 + - uid: 9589 components: - rot: -1.5707963267948966 rad pos: -39.5,-9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15407 + - uid: 9590 components: - rot: -1.5707963267948966 rad pos: -19.5,-24.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15408 + - uid: 9591 components: - rot: -1.5707963267948966 rad pos: -18.5,-24.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15413 + - uid: 9592 components: - rot: 3.141592653589793 rad pos: -17.5,-18.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15414 + - uid: 9593 components: - rot: 3.141592653589793 rad pos: -17.5,-19.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15415 + - uid: 9594 components: - rot: 3.141592653589793 rad pos: -17.5,-20.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15416 + - uid: 9595 components: - rot: 3.141592653589793 rad pos: -17.5,-21.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15417 + - uid: 9596 components: - rot: 3.141592653589793 rad pos: -17.5,-22.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15418 + - uid: 9597 components: - rot: 3.141592653589793 rad pos: -17.5,-23.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15420 + - uid: 9598 components: - rot: 3.141592653589793 rad pos: -21.5,-26.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15421 + - uid: 9599 components: - rot: 3.141592653589793 rad pos: -21.5,-27.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15423 + - uid: 9600 components: - rot: 1.5707963267948966 rad pos: -13.5,-33.5 parent: 2 type: Transform - - color: '#F64400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15426 + - uid: 9601 components: - rot: 3.141592653589793 rad pos: -30.5,11.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15428 + - uid: 9602 components: - rot: -1.5707963267948966 rad pos: -41.5,-11.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15444 + - uid: 9603 components: - rot: -1.5707963267948966 rad pos: -37.5,-14.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15446 + - uid: 9604 components: - pos: -37.5,25.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15448 + - uid: 9605 components: - rot: 1.5707963267948966 rad pos: -39.5,-11.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15449 + - uid: 9606 components: - rot: -1.5707963267948966 rad pos: -39.5,-14.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15450 + - uid: 9607 components: - rot: 1.5707963267948966 rad pos: -33.5,-14.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15451 + - uid: 9608 components: - rot: 3.141592653589793 rad pos: -40.5,-12.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15459 + - uid: 9609 components: - pos: -17.5,14.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15464 + - uid: 9610 components: - pos: 27.5,6.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15475 + - uid: 9611 components: - rot: -1.5707963267948966 rad pos: -6.5,30.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15479 + - uid: 9612 components: - pos: -17.5,16.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15485 + - uid: 9613 components: - rot: -1.5707963267948966 rad pos: -10.5,-7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15486 + - uid: 9614 components: - rot: -1.5707963267948966 rad pos: -11.5,-7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15487 + - uid: 9615 components: - rot: -1.5707963267948966 rad pos: -7.5,30.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15490 + - uid: 9616 components: - rot: 1.5707963267948966 rad pos: -10.5,-5.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15491 + - uid: 9617 components: - rot: 1.5707963267948966 rad pos: -11.5,-5.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15492 + - uid: 9618 components: - rot: 1.5707963267948966 rad pos: -12.5,-5.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15495 + - uid: 9619 components: - rot: 3.141592653589793 rad pos: -34.5,-15.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15496 + - uid: 9620 components: - rot: 3.141592653589793 rad pos: -40.5,-13.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15501 + - uid: 9621 components: - rot: 3.141592653589793 rad pos: 16.5,16.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15503 + - uid: 9622 components: - rot: 3.141592653589793 rad pos: -34.5,-16.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15508 + - uid: 9623 components: - pos: -40.5,-15.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15509 + - uid: 9624 components: - rot: 1.5707963267948966 rad pos: -38.5,-11.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15511 + - uid: 9625 components: - rot: -1.5707963267948966 rad pos: 12.5,19.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15515 + - uid: 9626 components: - rot: 1.5707963267948966 rad pos: -33.5,-14.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15516 + - uid: 9627 components: - rot: 3.141592653589793 rad pos: -30.5,12.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15522 + - uid: 9628 components: - pos: 9.5,-20.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15523 + - uid: 9629 components: - pos: 12.5,-23.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15527 + - uid: 9630 components: - pos: 9.5,-19.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15530 + - uid: 9631 components: - rot: 3.141592653589793 rad pos: -33.5,17.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15547 + - uid: 9632 components: - rot: 1.5707963267948966 rad pos: -32.5,-14.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15548 + - uid: 9633 components: - pos: -46.5,-12.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15551 + - uid: 9634 components: - pos: 9.5,-17.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15553 + - uid: 9635 components: - rot: 3.141592653589793 rad pos: -30.5,13.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15554 + - uid: 9636 components: - pos: -46.5,-11.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15569 + - uid: 9637 components: - pos: -40.5,-16.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15580 + - uid: 9638 components: - rot: 3.141592653589793 rad pos: -34.5,9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15581 + - uid: 9639 components: - pos: -37.5,11.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15582 + - uid: 9640 components: - pos: -37.5,12.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15583 + - uid: 9641 components: - pos: -37.5,13.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15584 + - uid: 9642 components: - pos: -37.5,14.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15592 + - uid: 9643 components: - rot: 3.141592653589793 rad pos: -33.5,18.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15601 + - uid: 9644 components: - rot: 3.141592653589793 rad pos: -33.5,15.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15603 + - uid: 9645 components: - rot: 3.141592653589793 rad pos: -30.5,16.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15604 + - uid: 9646 components: - rot: 3.141592653589793 rad pos: -30.5,17.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15605 + - uid: 9647 components: - rot: 3.141592653589793 rad pos: -30.5,18.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15606 + - uid: 9648 components: - rot: 3.141592653589793 rad pos: -31.5,14.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15607 + - uid: 9649 components: - rot: 3.141592653589793 rad pos: -31.5,13.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15608 + - uid: 9650 components: - rot: 3.141592653589793 rad pos: -31.5,12.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15609 + - uid: 9651 components: - rot: 3.141592653589793 rad pos: -31.5,11.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15643 + - uid: 9652 components: - rot: 1.5707963267948966 rad pos: -30.5,-5.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15725 + - uid: 9653 components: - rot: -1.5707963267948966 rad pos: -47.5,-4.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15726 + - uid: 9654 components: - rot: 3.141592653589793 rad pos: -46.5,-3.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15727 + - uid: 9655 components: - rot: 3.141592653589793 rad pos: -46.5,-2.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15728 + - uid: 9656 components: - rot: 3.141592653589793 rad pos: -46.5,-1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15745 + - uid: 9657 components: - rot: -1.5707963267948966 rad pos: -43.5,15.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15746 + - uid: 9658 components: - rot: -1.5707963267948966 rad pos: -44.5,15.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15773 + - uid: 9659 components: - rot: 1.5707963267948966 rad pos: -23.5,39.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15774 + - uid: 9660 components: - rot: 1.5707963267948966 rad pos: -24.5,39.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15775 + - uid: 9661 components: - rot: 1.5707963267948966 rad pos: -25.5,39.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15776 + - uid: 9662 components: - rot: 1.5707963267948966 rad pos: -26.5,39.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15777 + - uid: 9663 components: - pos: -27.5,40.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15778 + - uid: 9664 components: - rot: -1.5707963267948966 rad pos: -28.5,41.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15779 + - uid: 9665 components: - rot: -1.5707963267948966 rad pos: -29.5,41.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15804 + - uid: 9666 components: - rot: 1.5707963267948966 rad pos: -3.5,16.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15814 + - uid: 9667 components: - rot: 3.141592653589793 rad pos: -21.5,-30.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15819 + - uid: 9668 components: - rot: -1.5707963267948966 rad pos: -20.5,-31.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15820 + - uid: 9669 components: - rot: -1.5707963267948966 rad pos: -19.5,-31.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15821 + - uid: 9670 components: - rot: -1.5707963267948966 rad pos: -18.5,-31.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15822 + - uid: 9671 components: - rot: -1.5707963267948966 rad pos: -17.5,-31.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15823 + - uid: 9672 components: - rot: 3.141592653589793 rad pos: -16.5,-32.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15824 + - uid: 9673 components: - rot: 3.141592653589793 rad pos: -16.5,-33.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15825 + - uid: 9674 components: - rot: 3.141592653589793 rad pos: -16.5,-34.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15826 + - uid: 9675 components: - rot: 3.141592653589793 rad pos: -16.5,-35.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15827 + - uid: 9676 components: - rot: 3.141592653589793 rad pos: -16.5,-36.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15828 + - uid: 9677 components: - rot: 3.141592653589793 rad pos: -16.5,-37.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15829 + - uid: 9678 components: - rot: 3.141592653589793 rad pos: -16.5,-38.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15830 + - uid: 9679 components: - rot: 1.5707963267948966 rad pos: -15.5,-39.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15831 + - uid: 9680 components: - rot: 1.5707963267948966 rad pos: -14.5,-39.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15832 + - uid: 9681 components: - pos: -16.5,-40.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15833 + - uid: 9682 components: - pos: -16.5,-41.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15834 + - uid: 9683 components: - pos: -16.5,-42.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15835 + - uid: 9684 components: - pos: -16.5,-43.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15852 + - uid: 9685 components: - pos: 4.5,-25.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15895 + - uid: 9686 components: - rot: -1.5707963267948966 rad pos: 4.5,-6.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15896 + - uid: 9687 components: - rot: -1.5707963267948966 rad pos: 3.5,-6.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15897 + - uid: 9688 components: - rot: -1.5707963267948966 rad pos: 2.5,-6.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15898 + - uid: 9689 components: - rot: -1.5707963267948966 rad pos: 1.5,-6.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15899 + - uid: 9690 components: - rot: -1.5707963267948966 rad pos: 0.5,-6.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15923 + - uid: 9691 components: - pos: -36.5,15.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15924 + - uid: 9692 components: - pos: -36.5,16.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15933 + - uid: 9693 components: - rot: 3.141592653589793 rad pos: -46.5,38.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15934 + - uid: 9694 components: - rot: 1.5707963267948966 rad pos: -15.5,-18.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15935 + - uid: 9695 components: - rot: 1.5707963267948966 rad pos: -14.5,-18.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15939 + - uid: 9696 components: - rot: 1.5707963267948966 rad pos: -11.5,-17.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15940 + - uid: 9697 components: - rot: 1.5707963267948966 rad pos: -10.5,-17.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15941 + - uid: 9698 components: - rot: 1.5707963267948966 rad pos: -9.5,-17.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15942 + - uid: 9699 components: - rot: 1.5707963267948966 rad pos: -8.5,-17.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15943 + - uid: 9700 components: - rot: 1.5707963267948966 rad pos: -11.5,-18.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15944 + - uid: 9701 components: - rot: 1.5707963267948966 rad pos: -10.5,-18.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15945 + - uid: 9702 components: - rot: 1.5707963267948966 rad pos: -9.5,-18.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15946 + - uid: 9703 components: - rot: 1.5707963267948966 rad pos: -8.5,-18.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15966 + - uid: 9704 components: - rot: 3.141592653589793 rad pos: 6.5,2.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15973 + - uid: 9705 components: - rot: 1.5707963267948966 rad pos: -17.5,22.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16297 + - uid: 9706 components: - pos: -27.5,-22.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16494 + - uid: 9707 components: - pos: 22.5,22.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16495 + - uid: 9708 components: - pos: 22.5,23.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16496 + - uid: 9709 components: - pos: 22.5,24.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16497 + - uid: 9710 components: - pos: 22.5,25.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16498 + - uid: 9711 components: - pos: 23.5,23.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 16500 + - uid: 9712 components: - rot: -1.5707963267948966 rad pos: 23.5,26.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16568 + - uid: 9713 components: - pos: -46.5,-15.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16569 + - uid: 9714 components: - pos: -46.5,-16.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16570 + - uid: 9715 components: - pos: -46.5,-17.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16572 + - uid: 9716 components: - rot: -1.5707963267948966 rad pos: -45.5,-18.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16573 + - uid: 9717 components: - rot: -1.5707963267948966 rad pos: -44.5,-18.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16630 + - uid: 9718 components: - rot: 3.141592653589793 rad pos: 11.5,-6.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16631 + - uid: 9719 components: - rot: 3.141592653589793 rad pos: 11.5,-7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16632 + - uid: 9720 components: - rot: 3.141592653589793 rad pos: 11.5,-8.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16665 + - uid: 9721 components: - rot: -1.5707963267948966 rad pos: -25.5,-75.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16666 + - uid: 9722 components: - rot: -1.5707963267948966 rad pos: -24.5,-75.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16667 + - uid: 9723 components: - rot: -1.5707963267948966 rad pos: -23.5,-75.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16668 + - uid: 9724 components: - rot: -1.5707963267948966 rad pos: -22.5,-75.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16669 + - uid: 9725 components: - rot: -1.5707963267948966 rad pos: -21.5,-75.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16672 + - uid: 9726 components: - rot: 1.5707963267948966 rad pos: -19.5,-75.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16673 + - uid: 9727 components: - rot: 1.5707963267948966 rad pos: -18.5,-75.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16675 + - uid: 9728 components: - pos: -16.5,-76.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16676 + - uid: 9729 components: - pos: -16.5,-77.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16677 + - uid: 9730 components: - pos: -16.5,-78.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16678 + - uid: 9731 components: - pos: -16.5,-79.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16679 + - uid: 9732 components: - pos: -16.5,-80.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16680 + - uid: 9733 components: - rot: -1.5707963267948966 rad pos: -15.5,-75.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16681 + - uid: 9734 components: - rot: -1.5707963267948966 rad pos: -14.5,-75.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16682 + - uid: 9735 components: - rot: -1.5707963267948966 rad pos: -13.5,-75.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16683 + - uid: 9736 components: - rot: -1.5707963267948966 rad pos: -12.5,-75.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16686 + - uid: 9737 components: - rot: 3.141592653589793 rad pos: -16.5,-74.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16687 + - uid: 9738 components: - rot: 3.141592653589793 rad pos: -16.5,-73.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16688 + - uid: 9739 components: - rot: 3.141592653589793 rad pos: -16.5,-71.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16689 + - uid: 9740 components: - rot: 3.141592653589793 rad pos: -16.5,-70.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16690 + - uid: 9741 components: - rot: 3.141592653589793 rad pos: -16.5,-69.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16691 + - uid: 9742 components: - rot: 3.141592653589793 rad pos: -16.5,-68.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16692 + - uid: 9743 components: - rot: 3.141592653589793 rad pos: -16.5,-67.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16693 + - uid: 9744 components: - rot: 3.141592653589793 rad pos: -16.5,-66.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16694 + - uid: 9745 components: - rot: 3.141592653589793 rad pos: -16.5,-65.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16695 + - uid: 9746 components: - rot: 3.141592653589793 rad pos: -16.5,-64.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16696 + - uid: 9747 components: - rot: 3.141592653589793 rad pos: -16.5,-63.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16697 + - uid: 9748 components: - rot: 3.141592653589793 rad pos: -16.5,-62.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16698 + - uid: 9749 components: - rot: 3.141592653589793 rad pos: -16.5,-61.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16699 + - uid: 9750 components: - rot: 3.141592653589793 rad pos: -16.5,-60.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16700 + - uid: 9751 components: - rot: 3.141592653589793 rad pos: -16.5,-59.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16701 + - uid: 9752 components: - rot: 3.141592653589793 rad pos: -16.5,-58.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16702 + - uid: 9753 components: - rot: 3.141592653589793 rad pos: -16.5,-57.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16703 + - uid: 9754 components: - rot: 3.141592653589793 rad pos: -16.5,-56.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16704 + - uid: 9755 components: - rot: 3.141592653589793 rad pos: -16.5,-55.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16705 + - uid: 9756 components: - rot: 3.141592653589793 rad pos: -16.5,-54.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16706 + - uid: 9757 components: - rot: 3.141592653589793 rad pos: -16.5,-53.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16707 + - uid: 9758 components: - rot: 3.141592653589793 rad pos: -16.5,-52.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16708 + - uid: 9759 components: - rot: 3.141592653589793 rad pos: -16.5,-51.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16709 + - uid: 9760 components: - rot: 3.141592653589793 rad pos: -16.5,-50.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16710 + - uid: 9761 components: - rot: 3.141592653589793 rad pos: -16.5,-49.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16711 + - uid: 9762 components: - rot: 3.141592653589793 rad pos: -16.5,-48.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16712 + - uid: 9763 components: - rot: 3.141592653589793 rad pos: -16.5,-47.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16713 + - uid: 9764 components: - rot: 3.141592653589793 rad pos: -16.5,-46.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16714 + - uid: 9765 components: - rot: 3.141592653589793 rad pos: -16.5,-45.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16826 + - uid: 9766 components: - pos: -13.5,-19.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 16827 + - uid: 9767 components: - pos: -13.5,-20.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 16845 + - uid: 9768 components: - pos: -12.5,-18.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16846 + - uid: 9769 components: - pos: -12.5,-19.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16847 + - uid: 9770 components: - pos: -12.5,-20.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16848 + - uid: 9771 components: - pos: -12.5,-21.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16893 + - uid: 9772 components: - pos: -12.5,-22.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16894 + - uid: 9773 components: - pos: -12.5,-23.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16899 + - uid: 9774 components: - rot: -1.5707963267948966 rad pos: -51.5,32.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 16906 + - uid: 9775 components: - rot: 1.5707963267948966 rad pos: -2.5,10.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16907 + - uid: 9776 components: - rot: 1.5707963267948966 rad pos: -1.5,10.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16909 + - uid: 9777 components: - rot: 1.5707963267948966 rad pos: -2.5,11.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 16910 + - uid: 9778 components: - rot: 1.5707963267948966 rad pos: -1.5,11.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 16915 + - uid: 9779 components: - rot: -1.5707963267948966 rad pos: -21.5,27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 16918 + - uid: 9780 components: - rot: 1.5707963267948966 rad pos: -19.5,26.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 16919 + - uid: 9781 components: - rot: 1.5707963267948966 rad pos: -18.5,26.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 16920 + - uid: 9782 components: - rot: 1.5707963267948966 rad pos: -17.5,26.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 16921 + - uid: 9783 components: - rot: 1.5707963267948966 rad pos: -16.5,26.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 16931 + - uid: 9784 components: - rot: 3.141592653589793 rad pos: 13.5,26.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 16932 + - uid: 9785 components: - rot: 3.141592653589793 rad pos: 13.5,27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 16933 + - uid: 9786 components: - rot: 3.141592653589793 rad pos: 13.5,28.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 16934 + - uid: 9787 components: - rot: 1.5707963267948966 rad pos: 31.5,19.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16935 + - uid: 9788 components: - rot: 1.5707963267948966 rad pos: 30.5,19.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16936 + - uid: 9789 components: - rot: 1.5707963267948966 rad pos: 29.5,19.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16937 + - uid: 9790 components: - rot: 1.5707963267948966 rad pos: 28.5,19.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16938 + - uid: 9791 components: - rot: 1.5707963267948966 rad pos: 27.5,19.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16939 + - uid: 9792 components: - rot: 1.5707963267948966 rad pos: 26.5,19.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 17124 + - uid: 9793 components: - rot: 1.5707963267948966 rad pos: 6.5,-38.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 17125 + - uid: 9794 components: - rot: 1.5707963267948966 rad pos: 7.5,-38.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 17126 + - uid: 9795 components: - rot: 1.5707963267948966 rad pos: 8.5,-38.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 17129 + - uid: 9796 components: - pos: 11.5,-32.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' + type: AtmosPipeColor + - uid: 9797 + components: + - pos: 11.5,-34.5 + parent: 2 + type: Transform + - color: '#FF5349FF' + type: AtmosPipeColor + - uid: 9798 + components: + - pos: 11.5,-35.5 + parent: 2 + type: Transform + - color: '#FF5349FF' + type: AtmosPipeColor + - uid: 9799 + components: + - pos: 11.5,-36.5 + parent: 2 + type: Transform + - color: '#FF5349FF' + type: AtmosPipeColor + - uid: 9800 + components: + - rot: -1.5707963267948966 rad + pos: 10.5,-37.5 + parent: 2 + type: Transform + - color: '#FF5349FF' + type: AtmosPipeColor + - uid: 9801 + components: + - rot: 3.141592653589793 rad + pos: 9.5,-37.5 + parent: 2 + type: Transform + - color: '#ADD8E6FF' + type: AtmosPipeColor + - uid: 9802 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-47.5 + parent: 2 + type: Transform + - uid: 9803 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-43.5 + parent: 2 + type: Transform + - uid: 9804 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-48.5 + parent: 2 + type: Transform + - color: '#800080FF' + type: AtmosPipeColor + - uid: 9805 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-47.5 + parent: 2 + type: Transform + - color: '#800080FF' + type: AtmosPipeColor + - uid: 9806 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-50.5 + parent: 2 + type: Transform + - uid: 9807 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-43.5 + parent: 2 + type: Transform + - color: '#800080FF' + type: AtmosPipeColor + - uid: 9808 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-46.5 + parent: 2 + type: Transform + - uid: 9809 + components: + - rot: -1.5707963267948966 rad + pos: 5.5,-46.5 + parent: 2 + type: Transform + - uid: 9810 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-41.5 + parent: 2 + type: Transform + - color: '#800080FF' + type: AtmosPipeColor + - uid: 9811 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-41.5 + parent: 2 + type: Transform + - color: '#800080FF' + type: AtmosPipeColor + - uid: 9812 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-40.5 + parent: 2 + type: Transform + - color: '#800080FF' + type: AtmosPipeColor + - uid: 9813 + components: + - rot: -1.5707963267948966 rad + pos: 4.5,-43.5 + parent: 2 + type: Transform + - uid: 9814 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-39.5 + parent: 2 + type: Transform + - color: '#800080FF' + type: AtmosPipeColor + - uid: 9815 + components: + - rot: -1.5707963267948966 rad + pos: -6.5,-43.5 + parent: 2 + type: Transform + - color: '#66FF00FF' + type: AtmosPipeColor + - uid: 9816 + components: + - pos: -8.5,-46.5 + parent: 2 + type: Transform + - color: '#66FF00FF' + type: AtmosPipeColor + - uid: 9817 + components: + - pos: -8.5,-47.5 + parent: 2 + type: Transform + - color: '#66FF00FF' + type: AtmosPipeColor + - uid: 9818 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-41.5 + parent: 2 + type: Transform + - color: '#00008BFF' + type: AtmosPipeColor + - uid: 9819 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-41.5 + parent: 2 + type: Transform + - color: '#00008BFF' + type: AtmosPipeColor + - uid: 9820 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-45.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 9821 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-47.5 + parent: 2 + type: Transform + - color: '#808080FF' + type: AtmosPipeColor + - uid: 9822 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-47.5 + parent: 2 + type: Transform + - color: '#66FF00FF' + type: AtmosPipeColor + - uid: 9823 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-46.5 + parent: 2 + type: Transform + - color: '#66FF00FF' + type: AtmosPipeColor + - uid: 9824 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-43.5 + parent: 2 + type: Transform + - color: '#66FF00FF' + type: AtmosPipeColor + - uid: 9825 + components: + - pos: -2.5,-48.5 + parent: 2 + type: Transform + - color: '#66FF00FF' + type: AtmosPipeColor + - uid: 9826 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-49.5 + parent: 2 + type: Transform + - color: '#EE4B2BFF' + type: AtmosPipeColor + - uid: 9827 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-43.5 + parent: 2 + type: Transform + - color: '#EE4B2BFF' + type: AtmosPipeColor + - uid: 9828 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-49.5 + parent: 2 + type: Transform + - color: '#EE4B2BFF' + type: AtmosPipeColor + - uid: 9829 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-42.5 + parent: 2 + type: Transform + - color: '#66FF00FF' + type: AtmosPipeColor + - uid: 9830 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-41.5 + parent: 2 + type: Transform + - color: '#66FF00FF' + type: AtmosPipeColor + - uid: 9831 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-41.5 + parent: 2 + type: Transform + - color: '#00008BFF' + type: AtmosPipeColor + - uid: 9832 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-47.5 + parent: 2 + type: Transform + - color: '#808080FF' + type: AtmosPipeColor + - uid: 9833 + components: + - rot: -1.5707963267948966 rad + pos: 0.5,-49.5 + parent: 2 + type: Transform + - color: '#EE4B2BFF' + type: AtmosPipeColor + - uid: 9834 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-47.5 + parent: 2 + type: Transform + - color: '#808080FF' + type: AtmosPipeColor + - uid: 9835 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-52.5 + parent: 2 + type: Transform + - color: '#66FF00FF' + type: AtmosPipeColor + - uid: 9836 + components: + - rot: 1.5707963267948966 rad + pos: 0.5,-51.5 + parent: 2 + type: Transform + - color: '#800080FF' + type: AtmosPipeColor + - uid: 9837 + components: + - pos: -0.5,-52.5 + parent: 2 + type: Transform + - color: '#800080FF' + type: AtmosPipeColor +- proto: GasPipeTJunction + entities: + - uid: 9838 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-31.5 + parent: 2 + type: Transform + - color: '#FF5349FF' + type: AtmosPipeColor + - uid: 9839 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-44.5 + parent: 2 + type: Transform + - color: '#66FF00FF' + type: AtmosPipeColor + - uid: 9840 + components: + - pos: -6.5,-44.5 + parent: 2 + type: Transform + - color: '#66FF00FF' type: AtmosPipeColor - - uid: 17130 + - uid: 9841 components: - - pos: 11.5,-34.5 + - rot: -1.5707963267948966 rad + pos: -4.5,-45.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#66FF00FF' type: AtmosPipeColor - - uid: 17131 + - uid: 9842 components: - - pos: 11.5,-35.5 + - pos: -1.5,-39.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#800080FF' type: AtmosPipeColor - - uid: 17132 + - uid: 9843 components: - - pos: 11.5,-36.5 + - rot: -1.5707963267948966 rad + pos: -7.5,-38.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#800080FF' type: AtmosPipeColor - - uid: 17134 + - uid: 9844 components: - - rot: -1.5707963267948966 rad - pos: 10.5,-37.5 + - rot: 1.5707963267948966 rad + pos: -0.5,-40.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#800080FF' type: AtmosPipeColor - - uid: 17136 + - uid: 9845 components: - rot: 3.141592653589793 rad - pos: 9.5,-37.5 + pos: -1.5,-38.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#00008BFF' type: AtmosPipeColor -- proto: GasPipeTJunction - entities: - - uid: 76 + - uid: 9846 components: - pos: 7.5,-10.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 675 + - uid: 9847 components: - rot: 1.5707963267948966 rad pos: -46.5,-13.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 1309 + - uid: 9848 components: - rot: -1.5707963267948966 rad pos: 40.5,3.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 1325 + - uid: 9849 components: - rot: 1.5707963267948966 rad pos: 7.5,-14.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 1331 + - uid: 9850 components: - rot: 3.141592653589793 rad pos: -40.5,41.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 1332 + - uid: 9851 components: - rot: 1.5707963267948966 rad pos: 9.5,-16.5 parent: 2 type: Transform - - color: '#0066FFFF' - type: AtmosPipeColor - - uid: 1698 - components: - - rot: 1.5707963267948966 rad - pos: -7.5,-40.5 - parent: 2 - type: Transform - - color: '#F64400FF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 1723 + - uid: 9852 components: - rot: 1.5707963267948966 rad pos: 20.5,-22.5 parent: 2 type: Transform - - color: '#0066FFFF' - type: AtmosPipeColor - - uid: 1771 - components: - - pos: -5.5,-40.5 - parent: 2 - type: Transform - - color: '#F64400FF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 1806 + - uid: 9853 components: - pos: -12.5,-17.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 1822 + - uid: 9854 components: - pos: -13.5,-18.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 1949 + - uid: 9855 components: - rot: 1.5707963267948966 rad pos: -15.5,4.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 1981 + - uid: 9856 components: - rot: 3.141592653589793 rad pos: 6.5,-13.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 2176 + - uid: 9857 components: - rot: 1.5707963267948966 rad pos: -49.5,-7.5 @@ -64988,123 +66028,77 @@ entities: type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 2204 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-41.5 - parent: 2 - type: Transform - - uid: 2298 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-38.5 - parent: 2 - type: Transform - - color: '#F64400FF' - type: AtmosPipeColor - - uid: 2300 - components: - - pos: -2.5,-40.5 - parent: 2 - type: Transform - - uid: 2309 - components: - - rot: 1.5707963267948966 rad - pos: -6.5,-38.5 - parent: 2 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 2313 - components: - - pos: 0.5,-41.5 - parent: 2 - type: Transform - - uid: 2330 - components: - - rot: 3.141592653589793 rad - pos: -0.5,-39.5 - parent: 2 - type: Transform - - uid: 2332 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-39.5 - parent: 2 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 2426 + - uid: 9858 components: - pos: 10.5,-25.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 2941 + - uid: 9859 components: - rot: 1.5707963267948966 rad pos: -6.5,-35.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 2942 + - uid: 9860 components: - rot: -1.5707963267948966 rad pos: -7.5,-34.5 parent: 2 type: Transform - - color: '#F64400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 2943 + - uid: 9861 components: - rot: 1.5707963267948966 rad pos: -6.5,-34.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 2948 + - uid: 9862 components: - rot: -1.5707963267948966 rad pos: -7.5,-35.5 parent: 2 type: Transform - - color: '#F64400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 3541 + - uid: 9863 components: - rot: -1.5707963267948966 rad pos: 12.5,-22.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 3844 + - uid: 9864 components: - pos: 8.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 3896 + - uid: 9865 components: - rot: -1.5707963267948966 rad pos: 9.5,-24.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 4328 + - uid: 9866 components: - rot: 3.141592653589793 rad pos: 33.5,19.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 4456 + - uid: 9867 components: - rot: 1.5707963267948966 rad pos: 15.5,19.5 @@ -65112,7 +66106,7 @@ entities: type: Transform - color: '#00FFFFFF' type: AtmosPipeColor - - uid: 4470 + - uid: 9868 components: - rot: 3.141592653589793 rad pos: 16.5,20.5 @@ -65120,899 +66114,893 @@ entities: type: Transform - color: '#00FFFFFF' type: AtmosPipeColor - - uid: 4473 + - uid: 9869 components: - rot: 1.5707963267948966 rad pos: 16.5,17.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 4475 + - uid: 9870 components: - rot: 3.141592653589793 rad pos: 18.5,16.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 4482 + - uid: 9871 components: - rot: 1.5707963267948966 rad pos: 16.5,18.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 4827 + - uid: 9872 components: - pos: 32.5,19.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 4828 + - uid: 9873 components: - pos: -22.5,27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 4987 + - uid: 9874 components: - rot: 3.141592653589793 rad pos: -27.5,-24.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 5221 + - uid: 9875 components: - rot: 3.141592653589793 rad pos: -7.5,-17.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 6195 + - uid: 9876 components: - rot: -1.5707963267948966 rad pos: 33.5,20.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 6211 + - uid: 9877 components: - pos: -56.5,37.5 parent: 2 type: Transform - - uid: 6222 + - uid: 9878 components: - pos: -50.5,33.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 6228 + - uid: 9879 components: - pos: -55.5,34.5 parent: 2 type: Transform - - uid: 6254 + - uid: 9880 components: - pos: 13.5,29.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 6329 + - uid: 9881 components: - rot: 3.141592653589793 rad pos: 13.5,25.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 6393 + - uid: 9882 components: - rot: 1.5707963267948966 rad pos: -53.5,33.5 parent: 2 type: Transform - - uid: 6622 + - uid: 9883 components: - rot: -1.5707963267948966 rad pos: -16.5,-44.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 6671 + - uid: 9884 components: - rot: 1.5707963267948966 rad pos: -25.5,6.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 6679 + - uid: 9885 components: - pos: 5.5,-6.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 6720 + - uid: 9886 components: - rot: 3.141592653589793 rad pos: -54.5,36.5 parent: 2 type: Transform - - uid: 6737 + - uid: 9887 components: - rot: 3.141592653589793 rad pos: -19.5,22.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 6741 + - uid: 9888 components: - rot: -1.5707963267948966 rad pos: -21.5,-28.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 6756 + - uid: 9889 components: - rot: 1.5707963267948966 rad pos: 31.5,18.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 6763 + - uid: 9890 components: - rot: 3.141592653589793 rad pos: 6.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 6781 + - uid: 9891 components: - rot: 3.141592653589793 rad pos: -14.5,-17.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 6782 + - uid: 9892 components: - rot: 3.141592653589793 rad pos: -20.5,33.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 6784 + - uid: 9893 components: - rot: -1.5707963267948966 rad pos: -3.5,31.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 6785 + - uid: 9894 components: - rot: 1.5707963267948966 rad pos: -5.5,29.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 6787 + - uid: 9895 components: - rot: -1.5707963267948966 rad pos: -5.5,30.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 7369 + - uid: 9896 components: - rot: 3.141592653589793 rad pos: -33.5,14.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 7559 + - uid: 9897 components: - rot: 1.5707963267948966 rad pos: -4.5,16.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 7896 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-43.5 - parent: 2 - type: Transform - - uid: 7910 + - uid: 9898 components: - rot: 3.141592653589793 rad pos: 29.5,-19.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 7911 + - uid: 9899 components: - rot: 3.141592653589793 rad pos: -1.5,-27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 7913 + - uid: 9900 components: - rot: 3.141592653589793 rad pos: 25.5,-20.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 7914 + - uid: 9901 components: - pos: 20.5,-20.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 7916 + - uid: 9902 components: - rot: -1.5707963267948966 rad pos: 11.5,-9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 8294 + - uid: 9903 components: - rot: -1.5707963267948966 rad pos: 26.5,6.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 8305 + - uid: 9904 components: - rot: 3.141592653589793 rad pos: 5.5,-24.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 8332 + - uid: 9905 components: - pos: 4.5,-24.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 9099 + - uid: 9906 components: - rot: -1.5707963267948966 rad pos: 11.5,13.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 9526 + - uid: 9907 components: - pos: 10.5,-13.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 9570 + - uid: 9908 components: - rot: 3.141592653589793 rad pos: 10.5,11.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 10904 + - uid: 9909 components: - rot: 3.141592653589793 rad pos: -31.5,-9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 10906 + - uid: 9910 components: - pos: -48.5,-8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 10908 + - uid: 9911 components: - rot: -1.5707963267948966 rad pos: -42.5,15.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 10958 + - uid: 9912 components: - rot: -1.5707963267948966 rad pos: -46.5,-4.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11001 + - uid: 9913 components: - rot: 1.5707963267948966 rad pos: 9.5,-21.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11009 + - uid: 9914 components: - rot: -1.5707963267948966 rad pos: -16.5,-2.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11240 + - uid: 9915 components: - rot: 1.5707963267948966 rad pos: -6.5,-18.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11270 + - uid: 9916 components: - rot: 1.5707963267948966 rad pos: -6.5,-33.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11288 + - uid: 9917 components: - rot: -1.5707963267948966 rad pos: -6.5,-32.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11291 + - uid: 9918 components: - rot: 1.5707963267948966 rad pos: -6.5,-29.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11292 + - uid: 9919 components: - rot: -1.5707963267948966 rad pos: -6.5,-28.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11311 + - uid: 9920 components: - pos: -10.5,-33.5 parent: 2 type: Transform - - color: '#F64400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11312 + - uid: 9921 components: - rot: -1.5707963267948966 rad pos: -7.5,-33.5 parent: 2 type: Transform - - color: '#F64400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11317 + - uid: 9922 components: - rot: 3.141592653589793 rad pos: -11.5,-33.5 parent: 2 type: Transform - - color: '#F64400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11338 + - uid: 9923 components: - rot: 3.141592653589793 rad pos: -4.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11339 + - uid: 9924 components: - pos: 30.5,-4.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11342 + - uid: 9925 components: - pos: -12.5,-33.5 parent: 2 type: Transform - - color: '#F64400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11360 + - uid: 9926 components: - rot: 1.5707963267948966 rad pos: 33.5,-5.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11411 + - uid: 9927 components: - rot: 3.141592653589793 rad pos: -3.5,-22.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11414 + - uid: 9928 components: - pos: -4.5,-24.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11418 + - uid: 9929 components: - pos: -1.5,-22.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11420 + - uid: 9930 components: - rot: 1.5707963267948966 rad pos: 13.5,-9.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11421 + - uid: 9931 components: - rot: -1.5707963267948966 rad pos: -7.5,-18.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11422 + - uid: 9932 components: - pos: 17.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11446 + - uid: 9933 components: - rot: 3.141592653589793 rad pos: 39.5,0.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11449 + - uid: 9934 components: - rot: 3.141592653589793 rad pos: 35.5,0.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11459 + - uid: 9935 components: - pos: 25.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11467 + - uid: 9936 components: - rot: 3.141592653589793 rad pos: 26.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11472 + - uid: 9937 components: - rot: 3.141592653589793 rad pos: 2.5,-24.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11474 + - uid: 9938 components: - rot: -1.5707963267948966 rad pos: 37.5,-5.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11488 + - uid: 9939 components: - rot: 1.5707963267948966 rad pos: 39.5,-13.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11489 + - uid: 9940 components: - rot: 1.5707963267948966 rad pos: 39.5,-15.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11497 + - uid: 9941 components: - pos: 15.5,-27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11504 + - uid: 9942 components: - rot: 1.5707963267948966 rad pos: 34.5,-15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11505 + - uid: 9943 components: - rot: -1.5707963267948966 rad pos: 38.5,-15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11514 + - uid: 9944 components: - rot: 1.5707963267948966 rad pos: 38.5,-11.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11536 + - uid: 9945 components: - rot: 3.141592653589793 rad pos: 38.5,-20.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11545 + - uid: 9946 components: - pos: 12.5,-20.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11555 + - uid: 9947 components: - pos: 24.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11579 + - uid: 9948 components: - rot: 1.5707963267948966 rad pos: 24.5,-10.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11583 + - uid: 9949 components: - rot: 3.141592653589793 rad pos: 30.5,-20.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11591 + - uid: 9950 components: - pos: 29.5,-14.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11642 + - uid: 9951 components: - rot: -1.5707963267948966 rad pos: 24.5,-15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11648 + - uid: 9952 components: - rot: -1.5707963267948966 rad pos: 26.5,-9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11649 + - uid: 9953 components: - rot: -1.5707963267948966 rad pos: 26.5,-8.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11660 + - uid: 9954 components: - rot: -1.5707963267948966 rad pos: 26.5,-12.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11665 + - uid: 9955 components: - rot: 3.141592653589793 rad pos: 27.5,-16.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11666 + - uid: 9956 components: - rot: 3.141592653589793 rad pos: 21.5,-15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11678 + - uid: 9957 components: - pos: 14.5,-20.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11691 + - uid: 9958 components: - rot: -1.5707963267948966 rad pos: 34.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11693 + - uid: 9959 components: - rot: 1.5707963267948966 rad pos: 34.5,3.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11707 + - uid: 9960 components: - rot: 3.141592653589793 rad pos: 32.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11722 + - uid: 9961 components: - rot: -1.5707963267948966 rad pos: 33.5,3.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11726 + - uid: 9962 components: - rot: -1.5707963267948966 rad pos: -7.5,-26.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11729 + - uid: 9963 components: - rot: 3.141592653589793 rad pos: 26.5,-14.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11732 + - uid: 9964 components: - rot: 1.5707963267948966 rad pos: 17.5,-17.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11803 + - uid: 9965 components: - rot: -1.5707963267948966 rad pos: 5.5,25.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11815 + - uid: 9966 components: - rot: 1.5707963267948966 rad pos: 33.5,11.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11824 + - uid: 9967 components: - rot: 3.141592653589793 rad pos: 39.5,11.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11825 + - uid: 9968 components: - rot: 3.141592653589793 rad pos: 40.5,11.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11842 + - uid: 9969 components: - rot: -1.5707963267948966 rad pos: -22.5,39.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11858 + - uid: 9970 components: - rot: 3.141592653589793 rad pos: 41.5,9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11915 + - uid: 9971 components: - rot: 3.141592653589793 rad pos: 21.5,-9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11920 + - uid: 9972 components: - pos: 37.5,0.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11926 + - uid: 9973 components: - rot: 1.5707963267948966 rad pos: 31.5,22.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11952 + - uid: 9974 components: - rot: -1.5707963267948966 rad pos: -39.5,33.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11976 + - uid: 9975 components: - pos: 20.5,29.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11996 + - uid: 9976 components: - rot: 3.141592653589793 rad pos: 20.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12036 + - uid: 9977 components: - pos: 12.5,30.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12038 + - uid: 9978 components: - rot: -1.5707963267948966 rad pos: 4.5,27.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12043 + - uid: 9979 components: - rot: 3.141592653589793 rad pos: 27.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12099 + - uid: 9980 components: - rot: -1.5707963267948966 rad pos: 14.5,-3.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12115 + - uid: 9981 components: - rot: 1.5707963267948966 rad pos: 7.5,-3.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12130 + - uid: 9982 components: - rot: 1.5707963267948966 rad pos: 8.5,-4.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12140 + - uid: 9983 components: - rot: -1.5707963267948966 rad pos: 11.5,-4.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12142 + - uid: 9984 components: - rot: 1.5707963267948966 rad pos: -56.5,-13.5 @@ -66020,369 +67008,369 @@ entities: type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 12145 + - uid: 9985 components: - rot: 1.5707963267948966 rad pos: 13.5,-6.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12151 + - uid: 9986 components: - rot: -1.5707963267948966 rad pos: 22.5,21.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12158 + - uid: 9987 components: - rot: 3.141592653589793 rad pos: 23.5,22.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12164 + - uid: 9988 components: - rot: 1.5707963267948966 rad pos: 26.5,21.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12165 + - uid: 9989 components: - rot: 3.141592653589793 rad pos: 13.5,-13.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12172 + - uid: 9990 components: - rot: -1.5707963267948966 rad pos: 26.5,15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12203 + - uid: 9991 components: - rot: -1.5707963267948966 rad pos: 8.5,-6.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12205 + - uid: 9992 components: - rot: 1.5707963267948966 rad pos: 22.5,13.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12206 + - uid: 9993 components: - rot: 1.5707963267948966 rad pos: 22.5,19.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12226 + - uid: 9994 components: - pos: 21.5,15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12273 + - uid: 9995 components: - rot: 3.141592653589793 rad pos: 19.5,15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12282 + - uid: 9996 components: - pos: 18.5,15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12290 + - uid: 9997 components: - rot: 3.141592653589793 rad pos: 16.5,15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12301 + - uid: 9998 components: - rot: 3.141592653589793 rad pos: 13.5,16.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12311 + - uid: 9999 components: - rot: 1.5707963267948966 rad pos: 12.5,15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12325 + - uid: 10000 components: - rot: 1.5707963267948966 rad pos: 11.5,12.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12330 + - uid: 10001 components: - pos: 14.5,12.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12390 + - uid: 10002 components: - rot: 1.5707963267948966 rad pos: 13.5,4.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12399 + - uid: 10003 components: - rot: -1.5707963267948966 rad pos: 18.5,12.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12420 + - uid: 10004 components: - rot: -1.5707963267948966 rad pos: 12.5,4.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12423 + - uid: 10005 components: - pos: 13.5,0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12460 + - uid: 10006 components: - rot: 3.141592653589793 rad pos: 18.5,6.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12468 + - uid: 10007 components: - rot: 3.141592653589793 rad pos: 0.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12494 + - uid: 10008 components: - rot: 1.5707963267948966 rad pos: 14.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12546 + - uid: 10009 components: - pos: 13.5,24.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12557 + - uid: 10010 components: - pos: 12.5,25.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12559 + - uid: 10011 components: - rot: -1.5707963267948966 rad pos: 13.5,19.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12563 + - uid: 10012 components: - rot: -1.5707963267948966 rad pos: 12.5,21.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12564 + - uid: 10013 components: - pos: 1.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12565 + - uid: 10014 components: - rot: 1.5707963267948966 rad pos: 12.5,20.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12590 + - uid: 10015 components: - rot: -1.5707963267948966 rad pos: 13.5,23.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12613 + - uid: 10016 components: - rot: 3.141592653589793 rad pos: 13.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12698 + - uid: 10017 components: - pos: 11.5,-27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12775 + - uid: 10018 components: - rot: -1.5707963267948966 rad pos: 30.5,-10.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12779 + - uid: 10019 components: - rot: -1.5707963267948966 rad pos: -4.5,4.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12797 + - uid: 10020 components: - rot: 1.5707963267948966 rad pos: -4.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12828 + - uid: 10021 components: - rot: 1.5707963267948966 rad pos: -7.5,11.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12838 + - uid: 10022 components: - rot: 3.141592653589793 rad pos: -3.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12843 + - uid: 10023 components: - pos: -8.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12849 + - uid: 10024 components: - rot: 3.141592653589793 rad pos: -14.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12855 + - uid: 10025 components: - pos: -9.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12859 + - uid: 10026 components: - pos: -13.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12860 + - uid: 10027 components: - rot: 3.141592653589793 rad pos: -14.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12863 + - uid: 10028 components: - pos: -16.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12869 + - uid: 10029 components: - rot: -1.5707963267948966 rad pos: -16.5,-4.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12893 + - uid: 10030 components: - pos: -24.5,-3.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12896 + - uid: 10031 components: - pos: -22.5,-4.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12900 + - uid: 10032 components: - rot: 3.141592653589793 rad pos: -13.5,10.5 @@ -66390,287 +67378,287 @@ entities: type: Transform - color: '#00AABBFF' type: AtmosPipeColor - - uid: 12901 + - uid: 10033 components: - rot: 3.141592653589793 rad pos: -24.5,-9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13032 + - uid: 10034 components: - rot: -1.5707963267948966 rad pos: -3.5,5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13062 + - uid: 10035 components: - pos: -13.5,5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13075 + - uid: 10036 components: - rot: 3.141592653589793 rad pos: -14.5,5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13102 + - uid: 10037 components: - rot: 3.141592653589793 rad pos: -17.5,5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13141 + - uid: 10038 components: - rot: -1.5707963267948966 rad pos: 11.5,-5.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13221 + - uid: 10039 components: - pos: -17.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13237 + - uid: 10040 components: - pos: -23.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13238 + - uid: 10041 components: - rot: 3.141592653589793 rad pos: -22.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13246 + - uid: 10042 components: - rot: 3.141592653589793 rad pos: -25.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13277 + - uid: 10043 components: - rot: -1.5707963267948966 rad pos: -24.5,2.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13350 + - uid: 10044 components: - rot: 1.5707963267948966 rad pos: -24.5,6.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13369 + - uid: 10045 components: - rot: -1.5707963267948966 rad pos: -25.5,15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13384 + - uid: 10046 components: - rot: 1.5707963267948966 rad pos: -25.5,16.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13385 + - uid: 10047 components: - rot: 1.5707963267948966 rad pos: -24.5,14.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13391 + - uid: 10048 components: - rot: 3.141592653589793 rad pos: -24.5,17.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13455 + - uid: 10049 components: - rot: -1.5707963267948966 rad pos: -8.5,-4.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13598 + - uid: 10050 components: - rot: -1.5707963267948966 rad pos: -9.5,-5.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13605 + - uid: 10051 components: - rot: 3.141592653589793 rad pos: -8.5,-8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13607 + - uid: 10052 components: - rot: 1.5707963267948966 rad pos: -8.5,-3.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13657 + - uid: 10053 components: - rot: 3.141592653589793 rad pos: -42.5,-8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13658 + - uid: 10054 components: - rot: 1.5707963267948966 rad pos: -42.5,-5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13659 + - uid: 10055 components: - rot: -1.5707963267948966 rad pos: -41.5,-6.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13677 + - uid: 10056 components: - rot: 3.141592653589793 rad pos: -32.5,-8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13689 + - uid: 10057 components: - pos: -27.5,-9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13703 + - uid: 10058 components: - rot: 3.141592653589793 rad pos: -41.5,-9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13725 + - uid: 10059 components: - rot: 3.141592653589793 rad pos: -28.5,-14.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13741 + - uid: 10060 components: - pos: -39.5,-12.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13742 + - uid: 10061 components: - pos: -37.5,-12.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13746 + - uid: 10062 components: - pos: -37.5,-15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13779 + - uid: 10063 components: - pos: -52.5,-8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13781 + - uid: 10064 components: - rot: -1.5707963267948966 rad pos: -46.5,-7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13839 + - uid: 10065 components: - rot: 1.5707963267948966 rad pos: -55.5,-8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13840 + - uid: 10066 components: - rot: -1.5707963267948966 rad pos: -55.5,-7.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13845 + - uid: 10067 components: - rot: 1.5707963267948966 rad pos: -58.5,-14.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13853 + - uid: 10068 components: - rot: 1.5707963267948966 rad pos: -55.5,-4.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13867 + - uid: 10069 components: - rot: -1.5707963267948966 rad pos: -56.5,-16.5 @@ -66678,14 +67666,14 @@ entities: type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13871 + - uid: 10070 components: - pos: -56.5,-0.5 parent: 2 type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13875 + - uid: 10071 components: - rot: 1.5707963267948966 rad pos: -56.5,-2.5 @@ -66693,7 +67681,7 @@ entities: type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13878 + - uid: 10072 components: - rot: -1.5707963267948966 rad pos: -56.5,-8.5 @@ -66701,14 +67689,14 @@ entities: type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13890 + - uid: 10073 components: - pos: -50.5,-13.5 parent: 2 type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13899 + - uid: 10074 components: - rot: -1.5707963267948966 rad pos: -56.5,-12.5 @@ -66716,14 +67704,14 @@ entities: type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13901 + - uid: 10075 components: - pos: -53.5,-13.5 parent: 2 type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13902 + - uid: 10076 components: - rot: 1.5707963267948966 rad pos: -56.5,-9.5 @@ -66731,7 +67719,7 @@ entities: type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13903 + - uid: 10077 components: - rot: 1.5707963267948966 rad pos: -56.5,-11.5 @@ -66739,7 +67727,7 @@ entities: type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13908 + - uid: 10078 components: - rot: 1.5707963267948966 rad pos: -56.5,-6.5 @@ -66747,783 +67735,903 @@ entities: type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13928 + - uid: 10079 components: - rot: 3.141592653589793 rad pos: -5.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13935 + - uid: 10080 components: - rot: 1.5707963267948966 rad pos: -37.5,-20.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13962 + - uid: 10081 components: - rot: -1.5707963267948966 rad pos: -16.5,-19.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13963 + - uid: 10082 components: - rot: 1.5707963267948966 rad pos: -16.5,-18.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13998 + - uid: 10083 components: - rot: 1.5707963267948966 rad pos: -17.5,-13.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14006 + - uid: 10084 components: - rot: -1.5707963267948966 rad pos: -16.5,-22.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14020 + - uid: 10085 components: - rot: 3.141592653589793 rad pos: 12.5,-27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14031 + - uid: 10086 components: - rot: -1.5707963267948966 rad pos: -25.5,5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14032 + - uid: 10087 components: - rot: -1.5707963267948966 rad pos: -24.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14039 + - uid: 10088 components: - rot: 3.141592653589793 rad pos: -28.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14043 + - uid: 10089 components: - pos: -32.5,5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14053 + - uid: 10090 components: - rot: 3.141592653589793 rad pos: -42.5,5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14064 + - uid: 10091 components: - pos: -31.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14067 + - uid: 10092 components: - rot: 3.141592653589793 rad pos: -34.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14069 + - uid: 10093 components: - pos: -30.5,26.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14076 + - uid: 10094 components: - pos: -43.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14095 + - uid: 10095 components: - pos: -28.5,5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14100 + - uid: 10096 components: - rot: 3.141592653589793 rad pos: -49.5,33.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14105 + - uid: 10097 components: - pos: -28.5,27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14145 + - uid: 10098 components: - rot: 1.5707963267948966 rad pos: -23.5,22.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14150 + - uid: 10099 components: - rot: -1.5707963267948966 rad pos: -23.5,26.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14173 + - uid: 10100 components: - rot: 3.141592653589793 rad pos: -42.5,28.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14177 + - uid: 10101 components: - rot: -1.5707963267948966 rad pos: -41.5,28.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14179 + - uid: 10102 components: - pos: -36.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14182 + - uid: 10103 components: - rot: 3.141592653589793 rad pos: -40.5,27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14224 + - uid: 10104 components: - rot: 1.5707963267948966 rad pos: -36.5,37.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14238 + - uid: 10105 components: - rot: 3.141592653589793 rad pos: -17.5,-75.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14247 + - uid: 10106 components: - rot: 3.141592653589793 rad pos: -27.5,15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14250 + - uid: 10107 components: - rot: 3.141592653589793 rad pos: -33.5,5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14252 + - uid: 10108 components: - pos: -32.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14268 + - uid: 10109 components: - rot: -1.5707963267948966 rad pos: -43.5,42.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14279 + - uid: 10110 components: - rot: 3.141592653589793 rad pos: -44.5,27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14286 + - uid: 10111 components: - rot: 3.141592653589793 rad pos: -47.5,33.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14296 + - uid: 10112 components: - rot: 3.141592653589793 rad pos: -40.5,5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14297 + - uid: 10113 components: - rot: 3.141592653589793 rad pos: -42.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14302 + - uid: 10114 components: - rot: 3.141592653589793 rad pos: -52.5,36.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14308 + - uid: 10115 components: - rot: -1.5707963267948966 rad pos: -46.5,36.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14321 + - uid: 10116 components: - rot: 1.5707963267948966 rad pos: -40.5,15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14322 + - uid: 10117 components: - rot: -1.5707963267948966 rad pos: -40.5,16.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14334 + - uid: 10118 components: - rot: 1.5707963267948966 rad pos: -42.5,14.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14341 + - uid: 10119 components: - pos: -1.5,38.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14348 + - uid: 10120 components: - rot: 3.141592653589793 rad pos: -19.5,34.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14377 + - uid: 10121 components: - pos: -17.5,17.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14378 + - uid: 10122 components: - rot: 3.141592653589793 rad pos: -20.5,17.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14406 + - uid: 10123 components: - rot: 1.5707963267948966 rad pos: -23.5,29.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14411 + - uid: 10124 components: - rot: 1.5707963267948966 rad pos: -23.5,33.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14475 + - uid: 10125 components: - rot: 3.141592653589793 rad pos: -15.5,34.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14481 + - uid: 10126 components: - rot: 3.141592653589793 rad pos: -17.5,33.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14571 + - uid: 10127 components: - rot: -1.5707963267948966 rad pos: 0.5,34.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14583 + - uid: 10128 components: - pos: -47.5,40.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14622 + - uid: 10129 components: - pos: 2.5,27.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14623 + - uid: 10130 components: - pos: -2.5,27.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14624 + - uid: 10131 components: - rot: 3.141592653589793 rad pos: 3.5,25.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14633 + - uid: 10132 components: - rot: 1.5707963267948966 rad pos: -5.5,25.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14662 + - uid: 10133 components: - rot: 1.5707963267948966 rad pos: -3.5,27.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14663 + - uid: 10134 components: - rot: -1.5707963267948966 rad pos: -3.5,36.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14680 + - uid: 10135 components: - rot: 1.5707963267948966 rad pos: -5.5,34.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14691 + - uid: 10136 components: - rot: 3.141592653589793 rad pos: -5.5,21.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14739 + - uid: 10137 components: - pos: -4.5,22.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14936 + - uid: 10138 components: - pos: -18.5,9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15014 + - uid: 10139 components: - rot: 1.5707963267948966 rad pos: -46.5,5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15049 + - uid: 10140 components: - pos: -28.5,15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15101 + - uid: 10141 components: - rot: 1.5707963267948966 rad pos: -23.5,25.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15106 + - uid: 10142 components: - rot: 1.5707963267948966 rad pos: -19.5,27.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15147 + - uid: 10143 components: - pos: -43.5,47.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15155 + - uid: 10144 components: - rot: 3.141592653589793 rad pos: -42.5,47.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15188 + - uid: 10145 components: - pos: -37.5,26.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15194 + - uid: 10146 components: - rot: 3.141592653589793 rad pos: -20.5,-24.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15242 + - uid: 10147 components: - pos: -39.5,-8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15331 + - uid: 10148 components: - rot: 3.141592653589793 rad pos: -38.5,-9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15332 + - uid: 10149 components: - pos: -34.5,-14.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15345 + - uid: 10150 components: - rot: -1.5707963267948966 rad pos: -24.5,-7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15399 + - uid: 10151 components: - rot: -1.5707963267948966 rad pos: -9.5,-7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15403 + - uid: 10152 components: - pos: -21.5,-24.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15445 + - uid: 10153 components: - pos: -40.5,-11.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15452 + - uid: 10154 components: - rot: 3.141592653589793 rad pos: -37.5,-11.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15579 + - uid: 10155 components: - rot: -1.5707963267948966 rad pos: 27.5,5.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15817 + - uid: 10156 components: - rot: 1.5707963267948966 rad pos: -16.5,-39.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15932 + - uid: 10157 components: - rot: -1.5707963267948966 rad pos: -46.5,37.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16670 + - uid: 10158 components: - rot: 3.141592653589793 rad pos: -20.5,-75.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16685 + - uid: 10159 components: - rot: -1.5707963267948966 rad pos: -16.5,-72.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16908 + - uid: 10160 components: - rot: 1.5707963267948966 rad pos: -3.5,11.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 16940 + - uid: 10161 components: - pos: 25.5,19.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 17120 + - uid: 10162 components: - rot: -1.5707963267948966 rad pos: 11.5,-37.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 17123 + - uid: 10163 components: - rot: 1.5707963267948966 rad pos: 5.5,-38.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 17133 + - uid: 10164 components: - rot: -1.5707963267948966 rad pos: 11.5,-33.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' + type: AtmosPipeColor + - uid: 10165 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-38.5 + parent: 2 + type: Transform + - color: '#00008BFF' + type: AtmosPipeColor + - uid: 10166 + components: + - pos: -3.5,-39.5 + parent: 2 + type: Transform + - color: '#800080FF' + type: AtmosPipeColor + - uid: 10167 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-50.5 + parent: 2 + type: Transform + - color: '#66FF00FF' + type: AtmosPipeColor + - uid: 10168 + components: + - rot: 1.5707963267948966 rad + pos: -2.5,-45.5 + parent: 2 + type: Transform + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 10169 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-48.5 + parent: 2 + type: Transform + - color: '#66FF00FF' + type: AtmosPipeColor + - uid: 10170 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-49.5 + parent: 2 + type: Transform + - color: '#66FF00FF' + type: AtmosPipeColor + - uid: 10171 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-47.5 + parent: 2 + type: Transform + - color: '#66FF00FF' + type: AtmosPipeColor + - uid: 10172 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-38.5 + parent: 2 + type: Transform + - color: '#00008BFF' + type: AtmosPipeColor + - uid: 10173 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-38.5 + parent: 2 + type: Transform + - color: '#00008BFF' type: AtmosPipeColor - proto: GasPort entities: - - uid: 34 + - uid: 10174 + components: + - pos: -2.5,-35.5 + parent: 2 + type: Transform + - uid: 10175 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-47.5 + parent: 2 + type: Transform + - color: '#66FF00FF' + type: AtmosPipeColor + - uid: 10176 components: - rot: -1.5707963267948966 rad pos: -14.5,-83.5 parent: 2 type: Transform - - uid: 571 + - uid: 10177 components: - rot: 1.5707963267948966 rad pos: -55.5,36.5 parent: 2 type: Transform - - uid: 2177 + - uid: 10178 components: - rot: -1.5707963267948966 rad pos: -47.5,-6.5 parent: 2 type: Transform - - uid: 2263 + - uid: 10179 components: - rot: 1.5707963267948966 rad pos: -8.5,-35.5 parent: 2 type: Transform - - color: '#F64400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 2340 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-39.5 - parent: 2 - type: Transform - - uid: 2513 + - uid: 10180 components: - rot: -1.5707963267948966 rad pos: -5.5,-35.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 2517 + - uid: 10181 components: - rot: 1.5707963267948966 rad pos: -8.5,-34.5 parent: 2 type: Transform - - color: '#F64400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 2754 + - uid: 10182 components: - - rot: 1.5707963267948966 rad - pos: 3.5,-41.5 + - pos: -3.5,-35.5 parent: 2 type: Transform - - uid: 2755 + - uid: 10183 + components: + - rot: -1.5707963267948966 rad + pos: -5.5,-34.5 + parent: 2 + type: Transform + - color: '#ADD8E6FF' + type: AtmosPipeColor + - uid: 10184 + components: + - rot: 3.141592653589793 rad + pos: 19.5,18.5 + parent: 2 + type: Transform + - uid: 10185 + components: + - rot: 3.141592653589793 rad + pos: -55.5,33.5 + parent: 2 + type: Transform + - uid: 10186 components: - rot: 1.5707963267948966 rad - pos: 3.5,-45.5 + pos: -18.5,13.5 parent: 2 type: Transform - - uid: 2868 + - color: '#FF5349FF' + type: AtmosPipeColor + - uid: 10187 components: - rot: -1.5707963267948966 rad - pos: -5.5,-34.5 + pos: -3.5,-48.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#66FF00FF' type: AtmosPipeColor - - uid: 2932 + - uid: 10188 + components: + - pos: -4.5,-42.5 + parent: 2 + type: Transform + - color: '#66FF00FF' + type: AtmosPipeColor + - uid: 10189 + components: + - pos: -5.5,-42.5 + parent: 2 + type: Transform + - uid: 10190 components: - rot: -1.5707963267948966 rad - pos: 3.5,-47.5 + pos: -3.5,-49.5 parent: 2 type: Transform - - uid: 2933 + - color: '#66FF00FF' + type: AtmosPipeColor +- proto: GasPressurePump + entities: + - uid: 10191 components: - rot: -1.5707963267948966 rad - pos: 3.5,-48.5 + pos: 1.5,-39.5 parent: 2 type: Transform - - uid: 2935 + - color: '#00008BFF' + type: AtmosPipeColor + - uid: 10192 components: - - pos: -4.5,-38.5 + - rot: -1.5707963267948966 rad + pos: 1.5,-49.5 parent: 2 type: Transform - - color: '#0000FFFF' + - color: '#EE4B2BFF' type: AtmosPipeColor - - uid: 4469 + - uid: 10193 components: - - rot: 3.141592653589793 rad - pos: 19.5,18.5 + - rot: 1.5707963267948966 rad + pos: 1.5,-44.5 parent: 2 type: Transform - - uid: 6417 + - color: '#800080FF' + type: AtmosPipeColor + - uid: 10194 components: - - rot: 3.141592653589793 rad - pos: -55.5,33.5 + - rot: 1.5707963267948966 rad + pos: 1.5,-48.5 parent: 2 type: Transform - - uid: 15264 + - color: '#800080FF' + type: AtmosPipeColor + - uid: 10195 components: - rot: 1.5707963267948966 rad - pos: -18.5,13.5 + pos: 1.5,-50.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#800080FF' type: AtmosPipeColor -- proto: GasPressurePump - entities: - - uid: 472 + - uid: 10196 components: - rot: -1.5707963267948966 rad pos: -48.5,-6.5 @@ -67531,156 +68639,133 @@ entities: type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 1948 + - uid: 10197 components: - - rot: 3.141592653589793 rad - pos: -1.5,-38.5 + - pos: -7.5,-37.5 parent: 2 type: Transform - targetPressure: 4500 type: GasPressurePump - - uid: 2238 + - color: '#FF5349FF' + type: AtmosPipeColor + - uid: 10198 components: - rot: 3.141592653589793 rad - pos: -3.5,-38.5 - parent: 2 - type: Transform - - targetPressure: 4500 - type: GasPressurePump - - uid: 2242 - components: - - pos: -7.5,-37.5 + pos: -6.5,-37.5 parent: 2 type: Transform - - targetPressure: 4500 + - targetPressure: 200 type: GasPressurePump - - color: '#F64400FF' + - color: '#00008BFF' type: AtmosPipeColor - - uid: 2272 + - uid: 10199 components: + - name: cryogenics air pump + type: MetaData - rot: 3.141592653589793 rad - pos: -6.5,-37.5 + pos: 19.5,19.5 parent: 2 type: Transform - - targetPressure: 200 + - targetPressure: 80 type: GasPressurePump - - color: '#0066FFFF' + - color: '#00FFFFFF' type: AtmosPipeColor - - uid: 2600 + - uid: 10200 components: - rot: -1.5707963267948966 rad - pos: 4.5,-45.5 + pos: 1.5,-45.5 parent: 2 type: Transform - - uid: 2724 + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 10201 components: - rot: -1.5707963267948966 rad - pos: 4.5,-41.5 + pos: -53.5,36.5 parent: 2 type: Transform - - uid: 2749 + - color: '#ADD8E6FF' + type: AtmosPipeColor + - uid: 10202 components: - - rot: 1.5707963267948966 rad - pos: 4.5,-44.5 + - rot: -1.5707963267948966 rad + pos: 1.5,-43.5 parent: 2 type: Transform - - uid: 2752 + - color: '#EE4B2BFF' + type: AtmosPipeColor + - uid: 10203 components: - - rot: 1.5707963267948966 rad - pos: 4.5,-42.5 + - rot: -1.5707963267948966 rad + pos: 1.5,-47.5 parent: 2 type: Transform - - uid: 2915 + - color: '#808080FF' + type: AtmosPipeColor + - uid: 10204 components: - rot: 1.5707963267948966 rad - pos: 2.5,-47.5 + pos: 1.5,-46.5 parent: 2 type: Transform - - uid: 2916 + - color: '#800080FF' + type: AtmosPipeColor + - uid: 10205 components: - - rot: -1.5707963267948966 rad - pos: 2.5,-48.5 + - pos: -6.5,-45.5 parent: 2 type: Transform - - uid: 4442 + - color: '#66FF00FF' + type: AtmosPipeColor + - uid: 10206 components: - - name: cryogenics air pump - type: MetaData - rot: 3.141592653589793 rad - pos: 19.5,19.5 + pos: -8.5,-45.5 parent: 2 type: Transform - - targetPressure: 80 - type: GasPressurePump - - color: '#00FFFFFF' + - color: '#66FF00FF' type: AtmosPipeColor - - uid: 4463 + - uid: 10207 components: - - rot: 3.141592653589793 rad - pos: 0.5,-43.5 + - rot: 1.5707963267948966 rad + pos: 1.5,-41.5 parent: 2 type: Transform - - targetPressure: 4500 - type: GasPressurePump - - uid: 4481 + - color: '#00008BFF' + type: AtmosPipeColor + - uid: 10208 components: - - pos: -0.5,-38.5 + - rot: 1.5707963267948966 rad + pos: 1.5,-42.5 parent: 2 type: Transform - - targetPressure: 4500 - type: GasPressurePump - - uid: 6321 + - color: '#800080FF' + type: AtmosPipeColor + - uid: 10209 components: - rot: -1.5707963267948966 rad - pos: -53.5,36.5 + pos: 1.5,-51.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#800080FF' type: AtmosPipeColor - - uid: 7942 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-44.5 - parent: 2 - type: Transform - - targetPressure: 3200 - type: GasPressurePump - proto: GasRecycler entities: - - uid: 7936 + - uid: 10210 components: - - pos: 1.5,-43.5 + - pos: 2.5,-35.5 parent: 2 type: Transform - proto: GasRecyclerMachineCircuitboard entities: - - uid: 6817 + - uid: 10211 components: - pos: -11.321217,-26.350395 parent: 2 type: Transform - proto: GasThermoMachineFreezer entities: - - uid: 2277 - components: - - pos: -5.5,-37.5 - parent: 2 - type: Transform - - color: '#0000FFFF' - type: AtmosPipeColor - - uid: 2293 - components: - - pos: -8.5,-37.5 - parent: 2 - type: Transform - - color: '#F64400FF' - type: AtmosPipeColor - - uid: 7920 - components: - - pos: 5.5,-46.5 - parent: 2 - type: Transform - - uid: 12288 + - uid: 10212 components: - rot: 3.141592653589793 rad pos: 15.5,18.5 @@ -67688,15 +68773,15 @@ entities: type: Transform - color: '#00FFFFFF' type: AtmosPipeColor - - uid: 16732 + - uid: 10213 components: - - rot: 1.5707963267948966 rad - pos: -3.5,-41.5 + - rot: -1.5707963267948966 rad + pos: -8.5,-42.5 parent: 2 type: Transform - proto: GasThermoMachineFreezerEnabled entities: - - uid: 1962 + - uid: 10214 components: - rot: 3.141592653589793 rad pos: -15.5,9.5 @@ -67706,20 +68791,54 @@ entities: type: AtmosPipeColor - proto: GasThermoMachineHeater entities: - - uid: 2499 + - uid: 10215 components: - - rot: 1.5707963267948966 rad - pos: -1.5,-43.5 + - rot: -1.5707963267948966 rad + pos: -8.5,-43.5 parent: 2 type: Transform - - uid: 7919 +- proto: GasValve + entities: + - uid: 10216 components: - - pos: 6.5,-46.5 + - rot: 3.141592653589793 rad + pos: -4.5,-44.5 parent: 2 type: Transform -- proto: GasValve - entities: - - uid: 6351 + - open: False + type: GasValve + - color: '#66FF00FF' + type: AtmosPipeColor + - uid: 10217 + components: + - rot: -1.5707963267948966 rad + pos: -7.5,-44.5 + parent: 2 + type: Transform + - open: False + type: GasValve + - color: '#66FF00FF' + type: AtmosPipeColor + - uid: 10218 + components: + - pos: -2.5,-46.5 + parent: 2 + type: Transform + - open: False + type: GasValve + - color: '#0000FFFF' + type: AtmosPipeColor + - uid: 10219 + components: + - rot: 1.5707963267948966 rad + pos: 1.5,-40.5 + parent: 2 + type: Transform + - open: False + type: GasValve + - color: '#800080FF' + type: AtmosPipeColor + - uid: 10220 components: - rot: -1.5707963267948966 rad pos: -57.5,37.5 @@ -67727,7 +68846,7 @@ entities: type: Transform - open: False type: GasValve - - uid: 6387 + - uid: 10221 components: - rot: 1.5707963267948966 rad pos: -54.5,34.5 @@ -67735,654 +68854,640 @@ entities: type: Transform - open: False type: GasValve + - uid: 10222 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-51.5 + parent: 2 + type: Transform + - color: '#66FF00FF' + type: AtmosPipeColor - proto: GasVentPump entities: - - uid: 448 + - uid: 10223 components: - rot: 1.5707963267948966 rad pos: 6.5,-10.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 896 + - uid: 10224 components: - rot: -1.5707963267948966 rad pos: 11.5,-16.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 1164 + - uid: 10225 components: - rot: 1.5707963267948966 rad pos: 10.5,24.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15276 + - 33 type: DeviceNetwork - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 1487 + - uid: 10226 components: - pos: 39.5,1.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15235 - - 876 + - 30 + - 5 type: DeviceNetwork - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 1528 + - uid: 10227 components: - pos: 9.5,-36.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 1593 + - uid: 10228 components: - rot: 3.141592653589793 rad pos: 16.5,-32.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 1725 + - uid: 10229 components: - rot: -1.5707963267948966 rad pos: 21.5,-22.5 parent: 2 type: Transform - - color: '#0066FFFF' - type: AtmosPipeColor - - uid: 1751 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-44.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 15937 - type: DeviceNetwork - - color: '#0000FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 2061 + - uid: 10230 components: - rot: 3.141592653589793 rad pos: 7.5,-15.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 2961 + - uid: 10231 components: - rot: 3.141592653589793 rad pos: 18.5,-21.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 3394 + - uid: 10232 components: - rot: -1.5707963267948966 rad pos: 23.5,4.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 3581 + - uid: 10233 components: - pos: 16.5,-24.5 parent: 2 type: Transform - ShutdownSubscribers: - - 3562 + - 11 type: DeviceNetwork - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 4461 + - uid: 10234 components: - rot: 1.5707963267948966 rad pos: 32.5,20.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 4533 + - uid: 10235 components: - pos: 18.5,18.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 4807 + - uid: 10236 components: - rot: 1.5707963267948966 rad pos: -28.5,-21.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 5491 + - uid: 10237 components: - rot: -1.5707963267948966 rad pos: -0.5,38.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 6450 + - uid: 10238 components: - rot: -1.5707963267948966 rad pos: 23.5,16.5 parent: 2 type: Transform - ShutdownSubscribers: - - 6892 + - 12 type: DeviceNetwork - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 8928 + - uid: 10239 components: - rot: -1.5707963267948966 rad pos: -15.5,-3.5 parent: 2 type: Transform - ShutdownSubscribers: - - 13942 + - 22 type: DeviceNetwork - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 9554 + - uid: 10240 components: - pos: -46.5,39.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 10666 + - uid: 10241 components: - pos: 5.5,-23.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15843 + - 48 type: DeviceNetwork - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 10907 + - uid: 10242 components: - rot: -1.5707963267948966 rad pos: -54.5,-0.5 parent: 2 type: Transform - ShutdownSubscribers: - - 13768 + - 18 type: DeviceNetwork - - uid: 11055 + - uid: 10243 components: - rot: -1.5707963267948966 rad pos: -18.5,27.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11159 + - uid: 10244 components: - rot: 1.5707963267948966 rad pos: -26.5,-75.5 parent: 2 type: Transform - - color: '#0066FFFF' - type: AtmosPipeColor - - uid: 11256 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-39.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 15937 - type: DeviceNetwork - - color: '#0000FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11273 + - uid: 10245 components: - rot: -1.5707963267948966 rad pos: -3.5,-33.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15838 + - 47 type: DeviceNetwork - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11306 + - uid: 10246 components: - pos: -10.5,-27.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11310 + - uid: 10247 components: - rot: -1.5707963267948966 rad pos: 33.5,-15.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15297 + - 34 type: DeviceNetwork - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11313 + - uid: 10248 components: - rot: 1.5707963267948966 rad pos: 32.5,-4.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11314 + - uid: 10249 components: - rot: 1.5707963267948966 rad pos: 32.5,-8.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11362 + - uid: 10250 components: - rot: 1.5707963267948966 rad pos: -10.5,-32.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11366 + - uid: 10251 components: - rot: -1.5707963267948966 rad pos: -5.5,-29.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15838 + - 47 type: DeviceNetwork - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11381 + - uid: 10252 components: - rot: 3.141592653589793 rad pos: -4.5,-25.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11383 + - uid: 10253 components: - rot: 1.5707963267948966 rad pos: -8.5,-24.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11400 + - uid: 10254 components: - pos: 26.5,2.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11404 + - uid: 10255 components: - pos: 26.5,-7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11419 + - uid: 10256 components: - rot: -1.5707963267948966 rad pos: 30.5,-14.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11424 + - uid: 10257 components: - pos: 31.5,-18.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15297 + - 34 type: DeviceNetwork - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11426 + - uid: 10258 components: - rot: -1.5707963267948966 rad pos: 40.5,-15.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15297 + - 34 type: DeviceNetwork - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11427 + - uid: 10259 components: - rot: -1.5707963267948966 rad pos: 40.5,-13.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11437 + - uid: 10260 components: - pos: -7.5,-16.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11438 + - uid: 10261 components: - pos: -3.5,-16.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11447 + - uid: 10262 components: - pos: 35.5,1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11473 + - uid: 10263 components: - rot: 1.5707963267948966 rad pos: 1.5,-20.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11509 + - uid: 10264 components: - rot: 3.141592653589793 rad pos: 10.5,-29.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11667 + - uid: 10265 components: - rot: 1.5707963267948966 rad pos: 21.5,-12.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11685 + - uid: 10266 components: - rot: -1.5707963267948966 rad pos: 35.5,3.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11687 + - uid: 10267 components: - rot: -1.5707963267948966 rad pos: 35.5,12.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11770 + - uid: 10268 components: - rot: -1.5707963267948966 rad pos: 44.5,9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11812 + - uid: 10269 components: - rot: 1.5707963267948966 rad pos: 39.5,3.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11851 + - uid: 10270 components: - rot: 1.5707963267948966 rad pos: -30.5,41.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11905 + - uid: 10271 components: - pos: 21.5,-8.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11906 + - uid: 10272 components: - pos: 18.5,-6.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11949 + - uid: 10273 components: - rot: 3.141592653589793 rad pos: 17.5,0.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 11954 + - uid: 10274 components: - rot: 1.5707963267948966 rad pos: -47.5,-9.5 parent: 2 type: Transform - ShutdownSubscribers: - - 11016 + - 17 type: DeviceNetwork - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12053 + - uid: 10275 components: - rot: -1.5707963267948966 rad pos: 7.5,14.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12133 + - uid: 10276 components: - pos: 8.5,-2.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12182 + - uid: 10277 components: - rot: -1.5707963267948966 rad pos: 26.5,-20.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12204 + - uid: 10278 components: - rot: 3.141592653589793 rad pos: 25.5,18.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12208 + - uid: 10279 components: - rot: 1.5707963267948966 rad pos: 21.5,21.5 parent: 2 type: Transform - ShutdownSubscribers: - - 6892 + - 12 type: DeviceNetwork - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12209 + - uid: 10280 components: - rot: -1.5707963267948966 rad pos: 26.5,13.5 parent: 2 type: Transform - ShutdownSubscribers: - - 6892 + - 12 type: DeviceNetwork - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12212 + - uid: 10281 components: - rot: 3.141592653589793 rad pos: 8.5,-7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12331 + - uid: 10282 components: - rot: -1.5707963267948966 rad pos: 15.5,12.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12430 + - uid: 10283 components: - rot: 1.5707963267948966 rad pos: 10.5,4.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12432 + - uid: 10284 components: - rot: 3.141592653589793 rad pos: -13.5,0.5 parent: 2 type: Transform - ShutdownSubscribers: - - 13942 + - 22 type: DeviceNetwork - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12450 + - uid: 10285 components: - rot: 3.141592653589793 rad pos: 8.5,0.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15307 + - 35 type: DeviceNetwork - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12452 + - uid: 10286 components: - rot: -1.5707963267948966 rad pos: 23.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12529 + - uid: 10287 components: - rot: 1.5707963267948966 rad pos: 9.5,19.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15276 + - 33 type: DeviceNetwork - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12533 + - uid: 10288 components: - rot: -1.5707963267948966 rad pos: 16.5,24.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15276 + - 33 type: DeviceNetwork - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12575 + - uid: 10289 components: - rot: -1.5707963267948966 rad pos: 2.5,-3.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12615 + - uid: 10290 components: - rot: 1.5707963267948966 rad pos: 7.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12785 + - uid: 10291 components: - rot: 1.5707963267948966 rad pos: -5.5,4.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12824 + - uid: 10292 components: - rot: -1.5707963267948966 rad pos: -6.5,11.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12825 + - uid: 10293 components: - rot: -1.5707963267948966 rad pos: -0.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12911 + - uid: 10294 components: - rot: 1.5707963267948966 rad pos: -25.5,-3.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 12916 + - uid: 10295 components: - pos: -7.5,15.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13063 + - uid: 10296 components: - rot: -1.5707963267948966 rad pos: -12.5,11.5 @@ -68390,193 +69495,193 @@ entities: type: Transform - color: '#00AABBFF' type: AtmosPipeColor - - uid: 13236 + - uid: 10297 components: - rot: 3.141592653589793 rad pos: -23.5,0.5 parent: 2 type: Transform - ShutdownSubscribers: - - 10984 + - 16 type: DeviceNetwork - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13261 + - uid: 10298 components: - pos: -42.5,29.5 parent: 2 type: Transform - ShutdownSubscribers: - - 1541 + - 9 type: DeviceNetwork - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13321 + - uid: 10299 components: - rot: -1.5707963267948966 rad pos: -23.5,6.5 parent: 2 type: Transform - ShutdownSubscribers: - - 10984 + - 16 type: DeviceNetwork - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13412 + - uid: 10300 components: - pos: -24.5,15.5 parent: 2 type: Transform - ShutdownSubscribers: - - 10984 + - 16 type: DeviceNetwork - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13638 + - uid: 10301 components: - rot: 3.141592653589793 rad pos: -27.5,-10.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14335 + - 27 type: DeviceNetwork - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13647 + - uid: 10302 components: - rot: 1.5707963267948966 rad pos: -42.5,-6.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13648 + - uid: 10303 components: - pos: -37.5,-5.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13649 + - uid: 10304 components: - rot: -1.5707963267948966 rad pos: -39.5,-1.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13864 + - uid: 10305 components: - rot: 3.141592653589793 rad pos: -56.5,-17.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15789 + - 44 type: DeviceNetwork - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13865 + - uid: 10306 components: - rot: 1.5707963267948966 rad pos: -59.5,-16.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15789 + - 44 type: DeviceNetwork - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13866 + - uid: 10307 components: - rot: -1.5707963267948966 rad pos: -49.5,-13.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15789 + - 44 type: DeviceNetwork - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13869 + - uid: 10308 components: - rot: -1.5707963267948966 rad pos: -54.5,-11.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15789 + - 44 type: DeviceNetwork - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13870 + - uid: 10309 components: - rot: 1.5707963267948966 rad pos: -58.5,-8.5 parent: 2 type: Transform - ShutdownSubscribers: - - 1266 + - 6 type: DeviceNetwork - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13872 + - uid: 10310 components: - rot: 1.5707963267948966 rad pos: -57.5,-0.5 parent: 2 type: Transform - ShutdownSubscribers: - - 13768 + - 18 type: DeviceNetwork - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13874 + - uid: 10311 components: - rot: -1.5707963267948966 rad pos: -52.5,-2.5 parent: 2 type: Transform - ShutdownSubscribers: - - 13768 + - 18 type: DeviceNetwork - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13879 + - uid: 10312 components: - rot: 1.5707963267948966 rad pos: -59.5,-12.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15789 + - 44 type: DeviceNetwork - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13880 + - uid: 10313 components: - rot: 3.141592653589793 rad pos: -53.5,-17.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15789 + - 44 type: DeviceNetwork - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13881 + - uid: 10314 components: - rot: 3.141592653589793 rad pos: -50.5,-17.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15789 + - 44 type: DeviceNetwork - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13907 + - uid: 10315 components: - rot: -1.5707963267948966 rad pos: -54.5,-6.5 @@ -68584,7934 +69689,8164 @@ entities: type: Transform - color: '#34EB43FF' type: AtmosPipeColor - - uid: 13918 + - uid: 10316 components: - rot: 3.141592653589793 rad pos: -31.5,2.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13943 + - uid: 10317 components: - rot: -1.5707963267948966 rad pos: -14.5,-13.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13947 + - uid: 10318 components: - pos: -20.5,-23.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 13987 + - uid: 10319 components: - rot: 1.5707963267948966 rad pos: -18.5,-17.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14034 + - uid: 10320 components: - rot: 3.141592653589793 rad pos: -30.5,25.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14037 + - uid: 10321 components: - pos: -28.5,9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14086 + - uid: 10322 components: - pos: -44.5,29.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14088 + - uid: 10323 components: - rot: 1.5707963267948966 rad pos: -27.5,2.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14149 + - uid: 10324 components: - rot: 3.141592653589793 rad pos: -36.5,2.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14237 + - uid: 10325 components: - pos: -20.5,-74.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14275 + - uid: 10326 components: - rot: 3.141592653589793 rad pos: -43.5,6.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14280 + - uid: 10327 components: - rot: 3.141592653589793 rad pos: -32.5,6.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14344 + - uid: 10328 components: - pos: -52.5,37.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14388 + - uid: 10329 components: - pos: -19.5,23.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14407 + - uid: 10330 components: - rot: -1.5707963267948966 rad pos: -22.5,29.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14444 + - uid: 10331 components: - pos: -22.5,40.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14485 + - uid: 10332 components: - rot: -1.5707963267948966 rad pos: -16.5,33.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14520 + - uid: 10333 components: - rot: 3.141592653589793 rad pos: -11.5,35.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15353 + - 36 type: DeviceNetwork - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14526 + - uid: 10334 components: - pos: -11.5,43.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14584 + - uid: 10335 components: - rot: 3.141592653589793 rad pos: -1.5,33.5 parent: 2 type: Transform - ShutdownSubscribers: - - 9317 + - 13 type: DeviceNetwork - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14605 + - uid: 10336 components: - rot: 3.141592653589793 rad pos: 2.5,26.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14606 + - uid: 10337 components: - rot: 3.141592653589793 rad pos: -2.5,26.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15627 + - 40 type: DeviceNetwork - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14607 + - uid: 10338 components: - rot: -1.5707963267948966 rad pos: -36.5,32.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14616 + - uid: 10339 components: - pos: -41.5,34.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14051 - - 13809 + - 23 + - 19 type: DeviceNetwork - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14696 + - uid: 10340 components: - rot: 1.5707963267948966 rad pos: -12.5,22.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14749 + - uid: 10341 components: - rot: 3.141592653589793 rad pos: -7.5,7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14762 + - uid: 10342 components: - rot: 1.5707963267948966 rad pos: -19.5,9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14763 + - uid: 10343 components: - rot: -1.5707963267948966 rad pos: -17.5,9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14942 + - uid: 10344 components: - rot: -1.5707963267948966 rad pos: -14.5,4.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 14955 + - uid: 10345 components: - rot: 1.5707963267948966 rad pos: -49.5,9.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14284 + - 25 type: DeviceNetwork - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15012 + - uid: 10346 components: - rot: -1.5707963267948966 rad pos: -27.5,14.5 parent: 2 type: Transform - ShutdownSubscribers: - - 876 + - 5 type: DeviceNetwork - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15031 + - uid: 10347 components: - pos: -42.5,16.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15051 + - uid: 10348 components: - rot: 3.141592653589793 rad pos: -30.5,10.5 parent: 2 type: Transform - ShutdownSubscribers: - - 876 + - 5 type: DeviceNetwork - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15082 + - uid: 10349 components: - rot: 3.141592653589793 rad pos: -36.5,13.5 parent: 2 type: Transform - ShutdownSubscribers: - - 876 + - 5 type: DeviceNetwork - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15108 + - uid: 10350 components: - pos: -19.5,30.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15135 + - uid: 10351 components: - rot: 1.5707963267948966 rad pos: -48.5,47.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15158 + - uid: 10352 components: - rot: 1.5707963267948966 rad pos: -43.5,50.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15159 + - uid: 10353 components: - rot: -1.5707963267948966 rad pos: -41.5,47.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15160 + - uid: 10354 components: - rot: 1.5707963267948966 rad pos: -44.5,42.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15185 + - uid: 10355 components: - rot: 3.141592653589793 rad pos: -34.5,-17.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15195 + - uid: 10356 components: - rot: 1.5707963267948966 rad pos: -22.5,-28.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15225 + - uid: 10357 components: - rot: 1.5707963267948966 rad pos: -28.5,-24.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15329 + - uid: 10358 components: - rot: 3.141592653589793 rad pos: -40.5,-17.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15330 + - uid: 10359 components: - rot: -1.5707963267948966 rad pos: -36.5,23.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15333 + - uid: 10360 components: - rot: 1.5707963267948966 rad pos: -42.5,-11.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15335 + - uid: 10361 components: - pos: -38.5,-8.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15346 + - uid: 10362 components: - rot: 1.5707963267948966 rad pos: -25.5,-7.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15352 + - uid: 10363 components: - rot: 1.5707963267948966 rad pos: 25.5,5.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15364 + - uid: 10364 components: - pos: 27.5,8.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15366 + - uid: 10365 components: - rot: -1.5707963267948966 rad pos: -31.5,-14.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14335 + - 27 type: DeviceNetwork - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15381 + - uid: 10366 components: - rot: 3.141592653589793 rad pos: -9.5,-8.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15844 + - 49 type: DeviceNetwork - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15443 + - uid: 10367 components: - rot: 1.5707963267948966 rad pos: -42.5,-14.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15454 + - uid: 10368 components: - rot: 1.5707963267948966 rad pos: 12.5,23.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15276 + - 33 type: DeviceNetwork - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15462 + - uid: 10369 components: - pos: -20.5,34.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15463 + - uid: 10370 components: - rot: 1.5707963267948966 rad pos: -4.5,31.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15488 + - uid: 10371 components: - rot: 1.5707963267948966 rad pos: -13.5,-5.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15844 + - 49 type: DeviceNetwork - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15489 + - uid: 10372 components: - rot: 1.5707963267948966 rad pos: -12.5,-7.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15844 + - 49 type: DeviceNetwork - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15514 + - uid: 10373 components: - rot: -1.5707963267948966 rad pos: -36.5,-11.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15587 + - uid: 10374 components: - pos: -34.5,10.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15611 + - uid: 10375 components: - pos: -30.5,19.5 parent: 2 type: Transform - ShutdownSubscribers: - - 876 + - 5 type: DeviceNetwork - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15612 + - uid: 10376 components: - pos: -33.5,19.5 parent: 2 type: Transform - ShutdownSubscribers: - - 876 + - 5 type: DeviceNetwork - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15644 + - uid: 10377 components: - rot: -1.5707963267948966 rad pos: -29.5,-5.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14335 + - 27 type: DeviceNetwork - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15723 + - uid: 10378 components: - rot: 1.5707963267948966 rad pos: -48.5,-4.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15724 + - uid: 10379 components: - pos: -46.5,-0.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15748 + - uid: 10380 components: - pos: -45.5,16.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14284 + - 25 type: DeviceNetwork - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15788 + - uid: 10381 components: - rot: -1.5707963267948966 rad pos: -45.5,-13.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15805 + - uid: 10382 components: - rot: -1.5707963267948966 rad pos: -2.5,16.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15627 + - 40 type: DeviceNetwork - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15836 + - uid: 10383 components: - rot: -1.5707963267948966 rad pos: -13.5,-39.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15837 + - uid: 10384 components: - rot: 1.5707963267948966 rad pos: -17.5,-44.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15901 + - uid: 10385 components: - pos: -0.5,-5.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15925 + - uid: 10386 components: - pos: -36.5,17.5 parent: 2 type: Transform - ShutdownSubscribers: - - 876 + - 5 type: DeviceNetwork - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15929 + - uid: 10387 components: - rot: 1.5707963267948966 rad pos: -47.5,37.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15948 + - uid: 10388 components: - pos: -14.5,-16.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15970 + - uid: 10389 components: - rot: 1.5707963267948966 rad pos: 5.5,3.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 15974 + - uid: 10390 components: - rot: -1.5707963267948966 rad pos: -16.5,22.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16196 + - uid: 10391 components: - rot: -1.5707963267948966 rad pos: -21.5,-12.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16502 + - uid: 10392 components: - rot: -1.5707963267948966 rad pos: 24.5,26.5 parent: 2 type: Transform - ShutdownSubscribers: - - 6892 + - 12 type: DeviceNetwork - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16506 + - uid: 10393 components: - rot: -1.5707963267948966 rad pos: 13.5,30.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16574 + - uid: 10394 components: - pos: -43.5,-17.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16627 + - uid: 10395 components: - rot: 1.5707963267948966 rad pos: 10.5,-5.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16628 + - uid: 10396 components: - rot: 1.5707963267948966 rad pos: 10.5,-9.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16663 + - uid: 10397 components: - rot: 3.141592653589793 rad pos: -16.5,-81.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16664 + - uid: 10398 components: - rot: 1.5707963267948966 rad pos: -17.5,-72.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16671 + - uid: 10399 components: - pos: -17.5,-74.5 parent: 2 type: Transform - ShutdownSubscribers: - - 16716 + - 50 type: DeviceNetwork - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16674 + - uid: 10400 components: - pos: -11.5,-74.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16825 + - uid: 10401 components: - rot: 1.5707963267948966 rad pos: -13.5,-24.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16911 + - uid: 10402 components: - rot: -1.5707963267948966 rad pos: -0.5,10.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16945 + - uid: 10403 components: - rot: -1.5707963267948966 rad pos: 10.5,-21.5 parent: 2 type: Transform - ShutdownSubscribers: - - 13926 + - 21 type: DeviceNetwork - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16975 + - uid: 10404 components: - rot: 1.5707963267948966 rad pos: 10.5,13.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16977 + - uid: 10405 components: - rot: 3.141592653589793 rad pos: 32.5,16.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 17122 + - uid: 10406 components: - rot: 3.141592653589793 rad pos: 5.5,-39.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' + type: AtmosPipeColor + - uid: 10407 + components: + - pos: -1.5,-37.5 + parent: 2 + type: Transform + - color: '#00008BFF' + type: AtmosPipeColor + - uid: 10408 + components: + - pos: -5.5,-37.5 + parent: 2 + type: Transform + - color: '#00008BFF' type: AtmosPipeColor - proto: GasVentScrubber entities: - - uid: 1284 + - uid: 10409 components: - rot: -1.5707963267948966 rad pos: -35.5,41.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 1592 + - uid: 10410 components: - rot: 3.141592653589793 rad pos: 15.5,-32.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 1656 + - uid: 10411 components: - rot: -1.5707963267948966 rad pos: 19.5,-27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 1823 + - uid: 10412 components: - rot: 1.5707963267948966 rad pos: 6.5,-37.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 1918 + - uid: 10413 components: - rot: 1.5707963267948966 rad pos: -2.5,-27.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15843 + - 48 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 2060 + - uid: 10414 components: - rot: 3.141592653589793 rad pos: 5.5,-16.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 2093 + - uid: 10415 components: - rot: 1.5707963267948966 rad pos: -17.5,-23.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 3529 + - uid: 10416 components: - rot: 1.5707963267948966 rad pos: 10.5,-22.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 4968 + - uid: 10417 components: - rot: 3.141592653589793 rad pos: -47.5,-15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 5228 + - uid: 10418 components: - rot: -1.5707963267948966 rad pos: 13.5,20.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15276 + - 33 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 6396 + - uid: 10419 components: - rot: 3.141592653589793 rad pos: 4.5,-6.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 6744 + - uid: 10420 components: - pos: -3.5,-18.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 6776 + - uid: 10421 components: - rot: -1.5707963267948966 rad pos: -0.5,11.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 7947 + - uid: 10422 components: - rot: 1.5707963267948966 rad pos: -17.5,-2.5 parent: 2 type: Transform - ShutdownSubscribers: - - 13942 + - 22 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 9164 + - uid: 10423 components: - pos: -33.5,6.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 9556 + - uid: 10424 components: - pos: -40.5,42.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 9580 + - uid: 10425 components: - rot: -1.5707963267948966 rad pos: -32.5,36.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 10878 + - uid: 10426 components: - rot: 1.5707963267948966 rad pos: -59.5,-7.5 parent: 2 type: Transform - ShutdownSubscribers: - - 1266 + - 6 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 10880 + - uid: 10427 components: - pos: -55.5,0.5 parent: 2 type: Transform - ShutdownSubscribers: - - 13768 + - 18 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11051 + - uid: 10428 components: - rot: 3.141592653589793 rad pos: -34.5,14.5 parent: 2 type: Transform - ShutdownSubscribers: - - 876 + - 5 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11102 + - uid: 10429 components: - rot: 1.5707963267948966 rad pos: -17.5,-12.5 parent: 2 type: Transform - - color: '#FF4400FF' - type: AtmosPipeColor - - uid: 11257 - components: - - rot: 3.141592653589793 rad - pos: -5.5,-41.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 15937 - type: DeviceNetwork - - color: '#F64400FF' - type: AtmosPipeColor - - uid: 11264 - components: - - rot: 3.141592653589793 rad - pos: -7.5,-44.5 - parent: 2 - type: Transform - - ShutdownSubscribers: - - 15937 - type: DeviceNetwork - - color: '#F64400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11296 + - uid: 10430 components: - pos: -7.5,-17.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11302 + - uid: 10431 components: - rot: 1.5707963267948966 rad pos: 29.5,-20.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15297 + - 34 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11308 + - uid: 10432 components: - rot: -1.5707963267948966 rad pos: 31.5,-4.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11309 + - uid: 10433 components: - rot: 1.5707963267948966 rad pos: 29.5,-10.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11321 + - uid: 10434 components: - pos: -11.5,-29.5 parent: 2 type: Transform - - color: '#F64400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11322 + - uid: 10435 components: - rot: -1.5707963267948966 rad pos: 39.5,-20.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15297 + - 34 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11333 + - uid: 10436 components: - rot: 3.141592653589793 rad pos: -10.5,-34.5 parent: 2 type: Transform - - color: '#F64400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11346 + - uid: 10437 components: - rot: 3.141592653589793 rad pos: -12.5,-37.5 parent: 2 type: Transform - - color: '#F64400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11364 + - uid: 10438 components: - rot: -1.5707963267948966 rad pos: 39.5,-11.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11365 + - uid: 10439 components: - rot: -1.5707963267948966 rad pos: 39.5,-1.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11384 + - uid: 10440 components: - rot: 1.5707963267948966 rad pos: -8.5,-26.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15838 + - 47 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11385 + - uid: 10441 components: - rot: 1.5707963267948966 rad pos: -8.5,-31.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15838 + - 47 type: DeviceNetwork - - color: '#F64400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11387 + - uid: 10442 components: - pos: 26.5,9.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11388 + - uid: 10443 components: - rot: 3.141592653589793 rad pos: 26.5,5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11389 + - uid: 10444 components: - rot: -1.5707963267948966 rad pos: 25.5,-10.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11399 + - uid: 10445 components: - rot: 1.5707963267948966 rad pos: -8.5,-22.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11468 + - uid: 10446 components: - pos: 20.5,0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11499 + - uid: 10447 components: - rot: 3.141592653589793 rad pos: 34.5,-16.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15297 + - 34 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11544 + - uid: 10448 components: - pos: 32.5,0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11580 + - uid: 10449 components: - pos: 27.5,-15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11586 + - uid: 10450 components: - rot: -1.5707963267948966 rad pos: -0.5,-22.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11635 + - uid: 10451 components: - rot: 3.141592653589793 rad pos: 14.5,-21.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11681 + - uid: 10452 components: - rot: 1.5707963267948966 rad pos: 32.5,3.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11682 + - uid: 10453 components: - pos: 33.5,12.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11733 + - uid: 10454 components: - rot: -1.5707963267948966 rad pos: 18.5,-17.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11736 + - uid: 10455 components: - pos: 21.5,-13.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11772 + - uid: 10456 components: - rot: -1.5707963267948966 rad pos: 44.5,11.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11775 + - uid: 10457 components: - pos: 40.5,12.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11901 + - uid: 10458 components: - pos: 32.5,23.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11934 + - uid: 10459 components: - rot: 1.5707963267948966 rad pos: 20.5,-4.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 11946 + - uid: 10460 components: - rot: 3.141592653589793 rad pos: 20.5,28.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12051 + - uid: 10461 components: - rot: -1.5707963267948966 rad pos: 28.5,21.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15473 + - 39 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12052 + - uid: 10462 components: - rot: -1.5707963267948966 rad pos: 6.5,15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12089 + - uid: 10463 components: - rot: -1.5707963267948966 rad pos: 14.5,-13.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12095 + - uid: 10464 components: - rot: -1.5707963267948966 rad pos: 14.5,-9.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12113 + - uid: 10465 components: - pos: 7.5,-2.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12134 + - uid: 10466 components: - rot: -1.5707963267948966 rad pos: 16.5,25.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15276 + - 33 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12135 + - uid: 10467 components: - rot: 1.5707963267948966 rad pos: 9.5,25.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15276 + - 33 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12136 + - uid: 10468 components: - pos: 21.5,24.5 parent: 2 type: Transform - ShutdownSubscribers: - - 6892 + - 12 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12138 + - uid: 10469 components: - rot: 3.141592653589793 rad pos: 26.5,12.5 parent: 2 type: Transform - ShutdownSubscribers: - - 6892 + - 12 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12141 + - uid: 10470 components: - pos: 13.5,-5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12166 + - uid: 10471 components: - pos: 6.5,-11.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12175 + - uid: 10472 components: - rot: 1.5707963267948966 rad pos: 26.5,-19.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12261 + - uid: 10473 components: - rot: -1.5707963267948966 rad pos: 22.5,14.5 parent: 2 type: Transform - ShutdownSubscribers: - - 6892 + - 12 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12397 + - uid: 10474 components: - rot: 1.5707963267948966 rad pos: 16.5,12.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12421 + - uid: 10475 components: - rot: 1.5707963267948966 rad pos: 7.5,11.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12427 + - uid: 10476 components: - pos: 13.5,5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12428 + - uid: 10477 components: - rot: -1.5707963267948966 rad pos: 14.5,0.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15307 + - 35 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12429 + - uid: 10478 components: - rot: 1.5707963267948966 rad pos: 11.5,0.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15307 + - 35 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12497 + - uid: 10479 components: - pos: 0.5,0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12514 + - uid: 10480 components: - rot: -1.5707963267948966 rad pos: -7.5,-12.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15809 + - 45 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12528 + - uid: 10481 components: - rot: 3.141592653589793 rad pos: -1.5,-5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12548 + - uid: 10482 components: - pos: 0.5,7.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12576 + - uid: 10483 components: - rot: 1.5707963267948966 rad pos: 9.5,21.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15276 + - 33 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12729 + - uid: 10484 components: - pos: 20.5,7.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12840 + - uid: 10485 components: - pos: -5.5,0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12899 + - uid: 10486 components: - rot: 1.5707963267948966 rad pos: -23.5,-4.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 12912 + - uid: 10487 components: - rot: -1.5707963267948966 rad pos: -21.5,-8.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13057 + - uid: 10488 components: - rot: 3.141592653589793 rad pos: -9.5,4.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13061 + - uid: 10489 components: - rot: 3.141592653589793 rad pos: -13.5,4.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13076 + - uid: 10490 components: - pos: -14.5,11.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13084 + - uid: 10491 components: - rot: 1.5707963267948966 rad pos: -19.5,5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13129 + - uid: 10492 components: - rot: 1.5707963267948966 rad pos: -20.5,10.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13186 + - uid: 10493 components: - pos: -14.5,0.5 parent: 2 type: Transform - ShutdownSubscribers: - - 13942 + - 22 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13247 + - uid: 10494 components: - rot: 1.5707963267948966 rad pos: -28.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13291 + - uid: 10495 components: - pos: -22.5,0.5 parent: 2 type: Transform - ShutdownSubscribers: - - 10984 + - 16 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13331 + - uid: 10496 components: - rot: -1.5707963267948966 rad pos: -24.5,16.5 parent: 2 type: Transform - ShutdownSubscribers: - - 10984 + - 16 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13591 + - uid: 10497 components: - rot: -1.5707963267948966 rad pos: -7.5,-8.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15844 + - 49 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13592 + - uid: 10498 components: - rot: -1.5707963267948966 rad pos: -7.5,-3.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15844 + - 49 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13593 + - uid: 10499 components: - rot: 1.5707963267948966 rad pos: -12.5,-8.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15844 + - 49 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13594 + - uid: 10500 components: - rot: 1.5707963267948966 rad pos: -12.5,-4.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15844 + - 49 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13637 + - uid: 10501 components: - rot: 3.141592653589793 rad pos: -22.5,-14.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13640 + - uid: 10502 components: - rot: -1.5707963267948966 rad pos: -27.5,-14.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14335 + - 27 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13641 + - uid: 10503 components: - rot: 3.141592653589793 rad pos: -37.5,-14.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13642 + - uid: 10504 components: - rot: 1.5707963267948966 rad pos: -30.5,-14.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14335 + - 27 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13644 + - uid: 10505 components: - pos: -32.5,-7.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14335 + - 27 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13645 + - uid: 10506 components: - pos: -36.5,-5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13646 + - uid: 10507 components: - rot: -1.5707963267948966 rad pos: -41.5,-5.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13650 + - uid: 10508 components: - pos: -42.5,-0.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13718 + - uid: 10509 components: - rot: 1.5707963267948966 rad pos: -42.5,-15.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13719 + - uid: 10510 components: - rot: 1.5707963267948966 rad pos: -42.5,-12.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13722 + - uid: 10511 components: - rot: 3.141592653589793 rad pos: -39.5,-17.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13724 + - uid: 10512 components: - rot: 3.141592653589793 rad pos: -35.5,-17.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13755 + - uid: 10513 components: - rot: 3.141592653589793 rad pos: -49.5,-16.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15789 + - 44 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13775 + - uid: 10514 components: - rot: 3.141592653589793 rad pos: -58.5,-16.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15789 + - 44 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13776 + - uid: 10515 components: - pos: -58.5,-12.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15789 + - 44 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13777 + - uid: 10516 components: - rot: 3.141592653589793 rad pos: -55.5,-16.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15789 + - 44 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13780 + - uid: 10517 components: - pos: -52.5,-12.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15789 + - 44 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13789 + - uid: 10518 components: - pos: -47.5,-3.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13804 + - uid: 10519 components: - pos: -52.5,-3.5 parent: 2 type: Transform - ShutdownSubscribers: - - 13768 + - 18 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13806 + - uid: 10520 components: - rot: 3.141592653589793 rad pos: -52.5,-16.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15789 + - 44 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13877 + - uid: 10521 components: - rot: 3.141592653589793 rad pos: -48.5,-9.5 parent: 2 type: Transform - ShutdownSubscribers: - - 11016 + - 17 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13933 + - uid: 10522 components: - rot: 3.141592653589793 rad pos: -37.5,-22.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13934 + - uid: 10523 components: - rot: -1.5707963267948966 rad pos: -36.5,-20.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13946 + - uid: 10524 components: - rot: 3.141592653589793 rad pos: -21.5,-23.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13948 + - uid: 10525 components: - rot: 1.5707963267948966 rad pos: -21.5,-19.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 13981 + - uid: 10526 components: - rot: 3.141592653589793 rad pos: 20.5,4.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14025 + - uid: 10527 components: - pos: -28.5,-6.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14335 + - 27 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14030 + - uid: 10528 components: - rot: 3.141592653589793 rad pos: -28.5,25.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14035 + - uid: 10529 components: - rot: -1.5707963267948966 rad pos: -24.5,6.5 parent: 2 type: Transform - ShutdownSubscribers: - - 10984 + - 16 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14080 + - uid: 10530 components: - rot: 3.141592653589793 rad pos: -35.5,26.5 parent: 2 type: Transform - ShutdownSubscribers: - - 1541 + - 9 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14081 + - uid: 10531 components: - rot: 1.5707963267948966 rad pos: -48.5,40.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14089 + - uid: 10532 components: - rot: 1.5707963267948966 rad pos: -45.5,27.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14094 + - uid: 10533 components: - rot: 3.141592653589793 rad pos: -28.5,2.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14135 + - uid: 10534 components: - pos: -42.5,6.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14178 + - uid: 10535 components: - pos: -35.5,32.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14205 + - uid: 10536 components: - rot: -1.5707963267948966 rad pos: -31.5,1.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14244 + - uid: 10537 components: - pos: -49.5,34.5 parent: 2 type: Transform - ShutdownSubscribers: - - 13809 + - 19 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14246 + - uid: 10538 components: - rot: -1.5707963267948966 rad pos: -35.5,37.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14248 + - uid: 10539 components: - rot: 3.141592653589793 rad pos: 0.5,33.5 parent: 2 type: Transform - ShutdownSubscribers: - - 9317 + - 13 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14360 + - uid: 10540 components: - pos: -16.5,18.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14368 + - uid: 10541 components: - rot: 1.5707963267948966 rad pos: -21.5,20.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14448 + - uid: 10542 components: - pos: -24.5,40.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14467 + - uid: 10543 components: - pos: -26.5,35.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14473 + - uid: 10544 components: - pos: -15.5,35.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14474 + - uid: 10545 components: - pos: -19.5,35.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14517 + - uid: 10546 components: - rot: 3.141592653589793 rad pos: -8.5,34.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15353 + - 36 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14524 + - uid: 10547 components: - pos: -8.5,43.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14595 + - uid: 10548 components: - pos: 0.5,39.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14604 + - uid: 10549 components: - pos: 3.5,26.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14626 + - uid: 10550 components: - pos: -40.5,33.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14051 - - 13809 + - 23 + - 19 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14689 + - uid: 10551 components: - pos: -7.5,22.5 parent: 2 type: Transform - ShutdownSubscribers: - - 15627 + - 40 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14701 + - uid: 10552 components: - rot: 1.5707963267948966 rad pos: -13.5,21.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14746 + - uid: 10553 components: - rot: 3.141592653589793 rad pos: -7.5,16.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 14950 + - uid: 10554 components: - pos: -9.5,9.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15002 + - uid: 10555 components: - rot: 3.141592653589793 rad pos: -46.5,2.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15010 + - uid: 10556 components: - pos: -46.5,13.5 parent: 2 type: Transform - ShutdownSubscribers: - - 14284 + - 25 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15030 + - uid: 10557 components: - rot: 1.5707963267948966 rad pos: -41.5,16.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15038 + - uid: 10558 components: - pos: -37.5,18.5 parent: 2 type: Transform - ShutdownSubscribers: - - 876 + - 5 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15039 + - uid: 10559 components: - rot: -1.5707963267948966 rad pos: -36.5,22.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15040 + - uid: 10560 components: - pos: -34.5,19.5 parent: 2 type: Transform - ShutdownSubscribers: - - 876 + - 5 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15041 + - uid: 10561 components: - pos: -31.5,19.5 parent: 2 type: Transform - ShutdownSubscribers: - - 876 + - 5 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15043 + - uid: 10562 components: - rot: 3.141592653589793 rad pos: -37.5,10.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15044 + - uid: 10563 components: - rot: 3.141592653589793 rad pos: -28.5,11.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15073 + - uid: 10564 components: - rot: -1.5707963267948966 rad pos: -26.5,20.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15089 + - uid: 10565 components: - rot: 3.141592653589793 rad pos: -22.5,26.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15117 + - uid: 10566 components: - rot: 1.5707963267948966 rad pos: -50.5,46.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15218 + - uid: 10567 components: - rot: 3.141592653589793 rad pos: -31.5,10.5 parent: 2 type: Transform - ShutdownSubscribers: - - 876 + - 5 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15322 + - uid: 10568 components: - rot: 3.141592653589793 rad pos: -39.5,-9.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15425 + - uid: 10569 components: - rot: 1.5707963267948966 rad pos: -19.5,-33.5 parent: 2 type: Transform - - color: '#F64400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15468 + - uid: 10570 components: - rot: -1.5707963267948966 rad pos: -4.5,29.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15525 + - uid: 10571 components: - rot: 3.141592653589793 rad pos: -8.5,29.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15689 + - uid: 10572 components: - pos: 17.5,18.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 15947 + - uid: 10573 components: - pos: -12.5,-17.5 parent: 2 type: Transform - - color: '#0066FFFF' + - color: '#ADD8E6FF' type: AtmosPipeColor - - uid: 16043 + - uid: 10574 components: - rot: 3.141592653589793 rad pos: -52.5,-9.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 16501 + - uid: 10575 components: - rot: -1.5707963267948966 rad pos: 24.5,24.5 parent: 2 type: Transform - ShutdownSubscribers: - - 6892 + - 12 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 16824 + - uid: 10576 components: - rot: 3.141592653589793 rad pos: -13.5,-21.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 16898 + - uid: 10577 components: - rot: 1.5707963267948966 rad pos: -52.5,32.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 16922 + - uid: 10578 components: - rot: -1.5707963267948966 rad pos: -15.5,26.5 parent: 2 type: Transform - ShutdownSubscribers: - - 10800 + - 15 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 16974 + - uid: 10579 components: - pos: 10.5,12.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 16978 + - uid: 10580 components: - rot: 3.141592653589793 rad pos: 31.5,16.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 17128 + - uid: 10581 components: - rot: 1.5707963267948966 rad pos: 10.5,-33.5 parent: 2 type: Transform - - color: '#FF4400FF' + - color: '#FF5349FF' type: AtmosPipeColor - - uid: 17167 + - uid: 10582 components: - rot: 3.141592653589793 rad pos: 11.5,-38.5 parent: 2 type: Transform - ShutdownSubscribers: - - 1536 + - 8 type: DeviceNetwork - - color: '#FF4400FF' + - color: '#FF5349FF' + type: AtmosPipeColor + - uid: 10583 + components: + - rot: 3.141592653589793 rad + pos: -8.5,-48.5 + parent: 2 + type: Transform + - color: '#66FF00FF' + type: AtmosPipeColor + - uid: 10584 + components: + - rot: 3.141592653589793 rad + pos: -1.5,-40.5 + parent: 2 + type: Transform + - color: '#800080FF' + type: AtmosPipeColor + - uid: 10585 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-38.5 + parent: 2 + type: Transform + - color: '#800080FF' + type: AtmosPipeColor +- proto: GasVolumePump + entities: + - uid: 10586 + components: + - rot: 3.141592653589793 rad + pos: -4.5,-46.5 + parent: 2 + type: Transform + - color: '#66FF00FF' + type: AtmosPipeColor + - uid: 10587 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-40.5 + parent: 2 + type: Transform + - color: '#66FF00FF' + type: AtmosPipeColor + - uid: 10588 + components: + - rot: 3.141592653589793 rad + pos: -3.5,-36.5 + parent: 2 + type: Transform + - color: '#00008BFF' + type: AtmosPipeColor + - uid: 10589 + components: + - rot: 3.141592653589793 rad + pos: -2.5,-36.5 + parent: 2 + type: Transform + - color: '#00008BFF' + type: AtmosPipeColor + - uid: 10590 + components: + - rot: -1.5707963267948966 rad + pos: -3.5,-50.5 + parent: 2 + type: Transform + - color: '#66FF00FF' type: AtmosPipeColor - proto: Gauze entities: - - uid: 16268 + - uid: 10591 components: - pos: 20.348022,3.509109 parent: 2 type: Transform - - uid: 16269 + - uid: 10592 components: - pos: 20.566772,3.743648 parent: 2 type: Transform - proto: Gauze1 entities: - - uid: 8320 + - uid: 10593 components: - pos: -36.244873,-24.761852 parent: 2 type: Transform - proto: GeigerCounter entities: - - uid: 4178 + - uid: 10594 components: - pos: -48.71885,34.98339 parent: 2 type: Transform - - uid: 16657 + - uid: 10595 components: - pos: -20.634808,-28.440205 parent: 2 type: Transform - - uid: 16658 + - uid: 10596 components: - pos: -20.301476,-28.461052 parent: 2 type: Transform - proto: GeneratorBasic entities: - - uid: 6166 + - uid: 10597 components: - pos: -44.5,51.5 parent: 2 type: Transform - proto: Girder entities: - - uid: 16400 + - uid: 10598 components: - pos: -43.5,55.5 parent: 2 type: Transform - proto: GlimmerProber entities: - - uid: 11047 + - uid: 10599 components: - pos: -43.5,37.5 parent: 2 type: Transform - proto: GlowstickBase entities: - - uid: 16837 + - uid: 10600 components: - pos: -38.59463,10.682609 parent: 2 type: Transform - proto: GlowstickBlue entities: - - uid: 16834 + - uid: 10601 components: - pos: -13.526116,-7.38401 parent: 2 type: Transform - - uid: 16835 + - uid: 10602 components: - pos: -13.338616,-7.43613 parent: 2 type: Transform - - uid: 16836 + - uid: 10603 components: - pos: -38.73005,10.703458 parent: 2 type: Transform - - uid: 16959 + - uid: 10604 components: - pos: 21.420904,13.627912 parent: 2 type: Transform - - uid: 16960 + - uid: 10605 components: - pos: 21.639654,13.523672 parent: 2 type: Transform - proto: GlowstickPurple entities: - - uid: 16838 + - uid: 10606 components: - pos: -38.4488,10.672186 parent: 2 type: Transform - proto: GlowstickRed entities: - - uid: 16839 + - uid: 10607 components: - pos: -38.302967,10.63049 parent: 2 type: Transform - proto: GlowstickYellow entities: - - uid: 16832 + - uid: 10608 components: - pos: -7.423292,-15.38963 parent: 2 type: Transform - - uid: 16833 + - uid: 10609 components: - pos: -7.2774587,-15.441751 parent: 2 type: Transform - - uid: 16840 + - uid: 10610 components: - pos: -38.18838,10.578371 parent: 2 type: Transform - proto: GravityGenerator entities: - - uid: 1166 + - uid: 10611 components: - pos: 4.5,-31.5 parent: 2 type: Transform - proto: Grille entities: - - uid: 41 + - uid: 10612 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-50.5 + parent: 2 + type: Transform + - uid: 10613 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-40.5 + parent: 2 + type: Transform + - uid: 10614 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-50.5 + parent: 2 + type: Transform + - uid: 10615 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-50.5 + parent: 2 + type: Transform + - uid: 10616 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-52.5 + parent: 2 + type: Transform + - uid: 10617 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-51.5 + parent: 2 + type: Transform + - uid: 10618 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-46.5 + parent: 2 + type: Transform + - uid: 10619 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-44.5 + parent: 2 + type: Transform + - uid: 10620 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-43.5 + parent: 2 + type: Transform + - uid: 10621 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-45.5 + parent: 2 + type: Transform + - uid: 10622 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-46.5 + parent: 2 + type: Transform + - uid: 10623 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-47.5 + parent: 2 + type: Transform + - uid: 10624 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-46.5 + parent: 2 + type: Transform + - uid: 10625 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-46.5 + parent: 2 + type: Transform + - uid: 10626 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-46.5 + parent: 2 + type: Transform + - uid: 10627 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-48.5 + parent: 2 + type: Transform + - uid: 10628 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-48.5 + parent: 2 + type: Transform + - uid: 10629 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-44.5 + parent: 2 + type: Transform + - uid: 10630 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-44.5 + parent: 2 + type: Transform + - uid: 10631 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-44.5 + parent: 2 + type: Transform + - uid: 10632 + components: + - rot: 1.5707963267948966 rad + pos: -8.5,-46.5 + parent: 2 + type: Transform + - uid: 10633 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-50.5 + parent: 2 + type: Transform + - uid: 10634 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-42.5 + parent: 2 + type: Transform + - uid: 10635 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-47.5 + parent: 2 + type: Transform + - uid: 10636 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-41.5 + parent: 2 + type: Transform + - uid: 10637 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-52.5 + parent: 2 + type: Transform + - uid: 10638 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-47.5 + parent: 2 + type: Transform + - uid: 10639 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-49.5 + parent: 2 + type: Transform + - uid: 10640 components: - pos: -4.5,-1.5 parent: 2 type: Transform - - uid: 43 + - uid: 10641 components: - pos: -9.5,-1.5 parent: 2 type: Transform - - uid: 57 + - uid: 10642 components: - pos: -10.5,2.5 parent: 2 type: Transform - - uid: 58 + - uid: 10643 components: - pos: -9.5,2.5 parent: 2 type: Transform - - uid: 88 + - uid: 10644 components: - pos: -8.5,2.5 parent: 2 type: Transform - - uid: 91 + - uid: 10645 components: - pos: -30.5,-5.5 parent: 2 type: Transform - - uid: 94 + - uid: 10646 components: - pos: -30.5,-6.5 parent: 2 type: Transform - - uid: 174 + - uid: 10647 components: - pos: 9.5,-4.5 parent: 2 type: Transform - - uid: 209 + - uid: 10648 components: - pos: -36.5,-7.5 parent: 2 type: Transform - - uid: 262 + - uid: 10649 components: - pos: -16.5,6.5 parent: 2 type: Transform - - uid: 267 + - uid: 10650 components: - pos: -5.5,16.5 parent: 2 type: Transform - - uid: 272 + - uid: 10651 components: - pos: 16.5,-5.5 parent: 2 type: Transform - - uid: 273 + - uid: 10652 components: - pos: 16.5,-4.5 parent: 2 type: Transform - - uid: 286 + - uid: 10653 components: - pos: -5.5,11.5 parent: 2 type: Transform - - uid: 289 + - uid: 10654 components: - pos: -35.5,-7.5 parent: 2 type: Transform - - uid: 336 + - uid: 10655 components: - pos: 12.5,-2.5 parent: 2 type: Transform - - uid: 338 + - uid: 10656 components: - pos: 14.5,-7.5 parent: 2 type: Transform - - uid: 339 + - uid: 10657 components: - pos: 13.5,-2.5 parent: 2 type: Transform - - uid: 340 + - uid: 10658 components: - pos: 11.5,-7.5 parent: 2 type: Transform - - uid: 359 + - uid: 10659 components: - pos: 11.5,-11.5 parent: 2 type: Transform - - uid: 360 + - uid: 10660 components: - pos: 12.5,-11.5 parent: 2 type: Transform - - uid: 399 + - uid: 10661 components: - pos: 9.5,-10.5 parent: 2 type: Transform - - uid: 404 + - uid: 10662 components: - pos: -2.5,10.5 parent: 2 type: Transform - - uid: 440 + - uid: 10663 components: - pos: -12.5,-20.5 parent: 2 type: Transform - - uid: 491 + - uid: 10664 components: - pos: -29.5,-13.5 parent: 2 type: Transform - - uid: 499 + - uid: 10665 components: - pos: 11.5,3.5 parent: 2 type: Transform - - uid: 500 + - uid: 10666 components: - pos: 14.5,3.5 parent: 2 type: Transform - - uid: 509 + - uid: 10667 components: - pos: -4.5,-32.5 parent: 2 type: Transform - - uid: 511 + - uid: 10668 components: - pos: -4.5,-33.5 parent: 2 type: Transform - - uid: 531 + - uid: 10669 components: - rot: 3.141592653589793 rad pos: -37.5,-28.5 parent: 2 type: Transform - - uid: 537 + - uid: 10670 components: - pos: -9.5,13.5 parent: 2 type: Transform - - uid: 538 + - uid: 10671 components: - pos: -10.5,13.5 parent: 2 type: Transform - - uid: 543 + - uid: 10672 components: - pos: -21.5,-1.5 parent: 2 type: Transform - - uid: 544 + - uid: 10673 components: - pos: -22.5,-1.5 parent: 2 type: Transform - - uid: 551 + - uid: 10674 components: - pos: -26.5,1.5 parent: 2 type: Transform - - uid: 566 + - uid: 10675 components: - pos: -28.5,4.5 parent: 2 type: Transform - - uid: 616 + - uid: 10676 components: - pos: -33.5,-13.5 parent: 2 type: Transform - - uid: 648 + - uid: 10677 components: - pos: -11.5,1.5 parent: 2 type: Transform - - uid: 699 + - uid: 10678 components: - pos: -3.5,-1.5 parent: 2 type: Transform - - uid: 701 + - uid: 10679 components: - pos: -18.5,2.5 parent: 2 type: Transform - - uid: 774 + - uid: 10680 components: - pos: -43.5,38.5 parent: 2 type: Transform - - uid: 854 + - uid: 10681 components: - pos: -19.5,2.5 parent: 2 type: Transform - - uid: 863 + - uid: 10682 components: - rot: 1.5707963267948966 rad pos: -55.5,50.5 parent: 2 type: Transform - - uid: 866 + - uid: 10683 components: - pos: -1.5,22.5 parent: 2 type: Transform - - uid: 873 + - uid: 10684 components: - pos: -5.5,-24.5 parent: 2 type: Transform - - uid: 888 + - uid: 10685 components: - pos: -11.5,21.5 parent: 2 type: Transform - - uid: 894 + - uid: 10686 components: - pos: 7.5,-14.5 parent: 2 type: Transform - - uid: 895 + - uid: 10687 components: - pos: -1.5,16.5 parent: 2 type: Transform - - uid: 901 + - uid: 10688 components: - pos: -30.5,4.5 parent: 2 type: Transform - - uid: 902 + - uid: 10689 components: - pos: -32.5,4.5 parent: 2 type: Transform - - uid: 905 + - uid: 10690 components: - pos: -22.5,20.5 parent: 2 type: Transform - - uid: 911 + - uid: 10691 components: - pos: -9.5,-15.5 parent: 2 type: Transform - - uid: 979 + - uid: 10692 components: - pos: -30.5,-4.5 parent: 2 type: Transform - - uid: 988 + - uid: 10693 components: - rot: 3.141592653589793 rad pos: -33.5,-12.5 parent: 2 type: Transform - - uid: 996 + - uid: 10694 components: - pos: -9.5,-17.5 parent: 2 type: Transform - - uid: 1023 + - uid: 10695 components: - pos: -5.5,17.5 parent: 2 type: Transform - - uid: 1042 + - uid: 10696 components: - pos: -42.5,-3.5 parent: 2 type: Transform - - uid: 1053 + - uid: 10697 components: - pos: -11.5,22.5 parent: 2 type: Transform - - uid: 1055 + - uid: 10698 components: - pos: -22.5,19.5 parent: 2 type: Transform - - uid: 1062 + - uid: 10699 components: - pos: -40.5,-3.5 parent: 2 type: Transform - - uid: 1068 + - uid: 10700 components: - pos: -9.5,-11.5 parent: 2 type: Transform - - uid: 1069 + - uid: 10701 components: - pos: -7.5,-11.5 parent: 2 type: Transform - - uid: 1083 + - uid: 10702 components: - pos: -40.5,-16.5 parent: 2 type: Transform - - uid: 1089 + - uid: 10703 components: - pos: -34.5,-16.5 parent: 2 type: Transform - - uid: 1138 + - uid: 10704 components: - pos: -11.5,20.5 parent: 2 type: Transform - - uid: 1185 + - uid: 10705 components: - pos: 38.5,-24.5 parent: 2 type: Transform - - uid: 1200 + - uid: 10706 components: - pos: -58.5,34.5 parent: 2 type: Transform - - uid: 1345 + - uid: 10707 components: - pos: -5.5,-22.5 parent: 2 type: Transform - - uid: 1346 + - uid: 10708 components: - pos: 1.5,-31.5 parent: 2 type: Transform - - uid: 1348 + - uid: 10709 components: - pos: 1.5,-30.5 parent: 2 type: Transform - - uid: 1361 + - uid: 10710 components: - pos: 6.5,-26.5 parent: 2 type: Transform - - uid: 1393 + - uid: 10711 components: - pos: 6.5,-25.5 parent: 2 type: Transform - - uid: 1418 + - uid: 10712 components: - pos: 6.5,-24.5 parent: 2 type: Transform - - uid: 1420 + - uid: 10713 components: - pos: -9.5,-27.5 parent: 2 type: Transform - - uid: 1441 + - uid: 10714 components: - pos: -18.5,-14.5 parent: 2 type: Transform - - uid: 1461 + - uid: 10715 components: - pos: -41.5,-11.5 parent: 2 type: Transform - - uid: 1466 + - uid: 10716 components: - pos: -41.5,-14.5 parent: 2 type: Transform - - uid: 1498 + - uid: 10717 components: - pos: -63.5,3.5 parent: 2 type: Transform - - uid: 1513 + - uid: 10718 components: - pos: -63.5,4.5 parent: 2 type: Transform - - uid: 1691 + - uid: 10719 components: - pos: 40.5,-14.5 parent: 2 type: Transform - - uid: 1695 + - uid: 10720 components: - pos: 31.5,-24.5 parent: 2 type: Transform - - uid: 1709 + - uid: 10721 components: - pos: 28.5,3.5 parent: 2 type: Transform - - uid: 1711 + - uid: 10722 components: - pos: 29.5,-24.5 parent: 2 type: Transform - - uid: 1712 + - uid: 10723 components: - pos: 36.5,-24.5 parent: 2 type: Transform - - uid: 1797 + - uid: 10724 components: - pos: -5.5,-36.5 parent: 2 type: Transform - - uid: 1800 + - uid: 10725 components: - pos: 20.5,11.5 parent: 2 type: Transform - - uid: 1841 + - uid: 10726 components: - pos: 6.5,-14.5 parent: 2 type: Transform - - uid: 1847 + - uid: 10727 components: - pos: 5.5,-29.5 parent: 2 type: Transform - - uid: 1848 + - uid: 10728 components: - pos: 4.5,-29.5 parent: 2 type: Transform - - uid: 1849 + - uid: 10729 components: - pos: 3.5,-29.5 parent: 2 type: Transform - - uid: 1879 + - uid: 10730 components: - pos: -16.5,-50.5 parent: 2 type: Transform - - uid: 1889 + - uid: 10731 components: - pos: -16.5,-47.5 parent: 2 type: Transform - - uid: 1892 + - uid: 10732 components: - pos: -11.5,-51.5 parent: 2 type: Transform - - uid: 1893 - components: - - pos: -5.5,-52.5 - parent: 2 - type: Transform - - uid: 1941 + - uid: 10733 components: - pos: 24.5,7.5 parent: 2 type: Transform - - uid: 1980 + - uid: 10734 components: - rot: 1.5707963267948966 rad pos: -9.5,-26.5 parent: 2 type: Transform - - uid: 1982 + - uid: 10735 components: - rot: 1.5707963267948966 rad pos: -9.5,-30.5 parent: 2 type: Transform - - uid: 1989 + - uid: 10736 components: - pos: -9.5,-29.5 parent: 2 type: Transform - - uid: 2026 + - uid: 10737 components: - pos: -64.5,6.5 parent: 2 type: Transform - - uid: 2042 + - uid: 10738 components: - pos: -8.5,-36.5 parent: 2 type: Transform - - uid: 2056 + - uid: 10739 components: - rot: -1.5707963267948966 rad pos: -56.5,6.5 parent: 2 type: Transform - - uid: 2068 + - uid: 10740 components: - pos: 10.5,-48.5 parent: 2 type: Transform - - uid: 2089 + - uid: 10741 components: - pos: -52.5,62.5 parent: 2 type: Transform - - uid: 2090 + - uid: 10742 components: - pos: -55.5,38.5 parent: 2 type: Transform - - uid: 2091 + - uid: 10743 components: - pos: -54.5,38.5 parent: 2 type: Transform - - uid: 2123 + - uid: 10744 components: - pos: 5.5,34.5 parent: 2 type: Transform - - uid: 2136 + - uid: 10745 components: - pos: 14.5,34.5 parent: 2 type: Transform - - uid: 2174 + - uid: 10746 components: - rot: -1.5707963267948966 rad pos: -61.5,6.5 parent: 2 type: Transform - - uid: 2181 + - uid: 10747 components: - pos: -41.5,-45.5 parent: 2 type: Transform - - uid: 2231 + - uid: 10748 components: - pos: 12.5,-42.5 parent: 2 type: Transform - - uid: 2237 + - uid: 10749 components: - rot: -1.5707963267948966 rad pos: -36.5,-47.5 parent: 2 type: Transform - - uid: 2245 + - uid: 10750 components: - pos: -19.5,-23.5 parent: 2 type: Transform - - uid: 2249 + - uid: 10751 components: - pos: -23.5,-32.5 parent: 2 type: Transform - - uid: 2260 + - uid: 10752 components: - pos: 3.5,-36.5 parent: 2 type: Transform - - uid: 2314 + - uid: 10753 components: - pos: -32.5,-29.5 parent: 2 type: Transform - - uid: 2319 + - uid: 10754 components: - rot: -1.5707963267948966 rad pos: -40.5,-38.5 parent: 2 type: Transform - - uid: 2383 + - uid: 10755 components: - pos: -24.5,-36.5 parent: 2 type: Transform - - uid: 2384 + - uid: 10756 components: - pos: -24.5,-37.5 parent: 2 type: Transform - - uid: 2385 + - uid: 10757 components: - pos: -24.5,-38.5 parent: 2 type: Transform - - uid: 2386 + - uid: 10758 components: - pos: -24.5,-39.5 parent: 2 type: Transform - - uid: 2387 + - uid: 10759 components: - pos: -24.5,-40.5 parent: 2 type: Transform - - uid: 2393 + - uid: 10760 components: - rot: -1.5707963267948966 rad pos: -40.5,-42.5 parent: 2 type: Transform - - uid: 2404 + - uid: 10761 components: - rot: -1.5707963267948966 rad pos: -37.5,-29.5 parent: 2 type: Transform - - uid: 2407 + - uid: 10762 components: - rot: -1.5707963267948966 rad pos: -40.5,-34.5 parent: 2 type: Transform - - uid: 2410 + - uid: 10763 components: - rot: -1.5707963267948966 rad pos: -40.5,-33.5 parent: 2 type: Transform - - uid: 2413 + - uid: 10764 components: - rot: -1.5707963267948966 rad pos: -40.5,-39.5 parent: 2 type: Transform - - uid: 2428 + - uid: 10765 components: - rot: -1.5707963267948966 rad pos: -32.5,-47.5 parent: 2 type: Transform - - uid: 2435 + - uid: 10766 components: - pos: -38.5,-48.5 parent: 2 type: Transform - - uid: 2440 + - uid: 10767 components: - rot: -1.5707963267948966 rad pos: -37.5,-47.5 parent: 2 type: Transform - - uid: 2446 + - uid: 10768 components: - rot: -1.5707963267948966 rad pos: -27.5,-47.5 parent: 2 type: Transform - - uid: 2448 + - uid: 10769 components: - rot: -1.5707963267948966 rad pos: -40.5,-43.5 parent: 2 type: Transform - - uid: 2449 + - uid: 10770 components: - rot: -1.5707963267948966 rad pos: -36.5,-29.5 parent: 2 type: Transform - - uid: 2450 + - uid: 10771 components: - rot: -1.5707963267948966 rad pos: -40.5,-44.5 parent: 2 type: Transform - - uid: 2454 + - uid: 10772 components: - rot: -1.5707963267948966 rad pos: -35.5,-47.5 parent: 2 type: Transform - - uid: 2455 + - uid: 10773 components: - rot: -1.5707963267948966 rad pos: -31.5,-47.5 parent: 2 type: Transform - - uid: 2458 + - uid: 10774 components: - rot: -1.5707963267948966 rad pos: -28.5,-47.5 parent: 2 type: Transform - - uid: 2459 + - uid: 10775 components: - rot: -1.5707963267948966 rad pos: -26.5,-47.5 parent: 2 type: Transform - - uid: 2460 + - uid: 10776 components: - rot: -1.5707963267948966 rad pos: -40.5,-32.5 parent: 2 type: Transform - - uid: 2478 + - uid: 10777 components: - pos: -41.5,-44.5 parent: 2 type: Transform - - uid: 2479 + - uid: 10778 components: - pos: -41.5,-43.5 parent: 2 type: Transform - - uid: 2480 + - uid: 10779 components: - pos: -41.5,-42.5 parent: 2 type: Transform - - uid: 2483 + - uid: 10780 components: - pos: -41.5,-39.5 parent: 2 type: Transform - - uid: 2484 + - uid: 10781 components: - pos: -41.5,-38.5 parent: 2 type: Transform - - uid: 2485 + - uid: 10782 components: - pos: -41.5,-37.5 parent: 2 type: Transform - - uid: 2488 + - uid: 10783 components: - pos: -41.5,-34.5 parent: 2 type: Transform - - uid: 2489 + - uid: 10784 components: - pos: -41.5,-33.5 parent: 2 type: Transform - - uid: 2490 + - uid: 10785 components: - pos: -41.5,-32.5 parent: 2 type: Transform - - uid: 2491 + - uid: 10786 components: - pos: -41.5,-31.5 parent: 2 type: Transform - - uid: 2492 + - uid: 10787 components: - pos: -37.5,-48.5 parent: 2 type: Transform - - uid: 2493 + - uid: 10788 components: - pos: -36.5,-48.5 parent: 2 type: Transform - - uid: 2494 + - uid: 10789 components: - pos: -35.5,-48.5 parent: 2 type: Transform - - uid: 2497 + - uid: 10790 components: - pos: -32.5,-48.5 parent: 2 type: Transform - - uid: 2498 + - uid: 10791 components: - pos: -31.5,-48.5 parent: 2 type: Transform - - uid: 2501 + - uid: 10792 components: - pos: -28.5,-48.5 parent: 2 type: Transform - - uid: 2502 + - uid: 10793 components: - pos: -27.5,-48.5 parent: 2 type: Transform - - uid: 2503 + - uid: 10794 components: - pos: -26.5,-48.5 parent: 2 type: Transform - - uid: 2504 + - uid: 10795 components: - pos: -25.5,-48.5 parent: 2 type: Transform - - uid: 2512 - components: - - pos: -5.5,-42.5 - parent: 2 - type: Transform - - uid: 2565 + - uid: 10796 components: - pos: -23.5,-33.5 parent: 2 type: Transform - - uid: 2566 + - uid: 10797 components: - pos: -23.5,-43.5 parent: 2 type: Transform - - uid: 2567 + - uid: 10798 components: - pos: -23.5,-44.5 parent: 2 type: Transform - - uid: 2592 + - uid: 10799 components: - rot: 3.141592653589793 rad pos: -38.5,-28.5 parent: 2 type: Transform - - uid: 2593 + - uid: 10800 components: - rot: -1.5707963267948966 rad pos: -40.5,-37.5 parent: 2 type: Transform - - uid: 2595 + - uid: 10801 components: - rot: 3.141592653589793 rad pos: -35.5,-28.5 parent: 2 type: Transform - - uid: 2616 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-42.5 - parent: 2 - type: Transform - - uid: 2622 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-47.5 - parent: 2 - type: Transform - - uid: 2623 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-48.5 - parent: 2 - type: Transform - - uid: 2625 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-44.5 - parent: 2 - type: Transform - - uid: 2626 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-42.5 - parent: 2 - type: Transform - - uid: 2627 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-46.5 - parent: 2 - type: Transform - - uid: 2665 + - uid: 10802 components: - pos: -12.5,-35.5 parent: 2 type: Transform - - uid: 2666 - components: - - pos: -6.5,-42.5 - parent: 2 - type: Transform - - uid: 2726 + - uid: 10803 components: - rot: 3.141592653589793 rad pos: -36.5,-28.5 parent: 2 type: Transform - - uid: 2742 + - uid: 10804 components: - pos: -14.5,-34.5 parent: 2 type: Transform - - uid: 2743 + - uid: 10805 components: - pos: -14.5,-32.5 parent: 2 type: Transform - - uid: 2744 + - uid: 10806 components: - pos: -9.5,-34.5 parent: 2 type: Transform - - uid: 2745 + - uid: 10807 components: - pos: -9.5,-32.5 parent: 2 type: Transform - - uid: 2773 + - uid: 10808 components: - pos: -24.5,-50.5 parent: 2 type: Transform - - uid: 2792 + - uid: 10809 components: - pos: -30.5,-29.5 parent: 2 type: Transform - - uid: 2796 + - uid: 10810 components: - pos: -29.5,-26.5 parent: 2 type: Transform - - uid: 2883 - components: - - pos: -3.5,-37.5 - parent: 2 - type: Transform - - uid: 2884 - components: - - pos: -1.5,-37.5 - parent: 2 - type: Transform - - uid: 2918 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-52.5 - parent: 2 - type: Transform - - uid: 2919 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-52.5 - parent: 2 - type: Transform - - uid: 2920 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-50.5 - parent: 2 - type: Transform - - uid: 2921 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-49.5 - parent: 2 - type: Transform - - uid: 2922 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-49.5 - parent: 2 - type: Transform - - uid: 2923 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-50.5 - parent: 2 - type: Transform - - uid: 2924 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-48.5 - parent: 2 - type: Transform - - uid: 2925 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-47.5 - parent: 2 - type: Transform - - uid: 2926 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-47.5 - parent: 2 - type: Transform - - uid: 2927 + - uid: 10811 components: - - rot: -1.5707963267948966 rad - pos: -2.5,-47.5 + - rot: 1.5707963267948966 rad + pos: 4.5,-49.5 parent: 2 type: Transform - - uid: 2938 + - uid: 10812 components: - rot: -1.5707963267948966 rad pos: -66.5,-14.5 parent: 2 type: Transform - - uid: 2947 + - uid: 10813 components: - pos: 12.5,-43.5 parent: 2 type: Transform - - uid: 2957 - components: - - pos: 3.5,-39.5 - parent: 2 - type: Transform - - uid: 2971 + - uid: 10814 components: - pos: 19.5,2.5 parent: 2 type: Transform - - uid: 2972 + - uid: 10815 components: - pos: 13.5,-27.5 parent: 2 type: Transform - - uid: 2981 + - uid: 10816 components: - pos: 17.5,-34.5 parent: 2 type: Transform - - uid: 3022 + - uid: 10817 components: - rot: 1.5707963267948966 rad pos: -50.5,-2.5 parent: 2 type: Transform - - uid: 3023 + - uid: 10818 components: - rot: 1.5707963267948966 rad pos: -50.5,-4.5 parent: 2 type: Transform - - uid: 3093 + - uid: 10819 components: - rot: 3.141592653589793 rad pos: 20.5,-33.5 parent: 2 type: Transform - - uid: 3117 + - uid: 10820 components: - rot: -1.5707963267948966 rad pos: -65.5,-15.5 parent: 2 type: Transform - - uid: 3118 + - uid: 10821 components: - pos: -36.5,8.5 parent: 2 type: Transform - - uid: 3125 + - uid: 10822 components: - rot: -1.5707963267948966 rad pos: -64.5,-18.5 parent: 2 type: Transform - - uid: 3127 + - uid: 10823 components: - pos: -62.5,-18.5 parent: 2 type: Transform - - uid: 3128 + - uid: 10824 components: - pos: -35.5,12.5 parent: 2 type: Transform - - uid: 3131 + - uid: 10825 components: - pos: -37.5,8.5 parent: 2 type: Transform - - uid: 3136 + - uid: 10826 components: - pos: -34.5,12.5 parent: 2 type: Transform - - uid: 3140 + - uid: 10827 components: - pos: -38.5,16.5 parent: 2 type: Transform - - uid: 3146 + - uid: 10828 components: - pos: 20.5,-2.5 parent: 2 type: Transform - - uid: 3155 + - uid: 10829 components: - rot: -1.5707963267948966 rad pos: -57.5,-8.5 parent: 2 type: Transform - - uid: 3156 + - uid: 10830 components: - rot: -1.5707963267948966 rad pos: -57.5,-6.5 parent: 2 type: Transform - - uid: 3168 + - uid: 10831 components: - pos: -36.5,16.5 parent: 2 type: Transform - - uid: 3209 + - uid: 10832 components: - rot: -1.5707963267948966 rad pos: -65.5,-14.5 parent: 2 type: Transform - - uid: 3281 + - uid: 10833 components: - rot: -1.5707963267948966 rad pos: -65.5,-17.5 parent: 2 type: Transform - - uid: 3287 + - uid: 10834 components: - rot: -1.5707963267948966 rad pos: -65.5,-16.5 parent: 2 type: Transform - - uid: 3304 + - uid: 10835 components: - rot: -1.5707963267948966 rad pos: -64.5,-17.5 parent: 2 type: Transform - - uid: 3305 + - uid: 10836 components: - rot: -1.5707963267948966 rad pos: -64.5,-19.5 parent: 2 type: Transform - - uid: 3328 + - uid: 10837 components: - rot: -1.5707963267948966 rad pos: -63.5,-20.5 parent: 2 type: Transform - - uid: 3329 + - uid: 10838 components: - rot: -1.5707963267948966 rad pos: -63.5,-21.5 parent: 2 type: Transform - - uid: 3330 + - uid: 10839 components: - rot: -1.5707963267948966 rad pos: -63.5,-22.5 parent: 2 type: Transform - - uid: 3331 + - uid: 10840 components: - rot: -1.5707963267948966 rad pos: -62.5,-22.5 parent: 2 type: Transform - - uid: 3332 + - uid: 10841 components: - rot: -1.5707963267948966 rad pos: -61.5,-22.5 parent: 2 type: Transform - - uid: 3333 + - uid: 10842 components: - rot: -1.5707963267948966 rad pos: -60.5,-23.5 parent: 2 type: Transform - - uid: 3334 + - uid: 10843 components: - rot: -1.5707963267948966 rad pos: -59.5,-23.5 parent: 2 type: Transform - - uid: 3335 + - uid: 10844 components: - rot: -1.5707963267948966 rad pos: -58.5,-23.5 parent: 2 type: Transform - - uid: 3336 + - uid: 10845 components: - rot: -1.5707963267948966 rad pos: -57.5,-23.5 parent: 2 type: Transform - - uid: 3337 + - uid: 10846 components: - rot: -1.5707963267948966 rad pos: -56.5,-23.5 parent: 2 type: Transform - - uid: 3338 + - uid: 10847 components: - rot: -1.5707963267948966 rad pos: -55.5,-23.5 parent: 2 type: Transform - - uid: 3339 + - uid: 10848 components: - rot: -1.5707963267948966 rad pos: -54.5,-23.5 parent: 2 type: Transform - - uid: 3342 + - uid: 10849 components: - rot: -1.5707963267948966 rad pos: -52.5,-22.5 parent: 2 type: Transform - - uid: 3343 + - uid: 10850 components: - rot: -1.5707963267948966 rad pos: -51.5,-22.5 parent: 2 type: Transform - - uid: 3344 + - uid: 10851 components: - rot: -1.5707963267948966 rad pos: -50.5,-22.5 parent: 2 type: Transform - - uid: 3345 + - uid: 10852 components: - pos: -63.5,-16.5 parent: 2 type: Transform - - uid: 3346 + - uid: 10853 components: - pos: -65.5,1.5 parent: 2 type: Transform - - uid: 3347 + - uid: 10854 components: - rot: -1.5707963267948966 rad pos: -50.5,-23.5 parent: 2 type: Transform - - uid: 3348 + - uid: 10855 components: - rot: -1.5707963267948966 rad pos: -49.5,-23.5 parent: 2 type: Transform - - uid: 3349 + - uid: 10856 components: - rot: -1.5707963267948966 rad pos: -48.5,-23.5 parent: 2 type: Transform - - uid: 3350 + - uid: 10857 components: - rot: -1.5707963267948966 rad pos: -47.5,-23.5 parent: 2 type: Transform - - uid: 3351 + - uid: 10858 components: - pos: -32.5,61.5 parent: 2 type: Transform - - uid: 3352 + - uid: 10859 components: - rot: -1.5707963267948966 rad pos: -45.5,-23.5 parent: 2 type: Transform - - uid: 3353 + - uid: 10860 components: - rot: -1.5707963267948966 rad pos: -44.5,-23.5 parent: 2 type: Transform - - uid: 3354 + - uid: 10861 components: - rot: -1.5707963267948966 rad pos: -45.5,-21.5 parent: 2 type: Transform - - uid: 3355 + - uid: 10862 components: - rot: -1.5707963267948966 rad pos: -46.5,-21.5 parent: 2 type: Transform - - uid: 3356 + - uid: 10863 components: - rot: -1.5707963267948966 rad pos: -47.5,-21.5 parent: 2 type: Transform - - uid: 3357 + - uid: 10864 components: - rot: -1.5707963267948966 rad pos: -48.5,-21.5 parent: 2 type: Transform - - uid: 3358 + - uid: 10865 components: - rot: -1.5707963267948966 rad pos: -49.5,-21.5 parent: 2 type: Transform - - uid: 3359 + - uid: 10866 components: - rot: -1.5707963267948966 rad pos: -50.5,-21.5 parent: 2 type: Transform - - uid: 3360 + - uid: 10867 components: - rot: -1.5707963267948966 rad pos: -50.5,-20.5 parent: 2 type: Transform - - uid: 3361 + - uid: 10868 components: - rot: -1.5707963267948966 rad pos: -51.5,-20.5 parent: 2 type: Transform - - uid: 3362 + - uid: 10869 components: - rot: -1.5707963267948966 rad pos: -52.5,-20.5 parent: 2 type: Transform - - uid: 3363 + - uid: 10870 components: - rot: -1.5707963267948966 rad pos: -53.5,-20.5 parent: 2 type: Transform - - uid: 3364 + - uid: 10871 components: - rot: -1.5707963267948966 rad pos: -53.5,-21.5 parent: 2 type: Transform - - uid: 3365 + - uid: 10872 components: - rot: -1.5707963267948966 rad pos: -54.5,-21.5 parent: 2 type: Transform - - uid: 3366 + - uid: 10873 components: - rot: -1.5707963267948966 rad pos: -55.5,-21.5 parent: 2 type: Transform - - uid: 3367 + - uid: 10874 components: - rot: -1.5707963267948966 rad pos: -56.5,-21.5 parent: 2 type: Transform - - uid: 3368 + - uid: 10875 components: - rot: -1.5707963267948966 rad pos: -56.5,-22.5 parent: 2 type: Transform - - uid: 3369 + - uid: 10876 components: - rot: -1.5707963267948966 rad pos: -57.5,-21.5 parent: 2 type: Transform - - uid: 3370 + - uid: 10877 components: - rot: -1.5707963267948966 rad pos: -58.5,-21.5 parent: 2 type: Transform - - uid: 3371 + - uid: 10878 components: - rot: -1.5707963267948966 rad pos: -59.5,-21.5 parent: 2 type: Transform - - uid: 3372 + - uid: 10879 components: - rot: -1.5707963267948966 rad pos: -59.5,-22.5 parent: 2 type: Transform - - uid: 3386 + - uid: 10880 components: - pos: -65.5,3.5 parent: 2 type: Transform - - uid: 3387 + - uid: 10881 components: - pos: -65.5,4.5 parent: 2 type: Transform - - uid: 3388 + - uid: 10882 components: - pos: -65.5,5.5 parent: 2 type: Transform - - uid: 3393 + - uid: 10883 components: - pos: -63.5,6.5 parent: 2 type: Transform - - uid: 3397 + - uid: 10884 components: - pos: 5.5,35.5 parent: 2 type: Transform - - uid: 3399 + - uid: 10885 components: - pos: 16.5,34.5 parent: 2 type: Transform - - uid: 3400 + - uid: 10886 components: - pos: 35.5,28.5 parent: 2 type: Transform - - uid: 3402 + - uid: 10887 components: - pos: 3.5,38.5 parent: 2 type: Transform - - uid: 3404 + - uid: 10888 components: - pos: -57.5,6.5 parent: 2 type: Transform - - uid: 3405 + - uid: 10889 components: - pos: -59.5,6.5 parent: 2 type: Transform - - uid: 3406 + - uid: 10890 components: - pos: -54.5,6.5 parent: 2 type: Transform - - uid: 3409 + - uid: 10891 components: - pos: -63.5,-4.5 parent: 2 type: Transform - - uid: 3410 + - uid: 10892 components: - pos: -53.5,5.5 parent: 2 type: Transform - - uid: 3411 + - uid: 10893 components: - pos: -55.5,5.5 parent: 2 type: Transform - - uid: 3412 + - uid: 10894 components: - pos: -64.5,-4.5 parent: 2 type: Transform - - uid: 3413 + - uid: 10895 components: - pos: -62.5,-19.5 parent: 2 type: Transform - - uid: 3414 + - uid: 10896 components: - pos: -57.5,5.5 parent: 2 type: Transform - - uid: 3415 + - uid: 10897 components: - pos: -58.5,5.5 parent: 2 type: Transform - - uid: 3416 + - uid: 10898 components: - pos: -59.5,5.5 parent: 2 type: Transform - - uid: 3417 + - uid: 10899 components: - pos: -60.5,5.5 parent: 2 type: Transform - - uid: 3418 + - uid: 10900 components: - pos: -61.5,5.5 parent: 2 type: Transform - - uid: 3419 + - uid: 10901 components: - pos: -62.5,5.5 parent: 2 type: Transform - - uid: 3420 + - uid: 10902 components: - pos: -64.5,2.5 parent: 2 type: Transform - - uid: 3421 + - uid: 10903 components: - pos: -63.5,2.5 parent: 2 type: Transform - - uid: 3426 + - uid: 10904 components: - pos: -63.5,-1.5 parent: 2 type: Transform - - uid: 3427 + - uid: 10905 components: - pos: -66.5,0.5 parent: 2 type: Transform - - uid: 3428 + - uid: 10906 components: - pos: -66.5,-0.5 parent: 2 type: Transform - - uid: 3430 + - uid: 10907 components: - pos: -66.5,-2.5 parent: 2 type: Transform - - uid: 3431 + - uid: 10908 components: - pos: -66.5,-3.5 parent: 2 type: Transform - - uid: 3433 + - uid: 10909 components: - pos: -66.5,-5.5 parent: 2 type: Transform - - uid: 3434 + - uid: 10910 components: - pos: -66.5,-6.5 parent: 2 type: Transform - - uid: 3436 + - uid: 10911 components: - pos: -65.5,-4.5 parent: 2 type: Transform - - uid: 3437 + - uid: 10912 components: - pos: -63.5,-3.5 parent: 2 type: Transform - - uid: 3438 + - uid: 10913 components: - pos: -63.5,-0.5 parent: 2 type: Transform - - uid: 3439 + - uid: 10914 components: - pos: -63.5,0.5 parent: 2 type: Transform - - uid: 3440 + - uid: 10915 components: - pos: -63.5,1.5 parent: 2 type: Transform - - uid: 3441 + - uid: 10916 components: - pos: -64.5,-1.5 parent: 2 type: Transform - - uid: 3442 + - uid: 10917 components: - pos: -65.5,-1.5 parent: 2 type: Transform - - uid: 3443 + - uid: 10918 components: - pos: -64.5,-5.5 parent: 2 type: Transform - - uid: 3444 + - uid: 10919 components: - pos: -64.5,-6.5 parent: 2 type: Transform - - uid: 3445 + - uid: 10920 components: - pos: -64.5,-14.5 parent: 2 type: Transform - - uid: 3446 + - uid: 10921 components: - pos: -65.5,-7.5 parent: 2 type: Transform - - uid: 3447 + - uid: 10922 components: - pos: -65.5,-8.5 parent: 2 type: Transform - - uid: 3448 + - uid: 10923 components: - pos: -65.5,-9.5 parent: 2 type: Transform - - uid: 3449 + - uid: 10924 components: - pos: -65.5,-10.5 parent: 2 type: Transform - - uid: 3451 + - uid: 10925 components: - pos: -67.5,-11.5 parent: 2 type: Transform - - uid: 3452 + - uid: 10926 components: - pos: -67.5,-12.5 parent: 2 type: Transform - - uid: 3454 + - uid: 10927 components: - pos: -67.5,-13.5 parent: 2 type: Transform - - uid: 3458 + - uid: 10928 components: - pos: -65.5,-12.5 parent: 2 type: Transform - - uid: 3459 + - uid: 10929 components: - pos: -65.5,-13.5 parent: 2 type: Transform - - uid: 3463 + - uid: 10930 components: - pos: -64.5,-9.5 parent: 2 type: Transform - - uid: 3466 + - uid: 10931 components: - pos: -63.5,-14.5 parent: 2 type: Transform - - uid: 3467 + - uid: 10932 components: - pos: -63.5,-13.5 parent: 2 type: Transform - - uid: 3468 + - uid: 10933 components: - pos: -63.5,-12.5 parent: 2 type: Transform - - uid: 3469 + - uid: 10934 components: - pos: -63.5,-11.5 parent: 2 type: Transform - - uid: 3471 + - uid: 10935 components: - pos: -64.5,-10.5 parent: 2 type: Transform - - uid: 3472 + - uid: 10936 components: - pos: -63.5,-17.5 parent: 2 type: Transform - - uid: 3473 + - uid: 10937 components: - pos: -63.5,-15.5 parent: 2 type: Transform - - uid: 3474 + - uid: 10938 components: - pos: -62.5,-20.5 parent: 2 type: Transform - - uid: 3475 + - uid: 10939 components: - pos: -61.5,-20.5 parent: 2 type: Transform - - uid: 3476 + - uid: 10940 components: - pos: -61.5,-21.5 parent: 2 type: Transform - - uid: 3478 + - uid: 10941 components: - rot: 1.5707963267948966 rad pos: 32.5,2.5 parent: 2 type: Transform - - uid: 3524 + - uid: 10942 components: - pos: 19.5,-2.5 parent: 2 type: Transform - - uid: 3528 + - uid: 10943 components: - rot: 1.5707963267948966 rad pos: 31.5,2.5 parent: 2 type: Transform - - uid: 3538 + - uid: 10944 components: - rot: 3.141592653589793 rad pos: 37.5,26.5 parent: 2 type: Transform - - uid: 3539 + - uid: 10945 components: - rot: 3.141592653589793 rad pos: 34.5,31.5 parent: 2 type: Transform - - uid: 3563 + - uid: 10946 components: - pos: 30.5,-17.5 parent: 2 type: Transform - - uid: 3582 + - uid: 10947 components: - rot: 3.141592653589793 rad pos: 37.5,25.5 parent: 2 type: Transform - - uid: 3583 + - uid: 10948 components: - rot: 3.141592653589793 rad pos: 35.5,30.5 parent: 2 type: Transform - - uid: 3752 + - uid: 10949 components: - pos: -23.5,-75.5 parent: 2 type: Transform - - uid: 3764 + - uid: 10950 components: - pos: -24.5,-75.5 parent: 2 type: Transform - - uid: 3765 + - uid: 10951 components: - pos: -25.5,-75.5 parent: 2 type: Transform - - uid: 3766 + - uid: 10952 components: - pos: -23.5,-77.5 parent: 2 type: Transform - - uid: 3767 + - uid: 10953 components: - pos: -24.5,-77.5 parent: 2 type: Transform - - uid: 3768 + - uid: 10954 components: - pos: -25.5,-77.5 parent: 2 type: Transform - - uid: 3923 + - uid: 10955 components: - rot: 3.141592653589793 rad pos: 35.5,31.5 parent: 2 type: Transform - - uid: 3926 + - uid: 10956 components: - rot: -1.5707963267948966 rad pos: 28.5,-7.5 parent: 2 type: Transform - - uid: 4168 + - uid: 10957 components: - rot: 3.141592653589793 rad pos: -33.5,48.5 parent: 2 type: Transform - - uid: 4174 + - uid: 10958 components: - pos: 23.5,-14.5 parent: 2 type: Transform - - uid: 4183 + - uid: 10959 components: - pos: 23.5,-13.5 parent: 2 type: Transform - - uid: 4236 + - uid: 10960 components: - pos: -39.5,18.5 parent: 2 type: Transform - - uid: 4237 + - uid: 10961 components: - pos: -39.5,19.5 parent: 2 type: Transform - - uid: 4286 + - uid: 10962 components: - pos: 1.5,17.5 parent: 2 type: Transform - - uid: 4288 + - uid: 10963 components: - pos: 0.5,17.5 parent: 2 type: Transform - - uid: 4290 + - uid: 10964 components: - pos: 0.5,21.5 parent: 2 type: Transform - - uid: 4305 + - uid: 10965 components: - pos: 1.5,21.5 parent: 2 type: Transform - - uid: 4307 + - uid: 10966 components: - pos: 21.5,9.5 parent: 2 type: Transform - - uid: 4314 + - uid: 10967 components: - pos: 18.5,2.5 parent: 2 type: Transform - - uid: 4315 + - uid: 10968 components: - pos: 21.5,2.5 parent: 2 type: Transform - - uid: 4316 + - uid: 10969 components: - pos: 22.5,2.5 parent: 2 type: Transform - - uid: 4327 + - uid: 10970 components: - pos: 24.5,15.5 parent: 2 type: Transform - - uid: 4332 + - uid: 10971 components: - pos: 24.5,14.5 parent: 2 type: Transform - - uid: 4388 + - uid: 10972 components: - pos: 19.5,17.5 parent: 2 type: Transform - - uid: 4392 + - uid: 10973 components: - pos: 18.5,17.5 parent: 2 type: Transform - - uid: 4426 + - uid: 10974 components: - pos: 11.5,18.5 parent: 2 type: Transform - - uid: 4427 + - uid: 10975 components: - pos: 11.5,19.5 parent: 2 type: Transform - - uid: 4451 + - uid: 10976 components: - pos: -40.5,4.5 parent: 2 type: Transform - - uid: 4460 + - uid: 10977 components: - pos: 16.5,17.5 parent: 2 type: Transform - - uid: 4471 + - uid: 10978 components: - pos: 15.5,17.5 parent: 2 type: Transform - - uid: 4491 + - uid: 10979 components: - pos: -39.5,4.5 parent: 2 type: Transform - - uid: 4493 + - uid: 10980 components: - pos: 20.5,12.5 parent: 2 type: Transform - - uid: 4506 + - uid: 10981 components: - rot: 1.5707963267948966 rad pos: 14.5,24.5 parent: 2 type: Transform - - uid: 4513 + - uid: 10982 components: - pos: 11.5,26.5 parent: 2 type: Transform - - uid: 4556 + - uid: 10983 components: - rot: 1.5707963267948966 rad pos: 14.5,23.5 parent: 2 type: Transform - - uid: 4593 + - uid: 10984 components: - rot: 3.141592653589793 rad pos: -36.5,-86.5 parent: 2 type: Transform - - uid: 4595 + - uid: 10985 components: - rot: 3.141592653589793 rad pos: -34.5,-86.5 parent: 2 type: Transform - - uid: 4596 + - uid: 10986 components: - rot: 3.141592653589793 rad pos: -33.5,-86.5 parent: 2 type: Transform - - uid: 4597 + - uid: 10987 components: - rot: 3.141592653589793 rad pos: -32.5,-86.5 parent: 2 type: Transform - - uid: 4599 + - uid: 10988 components: - rot: 3.141592653589793 rad pos: -30.5,-86.5 parent: 2 type: Transform - - uid: 4600 + - uid: 10989 components: - rot: 3.141592653589793 rad pos: -29.5,-86.5 parent: 2 type: Transform - - uid: 4602 + - uid: 10990 components: - rot: 3.141592653589793 rad pos: -27.5,-86.5 parent: 2 type: Transform - - uid: 4603 + - uid: 10991 components: - rot: 3.141592653589793 rad pos: -26.5,-86.5 parent: 2 type: Transform - - uid: 4606 + - uid: 10992 components: - rot: 3.141592653589793 rad pos: -23.5,-86.5 parent: 2 type: Transform - - uid: 4608 + - uid: 10993 components: - rot: 3.141592653589793 rad pos: -23.5,-88.5 parent: 2 type: Transform - - uid: 4610 + - uid: 10994 components: - rot: 3.141592653589793 rad pos: -22.5,-89.5 parent: 2 type: Transform - - uid: 4612 + - uid: 10995 components: - rot: 3.141592653589793 rad pos: -20.5,-89.5 parent: 2 type: Transform - - uid: 4614 + - uid: 10996 components: - rot: 3.141592653589793 rad pos: -18.5,-89.5 parent: 2 type: Transform - - uid: 4615 + - uid: 10997 components: - rot: 3.141592653589793 rad pos: -17.5,-89.5 parent: 2 type: Transform - - uid: 4616 + - uid: 10998 components: - rot: 3.141592653589793 rad pos: -16.5,-89.5 parent: 2 type: Transform - - uid: 4618 + - uid: 10999 components: - rot: 3.141592653589793 rad pos: -14.5,-89.5 parent: 2 type: Transform - - uid: 4619 + - uid: 11000 components: - rot: 3.141592653589793 rad pos: -13.5,-89.5 parent: 2 type: Transform - - uid: 4620 + - uid: 11001 components: - rot: 3.141592653589793 rad pos: -12.5,-89.5 parent: 2 type: Transform - - uid: 4621 + - uid: 11002 components: - rot: 3.141592653589793 rad pos: -11.5,-89.5 parent: 2 type: Transform - - uid: 4625 + - uid: 11003 components: - rot: 3.141592653589793 rad pos: -8.5,-88.5 parent: 2 type: Transform - - uid: 4626 + - uid: 11004 components: - pos: -44.5,-31.5 parent: 2 type: Transform - - uid: 4627 + - uid: 11005 components: - rot: 3.141592653589793 rad pos: -8.5,-87.5 parent: 2 type: Transform - - uid: 4628 + - uid: 11006 components: - rot: 3.141592653589793 rad pos: -6.5,-87.5 parent: 2 type: Transform - - uid: 4630 + - uid: 11007 components: - rot: 3.141592653589793 rad pos: -4.5,-87.5 parent: 2 type: Transform - - uid: 4631 + - uid: 11008 components: - rot: 3.141592653589793 rad pos: -3.5,-87.5 parent: 2 type: Transform - - uid: 4635 + - uid: 11009 components: - rot: 3.141592653589793 rad pos: -0.5,-86.5 parent: 2 type: Transform - - uid: 4636 + - uid: 11010 components: - rot: 3.141592653589793 rad pos: 0.5,-86.5 parent: 2 type: Transform - - uid: 4637 + - uid: 11011 components: - rot: 3.141592653589793 rad pos: -7.5,-87.5 parent: 2 type: Transform - - uid: 4638 + - uid: 11012 components: - rot: 3.141592653589793 rad pos: 2.5,-86.5 parent: 2 type: Transform - - uid: 4639 + - uid: 11013 components: - rot: 3.141592653589793 rad pos: 3.5,-86.5 parent: 2 type: Transform - - uid: 4640 + - uid: 11014 components: - rot: 3.141592653589793 rad pos: 3.5,-85.5 parent: 2 type: Transform - - uid: 4644 + - uid: 11015 components: - rot: 3.141592653589793 rad pos: 3.5,-81.5 parent: 2 type: Transform - - uid: 4645 + - uid: 11016 components: - rot: 3.141592653589793 rad pos: 3.5,-80.5 parent: 2 type: Transform - - uid: 4646 + - uid: 11017 components: - rot: 3.141592653589793 rad pos: 4.5,-80.5 parent: 2 type: Transform - - uid: 4648 + - uid: 11018 components: - rot: 3.141592653589793 rad pos: 5.5,-79.5 parent: 2 type: Transform - - uid: 4649 + - uid: 11019 components: - rot: 3.141592653589793 rad pos: 5.5,-78.5 parent: 2 type: Transform - - uid: 4652 + - uid: 11020 components: - rot: 3.141592653589793 rad pos: 5.5,-75.5 parent: 2 type: Transform - - uid: 4653 + - uid: 11021 components: - rot: 3.141592653589793 rad pos: 5.5,-74.5 parent: 2 type: Transform - - uid: 4654 + - uid: 11022 components: - rot: 3.141592653589793 rad pos: 5.5,-73.5 parent: 2 type: Transform - - uid: 4656 + - uid: 11023 components: - rot: 3.141592653589793 rad pos: 4.5,-72.5 parent: 2 type: Transform - - uid: 4657 + - uid: 11024 components: - rot: 3.141592653589793 rad pos: 3.5,-70.5 parent: 2 type: Transform - - uid: 4658 + - uid: 11025 components: - rot: 3.141592653589793 rad pos: 3.5,-71.5 parent: 2 type: Transform - - uid: 4659 + - uid: 11026 components: - rot: 3.141592653589793 rad pos: 3.5,-69.5 parent: 2 type: Transform - - uid: 4661 + - uid: 11027 components: - rot: 3.141592653589793 rad pos: 3.5,-67.5 parent: 2 type: Transform - - uid: 4663 + - uid: 11028 components: - rot: 3.141592653589793 rad pos: 2.5,-66.5 parent: 2 type: Transform - - uid: 4665 + - uid: 11029 components: - rot: 3.141592653589793 rad pos: 0.5,-66.5 parent: 2 type: Transform - - uid: 4668 + - uid: 11030 components: - rot: 3.141592653589793 rad pos: -1.5,-65.5 parent: 2 type: Transform - - uid: 4669 + - uid: 11031 components: - rot: 3.141592653589793 rad pos: -2.5,-65.5 parent: 2 type: Transform - - uid: 4670 + - uid: 11032 components: - rot: 3.141592653589793 rad pos: -3.5,-65.5 parent: 2 type: Transform - - uid: 4674 + - uid: 11033 components: - rot: 3.141592653589793 rad pos: -6.5,-64.5 parent: 2 type: Transform - - uid: 4676 + - uid: 11034 components: - rot: 3.141592653589793 rad pos: -8.5,-64.5 parent: 2 type: Transform - - uid: 4677 + - uid: 11035 components: - rot: 3.141592653589793 rad pos: -9.5,-64.5 parent: 2 type: Transform - - uid: 4678 + - uid: 11036 components: - rot: 3.141592653589793 rad pos: -10.5,-64.5 parent: 2 type: Transform - - uid: 4680 + - uid: 11037 components: - rot: 3.141592653589793 rad pos: -12.5,-64.5 parent: 2 type: Transform - - uid: 4681 + - uid: 11038 components: - rot: 3.141592653589793 rad pos: -13.5,-64.5 parent: 2 type: Transform - - uid: 4682 + - uid: 11039 components: - rot: 3.141592653589793 rad pos: -14.5,-64.5 parent: 2 type: Transform - - uid: 4684 + - uid: 11040 components: - rot: 3.141592653589793 rad pos: -19.5,-64.5 parent: 2 type: Transform - - uid: 4685 + - uid: 11041 components: - rot: 3.141592653589793 rad pos: -18.5,-64.5 parent: 2 type: Transform - - uid: 4686 + - uid: 11042 components: - rot: 3.141592653589793 rad pos: -20.5,-64.5 parent: 2 type: Transform - - uid: 4687 + - uid: 11043 components: - rot: 3.141592653589793 rad pos: -20.5,-64.5 parent: 2 type: Transform - - uid: 4689 + - uid: 11044 components: - rot: 3.141592653589793 rad pos: -21.5,-64.5 parent: 2 type: Transform - - uid: 4690 + - uid: 11045 components: - rot: 3.141592653589793 rad pos: -22.5,-64.5 parent: 2 type: Transform - - uid: 4692 + - uid: 11046 components: - rot: 3.141592653589793 rad pos: -23.5,-65.5 parent: 2 type: Transform - - uid: 4693 + - uid: 11047 components: - rot: 3.141592653589793 rad pos: -24.5,-65.5 parent: 2 type: Transform - - uid: 4695 + - uid: 11048 components: - rot: 3.141592653589793 rad pos: -26.5,-65.5 parent: 2 type: Transform - - uid: 4696 + - uid: 11049 components: - rot: 3.141592653589793 rad pos: -26.5,-66.5 parent: 2 type: Transform - - uid: 4697 + - uid: 11050 components: - rot: 3.141592653589793 rad pos: -27.5,-66.5 parent: 2 type: Transform - - uid: 4698 + - uid: 11051 components: - rot: 3.141592653589793 rad pos: -28.5,-66.5 parent: 2 type: Transform - - uid: 4699 + - uid: 11052 components: - rot: 3.141592653589793 rad pos: -29.5,-66.5 parent: 2 type: Transform - - uid: 4700 + - uid: 11053 components: - rot: 3.141592653589793 rad pos: -30.5,-66.5 parent: 2 type: Transform - - uid: 4701 + - uid: 11054 components: - rot: 3.141592653589793 rad pos: -31.5,-66.5 parent: 2 type: Transform - - uid: 4702 + - uid: 11055 components: - rot: 3.141592653589793 rad pos: -32.5,-66.5 parent: 2 type: Transform - - uid: 4704 + - uid: 11056 components: - rot: 3.141592653589793 rad pos: -33.5,-67.5 parent: 2 type: Transform - - uid: 4705 + - uid: 11057 components: - rot: 3.141592653589793 rad pos: -34.5,-67.5 parent: 2 type: Transform - - uid: 4706 + - uid: 11058 components: - rot: 3.141592653589793 rad pos: -35.5,-67.5 parent: 2 type: Transform - - uid: 4707 + - uid: 11059 components: - rot: 3.141592653589793 rad pos: -35.5,-66.5 parent: 2 type: Transform - - uid: 4708 + - uid: 11060 components: - rot: 3.141592653589793 rad pos: -36.5,-66.5 parent: 2 type: Transform - - uid: 4710 + - uid: 11061 components: - rot: 3.141592653589793 rad pos: -37.5,-67.5 parent: 2 type: Transform - - uid: 4711 + - uid: 11062 components: - rot: 3.141592653589793 rad pos: -37.5,-68.5 parent: 2 type: Transform - - uid: 4712 + - uid: 11063 components: - rot: 3.141592653589793 rad pos: -37.5,-69.5 parent: 2 type: Transform - - uid: 4713 + - uid: 11064 components: - rot: 3.141592653589793 rad pos: -37.5,-70.5 parent: 2 type: Transform - - uid: 4714 + - uid: 11065 components: - rot: 3.141592653589793 rad pos: -37.5,-71.5 parent: 2 type: Transform - - uid: 4716 + - uid: 11066 components: - rot: 3.141592653589793 rad pos: -38.5,-72.5 parent: 2 type: Transform - - uid: 4720 + - uid: 11067 components: - rot: 3.141592653589793 rad pos: -39.5,-75.5 parent: 2 type: Transform - - uid: 4721 + - uid: 11068 components: - rot: 3.141592653589793 rad pos: -39.5,-76.5 parent: 2 type: Transform - - uid: 4722 + - uid: 11069 components: - rot: 3.141592653589793 rad pos: -39.5,-77.5 parent: 2 type: Transform - - uid: 4724 + - uid: 11070 components: - rot: 3.141592653589793 rad pos: -39.5,-79.5 parent: 2 type: Transform - - uid: 4728 + - uid: 11071 components: - rot: 3.141592653589793 rad pos: -37.5,-81.5 parent: 2 type: Transform - - uid: 4730 + - uid: 11072 components: - rot: 3.141592653589793 rad pos: -37.5,-83.5 parent: 2 type: Transform - - uid: 4732 + - uid: 11073 components: - rot: 3.141592653589793 rad pos: -37.5,-85.5 parent: 2 type: Transform - - uid: 4735 + - uid: 11074 components: - pos: -45.5,-27.5 parent: 2 type: Transform - - uid: 4737 + - uid: 11075 components: - pos: -44.5,-29.5 parent: 2 type: Transform - - uid: 4742 + - uid: 11076 components: - pos: -44.5,-32.5 parent: 2 type: Transform - - uid: 4754 + - uid: 11077 components: - pos: 4.5,19.5 parent: 2 type: Transform - - uid: 4756 + - uid: 11078 components: - pos: 4.5,20.5 parent: 2 type: Transform - - uid: 4779 + - uid: 11079 components: - rot: 3.141592653589793 rad pos: 28.5,34.5 parent: 2 type: Transform - - uid: 4780 + - uid: 11080 components: - rot: 1.5707963267948966 rad pos: 27.5,-3.5 parent: 2 type: Transform - - uid: 4781 + - uid: 11081 components: - rot: 1.5707963267948966 rad pos: 29.5,-1.5 parent: 2 type: Transform - - uid: 4782 + - uid: 11082 components: - rot: 1.5707963267948966 rad pos: 30.5,-1.5 parent: 2 type: Transform - - uid: 4783 + - uid: 11083 components: - rot: 3.141592653589793 rad pos: 26.5,34.5 parent: 2 type: Transform - - uid: 4784 + - uid: 11084 components: - rot: 3.141592653589793 rad pos: 29.5,34.5 parent: 2 type: Transform - - uid: 4785 + - uid: 11085 components: - rot: 1.5707963267948966 rad pos: 33.5,-1.5 parent: 2 type: Transform - - uid: 4786 + - uid: 11086 components: - rot: 1.5707963267948966 rad pos: 34.5,-1.5 parent: 2 type: Transform - - uid: 4787 + - uid: 11087 components: - rot: 1.5707963267948966 rad pos: 36.5,-3.5 parent: 2 type: Transform - - uid: 4788 + - uid: 11088 components: - rot: 1.5707963267948966 rad pos: 36.5,-4.5 parent: 2 type: Transform - - uid: 4789 + - uid: 11089 components: - rot: 1.5707963267948966 rad pos: 41.5,-5.5 parent: 2 type: Transform - - uid: 4790 + - uid: 11090 components: - rot: 1.5707963267948966 rad pos: 41.5,-6.5 parent: 2 type: Transform - - uid: 4791 + - uid: 11091 components: - rot: 1.5707963267948966 rad pos: 41.5,-7.5 parent: 2 type: Transform - - uid: 4792 + - uid: 11092 components: - rot: 1.5707963267948966 rad pos: 41.5,-2.5 parent: 2 type: Transform - - uid: 4793 + - uid: 11093 components: - rot: 1.5707963267948966 rad pos: 42.5,-2.5 parent: 2 type: Transform - - uid: 4794 + - uid: 11094 components: - rot: 1.5707963267948966 rad pos: 43.5,-2.5 parent: 2 type: Transform - - uid: 4795 + - uid: 11095 components: - rot: 1.5707963267948966 rad pos: 43.5,-10.5 parent: 2 type: Transform - - uid: 4796 + - uid: 11096 components: - rot: 1.5707963267948966 rad pos: 42.5,-10.5 parent: 2 type: Transform - - uid: 4797 + - uid: 11097 components: - rot: 1.5707963267948966 rad pos: 41.5,-10.5 parent: 2 type: Transform - - uid: 4798 + - uid: 11098 components: - rot: 1.5707963267948966 rad pos: 41.5,-13.5 parent: 2 type: Transform - - uid: 4799 + - uid: 11099 components: - rot: 1.5707963267948966 rad pos: 41.5,-14.5 parent: 2 type: Transform - - uid: 4800 + - uid: 11100 components: - rot: 1.5707963267948966 rad pos: 41.5,-15.5 parent: 2 type: Transform - - uid: 4801 + - uid: 11101 components: - rot: 1.5707963267948966 rad pos: 41.5,-18.5 parent: 2 type: Transform - - uid: 4802 + - uid: 11102 components: - rot: 1.5707963267948966 rad pos: 42.5,-18.5 parent: 2 type: Transform - - uid: 4803 + - uid: 11103 components: - rot: 1.5707963267948966 rad pos: 43.5,-18.5 parent: 2 type: Transform - - uid: 4804 + - uid: 11104 components: - rot: 1.5707963267948966 rad pos: 41.5,-21.5 parent: 2 type: Transform - - uid: 4805 + - uid: 11105 components: - rot: 1.5707963267948966 rad pos: 41.5,-22.5 parent: 2 type: Transform - - uid: 4822 + - uid: 11106 components: - rot: 3.141592653589793 rad pos: 27.5,-20.5 parent: 2 type: Transform - - uid: 4823 + - uid: 11107 components: - rot: 3.141592653589793 rad pos: 27.5,-19.5 parent: 2 type: Transform - - uid: 4824 + - uid: 11108 components: - pos: 42.5,-23.5 parent: 2 type: Transform - - uid: 4849 + - uid: 11109 components: - pos: 43.5,-21.5 parent: 2 type: Transform - - uid: 4850 + - uid: 11110 components: - pos: 43.5,-13.5 parent: 2 type: Transform - - uid: 4851 + - uid: 11111 components: - pos: 43.5,-14.5 parent: 2 type: Transform - - uid: 4852 + - uid: 11112 components: - pos: 43.5,-6.5 parent: 2 type: Transform - - uid: 4853 + - uid: 11113 components: - pos: 43.5,-7.5 parent: 2 type: Transform - - uid: 4858 + - uid: 11114 components: - pos: 28.5,-17.5 parent: 2 type: Transform - - uid: 4859 + - uid: 11115 components: - rot: 3.141592653589793 rad pos: 30.5,33.5 parent: 2 type: Transform - - uid: 4860 + - uid: 11116 components: - pos: 20.5,33.5 parent: 2 type: Transform - - uid: 4861 + - uid: 11117 components: - pos: -41.5,4.5 parent: 2 type: Transform - - uid: 4862 + - uid: 11118 components: - pos: -42.5,4.5 parent: 2 type: Transform - - uid: 4909 + - uid: 11119 components: - rot: 3.141592653589793 rad pos: 30.5,32.5 parent: 2 type: Transform - - uid: 4958 + - uid: 11120 components: - pos: 34.5,23.5 parent: 2 type: Transform - - uid: 4971 + - uid: 11121 components: - pos: -43.5,4.5 parent: 2 type: Transform - - uid: 4977 + - uid: 11122 components: - pos: 34.5,22.5 parent: 2 type: Transform - - uid: 5057 + - uid: 11123 components: - pos: 46.5,9.5 parent: 2 type: Transform - - uid: 5058 + - uid: 11124 components: - pos: 46.5,10.5 parent: 2 type: Transform - - uid: 5059 + - uid: 11125 components: - pos: 47.5,10.5 parent: 2 type: Transform - - uid: 5060 + - uid: 11126 components: - pos: 48.5,10.5 parent: 2 type: Transform - - uid: 5061 + - uid: 11127 components: - pos: 48.5,12.5 parent: 2 type: Transform - - uid: 5062 + - uid: 11128 components: - pos: 47.5,12.5 parent: 2 type: Transform - - uid: 5063 + - uid: 11129 components: - pos: 46.5,12.5 parent: 2 type: Transform - - uid: 5064 + - uid: 11130 components: - pos: 46.5,13.5 parent: 2 type: Transform - - uid: 5075 + - uid: 11131 components: - pos: 15.5,14.5 parent: 2 type: Transform - - uid: 5077 + - uid: 11132 components: - rot: 3.141592653589793 rad pos: 36.5,27.5 parent: 2 type: Transform - - uid: 5079 + - uid: 11133 components: - pos: 27.5,-5.5 parent: 2 type: Transform - - uid: 5085 + - uid: 11134 components: - pos: 56.5,2.5 parent: 2 type: Transform - - uid: 5088 + - uid: 11135 components: - rot: 3.141592653589793 rad pos: 8.5,37.5 parent: 2 type: Transform - - uid: 5089 + - uid: 11136 components: - pos: 57.5,2.5 parent: 2 type: Transform - - uid: 5091 + - uid: 11137 components: - pos: 58.5,2.5 parent: 2 type: Transform - - uid: 5092 + - uid: 11138 components: - pos: 59.5,2.5 parent: 2 type: Transform - - uid: 5093 + - uid: 11139 components: - pos: 62.5,3.5 parent: 2 type: Transform - - uid: 5094 + - uid: 11140 components: - pos: 62.5,4.5 parent: 2 type: Transform - - uid: 5095 + - uid: 11141 components: - pos: 62.5,5.5 parent: 2 type: Transform - - uid: 5096 + - uid: 11142 components: - pos: 62.5,7.5 parent: 2 type: Transform - - uid: 5097 + - uid: 11143 components: - pos: 62.5,8.5 parent: 2 type: Transform - - uid: 5098 + - uid: 11144 components: - pos: 62.5,9.5 parent: 2 type: Transform - - uid: 5099 + - uid: 11145 components: - pos: 64.5,9.5 parent: 2 type: Transform - - uid: 5100 + - uid: 11146 components: - pos: 65.5,10.5 parent: 2 type: Transform - - uid: 5102 + - uid: 11147 components: - pos: 65.5,12.5 parent: 2 type: Transform - - uid: 5103 + - uid: 11148 components: - pos: 64.5,13.5 parent: 2 type: Transform - - uid: 5104 + - uid: 11149 components: - pos: 63.5,13.5 parent: 2 type: Transform - - uid: 5105 + - uid: 11150 components: - pos: 62.5,13.5 parent: 2 type: Transform - - uid: 5106 + - uid: 11151 components: - pos: 62.5,15.5 parent: 2 type: Transform - - uid: 5107 + - uid: 11152 components: - pos: 62.5,16.5 parent: 2 type: Transform - - uid: 5108 + - uid: 11153 components: - pos: 62.5,17.5 parent: 2 type: Transform - - uid: 5109 + - uid: 11154 components: - pos: 62.5,18.5 parent: 2 type: Transform - - uid: 5110 + - uid: 11155 components: - pos: 62.5,19.5 parent: 2 type: Transform - - uid: 5111 + - uid: 11156 components: - pos: 62.5,20.5 parent: 2 type: Transform - - uid: 5112 + - uid: 11157 components: - pos: 61.5,20.5 parent: 2 type: Transform - - uid: 5113 + - uid: 11158 components: - pos: 60.5,20.5 parent: 2 type: Transform - - uid: 5114 + - uid: 11159 components: - pos: 59.5,20.5 parent: 2 type: Transform - - uid: 5115 + - uid: 11160 components: - pos: 58.5,20.5 parent: 2 type: Transform - - uid: 5116 + - uid: 11161 components: - pos: 57.5,20.5 parent: 2 type: Transform - - uid: 5117 + - uid: 11162 components: - pos: 56.5,20.5 parent: 2 type: Transform - - uid: 5118 + - uid: 11163 components: - pos: 55.5,20.5 parent: 2 type: Transform - - uid: 5119 + - uid: 11164 components: - pos: 16.5,-0.5 parent: 2 type: Transform - - uid: 5120 + - uid: 11165 components: - pos: 51.5,20.5 parent: 2 type: Transform - - uid: 5121 + - uid: 11166 components: - pos: 50.5,20.5 parent: 2 type: Transform - - uid: 5122 + - uid: 11167 components: - pos: 16.5,1.5 parent: 2 type: Transform - - uid: 5123 + - uid: 11168 components: - pos: 49.5,20.5 parent: 2 type: Transform - - uid: 5124 + - uid: 11169 components: - pos: 48.5,20.5 parent: 2 type: Transform - - uid: 5125 + - uid: 11170 components: - pos: 47.5,20.5 parent: 2 type: Transform - - uid: 5127 + - uid: 11171 components: - pos: 47.5,19.5 parent: 2 type: Transform - - uid: 5128 + - uid: 11172 components: - pos: 47.5,18.5 parent: 2 type: Transform - - uid: 5130 + - uid: 11173 components: - pos: 47.5,17.5 parent: 2 type: Transform - - uid: 5131 + - uid: 11174 components: - pos: 47.5,16.5 parent: 2 type: Transform - - uid: 5143 + - uid: 11175 components: - pos: -42.5,2.5 parent: 2 type: Transform - - uid: 5167 + - uid: 11176 components: - pos: -23.5,37.5 parent: 2 type: Transform - - uid: 5178 + - uid: 11177 components: - pos: -2.5,4.5 parent: 2 type: Transform - - uid: 5230 + - uid: 11178 components: - pos: -48.5,24.5 parent: 2 type: Transform - - uid: 5302 + - uid: 11179 components: - pos: 36.5,1.5 parent: 2 type: Transform - - uid: 5303 + - uid: 11180 components: - pos: 36.5,-0.5 parent: 2 type: Transform - - uid: 5327 + - uid: 11181 components: - rot: 3.141592653589793 rad pos: 13.5,34.5 parent: 2 type: Transform - - uid: 5330 + - uid: 11182 components: - rot: 3.141592653589793 rad pos: 38.5,25.5 parent: 2 type: Transform - - uid: 5331 + - uid: 11183 components: - rot: 3.141592653589793 rad pos: 38.5,24.5 parent: 2 type: Transform - - uid: 5332 + - uid: 11184 components: - rot: 3.141592653589793 rad pos: 38.5,23.5 parent: 2 type: Transform - - uid: 5333 + - uid: 11185 components: - rot: 3.141592653589793 rad pos: 38.5,22.5 parent: 2 type: Transform - - uid: 5342 + - uid: 11186 components: - rot: -1.5707963267948966 rad pos: 19.5,32.5 parent: 2 type: Transform - - uid: 5343 + - uid: 11187 components: - rot: -1.5707963267948966 rad pos: 19.5,33.5 parent: 2 type: Transform - - uid: 5344 + - uid: 11188 components: - rot: -1.5707963267948966 rad pos: 21.5,33.5 parent: 2 type: Transform - - uid: 5345 + - uid: 11189 components: - rot: -1.5707963267948966 rad pos: 22.5,33.5 parent: 2 type: Transform - - uid: 5346 + - uid: 11190 components: - rot: -1.5707963267948966 rad pos: 23.5,33.5 parent: 2 type: Transform - - uid: 5347 + - uid: 11191 components: - rot: -1.5707963267948966 rad pos: 23.5,32.5 parent: 2 type: Transform - - uid: 5363 + - uid: 11192 components: - pos: -52.5,7.5 parent: 2 type: Transform - - uid: 5378 + - uid: 11193 components: - pos: -65.5,31.5 parent: 2 type: Transform - - uid: 5383 + - uid: 11194 components: - rot: 3.141592653589793 rad pos: -37.5,-25.5 parent: 2 type: Transform - - uid: 5415 + - uid: 11195 components: - pos: -4.5,28.5 parent: 2 type: Transform - - uid: 5424 + - uid: 11196 components: - pos: -4.5,32.5 parent: 2 type: Transform - - uid: 5457 + - uid: 11197 components: - pos: -41.5,2.5 parent: 2 type: Transform - - uid: 5492 + - uid: 11198 components: - pos: 5.5,33.5 parent: 2 type: Transform - - uid: 5496 + - uid: 11199 components: - pos: -49.5,-18.5 parent: 2 type: Transform - - uid: 5528 + - uid: 11200 components: - pos: -53.5,2.5 parent: 2 type: Transform - - uid: 5534 + - uid: 11201 components: - pos: -14.5,-40.5 parent: 2 type: Transform - - uid: 5535 + - uid: 11202 components: - pos: -40.5,2.5 parent: 2 type: Transform - - uid: 5544 + - uid: 11203 components: - pos: -54.5,2.5 parent: 2 type: Transform - - uid: 5573 + - uid: 11204 components: - pos: 2.5,42.5 parent: 2 type: Transform - - uid: 5624 + - uid: 11205 components: - rot: 1.5707963267948966 rad pos: -14.5,43.5 parent: 2 type: Transform - - uid: 5625 + - uid: 11206 components: - rot: 1.5707963267948966 rad pos: -14.5,44.5 parent: 2 type: Transform - - uid: 5626 + - uid: 11207 components: - rot: 1.5707963267948966 rad pos: -13.5,44.5 parent: 2 type: Transform - - uid: 5627 + - uid: 11208 components: - rot: 1.5707963267948966 rad pos: -12.5,44.5 parent: 2 type: Transform - - uid: 5629 + - uid: 11209 components: - rot: 1.5707963267948966 rad pos: -12.5,45.5 parent: 2 type: Transform - - uid: 5630 + - uid: 11210 components: - rot: 1.5707963267948966 rad pos: -11.5,45.5 parent: 2 type: Transform - - uid: 5631 + - uid: 11211 components: - rot: 1.5707963267948966 rad pos: -10.5,45.5 parent: 2 type: Transform - - uid: 5632 + - uid: 11212 components: - rot: 1.5707963267948966 rad pos: -9.5,45.5 parent: 2 type: Transform - - uid: 5633 + - uid: 11213 components: - rot: 1.5707963267948966 rad pos: -8.5,45.5 parent: 2 type: Transform - - uid: 5634 + - uid: 11214 components: - rot: 1.5707963267948966 rad pos: -7.5,45.5 parent: 2 type: Transform - - uid: 5635 + - uid: 11215 components: - rot: 1.5707963267948966 rad pos: -7.5,44.5 parent: 2 type: Transform - - uid: 5636 + - uid: 11216 components: - rot: 1.5707963267948966 rad pos: -6.5,44.5 parent: 2 type: Transform - - uid: 5637 + - uid: 11217 components: - rot: 1.5707963267948966 rad pos: -5.5,44.5 parent: 2 type: Transform - - uid: 5638 + - uid: 11218 components: - rot: 1.5707963267948966 rad pos: -5.5,43.5 parent: 2 type: Transform - - uid: 5641 + - uid: 11219 components: - pos: -28.5,43.5 parent: 2 type: Transform - - uid: 5642 + - uid: 11220 components: - pos: -26.5,45.5 parent: 2 type: Transform - - uid: 5649 + - uid: 11221 components: - pos: -18.5,43.5 parent: 2 type: Transform - - uid: 5650 + - uid: 11222 components: - pos: -19.5,43.5 parent: 2 type: Transform - - uid: 5651 + - uid: 11223 components: - pos: -19.5,44.5 parent: 2 type: Transform - - uid: 5652 + - uid: 11224 components: - pos: -20.5,44.5 parent: 2 type: Transform - - uid: 5657 + - uid: 11225 components: - pos: -27.5,44.5 parent: 2 type: Transform - - uid: 5658 + - uid: 11226 components: - pos: -27.5,43.5 parent: 2 type: Transform - - uid: 5671 + - uid: 11227 components: - pos: -26.5,44.5 parent: 2 type: Transform - - uid: 5672 + - uid: 11228 components: - pos: -21.5,45.5 parent: 2 type: Transform - - uid: 5673 + - uid: 11229 components: - pos: -20.5,45.5 parent: 2 type: Transform - - uid: 5674 + - uid: 11230 components: - pos: -22.5,45.5 parent: 2 type: Transform - - uid: 5675 + - uid: 11231 components: - pos: -24.5,45.5 parent: 2 type: Transform - - uid: 5676 + - uid: 11232 components: - pos: -23.5,45.5 parent: 2 type: Transform - - uid: 5677 + - uid: 11233 components: - pos: -25.5,45.5 parent: 2 type: Transform - - uid: 5774 + - uid: 11234 components: - pos: -33.5,27.5 parent: 2 type: Transform - - uid: 5786 + - uid: 11235 components: - pos: -45.5,37.5 parent: 2 type: Transform - - uid: 5819 + - uid: 11236 components: - pos: -49.5,24.5 parent: 2 type: Transform - - uid: 5835 + - uid: 11237 components: - pos: -65.5,36.5 parent: 2 type: Transform - - uid: 5867 + - uid: 11238 components: - rot: -1.5707963267948966 rad pos: 3.5,-65.5 parent: 2 type: Transform - - uid: 5872 + - uid: 11239 components: - pos: -41.5,37.5 parent: 2 type: Transform - - uid: 5873 + - uid: 11240 components: - pos: -45.5,36.5 parent: 2 type: Transform - - uid: 5884 + - uid: 11241 components: - pos: -51.5,27.5 parent: 2 type: Transform - - uid: 5886 + - uid: 11242 components: - pos: -51.5,26.5 parent: 2 type: Transform - - uid: 5889 + - uid: 11243 components: - pos: -40.5,30.5 parent: 2 type: Transform - - uid: 5912 + - uid: 11244 components: - pos: -46.5,38.5 parent: 2 type: Transform - - uid: 5915 + - uid: 11245 components: - pos: 42.5,6.5 parent: 2 type: Transform - - uid: 5931 + - uid: 11246 components: - pos: -41.5,36.5 parent: 2 type: Transform - - uid: 5945 + - uid: 11247 components: - pos: 7.5,34.5 parent: 2 type: Transform - - uid: 5955 + - uid: 11248 components: - pos: 6.5,38.5 parent: 2 type: Transform - - uid: 5957 + - uid: 11249 components: - pos: 6.5,37.5 parent: 2 type: Transform - - uid: 5958 + - uid: 11250 components: - pos: 5.5,40.5 parent: 2 type: Transform - - uid: 5959 + - uid: 11251 components: - pos: 3.5,44.5 parent: 2 type: Transform - - uid: 5960 + - uid: 11252 components: - pos: 3.5,43.5 parent: 2 type: Transform - - uid: 5961 + - uid: 11253 components: - pos: 2.5,45.5 parent: 2 type: Transform - - uid: 5962 + - uid: 11254 components: - pos: 1.5,45.5 parent: 2 type: Transform - - uid: 5964 + - uid: 11255 components: - pos: -1.5,45.5 parent: 2 type: Transform - - uid: 5965 + - uid: 11256 components: - pos: -2.5,45.5 parent: 2 type: Transform - - uid: 5966 + - uid: 11257 components: - pos: -2.5,46.5 parent: 2 type: Transform - - uid: 5968 + - uid: 11258 components: - pos: -4.5,47.5 parent: 2 type: Transform - - uid: 5969 + - uid: 11259 components: - pos: -5.5,48.5 parent: 2 type: Transform - - uid: 5970 + - uid: 11260 components: - pos: -7.5,48.5 parent: 2 type: Transform - - uid: 5971 + - uid: 11261 components: - pos: -8.5,48.5 parent: 2 type: Transform - - uid: 5972 + - uid: 11262 components: - pos: -9.5,48.5 parent: 2 type: Transform - - uid: 5973 + - uid: 11263 components: - pos: -12.5,49.5 parent: 2 type: Transform - - uid: 5974 + - uid: 11264 components: - pos: -14.5,49.5 parent: 2 type: Transform - - uid: 5975 + - uid: 11265 components: - pos: -16.5,49.5 parent: 2 type: Transform - - uid: 5976 + - uid: 11266 components: - pos: -17.5,49.5 parent: 2 type: Transform - - uid: 5977 + - uid: 11267 components: - pos: -23.5,49.5 parent: 2 type: Transform - - uid: 5978 + - uid: 11268 components: - pos: -24.5,49.5 parent: 2 type: Transform - - uid: 5979 + - uid: 11269 components: - pos: -25.5,49.5 parent: 2 type: Transform - - uid: 5980 + - uid: 11270 components: - pos: -26.5,48.5 parent: 2 type: Transform - - uid: 5981 + - uid: 11271 components: - pos: -26.5,47.5 parent: 2 type: Transform - - uid: 5982 + - uid: 11272 components: - pos: -27.5,47.5 parent: 2 type: Transform - - uid: 5984 + - uid: 11273 components: - pos: -28.5,46.5 parent: 2 type: Transform - - uid: 5992 + - uid: 11274 components: - pos: -19.5,48.5 parent: 2 type: Transform - - uid: 5993 + - uid: 11275 components: - pos: -20.5,48.5 parent: 2 type: Transform - - uid: 5994 + - uid: 11276 components: - pos: -22.5,48.5 parent: 2 type: Transform - - uid: 5995 + - uid: 11277 components: - pos: -21.5,48.5 parent: 2 type: Transform - - uid: 5996 + - uid: 11278 components: - rot: -1.5707963267948966 rad pos: -13.5,49.5 parent: 2 type: Transform - - uid: 5997 + - uid: 11279 components: - rot: -1.5707963267948966 rad pos: -10.5,48.5 parent: 2 type: Transform - - uid: 6002 + - uid: 11280 components: - rot: -1.5707963267948966 rad pos: -15.5,49.5 parent: 2 type: Transform - - uid: 6003 + - uid: 11281 components: - pos: 4.5,41.5 parent: 2 type: Transform - - uid: 6004 + - uid: 11282 components: - pos: 4.5,42.5 parent: 2 type: Transform - - uid: 6005 + - uid: 11283 components: - pos: 7.5,36.5 parent: 2 type: Transform - - uid: 6017 + - uid: 11284 components: - rot: 1.5707963267948966 rad pos: -0.5,45.5 parent: 2 type: Transform - - uid: 6018 + - uid: 11285 components: - rot: 1.5707963267948966 rad pos: 0.5,45.5 parent: 2 type: Transform - - uid: 6031 + - uid: 11286 components: - rot: -1.5707963267948966 rad pos: 3.5,-60.5 parent: 2 type: Transform - - uid: 6033 + - uid: 11287 components: - rot: -1.5707963267948966 rad pos: 4.5,-59.5 parent: 2 type: Transform - - uid: 6034 + - uid: 11288 components: - rot: -1.5707963267948966 rad pos: 4.5,-58.5 parent: 2 type: Transform - - uid: 6035 + - uid: 11289 components: - rot: -1.5707963267948966 rad pos: 4.5,-57.5 parent: 2 type: Transform - - uid: 6036 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-56.5 - parent: 2 - type: Transform - - uid: 6037 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-55.5 - parent: 2 - type: Transform - - uid: 6038 - components: - - rot: -1.5707963267948966 rad - pos: 4.5,-53.5 - parent: 2 - type: Transform - - uid: 6039 + - uid: 11290 components: - rot: -1.5707963267948966 rad pos: 6.5,-54.5 parent: 2 type: Transform - - uid: 6040 + - uid: 11291 components: - rot: -1.5707963267948966 rad pos: 7.5,-54.5 parent: 2 type: Transform - - uid: 6041 + - uid: 11292 components: - rot: -1.5707963267948966 rad pos: 8.5,-54.5 parent: 2 type: Transform - - uid: 6048 + - uid: 11293 components: - pos: -36.5,-49.5 parent: 2 type: Transform - - uid: 6049 + - uid: 11294 components: - pos: -36.5,-50.5 parent: 2 type: Transform - - uid: 6050 + - uid: 11295 components: - pos: -35.5,-50.5 parent: 2 type: Transform - - uid: 6053 + - uid: 11296 components: - pos: -35.5,-54.5 parent: 2 type: Transform - - uid: 6054 + - uid: 11297 components: - pos: -34.5,-55.5 parent: 2 type: Transform - - uid: 6055 + - uid: 11298 components: - pos: -34.5,-56.5 parent: 2 type: Transform - - uid: 6056 + - uid: 11299 components: - pos: -34.5,-57.5 parent: 2 type: Transform - - uid: 6057 + - uid: 11300 components: - pos: -34.5,-58.5 parent: 2 type: Transform - - uid: 6058 + - uid: 11301 components: - pos: -34.5,-59.5 parent: 2 type: Transform - - uid: 6059 + - uid: 11302 components: - pos: -34.5,-60.5 parent: 2 type: Transform - - uid: 6062 + - uid: 11303 components: - pos: -35.5,-62.5 parent: 2 type: Transform - - uid: 6063 + - uid: 11304 components: - pos: -35.5,-63.5 parent: 2 type: Transform - - uid: 6064 + - uid: 11305 components: - pos: -35.5,-64.5 parent: 2 type: Transform - - uid: 6083 + - uid: 11306 components: - pos: -37.5,68.5 parent: 2 type: Transform - - uid: 6087 + - uid: 11307 components: - pos: -38.5,68.5 parent: 2 type: Transform - - uid: 6095 + - uid: 11308 components: - pos: -54.5,42.5 parent: 2 type: Transform - - uid: 6096 + - uid: 11309 components: - pos: -55.5,42.5 parent: 2 type: Transform - - uid: 6099 + - uid: 11310 components: - pos: -53.5,42.5 parent: 2 type: Transform - - uid: 6100 + - uid: 11311 components: - pos: -56.5,39.5 parent: 2 type: Transform - - uid: 6101 + - uid: 11312 components: - pos: -52.5,39.5 parent: 2 type: Transform - - uid: 6102 + - uid: 11313 components: - pos: -52.5,41.5 parent: 2 type: Transform - - uid: 6103 + - uid: 11314 components: - pos: -52.5,40.5 parent: 2 type: Transform - - uid: 6108 + - uid: 11315 components: - pos: -56.5,41.5 parent: 2 type: Transform - - uid: 6111 + - uid: 11316 components: - pos: -56.5,40.5 parent: 2 type: Transform - - uid: 6172 + - uid: 11317 components: - pos: -36.5,68.5 parent: 2 type: Transform - - uid: 6175 + - uid: 11318 components: - pos: -50.5,39.5 parent: 2 type: Transform - - uid: 6176 + - uid: 11319 components: - pos: -50.5,40.5 parent: 2 type: Transform - - uid: 6188 + - uid: 11320 components: - pos: -40.5,69.5 parent: 2 type: Transform - - uid: 6189 + - uid: 11321 components: - pos: -32.5,65.5 parent: 2 type: Transform - - uid: 6192 + - uid: 11322 components: - pos: -44.5,68.5 parent: 2 type: Transform - - uid: 6194 + - uid: 11323 components: - rot: -1.5707963267948966 rad pos: -62.5,6.5 parent: 2 type: Transform - - uid: 6196 + - uid: 11324 components: - pos: -32.5,59.5 parent: 2 type: Transform - - uid: 6197 + - uid: 11325 components: - pos: -35.5,68.5 parent: 2 type: Transform - - uid: 6201 + - uid: 11326 components: - pos: -58.5,32.5 parent: 2 type: Transform - - uid: 6202 + - uid: 11327 components: - pos: -60.5,37.5 parent: 2 type: Transform - - uid: 6210 + - uid: 11328 components: - pos: -52.5,63.5 parent: 2 type: Transform - - uid: 6213 + - uid: 11329 components: - pos: -60.5,31.5 parent: 2 type: Transform - - uid: 6214 + - uid: 11330 components: - pos: -49.5,54.5 parent: 2 type: Transform - - uid: 6215 + - uid: 11331 components: - pos: -52.5,67.5 parent: 2 type: Transform - - uid: 6217 + - uid: 11332 components: - pos: -32.5,57.5 parent: 2 type: Transform - - uid: 6220 + - uid: 11333 components: - pos: -52.5,66.5 parent: 2 type: Transform - - uid: 6225 + - uid: 11334 components: - pos: -32.5,67.5 parent: 2 type: Transform - - uid: 6240 + - uid: 11335 components: - pos: -35.5,54.5 parent: 2 type: Transform - - uid: 6241 + - uid: 11336 components: - pos: -52.5,55.5 parent: 2 type: Transform - - uid: 6242 + - uid: 11337 components: - pos: -32.5,56.5 parent: 2 type: Transform - - uid: 6262 + - uid: 11338 components: - pos: -52.5,56.5 parent: 2 type: Transform - - uid: 6267 + - uid: 11339 components: - pos: -52.5,58.5 parent: 2 type: Transform - - uid: 6278 + - uid: 11340 components: - pos: -60.5,36.5 parent: 2 type: Transform - - uid: 6279 + - uid: 11341 components: - pos: -61.5,36.5 parent: 2 type: Transform - - uid: 6280 + - uid: 11342 components: - pos: -62.5,36.5 parent: 2 type: Transform - - uid: 6281 + - uid: 11343 components: - pos: -58.5,33.5 parent: 2 type: Transform - - uid: 6289 + - uid: 11344 components: - pos: -60.5,32.5 parent: 2 type: Transform - - uid: 6291 + - uid: 11345 components: - pos: -61.5,32.5 parent: 2 type: Transform - - uid: 6292 + - uid: 11346 components: - pos: -62.5,32.5 parent: 2 type: Transform - - uid: 6303 + - uid: 11347 components: - pos: -58.5,35.5 parent: 2 type: Transform - - uid: 6304 + - uid: 11348 components: - pos: -58.5,36.5 parent: 2 type: Transform - - uid: 6305 + - uid: 11349 components: - pos: -58.5,37.5 parent: 2 type: Transform - - uid: 6325 + - uid: 11350 components: - pos: -32.5,58.5 parent: 2 type: Transform - - uid: 6327 + - uid: 11351 components: - pos: -44.5,69.5 parent: 2 type: Transform - - uid: 6344 + - uid: 11352 components: - pos: -58.5,31.5 parent: 2 type: Transform - - uid: 6352 + - uid: 11353 components: - pos: -32.5,58.5 parent: 2 type: Transform - - uid: 6355 + - uid: 11354 components: - pos: -36.5,54.5 parent: 2 type: Transform - - uid: 6359 + - uid: 11355 components: - pos: -52.5,57.5 parent: 2 type: Transform - - uid: 6389 + - uid: 11356 components: - pos: -50.5,54.5 parent: 2 type: Transform - - uid: 6395 + - uid: 11357 components: - pos: -41.5,70.5 parent: 2 type: Transform - - uid: 6405 + - uid: 11358 components: - pos: -38.5,54.5 parent: 2 type: Transform - - uid: 6411 + - uid: 11359 components: - pos: -34.5,54.5 parent: 2 type: Transform - - uid: 6414 + - uid: 11360 components: - pos: -32.5,64.5 parent: 2 type: Transform - - uid: 6420 + - uid: 11361 components: - pos: -47.5,68.5 parent: 2 type: Transform - - uid: 6423 + - uid: 11362 components: - pos: -32.5,66.5 parent: 2 type: Transform - - uid: 6424 + - uid: 11363 components: - pos: -52.5,59.5 parent: 2 type: Transform - - uid: 6432 + - uid: 11364 components: - pos: -52.5,64.5 parent: 2 type: Transform - - uid: 6433 + - uid: 11365 components: - pos: -52.5,65.5 parent: 2 type: Transform - - uid: 6434 + - uid: 11366 components: - pos: -51.5,68.5 parent: 2 type: Transform - - uid: 6436 + - uid: 11367 components: - pos: -45.5,68.5 parent: 2 type: Transform - - uid: 6439 + - uid: 11368 components: - pos: -51.5,35.5 parent: 2 type: Transform - - uid: 6449 + - uid: 11369 components: - pos: -51.5,34.5 parent: 2 type: Transform - - uid: 6454 + - uid: 11370 components: - pos: -50.5,68.5 parent: 2 type: Transform - - uid: 6662 + - uid: 11371 components: - rot: 1.5707963267948966 rad pos: -59.5,42.5 parent: 2 type: Transform - - uid: 6668 + - uid: 11372 components: - rot: 1.5707963267948966 rad pos: -59.5,43.5 parent: 2 type: Transform - - uid: 6692 + - uid: 11373 components: - pos: 3.5,39.5 parent: 2 type: Transform - - uid: 6712 + - uid: 11374 components: - pos: 18.5,34.5 parent: 2 type: Transform - - uid: 6713 + - uid: 11375 components: - pos: 15.5,34.5 parent: 2 type: Transform - - uid: 6747 + - uid: 11376 components: - pos: 16.5,14.5 parent: 2 type: Transform - - uid: 6792 + - uid: 11377 components: - pos: -47.5,8.5 parent: 2 type: Transform - - uid: 6793 + - uid: 11378 components: - pos: -41.5,8.5 parent: 2 type: Transform - - uid: 6794 + - uid: 11379 components: - pos: -43.5,16.5 parent: 2 type: Transform - - uid: 6795 + - uid: 11380 components: - pos: -54.5,12.5 parent: 2 type: Transform - - uid: 6796 + - uid: 11381 components: - pos: -51.5,12.5 parent: 2 type: Transform - - uid: 6797 + - uid: 11382 components: - pos: -52.5,15.5 parent: 2 type: Transform - - uid: 6798 + - uid: 11383 components: - pos: -52.5,16.5 parent: 2 type: Transform - - uid: 6799 + - uid: 11384 components: - pos: -52.5,17.5 parent: 2 type: Transform - - uid: 6800 + - uid: 11385 components: - pos: -51.5,20.5 parent: 2 type: Transform - - uid: 6801 + - uid: 11386 components: - pos: -54.5,20.5 parent: 2 type: Transform - - uid: 6807 + - uid: 11387 components: - pos: -11.5,-20.5 parent: 2 type: Transform - - uid: 6855 + - uid: 11388 components: - rot: 1.5707963267948966 rad pos: -41.5,24.5 parent: 2 type: Transform - - uid: 6883 + - uid: 11389 components: - pos: -52.5,-18.5 parent: 2 type: Transform - - uid: 6884 + - uid: 11390 components: - pos: -55.5,-18.5 parent: 2 type: Transform - - uid: 6885 + - uid: 11391 components: - pos: -58.5,-18.5 parent: 2 type: Transform - - uid: 6886 + - uid: 11392 components: - pos: -60.5,-11.5 parent: 2 type: Transform - - uid: 6887 + - uid: 11393 components: - pos: -61.5,-1.5 parent: 2 type: Transform - - uid: 6888 + - uid: 11394 components: - pos: -61.5,-0.5 parent: 2 type: Transform - - uid: 6889 + - uid: 11395 components: - pos: -58.5,3.5 parent: 2 type: Transform - - uid: 7842 + - uid: 11396 components: - rot: 1.5707963267948966 rad pos: 8.5,-25.5 parent: 2 type: Transform - - uid: 7867 + - uid: 11397 components: - pos: -6.5,-25.5 parent: 2 type: Transform - - uid: 7901 + - uid: 11398 components: - pos: 27.5,3.5 parent: 2 type: Transform - - uid: 7921 + - uid: 11399 components: - pos: 4.5,18.5 parent: 2 type: Transform - - uid: 8334 + - uid: 11400 components: - pos: 16.5,-35.5 parent: 2 type: Transform - - uid: 8409 + - uid: 11401 components: - pos: 12.5,-37.5 parent: 2 type: Transform - - uid: 8410 + - uid: 11402 components: - pos: 12.5,-39.5 parent: 2 type: Transform - - uid: 8800 + - uid: 11403 components: - pos: -25.5,28.5 parent: 2 type: Transform - - uid: 9160 + - uid: 11404 components: - pos: -64.5,-8.5 parent: 2 type: Transform - - uid: 9465 + - uid: 11405 components: - rot: 3.141592653589793 rad pos: -38.5,-25.5 parent: 2 type: Transform - - uid: 9521 + - uid: 11406 components: - pos: -13.5,-20.5 parent: 2 type: Transform - - uid: 9579 + - uid: 11407 components: - pos: -17.5,-29.5 parent: 2 type: Transform - - uid: 9624 + - uid: 11408 components: - pos: -25.5,29.5 parent: 2 type: Transform - - uid: 9625 - components: - - pos: -25.5,30.5 - parent: 2 - type: Transform - - uid: 10477 + - uid: 11409 components: - - rot: -1.5707963267948966 rad - pos: 9.5,-49.5 + - pos: -25.5,30.5 parent: 2 type: Transform - - uid: 10668 + - uid: 11410 components: - pos: 25.5,-23.5 parent: 2 type: Transform - - uid: 10685 + - uid: 11411 components: - rot: 3.141592653589793 rad pos: 20.5,-34.5 parent: 2 type: Transform - - uid: 11006 + - uid: 11412 components: - pos: -62.5,-4.5 parent: 2 type: Transform - - uid: 11166 + - uid: 11413 components: - pos: -26.5,7.5 parent: 2 type: Transform - - uid: 11547 + - uid: 11414 components: - pos: 9.5,-35.5 parent: 2 type: Transform - - uid: 11620 + - uid: 11415 components: - pos: 6.5,-34.5 parent: 2 type: Transform - - uid: 11694 + - uid: 11416 components: - rot: 3.141592653589793 rad pos: 11.5,37.5 parent: 2 type: Transform - - uid: 11757 + - uid: 11417 components: - pos: 12.5,-38.5 parent: 2 type: Transform - - uid: 11817 + - uid: 11418 components: - pos: -51.5,9.5 parent: 2 type: Transform - - uid: 11912 + - uid: 11419 components: - pos: -6.5,4.5 parent: 2 type: Transform - - uid: 11938 + - uid: 11420 components: - pos: -23.5,10.5 parent: 2 type: Transform - - uid: 11941 + - uid: 11421 components: - pos: -13.5,-2.5 parent: 2 type: Transform - - uid: 11963 + - uid: 11422 components: - pos: -12.5,-2.5 parent: 2 type: Transform - - uid: 11984 + - uid: 11423 components: - pos: -12.5,-10.5 parent: 2 type: Transform - - uid: 12156 + - uid: 11424 components: - pos: -13.5,-10.5 parent: 2 type: Transform - - uid: 12247 + - uid: 11425 components: - pos: 8.5,-24.5 parent: 2 type: Transform - - uid: 12285 - components: - - pos: 0.5,-45.5 - parent: 2 - type: Transform - - uid: 12553 + - uid: 11426 components: - pos: -33.5,4.5 parent: 2 type: Transform - - uid: 12926 + - uid: 11427 components: - pos: -23.5,9.5 parent: 2 type: Transform - - uid: 13095 + - uid: 11428 components: - pos: 42.5,4.5 parent: 2 type: Transform - - uid: 13125 + - uid: 11429 components: - pos: -67.5,-9.5 parent: 2 type: Transform - - uid: 13147 + - uid: 11430 components: - pos: -64.5,-7.5 parent: 2 type: Transform - - uid: 13151 + - uid: 11431 components: - pos: -67.5,-8.5 parent: 2 type: Transform - - uid: 13426 + - uid: 11432 components: - pos: -62.5,41.5 parent: 2 type: Transform - - uid: 13434 + - uid: 11433 components: - pos: -65.5,35.5 parent: 2 type: Transform - - uid: 13435 + - uid: 11434 components: - pos: -65.5,33.5 parent: 2 type: Transform - - uid: 13436 + - uid: 11435 components: - pos: -66.5,34.5 parent: 2 type: Transform - - uid: 13438 + - uid: 11436 components: - pos: -65.5,32.5 parent: 2 type: Transform - - uid: 13466 + - uid: 11437 components: - pos: -61.5,-3.5 parent: 2 type: Transform - - uid: 13480 + - uid: 11438 components: - pos: -13.5,24.5 parent: 2 type: Transform - - uid: 13622 + - uid: 11439 components: - pos: 9.5,-53.5 parent: 2 type: Transform - - uid: 13623 - components: - - pos: 9.5,-52.5 - parent: 2 - type: Transform - - uid: 13630 + - uid: 11440 components: - pos: 5.5,-34.5 parent: 2 type: Transform - - uid: 13684 + - uid: 11441 components: - pos: -51.5,28.5 parent: 2 type: Transform - - uid: 13783 + - uid: 11442 components: - pos: -51.5,23.5 parent: 2 type: Transform - - uid: 14206 + - uid: 11443 components: - pos: -62.5,-10.5 parent: 2 type: Transform - - uid: 14215 + - uid: 11444 components: - pos: -21.5,34.5 parent: 2 type: Transform - - uid: 14269 + - uid: 11445 components: - pos: -38.5,7.5 parent: 2 type: Transform - - uid: 14270 + - uid: 11446 components: - pos: -18.5,34.5 parent: 2 type: Transform - - uid: 14608 + - uid: 11447 components: - pos: -40.5,52.5 parent: 2 type: Transform - - uid: 14609 + - uid: 11448 components: - pos: -41.5,52.5 parent: 2 type: Transform - - uid: 14610 + - uid: 11449 components: - pos: -41.5,53.5 parent: 2 type: Transform - - uid: 14611 + - uid: 11450 components: - pos: -41.5,54.5 parent: 2 type: Transform - - uid: 14612 + - uid: 11451 components: - pos: -43.5,54.5 parent: 2 type: Transform - - uid: 14613 + - uid: 11452 components: - pos: -43.5,53.5 parent: 2 type: Transform - - uid: 14614 + - uid: 11453 components: - pos: -43.5,52.5 parent: 2 type: Transform - - uid: 14615 + - uid: 11454 components: - pos: -44.5,52.5 parent: 2 type: Transform - - uid: 15274 - components: - - pos: -0.5,-45.5 - parent: 2 - type: Transform - - uid: 15301 + - uid: 11455 components: - pos: 4.5,-34.5 parent: 2 type: Transform - - uid: 15308 + - uid: 11456 components: - pos: -2.5,12.5 parent: 2 type: Transform - - uid: 15337 - components: - - pos: -1.5,-45.5 - parent: 2 - type: Transform - - uid: 15513 + - uid: 11457 components: - pos: 33.5,-23.5 parent: 2 type: Transform - - uid: 15518 + - uid: 11458 components: - pos: 7.5,-32.5 parent: 2 type: Transform - - uid: 15519 + - uid: 11459 components: - pos: 15.5,-35.5 parent: 2 type: Transform - - uid: 15563 + - uid: 11460 components: - pos: -20.5,1.5 parent: 2 type: Transform - - uid: 15625 + - uid: 11461 components: - pos: 23.5,-31.5 parent: 2 type: Transform - - uid: 15628 + - uid: 11462 components: - pos: 25.5,34.5 parent: 2 type: Transform - - uid: 15629 + - uid: 11463 components: - pos: 24.5,34.5 parent: 2 type: Transform - - uid: 15630 + - uid: 11464 components: - pos: 32.5,31.5 parent: 2 type: Transform - - uid: 15632 + - uid: 11465 components: - pos: 23.5,-30.5 parent: 2 type: Transform - - uid: 15695 + - uid: 11466 components: - pos: 3.5,-3.5 parent: 2 type: Transform - - uid: 15696 + - uid: 11467 components: - pos: 3.5,-2.5 parent: 2 type: Transform - - uid: 15698 + - uid: 11468 components: - pos: -2.5,3.5 parent: 2 type: Transform - - uid: 15719 + - uid: 11469 components: - pos: -63.5,-10.5 parent: 2 type: Transform - - uid: 15755 + - uid: 11470 components: - pos: -57.5,3.5 parent: 2 type: Transform - - uid: 15771 + - uid: 11471 components: - pos: 34.5,-23.5 parent: 2 type: Transform - - uid: 15951 + - uid: 11472 components: - pos: 29.5,-13.5 parent: 2 type: Transform - - uid: 15952 + - uid: 11473 components: - pos: 30.5,-13.5 parent: 2 type: Transform - - uid: 15962 + - uid: 11474 components: - pos: -42.5,38.5 parent: 2 type: Transform - - uid: 16050 + - uid: 11475 components: - pos: 13.5,35.5 parent: 2 type: Transform - - uid: 16080 + - uid: 11476 components: - rot: 3.141592653589793 rad pos: -29.5,48.5 parent: 2 type: Transform - - uid: 16091 + - uid: 11477 components: - pos: -34.5,44.5 parent: 2 type: Transform - - uid: 16124 + - uid: 11478 components: - pos: 11.5,31.5 parent: 2 type: Transform - - uid: 16131 + - uid: 11479 components: - pos: 13.5,-31.5 parent: 2 type: Transform - - uid: 16157 + - uid: 11480 components: - pos: 8.5,-26.5 parent: 2 type: Transform - - uid: 16183 + - uid: 11481 components: - rot: 1.5707963267948966 rad pos: -31.5,48.5 parent: 2 type: Transform - - uid: 16222 + - uid: 11482 components: - pos: 13.5,-32.5 parent: 2 type: Transform - - uid: 16321 + - uid: 11483 components: - pos: 7.5,-31.5 parent: 2 type: Transform - - uid: 16885 + - uid: 11484 components: - pos: 14.5,19.5 parent: 2 type: Transform - - uid: 16887 + - uid: 11485 components: - pos: 14.5,20.5 parent: 2 type: Transform - - uid: 16888 + - uid: 11486 components: - pos: 9.5,10.5 parent: 2 type: Transform -- proto: GrilleBroken - entities: - - uid: 963 + - uid: 11487 components: - rot: 1.5707963267948966 rad - pos: 9.5,-48.5 + pos: -5.5,-49.5 parent: 2 type: Transform - - uid: 966 + - uid: 11488 components: - - pos: 9.5,-48.5 + - rot: 1.5707963267948966 rad + pos: 5.5,-48.5 parent: 2 type: Transform - - uid: 1690 + - uid: 11489 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-48.5 + parent: 2 + type: Transform + - uid: 11490 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-49.5 + parent: 2 + type: Transform + - uid: 11491 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-50.5 + parent: 2 + type: Transform + - uid: 11492 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-48.5 + parent: 2 + type: Transform + - uid: 11493 + components: + - rot: -1.5707963267948966 rad + pos: -10.5,-51.5 + parent: 2 + type: Transform + - uid: 11494 + components: + - rot: 1.5707963267948966 rad + pos: -4.5,-37.5 + parent: 2 + type: Transform + - uid: 11495 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-46.5 + parent: 2 + type: Transform + - uid: 11496 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-48.5 + parent: 2 + type: Transform + - uid: 11497 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-47.5 + parent: 2 + type: Transform + - uid: 11498 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-50.5 + parent: 2 + type: Transform + - uid: 11499 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-51.5 + parent: 2 + type: Transform + - uid: 11500 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-42.5 + parent: 2 + type: Transform + - uid: 11501 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-50.5 + parent: 2 + type: Transform + - uid: 11502 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-49.5 + parent: 2 + type: Transform + - uid: 11503 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-43.5 + parent: 2 + type: Transform + - uid: 11504 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-46.5 + parent: 2 + type: Transform + - uid: 11505 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-45.5 + parent: 2 + type: Transform + - uid: 11506 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-44.5 + parent: 2 + type: Transform + - uid: 11507 + components: + - rot: 1.5707963267948966 rad + pos: 6.5,-42.5 + parent: 2 + type: Transform + - uid: 11508 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-41.5 + parent: 2 + type: Transform + - uid: 11509 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-42.5 + parent: 2 + type: Transform + - uid: 11510 + components: + - rot: 1.5707963267948966 rad + pos: 5.5,-42.5 + parent: 2 + type: Transform + - uid: 11511 + components: + - rot: 1.5707963267948966 rad + pos: 7.5,-42.5 + parent: 2 + type: Transform + - uid: 11512 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-45.5 + parent: 2 + type: Transform + - uid: 11513 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-43.5 + parent: 2 + type: Transform + - uid: 11514 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-46.5 + parent: 2 + type: Transform + - uid: 11515 + components: + - rot: 1.5707963267948966 rad + pos: 8.5,-48.5 + parent: 2 + type: Transform + - uid: 11516 + components: + - pos: 8.5,-51.5 + parent: 2 + type: Transform + - uid: 11517 + components: + - pos: 8.5,-52.5 + parent: 2 + type: Transform + - uid: 11518 + components: + - pos: 7.5,-52.5 + parent: 2 + type: Transform + - uid: 11519 + components: + - pos: 6.5,-52.5 + parent: 2 + type: Transform + - uid: 11520 + components: + - pos: 5.5,-52.5 + parent: 2 + type: Transform + - uid: 11521 + components: + - pos: 4.5,-52.5 + parent: 2 + type: Transform +- proto: GrilleBroken + entities: + - uid: 11522 + components: + - rot: 1.5707963267948966 rad + pos: 9.5,-48.5 + parent: 2 + type: Transform + - uid: 11523 components: - pos: -53.5,-22.5 parent: 2 type: Transform - - uid: 2043 + - uid: 11524 components: - pos: -60.5,6.5 parent: 2 type: Transform - - uid: 2057 + - uid: 11525 components: - pos: -53.5,6.5 parent: 2 type: Transform - - uid: 2101 + - uid: 11526 components: - pos: 15.5,34.5 parent: 2 type: Transform - - uid: 2114 + - uid: 11527 components: - pos: 17.5,34.5 parent: 2 type: Transform - - uid: 2115 + - uid: 11528 components: - pos: 16.5,34.5 parent: 2 type: Transform - - uid: 2171 + - uid: 11529 components: - pos: -52.5,6.5 parent: 2 type: Transform - - uid: 3133 + - uid: 11530 components: - pos: 3.5,-82.5 parent: 2 type: Transform - - uid: 3273 + - uid: 11531 components: - pos: -65.5,-11.5 parent: 2 type: Transform - - uid: 3278 + - uid: 11532 components: - pos: -58.5,6.5 parent: 2 type: Transform - - uid: 3373 + - uid: 11533 components: - pos: -60.5,-20.5 parent: 2 type: Transform - - uid: 3374 + - uid: 11534 components: - pos: -59.5,-19.5 parent: 2 type: Transform - - uid: 3375 + - uid: 11535 components: - pos: -62.5,-17.5 parent: 2 type: Transform - - uid: 3376 + - uid: 11536 components: - pos: -62.5,-13.5 parent: 2 type: Transform - - uid: 3377 + - uid: 11537 components: - pos: -66.5,-10.5 parent: 2 type: Transform - - uid: 3378 + - uid: 11538 components: - pos: -64.5,-7.5 parent: 2 type: Transform - - uid: 3379 + - uid: 11539 components: - pos: -63.5,-2.5 parent: 2 type: Transform - - uid: 3380 + - uid: 11540 components: - pos: -65.5,2.5 parent: 2 type: Transform - - uid: 3381 + - uid: 11541 components: - pos: -63.5,5.5 parent: 2 type: Transform - - uid: 3384 + - uid: 11542 components: - pos: -56.5,5.5 parent: 2 type: Transform - - uid: 3385 + - uid: 11543 components: - pos: -54.5,5.5 parent: 2 type: Transform - - uid: 3470 + - uid: 11544 components: - pos: -63.5,-10.5 parent: 2 type: Transform - - uid: 3998 - components: - - rot: 3.141592653589793 rad - pos: 9.5,-51.5 - parent: 2 - type: Transform - - uid: 4604 + - uid: 11545 components: - pos: -25.5,-86.5 parent: 2 type: Transform - - uid: 4605 + - uid: 11546 components: - pos: -24.5,-86.5 parent: 2 type: Transform - - uid: 4613 + - uid: 11547 components: - pos: -9.5,-89.5 parent: 2 type: Transform - - uid: 4623 + - uid: 11548 components: - pos: -19.5,-89.5 parent: 2 type: Transform - - uid: 4642 + - uid: 11549 components: - pos: 3.5,-83.5 parent: 2 type: Transform - - uid: 4650 + - uid: 11550 components: - pos: 5.5,-77.5 parent: 2 type: Transform - - uid: 4660 + - uid: 11551 components: - pos: 3.5,-68.5 parent: 2 type: Transform - - uid: 4673 + - uid: 11552 components: - pos: -5.5,-64.5 parent: 2 type: Transform - - uid: 4718 + - uid: 11553 components: - pos: -2.5,-87.5 parent: 2 type: Transform - - uid: 4726 + - uid: 11554 components: - pos: -38.5,-80.5 parent: 2 type: Transform - - uid: 4736 + - uid: 11555 components: - pos: -45.5,-24.5 parent: 2 type: Transform - - uid: 4740 + - uid: 11556 components: - pos: -39.5,-73.5 parent: 2 type: Transform - - uid: 4741 + - uid: 11557 components: - pos: -45.5,-25.5 parent: 2 type: Transform - - uid: 4743 + - uid: 11558 components: - pos: -44.5,-30.5 parent: 2 type: Transform - - uid: 4744 + - uid: 11559 components: - pos: -45.5,-28.5 parent: 2 type: Transform - - uid: 4854 + - uid: 11560 components: - pos: 43.5,-5.5 parent: 2 type: Transform - - uid: 4855 + - uid: 11561 components: - pos: 43.5,-15.5 parent: 2 type: Transform - - uid: 4856 + - uid: 11562 components: - pos: 43.5,-22.5 parent: 2 type: Transform - - uid: 5134 + - uid: 11563 components: - pos: 54.5,2.5 parent: 2 type: Transform - - uid: 5135 + - uid: 11564 components: - pos: 55.5,2.5 parent: 2 type: Transform - - uid: 5136 + - uid: 11565 components: - pos: 61.5,2.5 parent: 2 type: Transform - - uid: 5137 + - uid: 11566 components: - pos: 62.5,2.5 parent: 2 type: Transform - - uid: 5138 + - uid: 11567 components: - pos: 62.5,6.5 parent: 2 type: Transform - - uid: 5139 + - uid: 11568 components: - pos: 65.5,13.5 parent: 2 type: Transform - - uid: 5140 + - uid: 11569 components: - pos: 53.5,20.5 parent: 2 type: Transform - - uid: 5141 + - uid: 11570 components: - pos: 52.5,20.5 parent: 2 type: Transform - - uid: 5334 + - uid: 11571 components: - pos: 39.5,21.5 parent: 2 type: Transform - - uid: 5335 + - uid: 11572 components: - pos: 39.5,20.5 parent: 2 type: Transform - - uid: 5336 + - uid: 11573 components: - pos: 31.5,31.5 parent: 2 type: Transform - - uid: 5338 + - uid: 11574 components: - pos: 14.5,34.5 parent: 2 type: Transform - - uid: 5755 + - uid: 11575 components: - rot: -1.5707963267948966 rad pos: 12.5,37.5 parent: 2 type: Transform - - uid: 5939 + - uid: 11576 components: - rot: -1.5707963267948966 rad pos: 9.5,37.5 parent: 2 type: Transform - - uid: 5963 + - uid: 11577 components: - pos: -0.5,45.5 parent: 2 type: Transform - - uid: 5967 + - uid: 11578 components: - rot: -1.5707963267948966 rad pos: -3.5,47.5 parent: 2 type: Transform - - uid: 5983 + - uid: 11579 components: - rot: 1.5707963267948966 rad pos: 10.5,37.5 parent: 2 type: Transform - - uid: 5998 + - uid: 11580 components: - rot: 3.141592653589793 rad pos: -11.5,48.5 parent: 2 type: Transform - - uid: 5999 + - uid: 11581 components: - pos: -6.5,49.5 parent: 2 type: Transform - - uid: 6000 + - uid: 11582 components: - rot: 3.141592653589793 rad pos: -18.5,48.5 parent: 2 type: Transform - - uid: 6001 + - uid: 11583 components: - pos: 0.5,45.5 parent: 2 type: Transform - - uid: 6010 + - uid: 11584 components: - rot: 1.5707963267948966 rad pos: -11.5,48.5 parent: 2 type: Transform - - uid: 6027 + - uid: 11585 components: - pos: 3.5,-62.5 parent: 2 type: Transform - - uid: 6028 + - uid: 11586 components: - pos: 3.5,-64.5 parent: 2 type: Transform - - uid: 6029 + - uid: 11587 components: - pos: 3.5,-61.5 parent: 2 type: Transform - - uid: 6030 + - uid: 11588 components: - pos: 3.5,-63.5 parent: 2 type: Transform - - uid: 6042 + - uid: 11589 components: - pos: 6.5,-53.5 parent: 2 type: Transform - - uid: 6043 - components: - - pos: 5.5,-53.5 - parent: 2 - type: Transform - - uid: 6051 + - uid: 11590 components: - pos: -35.5,-53.5 parent: 2 type: Transform - - uid: 6052 + - uid: 11591 components: - pos: -35.5,-52.5 parent: 2 type: Transform - - uid: 6060 + - uid: 11592 components: - pos: -34.5,-61.5 parent: 2 type: Transform - - uid: 6065 + - uid: 11593 components: - pos: -35.5,-65.5 parent: 2 type: Transform - - uid: 6097 + - uid: 11594 components: - pos: -45.5,54.5 parent: 2 type: Transform - - uid: 6266 + - uid: 11595 components: - pos: -49.5,68.5 parent: 2 type: Transform - - uid: 6296 + - uid: 11596 components: - pos: -32.5,62.5 parent: 2 type: Transform - - uid: 6353 + - uid: 11597 components: - pos: -32.5,63.5 parent: 2 type: Transform - - uid: 6354 + - uid: 11598 components: - pos: -52.5,60.5 parent: 2 type: Transform - - uid: 6391 + - uid: 11599 components: - pos: -32.5,55.5 parent: 2 type: Transform - - uid: 6392 + - uid: 11600 components: - pos: -48.5,68.5 parent: 2 type: Transform - - uid: 6407 + - uid: 11601 components: - pos: -37.5,54.5 parent: 2 type: Transform - - uid: 6408 + - uid: 11602 components: - pos: -40.5,68.5 parent: 2 type: Transform - - uid: 6418 + - uid: 11603 components: - pos: -32.5,60.5 parent: 2 type: Transform - - uid: 6421 + - uid: 11604 components: - pos: -34.5,68.5 parent: 2 type: Transform - - uid: 6425 + - uid: 11605 components: - pos: -43.5,70.5 parent: 2 type: Transform - - uid: 6430 + - uid: 11606 components: - pos: -52.5,61.5 parent: 2 type: Transform - - uid: 6665 + - uid: 11607 components: - pos: -56.5,45.5 parent: 2 type: Transform - - uid: 6666 + - uid: 11608 components: - pos: -59.5,44.5 parent: 2 type: Transform - - uid: 6667 + - uid: 11609 components: - pos: -59.5,41.5 parent: 2 type: Transform - - uid: 6673 + - uid: 11610 components: - pos: -57.5,45.5 parent: 2 type: Transform - - uid: 6674 + - uid: 11611 components: - pos: -58.5,44.5 parent: 2 type: Transform - - uid: 6675 + - uid: 11612 components: - pos: -59.5,40.5 parent: 2 type: Transform - - uid: 11950 + - uid: 11613 components: - pos: 13.5,36.5 parent: 2 type: Transform - - uid: 11951 + - uid: 11614 components: - rot: 3.141592653589793 rad pos: 13.5,36.5 parent: 2 type: Transform - - uid: 13428 + - uid: 11615 components: - pos: -64.5,39.5 parent: 2 type: Transform - - uid: 13429 + - uid: 11616 components: - pos: -63.5,40.5 parent: 2 type: Transform - - uid: 13430 + - uid: 11617 components: - pos: -61.5,41.5 parent: 2 type: Transform - - uid: 13431 + - uid: 11618 components: - pos: -60.5,41.5 parent: 2 type: Transform - - uid: 13432 + - uid: 11619 components: - pos: -65.5,38.5 parent: 2 type: Transform - - uid: 13433 + - uid: 11620 components: - pos: -65.5,37.5 parent: 2 type: Transform - - uid: 13437 + - uid: 11621 components: - pos: -65.5,34.5 parent: 2 type: Transform - - uid: 13631 - components: - - pos: 9.5,-50.5 - parent: 2 - type: Transform - - uid: 13634 - components: - - pos: 9.5,-50.5 - parent: 2 - type: Transform - - uid: 16034 + - uid: 11622 components: - pos: -31.5,48.5 parent: 2 type: Transform - - uid: 16056 + - uid: 11623 components: - rot: -1.5707963267948966 rad pos: -32.5,48.5 parent: 2 type: Transform - - uid: 16060 + - uid: 11624 components: - rot: 1.5707963267948966 rad pos: -30.5,48.5 parent: 2 type: Transform - - uid: 16184 + - uid: 11625 components: - pos: -28.5,48.5 parent: 2 type: Transform - proto: GunSafe entities: - - uid: 16545 + - uid: 11626 components: - pos: -43.5,-4.5 parent: 2 type: Transform - proto: GunSafeLaserCarbine entities: - - uid: 16062 + - uid: 11627 components: - pos: -43.5,-1.5 parent: 2 type: Transform - proto: GunSafePistolMk58 entities: - - uid: 783 + - uid: 11628 components: - pos: -44.5,-4.5 parent: 2 type: Transform - proto: GunSafeRifleLecter entities: - - uid: 15287 + - uid: 11629 components: - pos: -43.5,-2.5 parent: 2 type: Transform - proto: GunSafeSubMachineGunVector entities: - - uid: 16058 + - uid: 11630 components: - pos: -43.5,-0.5 parent: 2 type: Transform - proto: HandLabeler entities: - - uid: 1647 + - uid: 11631 components: - pos: 4.671028,-3.138898 parent: 2 type: Transform - - uid: 1925 + - uid: 11632 components: - pos: 16.646406,11.096404 parent: 2 type: Transform - - uid: 15387 + - uid: 11633 components: - pos: 19.420631,21.73208 parent: 2 type: Transform - - uid: 16742 + - uid: 11634 components: - pos: 12.324071,-10.753526 parent: 2 type: Transform - proto: HatSpawner entities: - - uid: 9587 + - uid: 11635 components: - pos: -31.5,9.5 parent: 2 type: Transform - - uid: 13827 + - uid: 11636 components: - pos: -38.5,17.5 parent: 2 type: Transform - proto: HighSecArmoryLocked entities: - - uid: 5769 + - uid: 11637 components: - pos: -41.5,-3.5 parent: 2 type: Transform - proto: HighSecCommandLocked entities: - - uid: 3787 + - uid: 11638 components: - pos: -16.5,-62.5 parent: 2 type: Transform - - uid: 5622 + - uid: 11639 components: - pos: -16.5,-65.5 parent: 2 type: Transform - - uid: 14751 + - uid: 11640 components: - pos: -16.5,-69.5 parent: 2 type: Transform - - uid: 14753 + - uid: 11641 components: - pos: -16.5,-73.5 parent: 2 type: Transform - - uid: 14756 + - uid: 11642 components: - pos: -23.5,-76.5 parent: 2 type: Transform - - uid: 14757 + - uid: 11643 components: - pos: -18.5,-76.5 parent: 2 type: Transform - - uid: 14758 + - uid: 11644 components: - pos: -13.5,-76.5 parent: 2 type: Transform - - uid: 14759 + - uid: 11645 components: - pos: -25.5,-76.5 parent: 2 type: Transform - - uid: 14760 + - uid: 11646 components: - pos: -16.5,-79.5 parent: 2 type: Transform - - uid: 14761 + - uid: 11647 components: - pos: -16.5,-84.5 parent: 2 type: Transform - - uid: 15808 + - uid: 11648 components: - pos: -1.5,19.5 parent: 2 type: Transform - proto: HolofanProjector entities: - - uid: 1832 + - uid: 11649 components: - pos: -2.214195,-30.719608 parent: 2 type: Transform - proto: HoloprojectorEngineering entities: - - uid: 16213 + - uid: 11650 components: - pos: 26.690435,-21.281763 parent: 2 type: Transform - - uid: 16278 + - uid: 11651 components: - pos: -2.319984,-15.5461235 parent: 2 type: Transform - - uid: 16279 + - uid: 11652 components: - pos: -2.194984,-15.202135 parent: 2 type: Transform - proto: HoloprojectorSecurity entities: - - uid: 579 + - uid: 11653 components: - pos: -26.45485,-11.639819 parent: 2 type: Transform - proto: HospitalCurtains entities: - - uid: 1653 + - uid: 11654 components: - pos: -0.5,-30.5 parent: 2 type: Transform - proto: HospitalCurtainsOpen entities: - - uid: 524 - components: - - pos: -6.5,-43.5 - parent: 2 - type: Transform - - uid: 1102 + - uid: 11655 components: - pos: -0.5,-31.5 parent: 2 type: Transform - - uid: 1188 + - uid: 11656 components: - rot: -1.5707963267948966 rad pos: 35.5,-14.5 parent: 2 type: Transform - - uid: 1204 + - uid: 11657 components: - pos: -21.5,19.5 parent: 2 type: Transform - - uid: 1206 + - uid: 11658 components: - pos: -21.5,20.5 parent: 2 type: Transform - - uid: 2873 - components: - - pos: -5.5,-43.5 - parent: 2 - type: Transform - - uid: 3119 + - uid: 11659 components: - rot: -1.5707963267948966 rad pos: -27.5,9.5 parent: 2 type: Transform - - uid: 4244 + - uid: 11660 components: - rot: -1.5707963267948966 rad pos: -27.5,10.5 parent: 2 type: Transform - - uid: 4251 + - uid: 11661 components: - pos: -36.5,9.5 parent: 2 type: Transform - - uid: 4254 + - uid: 11662 components: - pos: -37.5,9.5 parent: 2 type: Transform - - uid: 4437 + - uid: 11663 components: - pos: 10.5,19.5 parent: 2 type: Transform - - uid: 4439 + - uid: 11664 components: - pos: 10.5,18.5 parent: 2 type: Transform - - uid: 5581 + - uid: 11665 components: - rot: -1.5707963267948966 rad pos: 1.5,42.5 parent: 2 type: Transform - - uid: 6606 + - uid: 11666 components: - pos: 15.5,24.5 parent: 2 type: Transform - - uid: 6607 + - uid: 11667 components: - pos: 15.5,23.5 parent: 2 type: Transform - - uid: 9295 + - uid: 11668 components: - rot: -1.5707963267948966 rad pos: 20.5,31.5 parent: 2 type: Transform - - uid: 9360 + - uid: 11669 components: - rot: 1.5707963267948966 rad pos: 10.5,26.5 parent: 2 type: Transform - - uid: 12747 + - uid: 11670 components: - rot: -1.5707963267948966 rad pos: 35.5,-16.5 parent: 2 type: Transform - - uid: 16295 + - uid: 11671 components: - rot: -1.5707963267948966 rad pos: 21.5,31.5 parent: 2 type: Transform - - uid: 16296 + - uid: 11672 components: - rot: -1.5707963267948966 rad pos: 22.5,31.5 @@ -76519,158 +77854,165 @@ entities: type: Transform - proto: HotplateMachineCircuitboard entities: - - uid: 6820 + - uid: 11673 components: - pos: -14.571217,-26.652689 parent: 2 type: Transform - proto: hydroponicsSoil entities: - - uid: 3711 + - uid: 11674 components: - pos: -60.5,-5.5 parent: 2 type: Transform - - uid: 3712 + - uid: 11675 components: - pos: -59.5,-5.5 parent: 2 type: Transform - - uid: 3735 + - uid: 11676 components: - pos: -58.5,-5.5 parent: 2 type: Transform - - uid: 3788 + - uid: 11677 components: - pos: -58.5,-9.5 parent: 2 type: Transform - - uid: 3988 + - uid: 11678 components: - pos: -59.5,-9.5 parent: 2 type: Transform - - uid: 3991 + - uid: 11679 components: - pos: -60.5,-9.5 parent: 2 type: Transform - - uid: 14036 + - uid: 11680 components: - pos: 35.5,-11.5 parent: 2 type: Transform - - uid: 14405 + - uid: 11681 components: - pos: 35.5,-12.5 parent: 2 type: Transform - proto: HydroponicsToolClippers entities: - - uid: 16374 + - uid: 11682 components: - pos: -58.898293,-6.196193 parent: 2 type: Transform - proto: HydroponicsToolMiniHoe entities: - - uid: 1769 + - uid: 11683 components: - rot: -1.5707963267948966 rad pos: 32.378174,-12.47862 parent: 2 type: Transform - - uid: 16373 + - uid: 11684 components: - pos: -58.492043,-5.866701 parent: 2 type: Transform - proto: HydroponicsToolSpade entities: - - uid: 4266 + - uid: 11685 components: - rot: 3.141592653589793 rad pos: 32.63213,-12.732526 parent: 2 type: Transform - - uid: 16372 + - uid: 11686 components: - pos: -58.382668,-9.429201 parent: 2 type: Transform - proto: hydroponicsTray entities: - - uid: 140 + - uid: 11687 components: - pos: -18.5,3.5 parent: 2 type: Transform - - uid: 147 + - uid: 11688 components: - pos: -19.5,3.5 parent: 2 type: Transform - - uid: 150 + - uid: 11689 components: - pos: -20.5,3.5 parent: 2 type: Transform - - uid: 151 + - uid: 11690 components: - pos: -21.5,3.5 parent: 2 type: Transform - - uid: 160 + - uid: 11691 components: - pos: -18.5,4.5 parent: 2 type: Transform - - uid: 161 + - uid: 11692 components: - pos: -19.5,4.5 parent: 2 type: Transform - - uid: 163 + - uid: 11693 components: - pos: -20.5,4.5 parent: 2 type: Transform - - uid: 164 + - uid: 11694 components: - pos: -21.5,4.5 parent: 2 type: Transform - proto: IDComputerCircuitboard entities: - - uid: 6624 + - uid: 11695 components: - pos: -14.627064,-28.345179 parent: 2 type: Transform +- proto: Igniter + entities: + - uid: 11696 + components: + - pos: -7.4670944,-48.448364 + parent: 2 + type: Transform - proto: IngotGold entities: - - uid: 12343 + - uid: 11697 components: - pos: -47.503006,41.644245 parent: 2 type: Transform - proto: IngotSilver entities: - - uid: 15347 + - uid: 11698 components: - pos: 0.10978508,18.573301 parent: 2 type: Transform - proto: IntercomAll entities: - - uid: 11077 + - uid: 11699 components: - rot: 3.141592653589793 rad pos: -9.5,40.5 parent: 2 type: Transform - - uid: 16047 + - uid: 11700 components: - rot: -1.5707963267948966 rad pos: -6.5,34.5 @@ -76678,7 +78020,7 @@ entities: type: Transform - proto: IntercomCommand entities: - - uid: 16479 + - uid: 11701 components: - rot: 1.5707963267948966 rad pos: -16.5,37.5 @@ -76686,69 +78028,69 @@ entities: type: Transform - proto: IntercomCommon entities: - - uid: 3878 + - uid: 11702 components: - pos: -8.5,-75.5 parent: 2 type: Transform - - uid: 6007 + - uid: 11703 components: - pos: 38.5,2.5 parent: 2 type: Transform - - uid: 6019 + - uid: 11704 components: - pos: 37.5,-14.5 parent: 2 type: Transform - - uid: 13064 + - uid: 11705 components: - rot: 1.5707963267948966 rad pos: -7.5,-80.5 parent: 2 type: Transform - - uid: 13065 + - uid: 11706 components: - rot: 3.141592653589793 rad pos: -6.5,-81.5 parent: 2 type: Transform - - uid: 13066 + - uid: 11707 components: - rot: -1.5707963267948966 rad pos: -5.5,-80.5 parent: 2 type: Transform - - uid: 13067 + - uid: 11708 components: - rot: 1.5707963267948966 rad pos: -7.5,-72.5 parent: 2 type: Transform - - uid: 13068 + - uid: 11709 components: - pos: -6.5,-71.5 parent: 2 type: Transform - - uid: 13069 + - uid: 11710 components: - rot: -1.5707963267948966 rad pos: -5.5,-72.5 parent: 2 type: Transform - - uid: 16013 + - uid: 11711 components: - rot: -1.5707963267948966 rad pos: 41.5,-20.5 parent: 2 type: Transform - - uid: 16079 + - uid: 11712 components: - rot: -1.5707963267948966 rad pos: 41.5,-4.5 parent: 2 type: Transform - - uid: 16122 + - uid: 11713 components: - rot: -1.5707963267948966 rad pos: -44.5,14.5 @@ -76756,29 +78098,29 @@ entities: type: Transform - proto: IntercomEngineering entities: - - uid: 3502 + - uid: 11714 components: - rot: -1.5707963267948966 rad pos: -14.5,-35.5 parent: 2 type: Transform - - uid: 5987 + - uid: 11715 components: - rot: -1.5707963267948966 rad pos: 8.5,-36.5 parent: 2 type: Transform - - uid: 16008 + - uid: 11716 components: - pos: -14.5,-50.5 parent: 2 type: Transform - - uid: 16113 + - uid: 11717 components: - pos: 49.5,12.5 parent: 2 type: Transform - - uid: 16235 + - uid: 11718 components: - rot: 1.5707963267948966 rad pos: -19.5,-28.5 @@ -76786,24 +78128,24 @@ entities: type: Transform - proto: IntercomMedical entities: - - uid: 5083 + - uid: 11719 components: - rot: -1.5707963267948966 rad pos: 16.5,5.5 parent: 2 type: Transform - - uid: 5988 + - uid: 11720 components: - rot: 1.5707963267948966 rad pos: 9.5,13.5 parent: 2 type: Transform - - uid: 16059 + - uid: 11721 components: - pos: 9.5,2.5 parent: 2 type: Transform - - uid: 16567 + - uid: 11722 components: - rot: -1.5707963267948966 rad pos: -29.5,0.5 @@ -76811,42 +78153,42 @@ entities: type: Transform - proto: IntercomScience entities: - - uid: 16241 + - uid: 11723 components: - pos: -39.5,29.5 parent: 2 type: Transform - proto: IntercomSecurity entities: - - uid: 938 + - uid: 11724 components: - pos: -52.5,-10.5 parent: 2 type: Transform - - uid: 7608 + - uid: 11725 components: - pos: -34.5,-10.5 parent: 2 type: Transform - - uid: 7863 + - uid: 11726 components: - rot: -1.5707963267948966 rad pos: -26.5,-6.5 parent: 2 type: Transform - - uid: 16202 + - uid: 11727 components: - rot: -1.5707963267948966 rad pos: 29.5,6.5 parent: 2 type: Transform - - uid: 16559 + - uid: 11728 components: - rot: 1.5707963267948966 rad pos: -57.5,-9.5 parent: 2 type: Transform - - uid: 16560 + - uid: 11729 components: - rot: 1.5707963267948966 rad pos: -59.5,-2.5 @@ -76854,31 +78196,31 @@ entities: type: Transform - proto: IntercomService entities: - - uid: 6015 + - uid: 11730 components: - rot: -1.5707963267948966 rad pos: -11.5,13.5 parent: 2 type: Transform - - uid: 13144 + - uid: 11731 components: - rot: -1.5707963267948966 rad pos: -2.5,-5.5 parent: 2 type: Transform - - uid: 15262 + - uid: 11732 components: - rot: -1.5707963267948966 rad pos: -16.5,9.5 parent: 2 type: Transform - - uid: 16070 + - uid: 11733 components: - rot: 3.141592653589793 rad pos: -1.5,9.5 parent: 2 type: Transform - - uid: 16121 + - uid: 11734 components: - rot: 3.141592653589793 rad pos: -5.5,20.5 @@ -76886,24 +78228,24 @@ entities: type: Transform - proto: IntercomSupply entities: - - uid: 2402 + - uid: 11735 components: - pos: 8.5,-8.5 parent: 2 type: Transform - - uid: 15559 + - uid: 11736 components: - rot: 3.141592653589793 rad pos: 14.5,-35.5 parent: 2 type: Transform - - uid: 15850 + - uid: 11737 components: - rot: 3.141592653589793 rad pos: 6.5,-18.5 parent: 2 type: Transform - - uid: 16774 + - uid: 11738 components: - rot: -1.5707963267948966 rad pos: 13.5,-22.5 @@ -76911,7 +78253,7 @@ entities: type: Transform - proto: JanitorialTrolley entities: - - uid: 7042 + - uid: 11739 components: - rot: -1.5707963267948966 rad pos: -0.5,9.5 @@ -76919,19 +78261,19 @@ entities: type: Transform - proto: JetpackMiniFilled entities: - - uid: 6748 + - uid: 11740 components: - pos: -24.579163,-23.571226 parent: 2 type: Transform - - uid: 6791 + - uid: 11741 components: - pos: -24.48149,-23.278257 parent: 2 type: Transform - proto: Jug entities: - - uid: 2290 + - uid: 11742 components: - name: jug (hydrogen) type: MetaData @@ -76949,7 +78291,7 @@ entities: ReagentId: Hydrogen Quantity: 200 type: SolutionContainerManager - - uid: 16952 + - uid: 11743 components: - name: jug (oxygen) type: MetaData @@ -76969,7 +78311,7 @@ entities: type: SolutionContainerManager - proto: KitchenDeepFryer entities: - - uid: 16309 + - uid: 11744 components: - rot: 3.141592653589793 rad pos: -9.5,14.5 @@ -76977,144 +78319,165 @@ entities: type: Transform - proto: KitchenElectricGrill entities: - - uid: 17045 + - uid: 11745 components: - pos: -8.5,17.5 parent: 2 type: Transform - proto: KitchenMicrowave entities: - - uid: 633 + - uid: 11746 components: - pos: -10.5,12.5 parent: 2 type: Transform - - uid: 2289 + - uid: 11747 components: - pos: -20.5,-16.5 parent: 2 type: Transform - - uid: 2496 + - uid: 11748 components: - pos: -13.5,-37.5 parent: 2 type: Transform - - uid: 3185 + - uid: 11749 components: - pos: -57.5,2.5 parent: 2 type: Transform - - uid: 4173 + - uid: 11750 components: - pos: -22.5,-73.5 parent: 2 type: Transform - - uid: 4771 + - uid: 11751 components: - pos: 6.5,6.5 parent: 2 type: Transform - - uid: 17202 + - uid: 11752 components: - pos: 30.5,-12.5 parent: 2 type: Transform - proto: KitchenReagentGrinder entities: - - uid: 634 + - uid: 11753 components: - pos: -9.5,12.5 parent: 2 type: Transform - - uid: 1199 + - uid: 11754 components: - pos: -19.5,7.5 parent: 2 type: Transform - - uid: 3121 + - uid: 11755 components: - pos: -58.5,2.5 parent: 2 type: Transform - - uid: 4267 + - uid: 11756 components: - pos: 28.5,-12.5 parent: 2 type: Transform - - uid: 4325 + - uid: 11757 components: - pos: 17.5,13.5 parent: 2 type: Transform - - uid: 6839 + - uid: 11758 components: - pos: -36.5,27.5 parent: 2 type: Transform - proto: KitchenSpike entities: - - uid: 624 + - uid: 11759 components: - pos: -13.5,12.5 parent: 2 type: Transform - proto: KnifePlastic entities: - - uid: 6203 + - uid: 11760 components: - pos: -50.834995,46.600662 parent: 2 type: Transform - proto: Lamp entities: - - uid: 1454 + - uid: 11761 components: - pos: -29.751759,-5.001006 parent: 2 type: Transform - - uid: 4285 + - uid: 11762 components: - rot: 1.571183399358068 rad pos: -31.572754,11.73662 parent: 2 type: Transform - - uid: 15088 + - uid: 11763 components: - pos: -35.505363,-5.032391 parent: 2 type: Transform - proto: LampBanana entities: - - uid: 15336 + - uid: 11764 components: - pos: -34.775867,12.178839 parent: 2 type: Transform - proto: LampGold entities: - - uid: 4182 + - uid: 3 + components: + - pos: -1.036339,-51.081 + parent: 2 + type: Transform + - toggleActionEntity: 4 + type: HandheldLight + - containers: + cell_slot: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + actions: !type:Container + showEnts: False + occludes: True + ents: + - 4 + type: ContainerContainer + - canCollide: True + type: Physics + - type: ActionsContainer + - uid: 11765 components: - rot: -1.5707963267948966 rad pos: -19.393183,-78.510345 parent: 2 type: Transform - - uid: 6379 + - uid: 11766 components: - pos: -35.60518,35.00326 parent: 2 type: Transform - - uid: 7508 + - uid: 11767 components: - pos: -24.372782,44.17426 parent: 2 type: Transform - - uid: 15641 + - uid: 11768 components: - rot: -1.5707963267948966 rad pos: 2.7690668,39.79745 parent: 2 type: Transform - - uid: 15780 + - uid: 11769 components: - rot: -1.5604093829777579 rad pos: -49.27722,-0.13982904 @@ -77122,195 +78485,202 @@ entities: type: Transform - proto: LandMineExplosive entities: - - uid: 14148 + - uid: 11770 components: - pos: -43.123215,3.5202084 parent: 2 type: Transform - - uid: 15092 + - uid: 11771 components: - pos: -41.60759,3.5045834 parent: 2 type: Transform - - uid: 15165 + - uid: 11772 components: - pos: -39.92009,3.5514584 parent: 2 type: Transform - proto: LargeBeaker entities: - - uid: 808 + - uid: 11773 components: - pos: -28.754606,3.898841 parent: 2 type: Transform - - uid: 9089 + - uid: 11774 components: - pos: 15.320686,21.09547 parent: 2 type: Transform - proto: LauncherCreamPie entities: - - uid: 13811 + - uid: 11775 components: - pos: -34.2789,11.509767 parent: 2 type: Transform - proto: Lighter entities: - - uid: 16778 + - uid: 11776 components: - rot: -1.5707963267948966 rad pos: -33.32283,13.430806 parent: 2 type: Transform - - uid: 16878 + - uid: 11777 components: - pos: -6.7160864,-10.619381 parent: 2 type: Transform +- proto: LiquidOxygenCanister + entities: + - uid: 17424 + components: + - pos: 7.5,-43.5 + parent: 2 + type: Transform - proto: LockerAtmosphericsFilled entities: - - uid: 2518 + - uid: 11778 components: - - pos: -7.5,-45.5 + - pos: -7.5,-40.5 parent: 2 type: Transform - - uid: 2673 + - uid: 11779 components: - - pos: -5.5,-45.5 + - pos: -6.5,-40.5 parent: 2 type: Transform - proto: LockerBoozeFilled entities: - - uid: 1221 + - uid: 11780 components: - pos: -12.5,-5.5 parent: 2 type: Transform - - uid: 1737 + - uid: 11781 components: - pos: 35.5,-9.5 parent: 2 type: Transform - proto: LockerBotanistFilled entities: - - uid: 603 + - uid: 11782 components: - pos: -22.5,11.5 parent: 2 type: Transform - - uid: 612 + - uid: 11783 components: - pos: -22.5,10.5 parent: 2 type: Transform - proto: LockerCaptainFilledHardsuit entities: - - uid: 1534 + - uid: 11784 components: - pos: 2.5,38.5 parent: 2 type: Transform - proto: LockerChemistryFilled entities: - - uid: 803 + - uid: 11785 components: - pos: -29.5,1.5 parent: 2 type: Transform - - uid: 10882 + - uid: 11786 components: - pos: 17.5,11.5 parent: 2 type: Transform - proto: LockerChiefEngineerFilledHardsuit entities: - - uid: 4578 + - uid: 11787 components: - pos: 0.5,-30.5 parent: 2 type: Transform - proto: LockerChiefMedicalOfficerFilledHardsuit entities: - - uid: 4733 + - uid: 11788 components: - pos: 8.5,18.5 parent: 2 type: Transform - proto: LockerDetectiveFilled entities: - - uid: 16207 + - uid: 11789 components: - pos: 25.5,4.5 parent: 2 type: Transform - proto: LockerElectricalSuppliesFilled entities: - - uid: 14023 + - uid: 11790 components: - pos: -30.5,-17.5 parent: 2 type: Transform - proto: LockerEngineerFilledHardsuit entities: - - uid: 11071 + - uid: 11791 components: - pos: -2.5,-19.5 parent: 2 type: Transform - - uid: 11080 + - uid: 11792 components: - pos: -0.5,-19.5 parent: 2 type: Transform - - uid: 11083 + - uid: 11793 components: - pos: -0.5,-17.5 parent: 2 type: Transform - - uid: 11106 + - uid: 11794 components: - pos: -1.5,-19.5 parent: 2 type: Transform - - uid: 11107 + - uid: 11795 components: - pos: -0.5,-16.5 parent: 2 type: Transform - proto: LockerEvidence entities: - - uid: 14433 + - uid: 11796 components: - pos: -40.762257,-11.504958 parent: 2 type: Transform - - uid: 14506 + - uid: 11797 components: - pos: -34.272675,-15.476467 parent: 2 type: Transform - - uid: 15037 + - uid: 11798 components: - pos: -38.251842,-15.48689 parent: 2 type: Transform - - uid: 15050 + - uid: 11799 components: - pos: -40.751842,-13.516771 parent: 2 type: Transform - proto: LockerForensicMantisFilled entities: - - uid: 5753 + - uid: 11800 components: - pos: -36.5,31.5 parent: 2 type: Transform - proto: LockerFreezer entities: - - uid: 2337 + - uid: 11801 components: - name: standing freezer type: MetaData @@ -77319,170 +78689,170 @@ entities: type: Transform - proto: LockerHeadOfPersonnelFilled entities: - - uid: 3611 + - uid: 11802 components: - pos: 17.5,-6.5 parent: 2 type: Transform - proto: LockerHeadOfSecurityFilled entities: - - uid: 6682 + - uid: 11803 components: - pos: -32.5,-15.5 parent: 2 type: Transform - proto: LockerMedicalFilled entities: - - uid: 1078 + - uid: 11804 components: - pos: 6.5,11.5 parent: 2 type: Transform - - uid: 3531 + - uid: 11805 components: - pos: 6.5,9.5 parent: 2 type: Transform - - uid: 3533 + - uid: 11806 components: - pos: 6.5,10.5 parent: 2 type: Transform - - uid: 3536 + - uid: 11807 components: - pos: 6.5,8.5 parent: 2 type: Transform - proto: LockerMedicineFilled entities: - - uid: 4466 + - uid: 11808 components: - pos: 16.5,26.5 parent: 2 type: Transform - proto: LockerParamedicFilled entities: - - uid: 11122 + - uid: 11809 components: - pos: 7.5,12.5 parent: 2 type: Transform - - uid: 13006 + - uid: 11810 components: - pos: 8.5,12.5 parent: 2 type: Transform - proto: LockerQuarterMasterFilled entities: - - uid: 4830 + - uid: 11811 components: - pos: 3.5,-15.5 parent: 2 type: Transform - proto: LockerResearchDirectorFilledHardsuit entities: - - uid: 11241 + - uid: 11812 components: - pos: -49.5,39.5 parent: 2 type: Transform - proto: LockerSalvageSpecialistFilledHardsuit entities: - - uid: 31 + - uid: 11813 components: - pos: 12.5,-34.5 parent: 2 type: Transform - - uid: 11480 + - uid: 11814 components: - pos: 12.5,-30.5 parent: 2 type: Transform - - uid: 11481 + - uid: 11815 components: - pos: 12.5,-29.5 parent: 2 type: Transform - - uid: 15950 + - uid: 11816 components: - pos: 12.5,-33.5 parent: 2 type: Transform - proto: LockerScienceFilled entities: - - uid: 11124 + - uid: 11817 components: - pos: -38.5,34.5 parent: 2 type: Transform - - uid: 11135 + - uid: 11818 components: - pos: -38.5,37.5 parent: 2 type: Transform - - uid: 11184 + - uid: 11819 components: - pos: -38.5,35.5 parent: 2 type: Transform - - uid: 11239 + - uid: 11820 components: - pos: -38.5,36.5 parent: 2 type: Transform - proto: LockerSecurityFilled entities: - - uid: 990 + - uid: 11821 components: - pos: -23.5,-16.5 parent: 2 type: Transform - - uid: 991 + - uid: 11822 components: - pos: -23.5,-15.5 parent: 2 type: Transform - - uid: 992 + - uid: 11823 components: - pos: -23.5,-13.5 parent: 2 type: Transform - - uid: 993 + - uid: 11824 components: - pos: -23.5,-14.5 parent: 2 type: Transform - proto: LockerWardenFilled entities: - - uid: 1455 + - uid: 11825 components: - pos: -38.5,-4.5 parent: 2 type: Transform - proto: LockerWeldingSuppliesFilled entities: - - uid: 16095 + - uid: 11826 components: - pos: -36.5,-1.5 parent: 2 type: Transform - proto: MachineAnomalyGenerator entities: - - uid: 10641 + - uid: 11827 components: - pos: -39.5,43.5 parent: 2 type: Transform - proto: MachineAnomalyVessel entities: - - uid: 11498 + - uid: 11828 components: - pos: -41.5,44.5 parent: 2 type: Transform - proto: MachineAPE entities: - - uid: 13581 + - uid: 11829 components: - rot: 1.5707963267948966 rad pos: -42.5,44.5 @@ -77490,285 +78860,285 @@ entities: type: Transform - proto: MachineArtifactAnalyzer entities: - - uid: 10462 + - uid: 11830 components: - pos: -54.5,40.5 parent: 2 type: Transform - links: - - 4171 + - 6133 type: DeviceLinkSink - proto: MachineFrameDestroyed entities: - - uid: 4209 + - uid: 11831 components: - pos: -14.5,-71.5 parent: 2 type: Transform - proto: MagazineBoxPistolRubber entities: - - uid: 15306 + - uid: 11832 components: - pos: -40.250866,-4.7284784 parent: 2 type: Transform - proto: MailTeleporter entities: - - uid: 333 + - uid: 11833 components: - pos: 5.5,-2.5 parent: 2 type: Transform - proto: MaintenanceFluffSpawner entities: - - uid: 11680 + - uid: 11834 components: - pos: 26.5,28.5 parent: 2 type: Transform - - uid: 11759 + - uid: 11835 components: - pos: -10.5,29.5 parent: 2 type: Transform - - uid: 11760 + - uid: 11836 components: - pos: -19.5,30.5 parent: 2 type: Transform - - uid: 11763 + - uid: 11837 components: - pos: 37.5,17.5 parent: 2 type: Transform - - uid: 11778 + - uid: 11838 components: - pos: -27.5,-18.5 parent: 2 type: Transform - - uid: 11804 + - uid: 11839 components: - rot: 1.5707963267948966 rad pos: -38.5,47.5 parent: 2 type: Transform - - uid: 15999 + - uid: 11840 components: - pos: 13.5,30.5 parent: 2 type: Transform - - uid: 16066 + - uid: 11841 components: - pos: -36.5,-0.5 parent: 2 type: Transform - - uid: 16078 + - uid: 11842 components: - pos: -38.5,23.5 parent: 2 type: Transform - - uid: 16090 + - uid: 11843 components: - pos: 14.5,-19.5 parent: 2 type: Transform - - uid: 16112 + - uid: 11844 components: - pos: 17.5,-12.5 parent: 2 type: Transform - - uid: 16233 + - uid: 11845 components: - pos: 4.5,24.5 parent: 2 type: Transform - - uid: 16738 + - uid: 11846 components: - pos: -24.5,-28.5 parent: 2 type: Transform - - uid: 17005 + - uid: 11847 components: - pos: -19.5,16.5 parent: 2 type: Transform - - uid: 17006 + - uid: 11848 components: - pos: -13.5,18.5 parent: 2 type: Transform - proto: MaintenancePlantSpawner entities: - - uid: 17007 + - uid: 11849 components: - pos: -33.5,-21.5 parent: 2 type: Transform - - uid: 17008 + - uid: 11850 components: - pos: -34.5,41.5 parent: 2 type: Transform - proto: MaintenanceToolSpawner entities: - - uid: 11764 + - uid: 11851 components: - pos: 41.5,5.5 parent: 2 type: Transform - - uid: 11765 + - uid: 11852 components: - pos: 32.5,20.5 parent: 2 type: Transform - - uid: 11767 + - uid: 11853 components: - pos: -27.5,34.5 parent: 2 type: Transform - - uid: 11768 + - uid: 11854 components: - pos: -35.5,40.5 parent: 2 type: Transform - - uid: 11769 + - uid: 11855 components: - pos: -43.5,47.5 parent: 2 type: Transform - - uid: 11774 + - uid: 11856 components: - pos: -32.5,-20.5 parent: 2 type: Transform - - uid: 15245 + - uid: 11857 components: - pos: 5.5,-19.5 parent: 2 type: Transform - - uid: 16002 + - uid: 11858 components: - pos: -47.5,-0.5 parent: 2 type: Transform - - uid: 16061 + - uid: 11859 components: - pos: 15.5,-19.5 parent: 2 type: Transform - - uid: 16094 + - uid: 11860 components: - pos: 6.5,19.5 parent: 2 type: Transform - - uid: 16116 + - uid: 11861 components: - pos: 4.5,13.5 parent: 2 type: Transform - - uid: 16610 + - uid: 11862 components: - pos: -32.5,-27.5 parent: 2 type: Transform - - uid: 16739 + - uid: 11863 components: - pos: -28.5,-26.5 parent: 2 type: Transform - - uid: 16987 + - uid: 11864 components: - pos: 12.5,28.5 parent: 2 type: Transform - - uid: 16999 + - uid: 11865 components: - pos: 5.5,3.5 parent: 2 type: Transform - chance: 1 type: RandomSpawner - - uid: 17000 + - uid: 11866 components: - pos: 2.5,7.5 parent: 2 type: Transform - - uid: 17036 + - uid: 11867 components: - pos: 21.5,-21.5 parent: 2 type: Transform - - uid: 17037 + - uid: 11868 components: - pos: 20.5,-19.5 parent: 2 type: Transform - proto: MaintenanceWeaponSpawner entities: - - uid: 11003 + - uid: 11869 components: - pos: -16.5,30.5 parent: 2 type: Transform - - uid: 11771 + - uid: 11870 components: - pos: -52.5,50.5 parent: 2 type: Transform - - uid: 13161 + - uid: 11871 components: - pos: -28.5,21.5 parent: 2 type: Transform - - uid: 16003 + - uid: 11872 components: - pos: -0.5,6.5 parent: 2 type: Transform - - uid: 16115 + - uid: 11873 components: - pos: -28.5,-1.5 parent: 2 type: Transform - - uid: 17001 + - uid: 11874 components: - pos: -59.5,-11.5 parent: 2 type: Transform - chance: 0.33 type: RandomSpawner - - uid: 17002 + - uid: 11875 components: - pos: -49.5,1.5 parent: 2 type: Transform - chance: 0.33 type: RandomSpawner - - uid: 17003 + - uid: 11876 components: - pos: -51.5,3.5 parent: 2 type: Transform - proto: Matchbox entities: - - uid: 3507 + - uid: 11877 components: - pos: -10.623214,-40.594276 parent: 2 type: Transform - - uid: 16876 + - uid: 11878 components: - pos: -1.6566803,-9.189967 parent: 2 type: Transform - proto: MatchstickSpent entities: - - uid: 16874 + - uid: 11879 components: - pos: -1.4587636,-11.702128 parent: 2 type: Transform - - uid: 16875 + - uid: 11880 components: - rot: -1.5707963267948966 rad pos: -0.2504303,-7.866131 @@ -77776,284 +79146,284 @@ entities: type: Transform - proto: MaterialBiomass entities: - - uid: 15326 + - uid: 11881 components: - pos: 23.304926,26.475252 parent: 2 type: Transform - proto: MaterialCloth entities: - - uid: 9523 + - uid: 11882 components: - pos: -3.5870895,35.598076 parent: 2 type: Transform - proto: MaterialDurathread entities: - - uid: 9069 + - uid: 11883 components: - pos: -3.2246723,35.358982 parent: 2 type: Transform - proto: MaterialReclaimer entities: - - uid: 2034 + - uid: 11884 components: - pos: 12.5,-19.5 parent: 2 type: Transform - - uid: 11167 + - uid: 11885 components: - pos: 1.5,9.5 parent: 2 type: Transform - proto: Mattress entities: - - uid: 1297 + - uid: 11886 components: - pos: -59.5,-16.5 parent: 2 type: Transform - - uid: 2172 + - uid: 11887 components: - pos: -55.5,-17.5 parent: 2 type: Transform - - uid: 2931 + - uid: 11888 components: - pos: -53.5,-17.5 parent: 2 type: Transform - - uid: 3047 + - uid: 11889 components: - pos: -50.5,-16.5 parent: 2 type: Transform - - uid: 3050 + - uid: 11890 components: - pos: -58.5,-11.5 parent: 2 type: Transform - - uid: 12281 + - uid: 11891 components: - pos: -30.5,18.5 parent: 2 type: Transform - proto: MedicalBed entities: - - uid: 708 + - uid: 11892 components: - pos: -33.5,1.5 parent: 2 type: Transform - - uid: 710 + - uid: 11893 components: - pos: -32.5,1.5 parent: 2 type: Transform - - uid: 813 + - uid: 11894 components: - pos: -33.5,3.5 parent: 2 type: Transform - - uid: 814 + - uid: 11895 components: - pos: -32.5,3.5 parent: 2 type: Transform - - uid: 2009 + - uid: 11896 components: - pos: 23.5,3.5 parent: 2 type: Transform - - uid: 2011 + - uid: 11897 components: - pos: 23.5,5.5 parent: 2 type: Transform - - uid: 2102 + - uid: 11898 components: - pos: 17.5,5.5 parent: 2 type: Transform - - uid: 2108 + - uid: 11899 components: - pos: 21.5,3.5 parent: 2 type: Transform - - uid: 2109 + - uid: 11900 components: - pos: 19.5,3.5 parent: 2 type: Transform - - uid: 2110 + - uid: 11901 components: - pos: 19.5,5.5 parent: 2 type: Transform - - uid: 2112 + - uid: 11902 components: - pos: 21.5,5.5 parent: 2 type: Transform - - uid: 3551 + - uid: 11903 components: - pos: 17.5,3.5 parent: 2 type: Transform - proto: MedicalScanner entities: - - uid: 4459 + - uid: 11904 components: - pos: 22.5,23.5 parent: 2 type: Transform - proto: MedicalTechFab entities: - - uid: 13004 + - uid: 11905 components: - pos: 8.5,10.5 parent: 2 type: Transform - proto: MedkitAdvancedFilled entities: - - uid: 153 + - uid: 11906 components: - pos: -33.61622,-0.22362387 parent: 2 type: Transform - - uid: 2322 + - uid: 11907 components: - pos: -39.61396,1.6954846 parent: 2 type: Transform - - uid: 16962 + - uid: 11908 components: - pos: 21.629698,12.608099 parent: 2 type: Transform - proto: MedkitBruteFilled entities: - - uid: 4922 + - uid: 11909 components: - pos: 18.426147,3.446567 parent: 2 type: Transform - - uid: 4986 + - uid: 11910 components: - pos: 31.466284,3.6528134 parent: 2 type: Transform - - uid: 17079 + - uid: 11911 components: - pos: -47.34356,-12.883555 parent: 2 type: Transform - proto: MedkitBurnFilled entities: - - uid: 16264 + - uid: 11912 components: - pos: 22.281868,3.3742456 parent: 2 type: Transform - proto: MedkitCombatFilled entities: - - uid: 2320 + - uid: 11913 components: - pos: -39.36741,1.3493237 parent: 2 type: Transform - - uid: 13124 + - uid: 11914 components: - pos: 8.371661,19.445524 parent: 2 type: Transform - proto: MedkitFilled entities: - - uid: 180 + - uid: 11915 components: - pos: -33.319344,-0.42689192 parent: 2 type: Transform - - uid: 1839 + - uid: 11916 components: - pos: 8.264449,-31.267378 parent: 2 type: Transform - - uid: 6006 + - uid: 11917 components: - pos: 12.546082,7.3016906 parent: 2 type: Transform - - uid: 16193 + - uid: 11918 components: - pos: 12.389832,7.676951 parent: 2 type: Transform - - uid: 16266 + - uid: 11919 components: - pos: 18.691772,3.6967406 parent: 2 type: Transform - - uid: 16267 + - uid: 11920 components: - pos: 22.676147,3.6185603 parent: 2 type: Transform - - uid: 17080 + - uid: 11921 components: - pos: -36.566994,-12.461372 parent: 2 type: Transform - - uid: 17081 + - uid: 11922 components: - pos: -20.280146,-14.31227 parent: 2 type: Transform - proto: MedkitRadiationFilled entities: - - uid: 6455 + - uid: 11923 components: - pos: -48.61617,35.53166 parent: 2 type: Transform - - uid: 10061 + - uid: 11924 components: - pos: -33.098217,-0.17433691 parent: 2 type: Transform - - uid: 16194 + - uid: 11925 components: - pos: -10.281632,-37.66223 parent: 2 type: Transform - - uid: 16195 + - uid: 11926 components: - pos: -10.583715,-37.391212 parent: 2 type: Transform - proto: MedkitToxinFilled entities: - - uid: 11761 + - uid: 11927 components: - pos: -48.33895,35.24449 parent: 2 type: Transform - - uid: 16961 + - uid: 11928 components: - pos: 21.408052,12.925943 parent: 2 type: Transform - proto: MicrophoneInstrument entities: - - uid: 16804 + - uid: 11929 components: - pos: -12.9764385,22.003674 parent: 2 type: Transform - proto: MinimoogInstrument entities: - - uid: 1768 + - uid: 11930 components: - rot: 3.141592653589793 rad pos: -10.5,-5.5 @@ -78061,95 +79431,95 @@ entities: type: Transform - proto: Mirror entities: - - uid: 1187 + - uid: 11931 components: - rot: 1.5707963267948966 rad pos: 32.5,-14.5 parent: 2 type: Transform - - uid: 4242 + - uid: 11932 components: - pos: -27.5,13.5 parent: 2 type: Transform - proto: MonkeyCubeBox entities: - - uid: 61 + - uid: 11933 components: - pos: 28.205595,12.3553095 parent: 2 type: Transform - proto: MopBucketFull entities: - - uid: 3027 + - uid: 11934 components: - pos: -52.276764,-6.6527042 parent: 2 type: Transform - - uid: 4223 + - uid: 11935 components: - pos: 22.5,-14.5 parent: 2 type: Transform - - uid: 16153 + - uid: 11936 components: - pos: 0.6900537,9.946262 parent: 2 type: Transform - proto: MopItem entities: - - uid: 3026 + - uid: 11937 components: - pos: -52.354904,-6.2620792 parent: 2 type: Transform - - uid: 4226 + - uid: 11938 components: - pos: 22.348795,-13.526395 parent: 2 type: Transform - - uid: 4227 + - uid: 11939 components: - pos: 22.661295,-13.573302 parent: 2 type: Transform - - uid: 11206 + - uid: 11940 components: - pos: -1.657238,12.537073 parent: 2 type: Transform - - uid: 11207 + - uid: 11941 components: - pos: -1.313488,12.490166 parent: 2 type: Transform - proto: Morgue entities: - - uid: 4443 + - uid: 11942 components: - rot: 1.5707963267948966 rad pos: 25.5,20.5 parent: 2 type: Transform - - uid: 4444 + - uid: 11943 components: - rot: 1.5707963267948966 rad pos: 25.5,21.5 parent: 2 type: Transform - - uid: 4446 + - uid: 11944 components: - rot: -1.5707963267948966 rad pos: 29.5,20.5 parent: 2 type: Transform - - uid: 4447 + - uid: 11945 components: - rot: -1.5707963267948966 rad pos: 29.5,21.5 parent: 2 type: Transform - - uid: 4448 + - uid: 11946 components: - rot: -1.5707963267948966 rad pos: 29.5,22.5 @@ -78157,132 +79527,142 @@ entities: type: Transform - proto: Multitool entities: - - uid: 15383 + - uid: 11947 components: - pos: 22.429926,26.647127 parent: 2 type: Transform - - uid: 16816 + - uid: 11948 components: - pos: 4.79707,-10.595353 parent: 2 type: Transform - proto: NitrogenCanister entities: - - uid: 658 + - uid: 11949 components: - - pos: 4.5,-36.5 + - pos: -0.5,-35.5 parent: 2 type: Transform - proto: NitrousOxideCanister entities: - - uid: 6786 + - uid: 11950 + components: + - pos: 1.5,-35.5 + parent: 2 + type: Transform + - uid: 11951 components: - pos: -40.5,-6.5 parent: 2 type: Transform - proto: NuclearBomb entities: - - uid: 7949 + - uid: 11952 components: - pos: 1.5,19.5 parent: 2 type: Transform - proto: OilJarCorn entities: - - uid: 17210 + - uid: 11953 components: - pos: -10.322607,14.570831 parent: 2 type: Transform - proto: OperatingTable entities: - - uid: 4524 + - uid: 11954 components: - pos: 17.5,24.5 parent: 2 type: Transform - - uid: 9092 + - uid: 11955 components: - pos: 27.5,20.5 parent: 2 type: Transform - - uid: 11835 + - uid: 11956 components: - pos: -39.5,-24.5 parent: 2 type: Transform - proto: Oracle entities: - - uid: 5823 + - uid: 11957 components: - pos: -28.5,32.5 parent: 2 type: Transform - proto: OreBox entities: - - uid: 961 + - uid: 11958 components: - pos: 18.5,-45.5 parent: 2 type: Transform - proto: OreProcessor entities: - - uid: 6852 + - uid: 11959 components: - pos: 11.5,-28.5 parent: 2 type: Transform - proto: OreProcessorMachineCircuitboard entities: - - uid: 6821 + - uid: 11960 components: - pos: -14.342051,-26.350395 parent: 2 type: Transform - proto: OrganHumanKidneys entities: - - uid: 5381 + - uid: 11961 components: - pos: -38.592125,-22.352108 parent: 2 type: Transform - proto: OxygenCanister entities: - - uid: 660 - components: - - pos: 4.5,-35.5 - parent: 2 - type: Transform - - uid: 16986 + - uid: 11962 components: - pos: -36.5,1.5 parent: 2 type: Transform - - uid: 16994 + - uid: 11963 components: - pos: 4.5,30.5 parent: 2 type: Transform - - uid: 17011 + - uid: 11964 components: - pos: -28.5,-19.5 parent: 2 type: Transform + - uid: 11965 + components: + - pos: -0.5,-36.5 + parent: 2 + type: Transform + - uid: 17425 + components: + - pos: 7.5,-45.5 + parent: 2 + type: Transform - proto: PaintingAmogusTriptych entities: - - uid: 5510 + - uid: 11966 components: - rot: 3.141592653589793 rad pos: 0.5,36.5 parent: 2 type: Transform - - uid: 9607 + - uid: 11967 components: - pos: -50.5,51.5 parent: 2 type: Transform - - uid: 9610 + - uid: 11968 components: - rot: 3.141592653589793 rad pos: -48.5,45.5 @@ -78290,7 +79670,7 @@ entities: type: Transform - proto: PaintingMothBigCatch entities: - - uid: 16633 + - uid: 11969 components: - rot: -1.5707963267948966 rad pos: -2.5,-4.5 @@ -78298,7 +79678,7 @@ entities: type: Transform - proto: PaintingPrayerHands entities: - - uid: 3224 + - uid: 11970 components: - rot: -1.5707963267948966 rad pos: -30.5,37.5 @@ -78306,21 +79686,21 @@ entities: type: Transform - proto: PaintingRedBlueYellow entities: - - uid: 446 + - uid: 11971 components: - pos: 6.5,25.5 parent: 2 type: Transform - proto: PaintingSkeletonBoof entities: - - uid: 16386 + - uid: 11972 components: - pos: -57.5,-17.5 parent: 2 type: Transform - proto: Paper entities: - - uid: 16594 + - uid: 11973 components: - desc: Nobody forces you to read it, you decide for yourself if you will or won't. name: unaddressed letter @@ -78354,163 +79734,169 @@ entities: type: Paper - proto: PaperBin10 entities: - - uid: 1995 + - uid: 11974 components: - pos: -8.5,-15.5 parent: 2 type: Transform - - uid: 2962 + - uid: 11975 components: - pos: -21.5,-9.5 parent: 2 type: Transform - - uid: 3192 + - uid: 11976 components: - rot: 3.141592653589793 rad pos: -53.5,-12.5 parent: 2 type: Transform - - uid: 3887 + - uid: 11977 components: - pos: -11.5,-73.5 parent: 2 type: Transform - - uid: 3936 + - uid: 11978 components: - rot: -1.5707963267948966 rad pos: -3.5,-33.5 parent: 2 type: Transform - - uid: 4025 + - uid: 11979 components: - rot: -1.5707963267948966 rad pos: -22.5,44.5 parent: 2 type: Transform - - uid: 5896 + - uid: 11980 components: - pos: -43.5,28.5 parent: 2 type: Transform - - uid: 6696 + - uid: 11981 components: - pos: -8.5,44.5 parent: 2 type: Transform - - uid: 10053 + - uid: 11982 components: - pos: 11.5,-10.5 parent: 2 type: Transform - - uid: 15282 + - uid: 11983 components: - rot: 3.141592653589793 rad pos: -12.5,21.5 parent: 2 type: Transform - - uid: 15656 + - uid: 11984 components: - pos: 20.5,-3.5 parent: 2 type: Transform - - uid: 16651 + - uid: 11985 components: - pos: 8.5,27.5 parent: 2 type: Transform + - uid: 11986 + components: + - rot: 3.141592653589793 rad + pos: -0.5,-51.5 + parent: 2 + type: Transform - proto: PaperCaptainsThoughts entities: - - uid: 5157 + - uid: 11987 components: - pos: 2.3159418,39.60995 parent: 2 type: Transform - - uid: 13289 + - uid: 11988 components: - pos: 2.3159418,39.60995 parent: 2 type: Transform - - uid: 15091 + - uid: 11989 components: - pos: 2.3159418,39.60995 parent: 2 type: Transform - - uid: 15122 + - uid: 11990 components: - pos: 2.3628168,39.54745 parent: 2 type: Transform - - uid: 15634 + - uid: 11991 components: - pos: 2.3159418,39.60995 parent: 2 type: Transform - proto: PaperOffice entities: - - uid: 4294 + - uid: 11992 components: - pos: -31.276249,11.482831 parent: 2 type: Transform - - uid: 5402 + - uid: 11993 components: - pos: -10.698187,33.26429 parent: 2 type: Transform - - uid: 6648 + - uid: 11994 components: - pos: -9.487024,34.37757 parent: 2 type: Transform - - uid: 6694 + - uid: 11995 components: - pos: -9.643303,33.44007 parent: 2 type: Transform - - uid: 9161 + - uid: 11996 components: - pos: -35.21398,34.534798 parent: 2 type: Transform - - uid: 12586 + - uid: 11997 components: - pos: -20.671059,41.71369 parent: 2 type: Transform - - uid: 15198 + - uid: 11998 components: - pos: -20.530434,41.573067 parent: 2 type: Transform - - uid: 15223 + - uid: 11999 components: - rot: 3.141592653589793 rad pos: -23.217934,43.541817 parent: 2 type: Transform - - uid: 15456 + - uid: 12000 components: - pos: -25.702309,41.61994 parent: 2 type: Transform - - uid: 15474 + - uid: 12001 components: - pos: -25.561684,41.510567 parent: 2 type: Transform - - uid: 15585 + - uid: 12002 components: - rot: 3.141592653589793 rad pos: -23.702309,43.635567 parent: 2 type: Transform - - uid: 15784 + - uid: 12003 components: - rot: -1.5707963267948966 rad pos: -49.515285,0.51080203 parent: 2 type: Transform - - uid: 15785 + - uid: 12004 components: - rot: -1.5707963267948966 rad pos: -49.452785,0.35455203 @@ -78518,21 +79904,21 @@ entities: type: Transform - proto: ParchisBoard entities: - - uid: 16829 + - uid: 12005 components: - pos: -36.470303,-13.543975 parent: 2 type: Transform - proto: ParticleAcceleratorControlBox entities: - - uid: 4068 + - uid: 12006 components: - pos: -18.5,-36.5 parent: 2 type: Transform - proto: ParticleAcceleratorEmitterFore entities: - - uid: 4094 + - uid: 12007 components: - rot: -1.5707963267948966 rad pos: -22.5,-38.5 @@ -78540,7 +79926,7 @@ entities: type: Transform - proto: ParticleAcceleratorEmitterPort entities: - - uid: 4053 + - uid: 12008 components: - rot: -1.5707963267948966 rad pos: -22.5,-39.5 @@ -78548,7 +79934,7 @@ entities: type: Transform - proto: ParticleAcceleratorEmitterStarboard entities: - - uid: 16656 + - uid: 12009 components: - rot: -1.5707963267948966 rad pos: -22.5,-37.5 @@ -78556,7 +79942,7 @@ entities: type: Transform - proto: ParticleAcceleratorEndCap entities: - - uid: 5325 + - uid: 12010 components: - rot: -1.5707963267948966 rad pos: -19.5,-38.5 @@ -78564,7 +79950,7 @@ entities: type: Transform - proto: ParticleAcceleratorFuelChamber entities: - - uid: 4093 + - uid: 12011 components: - rot: -1.5707963267948966 rad pos: -20.5,-38.5 @@ -78572,7 +79958,7 @@ entities: type: Transform - proto: ParticleAcceleratorPowerBox entities: - - uid: 2636 + - uid: 12012 components: - rot: -1.5707963267948966 rad pos: -21.5,-38.5 @@ -78580,254 +79966,254 @@ entities: type: Transform - proto: PartRodMetal1 entities: - - uid: 5076 + - uid: 12013 components: - pos: 49.496426,11.719856 parent: 2 type: Transform - - uid: 5133 + - uid: 12014 components: - rot: -1.5707963267948966 rad pos: 51.87421,4.833787 parent: 2 type: Transform - - uid: 5288 + - uid: 12015 components: - rot: 1.5707963267948966 rad pos: 51.617245,16.938051 parent: 2 type: Transform - - uid: 5291 + - uid: 12016 components: - pos: 52.733746,3.4080057 parent: 2 type: Transform - - uid: 5292 + - uid: 12017 components: - rot: -1.5707963267948966 rad pos: 56.40329,3.5484595 parent: 2 type: Transform - - uid: 5293 + - uid: 12018 components: - rot: -1.5707963267948966 rad pos: 59.489803,6.0484595 parent: 2 type: Transform - - uid: 5294 + - uid: 12019 components: - rot: 3.141592653589793 rad pos: 55.60236,11.888304 parent: 2 type: Transform - - uid: 5295 + - uid: 12020 components: - rot: -1.5707963267948966 rad pos: 61.774414,11.285003 parent: 2 type: Transform - - uid: 5296 + - uid: 12021 components: - pos: 53.980965,20.74139 parent: 2 type: Transform - - uid: 5297 + - uid: 12022 components: - rot: -1.5707963267948966 rad pos: 62.73162,14.471336 parent: 2 type: Transform - - uid: 5298 + - uid: 12023 components: - rot: 3.141592653589793 rad pos: 59.76232,16.22641 parent: 2 type: Transform - - uid: 5300 + - uid: 12024 components: - rot: 1.5707963267948966 rad pos: 61.969765,2.739564 parent: 2 type: Transform - - uid: 5301 + - uid: 12025 components: - pos: 51.391308,13.731575 parent: 2 type: Transform - - uid: 6009 + - uid: 12026 components: - pos: -3.9439821,45.494835 parent: 2 type: Transform - - uid: 6016 + - uid: 12027 components: - rot: -1.5707963267948966 rad pos: -21.371998,47.40885 parent: 2 type: Transform - - uid: 6020 + - uid: 12028 components: - rot: 1.5707963267948966 rad pos: 43.418755,-5.455823 parent: 2 type: Transform - - uid: 6025 + - uid: 12029 components: - rot: -1.5707963267948966 rad pos: 4.4546337,-58.60449 parent: 2 type: Transform - - uid: 6257 + - uid: 12030 components: - pos: -42.28986,65.33305 parent: 2 type: Transform - - uid: 6299 + - uid: 12031 components: - pos: -46.903656,61.37159 parent: 2 type: Transform - - uid: 6382 + - uid: 12032 components: - pos: -50.654354,61.176277 parent: 2 type: Transform - - uid: 6390 + - uid: 12033 components: - pos: -45.47761,57.738777 parent: 2 type: Transform - - uid: 6406 + - uid: 12034 components: - pos: -49.40412,56.937996 parent: 2 type: Transform - - uid: 6435 + - uid: 12035 components: - pos: -48.64226,54.867683 parent: 2 type: Transform - - uid: 6437 + - uid: 12036 components: - pos: -47.62645,65.487564 parent: 2 type: Transform - - uid: 6459 + - uid: 12037 components: - pos: -44.911102,66.07365 parent: 2 type: Transform - - uid: 6460 + - uid: 12038 components: - pos: -35.901894,57.245884 parent: 2 type: Transform - - uid: 6461 + - uid: 12039 components: - pos: -38.217133,66.06448 parent: 2 type: Transform - - uid: 6462 + - uid: 12040 components: - pos: -35.54085,64.834015 parent: 2 type: Transform - - uid: 6463 + - uid: 12041 components: - pos: -34.749336,61.669937 parent: 2 type: Transform - - uid: 6464 + - uid: 12042 components: - pos: -39.92608,60.687206 parent: 2 type: Transform - - uid: 6465 + - uid: 12043 components: - pos: -40.429897,56.24979 parent: 2 type: Transform - - uid: 6466 + - uid: 12044 components: - pos: -33.49501,54.70682 parent: 2 type: Transform - - uid: 6467 + - uid: 12045 components: - pos: -32.576874,60.48807 parent: 2 type: Transform - - uid: 6469 + - uid: 12046 components: - pos: -33.221523,68.63313 parent: 2 type: Transform - - uid: 6470 + - uid: 12047 components: - pos: -40.454643,68.73079 parent: 2 type: Transform - - uid: 6471 + - uid: 12048 components: - pos: -43.460148,70.66438 parent: 2 type: Transform - - uid: 6472 + - uid: 12049 components: - pos: -49.58039,68.6136 parent: 2 type: Transform - - uid: 6473 + - uid: 12050 components: - pos: -51.35794,54.15061 parent: 2 type: Transform - - uid: 8058 + - uid: 12051 components: - rot: 1.5707963267948966 rad pos: 50.567333,7.2012386 parent: 2 type: Transform - - uid: 11721 + - uid: 12052 components: - pos: 51.680824,5.4629574 parent: 2 type: Transform - - uid: 13442 + - uid: 12053 components: - pos: -64.69886,36.786247 parent: 2 type: Transform - - uid: 13443 + - uid: 12054 components: - rot: -1.5707963267948966 rad pos: -65.18723,37.76281 parent: 2 type: Transform - - uid: 13444 + - uid: 12055 components: - rot: 3.141592653589793 rad pos: -62.82351,39.65734 parent: 2 type: Transform - - uid: 13445 + - uid: 12056 components: - rot: 1.5707963267948966 rad pos: -61.123978,41.395622 parent: 2 type: Transform - - uid: 13446 + - uid: 12057 components: - pos: -62.217934,34.18859 parent: 2 type: Transform - - uid: 13447 + - uid: 12058 components: - rot: -1.5707963267948966 rad pos: -64.7184,30.559227 parent: 2 type: Transform - - uid: 13448 + - uid: 12059 components: - rot: -1.5707963267948966 rad pos: -58.137184,44.835064 @@ -78835,95 +80221,105 @@ entities: type: Transform - proto: Pen entities: - - uid: 14251 + - uid: 12060 components: - pos: -35.573357,34.456673 parent: 2 type: Transform - - uid: 15481 + - uid: 12061 components: - pos: -26.686684,41.49494 parent: 2 type: Transform - - uid: 15586 + - uid: 12062 components: - pos: -21.717934,41.52619 parent: 2 type: Transform - - uid: 15798 + - uid: 12063 components: - pos: -49.573605,0.93681246 parent: 2 type: Transform + - uid: 12064 + components: + - pos: -1.5,-51.5 + parent: 2 + type: Transform - proto: PersonalAI entities: - - uid: 1329 + - uid: 12065 components: - pos: -48.4323,34.57368 parent: 2 type: Transform - proto: PhoneInstrument entities: - - uid: 3827 + - uid: 12066 components: - pos: -11.485,-79.481026 parent: 2 type: Transform - - uid: 4172 + - uid: 12067 components: - pos: -19.510458,-79.507164 parent: 2 type: Transform - proto: PillMindbreakerToxin entities: - - uid: 6670 + - uid: 12068 components: - pos: -34.354607,34.588753 parent: 2 type: Transform - - uid: 9162 + - uid: 12069 components: - pos: -34.479607,34.760628 parent: 2 type: Transform - proto: PinpointerNuclear entities: - - uid: 15374 + - uid: 12070 components: - pos: -0.56012964,20.614931 parent: 2 type: Transform - proto: PlantBag entities: - - uid: 16358 + - uid: 12071 components: - pos: -62.631588,-5.6212254 parent: 2 type: Transform - proto: PlaqueAtmos entities: - - uid: 2672 + - uid: 12072 components: - rot: -1.5707963267948966 rad - pos: -4.5,-43.5 + pos: -4.5,-52.5 parent: 2 type: Transform - proto: PlasmaCanister entities: - - uid: 14768 + - uid: 12073 + components: + - pos: 7.5,-49.5 + parent: 2 + type: Transform + - uid: 12074 components: - - pos: 3.5,-41.5 + - pos: 1.5,-36.5 parent: 2 type: Transform - proto: PlasmaReinforcedWindowDirectional entities: - - uid: 15191 + - uid: 12075 components: - rot: -1.5707963267948966 rad pos: -40.5,1.5 parent: 2 type: Transform - - uid: 15351 + - uid: 12076 components: - rot: 1.5707963267948966 rad pos: -42.5,1.5 @@ -78931,67 +80327,67 @@ entities: type: Transform - proto: PlasmaTankFilled entities: - - uid: 2563 + - uid: 12077 components: - pos: -18.588102,-40.51464 parent: 2 type: Transform - proto: PlasticFlapsAirtightClear entities: - - uid: 371 + - uid: 12078 components: - pos: 15.5,-11.5 parent: 2 type: Transform - - uid: 2064 + - uid: 12079 components: - pos: 22.5,-35.5 parent: 2 type: Transform - - uid: 2065 + - uid: 12080 components: - pos: 18.5,-35.5 parent: 2 type: Transform - - uid: 8342 + - uid: 12081 components: - pos: 11.5,-18.5 parent: 2 type: Transform - - uid: 16215 + - uid: 12082 components: - pos: 22.5,-33.5 parent: 2 type: Transform - - uid: 16216 + - uid: 12083 components: - pos: 18.5,-33.5 parent: 2 type: Transform - proto: PlasticFlapsOpaque entities: - - uid: 370 + - uid: 12084 components: - pos: 15.5,-7.5 parent: 2 type: Transform - proto: PlushieBee entities: - - uid: 16596 + - uid: 12085 components: - pos: -8.650637,1.4858495 parent: 2 type: Transform - proto: PlushieMothRandom entities: - - uid: 17082 + - uid: 12086 components: - pos: 7.4780726,-23.615965 parent: 2 type: Transform - proto: PlushieNuke entities: - - uid: 13456 + - uid: 12087 components: - desc: A stuffed toy that resembles a security guard. name: security guard plushie @@ -79001,165 +80397,165 @@ entities: type: Transform - proto: PlushieSharkPink entities: - - uid: 4381 + - uid: 12088 components: - pos: 28.51114,14.444282 parent: 2 type: Transform - proto: PlushieSpaceLizard entities: - - uid: 2928 + - uid: 12089 components: - pos: -30.526485,-39.54669 parent: 2 type: Transform - - uid: 13454 + - uid: 12090 components: - pos: -4.3050823,46.367626 parent: 2 type: Transform - proto: PortableFlasher entities: - - uid: 15671 + - uid: 12091 components: - pos: -40.5,1.5 parent: 2 type: Transform - - uid: 15672 + - uid: 12092 components: - pos: -42.5,1.5 parent: 2 type: Transform - - uid: 15673 + - uid: 12093 components: - pos: -42.5,-4.5 parent: 2 type: Transform - - uid: 15674 + - uid: 12094 components: - pos: -21.5,-16.5 parent: 2 type: Transform - proto: PortableGeneratorJrPacman entities: - - uid: 3552 + - uid: 12095 components: - pos: 23.5,-21.5 parent: 2 type: Transform - - uid: 6843 + - uid: 12096 components: - pos: -30.5,-21.5 parent: 2 type: Transform - - uid: 9560 + - uid: 12097 components: - pos: -15.5,18.5 parent: 2 type: Transform - proto: PortableGeneratorPacman entities: - - uid: 3986 + - uid: 12098 components: - pos: -2.5,-26.5 parent: 2 type: Transform - proto: PortableGeneratorPacmanMachineCircuitboard entities: - - uid: 6818 + - uid: 12099 components: - pos: -13.592051,-26.621416 parent: 2 type: Transform - - uid: 6819 + - uid: 12100 components: - pos: -13.3628845,-26.402514 parent: 2 type: Transform - proto: PortableGeneratorSuperPacman entities: - - uid: 1983 + - uid: 12101 components: - pos: -14.5,-81.5 parent: 2 type: Transform - - uid: 3985 + - uid: 12102 components: - pos: -3.5,-26.5 parent: 2 type: Transform - - uid: 9266 + - uid: 12103 components: - pos: -14.5,-82.5 parent: 2 type: Transform - proto: PortableScrubber entities: - - uid: 2259 + - uid: 12104 components: - pos: -8.5,-35.5 parent: 2 type: Transform - - uid: 2876 + - uid: 12105 components: - pos: -8.5,-34.5 parent: 2 type: Transform - - uid: 6183 + - uid: 12106 components: - pos: -52.5,31.5 parent: 2 type: Transform - - uid: 15576 + - uid: 12107 components: - pos: -18.5,13.5 parent: 2 type: Transform - proto: PositronicBrain entities: - - uid: 16391 + - uid: 12108 components: - pos: -41.489174,39.571587 parent: 2 type: Transform - proto: PosterContrabandBeachStarYamamoto entities: - - uid: 16123 + - uid: 12109 components: - pos: -29.5,20.5 parent: 2 type: Transform - proto: PosterContrabandBustyBackdoorExoBabes6 entities: - - uid: 15470 + - uid: 12110 components: - pos: -30.5,21.5 parent: 2 type: Transform - proto: PosterContrabandClown entities: - - uid: 1697 + - uid: 12111 components: - pos: -35.5,8.5 parent: 2 type: Transform - proto: PosterContrabandDDayPromo entities: - - uid: 15458 + - uid: 12112 components: - pos: -29.5,19.5 parent: 2 type: Transform - proto: PosterContrabandFunPolice entities: - - uid: 3230 + - uid: 12113 components: - pos: -50.5,-11.5 parent: 2 type: Transform - proto: PosterContrabandLamarr entities: - - uid: 6603 + - uid: 12114 components: - rot: -1.5707963267948966 rad pos: -46.5,42.5 @@ -79167,40 +80563,40 @@ entities: type: Transform - proto: PosterContrabandLustyExomorph entities: - - uid: 11965 + - uid: 12115 components: - pos: -31.5,21.5 parent: 2 type: Transform - proto: PosterContrabandMissingGloves entities: - - uid: 6893 + - uid: 12116 components: - pos: -15.5,-15.5 parent: 2 type: Transform - - uid: 14013 + - uid: 12117 components: - pos: 12.5,-28.5 parent: 2 type: Transform - proto: PosterContrabandNuclearDeviceInformational entities: - - uid: 6891 + - uid: 12118 components: - pos: 2.5,19.5 parent: 2 type: Transform - proto: PosterContrabandRevolver entities: - - uid: 15986 + - uid: 12119 components: - pos: -44.5,-13.5 parent: 2 type: Transform - proto: PosterContrabandSafetyMothSyndie entities: - - uid: 15167 + - uid: 12120 components: - rot: -1.5707963267948966 rad pos: 34.5,20.5 @@ -79208,13 +80604,13 @@ entities: type: Transform - proto: PosterContrabandTools entities: - - uid: 6923 + - uid: 12121 components: - rot: 3.141592653589793 rad pos: -22.5,-41.5 parent: 2 type: Transform - - uid: 16022 + - uid: 12122 components: - rot: 3.141592653589793 rad pos: 23.5,-16.5 @@ -79222,44 +80618,36 @@ entities: type: Transform - proto: PosterLegit12Gauge entities: - - uid: 15860 + - uid: 12123 components: - pos: -44.5,-3.5 parent: 2 type: Transform - proto: PosterLegitBlessThisSpess entities: - - uid: 13453 + - uid: 12124 components: - pos: -48.5,43.5 parent: 2 type: Transform - proto: PosterLegitBuild entities: - - uid: 312 + - uid: 12125 components: - rot: 1.5707963267948966 rad pos: 6.5,-22.5 parent: 2 type: Transform -- proto: PosterLegitCarbonDioxide - entities: - - uid: 11727 - components: - - rot: 1.5707963267948966 rad - pos: -3.5,-45.5 - parent: 2 - type: Transform - proto: PosterLegitCleanliness entities: - - uid: 15670 + - uid: 12126 components: - pos: 35.5,-17.5 parent: 2 type: Transform - proto: PosterLegitDoNotQuestion entities: - - uid: 15600 + - uid: 12127 components: - rot: 1.5707963267948966 rad pos: -57.5,-10.5 @@ -79267,7 +80655,7 @@ entities: type: Transform - proto: PosterLegitEnlist entities: - - uid: 15187 + - uid: 12128 components: - rot: 1.5707963267948966 rad pos: -23.5,-1.5 @@ -79275,28 +80663,28 @@ entities: type: Transform - proto: PosterLegitFuckAround entities: - - uid: 15568 + - uid: 12129 components: - pos: -57.5,-12.5 parent: 2 type: Transform - proto: PosterLegitHelpOthers entities: - - uid: 11099 + - uid: 12130 components: - pos: 16.5,8.5 parent: 2 type: Transform - proto: PosterLegitHereForYourSafety entities: - - uid: 15806 + - uid: 12131 components: - pos: -1.5,20.5 parent: 2 type: Transform - proto: PosterLegitJustAWeekAway entities: - - uid: 15540 + - uid: 12132 components: - rot: 1.5707963267948966 rad pos: 18.5,26.5 @@ -79304,18 +80692,18 @@ entities: type: Transform - proto: PosterLegitLoveIan entities: - - uid: 13738 + - uid: 12133 components: - pos: -26.5,-23.5 parent: 2 type: Transform - - uid: 15662 + - uid: 12134 components: - rot: 3.141592653589793 rad pos: 22.5,-6.5 parent: 2 type: Transform - - uid: 15690 + - uid: 12135 components: - rot: -1.5707963267948966 rad pos: -35.5,18.5 @@ -79323,7 +80711,7 @@ entities: type: Transform - proto: PosterLegitMedicate entities: - - uid: 11725 + - uid: 12136 components: - rot: 1.5707963267948966 rad pos: 12.5,9.5 @@ -79331,70 +80719,77 @@ entities: type: Transform - proto: PosterLegitNanotrasenLogo entities: - - uid: 3203 + - uid: 12137 components: - pos: -26.5,44.5 parent: 2 type: Transform - - uid: 3789 + - uid: 12138 components: - pos: -4.5,32.5 parent: 2 type: Transform - - uid: 3838 + - uid: 12139 components: - pos: -18.5,34.5 parent: 2 type: Transform - - uid: 3921 + - uid: 12140 components: - pos: -23.5,37.5 parent: 2 type: Transform - - uid: 3929 + - uid: 12141 components: - pos: -20.5,44.5 parent: 2 type: Transform - - uid: 4006 + - uid: 12142 components: - pos: -22.5,45.5 parent: 2 type: Transform - - uid: 4008 + - uid: 12143 components: - pos: -24.5,45.5 parent: 2 type: Transform - proto: PosterLegitNoERP entities: - - uid: 15575 + - uid: 12144 components: - pos: -26.5,11.5 parent: 2 type: Transform - proto: PosterLegitObey entities: - - uid: 15669 + - uid: 12145 components: - pos: -1.5,18.5 parent: 2 type: Transform - proto: PosterLegitPDAAd entities: - - uid: 12681 + - uid: 12146 components: - pos: 21.5,-2.5 parent: 2 type: Transform +- proto: PosterLegitPeriodicTable + entities: + - uid: 12147 + components: + - pos: -2.5,-52.5 + parent: 2 + type: Transform - proto: PosterLegitReportCrimes entities: - - uid: 13269 + - uid: 12148 components: - pos: 29.5,2.5 parent: 2 type: Transform - - uid: 15541 + - uid: 12149 components: - rot: 3.141592653589793 rad pos: -20.5,-6.5 @@ -79402,21 +80797,21 @@ entities: type: Transform - proto: PosterLegitSafetyEyeProtection entities: - - uid: 6896 + - uid: 12150 components: - pos: -5.5,-27.5 parent: 2 type: Transform - proto: PosterLegitSafetyMothBoH entities: - - uid: 5498 + - uid: 12151 components: - pos: -17.5,-40.5 parent: 2 type: Transform - proto: PosterLegitSafetyMothDelam entities: - - uid: 14769 + - uid: 12152 components: - rot: -1.5707963267948966 rad pos: -42.5,45.5 @@ -79424,7 +80819,7 @@ entities: type: Transform - proto: PosterLegitSafetyMothGlimmer entities: - - uid: 15162 + - uid: 12153 components: - rot: -1.5707963267948966 rad pos: -43.5,35.5 @@ -79432,14 +80827,14 @@ entities: type: Transform - proto: PosterLegitSafetyMothHardhat entities: - - uid: 13187 + - uid: 12154 components: - pos: -5.5,-16.5 parent: 2 type: Transform - proto: PosterLegitSafetyMothMeth entities: - - uid: 15164 + - uid: 12155 components: - rot: -1.5707963267948966 rad pos: 20.5,13.5 @@ -79447,28 +80842,21 @@ entities: type: Transform - proto: PosterLegitSafetyMothPills entities: - - uid: 15692 + - uid: 12156 components: - rot: -1.5707963267948966 rad pos: 13.5,11.5 parent: 2 type: Transform -- proto: PosterLegitSafetyMothPiping - entities: - - uid: 6895 - components: - - pos: -8.5,-42.5 - parent: 2 - type: Transform - proto: PosterLegitSafetyMothPoisoning entities: - - uid: 12116 + - uid: 12157 components: - rot: 3.141592653589793 rad pos: 24.5,4.5 parent: 2 type: Transform - - uid: 15694 + - uid: 12158 components: - rot: -1.5707963267948966 rad pos: 29.5,14.5 @@ -79476,12 +80864,12 @@ entities: type: Transform - proto: PosterLegitSecWatch entities: - - uid: 950 + - uid: 12159 components: - pos: -19.5,-11.5 parent: 2 type: Transform - - uid: 15557 + - uid: 12160 components: - rot: 3.141592653589793 rad pos: -52.5,-5.5 @@ -79489,7 +80877,7 @@ entities: type: Transform - proto: PosterLegitSpaceCops entities: - - uid: 204 + - uid: 12161 components: - rot: 1.5707963267948966 rad pos: -44.5,-12.5 @@ -79497,34 +80885,34 @@ entities: type: Transform - proto: PosterLegitStateLaws entities: - - uid: 6897 + - uid: 12162 components: - rot: 3.141592653589793 rad pos: -20.5,-72.5 parent: 2 type: Transform - - uid: 15866 + - uid: 12163 components: - pos: -43.5,-3.5 parent: 2 type: Transform - proto: PottedPlant1 entities: - - uid: 2038 + - uid: 12164 components: - pos: -3.6492977,-32.762848 parent: 2 type: Transform - proto: PottedPlant21 entities: - - uid: 1373 + - uid: 12165 components: - pos: -11.5,37.5 parent: 2 type: Transform - type: ScaleVisuals - type: Appearance - - uid: 1715 + - uid: 12166 components: - pos: -8.5,37.5 parent: 2 @@ -79533,14 +80921,14 @@ entities: - type: Appearance - proto: PottedPlant26 entities: - - uid: 3114 + - uid: 12167 components: - pos: -27.5,11.5 parent: 2 type: Transform - proto: PottedPlant28 entities: - - uid: 3597 + - uid: 12168 components: - pos: 28.5,8.5 parent: 2 @@ -79549,28 +80937,28 @@ entities: stash: !type:ContainerSlot showEnts: False occludes: True - ent: 3598 + ent: 12169 type: ContainerContainer - - uid: 3912 + - uid: 12170 components: - pos: 33.5,-16.5 parent: 2 type: Transform - proto: PottedPlant29 entities: - - uid: 12287 + - uid: 12171 components: - pos: 8.300806,20.221859 parent: 2 type: Transform - proto: PottedPlantBioluminscent entities: - - uid: 6186 + - uid: 12172 components: - pos: -40.48007,31.244905 parent: 2 type: Transform - - uid: 12708 + - uid: 12173 components: - pos: 21.5,32.5 parent: 2 @@ -79579,2060 +80967,2076 @@ entities: - type: Appearance - proto: PottedPlantRandom entities: - - uid: 278 + - uid: 12174 components: - pos: -7.5,3.5 parent: 2 type: Transform - - uid: 388 + - uid: 12175 components: - pos: -39.5,7.5 parent: 2 type: Transform - - uid: 635 + - uid: 12176 components: - pos: -15.5,7.5 parent: 2 type: Transform - - uid: 898 + - uid: 12177 components: - pos: -21.5,21.5 parent: 2 type: Transform - - uid: 3603 + - uid: 12178 components: - pos: 28.5,2.5 parent: 2 type: Transform - - uid: 4186 + - uid: 12179 components: - rot: -1.5707963267948966 rad pos: -22.5,-75.5 parent: 2 type: Transform - - uid: 4570 + - uid: 12180 components: - pos: 10.5,24.5 parent: 2 type: Transform - - uid: 4767 + - uid: 12181 components: - pos: 10.5,8.5 parent: 2 type: Transform - - uid: 11164 + - uid: 12182 components: - pos: -21.5,1.5 parent: 2 type: Transform - - uid: 11839 + - uid: 12183 components: - pos: 23.5,-8.5 parent: 2 type: Transform - - uid: 12090 + - uid: 12184 components: - pos: -12.5,27.5 parent: 2 type: Transform - - uid: 12091 + - uid: 12185 components: - pos: -2.5,8.5 parent: 2 type: Transform - - uid: 13008 + - uid: 12186 components: - pos: 21.5,19.5 parent: 2 type: Transform - - uid: 15196 + - uid: 12187 components: - pos: -43.5,13.5 parent: 2 type: Transform - - uid: 15260 + - uid: 12188 components: - pos: -43.5,19.5 parent: 2 type: Transform - - uid: 15812 + - uid: 12189 components: - pos: -18.5,-5.5 parent: 2 type: Transform - - uid: 15872 + - uid: 12190 components: - pos: -27.5,7.5 parent: 2 type: Transform - - uid: 16892 + - uid: 12191 components: - pos: -12.5,1.5 parent: 2 type: Transform - - uid: 16912 + - uid: 12192 components: - pos: -6.5,27.5 parent: 2 type: Transform - - uid: 16913 + - uid: 12193 components: - pos: -2.5,27.5 parent: 2 type: Transform - proto: PottedPlantRandomPlastic entities: - - uid: 811 + - uid: 12194 components: - pos: -27.5,1.5 parent: 2 type: Transform - - uid: 914 + - uid: 12195 components: - pos: 3.5,-12.5 parent: 2 type: Transform - - uid: 1025 + - uid: 12196 components: - pos: -30.5,3.5 parent: 2 type: Transform - - uid: 1643 + - uid: 12197 components: - pos: 8.5,-2.5 parent: 2 type: Transform - - uid: 4499 + - uid: 12198 components: - pos: 19.5,26.5 parent: 2 type: Transform - - uid: 11019 + - uid: 12199 components: - pos: 9.5,-27.5 parent: 2 type: Transform - - uid: 12092 + - uid: 12200 components: - pos: -5.5,-12.5 parent: 2 type: Transform - - uid: 15321 + - uid: 12201 components: - pos: -36.5,18.5 parent: 2 type: Transform - - uid: 16140 + - uid: 12202 components: - pos: -18.5,-13.5 parent: 2 type: Transform - - uid: 16141 + - uid: 12203 components: - pos: -18.5,-7.5 parent: 2 type: Transform - - uid: 16807 + - uid: 12204 components: - pos: 3.5,-5.5 parent: 2 type: Transform - proto: PowerCellRecharger entities: - - uid: 910 + - uid: 12205 components: - pos: 14.5,-32.5 parent: 2 type: Transform - - uid: 1086 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-41.5 - parent: 2 - type: Transform - - uid: 1459 + - uid: 12206 components: - pos: -32.5,-10.5 parent: 2 type: Transform - - uid: 1828 + - uid: 12207 components: - rot: -1.5707963267948966 rad pos: -1.5,-15.5 parent: 2 type: Transform - - uid: 12520 + - uid: 12208 components: - pos: 23.5,-18.5 parent: 2 type: Transform - - uid: 13589 + - uid: 12209 components: - rot: -1.5707963267948966 rad pos: 27.5,7.5 parent: 2 type: Transform - - uid: 15295 + - uid: 12210 components: - rot: 1.5707963267948966 rad pos: -32.5,-0.5 parent: 2 type: Transform - - uid: 16844 + - uid: 12211 components: - pos: 5.5,-5.5 parent: 2 type: Transform - - uid: 16860 + - uid: 12212 components: - pos: -26.5,22.5 parent: 2 type: Transform - - uid: 16998 + - uid: 12213 components: - pos: 10.5,10.5 parent: 2 type: Transform - - uid: 17066 + - uid: 12214 components: - pos: 21.5,8.5 parent: 2 type: Transform - proto: Poweredlight entities: - - uid: 149 + - uid: 12215 components: - rot: -1.5707963267948966 rad pos: -7.5,3.5 parent: 2 type: Transform - - uid: 234 + - uid: 12216 components: - rot: 1.5707963267948966 rad pos: -14.5,22.5 parent: 2 type: Transform - - uid: 421 + - uid: 12217 components: - rot: 3.141592653589793 rad pos: 5.5,-17.5 parent: 2 type: Transform - - uid: 822 + - uid: 12218 components: - rot: -1.5707963267948966 rad pos: -19.5,19.5 parent: 2 type: Transform - - uid: 880 + - uid: 12219 components: - rot: 1.5707963267948966 rad pos: -14.5,-22.5 parent: 2 type: Transform - - uid: 952 + - uid: 12220 components: - rot: 3.141592653589793 rad pos: 7.5,-7.5 parent: 2 type: Transform - - uid: 981 + - uid: 12221 components: - rot: -1.5707963267948966 rad pos: 15.5,-10.5 parent: 2 type: Transform - - uid: 983 + - uid: 12222 components: - rot: 3.141592653589793 rad pos: -49.5,9.5 parent: 2 type: Transform - - uid: 1230 + - uid: 12223 components: - rot: 3.141592653589793 rad pos: 21.5,-15.5 parent: 2 type: Transform - - uid: 1354 + - uid: 12224 components: - rot: -1.5707963267948966 rad pos: -49.5,0.5 parent: 2 type: Transform - - uid: 1845 + - uid: 12225 components: - rot: 3.141592653589793 rad pos: 4.5,-13.5 parent: 2 type: Transform - - uid: 2495 + - uid: 12226 components: - pos: -13.5,7.5 parent: 2 type: Transform - - uid: 2778 - components: - - pos: -3.5,-35.5 - parent: 2 - type: Transform - - uid: 2872 + - uid: 12227 components: - rot: 1.5707963267948966 rad pos: -4.5,8.5 parent: 2 type: Transform - - uid: 2985 + - uid: 12228 components: - pos: 16.5,-24.5 parent: 2 type: Transform - - uid: 2994 - components: - - pos: -1.5,-35.5 - parent: 2 - type: Transform - - uid: 3843 + - uid: 12229 components: - rot: 1.5707963267948966 rad pos: 9.5,-15.5 parent: 2 type: Transform - - uid: 4024 + - uid: 12230 components: - rot: 1.5707963267948966 rad pos: 8.5,18.5 parent: 2 type: Transform - - uid: 4478 + - uid: 12231 components: - rot: -1.5707963267948966 rad pos: -23.5,2.5 parent: 2 type: Transform - - uid: 4559 + - uid: 12232 components: - pos: 9.5,22.5 parent: 2 type: Transform - - uid: 4567 + - uid: 12233 components: - rot: 1.5707963267948966 rad pos: -5.5,3.5 parent: 2 type: Transform - - uid: 5144 + - uid: 12234 components: - pos: -16.5,-51.5 parent: 2 type: Transform - - uid: 5174 + - uid: 12235 components: - pos: 4.5,-2.5 parent: 2 type: Transform - - uid: 5214 + - uid: 12236 components: - rot: -1.5707963267948966 rad pos: -26.5,31.5 parent: 2 type: Transform - - uid: 5392 + - uid: 12237 components: - rot: 1.5707963267948966 rad pos: -39.5,-23.5 parent: 2 type: Transform - - uid: 5481 + - uid: 12238 components: - rot: -1.5707963267948966 rad pos: -7.5,34.5 parent: 2 type: Transform - - uid: 5487 + - uid: 12239 components: - pos: -8.5,39.5 parent: 2 type: Transform - - uid: 5490 + - uid: 12240 components: - pos: 0.5,42.5 parent: 2 type: Transform - - uid: 5493 + - uid: 12241 components: - pos: -14.5,39.5 parent: 2 type: Transform - - uid: 5495 + - uid: 12242 components: - rot: 1.5707963267948966 rad pos: -12.5,34.5 parent: 2 type: Transform - - uid: 5525 + - uid: 12243 components: - rot: 3.141592653589793 rad pos: 35.5,-9.5 parent: 2 type: Transform - - uid: 6198 + - uid: 12244 components: - pos: -50.5,50.5 parent: 2 type: Transform - - uid: 6205 + - uid: 12245 components: - rot: 3.141592653589793 rad pos: -50.5,45.5 parent: 2 type: Transform - - uid: 6271 + - uid: 12246 components: - rot: 1.5707963267948966 rad pos: -13.5,42.5 parent: 2 type: Transform - - uid: 6610 + - uid: 12247 components: - rot: 1.5707963267948966 rad pos: 6.5,8.5 parent: 2 type: Transform - - uid: 6745 + - uid: 12248 components: - rot: -1.5707963267948966 rad pos: 5.5,-28.5 parent: 2 type: Transform - - uid: 6837 + - uid: 12249 components: - pos: 3.5,-22.5 parent: 2 type: Transform - - uid: 6840 + - uid: 12250 components: - rot: 1.5707963267948966 rad pos: -53.5,20.5 parent: 2 type: Transform - - uid: 6845 + - uid: 12251 components: - rot: 1.5707963267948966 rad pos: -53.5,12.5 parent: 2 type: Transform - - uid: 7974 + - uid: 12252 components: - pos: 0.5,12.5 parent: 2 type: Transform - - uid: 8407 + - uid: 12253 components: - rot: 3.141592653589793 rad pos: 20.5,-32.5 parent: 2 type: Transform - - uid: 8691 + - uid: 12254 components: - rot: 3.141592653589793 rad pos: -45.5,9.5 parent: 2 type: Transform - - uid: 8692 + - uid: 12255 components: - rot: -1.5707963267948966 rad pos: -45.5,14.5 parent: 2 type: Transform - - uid: 8723 + - uid: 12256 components: - rot: -1.5707963267948966 rad pos: -40.5,20.5 parent: 2 type: Transform - - uid: 8736 + - uid: 12257 components: - rot: -1.5707963267948966 rad pos: -40.5,12.5 parent: 2 type: Transform - - uid: 8738 + - uid: 12258 components: - rot: 3.141592653589793 rad pos: -38.5,13.5 parent: 2 type: Transform - - uid: 8739 + - uid: 12259 components: - pos: -33.5,16.5 parent: 2 type: Transform - - uid: 8740 + - uid: 12260 components: - rot: 3.141592653589793 rad pos: -27.5,14.5 parent: 2 type: Transform - - uid: 8745 + - uid: 12261 components: - rot: 1.5707963267948966 rad pos: -31.5,19.5 parent: 2 type: Transform - - uid: 8748 + - uid: 12262 components: - rot: -1.5707963267948966 rad pos: -33.5,19.5 parent: 2 type: Transform - - uid: 8749 + - uid: 12263 components: - rot: -1.5707963267948966 rad pos: -33.5,10.5 parent: 2 type: Transform - - uid: 8750 + - uid: 12264 components: - rot: 1.5707963267948966 rad pos: -38.5,10.5 parent: 2 type: Transform - - uid: 8752 + - uid: 12265 components: - rot: 1.5707963267948966 rad pos: -31.5,10.5 parent: 2 type: Transform - - uid: 8767 + - uid: 12266 components: - rot: 3.141592653589793 rad pos: -47.5,25.5 parent: 2 type: Transform - - uid: 8768 + - uid: 12267 components: - rot: -1.5707963267948966 rad pos: -44.5,30.5 parent: 2 type: Transform - - uid: 8769 + - uid: 12268 components: - rot: 1.5707963267948966 rad pos: -42.5,26.5 parent: 2 type: Transform - - uid: 8770 + - uid: 12269 components: - rot: 3.141592653589793 rad pos: -39.5,31.5 parent: 2 type: Transform - - uid: 8771 + - uid: 12270 components: - pos: -36.5,29.5 parent: 2 type: Transform - - uid: 8772 + - uid: 12271 components: - rot: 1.5707963267948966 rad pos: -32.5,30.5 parent: 2 type: Transform - - uid: 8778 + - uid: 12272 components: - rot: 3.141592653589793 rad pos: -28.5,24.5 parent: 2 type: Transform - - uid: 8827 + - uid: 12273 components: - pos: -49.5,30.5 parent: 2 type: Transform - - uid: 8838 + - uid: 12274 components: - rot: 3.141592653589793 rad pos: -47.5,32.5 parent: 2 type: Transform - - uid: 8839 + - uid: 12275 components: - pos: -50.5,37.5 parent: 2 type: Transform - - uid: 8843 + - uid: 12276 components: - rot: 3.141592653589793 rad pos: -43.5,36.5 parent: 2 type: Transform - type: Timer - - uid: 8845 + - uid: 12277 components: - pos: -38.5,37.5 parent: 2 type: Transform - - uid: 8846 + - uid: 12278 components: - pos: -48.5,41.5 parent: 2 type: Transform - - uid: 8849 + - uid: 12279 components: - rot: 1.5707963267948966 rad pos: -44.5,42.5 parent: 2 type: Transform - - uid: 8850 + - uid: 12280 components: - rot: -1.5707963267948966 rad pos: -38.5,42.5 parent: 2 type: Transform - - uid: 8853 + - uid: 12281 components: - pos: -54.5,41.5 parent: 2 type: Transform - - uid: 8888 + - uid: 12282 components: - rot: 3.141592653589793 rad pos: -55.5,31.5 parent: 2 type: Transform - - uid: 8889 + - uid: 12283 components: - pos: -56.5,37.5 parent: 2 type: Transform - - uid: 8896 + - uid: 12284 components: - rot: 3.141592653589793 rad pos: -61.5,31.5 parent: 2 type: Transform - - uid: 8898 + - uid: 12285 components: - pos: -61.5,37.5 parent: 2 type: Transform - - uid: 8915 + - uid: 12286 components: - rot: -1.5707963267948966 rad pos: -40.5,50.5 parent: 2 type: Transform - - uid: 8918 + - uid: 12287 components: - rot: 1.5707963267948966 rad pos: -27.5,42.5 parent: 2 type: Transform - - uid: 8919 + - uid: 12288 components: - rot: -1.5707963267948966 rad pos: -19.5,42.5 parent: 2 type: Transform - - uid: 8920 + - uid: 12289 components: - rot: 3.141592653589793 rad pos: -19.5,37.5 parent: 2 type: Transform - - uid: 8921 + - uid: 12290 components: - rot: 3.141592653589793 rad pos: -27.5,37.5 parent: 2 type: Transform - - uid: 8922 + - uid: 12291 components: - rot: 1.5707963267948966 rad pos: -24.5,35.5 parent: 2 type: Transform - - uid: 8923 + - uid: 12292 components: - rot: -1.5707963267948966 rad pos: -22.5,30.5 parent: 2 type: Transform - - uid: 8926 + - uid: 12293 components: - rot: 1.5707963267948966 rad pos: -24.5,24.5 parent: 2 type: Transform - - uid: 8935 + - uid: 12294 components: - pos: -17.5,11.5 parent: 2 type: Transform - - uid: 8950 + - uid: 12295 components: - rot: 3.141592653589793 rad pos: -29.5,5.5 parent: 2 type: Transform - - uid: 8952 + - uid: 12296 components: - rot: 3.141592653589793 rad pos: -47.5,5.5 parent: 2 type: Transform - - uid: 8965 + - uid: 12297 components: - pos: -41.5,1.5 parent: 2 type: Transform - - uid: 8977 + - uid: 12298 components: - pos: -36.5,-4.5 parent: 2 type: Transform - - uid: 8983 + - uid: 12299 components: - pos: -33.5,-4.5 parent: 2 type: Transform - - uid: 8990 + - uid: 12300 components: - rot: 3.141592653589793 rad pos: -31.5,-10.5 parent: 2 type: Transform - - uid: 8998 + - uid: 12301 components: - rot: 3.141592653589793 rad pos: -23.5,-9.5 parent: 2 type: Transform - - uid: 9001 + - uid: 12302 components: - rot: -1.5707963267948966 rad pos: -20.5,-5.5 parent: 2 type: Transform - - uid: 9002 + - uid: 12303 components: - rot: 1.5707963267948966 rad pos: -25.5,-2.5 parent: 2 type: Transform - - uid: 9008 + - uid: 12304 components: - rot: 1.5707963267948966 rad pos: -18.5,-17.5 parent: 2 type: Transform - - uid: 9018 + - uid: 12305 components: - rot: 1.5707963267948966 rad pos: -13.5,-4.5 parent: 2 type: Transform - - uid: 9027 + - uid: 12306 components: - rot: 1.5707963267948966 rad pos: -13.5,-8.5 parent: 2 type: Transform - - uid: 9031 + - uid: 12307 components: - rot: 1.5707963267948966 rad pos: -14.5,-15.5 parent: 2 type: Transform - - uid: 9032 + - uid: 12308 components: - rot: -1.5707963267948966 rad pos: -10.5,-19.5 parent: 2 type: Transform - - uid: 9033 + - uid: 12309 components: - pos: -3.5,-15.5 parent: 2 type: Transform - - uid: 9034 + - uid: 12310 components: - rot: 1.5707963267948966 rad pos: -8.5,-21.5 parent: 2 type: Transform - - uid: 9049 + - uid: 12311 components: - pos: -1.5,-21.5 parent: 2 type: Transform - - uid: 9055 + - uid: 12312 components: - pos: 7.5,-23.5 parent: 2 type: Transform - - uid: 9077 + - uid: 12313 components: - rot: 1.5707963267948966 rad pos: 10.5,-8.5 parent: 2 type: Transform - - uid: 9083 + - uid: 12314 components: - rot: 3.141592653589793 rad pos: 2.5,-7.5 parent: 2 type: Transform - - uid: 9088 + - uid: 12315 components: - pos: -0.5,4.5 parent: 2 type: Transform - - uid: 9090 + - uid: 12316 components: - rot: 3.141592653589793 rad pos: 1.5,-3.5 parent: 2 type: Transform - - uid: 9102 + - uid: 12317 components: - rot: 1.5707963267948966 rad pos: -18.5,8.5 parent: 2 type: Transform - - uid: 9122 + - uid: 12318 components: - rot: 1.5707963267948966 rad pos: -10.5,11.5 parent: 2 type: Transform - - uid: 9124 + - uid: 12319 components: - pos: -9.5,18.5 parent: 2 type: Transform - - uid: 9126 + - uid: 12320 components: - pos: -11.5,7.5 parent: 2 type: Transform - - uid: 9137 + - uid: 12321 components: - pos: -12.5,1.5 parent: 2 type: Transform - - uid: 9146 + - uid: 12322 components: - rot: -1.5707963267948966 rad pos: -3.5,0.5 parent: 2 type: Transform - - uid: 9150 + - uid: 12323 components: - rot: 1.5707963267948966 rad pos: -4.5,19.5 parent: 2 type: Transform - - uid: 9151 + - uid: 12324 components: - pos: -8.5,27.5 parent: 2 type: Transform - - uid: 9152 + - uid: 12325 components: - rot: 3.141592653589793 rad pos: -9.5,20.5 parent: 2 type: Transform - - uid: 9154 + - uid: 12326 components: - pos: -19.5,23.5 parent: 2 type: Transform - - uid: 9155 + - uid: 12327 components: - rot: 3.141592653589793 rad pos: 1.5,29.5 parent: 2 type: Transform - - uid: 9156 + - uid: 12328 components: - pos: 0.5,35.5 parent: 2 type: Transform - - uid: 9165 + - uid: 12329 components: - pos: -17.5,36.5 parent: 2 type: Transform - - uid: 9167 + - uid: 12330 components: - rot: 3.141592653589793 rad pos: -19.5,33.5 parent: 2 type: Transform - - uid: 9168 + - uid: 12331 components: - rot: 1.5707963267948966 rad pos: -5.5,31.5 parent: 2 type: Transform - - uid: 9169 + - uid: 12332 components: - rot: -1.5707963267948966 rad pos: -3.5,36.5 parent: 2 type: Transform - - uid: 9171 + - uid: 12333 components: - rot: 1.5707963267948966 rad pos: -18.5,-1.5 parent: 2 type: Transform - - uid: 9172 + - uid: 12334 components: - rot: -1.5707963267948966 rad pos: -16.5,-23.5 parent: 2 type: Transform - - uid: 9173 + - uid: 12335 components: - pos: -22.5,-21.5 parent: 2 type: Transform - - uid: 9174 + - uid: 12336 components: - rot: 3.141592653589793 rad pos: -22.5,-25.5 parent: 2 type: Transform - - uid: 9274 + - uid: 12337 components: - rot: 1.5707963267948966 rad pos: -28.5,10.5 parent: 2 type: Transform - - uid: 9275 + - uid: 12338 components: - rot: 3.141592653589793 rad pos: -59.5,-1.5 parent: 2 type: Transform - - uid: 9277 + - uid: 12339 components: - rot: 1.5707963267948966 rad pos: -53.5,-3.5 parent: 2 type: Transform - - uid: 9278 + - uid: 12340 components: - rot: -1.5707963267948966 rad pos: -46.5,-3.5 parent: 2 type: Transform - type: Timer - - uid: 9279 + - uid: 12341 components: - pos: -48.5,-6.5 parent: 2 type: Transform - type: Timer - - uid: 9280 + - uid: 12342 components: - rot: 1.5707963267948966 rad pos: -56.5,-9.5 parent: 2 type: Transform - - uid: 9281 + - uid: 12343 components: - rot: 3.141592653589793 rad pos: -52.5,-9.5 parent: 2 type: Transform - - uid: 9282 + - uid: 12344 components: - rot: 1.5707963267948966 rad pos: -43.5,-12.5 parent: 2 type: Transform - - uid: 9283 + - uid: 12345 components: - rot: 1.5707963267948966 rad pos: -43.5,-15.5 parent: 2 type: Transform - - uid: 9284 + - uid: 12346 components: - rot: 3.141592653589793 rad pos: -39.5,-18.5 parent: 2 type: Transform - - uid: 9285 + - uid: 12347 components: - rot: 3.141592653589793 rad pos: -35.5,-18.5 parent: 2 type: Transform - - uid: 9286 + - uid: 12348 components: - rot: 3.141592653589793 rad pos: -50.5,-17.5 parent: 2 type: Transform - - uid: 9287 + - uid: 12349 components: - pos: -53.5,-16.5 parent: 2 type: Transform - - uid: 9288 + - uid: 12350 components: - rot: 3.141592653589793 rad pos: -59.5,-17.5 parent: 2 type: Transform - - uid: 9289 + - uid: 12351 components: - rot: 3.141592653589793 rad pos: -56.5,-17.5 parent: 2 type: Transform - - uid: 9290 + - uid: 12352 components: - pos: -59.5,-11.5 parent: 2 type: Transform - - uid: 9292 + - uid: 12353 components: - rot: -1.5707963267948966 rad pos: -49.5,-13.5 parent: 2 type: Transform - - uid: 9293 + - uid: 12354 components: - rot: 1.5707963267948966 rad pos: -59.5,-14.5 parent: 2 type: Transform - - uid: 9294 + - uid: 12355 components: - rot: -1.5707963267948966 rad pos: -51.5,-6.5 parent: 2 type: Transform - type: Timer - - uid: 9296 + - uid: 12356 components: - rot: -1.5707963267948966 rad pos: 1.5,19.5 parent: 2 type: Transform - - uid: 9298 + - uid: 12357 components: - rot: -1.5707963267948966 rad pos: -6.5,42.5 parent: 2 type: Transform - - uid: 9300 + - uid: 12358 components: - rot: 1.5707963267948966 rad pos: 28.5,-22.5 parent: 2 type: Transform - - uid: 9301 + - uid: 12359 components: - rot: 3.141592653589793 rad pos: 39.5,-22.5 parent: 2 type: Transform - - uid: 9304 + - uid: 12360 components: - rot: -1.5707963267948966 rad pos: 40.5,-4.5 parent: 2 type: Transform - - uid: 9305 + - uid: 12361 components: - rot: 3.141592653589793 rad pos: 28.5,-0.5 parent: 2 type: Transform - - uid: 9306 + - uid: 12362 components: - pos: 26.5,-7.5 parent: 2 type: Transform - - uid: 9307 + - uid: 12363 components: - rot: 1.5707963267948966 rad pos: 28.5,-11.5 parent: 2 type: Transform - - uid: 9308 + - uid: 12364 components: - rot: -1.5707963267948966 rad pos: 35.5,-2.5 parent: 2 type: Transform - - uid: 9309 + - uid: 12365 components: - rot: 1.5707963267948966 rad pos: 28.5,-6.5 parent: 2 type: Transform - - uid: 9311 + - uid: 12366 components: - rot: -1.5707963267948966 rad pos: 21.5,-5.5 parent: 2 type: Transform - - uid: 9312 + - uid: 12367 components: - pos: 20.5,1.5 parent: 2 type: Transform - - uid: 9313 + - uid: 12368 components: - rot: -1.5707963267948966 rad pos: 28.5,2.5 parent: 2 type: Transform - - uid: 9314 + - uid: 12369 components: - rot: 1.5707963267948966 rad pos: 25.5,9.5 parent: 2 type: Transform - - uid: 9318 + - uid: 12370 components: - rot: 3.141592653589793 rad pos: 32.5,15.5 parent: 2 type: Transform - - uid: 9319 + - uid: 12371 components: - rot: 3.141592653589793 rad pos: -15.5,-61.5 parent: 2 type: Transform - - uid: 9340 + - uid: 12372 components: - rot: 3.141592653589793 rad pos: 15.5,-1.5 parent: 2 type: Transform - - uid: 9353 + - uid: 12373 components: - rot: 1.5707963267948966 rad pos: 7.5,25.5 parent: 2 type: Transform - - uid: 9367 + - uid: 12374 components: - rot: -1.5707963267948966 rad pos: 17.5,25.5 parent: 2 type: Transform - - uid: 9385 + - uid: 12375 components: - rot: 1.5707963267948966 rad pos: 10.5,12.5 parent: 2 type: Transform - - uid: 9394 + - uid: 12376 components: - pos: 27.5,22.5 parent: 2 type: Transform - - uid: 9396 + - uid: 12377 components: - rot: 3.141592653589793 rad pos: 27.5,18.5 parent: 2 type: Transform - - uid: 9407 + - uid: 12378 components: - rot: 1.5707963267948966 rad pos: 19.5,26.5 parent: 2 type: Transform - - uid: 9424 + - uid: 12379 components: - rot: -1.5707963267948966 rad pos: 23.5,11.5 parent: 2 type: Transform - - uid: 9426 + - uid: 12380 components: - pos: 20.5,8.5 parent: 2 type: Transform - - uid: 9427 + - uid: 12381 components: - rot: 3.141592653589793 rad pos: 20.5,3.5 parent: 2 type: Transform - - uid: 9437 + - uid: 12382 components: - rot: -1.5707963267948966 rad pos: 28.5,4.5 parent: 2 type: Transform - - uid: 9444 + - uid: 12383 components: - rot: 3.141592653589793 rad pos: -32.5,-0.5 parent: 2 type: Transform - - uid: 9445 + - uid: 12384 components: - rot: -1.5707963267948966 rad pos: -27.5,3.5 parent: 2 type: Transform - - uid: 9452 + - uid: 12385 components: - pos: -31.5,-12.5 parent: 2 type: Transform - - uid: 9458 + - uid: 12386 components: - rot: -1.5707963267948966 rad pos: -25.5,-13.5 parent: 2 type: Transform - - uid: 9463 + - uid: 12387 components: - rot: 3.141592653589793 rad pos: -23.5,-16.5 parent: 2 type: Transform - - uid: 9464 + - uid: 12388 components: - pos: -21.5,-11.5 parent: 2 type: Transform - - uid: 9472 + - uid: 12389 components: - rot: -1.5707963267948966 rad pos: -20.5,-28.5 parent: 2 type: Transform - - uid: 9473 + - uid: 12390 components: - rot: 1.5707963267948966 rad pos: -19.5,-45.5 parent: 2 type: Transform - - uid: 9477 + - uid: 12391 components: - rot: 3.141592653589793 rad pos: -22.5,-47.5 parent: 2 type: Transform - - uid: 9482 + - uid: 12392 components: - rot: -1.5707963267948966 rad pos: -18.5,-38.5 parent: 2 type: Transform - - uid: 9489 + - uid: 12393 components: - rot: -1.5707963267948966 rad pos: -15.5,-38.5 parent: 2 type: Transform - - uid: 9493 - components: - - rot: 1.5707963267948966 rad - pos: -8.5,-39.5 - parent: 2 - type: Transform - - uid: 9495 + - uid: 12394 components: - rot: -1.5707963267948966 rad pos: -10.5,-38.5 parent: 2 type: Transform - - uid: 9499 + - uid: 12395 components: - pos: -12.5,-32.5 parent: 2 type: Transform - - uid: 9507 + - uid: 12396 components: - pos: 38.5,1.5 parent: 2 type: Transform - - uid: 9510 + - uid: 12397 components: - rot: -1.5707963267948966 rad pos: -16.5,-27.5 parent: 2 type: Transform - - uid: 9511 + - uid: 12398 components: - pos: -12.5,-26.5 parent: 2 type: Transform - - uid: 9522 + - uid: 12399 components: - rot: -1.5707963267948966 rad pos: -0.5,-17.5 parent: 2 type: Transform - - uid: 9527 + - uid: 12400 components: - rot: 1.5707963267948966 rad pos: 43.5,12.5 parent: 2 type: Transform - - uid: 9528 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-42.5 - parent: 2 - type: Transform - - uid: 9532 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-44.5 - parent: 2 - type: Transform - - uid: 9533 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-49.5 - parent: 2 - type: Transform - - uid: 9534 - components: - - rot: 3.141592653589793 rad - pos: 2.5,-51.5 - parent: 2 - type: Transform - - uid: 9535 - components: - - rot: 3.141592653589793 rad - pos: -1.5,-49.5 - parent: 2 - type: Transform - - uid: 9536 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-50.5 - parent: 2 - type: Transform - - uid: 9537 - components: - - pos: -3.5,-46.5 - parent: 2 - type: Transform - - uid: 9538 + - uid: 12401 components: - rot: -1.5707963267948966 rad pos: -10.5,-44.5 parent: 2 type: Transform - - uid: 9539 - components: - - rot: 3.141592653589793 rad - pos: -6.5,-45.5 - parent: 2 - type: Transform - - uid: 9541 + - uid: 12402 components: - rot: -1.5707963267948966 rad pos: -14.5,-71.5 parent: 2 type: Transform - - uid: 9542 - components: - - rot: 1.5707963267948966 rad - pos: -1.5,-42.5 - parent: 2 - type: Transform - - uid: 9543 + - uid: 12403 components: - pos: 2.5,-35.5 parent: 2 type: Transform - - uid: 9544 - components: - - rot: 3.141592653589793 rad - pos: -3.5,-44.5 - parent: 2 - type: Transform - - uid: 9546 + - uid: 12404 components: - pos: -9.5,-73.5 parent: 2 type: Transform - - uid: 9547 + - uid: 12405 components: - rot: 1.5707963267948966 rad pos: -8.5,-76.5 parent: 2 type: Transform - - uid: 9548 + - uid: 12406 components: - rot: 3.141592653589793 rad pos: -9.5,-79.5 parent: 2 type: Transform - - uid: 9549 + - uid: 12407 components: - rot: -1.5707963267948966 rad pos: -3.5,-76.5 parent: 2 type: Transform - - uid: 9550 + - uid: 12408 components: - rot: -1.5707963267948966 rad pos: -14.5,-77.5 parent: 2 type: Transform - - uid: 9551 + - uid: 12409 components: - rot: -1.5707963267948966 rad pos: -14.5,-75.5 parent: 2 type: Transform - - uid: 9552 + - uid: 12410 components: - rot: -1.5707963267948966 rad pos: -14.5,-82.5 parent: 2 type: Transform - - uid: 9561 + - uid: 12411 components: - rot: 3.141592653589793 rad pos: -29.5,-79.5 parent: 2 type: Transform - - uid: 9562 + - uid: 12412 components: - pos: -29.5,-73.5 parent: 2 type: Transform - - uid: 9563 + - uid: 12413 components: - rot: -1.5707963267948966 rad pos: -24.5,-73.5 parent: 2 type: Transform - - uid: 9564 + - uid: 12414 components: - rot: -1.5707963267948966 rad pos: -24.5,-79.5 parent: 2 type: Transform - - uid: 9565 + - uid: 12415 components: - pos: 14.5,16.5 parent: 2 type: Transform - - uid: 9566 + - uid: 12416 components: - rot: -1.5707963267948966 rad pos: -19.5,-73.5 parent: 2 type: Transform - - uid: 9567 + - uid: 12417 components: - pos: -31.5,-25.5 parent: 2 type: Transform - - uid: 9568 + - uid: 12418 components: - rot: 1.5707963267948966 rad pos: -22.5,-79.5 parent: 2 type: Transform - - uid: 9569 + - uid: 12419 components: - rot: 1.5707963267948966 rad pos: 12.5,23.5 parent: 2 type: Transform - - uid: 9572 + - uid: 12420 components: - rot: -1.5707963267948966 rad pos: 19.5,20.5 parent: 2 type: Transform - - uid: 10086 + - uid: 12421 components: - rot: 1.5707963267948966 rad pos: -18.5,-12.5 parent: 2 type: Transform - - uid: 10506 + - uid: 12422 components: - rot: -1.5707963267948966 rad pos: -1.5,-32.5 parent: 2 type: Transform - - uid: 10507 + - uid: 12423 components: - rot: -1.5707963267948966 rad pos: -5.5,-30.5 parent: 2 type: Transform - - uid: 10508 + - uid: 12424 components: - pos: 0.5,-30.5 parent: 2 type: Transform - - uid: 10658 + - uid: 12425 components: - rot: 3.141592653589793 rad pos: 7.5,-28.5 parent: 2 type: Transform - - uid: 10709 + - uid: 12426 components: - rot: 1.5707963267948966 rad pos: 14.5,11.5 parent: 2 type: Transform - - uid: 10717 + - uid: 12427 components: - rot: -1.5707963267948966 rad pos: 19.5,13.5 parent: 2 type: Transform - - uid: 10840 + - uid: 12428 components: - rot: -1.5707963267948966 rad pos: -38.5,3.5 parent: 2 type: Transform - - uid: 10841 + - uid: 12429 components: - rot: 1.5707963267948966 rad pos: -44.5,3.5 parent: 2 type: Transform - - uid: 10884 + - uid: 12430 components: - rot: 1.5707963267948966 rad pos: 21.5,18.5 parent: 2 type: Transform - - uid: 10885 + - uid: 12431 components: - rot: 1.5707963267948966 rad pos: 21.5,22.5 parent: 2 type: Transform - - uid: 10886 + - uid: 12432 components: - rot: 3.141592653589793 rad pos: 20.5,23.5 parent: 2 type: Transform - - uid: 10890 + - uid: 12433 components: - pos: -40.5,-8.5 parent: 2 type: Transform - - uid: 11034 + - uid: 12434 components: - rot: -1.5707963267948966 rad pos: -23.5,16.5 parent: 2 type: Transform - - uid: 11146 + - uid: 12435 components: - rot: 3.141592653589793 rad pos: 34.5,-16.5 parent: 2 type: Transform - - uid: 11156 + - uid: 12436 components: - rot: 1.5707963267948966 rad pos: -21.5,3.5 parent: 2 type: Transform - - uid: 11367 + - uid: 12437 components: - pos: -17.5,-63.5 parent: 2 type: Transform - - uid: 11542 + - uid: 12438 components: - rot: 1.5707963267948966 rad pos: 14.5,-29.5 parent: 2 type: Transform - - uid: 11596 + - uid: 12439 components: - rot: -1.5707963267948966 rad pos: 16.5,-33.5 parent: 2 type: Transform - - uid: 11622 + - uid: 12440 components: - rot: 1.5707963267948966 rad pos: 2.5,-32.5 parent: 2 type: Transform - - uid: 11706 + - uid: 12441 components: - pos: -45.5,23.5 parent: 2 type: Transform - - uid: 11818 + - uid: 12442 components: - pos: -45.5,-12.5 parent: 2 type: Transform - - uid: 11876 + - uid: 12443 components: - rot: 3.141592653589793 rad pos: -45.5,-18.5 parent: 2 type: Transform - - uid: 11960 + - uid: 12444 components: - rot: 3.141592653589793 rad pos: -47.5,-18.5 parent: 2 type: Transform - - uid: 12201 + - uid: 12445 components: - pos: -15.5,-63.5 parent: 2 type: Transform - - uid: 12332 + - uid: 12446 components: - pos: 7.5,12.5 parent: 2 type: Transform - - uid: 12700 + - uid: 12447 components: - rot: 3.141592653589793 rad pos: 10.5,-1.5 parent: 2 type: Transform - - uid: 12710 + - uid: 12448 components: - rot: -1.5707963267948966 rad pos: 15.5,5.5 parent: 2 type: Transform - - uid: 12745 + - uid: 12449 components: - rot: 1.5707963267948966 rad pos: 10.5,8.5 parent: 2 type: Transform - - uid: 12760 + - uid: 12450 components: - rot: 1.5707963267948966 rad pos: -4.5,12.5 parent: 2 type: Transform - - uid: 13077 + - uid: 12451 components: - rot: 3.141592653589793 rad pos: -16.5,-49.5 parent: 2 type: Transform - - uid: 13138 + - uid: 12452 components: - rot: 3.141592653589793 rad pos: 26.5,11.5 parent: 2 type: Transform - - uid: 13139 + - uid: 12453 components: - pos: 27.5,16.5 parent: 2 type: Transform - - uid: 13229 + - uid: 12454 components: - rot: -1.5707963267948966 rad pos: 26.5,25.5 parent: 2 type: Transform - - uid: 13578 + - uid: 12455 components: - rot: -1.5707963267948966 rad pos: -12.5,14.5 parent: 2 type: Transform - - uid: 13579 + - uid: 12456 components: - rot: -1.5707963267948966 rad pos: -12.5,11.5 parent: 2 type: Transform - - uid: 13639 + - uid: 12457 components: - rot: 1.5707963267948966 rad pos: -25.5,12.5 parent: 2 type: Transform - - uid: 13791 + - uid: 12458 components: - rot: 3.141592653589793 rad pos: -31.5,-15.5 parent: 2 type: Transform - - uid: 13925 + - uid: 12459 components: - rot: 1.5707963267948966 rad pos: -25.5,8.5 parent: 2 type: Transform - - uid: 14254 + - uid: 12460 components: - rot: 3.141592653589793 rad pos: -37.5,5.5 parent: 2 type: Transform - - uid: 14389 + - uid: 12461 components: - rot: -1.5707963267948966 rad pos: -16.5,-31.5 parent: 2 type: Transform - - uid: 15290 + - uid: 12462 components: - rot: 1.5707963267948966 rad pos: 4.5,-35.5 parent: 2 type: Transform - - uid: 15305 - components: - - rot: 3.141592653589793 rad - pos: 6.5,-39.5 - parent: 2 - type: Transform - - uid: 15386 + - uid: 12463 components: - rot: 3.141592653589793 rad pos: -17.5,-61.5 parent: 2 type: Transform - - uid: 15478 + - uid: 12464 components: - rot: -1.5707963267948966 rad pos: 22.5,-28.5 parent: 2 type: Transform - - uid: 15502 + - uid: 12465 components: - rot: 1.5707963267948966 rad pos: -10.5,-3.5 parent: 2 type: Transform - - uid: 15654 + - uid: 12466 components: - rot: 3.141592653589793 rad pos: 10.5,-6.5 parent: 2 type: Transform - - uid: 15655 + - uid: 12467 components: - rot: 1.5707963267948966 rad pos: 17.5,-3.5 parent: 2 type: Transform - - uid: 15657 + - uid: 12468 components: - rot: -1.5707963267948966 rad pos: 15.5,-3.5 parent: 2 type: Transform - - uid: 15658 + - uid: 12469 components: - rot: -1.5707963267948966 rad pos: 8.5,-2.5 parent: 2 type: Transform - - uid: 15686 + - uid: 12470 components: - rot: 1.5707963267948966 rad pos: -10.5,-9.5 parent: 2 type: Transform - - uid: 15708 + - uid: 12471 components: - rot: 1.5707963267948966 rad pos: -1.5,0.5 parent: 2 type: Transform - - uid: 15710 + - uid: 12472 components: - rot: -1.5707963267948966 rad pos: 2.5,0.5 parent: 2 type: Transform - - uid: 15711 + - uid: 12473 components: - rot: 1.5707963267948966 rad pos: 4.5,0.5 parent: 2 type: Transform - - uid: 15713 + - uid: 12474 components: - pos: -21.5,7.5 parent: 2 type: Transform - - uid: 15714 + - uid: 12475 components: - rot: -1.5707963267948966 rad pos: -20.5,12.5 parent: 2 type: Transform - - uid: 15715 + - uid: 12476 components: - rot: 3.141592653589793 rad pos: -21.5,9.5 parent: 2 type: Transform - - uid: 15742 + - uid: 12477 components: - pos: 36.5,-18.5 parent: 2 type: Transform - - uid: 15743 + - uid: 12478 components: - rot: 1.5707963267948966 rad pos: 23.5,-5.5 parent: 2 type: Transform - - uid: 15744 + - uid: 12479 components: - pos: 31.5,-18.5 parent: 2 type: Transform - - uid: 15747 + - uid: 12480 components: - pos: 37.5,-15.5 parent: 2 type: Transform - - uid: 15749 + - uid: 12481 components: - rot: 3.141592653589793 rad pos: 37.5,-13.5 parent: 2 type: Transform - - uid: 15750 + - uid: 12482 components: - rot: 1.5707963267948966 rad pos: 37.5,-10.5 parent: 2 type: Transform - - uid: 15987 + - uid: 12483 components: - rot: 3.141592653589793 rad pos: -17.5,-68.5 parent: 2 type: Transform - - uid: 16055 + - uid: 12484 components: - rot: -1.5707963267948966 rad pos: -36.5,20.5 parent: 2 type: Transform - - uid: 16161 + - uid: 12485 components: - rot: 1.5707963267948966 rad pos: 28.5,-2.5 parent: 2 type: Transform - - uid: 16173 + - uid: 12486 components: - pos: -7.5,-15.5 parent: 2 type: Transform - - uid: 16175 + - uid: 12487 components: - pos: 16.5,-19.5 parent: 2 type: Transform - - uid: 16177 + - uid: 12488 components: - rot: 3.141592653589793 rad pos: -15.5,25.5 parent: 2 type: Transform - - uid: 16178 + - uid: 12489 components: - pos: -20.5,27.5 parent: 2 type: Transform - - uid: 16186 + - uid: 12490 components: - rot: -1.5707963267948966 rad pos: -2.5,27.5 parent: 2 type: Transform - - uid: 16189 + - uid: 12491 components: - rot: -1.5707963267948966 rad pos: -15.5,-4.5 parent: 2 type: Transform - - uid: 16190 + - uid: 12492 + components: + - rot: 1.5707963267948966 rad + pos: -18.5,-9.5 + parent: 2 + type: Transform + - uid: 12493 + components: + - rot: 3.141592653589793 rad + pos: -36.5,-15.5 + parent: 2 + type: Transform + - uid: 12494 + components: + - pos: 7.5,-9.5 + parent: 2 + type: Transform + - uid: 12495 + components: + - rot: -1.5707963267948966 rad + pos: 15.5,-15.5 + parent: 2 + type: Transform + - uid: 12496 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,14.5 + parent: 2 + type: Transform + - uid: 12497 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-24.5 + parent: 2 + type: Transform + - uid: 12498 + components: + - rot: -1.5707963267948966 rad + pos: 12.5,-21.5 + parent: 2 + type: Transform + - uid: 12499 + components: + - pos: -19.5,-30.5 + parent: 2 + type: Transform + - uid: 12500 + components: + - rot: 3.141592653589793 rad + pos: 27.5,-16.5 + parent: 2 + type: Transform + - uid: 12501 + components: + - rot: 3.141592653589793 rad + pos: -51.5,15.5 + parent: 2 + type: Transform + - uid: 12502 + components: + - pos: -51.5,17.5 + parent: 2 + type: Transform + - uid: 12503 + components: + - pos: -47.5,23.5 + parent: 2 + type: Transform + - uid: 12504 + components: + - rot: 3.141592653589793 rad + pos: 8.5,-0.5 + parent: 2 + type: Transform + - uid: 12505 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-13.5 + parent: 2 + type: Transform + - uid: 12506 + components: + - rot: 3.141592653589793 rad + pos: -13.5,-13.5 + parent: 2 + type: Transform + - uid: 12507 + components: + - rot: 3.141592653589793 rad + pos: -11.5,-24.5 + parent: 2 + type: Transform + - uid: 12508 components: - - rot: 1.5707963267948966 rad - pos: -18.5,-9.5 + - rot: -1.5707963267948966 rad + pos: -7.5,7.5 parent: 2 type: Transform - - uid: 16192 + - uid: 12509 components: - rot: 3.141592653589793 rad - pos: -36.5,-15.5 + pos: 1.5,37.5 parent: 2 type: Transform - - uid: 16203 + - uid: 12510 components: - - pos: 7.5,-9.5 + - rot: 1.5707963267948966 rad + pos: 15.5,21.5 parent: 2 type: Transform - - uid: 16204 + - uid: 12511 components: - rot: -1.5707963267948966 rad - pos: 15.5,-15.5 + pos: 13.5,21.5 parent: 2 type: Transform - - uid: 16218 + - uid: 12512 components: - rot: 1.5707963267948966 rad - pos: -7.5,14.5 + pos: 23.5,-19.5 parent: 2 type: Transform - - uid: 16294 + - uid: 12513 components: - rot: -1.5707963267948966 rad - pos: 12.5,-24.5 + pos: 12.5,-33.5 parent: 2 type: Transform - - uid: 16313 + - uid: 12514 components: - rot: -1.5707963267948966 rad - pos: 12.5,-21.5 + pos: 12.5,-30.5 parent: 2 type: Transform - - uid: 16392 + - uid: 12515 components: - - pos: -19.5,-30.5 + - rot: 1.5707963267948966 rad + pos: 9.5,-39.5 parent: 2 type: Transform - - uid: 16552 + - uid: 12516 components: - rot: 3.141592653589793 rad - pos: 27.5,-16.5 + pos: -1.5,-28.5 parent: 2 type: Transform - - uid: 16556 + - uid: 12517 + components: + - pos: 21.5,-11.5 + parent: 2 + type: Transform + - uid: 12518 components: - rot: 3.141592653589793 rad - pos: -51.5,15.5 + pos: 6.5,-39.5 parent: 2 type: Transform - - uid: 16557 + - uid: 12519 components: - - pos: -51.5,17.5 + - rot: 3.141592653589793 rad + pos: -7.5,-49.5 parent: 2 type: Transform - - uid: 16558 + - uid: 12520 components: - - pos: -47.5,23.5 + - rot: 1.5707963267948966 rad + pos: -8.5,-44.5 parent: 2 type: Transform - - uid: 16562 + - uid: 12521 components: - rot: 3.141592653589793 rad - pos: 8.5,-0.5 + pos: -2.5,-51.5 parent: 2 type: Transform - - uid: 16565 + - uid: 12522 components: - rot: 3.141592653589793 rad - pos: -7.5,-13.5 + pos: 0.5,-51.5 parent: 2 type: Transform - - uid: 16566 + - uid: 12523 components: - - rot: 3.141592653589793 rad - pos: -13.5,-13.5 + - rot: -1.5707963267948966 rad + pos: 1.5,-44.5 parent: 2 type: Transform - - uid: 16766 + - uid: 12524 components: - - rot: 3.141592653589793 rad - pos: -11.5,-24.5 + - rot: 1.5707963267948966 rad + pos: -3.5,-41.5 parent: 2 type: Transform - - uid: 16902 + - uid: 12525 components: - rot: -1.5707963267948966 rad - pos: -7.5,7.5 + pos: 1.5,-39.5 parent: 2 type: Transform - - uid: 16905 + - uid: 12526 components: - - rot: 3.141592653589793 rad - pos: 1.5,37.5 + - pos: -3.5,-35.5 parent: 2 type: Transform - - uid: 16969 + - uid: 12527 components: - - rot: 1.5707963267948966 rad - pos: 15.5,21.5 + - rot: 3.141592653589793 rad + pos: -5.5,-40.5 parent: 2 type: Transform - - uid: 16970 + - uid: 12528 components: - - rot: -1.5707963267948966 rad - pos: 13.5,21.5 + - rot: 1.5707963267948966 rad + pos: -8.5,-37.5 parent: 2 type: Transform - - uid: 17064 +- proto: PoweredLightBlueInterior + entities: + - uid: 12529 components: - - rot: 1.5707963267948966 rad - pos: 23.5,-19.5 + - rot: -1.5707963267948966 rad + pos: 7.5,-41.5 parent: 2 type: Transform - - uid: 17161 + - uid: 12530 components: - rot: -1.5707963267948966 rad - pos: 12.5,-33.5 + pos: 7.5,-45.5 parent: 2 type: Transform - - uid: 17162 + - uid: 12531 components: - rot: -1.5707963267948966 rad - pos: 12.5,-30.5 + pos: 7.5,-43.5 parent: 2 type: Transform - - uid: 17178 + - uid: 12532 components: - - rot: 1.5707963267948966 rad - pos: 9.5,-39.5 + - rot: -1.5707963267948966 rad + pos: 7.5,-47.5 parent: 2 type: Transform - - uid: 17195 + - uid: 12533 components: - - rot: 3.141592653589793 rad - pos: -1.5,-28.5 + - rot: -1.5707963267948966 rad + pos: 7.5,-49.5 parent: 2 type: Transform - - uid: 17200 + - uid: 12534 components: - - pos: 21.5,-11.5 + - rot: -1.5707963267948966 rad + pos: 7.5,-51.5 parent: 2 type: Transform - proto: PoweredLightColoredBlack entities: - - uid: 8996 + - uid: 12535 components: - rot: -1.5707963267948966 rad pos: -27.5,-5.5 @@ -81640,13 +83044,13 @@ entities: type: Transform - proto: PoweredLightColoredFrostyBlue entities: - - uid: 9157 + - uid: 12536 components: - rot: 3.141592653589793 rad pos: -5.5,-10.5 parent: 2 type: Transform - - uid: 11692 + - uid: 12537 components: - rot: -1.5707963267948966 rad pos: -3.5,-3.5 @@ -81654,7 +83058,7 @@ entities: type: Transform - proto: PoweredLightColoredRed entities: - - uid: 15079 + - uid: 12538 components: - rot: 3.141592653589793 rad pos: -17.5,38.5 @@ -81662,192 +83066,186 @@ entities: type: Transform - proto: PoweredlightExterior entities: - - uid: 2416 + - uid: 12539 components: - pos: -38.5,-30.5 parent: 2 type: Transform - - uid: 2500 + - uid: 12540 components: - rot: -1.5707963267948966 rad pos: -25.5,-35.5 parent: 2 type: Transform - - uid: 2555 + - uid: 12541 components: - rot: 1.5707963267948966 rad pos: -39.5,-41.5 parent: 2 type: Transform - - uid: 2585 + - uid: 12542 components: - rot: -1.5707963267948966 rad pos: -25.5,-41.5 parent: 2 type: Transform - - uid: 2681 + - uid: 12543 components: - pos: -25.5,-30.5 parent: 2 type: Transform - - uid: 2683 + - uid: 12544 components: - rot: 3.141592653589793 rad pos: -25.5,-46.5 parent: 2 type: Transform - - uid: 2734 + - uid: 12545 components: - rot: 3.141592653589793 rad pos: -38.5,-46.5 parent: 2 type: Transform - - uid: 2867 + - uid: 12546 components: - rot: 1.5707963267948966 rad pos: -39.5,-35.5 parent: 2 type: Transform - - uid: 5132 + - uid: 12547 components: - rot: 3.141592653589793 rad pos: 7.5,32.5 parent: 2 type: Transform - - uid: 9029 + - uid: 12548 components: - rot: 1.5707963267948966 rad pos: 47.5,8.5 parent: 2 type: Transform - - uid: 9371 + - uid: 12549 components: - rot: 3.141592653589793 rad pos: -59.5,4.5 parent: 2 type: Transform - - uid: 9645 + - uid: 12550 components: - rot: 3.141592653589793 rad pos: -4.5,41.5 parent: 2 type: Transform - - uid: 10048 + - uid: 12551 components: - rot: 3.141592653589793 rad pos: 1.5,44.5 parent: 2 type: Transform - - uid: 10049 + - uid: 12552 components: - rot: 1.5707963267948966 rad pos: 4.5,37.5 parent: 2 type: Transform - - uid: 10054 + - uid: 12553 components: - rot: 3.141592653589793 rad pos: 27.5,31.5 parent: 2 type: Transform - - uid: 10056 + - uid: 12554 components: - rot: 1.5707963267948966 rad pos: 34.5,27.5 parent: 2 type: Transform - - uid: 10059 + - uid: 12555 components: - rot: 1.5707963267948966 rad pos: 38.5,20.5 parent: 2 type: Transform - - uid: 10063 + - uid: 12556 components: - rot: 3.141592653589793 rad pos: 45.5,15.5 parent: 2 type: Transform - - uid: 10091 + - uid: 12557 components: - rot: 3.141592653589793 rad pos: -36.5,49.5 parent: 2 type: Transform - - uid: 10092 + - uid: 12558 components: - rot: 3.141592653589793 rad pos: -48.5,52.5 parent: 2 type: Transform - - uid: 10128 + - uid: 12559 components: - pos: -42.5,69.5 parent: 2 type: Transform - - uid: 10185 + - uid: 12560 components: - rot: -1.5707963267948966 rad pos: 64.5,11.5 parent: 2 type: Transform - - uid: 10192 + - uid: 12561 components: - rot: 1.5707963267948966 rad pos: 42.5,1.5 parent: 2 type: Transform - - uid: 10208 + - uid: 12562 components: - pos: -47.5,-20.5 parent: 2 type: Transform - - uid: 10209 + - uid: 12563 components: - pos: -59.5,-19.5 parent: 2 type: Transform - - uid: 10210 + - uid: 12564 components: - rot: 1.5707963267948966 rad pos: -34.5,-51.5 parent: 2 type: Transform - - uid: 10211 + - uid: 12565 components: - rot: 3.141592653589793 rad pos: -41.5,-27.5 parent: 2 type: Transform - - uid: 10213 + - uid: 12566 components: - rot: 1.5707963267948966 rad pos: -34.5,-61.5 parent: 2 type: Transform - - uid: 10214 - components: - - rot: -1.5707963267948966 rad - pos: 3.5,-54.5 - parent: 2 - type: Transform - - uid: 10615 + - uid: 12567 components: - pos: 17.5,-50.5 parent: 2 type: Transform - - uid: 13078 + - uid: 12568 components: - pos: -22.5,-42.5 parent: 2 type: Transform - - uid: 13079 + - uid: 12569 components: - rot: 3.141592653589793 rad pos: -22.5,-34.5 parent: 2 type: Transform - - uid: 16245 + - uid: 12570 components: - rot: -1.5707963267948966 rad pos: -56.5,47.5 @@ -81855,31 +83253,31 @@ entities: type: Transform - proto: PoweredlightLED entities: - - uid: 11432 + - uid: 12571 components: - rot: -1.5707963267948966 rad pos: 37.5,4.5 parent: 2 type: Transform - - uid: 15535 + - uid: 12572 components: - rot: 1.5707963267948966 rad pos: 30.5,4.5 parent: 2 type: Transform - - uid: 15543 + - uid: 12573 components: - rot: 1.5707963267948966 rad pos: 30.5,11.5 parent: 2 type: Transform - - uid: 16042 + - uid: 12574 components: - rot: 3.141592653589793 rad pos: -58.5,-3.5 parent: 2 type: Transform - - uid: 16549 + - uid: 12575 components: - rot: -1.5707963267948966 rad pos: 37.5,12.5 @@ -81887,474 +83285,485 @@ entities: type: Transform - proto: PoweredLightPostSmall entities: - - uid: 2040 + - uid: 12576 components: - pos: 14.5,-48.5 parent: 2 type: Transform - - uid: 17145 + - uid: 12577 components: - pos: 20.5,-48.5 parent: 2 type: Transform - proto: PoweredlightSodium entities: - - uid: 3938 + - uid: 12578 components: - rot: 1.5707963267948966 rad pos: -43.5,-0.5 parent: 2 type: Transform - - uid: 11352 + - uid: 12579 components: - rot: 1.5707963267948966 rad pos: -44.5,-5.5 parent: 2 type: Transform - - uid: 12214 + - uid: 12580 components: - pos: 35.5,-11.5 parent: 2 type: Transform - proto: PoweredSmallLight entities: - - uid: 2062 + - uid: 12581 components: - rot: 1.5707963267948966 rad pos: 3.5,-15.5 parent: 2 type: Transform - - uid: 3817 + - uid: 12582 components: - pos: 19.5,-24.5 parent: 2 type: Transform - - uid: 6834 + - uid: 12583 components: - rot: 1.5707963267948966 rad pos: -36.5,37.5 parent: 2 type: Transform - - uid: 11880 + - uid: 12584 components: - rot: 1.5707963267948966 rad pos: -36.5,33.5 parent: 2 type: Transform - - uid: 17160 + - uid: 12585 components: - pos: 9.5,-42.5 parent: 2 type: Transform - - uid: 17180 + - uid: 12586 components: - pos: 9.5,-45.5 parent: 2 type: Transform + - uid: 12587 + components: + - rot: 3.141592653589793 rad + pos: -7.5,-51.5 + parent: 2 + type: Transform + - uid: 12588 + components: + - pos: 2.5,-53.5 + parent: 2 + type: Transform - proto: PoweredSmallLightMaintenance entities: - - uid: 942 + - uid: 12589 components: - rot: -1.5707963267948966 rad pos: 22.5,-34.5 parent: 2 type: Transform - - uid: 2423 + - uid: 12590 components: - rot: -1.5707963267948966 rad pos: -31.5,37.5 parent: 2 type: Transform - - uid: 2995 + - uid: 12591 components: - rot: 1.5707963267948966 rad pos: 18.5,-34.5 parent: 2 type: Transform - - uid: 3981 + - uid: 12592 components: - rot: 1.5707963267948966 rad pos: -51.5,3.5 parent: 2 type: Transform - - uid: 5752 + - uid: 12593 components: - rot: -1.5707963267948966 rad pos: -31.5,35.5 parent: 2 type: Transform - - uid: 17043 + - uid: 12594 components: - pos: 8.5,-30.5 parent: 2 type: Transform - proto: PoweredSmallLightMaintenanceRed entities: - - uid: 860 + - uid: 12595 components: - pos: 7.5,15.5 parent: 2 type: Transform - - uid: 1201 + - uid: 12596 components: - pos: 2.5,16.5 parent: 2 type: Transform - - uid: 1287 + - uid: 12597 components: - pos: 4.5,27.5 parent: 2 type: Transform - - uid: 1833 + - uid: 12598 components: - rot: 3.141592653589793 rad pos: 2.5,22.5 parent: 2 type: Transform - - uid: 3195 + - uid: 12599 components: - pos: 20.5,-17.5 parent: 2 type: Transform - - uid: 3239 + - uid: 12600 components: - rot: -1.5707963267948966 rad pos: -26.5,21.5 parent: 2 type: Transform - - uid: 3408 + - uid: 12601 components: - rot: -1.5707963267948966 rad pos: 21.5,-21.5 parent: 2 type: Transform - - uid: 3853 + - uid: 12602 components: - pos: -41.5,47.5 parent: 2 type: Transform - - uid: 3940 + - uid: 12603 components: - pos: -43.5,47.5 parent: 2 type: Transform - - uid: 3941 + - uid: 12604 components: - rot: -1.5707963267948966 rad pos: -35.5,-1.5 parent: 2 type: Transform - - uid: 3942 + - uid: 12605 components: - rot: -1.5707963267948966 rad pos: -35.5,2.5 parent: 2 type: Transform - - uid: 4009 + - uid: 12606 components: - rot: 3.141592653589793 rad pos: -31.5,-2.5 parent: 2 type: Transform - - uid: 4010 + - uid: 12607 components: - pos: -27.5,-0.5 parent: 2 type: Transform - - uid: 4778 + - uid: 12608 components: - rot: 1.5707963267948966 rad pos: -36.5,44.5 parent: 2 type: Transform - - uid: 5985 + - uid: 12609 components: - rot: 3.141592653589793 rad pos: -31.5,40.5 parent: 2 type: Transform - - uid: 9080 + - uid: 12610 components: - rot: 3.141592653589793 rad pos: -0.5,-13.5 parent: 2 type: Transform - - uid: 10948 + - uid: 12611 components: - rot: 1.5707963267948966 rad pos: -17.5,22.5 parent: 2 type: Transform - - uid: 11788 + - uid: 12612 components: - rot: 1.5707963267948966 rad pos: -47.5,1.5 parent: 2 type: Transform - - uid: 11844 + - uid: 12613 components: - pos: 19.5,29.5 parent: 2 type: Transform - - uid: 11857 + - uid: 12614 components: - rot: 3.141592653589793 rad pos: 14.5,28.5 parent: 2 type: Transform - - uid: 11867 + - uid: 12615 components: - pos: 0.5,7.5 parent: 2 type: Transform - - uid: 11870 + - uid: 12616 components: - rot: 3.141592653589793 rad pos: 7.5,3.5 parent: 2 type: Transform - - uid: 11871 + - uid: 12617 components: - pos: 24.5,29.5 parent: 2 type: Transform - - uid: 11872 + - uid: 12618 components: - rot: -1.5707963267948966 rad pos: 6.5,21.5 parent: 2 type: Transform - - uid: 11873 + - uid: 12619 components: - rot: 1.5707963267948966 rad pos: -0.5,26.5 parent: 2 type: Transform - - uid: 11875 + - uid: 12620 components: - pos: 5.5,30.5 parent: 2 type: Transform - - uid: 14301 + - uid: 12621 components: - rot: 1.5707963267948966 rad pos: -28.5,-19.5 parent: 2 type: Transform - - uid: 15396 + - uid: 12622 components: - pos: -27.5,35.5 parent: 2 type: Transform - - uid: 15538 + - uid: 12623 components: - rot: 3.141592653589793 rad pos: -26.5,-28.5 parent: 2 type: Transform - - uid: 15566 + - uid: 12624 components: - pos: -15.5,18.5 parent: 2 type: Transform - - uid: 15631 + - uid: 12625 components: - pos: 42.5,-1.5 parent: 2 type: Transform - - uid: 15659 + - uid: 12626 components: - rot: 1.5707963267948966 rad pos: -1.5,-5.5 parent: 2 type: Transform - - uid: 15660 + - uid: 12627 components: - rot: 1.5707963267948966 rad pos: 1.5,-19.5 parent: 2 type: Transform - - uid: 15661 + - uid: 12628 components: - pos: 6.5,-19.5 parent: 2 type: Transform - type: Timer - - uid: 15663 + - uid: 12629 components: - rot: 1.5707963267948966 rad pos: 17.5,-15.5 parent: 2 type: Transform - - uid: 15664 + - uid: 12630 components: - pos: 19.5,-8.5 parent: 2 type: Transform - - uid: 15716 + - uid: 12631 components: - rot: 3.141592653589793 rad pos: -19.5,16.5 parent: 2 type: Transform - - uid: 15717 + - uid: 12632 components: - pos: -17.5,30.5 parent: 2 type: Transform - - uid: 15718 + - uid: 12633 components: - pos: -9.5,30.5 parent: 2 type: Transform - - uid: 15754 + - uid: 12634 components: - rot: 3.141592653589793 rad pos: -34.5,-21.5 parent: 2 type: Transform - - uid: 15757 + - uid: 12635 components: - rot: 1.5707963267948966 rad pos: -37.5,-19.5 parent: 2 type: Transform - - uid: 15759 + - uid: 12636 components: - rot: -1.5707963267948966 rad pos: -20.5,-18.5 parent: 2 type: Transform - - uid: 15760 + - uid: 12637 components: - rot: -1.5707963267948966 rad pos: -42.5,-19.5 parent: 2 type: Transform - - uid: 15762 + - uid: 12638 components: - pos: -36.5,23.5 parent: 2 type: Transform - - uid: 15764 + - uid: 12639 components: - rot: -1.5707963267948966 rad pos: 32.5,27.5 parent: 2 type: Transform - - uid: 15767 + - uid: 12640 components: - rot: 1.5707963267948966 rad pos: 31.5,20.5 parent: 2 type: Transform - - uid: 15768 + - uid: 12641 components: - rot: -1.5707963267948966 rad pos: 36.5,18.5 parent: 2 type: Transform - - uid: 15769 + - uid: 12642 components: - rot: 1.5707963267948966 rad pos: 39.5,12.5 parent: 2 type: Transform - - uid: 15770 + - uid: 12643 components: - rot: 1.5707963267948966 rad pos: 39.5,4.5 parent: 2 type: Transform - - uid: 16051 + - uid: 12644 components: - pos: 49.5,11.5 parent: 2 type: Transform - - uid: 16118 + - uid: 12645 components: - pos: -14.5,-51.5 parent: 2 type: Transform - - uid: 16154 + - uid: 12646 components: - rot: -1.5707963267948966 rad pos: -17.5,13.5 parent: 2 type: Transform - - uid: 16155 + - uid: 12647 components: - rot: 1.5707963267948966 rad pos: -14.5,31.5 parent: 2 type: Transform - - uid: 16164 + - uid: 12648 components: - rot: -1.5707963267948966 rad pos: -46.5,43.5 parent: 2 type: Transform - - uid: 16165 + - uid: 12649 components: - pos: -31.5,-17.5 parent: 2 type: Transform - - uid: 16166 + - uid: 12650 components: - rot: -1.5707963267948966 rad pos: 2.5,-9.5 parent: 2 type: Transform - - uid: 16168 + - uid: 12651 components: - pos: -28.5,-24.5 parent: 2 type: Transform - - uid: 16182 + - uid: 12652 components: - rot: 3.141592653589793 rad pos: 10.5,29.5 parent: 2 type: Transform - - uid: 16231 + - uid: 12653 components: - rot: -1.5707963267948966 rad pos: 4.5,12.5 parent: 2 type: Transform - - uid: 16395 + - uid: 12654 components: - rot: -1.5707963267948966 rad pos: -56.5,49.5 parent: 2 type: Transform - - uid: 16402 + - uid: 12655 components: - rot: 1.5707963267948966 rad pos: -42.5,55.5 parent: 2 type: Transform - - uid: 16715 + - uid: 12656 components: - pos: -15.5,-85.5 parent: 2 type: Transform - - uid: 16755 + - uid: 12657 components: - pos: 29.5,25.5 parent: 2 type: Transform - - uid: 16770 + - uid: 12658 components: - pos: 42.5,-9.5 parent: 2 type: Transform - - uid: 16771 + - uid: 12659 components: - pos: 42.5,-17.5 parent: 2 type: Transform - - uid: 16924 + - uid: 12660 components: - rot: 3.141592653589793 rad pos: -0.5,14.5 @@ -82362,21 +83771,21 @@ entities: type: Transform - proto: Protolathe entities: - - uid: 6494 + - uid: 12661 components: - pos: -37.5,29.5 parent: 2 type: Transform - proto: ProtolatheMachineCircuitboard entities: - - uid: 6811 + - uid: 12662 components: - pos: -14.6441345,-30.384445 parent: 2 type: Transform - proto: Puddle entities: - - uid: 9594 + - uid: 12663 components: - pos: -49.5,46.5 parent: 2 @@ -82394,7 +83803,7 @@ entities: type: SolutionContainerManager - active: False type: StepTrigger - - uid: 11837 + - uid: 12664 components: - pos: -39.5,-23.5 parent: 2 @@ -82412,7 +83821,7 @@ entities: type: SolutionContainerManager - active: False type: StepTrigger - - uid: 14596 + - uid: 12665 components: - pos: -35.5,45.5 parent: 2 @@ -82430,7 +83839,7 @@ entities: type: SolutionContainerManager - active: False type: StepTrigger - - uid: 14679 + - uid: 12666 components: - pos: -43.5,57.5 parent: 2 @@ -82448,7 +83857,7 @@ entities: type: SolutionContainerManager - active: False type: StepTrigger - - uid: 14714 + - uid: 12667 components: - pos: 33.5,21.5 parent: 2 @@ -82466,7 +83875,7 @@ entities: type: SolutionContainerManager - active: False type: StepTrigger - - uid: 15099 + - uid: 12668 components: - pos: -3.5,-13.5 parent: 2 @@ -82486,613 +83895,613 @@ entities: type: StepTrigger - proto: Rack entities: - - uid: 29 + - uid: 12669 components: - pos: -24.5,-23.5 parent: 2 type: Transform - - uid: 200 + - uid: 12670 components: - pos: -15.5,12.5 parent: 2 type: Transform - - uid: 201 + - uid: 12671 components: - pos: -25.5,-14.5 parent: 2 type: Transform - - uid: 212 + - uid: 12672 components: - pos: -15.5,14.5 parent: 2 type: Transform - - uid: 229 + - uid: 12673 components: - pos: -15.5,11.5 parent: 2 type: Transform - - uid: 230 + - uid: 12674 components: - pos: -15.5,15.5 parent: 2 type: Transform - - uid: 420 + - uid: 12675 components: - rot: -1.5707963267948966 rad pos: 22.5,-24.5 parent: 2 type: Transform - - uid: 437 + - uid: 12676 components: - pos: 12.5,-10.5 parent: 2 type: Transform - - uid: 456 + - uid: 12677 components: - rot: -1.5707963267948966 rad pos: 32.5,-12.5 parent: 2 type: Transform - - uid: 682 + - uid: 12678 components: - pos: -13.5,11.5 parent: 2 type: Transform - - uid: 696 + - uid: 12679 components: - rot: -1.5707963267948966 rad pos: -26.5,-11.5 parent: 2 type: Transform - - uid: 718 + - uid: 12680 components: - pos: -10.5,-26.5 parent: 2 type: Transform - - uid: 862 + - uid: 12681 components: - pos: -1.5,12.5 parent: 2 type: Transform - - uid: 919 + - uid: 12682 components: - pos: 0.5,-27.5 parent: 2 type: Transform - - uid: 1407 + - uid: 12683 components: - pos: 4.5,-22.5 parent: 2 type: Transform - - uid: 1447 + - uid: 12684 components: - pos: -21.5,13.5 parent: 2 type: Transform - - uid: 1514 + - uid: 12685 components: - pos: -13.5,-26.5 parent: 2 type: Transform - - uid: 1516 + - uid: 12686 components: - pos: -14.5,-26.5 parent: 2 type: Transform - - uid: 1783 + - uid: 12687 components: - pos: -2.5,-30.5 parent: 2 type: Transform - - uid: 2519 - components: - - pos: -8.5,-43.5 - parent: 2 - type: Transform - - uid: 2719 + - uid: 12688 components: - pos: -18.5,-34.5 parent: 2 type: Transform - - uid: 2735 + - uid: 12689 components: - pos: -18.5,-42.5 parent: 2 type: Transform - - uid: 2871 + - uid: 12690 components: - rot: -1.5707963267948966 rad pos: -14.5,-30.5 parent: 2 type: Transform - - uid: 2973 + - uid: 12691 components: - pos: -11.5,-26.5 parent: 2 type: Transform - - uid: 3254 + - uid: 12692 components: - pos: -13.5,-7.5 parent: 2 type: Transform - - uid: 3296 + - uid: 12693 components: - pos: -14.5,-29.5 parent: 2 type: Transform - - uid: 3498 + - uid: 12694 components: - pos: 18.5,3.5 parent: 2 type: Transform - - uid: 3508 + - uid: 12695 components: - pos: 22.5,3.5 parent: 2 type: Transform - - uid: 3839 + - uid: 12696 components: - rot: -1.5707963267948966 rad pos: -17.5,-83.5 parent: 2 type: Transform - - uid: 3932 + - uid: 12697 components: - pos: 8.5,19.5 parent: 2 type: Transform - - uid: 4216 + - uid: 12698 components: - pos: 20.5,-11.5 parent: 2 type: Transform - - uid: 4218 + - uid: 12699 components: - pos: 21.5,-11.5 parent: 2 type: Transform - - uid: 4219 + - uid: 12700 components: - pos: 22.5,-11.5 parent: 2 type: Transform - - uid: 4224 + - uid: 12701 components: - pos: 22.5,-13.5 parent: 2 type: Transform - - uid: 4280 + - uid: 12702 components: - pos: -38.5,11.5 parent: 2 type: Transform - - uid: 4564 + - uid: 12703 components: - pos: 19.5,24.5 parent: 2 type: Transform - - uid: 4834 + - uid: 12704 components: - pos: 26.5,-21.5 parent: 2 type: Transform - - uid: 5197 + - uid: 12705 components: - pos: -44.5,-6.5 parent: 2 type: Transform - - uid: 5390 + - uid: 12706 components: - pos: -38.5,-22.5 parent: 2 type: Transform - - uid: 5541 + - uid: 12707 components: - rot: 3.141592653589793 rad pos: -14.5,-28.5 parent: 2 type: Transform - - uid: 5775 + - uid: 12708 components: - pos: -48.5,32.5 parent: 2 type: Transform - - uid: 6338 + - uid: 12709 components: - pos: -44.5,49.5 parent: 2 type: Transform - - uid: 6409 + - uid: 12710 components: - pos: -36.5,25.5 parent: 2 type: Transform - - uid: 6440 + - uid: 12711 components: - pos: -49.5,32.5 parent: 2 type: Transform - - uid: 6457 + - uid: 12712 components: - pos: -35.5,25.5 parent: 2 type: Transform - - uid: 6602 + - uid: 12713 components: - rot: -1.5707963267948966 rad pos: -20.5,-28.5 parent: 2 type: Transform - - uid: 6757 + - uid: 12714 components: - pos: -40.5,-4.5 parent: 2 type: Transform - - uid: 8194 + - uid: 12715 components: - pos: -14.5,-23.5 parent: 2 type: Transform - - uid: 9019 + - uid: 12716 components: - pos: -14.5,-24.5 parent: 2 type: Transform - - uid: 9520 + - uid: 12717 components: - pos: -14.5,-21.5 parent: 2 type: Transform - - uid: 9577 + - uid: 12718 components: - pos: -34.5,25.5 parent: 2 type: Transform - - uid: 9622 + - uid: 12719 components: - pos: 43.5,13.5 parent: 2 type: Transform - - uid: 11789 + - uid: 12720 components: - pos: -26.5,-15.5 parent: 2 type: Transform - - uid: 12319 + - uid: 12721 components: - pos: 14.5,-30.5 parent: 2 type: Transform - - uid: 13005 + - uid: 12722 components: - pos: 9.5,-45.5 parent: 2 type: Transform - - uid: 13681 + - uid: 12723 components: - pos: -20.5,-25.5 parent: 2 type: Transform - - uid: 13706 + - uid: 12724 components: - pos: -20.5,-21.5 parent: 2 type: Transform - - uid: 14934 + - uid: 12725 components: - pos: -14.5,-22.5 parent: 2 type: Transform - - uid: 14970 + - uid: 12726 components: - pos: -3.5,35.5 parent: 2 type: Transform - - uid: 15141 + - uid: 12727 components: - pos: 29.5,24.5 parent: 2 type: Transform - - uid: 15176 + - uid: 12728 components: - pos: 19.5,-11.5 parent: 2 type: Transform - - uid: 15186 + - uid: 12729 components: - pos: -10.5,-37.5 parent: 2 type: Transform - - uid: 16035 + - uid: 12730 components: - pos: -47.5,43.5 parent: 2 type: Transform - - uid: 16727 + - uid: 12731 components: - pos: 17.5,-4.5 parent: 2 type: Transform - - uid: 16813 + - uid: 12732 components: - pos: 4.5,-10.5 parent: 2 type: Transform - - uid: 16956 + - uid: 12733 components: - pos: 17.5,21.5 parent: 2 type: Transform - - uid: 16997 + - uid: 12734 components: - pos: 10.5,10.5 parent: 2 type: Transform - - uid: 17181 + - uid: 12735 components: - pos: 14.5,-29.5 parent: 2 type: Transform + - uid: 12736 + components: + - pos: -8.5,-38.5 + parent: 2 + type: Transform - proto: RadiationCollectorFullTank entities: - - uid: 11563 + - uid: 12737 components: - pos: -29.5,-44.5 parent: 2 type: Transform - - uid: 11664 + - uid: 12738 components: - pos: -32.5,-44.5 parent: 2 type: Transform - - uid: 11683 + - uid: 12739 components: - pos: -30.5,-32.5 parent: 2 type: Transform - - uid: 11684 + - uid: 12740 components: - pos: -29.5,-32.5 parent: 2 type: Transform - - uid: 11689 + - uid: 12741 components: - pos: -28.5,-32.5 parent: 2 type: Transform - - uid: 11737 + - uid: 12742 components: - pos: -30.5,-44.5 parent: 2 type: Transform - - uid: 11741 + - uid: 12743 components: - pos: -34.5,-32.5 parent: 2 type: Transform - proto: RadioHandheld entities: - - uid: 4176 + - uid: 12744 components: - pos: -19.549526,-73.391396 parent: 2 type: Transform - - uid: 10686 + - uid: 12745 components: - pos: 12.664758,-32.312305 parent: 2 type: Transform - - uid: 11020 + - uid: 12746 components: - pos: -49.194317,1.0024505 parent: 2 type: Transform - - uid: 15957 + - uid: 12747 components: - pos: 12.352258,-32.499935 parent: 2 type: Transform - proto: RagItem entities: - - uid: 861 + - uid: 12748 components: - pos: -6.5395412,-4.15932 parent: 2 type: Transform - - uid: 5505 + - uid: 12749 components: - pos: 2.551126,33.567097 parent: 2 type: Transform - proto: Railing entities: - - uid: 679 + - uid: 12750 components: - rot: -1.5707963267948966 rad pos: -6.5,12.5 parent: 2 type: Transform - - uid: 1186 + - uid: 12751 components: - rot: 3.141592653589793 rad pos: -12.5,-1.5 parent: 2 type: Transform - - uid: 1312 + - uid: 12752 components: - pos: 33.5,-18.5 parent: 2 type: Transform - - uid: 1322 + - uid: 12753 components: - pos: 34.5,-18.5 parent: 2 type: Transform - - uid: 1624 + - uid: 12754 components: - pos: -13.5,-11.5 parent: 2 type: Transform - - uid: 1674 + - uid: 12755 components: - pos: -12.5,-11.5 parent: 2 type: Transform - - uid: 2747 + - uid: 12756 components: - rot: 1.5707963267948966 rad pos: 37.5,-10.5 parent: 2 type: Transform - - uid: 2748 + - uid: 12757 components: - rot: 1.5707963267948966 rad pos: 37.5,-9.5 parent: 2 type: Transform - - uid: 3065 + - uid: 12758 components: - rot: 1.5707963267948966 rad pos: 37.5,-11.5 parent: 2 type: Transform - - uid: 4763 + - uid: 12759 components: - rot: 3.141592653589793 rad pos: -13.5,-1.5 parent: 2 type: Transform - - uid: 5081 + - uid: 12760 components: - pos: 20.5,-0.5 parent: 2 type: Transform - - uid: 5087 + - uid: 12761 components: - pos: 18.5,-0.5 parent: 2 type: Transform - - uid: 5090 + - uid: 12762 components: - pos: 19.5,-0.5 parent: 2 type: Transform - - uid: 6264 + - uid: 12763 components: - rot: 1.5707963267948966 rad pos: -49.5,7.5 parent: 2 type: Transform - - uid: 6273 + - uid: 12764 components: - rot: -1.5707963267948966 rad pos: -44.5,22.5 parent: 2 type: Transform - - uid: 6658 + - uid: 12765 components: - rot: 1.5707963267948966 rad pos: -49.5,5.5 parent: 2 type: Transform - - uid: 6659 + - uid: 12766 components: - rot: -1.5707963267948966 rad pos: -44.5,23.5 parent: 2 type: Transform - - uid: 6660 + - uid: 12767 components: - rot: 1.5707963267948966 rad pos: -49.5,6.5 parent: 2 type: Transform - - uid: 6695 + - uid: 12768 components: - rot: -1.5707963267948966 rad pos: -44.5,9.5 parent: 2 type: Transform - - uid: 6699 + - uid: 12769 components: - rot: 3.141592653589793 rad pos: -16.5,32.5 parent: 2 type: Transform - - uid: 6704 + - uid: 12770 components: - rot: 3.141592653589793 rad pos: -26.5,24.5 parent: 2 type: Transform - - uid: 6705 + - uid: 12771 components: - rot: 3.141592653589793 rad pos: -17.5,32.5 parent: 2 type: Transform - - uid: 6708 + - uid: 12772 components: - rot: -1.5707963267948966 rad pos: -44.5,10.5 parent: 2 type: Transform - - uid: 6710 + - uid: 12773 components: - rot: 3.141592653589793 rad pos: -32.5,24.5 parent: 2 type: Transform - - uid: 10650 + - uid: 12774 components: - rot: 3.141592653589793 rad pos: 11.5,-26.5 parent: 2 type: Transform - - uid: 11944 + - uid: 12775 components: - pos: -15.5,27.5 parent: 2 type: Transform - - uid: 12300 + - uid: 12776 components: - rot: 1.5707963267948966 rad pos: -9.5,37.5 parent: 2 type: Transform - - uid: 13011 + - uid: 12777 components: - rot: 1.5707963267948966 rad pos: 20.5,-48.5 parent: 2 type: Transform - - uid: 13633 + - uid: 12778 components: - pos: 11.5,-16.5 parent: 2 type: Transform - - uid: 15134 + - uid: 12779 components: - pos: -15.5,39.5 parent: 2 type: Transform - - uid: 15148 + - uid: 12780 components: - pos: -3.5,39.5 parent: 2 type: Transform - - uid: 15314 + - uid: 12781 components: - rot: -1.5707963267948966 rad pos: -10.5,37.5 parent: 2 type: Transform - - uid: 16176 + - uid: 12782 components: - pos: -16.5,27.5 parent: 2 type: Transform - - uid: 16210 + - uid: 12783 components: - rot: 1.5707963267948966 rad pos: 11.5,-14.5 @@ -83100,173 +84509,173 @@ entities: type: Transform - proto: RailingCorner entities: - - uid: 11 + - uid: 12784 components: - rot: -1.5707963267948966 rad pos: 2.5,-2.5 parent: 2 type: Transform - - uid: 14 + - uid: 12785 components: - rot: 1.5707963267948966 rad pos: -1.5,-1.5 parent: 2 type: Transform - - uid: 15 + - uid: 12786 components: - rot: -1.5707963267948966 rad pos: 2.5,2.5 parent: 2 type: Transform - - uid: 18 + - uid: 12787 components: - rot: 3.141592653589793 rad pos: 2.5,-1.5 parent: 2 type: Transform - - uid: 19 + - uid: 12788 components: - pos: -1.5,-2.5 parent: 2 type: Transform - - uid: 20 + - uid: 12789 components: - rot: 1.5707963267948966 rad pos: -1.5,3.5 parent: 2 type: Transform - - uid: 25 + - uid: 12790 components: - pos: -1.5,2.5 parent: 2 type: Transform - - uid: 143 + - uid: 12791 components: - rot: 3.141592653589793 rad pos: 2.5,3.5 parent: 2 type: Transform - - uid: 438 + - uid: 12792 components: - pos: -14.5,27.5 parent: 2 type: Transform - - uid: 444 + - uid: 12793 components: - rot: 3.141592653589793 rad pos: 12.5,-1.5 parent: 2 type: Transform - - uid: 445 + - uid: 12794 components: - rot: 1.5707963267948966 rad pos: 13.5,-1.5 parent: 2 type: Transform - - uid: 680 + - uid: 12795 components: - rot: -1.5707963267948966 rad pos: -6.5,11.5 parent: 2 type: Transform - - uid: 729 + - uid: 12796 components: - pos: 35.5,-18.5 parent: 2 type: Transform - - uid: 1184 + - uid: 12797 components: - rot: -1.5707963267948966 rad pos: 32.5,-18.5 parent: 2 type: Transform - - uid: 1659 + - uid: 12798 components: - rot: 1.5707963267948966 rad pos: 34.5,-22.5 parent: 2 type: Transform - - uid: 1671 + - uid: 12799 components: - rot: -1.5707963267948966 rad pos: -14.5,-11.5 parent: 2 type: Transform - - uid: 2777 + - uid: 12800 components: - rot: 1.5707963267948966 rad pos: 37.5,-8.5 parent: 2 type: Transform - - uid: 3063 + - uid: 12801 components: - pos: 37.5,-12.5 parent: 2 type: Transform - - uid: 3256 + - uid: 12802 components: - rot: 3.141592653589793 rad pos: 33.5,-22.5 parent: 2 type: Transform - - uid: 4764 + - uid: 12803 components: - rot: 3.141592653589793 rad pos: -14.5,-1.5 parent: 2 type: Transform - - uid: 4806 + - uid: 12804 components: - rot: -1.5707963267948966 rad pos: -17.5,27.5 parent: 2 type: Transform - - uid: 4808 + - uid: 12805 components: - pos: 10.5,2.5 parent: 2 type: Transform - - uid: 4809 + - uid: 12806 components: - rot: -1.5707963267948966 rad pos: 15.5,2.5 parent: 2 type: Transform - - uid: 6707 + - uid: 12807 components: - rot: 1.5707963267948966 rad pos: -31.5,24.5 parent: 2 type: Transform - - uid: 6709 + - uid: 12808 components: - rot: 3.141592653589793 rad pos: -27.5,24.5 parent: 2 type: Transform - - uid: 11004 + - uid: 12809 components: - rot: 3.141592653589793 rad pos: -10.5,38.5 parent: 2 type: Transform - - uid: 13014 + - uid: 12810 components: - pos: 21.5,-47.5 parent: 2 type: Transform - - uid: 13150 + - uid: 12811 components: - rot: 1.5707963267948966 rad pos: -9.5,38.5 parent: 2 type: Transform - - uid: 15149 + - uid: 12812 components: - pos: -14.5,39.5 parent: 2 type: Transform - - uid: 15150 + - uid: 12813 components: - rot: -1.5707963267948966 rad pos: -4.5,39.5 @@ -83274,13 +84683,13 @@ entities: type: Transform - proto: RailingCornerSmall entities: - - uid: 13012 + - uid: 12814 components: - rot: 3.141592653589793 rad pos: 20.5,-47.5 parent: 2 type: Transform - - uid: 13013 + - uid: 12815 components: - rot: 3.141592653589793 rad pos: 21.5,-46.5 @@ -83288,78 +84697,78 @@ entities: type: Transform - proto: RandomAnimalSpawner entities: - - uid: 5693 + - uid: 12816 components: - pos: -18.5,6.5 parent: 2 type: Transform - proto: RandomArcade entities: - - uid: 9 + - uid: 12817 components: - pos: -4.5,-10.5 parent: 2 type: Transform - proto: RandomArtifactSpawner entities: - - uid: 6255 + - uid: 12818 components: - pos: -54.5,41.5 parent: 2 type: Transform - proto: RandomBoards entities: - - uid: 6831 + - uid: 12819 components: - pos: -10.5,-29.5 parent: 2 type: Transform - - uid: 15853 + - uid: 12820 components: - pos: 24.5,-18.5 parent: 2 type: Transform - proto: RandomDrinkBottle entities: - - uid: 16884 + - uid: 12821 components: - pos: -4.5,-7.5 parent: 2 type: Transform - proto: RandomDrinkGlass entities: - - uid: 16160 + - uid: 12822 components: - pos: 34.5,-7.5 parent: 2 type: Transform - proto: RandomFoodMeal entities: - - uid: 16158 + - uid: 12823 components: - pos: 29.5,-3.5 parent: 2 type: Transform - - uid: 16926 + - uid: 12824 components: - pos: -8.5,23.5 parent: 2 type: Transform - proto: RandomFoodSingle entities: - - uid: 16159 + - uid: 12825 components: - pos: 34.5,-4.5 parent: 2 type: Transform - - uid: 16927 + - uid: 12826 components: - pos: -6.5,22.5 parent: 2 type: Transform - proto: RandomInstruments entities: - - uid: 4268 + - uid: 12827 components: - pos: -38.5,11.5 parent: 2 @@ -83368,3622 +84777,3628 @@ entities: type: RandomSpawner - proto: RandomItem entities: - - uid: 16611 + - uid: 12828 components: - pos: -32.5,-28.5 parent: 2 type: Transform - proto: RandomPainting entities: - - uid: 6835 + - uid: 12829 components: - pos: -37.5,33.5 parent: 2 type: Transform - - uid: 11372 + - uid: 12830 components: - pos: 10.5,17.5 parent: 2 type: Transform - - uid: 11728 + - uid: 12831 components: - pos: -43.5,29.5 parent: 2 type: Transform - - uid: 11734 + - uid: 12832 components: - pos: -30.5,-11.5 parent: 2 type: Transform - - uid: 16136 + - uid: 12833 components: - pos: -11.5,8.5 parent: 2 type: Transform - - uid: 16137 + - uid: 12834 components: - pos: -2.5,-8.5 parent: 2 type: Transform - - uid: 16239 + - uid: 12835 components: - pos: -31.5,33.5 parent: 2 type: Transform - - uid: 16240 + - uid: 12836 components: - pos: -27.5,33.5 parent: 2 type: Transform - - uid: 16246 + - uid: 12837 components: - pos: -51.5,29.5 parent: 2 type: Transform - - uid: 16730 + - uid: 12838 components: - pos: 20.5,-7.5 parent: 2 type: Transform - - uid: 16896 + - uid: 12839 components: - pos: 5.5,-18.5 parent: 2 type: Transform - - uid: 16965 + - uid: 12840 components: - pos: -50.5,6.5 parent: 2 type: Transform - proto: RandomPosterAny entities: - - uid: 767 + - uid: 12841 components: - pos: 2.5,10.5 parent: 2 type: Transform - - uid: 3564 + - uid: 12842 components: - pos: 19.5,-18.5 parent: 2 type: Transform - - uid: 5640 + - uid: 12843 components: - pos: 42.5,9.5 parent: 2 type: Transform - - uid: 11709 + - uid: 12844 components: - rot: 3.141592653589793 rad pos: -49.5,38.5 parent: 2 type: Transform - - uid: 11710 + - uid: 12845 components: - rot: 3.141592653589793 rad pos: -45.5,41.5 parent: 2 type: Transform - - uid: 11874 + - uid: 12846 components: - pos: -47.5,31.5 parent: 2 type: Transform - - uid: 12761 + - uid: 12847 components: - pos: -37.5,48.5 parent: 2 type: Transform - - uid: 15359 + - uid: 12848 components: - pos: 35.5,-13.5 parent: 2 type: Transform - - uid: 15574 + - uid: 12849 components: - pos: 27.5,-6.5 parent: 2 type: Transform - - uid: 16135 + - uid: 12850 components: - pos: -16.5,12.5 parent: 2 type: Transform - - uid: 16293 + - uid: 12851 components: - pos: 19.5,-23.5 parent: 2 type: Transform - - uid: 16524 + - uid: 12852 components: - pos: -18.5,15.5 parent: 2 type: Transform - - uid: 16525 + - uid: 12853 components: - pos: -18.5,18.5 parent: 2 type: Transform - - uid: 16812 + - uid: 12854 components: - pos: 16.5,-13.5 parent: 2 type: Transform - proto: RandomPosterContraband entities: - - uid: 3946 + - uid: 12855 components: - pos: -51.5,4.5 parent: 2 type: Transform - - uid: 11690 + - uid: 12856 components: - rot: 3.141592653589793 rad pos: 39.5,17.5 parent: 2 type: Transform - - uid: 11697 + - uid: 12857 components: - rot: 3.141592653589793 rad pos: -45.5,0.5 parent: 2 type: Transform - - uid: 16238 + - uid: 12858 components: - pos: -15.5,30.5 parent: 2 type: Transform - - uid: 16522 + - uid: 12859 components: - pos: -29.5,-19.5 parent: 2 type: Transform - - uid: 16523 + - uid: 12860 components: - pos: -35.5,-23.5 parent: 2 type: Transform - proto: RandomPosterLegit entities: - - uid: 569 + - uid: 12861 components: - pos: 23.5,2.5 parent: 2 type: Transform - - uid: 1178 + - uid: 12862 components: - pos: -20.5,24.5 parent: 2 type: Transform - - uid: 1328 + - uid: 12863 components: - pos: 10.5,-11.5 parent: 2 type: Transform - - uid: 3895 + - uid: 12864 components: - pos: 9.5,-11.5 parent: 2 type: Transform - - uid: 5321 + - uid: 12865 components: - pos: -25.5,33.5 parent: 2 type: Transform - - uid: 6604 + - uid: 12866 components: - pos: -43.5,11.5 parent: 2 type: Transform - - uid: 6628 + - uid: 12867 components: - pos: -35.5,20.5 parent: 2 type: Transform - - uid: 6956 + - uid: 12868 components: - rot: 3.141592653589793 rad pos: -11.5,-7.5 parent: 2 type: Transform - - uid: 6957 + - uid: 12869 components: - rot: 3.141592653589793 rad pos: -2.5,-3.5 parent: 2 type: Transform - - uid: 6958 + - uid: 12870 components: - rot: 3.141592653589793 rad pos: -5.5,14.5 parent: 2 type: Transform - - uid: 6959 + - uid: 12871 components: - rot: 3.141592653589793 rad pos: -16.5,23.5 parent: 2 type: Transform - - uid: 6960 + - uid: 12872 components: - rot: 3.141592653589793 rad pos: -21.5,28.5 parent: 2 type: Transform - - uid: 6961 + - uid: 12873 components: - rot: 3.141592653589793 rad pos: -43.5,22.5 parent: 2 type: Transform - - uid: 6962 + - uid: 12874 components: - rot: 3.141592653589793 rad pos: -51.5,14.5 parent: 2 type: Transform - - uid: 7903 + - uid: 12875 components: - pos: 22.5,-18.5 parent: 2 type: Transform - - uid: 9022 + - uid: 12876 components: - pos: -9.5,-14.5 parent: 2 type: Transform - - uid: 9071 + - uid: 12877 components: - pos: 27.5,-13.5 parent: 2 type: Transform - - uid: 9149 + - uid: 12878 components: - pos: -44.5,0.5 parent: 2 type: Transform - - uid: 11087 + - uid: 12879 components: - pos: 8.5,-21.5 parent: 2 type: Transform - - uid: 11252 + - uid: 12880 components: - pos: 3.5,2.5 parent: 2 type: Transform - - uid: 11451 + - uid: 12881 components: - rot: 3.141592653589793 rad pos: 27.5,30.5 parent: 2 type: Transform - - uid: 11560 + - uid: 12882 components: - pos: -48.5,-1.5 parent: 2 type: Transform - - uid: 11723 + - uid: 12883 components: - pos: -1.5,23.5 parent: 2 type: Transform - - uid: 11724 + - uid: 12884 components: - pos: 3.5,28.5 parent: 2 type: Transform - - uid: 11802 + - uid: 12885 components: - pos: 8.5,-27.5 parent: 2 type: Transform - - uid: 11947 + - uid: 12886 components: - pos: -25.5,21.5 parent: 2 type: Transform - - uid: 12711 + - uid: 12887 components: - pos: -33.5,34.5 parent: 2 type: Transform - - uid: 12733 + - uid: 12888 components: - pos: 1.5,5.5 parent: 2 type: Transform - - uid: 14084 + - uid: 12889 components: - pos: -6.5,-2.5 parent: 2 type: Transform - - uid: 14271 + - uid: 12890 components: - pos: -14.5,-3.5 parent: 2 type: Transform - - uid: 15166 + - uid: 12891 components: - pos: 18.5,-12.5 parent: 2 type: Transform - - uid: 15457 + - uid: 12892 components: - pos: -26.5,-3.5 parent: 2 type: Transform - - uid: 15524 + - uid: 12893 components: - pos: 20.5,-10.5 parent: 2 type: Transform - - uid: 15555 + - uid: 12894 components: - pos: 36.5,-6.5 parent: 2 type: Transform - - uid: 15595 + - uid: 12895 components: - pos: -9.5,-31.5 parent: 2 type: Transform - - uid: 15610 + - uid: 12896 components: - pos: -9.5,-40.5 parent: 2 type: Transform - - uid: 15668 + - uid: 12897 components: - pos: 6.5,-29.5 parent: 2 type: Transform - - uid: 15712 + - uid: 12898 components: - pos: -19.5,-2.5 parent: 2 type: Transform - - uid: 15761 + - uid: 12899 components: - pos: -9.5,-19.5 parent: 2 type: Transform - - uid: 15799 + - uid: 12900 components: - pos: 27.5,-17.5 parent: 2 type: Transform - - uid: 16007 + - uid: 12901 components: - pos: -39.5,21.5 parent: 2 type: Transform - - uid: 16134 + - uid: 12902 components: - pos: -11.5,24.5 parent: 2 type: Transform - - uid: 16138 + - uid: 12903 components: - pos: -10.5,-35.5 parent: 2 type: Transform - - uid: 16139 + - uid: 12904 components: - pos: -14.5,-37.5 parent: 2 type: Transform - - uid: 16211 + - uid: 12905 components: - pos: 22.5,-22.5 parent: 2 type: Transform - - uid: 16220 + - uid: 12906 components: - pos: 16.5,-16.5 parent: 2 type: Transform - - uid: 16221 + - uid: 12907 components: - pos: 8.5,-17.5 parent: 2 type: Transform - - uid: 16526 + - uid: 12908 components: - pos: -12.5,2.5 parent: 2 type: Transform - - uid: 16593 + - uid: 12909 components: - pos: -6.5,2.5 parent: 2 type: Transform - - uid: 16743 + - uid: 12910 components: - pos: 8.5,-1.5 parent: 2 type: Transform - - uid: 16801 + - uid: 12911 components: - pos: -43.5,8.5 parent: 2 type: Transform - - uid: 16802 + - uid: 12912 components: - pos: -20.5,8.5 parent: 2 type: Transform - - uid: 16803 + - uid: 12913 components: - pos: -19.5,12.5 parent: 2 type: Transform - - uid: 16809 + - uid: 12914 components: - pos: 3.5,-8.5 parent: 2 type: Transform - - uid: 16810 + - uid: 12915 components: - pos: 3.5,-11.5 parent: 2 type: Transform - - uid: 16811 + - uid: 12916 components: - pos: 3.5,-17.5 parent: 2 type: Transform - - uid: 16821 + - uid: 12917 components: - pos: -14.5,-8.5 parent: 2 type: Transform - - uid: 16822 + - uid: 12918 components: - pos: -4.5,-11.5 parent: 2 type: Transform - - uid: 16830 + - uid: 12919 components: - pos: -21.5,-10.5 parent: 2 type: Transform - - uid: 16831 + - uid: 12920 components: - pos: -24.5,-14.5 parent: 2 type: Transform - - uid: 16854 + - uid: 12921 components: - pos: -0.5,-29.5 parent: 2 type: Transform - - uid: 16855 + - uid: 12922 components: - pos: -1.5,-20.5 parent: 2 type: Transform - - uid: 16856 + - uid: 12923 components: - pos: -0.5,-15.5 parent: 2 type: Transform - - uid: 16967 + - uid: 12924 components: - pos: 9.5,12.5 parent: 2 type: Transform - proto: RandomSnacks entities: - - uid: 10897 + - uid: 12925 components: - pos: 1.5,-7.5 parent: 2 type: Transform - - uid: 13802 + - uid: 12926 components: - pos: -0.5,-1.5 parent: 2 type: Transform - - uid: 16864 + - uid: 12927 components: - pos: -1.5,-9.5 parent: 2 type: Transform - - uid: 16973 + - uid: 12928 components: - pos: -15.5,-8.5 parent: 2 type: Transform - - uid: 17015 + - uid: 12929 components: - pos: 6.5,22.5 parent: 2 type: Transform - proto: RandomSoap entities: - - uid: 3234 + - uid: 12930 components: - pos: -51.5,-6.5 parent: 2 type: Transform - - uid: 4246 + - uid: 12931 components: - pos: -28.5,10.5 parent: 2 type: Transform - proto: RandomSpawner entities: - - uid: 2192 + - uid: 12932 components: - pos: -26.5,-28.5 parent: 2 type: Transform - - uid: 3559 + - uid: 12933 components: - pos: -25.5,0.5 parent: 2 type: Transform - - uid: 6190 + - uid: 12934 components: - pos: -27.5,-25.5 parent: 2 type: Transform - - uid: 6218 + - uid: 12935 components: - pos: -35.5,41.5 parent: 2 type: Transform - - uid: 6234 + - uid: 12936 components: - rot: -1.5707963267948966 rad pos: -45.5,47.5 parent: 2 type: Transform - - uid: 6293 + - uid: 12937 components: - pos: -26.5,35.5 parent: 2 type: Transform - - uid: 6337 + - uid: 12938 components: - pos: 9.5,30.5 parent: 2 type: Transform - - uid: 12255 + - uid: 12939 components: - pos: 6.5,17.5 parent: 2 type: Transform - - uid: 12262 + - uid: 12940 components: - pos: 30.5,28.5 parent: 2 type: Transform - - uid: 12263 + - uid: 12941 components: - pos: 36.5,16.5 parent: 2 type: Transform - - uid: 12264 + - uid: 12942 components: - pos: 39.5,4.5 parent: 2 type: Transform - - uid: 12266 + - uid: 12943 components: - pos: 18.5,-16.5 parent: 2 type: Transform - - uid: 12267 + - uid: 12944 components: - pos: 18.5,-8.5 parent: 2 type: Transform - - uid: 12271 + - uid: 12945 components: - pos: 0.5,-14.5 parent: 2 type: Transform - - uid: 12274 + - uid: 12946 components: - pos: -3.5,-12.5 parent: 2 type: Transform - - uid: 12294 + - uid: 12947 components: - pos: -32.5,-21.5 parent: 2 type: Transform - - uid: 12295 + - uid: 12948 components: - pos: -22.5,-18.5 parent: 2 type: Transform - - uid: 12297 + - uid: 12949 components: - pos: -41.5,-21.5 parent: 2 type: Transform - - uid: 12299 + - uid: 12950 components: - pos: -43.5,-15.5 parent: 2 type: Transform - - uid: 12321 + - uid: 12951 components: - pos: -47.5,2.5 parent: 2 type: Transform - - uid: 14180 + - uid: 12952 components: - pos: -49.5,18.5 parent: 2 type: Transform - - uid: 15224 + - uid: 12953 components: - pos: 14.5,-1.5 parent: 2 type: Transform - - uid: 15230 + - uid: 12954 components: - pos: 29.5,-22.5 parent: 2 type: Transform - - uid: 15280 + - uid: 12955 components: - pos: -14.5,18.5 parent: 2 type: Transform - - uid: 15319 + - uid: 12956 components: - pos: -18.5,16.5 parent: 2 type: Transform - - uid: 15320 + - uid: 12957 components: - pos: -28.5,19.5 parent: 2 type: Transform - - uid: 15357 + - uid: 12958 components: - pos: -6.5,21.5 parent: 2 type: Transform - - uid: 15461 + - uid: 12959 components: - pos: -0.5,26.5 parent: 2 type: Transform - - uid: 15469 + - uid: 12960 components: - pos: -9.5,21.5 parent: 2 type: Transform - - uid: 15542 + - uid: 12961 components: - pos: 37.5,12.5 parent: 2 type: Transform - - uid: 15571 + - uid: 12962 components: - pos: 11.5,-5.5 parent: 2 type: Transform - - uid: 15598 + - uid: 12963 components: - pos: 33.5,-5.5 parent: 2 type: Transform - - uid: 16143 + - uid: 12964 components: - pos: -39.5,-12.5 parent: 2 type: Transform - - uid: 16144 + - uid: 12965 components: - pos: -35.5,-14.5 parent: 2 type: Transform - - uid: 16327 + - uid: 12966 components: - pos: -0.5,-28.5 parent: 2 type: Transform - - uid: 16561 + - uid: 12967 components: - pos: -1.5,3.5 parent: 2 type: Transform - - uid: 16612 + - uid: 12968 components: - pos: -30.5,-28.5 parent: 2 type: Transform - - uid: 16639 + - uid: 12969 components: - pos: -46.5,43.5 parent: 2 type: Transform - - uid: 16849 + - uid: 12970 components: - pos: 4.5,-25.5 parent: 2 type: Transform - - uid: 16851 + - uid: 12971 components: - pos: -19.5,-32.5 parent: 2 type: Transform - - uid: 16852 + - uid: 12972 components: - pos: -22.5,-40.5 parent: 2 type: Transform - - uid: 16890 + - uid: 12973 components: - pos: -19.5,-0.5 parent: 2 type: Transform - - uid: 16923 + - uid: 12974 components: - pos: 1.5,7.5 parent: 2 type: Transform - - uid: 16925 + - uid: 12975 components: - pos: 7.5,4.5 parent: 2 type: Transform - - uid: 16981 + - uid: 12976 components: - pos: 4.5,10.5 parent: 2 type: Transform - - uid: 16982 + - uid: 12977 components: - pos: -17.5,18.5 parent: 2 type: Transform - - uid: 16993 + - uid: 12978 components: - pos: 5.5,30.5 parent: 2 type: Transform - - uid: 17004 + - uid: 12979 components: - pos: -34.5,22.5 parent: 2 type: Transform - - uid: 17038 + - uid: 12980 components: - pos: 21.5,-19.5 parent: 2 type: Transform - - uid: 17039 + - uid: 12981 components: - pos: 20.5,-18.5 parent: 2 type: Transform - - uid: 17040 + - uid: 12982 components: - pos: 20.5,-21.5 parent: 2 type: Transform - - uid: 17041 + - uid: 12983 components: - pos: 16.5,-22.5 parent: 2 type: Transform - - uid: 17042 + - uid: 12984 components: - pos: 15.5,-21.5 parent: 2 type: Transform - proto: RandomVending entities: - - uid: 2659 + - uid: 12985 components: - pos: -13.5,-36.5 parent: 2 type: Transform - - uid: 3282 + - uid: 12986 components: - pos: -53.5,1.5 parent: 2 type: Transform - - uid: 5892 + - uid: 12987 components: - pos: -43.5,12.5 parent: 2 type: Transform - - uid: 13085 + - uid: 12988 components: - pos: -16.5,-23.5 parent: 2 type: Transform - proto: RandomVendingDrinks entities: - - uid: 640 + - uid: 12989 components: - pos: -12.5,7.5 parent: 2 type: Transform - - uid: 1243 + - uid: 12990 components: - pos: -23.5,7.5 parent: 2 type: Transform - - uid: 2117 + - uid: 12991 components: - pos: -10.5,27.5 parent: 2 type: Transform - - uid: 2118 + - uid: 12992 components: - pos: -8.5,27.5 parent: 2 type: Transform - - uid: 4253 + - uid: 12993 components: - pos: -1.5,4.5 parent: 2 type: Transform - - uid: 11780 + - uid: 12994 components: - pos: -43.5,12.5 parent: 2 type: Transform - - uid: 14755 + - uid: 12995 components: - pos: -15.5,-68.5 parent: 2 type: Transform - - uid: 16891 + - uid: 12996 components: - pos: 14.5,-24.5 parent: 2 type: Transform - proto: RandomVendingSnacks entities: - - uid: 5512 + - uid: 12997 components: - pos: -1.5,29.5 parent: 2 type: Transform - - uid: 14754 + - uid: 12998 components: - pos: -15.5,-67.5 parent: 2 type: Transform - - uid: 15385 + - uid: 12999 components: - pos: -43.5,20.5 parent: 2 type: Transform - proto: RCD entities: - - uid: 1654 + - uid: 13000 components: - pos: -2.3680477,-30.285326 parent: 2 type: Transform - proto: RCDAmmo entities: - - uid: 1831 + - uid: 13001 components: - pos: -2.4930477,-30.551136 parent: 2 type: Transform - - uid: 1869 + - uid: 13002 components: - pos: -2.7430477,-30.5355 parent: 2 type: Transform - proto: ReagentContainerFlour entities: - - uid: 3219 + - uid: 13003 components: - pos: -60.417053,-0.40202177 parent: 2 type: Transform - - uid: 3220 + - uid: 13004 components: - pos: -60.573334,-0.26530302 parent: 2 type: Transform - proto: ReagentContainerSugar entities: - - uid: 3226 + - uid: 13005 components: - pos: -60.749146,-0.655928 parent: 2 type: Transform - - uid: 3227 + - uid: 13006 components: - pos: -60.358448,-0.71452177 parent: 2 type: Transform - proto: Recycler entities: - - uid: 3149 + - uid: 13007 components: - rot: 1.5707963267948966 rad pos: -49.5,3.5 parent: 2 type: Transform - links: - - 6732 + - 14705 type: DeviceLinkSink - - uid: 8401 + - uid: 13008 components: - rot: 1.5707963267948966 rad pos: 18.5,-22.5 parent: 2 type: Transform - links: - - 14963 + - 14706 type: DeviceLinkSink - proto: ReinforcedGirder entities: - - uid: 964 + - uid: 13009 + components: + - pos: 4.5,-56.5 + parent: 2 + type: Transform + - uid: 13010 components: - pos: 11.5,-48.5 parent: 2 type: Transform - - uid: 974 + - uid: 13011 components: - pos: -19.5,-50.5 parent: 2 type: Transform - - uid: 1133 + - uid: 13012 components: - pos: 54.5,20.5 parent: 2 type: Transform - - uid: 1183 + - uid: 13013 components: - pos: -52.5,6.5 parent: 2 type: Transform - - uid: 1515 + - uid: 13014 components: - pos: 9.5,-54.5 parent: 2 type: Transform - - uid: 1878 + - uid: 13015 components: - pos: -25.5,-50.5 parent: 2 type: Transform - - uid: 1880 - components: - - pos: -7.5,-52.5 - parent: 2 - type: Transform - - uid: 1890 - components: - - pos: -10.5,-51.5 - parent: 2 - type: Transform - - uid: 2100 + - uid: 13016 components: - pos: 65.5,11.5 parent: 2 type: Transform - - uid: 2140 + - uid: 13017 components: - pos: -55.5,6.5 parent: 2 type: Transform - - uid: 2511 + - uid: 13018 components: - pos: -34.5,-48.5 parent: 2 type: Transform - - uid: 2552 + - uid: 13019 components: - pos: -33.5,-48.5 parent: 2 type: Transform - - uid: 2553 + - uid: 13020 components: - pos: -30.5,-48.5 parent: 2 type: Transform - - uid: 2554 + - uid: 13021 components: - pos: -29.5,-48.5 parent: 2 type: Transform - - uid: 2558 + - uid: 13022 components: - pos: -41.5,-41.5 parent: 2 type: Transform - - uid: 2559 + - uid: 13023 components: - pos: -41.5,-40.5 parent: 2 type: Transform - - uid: 2560 + - uid: 13024 components: - pos: -41.5,-36.5 parent: 2 type: Transform - - uid: 2561 + - uid: 13025 components: - pos: -41.5,-35.5 parent: 2 type: Transform - - uid: 2889 - components: - - pos: -4.5,-48.5 - parent: 2 - type: Transform - - uid: 2890 - components: - - pos: -4.5,-50.5 - parent: 2 - type: Transform - - uid: 2891 - components: - - pos: -4.5,-49.5 - parent: 2 - type: Transform - - uid: 2892 - components: - - pos: -4.5,-51.5 - parent: 2 - type: Transform - - uid: 2894 - components: - - pos: -3.5,-52.5 - parent: 2 - type: Transform - - uid: 2895 - components: - - pos: -2.5,-52.5 - parent: 2 - type: Transform - - uid: 2897 - components: - - pos: -0.5,-52.5 - parent: 2 - type: Transform - - uid: 2898 - components: - - pos: 0.5,-52.5 - parent: 2 - type: Transform - - uid: 3066 + - uid: 13026 components: - pos: -53.5,-23.5 parent: 2 type: Transform - - uid: 3341 + - uid: 13027 components: - pos: -61.5,-23.5 parent: 2 type: Transform - - uid: 3425 + - uid: 13028 components: - pos: -66.5,1.5 parent: 2 type: Transform - - uid: 3429 + - uid: 13029 components: - pos: -66.5,-1.5 parent: 2 type: Transform - - uid: 3457 + - uid: 13030 components: - pos: -67.5,-14.5 parent: 2 type: Transform - - uid: 3465 + - uid: 13031 components: - pos: -66.5,-7.5 parent: 2 type: Transform - - uid: 3477 + - uid: 13032 components: - pos: -67.5,-10.5 parent: 2 type: Transform - - uid: 4588 + - uid: 13033 components: - pos: -45.5,-29.5 parent: 2 type: Transform - - uid: 4594 + - uid: 13034 components: - pos: -31.5,-86.5 parent: 2 type: Transform - - uid: 4598 + - uid: 13035 components: - pos: -28.5,-86.5 parent: 2 type: Transform - - uid: 4601 + - uid: 13036 components: - pos: -23.5,-89.5 parent: 2 type: Transform - - uid: 4607 + - uid: 13037 components: - pos: -23.5,-87.5 parent: 2 type: Transform - - uid: 4609 + - uid: 13038 components: - pos: -21.5,-89.5 parent: 2 type: Transform - - uid: 4611 + - uid: 13039 components: - pos: -37.5,-84.5 parent: 2 type: Transform - - uid: 4617 + - uid: 13040 components: - pos: -10.5,-89.5 parent: 2 type: Transform - - uid: 4622 + - uid: 13041 components: - pos: -1.5,-86.5 parent: 2 type: Transform - - uid: 4624 + - uid: 13042 components: - pos: -8.5,-89.5 parent: 2 type: Transform - - uid: 4629 + - uid: 13043 components: - pos: -5.5,-87.5 parent: 2 type: Transform - - uid: 4633 + - uid: 13044 components: - pos: -1.5,-87.5 parent: 2 type: Transform - - uid: 4634 + - uid: 13045 components: - pos: 1.5,-86.5 parent: 2 type: Transform - - uid: 4641 + - uid: 13046 components: - pos: -37.5,-66.5 parent: 2 type: Transform - - uid: 4647 + - uid: 13047 components: - pos: 5.5,-80.5 parent: 2 type: Transform - - uid: 4651 + - uid: 13048 components: - pos: 5.5,-76.5 parent: 2 type: Transform - - uid: 4655 + - uid: 13049 components: - pos: 3.5,-72.5 parent: 2 type: Transform - - uid: 4662 + - uid: 13050 components: - pos: 1.5,-66.5 parent: 2 type: Transform - - uid: 4664 + - uid: 13051 components: - pos: -11.5,-64.5 parent: 2 type: Transform - - uid: 4666 + - uid: 13052 components: - pos: 5.5,-72.5 parent: 2 type: Transform - - uid: 4667 + - uid: 13053 components: - pos: -0.5,-65.5 parent: 2 type: Transform - - uid: 4671 + - uid: 13054 components: - pos: -0.5,-66.5 parent: 2 type: Transform - - uid: 4675 + - uid: 13055 components: - pos: -7.5,-64.5 parent: 2 type: Transform - - uid: 4679 + - uid: 13056 components: - pos: -4.5,-64.5 parent: 2 type: Transform - - uid: 4688 + - uid: 13057 components: - pos: -4.5,-65.5 parent: 2 type: Transform - - uid: 4691 + - uid: 13058 components: - pos: -22.5,-65.5 parent: 2 type: Transform - - uid: 4694 + - uid: 13059 components: - pos: -25.5,-65.5 parent: 2 type: Transform - - uid: 4715 + - uid: 13060 components: - pos: -37.5,-80.5 parent: 2 type: Transform - - uid: 4717 + - uid: 13061 components: - pos: -37.5,-86.5 parent: 2 type: Transform - - uid: 4719 + - uid: 13062 components: - pos: -39.5,-78.5 parent: 2 type: Transform - - uid: 4723 + - uid: 13063 components: - pos: -39.5,-74.5 parent: 2 type: Transform - - uid: 4725 + - uid: 13064 components: - pos: -39.5,-72.5 parent: 2 type: Transform - - uid: 4729 + - uid: 13065 components: - pos: -37.5,-82.5 parent: 2 type: Transform - - uid: 4731 + - uid: 13066 components: - pos: -35.5,-86.5 parent: 2 type: Transform - - uid: 4738 + - uid: 13067 components: - pos: -45.5,-26.5 parent: 2 type: Transform - - uid: 4846 + - uid: 13068 components: - pos: 43.5,-23.5 parent: 2 type: Transform - - uid: 5307 + - uid: 13069 components: - pos: 60.5,2.5 parent: 2 type: Transform - - uid: 5308 + - uid: 13070 components: - pos: 65.5,9.5 parent: 2 type: Transform - - uid: 5309 + - uid: 13071 components: - pos: 62.5,14.5 parent: 2 type: Transform - - uid: 5310 + - uid: 13072 components: - pos: 46.5,16.5 parent: 2 type: Transform - - uid: 5311 + - uid: 13073 components: - pos: 33.5,31.5 parent: 2 type: Transform - - uid: 5312 + - uid: 13074 components: - pos: 39.5,22.5 parent: 2 type: Transform - - uid: 5313 + - uid: 13075 components: - pos: 37.5,27.5 parent: 2 type: Transform - - uid: 5314 + - uid: 13076 components: - pos: 35.5,29.5 parent: 2 type: Transform - - uid: 5316 + - uid: 13077 components: - pos: 30.5,34.5 parent: 2 type: Transform - - uid: 5317 + - uid: 13078 components: - pos: 27.5,34.5 parent: 2 type: Transform - - uid: 5319 + - uid: 13079 components: - pos: 7.5,33.5 parent: 2 type: Transform - - uid: 5320 + - uid: 13080 components: - pos: 13.5,33.5 parent: 2 type: Transform - - uid: 5920 + - uid: 13081 components: - pos: -22.5,49.5 parent: 2 type: Transform - - uid: 5941 + - uid: 13082 components: - pos: 13.5,37.5 parent: 2 type: Transform - - uid: 5942 + - uid: 13083 components: - pos: -28.5,47.5 parent: 2 type: Transform - - uid: 5943 + - uid: 13084 components: - pos: -26.5,49.5 parent: 2 type: Transform - - uid: 5944 + - uid: 13085 components: - pos: -18.5,49.5 parent: 2 type: Transform - - uid: 5946 + - uid: 13086 components: - pos: -11.5,49.5 parent: 2 type: Transform - - uid: 5947 + - uid: 13087 components: - pos: -6.5,48.5 parent: 2 type: Transform - - uid: 5948 + - uid: 13088 components: - pos: -4.5,48.5 parent: 2 type: Transform - - uid: 5949 + - uid: 13089 components: - pos: -2.5,47.5 parent: 2 type: Transform - - uid: 5950 + - uid: 13090 components: - pos: 3.5,45.5 parent: 2 type: Transform - - uid: 5951 + - uid: 13091 components: - pos: 4.5,43.5 parent: 2 type: Transform - - uid: 5952 + - uid: 13092 components: - pos: 5.5,41.5 parent: 2 type: Transform - - uid: 5953 + - uid: 13093 components: - pos: 6.5,39.5 parent: 2 type: Transform - - uid: 5954 + - uid: 13094 components: - pos: 7.5,37.5 parent: 2 type: Transform - - uid: 5956 + - uid: 13095 components: - pos: 7.5,35.5 parent: 2 type: Transform - - uid: 6026 - components: - - pos: 4.5,-54.5 - parent: 2 - type: Transform - - uid: 6032 + - uid: 13096 components: - pos: 4.5,-60.5 parent: 2 type: Transform - - uid: 6044 + - uid: 13097 components: - pos: -35.5,-61.5 parent: 2 type: Transform - - uid: 6045 + - uid: 13098 components: - pos: 19.5,34.5 parent: 2 type: Transform - - uid: 6046 + - uid: 13099 components: - pos: -35.5,-55.5 parent: 2 type: Transform - - uid: 6047 + - uid: 13100 components: - pos: -35.5,-51.5 parent: 2 type: Transform - - uid: 6238 + - uid: 13101 components: - pos: -40.5,70.5 parent: 2 type: Transform - - uid: 6239 + - uid: 13102 components: - pos: -44.5,70.5 parent: 2 type: Transform - - uid: 6286 + - uid: 13103 components: - pos: -32.5,54.5 parent: 2 type: Transform - - uid: 6356 + - uid: 13104 components: - pos: -52.5,68.5 parent: 2 type: Transform - - uid: 6429 + - uid: 13105 components: - pos: -32.5,68.5 parent: 2 type: Transform - - uid: 6431 + - uid: 13106 components: - pos: -52.5,54.5 parent: 2 type: Transform - - uid: 6664 + - uid: 13107 components: - pos: -58.5,45.5 parent: 2 type: Transform - - uid: 6669 + - uid: 13108 components: - pos: -55.5,51.5 parent: 2 type: Transform - - uid: 10131 + - uid: 13109 components: - pos: -42.5,70.5 parent: 2 type: Transform - - uid: 13126 + - uid: 13110 components: - pos: -67.5,-7.5 parent: 2 type: Transform - - uid: 13424 + - uid: 13111 components: - pos: -66.5,33.5 parent: 2 type: Transform - - uid: 13425 + - uid: 13112 components: - pos: -64.5,40.5 parent: 2 type: Transform - - uid: 13427 + - uid: 13113 components: - pos: -65.5,39.5 parent: 2 type: Transform - - uid: 13439 + - uid: 13114 components: - pos: -66.5,36.5 parent: 2 type: Transform - - uid: 13440 + - uid: 13115 components: - pos: -66.5,30.5 parent: 2 type: Transform - - uid: 13441 + - uid: 13116 components: - pos: -65.5,30.5 parent: 2 type: Transform - - uid: 16016 + - uid: 13117 components: - pos: 49.5,12.5 parent: 2 type: Transform - - uid: 17142 + - uid: 13118 components: - pos: 22.5,-46.5 parent: 2 type: Transform - - uid: 17144 + - uid: 13119 components: - pos: 17.5,-49.5 parent: 2 type: Transform + - uid: 13120 + components: + - pos: -12.5,-51.5 + parent: 2 + type: Transform - proto: ReinforcedPlasmaWindow entities: - - uid: 1061 + - uid: 13121 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-41.5 + parent: 2 + type: Transform + - uid: 13122 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-47.5 + parent: 2 + type: Transform + - uid: 13123 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-43.5 + parent: 2 + type: Transform + - uid: 13124 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-49.5 + parent: 2 + type: Transform + - uid: 13125 components: - pos: -42.5,-3.5 parent: 2 type: Transform - - uid: 1063 + - uid: 13126 components: - pos: -40.5,-3.5 parent: 2 type: Transform - - uid: 1787 + - uid: 13127 components: - rot: -1.5707963267948966 rad pos: -24.5,-40.5 parent: 2 type: Transform - - uid: 1984 + - uid: 13128 components: - pos: -14.5,-40.5 parent: 2 type: Transform - - uid: 2201 + - uid: 13129 components: - rot: -1.5707963267948966 rad pos: -24.5,-39.5 parent: 2 type: Transform - - uid: 2234 + - uid: 13130 components: - rot: -1.5707963267948966 rad pos: -24.5,-38.5 parent: 2 type: Transform - - uid: 2244 + - uid: 13131 components: - rot: -1.5707963267948966 rad pos: -24.5,-36.5 parent: 2 type: Transform - - uid: 2318 + - uid: 13132 components: - rot: -1.5707963267948966 rad pos: -24.5,-37.5 parent: 2 type: Transform - - uid: 2368 + - uid: 13133 components: - rot: 3.141592653589793 rad pos: -29.5,-26.5 parent: 2 type: Transform - - uid: 2374 + - uid: 13134 components: - pos: -30.5,-29.5 parent: 2 type: Transform - - uid: 2543 + - uid: 13135 components: - rot: -1.5707963267948966 rad pos: -40.5,-33.5 parent: 2 type: Transform - - uid: 2544 + - uid: 13136 components: - rot: -1.5707963267948966 rad pos: -37.5,-29.5 parent: 2 type: Transform - - uid: 2545 + - uid: 13137 components: - rot: -1.5707963267948966 rad pos: -40.5,-43.5 parent: 2 type: Transform - - uid: 2546 + - uid: 13138 components: - rot: -1.5707963267948966 rad pos: -40.5,-37.5 parent: 2 type: Transform - - uid: 2547 + - uid: 13139 components: - rot: -1.5707963267948966 rad pos: -40.5,-39.5 parent: 2 type: Transform - - uid: 2548 + - uid: 13140 components: - rot: -1.5707963267948966 rad pos: -27.5,-47.5 parent: 2 type: Transform - - uid: 2549 + - uid: 13141 components: - rot: -1.5707963267948966 rad pos: -31.5,-47.5 parent: 2 type: Transform - - uid: 2550 + - uid: 13142 components: - rot: -1.5707963267948966 rad pos: -35.5,-47.5 parent: 2 type: Transform - - uid: 2551 + - uid: 13143 components: - rot: -1.5707963267948966 rad pos: -37.5,-47.5 parent: 2 type: Transform - - uid: 2572 + - uid: 13144 components: - pos: -23.5,-33.5 parent: 2 type: Transform - - uid: 2573 + - uid: 13145 components: - pos: -23.5,-32.5 parent: 2 type: Transform - - uid: 2582 + - uid: 13146 components: - pos: -23.5,-44.5 parent: 2 type: Transform - - uid: 2583 + - uid: 13147 components: - pos: -23.5,-43.5 parent: 2 type: Transform - - uid: 2650 + - uid: 13148 components: - rot: -1.5707963267948966 rad pos: -36.5,-47.5 parent: 2 type: Transform - - uid: 2651 + - uid: 13149 components: - rot: -1.5707963267948966 rad pos: -32.5,-47.5 parent: 2 type: Transform - - uid: 2652 + - uid: 13150 components: - rot: -1.5707963267948966 rad pos: -28.5,-47.5 parent: 2 type: Transform - - uid: 2653 + - uid: 13151 components: - rot: -1.5707963267948966 rad pos: -26.5,-47.5 parent: 2 type: Transform - - uid: 2654 + - uid: 13152 components: - rot: -1.5707963267948966 rad pos: -40.5,-38.5 parent: 2 type: Transform - - uid: 2655 + - uid: 13153 components: - rot: -1.5707963267948966 rad pos: -40.5,-42.5 parent: 2 type: Transform - - uid: 2656 + - uid: 13154 components: - rot: -1.5707963267948966 rad pos: -40.5,-44.5 parent: 2 type: Transform - - uid: 2657 + - uid: 13155 components: - rot: -1.5707963267948966 rad pos: -36.5,-29.5 parent: 2 type: Transform - - uid: 2658 + - uid: 13156 components: - rot: -1.5707963267948966 rad pos: -40.5,-32.5 parent: 2 type: Transform - - uid: 2740 + - uid: 13157 components: - rot: 3.141592653589793 rad pos: -14.5,-32.5 parent: 2 type: Transform - - uid: 2741 + - uid: 13158 components: - rot: 3.141592653589793 rad pos: -14.5,-34.5 parent: 2 type: Transform - - uid: 2795 + - uid: 13159 components: - pos: -32.5,-29.5 parent: 2 type: Transform - - uid: 2843 + - uid: 13160 components: - rot: -1.5707963267948966 rad pos: -40.5,-34.5 parent: 2 type: Transform - - uid: 5385 + - uid: 13161 components: - pos: -41.5,2.5 parent: 2 type: Transform - - uid: 6752 + - uid: 13162 components: - pos: -40.5,2.5 parent: 2 type: Transform - - uid: 6773 + - uid: 13163 + components: + - pos: -42.5,2.5 + parent: 2 + type: Transform + - uid: 13164 + components: + - pos: 0.5,21.5 + parent: 2 + type: Transform + - uid: 13165 + components: + - pos: 1.5,21.5 + parent: 2 + type: Transform + - uid: 13166 + components: + - pos: 1.5,17.5 + parent: 2 + type: Transform + - uid: 13167 + components: + - pos: 0.5,17.5 + parent: 2 + type: Transform + - uid: 13168 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-51.5 + parent: 2 + type: Transform + - uid: 13169 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-45.5 + parent: 2 + type: Transform +- proto: ReinforcedWindow + entities: + - uid: 13170 + components: + - rot: 1.5707963267948966 rad + pos: -0.5,-52.5 + parent: 2 + type: Transform + - uid: 13171 + components: + - rot: 1.5707963267948966 rad + pos: -6.5,-46.5 + parent: 2 + type: Transform + - uid: 13172 + components: + - rot: 1.5707963267948966 rad + pos: -1.5,-52.5 + parent: 2 + type: Transform + - uid: 13173 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-41.5 + parent: 2 + type: Transform + - uid: 13174 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-47.5 + parent: 2 + type: Transform + - uid: 13175 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-49.5 + parent: 2 + type: Transform + - uid: 13176 components: - - pos: -42.5,2.5 + - rot: 1.5707963267948966 rad + pos: -5.5,-48.5 parent: 2 type: Transform - - uid: 7943 + - uid: 13177 components: - - pos: 0.5,21.5 + - rot: 1.5707963267948966 rad + pos: -8.5,-46.5 parent: 2 type: Transform - - uid: 7944 + - uid: 13178 components: - - pos: 1.5,21.5 + - rot: 1.5707963267948966 rad + pos: -4.5,-40.5 parent: 2 type: Transform - - uid: 7945 + - uid: 13179 components: - - pos: 1.5,17.5 + - rot: 1.5707963267948966 rad + pos: 2.5,-47.5 parent: 2 type: Transform - - uid: 7946 + - uid: 13180 components: - - pos: 0.5,17.5 + - rot: 1.5707963267948966 rad + pos: 2.5,-46.5 parent: 2 type: Transform -- proto: ReinforcedWindow - entities: - - uid: 37 + - uid: 13181 components: - pos: 29.5,-24.5 parent: 2 type: Transform - - uid: 40 + - uid: 13182 components: - pos: -29.5,-13.5 parent: 2 type: Transform - - uid: 210 + - uid: 13183 components: - pos: -36.5,-7.5 parent: 2 type: Transform - - uid: 276 + - uid: 13184 components: - pos: -22.5,19.5 parent: 2 type: Transform - - uid: 322 + - uid: 13185 components: - pos: -33.5,-13.5 parent: 2 type: Transform - - uid: 391 + - uid: 13186 components: - pos: 12.5,-42.5 parent: 2 type: Transform - - uid: 400 + - uid: 13187 components: - pos: 4.5,-34.5 parent: 2 type: Transform - - uid: 402 + - uid: 13188 components: - pos: 5.5,-34.5 parent: 2 type: Transform - - uid: 442 + - uid: 13189 components: - pos: -11.5,-20.5 parent: 2 type: Transform - - uid: 461 + - uid: 13190 components: - pos: 16.5,-4.5 parent: 2 type: Transform - - uid: 463 + - uid: 13191 components: - pos: 16.5,-5.5 parent: 2 type: Transform - - uid: 515 + - uid: 13192 components: - pos: -4.5,-32.5 parent: 2 type: Transform - - uid: 583 + - uid: 13193 components: - pos: -26.5,1.5 parent: 2 type: Transform - - uid: 618 + - uid: 13194 components: - pos: -64.5,-7.5 parent: 2 type: Transform - - uid: 812 + - uid: 13195 components: - pos: -28.5,4.5 parent: 2 type: Transform - - uid: 864 + - uid: 13196 components: - pos: -1.5,22.5 parent: 2 type: Transform - - uid: 897 + - uid: 13197 components: - pos: -5.5,-36.5 parent: 2 type: Transform - - uid: 900 + - uid: 13198 components: - pos: -1.5,16.5 parent: 2 type: Transform - - uid: 926 + - uid: 13199 components: - pos: -9.5,-15.5 parent: 2 type: Transform - - uid: 1046 + - uid: 13200 components: - pos: -41.5,-14.5 parent: 2 type: Transform - - uid: 1047 + - uid: 13201 components: - rot: 3.141592653589793 rad pos: -33.5,-12.5 parent: 2 type: Transform - - uid: 1084 + - uid: 13202 components: - pos: -34.5,-16.5 parent: 2 type: Transform - - uid: 1092 + - uid: 13203 components: - pos: -40.5,-16.5 parent: 2 type: Transform - - uid: 1134 + - uid: 13204 components: - rot: -1.5707963267948966 rad pos: 23.5,33.5 parent: 2 type: Transform - - uid: 1146 + - uid: 13205 components: - rot: -1.5707963267948966 rad pos: 21.5,33.5 parent: 2 type: Transform - - uid: 1154 + - uid: 13206 components: - rot: -1.5707963267948966 rad pos: 19.5,32.5 parent: 2 type: Transform - - uid: 1155 + - uid: 13207 components: - rot: -1.5707963267948966 rad pos: 19.5,33.5 parent: 2 type: Transform - - uid: 1157 + - uid: 13208 components: - rot: -1.5707963267948966 rad pos: 22.5,33.5 parent: 2 type: Transform - - uid: 1205 + - uid: 13209 components: - pos: -22.5,20.5 parent: 2 type: Transform - - uid: 1267 + - uid: 13210 components: - pos: -35.5,-7.5 parent: 2 type: Transform - - uid: 1335 + - uid: 13211 components: - pos: -9.5,-17.5 parent: 2 type: Transform - - uid: 1381 + - uid: 13212 components: - pos: 1.5,-31.5 parent: 2 type: Transform - - uid: 1417 + - uid: 13213 components: - pos: 3.5,-29.5 parent: 2 type: Transform - - uid: 1419 + - uid: 13214 components: - pos: 5.5,-29.5 parent: 2 type: Transform - - uid: 1421 + - uid: 13215 components: - pos: 4.5,-29.5 parent: 2 type: Transform - - uid: 1467 + - uid: 13216 components: - pos: -41.5,-11.5 parent: 2 type: Transform - - uid: 1473 + - uid: 13217 components: - pos: -4.5,32.5 parent: 2 type: Transform - - uid: 1493 + - uid: 13218 components: - pos: -8.5,-36.5 parent: 2 type: Transform - - uid: 1557 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-52.5 - parent: 2 - type: Transform - - uid: 1693 + - uid: 13219 components: - pos: 1.5,-30.5 parent: 2 type: Transform - - uid: 1703 + - uid: 13220 components: - pos: 41.5,-10.5 parent: 2 type: Transform - - uid: 1713 + - uid: 13221 components: - pos: 31.5,-24.5 parent: 2 type: Transform - - uid: 1914 + - uid: 13222 components: - pos: 6.5,-25.5 parent: 2 type: Transform - - uid: 1926 + - uid: 13223 components: - pos: 6.5,-24.5 parent: 2 type: Transform - - uid: 2028 - components: - - pos: 1.5,-47.5 - parent: 2 - type: Transform - - uid: 2029 - components: - - rot: -1.5707963267948966 rad - pos: 1.5,-49.5 - parent: 2 - type: Transform - - uid: 2031 - components: - - pos: 1.5,-48.5 - parent: 2 - type: Transform - - uid: 2092 + - uid: 13224 components: - pos: -54.5,38.5 parent: 2 type: Transform - - uid: 2135 + - uid: 13225 components: - pos: 5.5,34.5 parent: 2 type: Transform - - uid: 2149 + - uid: 13226 components: - rot: 3.141592653589793 rad pos: -49.5,-18.5 parent: 2 type: Transform - - uid: 2219 + - uid: 13227 components: - pos: -19.5,-23.5 parent: 2 type: Transform - - uid: 2220 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-52.5 - parent: 2 - type: Transform - - uid: 2253 - components: - - rot: -1.5707963267948966 rad - pos: -3.5,-42.5 - parent: 2 - type: Transform - - uid: 2267 + - uid: 13228 components: - pos: 6.5,-26.5 parent: 2 type: Transform - - uid: 2269 + - uid: 13229 components: - rot: 1.5707963267948966 rad - pos: 7.5,-46.5 + pos: 2.5,-50.5 parent: 2 type: Transform - - uid: 2296 + - uid: 13230 components: - pos: -16.5,-47.5 parent: 2 type: Transform - - uid: 2347 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-44.5 - parent: 2 - type: Transform - - uid: 2357 + - uid: 13231 components: - - rot: -1.5707963267948966 rad - pos: 5.5,-42.5 + - rot: 1.5707963267948966 rad + pos: -4.5,-37.5 parent: 2 type: Transform - - uid: 2880 + - uid: 13232 components: - pos: -4.5,-33.5 parent: 2 type: Transform - - uid: 2881 - components: - - pos: -3.5,-37.5 - parent: 2 - type: Transform - - uid: 2882 - components: - - pos: -1.5,-37.5 - parent: 2 - type: Transform - - uid: 2899 - components: - - pos: -1.5,-47.5 - parent: 2 - type: Transform - - uid: 2900 - components: - - pos: -2.5,-47.5 - parent: 2 - type: Transform - - uid: 2901 - components: - - pos: -0.5,-47.5 - parent: 2 - type: Transform - - uid: 2902 - components: - - pos: -0.5,-48.5 - parent: 2 - type: Transform - - uid: 2903 - components: - - pos: -0.5,-49.5 - parent: 2 - type: Transform - - uid: 2904 - components: - - pos: -0.5,-50.5 - parent: 2 - type: Transform - - uid: 2917 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-50.5 - parent: 2 - type: Transform - - uid: 2940 - components: - - pos: 3.5,-39.5 - parent: 2 - type: Transform - - uid: 2952 + - uid: 13233 components: - pos: 3.5,-36.5 parent: 2 type: Transform - - uid: 3004 + - uid: 13234 components: - pos: -50.5,-4.5 parent: 2 type: Transform - - uid: 3011 + - uid: 13235 components: - pos: -50.5,-2.5 parent: 2 type: Transform - - uid: 3030 + - uid: 13236 components: - rot: 3.141592653589793 rad pos: -52.5,-18.5 parent: 2 type: Transform - - uid: 3039 + - uid: 13237 components: - rot: 3.141592653589793 rad pos: -55.5,-18.5 parent: 2 type: Transform - - uid: 3040 + - uid: 13238 components: - rot: 3.141592653589793 rad pos: -58.5,-18.5 parent: 2 type: Transform - - uid: 3048 + - uid: 13239 components: - rot: 3.141592653589793 rad pos: -58.5,3.5 parent: 2 type: Transform - - uid: 3049 + - uid: 13240 components: - rot: 3.141592653589793 rad pos: -61.5,-1.5 parent: 2 type: Transform - - uid: 3062 + - uid: 13241 components: - pos: 41.5,-22.5 parent: 2 type: Transform - - uid: 3083 + - uid: 13242 components: - pos: -55.5,38.5 parent: 2 type: Transform - - uid: 3086 + - uid: 13243 components: - rot: 1.5707963267948966 rad pos: 41.5,-6.5 parent: 2 type: Transform - - uid: 3088 + - uid: 13244 components: - rot: 1.5707963267948966 rad pos: 41.5,-5.5 parent: 2 type: Transform - - uid: 3090 + - uid: 13245 components: - pos: -16.5,-50.5 parent: 2 type: Transform - - uid: 3107 + - uid: 13246 components: - rot: 1.5707963267948966 rad pos: 41.5,-7.5 parent: 2 type: Transform - - uid: 3109 + - uid: 13247 components: - rot: 1.5707963267948966 rad pos: 41.5,-14.5 parent: 2 type: Transform - - uid: 3110 + - uid: 13248 components: - rot: 1.5707963267948966 rad pos: 41.5,-13.5 parent: 2 type: Transform - - uid: 3151 + - uid: 13249 components: - rot: -1.5707963267948966 rad pos: -57.5,-6.5 parent: 2 type: Transform - - uid: 3153 + - uid: 13250 components: - rot: -1.5707963267948966 rad pos: -57.5,-8.5 parent: 2 type: Transform - - uid: 3157 + - uid: 13251 components: - rot: 3.141592653589793 rad pos: -60.5,-11.5 parent: 2 type: Transform - - uid: 3182 + - uid: 13252 components: - rot: 3.141592653589793 rad pos: -61.5,-0.5 parent: 2 type: Transform - - uid: 3196 + - uid: 13253 components: - rot: 1.5707963267948966 rad pos: 41.5,-15.5 parent: 2 type: Transform - - uid: 3260 + - uid: 13254 components: - rot: 1.5707963267948966 rad pos: 43.5,-10.5 parent: 2 type: Transform - - uid: 3261 + - uid: 13255 components: - rot: 1.5707963267948966 rad pos: 42.5,-10.5 parent: 2 type: Transform - - uid: 3263 + - uid: 13256 components: - rot: 1.5707963267948966 rad pos: 43.5,-2.5 parent: 2 type: Transform - - uid: 3264 + - uid: 13257 components: - rot: 1.5707963267948966 rad pos: 42.5,-2.5 parent: 2 type: Transform - - uid: 3270 + - uid: 13258 components: - rot: 1.5707963267948966 rad pos: 43.5,-18.5 parent: 2 type: Transform - - uid: 3271 + - uid: 13259 components: - rot: 1.5707963267948966 rad pos: 42.5,-18.5 parent: 2 type: Transform - - uid: 3277 + - uid: 13260 components: - pos: -64.5,-8.5 parent: 2 type: Transform - - uid: 3294 + - uid: 13261 components: - rot: 1.5707963267948966 rad pos: 41.5,-21.5 parent: 2 type: Transform - - uid: 3398 + - uid: 13262 components: - pos: 5.5,35.5 parent: 2 type: Transform - - uid: 3505 + - uid: 13263 components: - pos: 41.5,-2.5 parent: 2 type: Transform - - uid: 3537 + - uid: 13264 components: - pos: 20.5,-2.5 parent: 2 type: Transform - - uid: 3546 + - uid: 13265 components: - pos: -23.5,37.5 parent: 2 type: Transform - - uid: 3557 + - uid: 13266 components: - pos: 19.5,-2.5 parent: 2 type: Transform - - uid: 3565 + - uid: 13267 components: - pos: 38.5,-24.5 parent: 2 type: Transform - - uid: 3651 + - uid: 13268 components: - pos: 12.5,-43.5 parent: 2 type: Transform - - uid: 3751 + - uid: 13269 components: - pos: -23.5,-75.5 parent: 2 type: Transform - - uid: 3770 + - uid: 13270 components: - pos: -24.5,-75.5 parent: 2 type: Transform - - uid: 3771 + - uid: 13271 components: - pos: -25.5,-75.5 parent: 2 type: Transform - - uid: 3772 + - uid: 13272 components: - pos: -25.5,-77.5 parent: 2 type: Transform - - uid: 3773 + - uid: 13273 components: - pos: -24.5,-77.5 parent: 2 type: Transform - - uid: 3774 + - uid: 13274 components: - pos: -23.5,-77.5 parent: 2 type: Transform - - uid: 3867 + - uid: 13275 components: - rot: -1.5707963267948966 rad pos: -6.5,-76.5 parent: 2 type: Transform - - uid: 4428 + - uid: 13276 components: - pos: 11.5,19.5 parent: 2 type: Transform - - uid: 4429 + - uid: 13277 components: - pos: 11.5,18.5 parent: 2 type: Transform - - uid: 4489 + - uid: 13278 components: - pos: -40.5,4.5 parent: 2 type: Transform - - uid: 4492 + - uid: 13279 components: - pos: 20.5,12.5 parent: 2 type: Transform - - uid: 4494 + - uid: 13280 components: - pos: 20.5,11.5 parent: 2 type: Transform - - uid: 4505 + - uid: 13281 components: - pos: -41.5,4.5 parent: 2 type: Transform - - uid: 4535 + - uid: 13282 components: - pos: -42.5,4.5 parent: 2 type: Transform - - uid: 4811 + - uid: 13283 components: - pos: 36.5,-24.5 parent: 2 type: Transform - - uid: 4815 + - uid: 13284 components: - pos: 25.5,-23.5 parent: 2 type: Transform - - uid: 4826 + - uid: 13285 components: - rot: 3.141592653589793 rad pos: 27.5,-19.5 parent: 2 type: Transform - - uid: 4857 + - uid: 13286 components: - pos: 40.5,-14.5 parent: 2 type: Transform - - uid: 4888 + - uid: 13287 components: - pos: 47.5,12.5 parent: 2 type: Transform - - uid: 4889 + - uid: 13288 components: - pos: 34.5,23.5 parent: 2 type: Transform - - uid: 4900 + - uid: 13289 components: - pos: 34.5,22.5 parent: 2 type: Transform - - uid: 4956 + - uid: 13290 components: - pos: 24.5,7.5 parent: 2 type: Transform - - uid: 5034 + - uid: 13291 components: - pos: 46.5,13.5 parent: 2 type: Transform - - uid: 5047 + - uid: 13292 components: - pos: 48.5,12.5 parent: 2 type: Transform - - uid: 5049 + - uid: 13293 components: - pos: 46.5,12.5 parent: 2 type: Transform - - uid: 5053 + - uid: 13294 components: - pos: 46.5,9.5 parent: 2 type: Transform - - uid: 5054 + - uid: 13295 components: - pos: 46.5,10.5 parent: 2 type: Transform - - uid: 5055 + - uid: 13296 components: - pos: 47.5,10.5 parent: 2 type: Transform - - uid: 5056 + - uid: 13297 components: - pos: 48.5,10.5 parent: 2 type: Transform - - uid: 5082 + - uid: 13298 components: - pos: 42.5,6.5 parent: 2 type: Transform - - uid: 5084 + - uid: 13299 components: - pos: 16.5,14.5 parent: 2 type: Transform - - uid: 5315 + - uid: 13300 components: - pos: 20.5,33.5 parent: 2 type: Transform - - uid: 5318 + - uid: 13301 components: - rot: -1.5707963267948966 rad pos: 23.5,32.5 parent: 2 type: Transform - - uid: 5369 + - uid: 13302 components: - pos: -38.5,-25.5 parent: 2 type: Transform - - uid: 5380 + - uid: 13303 components: - pos: 4.5,19.5 parent: 2 type: Transform - - uid: 5389 + - uid: 13304 components: - pos: -37.5,-25.5 parent: 2 type: Transform - - uid: 5396 + - uid: 13305 components: - pos: -51.5,12.5 parent: 2 type: Transform - - uid: 5416 + - uid: 13306 components: - pos: -4.5,28.5 parent: 2 type: Transform - - uid: 5426 + - uid: 13307 components: - pos: 5.5,33.5 parent: 2 type: Transform - - uid: 5437 + - uid: 13308 components: - pos: -11.5,45.5 parent: 2 type: Transform - - uid: 5442 + - uid: 13309 components: - pos: -21.5,34.5 parent: 2 type: Transform - - uid: 5445 + - uid: 13310 components: - pos: -18.5,34.5 parent: 2 type: Transform - - uid: 5464 + - uid: 13311 components: - pos: -7.5,44.5 parent: 2 type: Transform - - uid: 5468 + - uid: 13312 components: - pos: -9.5,45.5 parent: 2 type: Transform - - uid: 5526 + - uid: 13313 components: - pos: -54.5,2.5 parent: 2 type: Transform - - uid: 5527 + - uid: 13314 components: - pos: -53.5,2.5 parent: 2 type: Transform - - uid: 5578 + - uid: 13315 components: - pos: 2.5,42.5 parent: 2 type: Transform - - uid: 5585 + - uid: 13316 components: - pos: -6.5,44.5 parent: 2 type: Transform - - uid: 5587 + - uid: 13317 components: - pos: -10.5,45.5 parent: 2 type: Transform - - uid: 5588 + - uid: 13318 components: - pos: -14.5,43.5 parent: 2 type: Transform - - uid: 5589 + - uid: 13319 components: - pos: -5.5,43.5 parent: 2 type: Transform - - uid: 5592 + - uid: 13320 components: - pos: -8.5,45.5 parent: 2 type: Transform - - uid: 5593 + - uid: 13321 components: - pos: -5.5,44.5 parent: 2 type: Transform - - uid: 5597 + - uid: 13322 components: - pos: -14.5,44.5 parent: 2 type: Transform - - uid: 5601 + - uid: 13323 components: - pos: -13.5,44.5 parent: 2 type: Transform - - uid: 5602 + - uid: 13324 components: - pos: -12.5,44.5 parent: 2 type: Transform - - uid: 5610 + - uid: 13325 components: - pos: -7.5,45.5 parent: 2 type: Transform - - uid: 5612 + - uid: 13326 components: - pos: -12.5,45.5 parent: 2 type: Transform - - uid: 5639 + - uid: 13327 components: - rot: -1.5707963267948966 rad pos: -52.5,17.5 parent: 2 type: Transform - - uid: 5698 + - uid: 13328 components: - pos: -28.5,43.5 parent: 2 type: Transform - - uid: 5699 + - uid: 13329 components: - pos: -27.5,43.5 parent: 2 type: Transform - - uid: 5700 + - uid: 13330 components: - pos: -27.5,44.5 parent: 2 type: Transform - - uid: 5701 + - uid: 13331 components: - pos: -26.5,44.5 parent: 2 type: Transform - - uid: 5702 + - uid: 13332 components: - pos: -26.5,45.5 parent: 2 type: Transform - - uid: 5703 + - uid: 13333 components: - pos: -25.5,45.5 parent: 2 type: Transform - - uid: 5704 + - uid: 13334 components: - pos: -24.5,45.5 parent: 2 type: Transform - - uid: 5705 + - uid: 13335 components: - pos: -23.5,45.5 parent: 2 type: Transform - - uid: 5706 + - uid: 13336 components: - pos: -22.5,45.5 parent: 2 type: Transform - - uid: 5707 + - uid: 13337 components: - pos: -21.5,45.5 parent: 2 type: Transform - - uid: 5708 + - uid: 13338 components: - pos: -20.5,45.5 parent: 2 type: Transform - - uid: 5709 + - uid: 13339 components: - pos: -20.5,44.5 parent: 2 type: Transform - - uid: 5710 + - uid: 13340 components: - pos: -19.5,44.5 parent: 2 type: Transform - - uid: 5711 + - uid: 13341 components: - pos: -19.5,43.5 parent: 2 type: Transform - - uid: 5712 + - uid: 13342 components: - pos: -18.5,43.5 parent: 2 type: Transform - - uid: 5826 + - uid: 13343 components: - pos: -33.5,27.5 parent: 2 type: Transform - - uid: 5911 + - uid: 13344 components: - pos: -46.5,38.5 parent: 2 type: Transform - - uid: 5922 + - uid: 13345 components: - pos: 42.5,4.5 parent: 2 type: Transform - - uid: 5932 + - uid: 13346 components: - pos: -45.5,37.5 parent: 2 type: Transform - - uid: 5933 + - uid: 13347 components: - pos: -45.5,36.5 parent: 2 type: Transform - - uid: 5935 + - uid: 13348 components: - pos: -41.5,37.5 parent: 2 type: Transform - - uid: 5936 + - uid: 13349 components: - pos: -41.5,36.5 parent: 2 type: Transform - - uid: 6073 + - uid: 13350 components: - rot: -1.5707963267948966 rad pos: -54.5,12.5 parent: 2 type: Transform - - uid: 6074 + - uid: 13351 components: - rot: -1.5707963267948966 rad pos: -52.5,15.5 parent: 2 type: Transform - - uid: 6076 + - uid: 13352 components: - rot: -1.5707963267948966 rad pos: -52.5,16.5 parent: 2 type: Transform - - uid: 6150 + - uid: 13353 components: - pos: -52.5,41.5 parent: 2 type: Transform - - uid: 6151 + - uid: 13354 components: - pos: -52.5,40.5 parent: 2 type: Transform - - uid: 6152 + - uid: 13355 components: - pos: -52.5,39.5 parent: 2 type: Transform - - uid: 6159 + - uid: 13356 components: - pos: -56.5,41.5 parent: 2 type: Transform - - uid: 6160 + - uid: 13357 components: - pos: -56.5,40.5 parent: 2 type: Transform - - uid: 6161 + - uid: 13358 components: - pos: -56.5,39.5 parent: 2 type: Transform - - uid: 6162 + - uid: 13359 components: - pos: -53.5,42.5 parent: 2 type: Transform - - uid: 6163 + - uid: 13360 components: - pos: -54.5,42.5 parent: 2 type: Transform - - uid: 6164 + - uid: 13361 components: - pos: -55.5,42.5 parent: 2 type: Transform - - uid: 6179 + - uid: 13362 components: - pos: -50.5,40.5 parent: 2 type: Transform - - uid: 6180 + - uid: 13363 components: - pos: -50.5,39.5 parent: 2 type: Transform - - uid: 6199 + - uid: 13364 components: - pos: -43.5,53.5 parent: 2 type: Transform - - uid: 6223 + - uid: 13365 components: - pos: -43.5,54.5 parent: 2 type: Transform - - uid: 6233 + - uid: 13366 components: - pos: -43.5,52.5 parent: 2 type: Transform - - uid: 6244 + - uid: 13367 components: - pos: -41.5,53.5 parent: 2 type: Transform - - uid: 6263 + - uid: 13368 components: - pos: -60.5,32.5 parent: 2 type: Transform - - uid: 6269 + - uid: 13369 components: - pos: -61.5,32.5 parent: 2 type: Transform - - uid: 6270 + - uid: 13370 components: - pos: -62.5,32.5 parent: 2 type: Transform - - uid: 6282 + - uid: 13371 components: - pos: -60.5,37.5 parent: 2 type: Transform - - uid: 6283 + - uid: 13372 components: - pos: -60.5,36.5 parent: 2 type: Transform - - uid: 6284 + - uid: 13373 components: - pos: -61.5,36.5 parent: 2 type: Transform - - uid: 6285 + - uid: 13374 components: - pos: -62.5,36.5 parent: 2 type: Transform - - uid: 6290 + - uid: 13375 components: - pos: -60.5,31.5 parent: 2 type: Transform - - uid: 6301 + - uid: 13376 components: - pos: -58.5,31.5 parent: 2 type: Transform - - uid: 6306 + - uid: 13377 components: - pos: -58.5,37.5 parent: 2 type: Transform - - uid: 6307 + - uid: 13378 components: - pos: -58.5,36.5 parent: 2 type: Transform - - uid: 6308 + - uid: 13379 components: - pos: -58.5,35.5 parent: 2 type: Transform - - uid: 6310 + - uid: 13380 components: - pos: -58.5,33.5 parent: 2 type: Transform - - uid: 6311 + - uid: 13381 components: - pos: -58.5,32.5 parent: 2 type: Transform - - uid: 6365 + - uid: 13382 components: - pos: -44.5,52.5 parent: 2 type: Transform - - uid: 6384 + - uid: 13383 components: - pos: -41.5,52.5 parent: 2 type: Transform - - uid: 6402 + - uid: 13384 components: - pos: -40.5,52.5 parent: 2 type: Transform - - uid: 6419 + - uid: 13385 components: - pos: -41.5,54.5 parent: 2 type: Transform - - uid: 6448 + - uid: 13386 components: - pos: -51.5,35.5 parent: 2 type: Transform - - uid: 6451 + - uid: 13387 components: - pos: -51.5,34.5 parent: 2 type: Transform - - uid: 6598 + - uid: 13388 components: - rot: -1.5707963267948966 rad pos: -54.5,20.5 parent: 2 type: Transform - - uid: 6627 + - uid: 13389 components: - pos: -43.5,4.5 parent: 2 type: Transform - - uid: 6690 + - uid: 13390 components: - pos: 3.5,39.5 parent: 2 type: Transform - - uid: 6691 + - uid: 13391 components: - pos: 3.5,38.5 parent: 2 type: Transform - - uid: 6739 + - uid: 13392 components: - pos: -39.5,4.5 parent: 2 type: Transform - - uid: 6746 + - uid: 13393 components: - pos: 21.5,9.5 parent: 2 type: Transform - - uid: 6765 + - uid: 13394 components: - pos: 15.5,14.5 parent: 2 type: Transform - - uid: 6860 + - uid: 13395 components: - pos: -41.5,24.5 parent: 2 type: Transform - - uid: 7171 + - uid: 13396 components: - pos: -12.5,-20.5 parent: 2 type: Transform - - uid: 7557 + - uid: 13397 components: - pos: -62.5,-10.5 parent: 2 type: Transform - - uid: 7897 + - uid: 13398 components: - pos: 4.5,20.5 parent: 2 type: Transform - - uid: 7900 + - uid: 13399 components: - pos: 8.5,-24.5 parent: 2 type: Transform - - uid: 7925 + - uid: 13400 components: - pos: 4.5,18.5 parent: 2 type: Transform - - uid: 9058 + - uid: 13401 components: - pos: 23.5,-31.5 parent: 2 type: Transform - - uid: 9326 + - uid: 13402 components: - pos: -13.5,-20.5 parent: 2 type: Transform - - uid: 10478 + - uid: 13403 components: - pos: 7.5,-32.5 parent: 2 type: Transform - - uid: 10667 + - uid: 13404 components: - pos: 6.5,-14.5 parent: 2 type: Transform - - uid: 10670 + - uid: 13405 components: - pos: 8.5,-26.5 parent: 2 type: Transform - - uid: 10676 + - uid: 13406 components: - pos: 15.5,-35.5 parent: 2 type: Transform - - uid: 10679 + - uid: 13407 components: - pos: 9.5,-35.5 parent: 2 type: Transform - - uid: 10682 + - uid: 13408 components: - pos: 12.5,-38.5 parent: 2 type: Transform - - uid: 11541 + - uid: 13409 components: - rot: 3.141592653589793 rad pos: 20.5,-34.5 parent: 2 type: Transform - - uid: 11629 + - uid: 13410 components: - pos: 17.5,-34.5 parent: 2 type: Transform - - uid: 11630 + - uid: 13411 components: - pos: 6.5,-34.5 parent: 2 type: Transform - - uid: 11755 + - uid: 13412 components: - pos: 23.5,-30.5 parent: 2 type: Transform - - uid: 11779 + - uid: 13413 components: - pos: 16.5,-35.5 parent: 2 type: Transform - - uid: 11782 + - uid: 13414 components: - pos: -34.5,44.5 parent: 2 type: Transform - - uid: 12107 + - uid: 13415 components: - pos: 13.5,-27.5 parent: 2 type: Transform - - uid: 12238 + - uid: 13416 components: - rot: 3.141592653589793 rad pos: 20.5,-33.5 parent: 2 type: Transform - - uid: 12522 + - uid: 13417 components: - pos: 28.5,3.5 parent: 2 type: Transform - - uid: 12735 + - uid: 13418 components: - pos: -42.5,38.5 parent: 2 type: Transform - - uid: 12744 + - uid: 13419 components: - pos: -43.5,38.5 parent: 2 type: Transform - - uid: 13096 + - uid: 13420 components: - pos: -58.5,34.5 parent: 2 type: Transform - - uid: 13123 + - uid: 13421 components: - pos: 41.5,-18.5 parent: 2 type: Transform - - uid: 13146 + - uid: 13422 components: - pos: -62.5,-4.5 parent: 2 type: Transform - - uid: 13571 + - uid: 13423 components: - pos: 7.5,-14.5 parent: 2 type: Transform - - uid: 13701 + - uid: 13424 components: - pos: -51.5,28.5 parent: 2 type: Transform - - uid: 14220 + - uid: 13425 components: - rot: 1.5707963267948966 rad pos: 8.5,-25.5 parent: 2 type: Transform - - uid: 14274 + - uid: 13426 components: - pos: 27.5,3.5 parent: 2 type: Transform - - uid: 15348 + - uid: 13427 components: - pos: -51.5,26.5 parent: 2 type: Transform - - uid: 15442 + - uid: 13428 components: - pos: -51.5,27.5 parent: 2 type: Transform - - uid: 15482 + - uid: 13429 components: - pos: 12.5,-39.5 parent: 2 type: Transform - - uid: 15558 + - uid: 13430 components: - pos: 12.5,-37.5 parent: 2 type: Transform - - uid: 15624 + - uid: 13431 components: - pos: -51.5,23.5 parent: 2 type: Transform - - uid: 15720 + - uid: 13432 components: - pos: -63.5,-4.5 parent: 2 type: Transform - - uid: 15721 + - uid: 13433 components: - pos: -64.5,-6.5 parent: 2 type: Transform - - uid: 15722 + - uid: 13434 components: - pos: -64.5,-5.5 parent: 2 type: Transform - - uid: 15732 + - uid: 13435 components: - pos: -64.5,-9.5 parent: 2 type: Transform - - uid: 15733 + - uid: 13436 components: - pos: -63.5,-10.5 parent: 2 type: Transform - - uid: 15758 + - uid: 13437 components: - pos: -57.5,3.5 parent: 2 type: Transform - - uid: 15796 + - uid: 13438 components: - pos: -64.5,-4.5 parent: 2 type: Transform - - uid: 15797 + - uid: 13439 components: - pos: -64.5,-10.5 parent: 2 type: Transform - - uid: 16108 + - uid: 13440 components: - - pos: -1.5,-45.5 + - pos: 34.5,-23.5 parent: 2 type: Transform - - uid: 16230 + - uid: 13441 components: - - pos: -0.5,-45.5 + - pos: 33.5,-23.5 parent: 2 type: Transform - - uid: 16291 + - uid: 13442 components: - - pos: 34.5,-23.5 + - pos: -51.5,9.5 parent: 2 type: Transform - - uid: 16292 + - uid: 13443 components: - - pos: 33.5,-23.5 + - pos: -51.5,20.5 parent: 2 type: Transform - - uid: 16355 + - uid: 13444 components: - - pos: -51.5,9.5 + - pos: 11.5,31.5 parent: 2 type: Transform - - uid: 16356 + - uid: 13445 components: - - pos: -51.5,20.5 + - pos: 7.5,-31.5 parent: 2 type: Transform - - uid: 16642 + - uid: 13446 components: - - pos: 11.5,31.5 + - pos: 27.5,-20.5 parent: 2 type: Transform - - uid: 16760 + - uid: 13447 components: - - pos: 0.5,-45.5 + - rot: 1.5707963267948966 rad + pos: 2.5,-45.5 parent: 2 type: Transform - - uid: 16850 + - uid: 13448 components: - - pos: 7.5,-31.5 + - rot: 1.5707963267948966 rad + pos: 2.5,-42.5 parent: 2 type: Transform - - uid: 16968 + - uid: 13449 components: - - pos: 27.5,-20.5 + - rot: 1.5707963267948966 rad + pos: 2.5,-49.5 + parent: 2 + type: Transform + - uid: 13450 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-51.5 + parent: 2 + type: Transform + - uid: 13451 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-43.5 + parent: 2 + type: Transform + - uid: 13452 + components: + - rot: 1.5707963267948966 rad + pos: -7.5,-46.5 + parent: 2 + type: Transform +- proto: RemoteSignaller + entities: + - uid: 13453 + components: + - pos: -7.5,-44.5 parent: 2 type: Transform - proto: ResearchAndDevelopmentServer entities: - - uid: 2415 + - uid: 13454 components: - pos: -46.5,41.5 parent: 2 type: Transform - proto: ReverseEngineeringMachine entities: - - uid: 11503 + - uid: 13455 components: - pos: -37.5,27.5 parent: 2 type: Transform - proto: RevolverCapGun entities: - - uid: 13810 + - uid: 13456 components: - pos: -38.37131,10.388292 parent: 2 type: Transform - proto: Rickenbacker4003Instrument entities: - - uid: 4289 + - uid: 13457 components: - pos: -13.422459,-7.552577 parent: 2 type: Transform - proto: Roboisseur entities: - - uid: 709 + - uid: 13458 components: - pos: -6.5,15.5 parent: 2 type: Transform - proto: RollerBed entities: - - uid: 823 + - uid: 13459 components: - pos: -30.5,1.5 parent: 2 type: Transform - - uid: 825 + - uid: 13460 components: - pos: -30.5,0.5 parent: 2 type: Transform - - uid: 15270 + - uid: 13461 components: - pos: 23.5,10.5 parent: 2 type: Transform - - uid: 15281 + - uid: 13462 components: - pos: 23.5,11.5 parent: 2 type: Transform - - uid: 16271 + - uid: 13463 components: - pos: 12.5,10.5 parent: 2 type: Transform - - uid: 16272 + - uid: 13464 components: - pos: 12.5,11.5 parent: 2 type: Transform - proto: RubberStampApproved entities: - - uid: 2976 + - uid: 13465 components: - pos: -7.780299,-15.266973 parent: 2 type: Transform - - uid: 3854 + - uid: 13466 components: - pos: 19.36564,-3.2383914 parent: 2 type: Transform - proto: RubberStampDenied entities: - - uid: 2974 + - uid: 13467 components: - pos: -7.894883,-15.527569 parent: 2 type: Transform - - uid: 3855 + - uid: 13468 components: - pos: 19.64689,-3.2488155 parent: 2 type: Transform +- proto: SalvageCanisterSpawner + entities: + - uid: 13469 + components: + - pos: 4.5,-35.5 + parent: 2 + type: Transform + - uid: 13470 + components: + - pos: 7.5,-36.5 + parent: 2 + type: Transform - proto: SalvageMagnet entities: - - uid: 17194 + - uid: 13471 components: - pos: 17.5,-45.5 parent: 2 type: Transform - proto: SawImprov entities: - - uid: 4018 + - uid: 13472 components: - pos: -38.408813,-22.660835 parent: 2 type: Transform - proto: Scalpel entities: - - uid: 16540 + - uid: 13473 components: - pos: -40.603756,39.604465 parent: 2 type: Transform - - uid: 17032 + - uid: 13474 components: - pos: 28.528358,18.75126 parent: 2 type: Transform - proto: Screwdriver entities: - - uid: 6342 + - uid: 13475 components: - pos: -44.492104,49.61668 parent: 2 type: Transform - - uid: 9623 + - uid: 13476 components: - pos: 43.401894,13.602428 parent: 2 type: Transform - - uid: 11868 + - uid: 13477 components: - rot: 1.5707963267948966 rad pos: 22.685566,26.819038 parent: 2 type: Transform - - uid: 12344 + - uid: 13478 components: - pos: 9.434161,21.357351 parent: 2 type: Transform - - uid: 15984 + - uid: 13479 components: - pos: -22.25804,-79.09148 parent: 2 type: Transform - - uid: 16317 + - uid: 13480 components: - rot: 3.141592653589793 rad pos: -47.36143,-17.800941 parent: 2 type: Transform - - uid: 16551 + - uid: 13481 components: - pos: -40.520424,40.344563 parent: 2 type: Transform - proto: SecBreachingHammer entities: - - uid: 6774 + - uid: 13482 components: - pos: -44.37972,-6.4715266 parent: 2 type: Transform - proto: SecurityTechFab entities: - - uid: 6754 + - uid: 13483 components: - pos: -43.5,1.5 parent: 2 type: Transform - proto: SeedExtractor entities: - - uid: 211 + - uid: 13484 components: - pos: -21.5,7.5 parent: 2 type: Transform - proto: ShardGlass entities: - - uid: 5284 + - uid: 13485 components: - rot: 3.141592653589793 rad pos: 50.596,16.519693 parent: 2 type: Transform - - uid: 5285 + - uid: 13486 components: - rot: 1.5707963267948966 rad pos: 54.893677,18.004068 parent: 2 type: Transform - - uid: 5286 + - uid: 13487 components: - pos: 59.757862,14.74235 parent: 2 type: Transform - - uid: 5287 + - uid: 13488 components: - rot: -1.5707963267948966 rad pos: 59.816467,8.275618 parent: 2 type: Transform - - uid: 5289 + - uid: 13489 components: - rot: 3.141592653589793 rad pos: 59.15228,3.900022 parent: 2 type: Transform - - uid: 5290 + - uid: 13490 components: - rot: 1.5707963267948966 rad pos: 51.382828,7.317991 parent: 2 type: Transform - - uid: 6468 + - uid: 13491 components: - pos: -34.57097,61.620876 parent: 2 type: Transform - - uid: 6474 + - uid: 13492 components: - pos: -50.41144,57.145058 parent: 2 type: Transform - - uid: 6475 + - uid: 13493 components: - rot: -1.5707963267948966 rad pos: -47.63749,58.219276 parent: 2 type: Transform - - uid: 6476 + - uid: 13494 components: - rot: 3.141592653589793 rad pos: -45.703537,56.598183 parent: 2 type: Transform - - uid: 6477 + - uid: 13495 components: - rot: 1.5707963267948966 rad pos: -44.04307,58.492714 parent: 2 type: Transform - - uid: 6478 + - uid: 13496 components: - pos: -48.926792,61.148964 parent: 2 type: Transform - - uid: 6479 + - uid: 13497 components: - rot: -1.5707963267948966 rad pos: -46.738884,62.16459 parent: 2 type: Transform - - uid: 6480 + - uid: 13498 components: - rot: 3.141592653589793 rad pos: -48.750977,64.78176 parent: 2 type: Transform - - uid: 6481 + - uid: 13499 components: - rot: 1.5707963267948966 rad pos: -46.387257,66.246605 parent: 2 type: Transform - - uid: 6482 + - uid: 13500 components: - pos: -44.80493,64.91848 parent: 2 type: Transform - - uid: 6483 + - uid: 13501 components: - rot: -1.5707963267948966 rad pos: -38.26985,65.465355 parent: 2 type: Transform - - uid: 6484 + - uid: 13502 components: - rot: 3.141592653589793 rad pos: -35.919876,65.97317 parent: 2 type: Transform - - uid: 6485 + - uid: 13503 components: - rot: 1.5707963267948966 rad pos: -34.356083,64.391136 parent: 2 type: Transform - - uid: 6486 + - uid: 13504 components: - rot: -1.5707963267948966 rad pos: -39.024918,60.800564 parent: 2 type: Transform - - uid: 6487 + - uid: 13505 components: - rot: 3.141592653589793 rad pos: -40.450966,62.48025 parent: 2 type: Transform - - uid: 6489 + - uid: 13506 components: - rot: 1.5707963267948966 rad pos: -35.567245,57.36386 parent: 2 type: Transform - - uid: 6490 + - uid: 13507 components: - pos: -39.78678,56.73886 parent: 2 type: Transform - - uid: 6491 + - uid: 13508 components: - rot: -1.5707963267948966 rad pos: -38.946777,58.359955 parent: 2 type: Transform - - uid: 15178 + - uid: 13509 components: - pos: 40.9584,4.7919416 parent: 2 type: Transform - - uid: 15181 + - uid: 13510 components: - rot: 3.141592653589793 rad pos: 38.418865,16.50159 parent: 2 type: Transform - - uid: 15226 + - uid: 13511 components: - rot: -1.5707963267948966 rad pos: -31.358456,40.470463 @@ -86991,42 +88406,42 @@ entities: type: Transform - proto: SheetGlass entities: - - uid: 2775 + - uid: 13512 components: - rot: 3.141592653589793 rad pos: -18.456774,-42.462822 parent: 2 type: Transform - - uid: 4230 + - uid: 13513 components: - pos: 22.5,-11.5 parent: 2 type: Transform - - uid: 6587 + - uid: 13514 components: - pos: -36.5,25.5 parent: 2 type: Transform - - uid: 9952 + - uid: 13515 components: - pos: -14.5,-24.5 parent: 2 type: Transform - proto: SheetGlass10 entities: - - uid: 16360 + - uid: 13516 components: - pos: -42.71093,39.51951 parent: 2 type: Transform - proto: SheetPlasma entities: - - uid: 13632 + - uid: 13517 components: - pos: -44.465656,44.540848 parent: 2 type: Transform - - uid: 16328 + - uid: 13518 components: - pos: -2.6182039,-28.469719 parent: 2 @@ -87037,75 +88452,80 @@ entities: type: Item - proto: SheetPlasma1 entities: - - uid: 1792 + - uid: 13519 components: - pos: 17.551308,13.414032 parent: 2 type: Transform - proto: SheetPlasteel entities: - - uid: 4565 + - uid: 13520 components: - pos: -14.5,-23.5 parent: 2 type: Transform - proto: SheetPlastic entities: - - uid: 4233 + - uid: 13521 components: - pos: 20.5,-11.5 parent: 2 type: Transform - - uid: 5928 + - uid: 13522 components: - pos: -14.5,-21.5 parent: 2 type: Transform - - uid: 6588 + - uid: 13523 components: - pos: -35.5,25.5 parent: 2 type: Transform - proto: SheetPlastic1 entities: - - uid: 14717 + - uid: 13524 components: - pos: -18.274788,30.116554 parent: 2 type: Transform - - uid: 15244 + - uid: 13525 components: - pos: 15.062635,30.356768 parent: 2 type: Transform - - uid: 15255 + - uid: 13526 components: - pos: 24.375921,28.403645 parent: 2 type: Transform - - uid: 15256 + - uid: 13527 components: - pos: 39.844673,5.9532356 parent: 2 type: Transform - proto: SheetSteel entities: - - uid: 35 + - uid: 13528 + components: + - pos: -8.5,-38.5 + parent: 2 + type: Transform + - uid: 13529 components: - pos: -34.5,25.5 parent: 2 type: Transform - - uid: 2738 + - uid: 13530 components: - pos: -18.496037,-42.552208 parent: 2 type: Transform - - uid: 4229 + - uid: 13531 components: - pos: 21.5,-11.5 parent: 2 type: Transform - - uid: 11807 + - uid: 13532 components: - pos: 8.547893,9.674978 parent: 2 @@ -87114,17 +88534,17 @@ entities: type: Stack - size: 15 type: Item - - uid: 12746 + - uid: 13533 components: - pos: -14.5,-22.5 parent: 2 type: Transform - - uid: 15201 + - uid: 13534 components: - pos: 12.552183,-10.534737 parent: 2 type: Transform - - uid: 16740 + - uid: 13535 components: - pos: -0.5,27.5 parent: 2 @@ -87135,44 +88555,44 @@ entities: type: Item - proto: SheetSteel1 entities: - - uid: 6011 + - uid: 13536 components: - rot: 3.141592653589793 rad pos: 14.464287,32.544342 parent: 2 type: Transform - - uid: 13280 + - uid: 13537 components: - rot: 3.141592653589793 rad pos: -64.3126,34.426918 parent: 2 type: Transform - - uid: 13450 + - uid: 13538 components: - rot: 3.141592653589793 rad pos: -55.847466,46.46159 parent: 2 type: Transform - - uid: 14383 + - uid: 13539 components: - pos: -50.59335,62.34951 parent: 2 type: Transform - - uid: 14386 + - uid: 13540 components: - pos: -32.264744,55.757713 parent: 2 type: Transform - proto: SheetSteel10 entities: - - uid: 3955 + - uid: 13541 components: - pos: -43.440098,39.540356 parent: 2 type: Transform - proto: SheetUranium entities: - - uid: 16326 + - uid: 13542 components: - pos: -3.473349,-28.465164 parent: 2 @@ -87183,496 +88603,502 @@ entities: type: Item - proto: Shiv entities: - - uid: 3598 + - uid: 12169 components: - flags: InContainer type: MetaData - - parent: 3597 + - parent: 12168 type: Transform - canCollide: False type: Physics - proto: ShowcaseRobot entities: - - uid: 617 + - uid: 13543 components: - pos: -20.5,43.5 parent: 2 type: Transform - - uid: 3253 + - uid: 13544 components: - pos: -26.5,43.5 parent: 2 type: Transform - - uid: 4193 + - uid: 13545 components: - pos: -14.5,-77.5 parent: 2 type: Transform - - uid: 4194 + - uid: 13546 components: - pos: -14.5,-75.5 parent: 2 type: Transform - - uid: 9273 + - uid: 13547 components: - pos: -3.5,-76.5 parent: 2 type: Transform - proto: ShowcaseRobotAntique entities: - - uid: 3535 + - uid: 13548 components: - pos: -7.5,-73.5 parent: 2 type: Transform - proto: ShowcaseRobotMarauder entities: - - uid: 4586 + - uid: 13549 components: - pos: -7.5,-79.5 parent: 2 type: Transform - proto: ShowcaseRobotWhite entities: - - uid: 4584 + - uid: 13550 components: - pos: -17.5,-72.5 parent: 2 type: Transform - proto: ShuttersNormal entities: - - uid: 1165 + - uid: 13551 components: - pos: 28.5,3.5 parent: 2 type: Transform - links: - - 2635 + - 13602 type: DeviceLinkSink - - uid: 1233 + - uid: 13552 components: - pos: 27.5,3.5 parent: 2 type: Transform - links: - - 2635 + - 13602 type: DeviceLinkSink - - uid: 1235 + - uid: 13553 components: - rot: -1.5707963267948966 rad pos: 24.5,7.5 parent: 2 type: Transform - links: - - 2635 + - 13602 type: DeviceLinkSink - proto: ShuttersNormalOpen entities: - - uid: 3012 + - uid: 13554 components: - pos: -50.5,-4.5 parent: 2 type: Transform - links: - - 12308 + - 13608 type: DeviceLinkSink - - uid: 3015 + - uid: 13555 components: - pos: -50.5,-2.5 parent: 2 type: Transform - links: - - 12308 + - 13608 type: DeviceLinkSink - - uid: 3868 + - uid: 13556 components: - rot: -1.5707963267948966 rad pos: -6.5,-76.5 parent: 2 type: Transform - - uid: 7938 + - uid: 13557 components: - rot: -1.5707963267948966 rad pos: 16.5,-4.5 parent: 2 type: Transform - links: - - 7940 + - 13607 type: DeviceLinkSink - - uid: 7939 + - uid: 13558 components: - rot: -1.5707963267948966 rad pos: 16.5,-5.5 parent: 2 type: Transform - links: - - 7940 + - 13607 type: DeviceLinkSink - - uid: 15813 + - uid: 13559 components: - rot: -1.5707963267948966 rad pos: -33.5,-12.5 parent: 2 type: Transform - links: - - 15841 + - 13610 type: DeviceLinkSink - - uid: 15839 + - uid: 13560 components: - rot: -1.5707963267948966 rad pos: -33.5,-13.5 parent: 2 type: Transform - links: - - 15841 + - 13610 type: DeviceLinkSink - - uid: 15840 + - uid: 13561 components: - rot: 1.5707963267948966 rad pos: -29.5,-13.5 parent: 2 type: Transform - links: - - 15841 + - 13610 type: DeviceLinkSink - proto: ShuttersRadiation entities: - - uid: 2431 + - uid: 13562 components: - pos: -23.5,-44.5 parent: 2 type: Transform - links: - - 2389 + - 13600 type: DeviceLinkSink - - uid: 2574 + - uid: 13563 components: - pos: -23.5,-32.5 parent: 2 type: Transform - links: - - 2390 + - 13601 type: DeviceLinkSink - - uid: 2575 + - uid: 13564 components: - pos: -23.5,-33.5 parent: 2 type: Transform - links: - - 2390 + - 13601 type: DeviceLinkSink - - uid: 2581 + - uid: 13565 components: - pos: -23.5,-43.5 parent: 2 type: Transform - links: - - 2389 + - 13600 type: DeviceLinkSink - - uid: 2798 + - uid: 13566 components: - pos: -30.5,-29.5 parent: 2 type: Transform - links: - - 2823 + - 13603 type: DeviceLinkSink - - uid: 2799 + - uid: 13567 components: - pos: -32.5,-29.5 parent: 2 type: Transform - links: - - 2823 + - 13603 type: DeviceLinkSink - proto: ShuttersRadiationOpen entities: - - uid: 2189 + - uid: 13568 components: - pos: -19.5,-35.5 parent: 2 type: Transform - links: - - 2667 - - 2671 + - 13596 + - 13597 type: DeviceLinkSink - - uid: 2191 + - uid: 13569 components: - pos: -17.5,-37.5 parent: 2 type: Transform - links: - - 2667 - - 2671 + - 13596 + - 13597 type: DeviceLinkSink - - uid: 2377 + - uid: 13570 components: - pos: -19.5,-41.5 parent: 2 type: Transform - links: - - 2667 - - 2671 + - 13596 + - 13597 type: DeviceLinkSink - - uid: 2467 + - uid: 13571 components: - pos: -17.5,-39.5 parent: 2 type: Transform - links: - - 2667 - - 2671 + - 13596 + - 13597 type: DeviceLinkSink - - uid: 2576 + - uid: 13572 components: - pos: -24.5,-36.5 parent: 2 type: Transform - links: - - 6865 + - 13606 type: DeviceLinkSink - - uid: 2577 + - uid: 13573 components: - pos: -24.5,-37.5 parent: 2 type: Transform - links: - - 6865 + - 13606 type: DeviceLinkSink - - uid: 2578 + - uid: 13574 components: - pos: -24.5,-38.5 parent: 2 type: Transform - links: - - 6865 + - 13606 type: DeviceLinkSink - - uid: 2579 + - uid: 13575 components: - pos: -24.5,-39.5 parent: 2 type: Transform - links: - - 6865 + - 13606 type: DeviceLinkSink - - uid: 2580 + - uid: 13576 components: - pos: -24.5,-40.5 parent: 2 type: Transform - links: - - 6865 + - 13606 type: DeviceLinkSink - - uid: 5394 + - uid: 13577 components: - pos: -56.5,39.5 parent: 2 type: Transform - links: - - 6224 + - 13604 type: DeviceLinkSink - - uid: 5414 + - uid: 13578 components: - pos: -53.5,42.5 parent: 2 type: Transform - links: - - 6224 + - 13604 type: DeviceLinkSink - - uid: 5461 + - uid: 13579 components: - pos: -55.5,42.5 parent: 2 type: Transform - links: - - 6224 + - 13604 type: DeviceLinkSink - - uid: 6077 + - uid: 13580 components: - pos: -56.5,41.5 parent: 2 type: Transform - links: - - 6224 + - 13604 type: DeviceLinkSink - - uid: 6079 + - uid: 13581 components: - pos: -56.5,40.5 parent: 2 type: Transform - links: - - 6224 + - 13604 type: DeviceLinkSink - - uid: 6080 + - uid: 13582 components: - pos: -54.5,42.5 parent: 2 type: Transform - links: - - 6224 + - 13604 type: DeviceLinkSink - - uid: 6089 + - uid: 13583 components: - pos: -52.5,39.5 parent: 2 type: Transform - links: - - 6224 + - 13604 type: DeviceLinkSink - - uid: 6142 + - uid: 13584 components: - pos: -54.5,38.5 parent: 2 type: Transform - links: - - 6224 + - 13604 type: DeviceLinkSink - - uid: 6174 + - uid: 13585 components: - pos: -55.5,38.5 parent: 2 type: Transform - links: - - 6224 + - 13604 type: DeviceLinkSink - - uid: 6249 + - uid: 13586 components: - pos: -52.5,40.5 parent: 2 type: Transform - links: - - 6224 + - 13604 type: DeviceLinkSink - - uid: 6297 + - uid: 13587 components: - pos: -52.5,41.5 parent: 2 type: Transform - links: - - 6224 + - 13604 type: DeviceLinkSink - proto: ShuttersWindow entities: - - uid: 2619 + - uid: 13588 components: - pos: -14.5,-43.5 parent: 2 type: Transform - links: - - 2317 + - 13599 type: DeviceLinkSink - - uid: 2712 + - uid: 13589 components: - pos: -14.5,-44.5 parent: 2 type: Transform - links: - - 2317 + - 13599 type: DeviceLinkSink - - uid: 2713 + - uid: 13590 components: - pos: -14.5,-45.5 parent: 2 type: Transform - links: - - 2317 + - 13599 type: DeviceLinkSink - proto: ShuttersWindowOpen entities: - - uid: 15652 + - uid: 13591 components: - pos: 19.5,-2.5 parent: 2 type: Transform - links: - - 7940 + - 13607 type: DeviceLinkSink - - uid: 15653 + - uid: 13592 components: - pos: 20.5,-2.5 parent: 2 type: Transform - links: - - 7940 + - 13607 type: DeviceLinkSink - proto: SignalButton entities: - - uid: 11085 + - uid: 13593 + components: + - rot: 1.5707963267948966 rad + pos: -9.5,-45.5 + parent: 2 + type: Transform + - uid: 13594 components: - pos: -11.5,40.5 parent: 2 type: Transform - linkedPorts: - 16120: + 697: - Pressed: Toggle - 16044: + 689: - Pressed: Toggle - 16018: + 687: - Pressed: Toggle - 16046: + 691: - Pressed: Toggle - 16081: + 694: - Pressed: Toggle - 16049: + 692: - Pressed: Toggle - 16004: + 685: - Pressed: Toggle - 16072: + 693: - Pressed: Toggle - 16119: + 696: - Pressed: Toggle - 16014: + 686: - Pressed: Toggle - 16045: + 690: - Pressed: Toggle - 16019: + 688: - Pressed: Toggle - 16114: + 695: - Pressed: Toggle - 12447: + 684: - Pressed: Toggle type: DeviceLinkSource - type: ItemCooldown - - uid: 12419 + - uid: 13595 components: - pos: -50.5,48.5 parent: 2 type: Transform - proto: SignalButtonDirectional entities: - - uid: 2667 + - uid: 13596 components: - rot: -1.5707963267948966 rad pos: -17.5,-38.5 parent: 2 type: Transform - linkedPorts: - 2191: + 13569: - Pressed: Toggle - 2467: + 13571: - Pressed: Toggle - 2189: + 13568: - Pressed: Toggle - 2377: + 13570: - Pressed: Toggle type: DeviceLinkSource - - uid: 2671 + - uid: 13597 components: - rot: 1.5707963267948966 rad pos: -17.5,-38.5 parent: 2 type: Transform - linkedPorts: - 2191: + 13569: - Pressed: Toggle - 2467: + 13571: - Pressed: Toggle - 2377: + 13570: - Pressed: Toggle - 2189: + 13568: - Pressed: Toggle type: DeviceLinkSource - - uid: 3875 + - uid: 13598 components: - rot: 3.141592653589793 rad pos: -8.5,-77.5 @@ -87680,337 +89106,356 @@ entities: type: Transform - proto: SignalSwitchDirectional entities: - - uid: 2317 + - uid: 13599 components: - rot: -1.5707963267948966 rad pos: -14.5,-42.5 parent: 2 type: Transform - linkedPorts: - 2619: + 13588: - On: Open - Off: Close - 2712: + 13589: - On: Open - Off: Close - 2713: + 13590: - On: Open - Off: Close type: DeviceLinkSource - - uid: 2389 + - uid: 13600 components: - rot: 1.5707963267948966 rad pos: -23.5,-42.5 parent: 2 type: Transform - linkedPorts: - 2431: + 13562: - On: Open - Off: Close - 2581: + 13565: - On: Open - Off: Close type: DeviceLinkSource - - uid: 2390 + - uid: 13601 components: - rot: 1.5707963267948966 rad pos: -23.5,-34.5 parent: 2 type: Transform - linkedPorts: - 2575: + 13564: - On: Open - Off: Close - 2574: + 13563: - On: Open - Off: Close type: DeviceLinkSource - - uid: 2635 + - uid: 13602 components: - rot: 1.5707963267948966 rad pos: 24.5,5.5 parent: 2 type: Transform - linkedPorts: - 1233: + 13552: - On: Open - Off: Close - 1165: + 13551: - On: Open - Off: Close - 1235: + 13553: - On: Open - Off: Close type: DeviceLinkSource - - uid: 2823 + - uid: 13603 components: - rot: 1.5707963267948966 rad pos: -33.5,-28.5 parent: 2 type: Transform - linkedPorts: - 2799: + 13567: - On: Open - Off: Close - 2798: + 13566: - On: Open - Off: Close type: DeviceLinkSource - - uid: 6224 + - uid: 13604 components: - pos: -56.5,38.5 parent: 2 type: Transform - linkedPorts: - 6174: + 13585: - On: Close - Off: Open - 6142: + 13584: - On: Close - Off: Open - 5394: + 13577: - On: Close - Off: Open - 6079: + 13581: - On: Close - Off: Open - 6077: + 13580: - On: Close - Off: Open - 5461: + 13579: - On: Close - Off: Open - 6080: + 13582: - On: Close - Off: Open - 5414: + 13578: - On: Close - Off: Open - 6297: + 13587: - On: Close - Off: Open - 6249: + 13586: - On: Close - Off: Open - 6089: + 13583: - On: Close - Off: Open type: DeviceLinkSource - - uid: 6226 + - uid: 13605 components: - pos: -52.5,38.5 parent: 2 type: Transform - linkedPorts: - 6221: + 675: - On: Open - Off: Close type: DeviceLinkSource - - uid: 6865 + - uid: 13606 components: - pos: -23.5,-35.5 parent: 2 type: Transform - linkedPorts: - 2576: + 13572: - On: Close - Off: Open - 2577: + 13573: - On: Close - Off: Open - 2578: + 13574: - On: Close - Off: Open - 2579: + 13575: - On: Close - Off: Open - 2580: + 13576: - On: Close - Off: Open type: DeviceLinkSource - - uid: 7940 + - uid: 13607 components: - rot: 3.141592653589793 rad pos: 19.5,-7.5 parent: 2 type: Transform - linkedPorts: - 7939: + 13558: - On: Close - Off: Open - 7938: + 13557: - On: Close - Off: Open - 15652: + 13591: - On: Close - Off: Open - 15653: + 13592: - On: Close - Off: Open type: DeviceLinkSource - - uid: 12308 + - uid: 13608 components: - rot: 1.5707963267948966 rad pos: -50.5,-3.5 parent: 2 type: Transform - linkedPorts: - 3012: + 13554: - On: Close - Off: Open - 3015: + 13555: - On: Close - Off: Open type: DeviceLinkSource - - uid: 12512 + - uid: 13609 components: - rot: 3.141592653589793 rad pos: 17.5,-33.5 parent: 2 type: Transform - linkedPorts: - 2039: + 6195: - On: Forward - Off: Off - 8338: + 6206: - On: Forward - Off: Off - 10647: + 6214: - On: Forward - Off: Off - 1901: + 674: - On: Open - Off: Close - 10663: + 6217: - On: Forward - Off: Off - 7843: + 676: - On: Open - Off: Close - 8295: + 6202: - On: Forward - Off: Off - 10660: + 6216: - On: Forward - Off: Off - 16179: + 678: - On: Open - Off: Close - 8337: + 6205: - On: Forward - Off: Off - 8339: + 6207: - On: Forward - Off: Off - 11539: + 677: - On: Open - Off: Close - 8400: + 6209: - On: Forward - Off: Off type: DeviceLinkSource - - uid: 15841 + - uid: 13610 components: - pos: -32.5,-11.5 parent: 2 type: Transform - linkedPorts: - 15813: + 13559: - On: Close - Off: Open - 15839: + 13560: - On: Close - Off: Open - 15840: + 13561: - On: Close - Off: Open type: DeviceLinkSource - proto: SignAnomaly entities: - - uid: 11237 + - uid: 13611 components: - pos: -51.5,37.5 parent: 2 type: Transform - proto: SignAnomaly2 entities: - - uid: 6443 + - uid: 13612 components: - pos: -38.5,38.5 parent: 2 type: Transform - proto: SignArmory entities: - - uid: 15883 + - uid: 13613 components: - pos: -40.5,-7.5 parent: 2 type: Transform - proto: SignAtmos entities: - - uid: 2510 + - uid: 13614 components: - - pos: -4.5,-35.5 + - rot: 1.5707963267948966 rad + pos: -8.5,-36.5 + parent: 2 + type: Transform + - uid: 13615 + components: + - rot: 1.5707963267948966 rad + pos: -5.5,-36.5 parent: 2 type: Transform - proto: SignBar entities: - - uid: 1173 + - uid: 13616 components: - pos: -10.5,-1.5 parent: 2 type: Transform - - uid: 5486 + - uid: 13617 components: - pos: -2.5,32.5 parent: 2 type: Transform - - uid: 15842 + - uid: 13618 components: - pos: -10.5,-11.5 parent: 2 type: Transform - proto: SignBridge entities: - - uid: 15263 + - uid: 13619 components: - pos: -21.5,34.5 parent: 2 type: Transform - - uid: 15507 + - uid: 13620 components: - pos: -4.5,28.5 parent: 2 type: Transform - proto: SignCanisters entities: - - uid: 16635 + - uid: 13621 + components: + - rot: -1.5707963267948966 rad + pos: 3.5,-35.5 + parent: 2 + type: Transform + - uid: 13622 components: - pos: 8.5,-39.5 parent: 2 type: Transform + - uid: 13623 + components: + - rot: -1.5707963267948966 rad + pos: -1.5,-35.5 + parent: 2 + type: Transform - proto: SignCargo entities: - - uid: 1782 + - uid: 13624 components: - pos: 1.5,-4.5 parent: 2 type: Transform - - uid: 1784 + - uid: 13625 components: - pos: 10.5,-7.5 parent: 2 type: Transform - proto: SignChapel entities: - - uid: 16637 + - uid: 13626 components: - pos: -25.5,27.5 parent: 2 type: Transform - proto: SignCloning entities: - - uid: 9110 + - uid: 13627 components: - desc: A sign indicating the genetics lab. name: genetics sign @@ -88020,45 +89465,45 @@ entities: type: Transform - proto: SignCryogenics entities: - - uid: 15265 + - uid: 13628 components: - pos: 17.5,22.5 parent: 2 type: Transform - proto: SignCryogenicsMed entities: - - uid: 15510 + - uid: 13629 components: - pos: 18.5,17.5 parent: 2 type: Transform - - uid: 15528 + - uid: 13630 components: - pos: 16.5,17.5 parent: 2 type: Transform - proto: SignDanger entities: - - uid: 15857 + - uid: 13631 components: - pos: -41.5,4.5 parent: 2 type: Transform - proto: SignDirectionalBridge entities: - - uid: 1231 + - uid: 13632 components: - rot: 3.141592653589793 rad pos: -2.5,2.5 parent: 2 type: Transform - - uid: 3403 + - uid: 13633 components: - rot: 3.141592653589793 rad pos: -16.5,2.5 parent: 2 type: Transform - - uid: 15154 + - uid: 13634 components: - rot: 3.141592653589793 rad pos: -2.5,9.5 @@ -88066,13 +89511,13 @@ entities: type: Transform - proto: SignDirectionalBrig entities: - - uid: 12096 + - uid: 13635 components: - rot: -1.5707963267948966 rad pos: -34.5,-7.5 parent: 2 type: Transform - - uid: 15573 + - uid: 13636 components: - rot: -1.5707963267948966 rad pos: -45.5,-7.5 @@ -88080,7 +89525,7 @@ entities: type: Transform - proto: SignDirectionalChapel entities: - - uid: 15356 + - uid: 13637 components: - rot: 3.141592653589793 rad pos: -26.503876,4.298375 @@ -88088,7 +89533,7 @@ entities: type: Transform - proto: SignDirectionalChemistry entities: - - uid: 15440 + - uid: 13638 components: - rot: 1.5707963267948966 rad pos: 10.487395,9.282801 @@ -88096,13 +89541,13 @@ entities: type: Transform - proto: SignDirectionalCryo entities: - - uid: 15398 + - uid: 13639 components: - rot: 1.5707963267948966 rad pos: 14.5,17.5 parent: 2 type: Transform - - uid: 15441 + - uid: 13640 components: - rot: 3.141592653589793 rad pos: 10.5,9.5 @@ -88110,7 +89555,7 @@ entities: type: Transform - proto: SignDirectionalDorms entities: - - uid: 1234 + - uid: 13641 components: - rot: -1.5707963267948966 rad pos: -17.5,2.5 @@ -88118,101 +89563,101 @@ entities: type: Transform - proto: SignDirectionalEng entities: - - uid: 1229 + - uid: 13642 components: - rot: -1.5707963267948966 rad pos: -2.497333,0.28726125 parent: 2 type: Transform - - uid: 1238 + - uid: 13643 components: - pos: -16.504673,2.2774227 parent: 2 type: Transform - - uid: 15439 + - uid: 13644 components: - rot: -1.5707963267948966 rad pos: 39.495766,2.715937 parent: 2 type: Transform - - uid: 15494 + - uid: 13645 components: - pos: -23.5,8.5 parent: 2 type: Transform - proto: SignDirectionalEvac entities: - - uid: 1028 + - uid: 13646 components: - pos: -22.5,24.5 parent: 2 type: Transform - - uid: 1239 + - uid: 13647 components: - rot: -1.5707963267948966 rad pos: -17.496965,2.286934 parent: 2 type: Transform - - uid: 1253 + - uid: 13648 components: - rot: 3.141592653589793 rad pos: -19.5,-20.5 parent: 2 type: Transform - - uid: 11386 + - uid: 13649 components: - rot: -1.5707963267948966 rad pos: -26.5,16.5 parent: 2 type: Transform - - uid: 11816 + - uid: 13650 components: - rot: 3.141592653589793 rad pos: -18.5,-6.5 parent: 2 type: Transform - - uid: 13464 + - uid: 13651 components: - rot: -1.5707963267948966 rad pos: -26.5,4.5 parent: 2 type: Transform - - uid: 13468 + - uid: 13652 components: - pos: -43.5,24.5 parent: 2 type: Transform - - uid: 16180 + - uid: 13653 components: - rot: -1.5707963267948966 rad pos: -39.5,16.5 parent: 2 type: Transform - - uid: 16181 + - uid: 13654 components: - rot: 3.141592653589793 rad pos: -45.5,8.5 parent: 2 type: Transform - - uid: 16553 + - uid: 13655 components: - rot: -1.5707963267948966 rad pos: -2.5,-1.5 parent: 2 type: Transform - - uid: 16555 + - uid: 13656 components: - rot: -1.5707963267948966 rad pos: 16.5,2.5 parent: 2 type: Transform - - uid: 16591 + - uid: 13657 components: - rot: -1.5707963267948966 rad pos: 27.5,-1.5 parent: 2 type: Transform - - uid: 16592 + - uid: 13658 components: - rot: -1.5707963267948966 rad pos: 36.5,-1.5 @@ -88220,13 +89665,13 @@ entities: type: Transform - proto: SignDirectionalHop entities: - - uid: 1226 + - uid: 13659 components: - rot: 1.5707963267948966 rad pos: 3.5,0.5 parent: 2 type: Transform - - uid: 3407 + - uid: 13660 components: - rot: 1.5707963267948966 rad pos: -15.5,2.5 @@ -88234,7 +89679,7 @@ entities: type: Transform - proto: SignDirectionalHydro entities: - - uid: 1232 + - uid: 13661 components: - rot: -1.5707963267948966 rad pos: -2.5081036,2.308813 @@ -88242,19 +89687,19 @@ entities: type: Transform - proto: SignDirectionalJanitor entities: - - uid: 855 + - uid: 13662 components: - rot: 1.5707963267948966 rad pos: -2.5135782,9.714039 parent: 2 type: Transform - - uid: 1227 + - uid: 13663 components: - rot: 3.141592653589793 rad pos: -2.497333,2.726455 parent: 2 type: Transform - - uid: 1236 + - uid: 13664 components: - rot: 1.5707963267948966 rad pos: -15.503315,2.2795773 @@ -88262,7 +89707,7 @@ entities: type: Transform - proto: SignDirectionalLibrary entities: - - uid: 15467 + - uid: 13665 components: - rot: -1.5707963267948966 rad pos: -26.48825,4.720544 @@ -88270,12 +89715,12 @@ entities: type: Transform - proto: SignDirectionalLogistics entities: - - uid: 4189 + - uid: 13666 components: - pos: 3.5016003,0.28885967 parent: 2 type: Transform - - uid: 9297 + - uid: 13667 components: - rot: 1.5707963267948966 rad pos: -15.50161,2.7161162 @@ -88283,13 +89728,13 @@ entities: type: Transform - proto: SignDirectionalMed entities: - - uid: 1228 + - uid: 13668 components: - rot: 1.5707963267948966 rad pos: 3.4960685,0.7113888 parent: 2 type: Transform - - uid: 1240 + - uid: 13669 components: - rot: 1.5707963267948966 rad pos: -16.486547,2.724739 @@ -88297,26 +89742,26 @@ entities: type: Transform - proto: SignDirectionalSalvage entities: - - uid: 12627 + - uid: 13670 components: - pos: 9.5,-28.5 parent: 2 type: Transform - proto: SignDirectionalSci entities: - - uid: 1241 + - uid: 13671 components: - rot: -1.5707963267948966 rad pos: -17.496443,2.7158065 parent: 2 type: Transform - - uid: 1242 + - uid: 13672 components: - rot: -1.5707963267948966 rad pos: -2.497333,0.72506523 parent: 2 type: Transform - - uid: 5885 + - uid: 13673 components: - rot: 3.141592653589793 rad pos: -23.503878,8.715101 @@ -88324,20 +89769,20 @@ entities: type: Transform - proto: SignDirectionalSec entities: - - uid: 1225 + - uid: 13674 components: - rot: -1.5707963267948966 rad pos: -2.5,0.5 parent: 2 type: Transform - - uid: 15324 + - uid: 13675 components: - pos: -23.503878,8.2929325 parent: 2 type: Transform - proto: SignDirectionalSolar entities: - - uid: 15316 + - uid: 13676 components: - rot: 3.141592653589793 rad pos: 39.5,2.5 @@ -88345,198 +89790,198 @@ entities: type: Transform - proto: SignDirectionalWash entities: - - uid: 4283 + - uid: 13677 components: - rot: 3.141592653589793 rad pos: -29.5,8.5 parent: 2 type: Transform - - uid: 4284 + - uid: 13678 components: - pos: -29.5,13.5 parent: 2 type: Transform - - uid: 11161 + - uid: 13679 components: - pos: 33.5,-13.5 parent: 2 type: Transform - - uid: 11162 + - uid: 13680 components: - rot: -1.5707963267948966 rad pos: 36.5,-16.5 parent: 2 type: Transform - - uid: 11163 + - uid: 13681 components: - rot: 1.5707963267948966 rad pos: 31.5,-16.5 parent: 2 type: Transform - - uid: 15202 + - uid: 13682 components: - pos: 39.48014,2.2781317 parent: 2 type: Transform - proto: SignDisposalSpace entities: - - uid: 11168 + - uid: 13683 components: - pos: 18.5,-18.5 parent: 2 type: Transform - - uid: 11169 + - uid: 13684 components: - pos: 13.5,-19.5 parent: 2 type: Transform - proto: SignDojo entities: - - uid: 5045 + - uid: 13685 components: - pos: 35.5,2.5 parent: 2 type: Transform - proto: SignDrones entities: - - uid: 16236 + - uid: 13686 components: - pos: -9.5,-24.5 parent: 2 type: Transform - proto: SignElectrical entities: - - uid: 3383 + - uid: 13687 components: - pos: -15.5,-89.5 parent: 2 type: Transform - - uid: 6703 + - uid: 13688 components: - pos: -66.5,-4.5 parent: 2 type: Transform - - uid: 14943 + - uid: 13689 components: - pos: 3.5,-66.5 parent: 2 type: Transform - - uid: 14944 + - uid: 13690 components: - pos: 3.5,-84.5 parent: 2 type: Transform - - uid: 14946 + - uid: 13691 components: - pos: -39.5,-80.5 parent: 2 type: Transform - - uid: 14947 + - uid: 13692 components: - pos: -33.5,-66.5 parent: 2 type: Transform - - uid: 14951 + - uid: 13693 components: - pos: -64.5,-20.5 parent: 2 type: Transform - - uid: 14953 + - uid: 13694 components: - pos: -65.5,6.5 parent: 2 type: Transform - - uid: 14954 + - uid: 13695 components: - pos: -46.5,-23.5 parent: 2 type: Transform - - uid: 14957 + - uid: 13696 components: - pos: -41.5,-46.5 parent: 2 type: Transform - - uid: 14958 + - uid: 13697 components: - pos: -41.5,-30.5 parent: 2 type: Transform - - uid: 14959 + - uid: 13698 components: - pos: -39.5,-48.5 parent: 2 type: Transform - - uid: 14960 + - uid: 13699 components: - pos: -24.5,-48.5 parent: 2 type: Transform - - uid: 14961 + - uid: 13700 components: - pos: -34.5,-28.5 parent: 2 type: Transform - - uid: 14962 + - uid: 13701 components: - pos: -39.5,-28.5 parent: 2 type: Transform - proto: SignEngineering entities: - - uid: 2095 + - uid: 13702 components: - pos: -13.5,-14.5 parent: 2 type: Transform - - uid: 2770 + - uid: 13703 components: - pos: -17.5,-26.5 parent: 2 type: Transform - proto: SignEscapePods entities: - - uid: 1781 + - uid: 13704 components: - rot: 1.5707963267948966 rad pos: 4.5,28.5 parent: 2 type: Transform - - uid: 4225 + - uid: 13705 components: - pos: 42.5,7.5 parent: 2 type: Transform - - uid: 5306 + - uid: 13706 components: - rot: 3.141592653589793 rad pos: 9.5,31.5 parent: 2 type: Transform - - uid: 5337 + - uid: 13707 components: - rot: -1.5707963267948966 rad pos: -25.5,35.5 parent: 2 type: Transform - - uid: 9013 + - uid: 13708 components: - rot: 3.141592653589793 rad pos: 41.5,1.5 parent: 2 type: Transform - - uid: 11814 + - uid: 13709 components: - rot: 3.141592653589793 rad pos: -32.5,42.5 parent: 2 type: Transform - - uid: 11948 + - uid: 13710 components: - rot: 3.141592653589793 rad pos: 12.5,27.5 parent: 2 type: Transform - - uid: 16185 + - uid: 13711 components: - rot: 1.5707963267948966 rad pos: -1.5,26.5 @@ -88544,38 +89989,45 @@ entities: type: Transform - proto: SignEVA entities: - - uid: 2821 + - uid: 13712 components: - pos: -29.5,-28.5 parent: 2 type: Transform - - uid: 2822 + - uid: 13713 components: - pos: -20.5,-45.5 parent: 2 type: Transform - - uid: 13723 + - uid: 13714 components: - desc: A sign indicating an EVA suit storage room. EVA equipment is found here. type: MetaData - pos: -19.5,-21.5 parent: 2 type: Transform +- proto: SignFire + entities: + - uid: 13715 + components: + - pos: -5.5,-46.5 + parent: 2 + type: Transform - proto: SignGravity entities: - - uid: 2945 + - uid: 13716 components: - pos: 1.5,-32.5 parent: 2 type: Transform - proto: SignHead entities: - - uid: 1403 + - uid: 13717 components: - pos: -4.5,-30.5 parent: 2 type: Transform - - uid: 6890 + - uid: 13718 components: - rot: 3.141592653589793 rad pos: 17.5,-2.5 @@ -88583,111 +90035,111 @@ entities: type: Transform - proto: SignHydro3 entities: - - uid: 15546 + - uid: 13719 components: - pos: -23.5,11.5 parent: 2 type: Transform - proto: SignInterrogation entities: - - uid: 884 + - uid: 13720 components: - pos: -27.5,-7.5 parent: 2 type: Transform - proto: SignLibrary entities: - - uid: 15874 + - uid: 13721 components: - pos: -45.5,24.5 parent: 2 type: Transform - proto: SignMail entities: - - uid: 326 + - uid: 13722 components: - pos: 5.5,-1.5 parent: 2 type: Transform - proto: SignMedical entities: - - uid: 2977 + - uid: 13723 components: - pos: 10.5,3.5 parent: 2 type: Transform - proto: SignMorgue entities: - - uid: 4415 + - uid: 13724 components: - pos: 24.5,18.5 parent: 2 type: Transform - proto: SignNosmoking entities: - - uid: 15869 + - uid: 13725 components: - pos: -34.5,1.5 parent: 2 type: Transform - - uid: 15870 + - uid: 13726 components: - pos: 16.5,9.5 parent: 2 type: Transform - proto: SignPlaque entities: - - uid: 11394 + - uid: 13727 components: - pos: 2.5,18.5 parent: 2 type: Transform - proto: SignPrison entities: - - uid: 15483 + - uid: 13728 components: - pos: -50.5,-10.5 parent: 2 type: Transform - proto: SignRadiation entities: - - uid: 462 + - uid: 13729 components: - rot: 3.141592653589793 rad pos: -35.5,-29.5 parent: 2 type: Transform - - uid: 2405 + - uid: 13730 components: - pos: -30.5,-47.5 parent: 2 type: Transform - - uid: 2411 + - uid: 13731 components: - pos: -33.5,-47.5 parent: 2 type: Transform - - uid: 2463 + - uid: 13732 components: - pos: -40.5,-36.5 parent: 2 type: Transform - - uid: 2464 + - uid: 13733 components: - pos: -40.5,-40.5 parent: 2 type: Transform - - uid: 2465 + - uid: 13734 components: - pos: -21.5,-41.5 parent: 2 type: Transform - - uid: 2466 + - uid: 13735 components: - pos: -21.5,-35.5 parent: 2 type: Transform - - uid: 2776 + - uid: 13736 components: - rot: 3.141592653589793 rad pos: -38.5,-29.5 @@ -88695,22 +90147,22 @@ entities: type: Transform - proto: SignRadiationMed entities: - - uid: 2375 + - uid: 13737 components: - pos: -29.5,-25.5 parent: 2 type: Transform - - uid: 2768 + - uid: 13738 components: - pos: -14.5,-32.5 parent: 2 type: Transform - - uid: 2769 + - uid: 13739 components: - pos: -14.5,-34.5 parent: 2 type: Transform - - uid: 15912 + - uid: 13740 components: - rot: -1.5707963267948966 rad pos: -19.5,-29.5 @@ -88718,30 +90170,30 @@ entities: type: Transform - proto: SignRobo entities: - - uid: 12521 + - uid: 13741 components: - pos: -40.5,38.5 parent: 2 type: Transform - - uid: 15976 + - uid: 13742 components: - rot: -1.5707963267948966 rad pos: -13.5,-75.5 parent: 2 type: Transform - - uid: 15977 + - uid: 13743 components: - rot: -1.5707963267948966 rad pos: -3.5,-75.5 parent: 2 type: Transform - - uid: 15979 + - uid: 13744 components: - rot: -1.5707963267948966 rad pos: -3.5,-77.5 parent: 2 type: Transform - - uid: 15980 + - uid: 13745 components: - rot: -1.5707963267948966 rad pos: -13.5,-77.5 @@ -88749,19 +90201,19 @@ entities: type: Transform - proto: SignScience entities: - - uid: 16636 + - uid: 13746 components: - pos: -39.5,24.5 parent: 2 type: Transform - - uid: 16638 + - uid: 13747 components: - pos: -25.5,24.5 parent: 2 type: Transform - proto: SignSec entities: - - uid: 12499 + - uid: 13748 components: - desc: A sign indicating the detective's room. type: MetaData @@ -88769,107 +90221,107 @@ entities: pos: 25.5,3.5 parent: 2 type: Transform - - uid: 15873 + - uid: 13749 components: - pos: -25.5,-1.5 parent: 2 type: Transform - - uid: 16057 + - uid: 13750 components: - pos: -19.5,-5.5 parent: 2 type: Transform - proto: SignSecureMedRed entities: - - uid: 15867 + - uid: 13751 components: - pos: -42.5,-3.5 parent: 2 type: Transform - - uid: 15868 + - uid: 13752 components: - pos: -40.5,-3.5 parent: 2 type: Transform - proto: SignSecurity entities: - - uid: 4234 + - uid: 13753 components: - pos: -43.5,-7.5 parent: 2 type: Transform - proto: SignSmoking entities: - - uid: 15871 + - uid: 13754 components: - pos: 20.5,9.5 parent: 2 type: Transform - proto: SignSpace entities: - - uid: 17179 + - uid: 13755 components: - pos: 9.5,-41.5 parent: 2 type: Transform - proto: SignSurgery entities: - - uid: 4450 + - uid: 13756 components: - pos: 14.5,26.5 parent: 2 type: Transform - - uid: 11995 + - uid: 13757 components: - pos: -39.5,-22.5 parent: 2 type: Transform - proto: SignTelecomms entities: - - uid: 441 + - uid: 13758 components: - rot: -1.5707963267948966 rad pos: -31.5,-75.5 parent: 2 type: Transform - - uid: 1319 + - uid: 13759 components: - rot: -1.5707963267948966 rad pos: -31.5,-77.5 parent: 2 type: Transform - - uid: 13059 + - uid: 13760 components: - pos: -23.5,-75.5 parent: 2 type: Transform - - uid: 13060 + - uid: 13761 components: - pos: -23.5,-77.5 parent: 2 type: Transform - proto: SignToolStorage entities: - - uid: 3265 + - uid: 13762 components: - pos: 23.5,-11.5 parent: 2 type: Transform - - uid: 16650 + - uid: 13763 components: - pos: -14.5,-46.5 parent: 2 type: Transform - proto: SignToxins entities: - - uid: 3488 + - uid: 13764 components: - pos: -51.5,32.5 parent: 2 type: Transform - proto: SignVirology entities: - - uid: 4355 + - uid: 13765 components: - rot: 1.5707963267948966 rad pos: 24.5,12.5 @@ -88877,25 +90329,25 @@ entities: type: Transform - proto: SingularityGenerator entities: - - uid: 2445 + - uid: 13766 components: - pos: -31.5,-38.5 parent: 2 type: Transform - proto: Sink entities: - - uid: 3132 + - uid: 13767 components: - pos: -27.5,12.5 parent: 2 type: Transform - - uid: 11147 + - uid: 13768 components: - rot: 3.141592653589793 rad pos: 33.5,-12.5 parent: 2 type: Transform - - uid: 16951 + - uid: 13769 components: - rot: -1.5707963267948966 rad pos: 19.5,11.5 @@ -88903,12 +90355,12 @@ entities: type: Transform - proto: SinkStemlessWater entities: - - uid: 3025 + - uid: 13770 components: - pos: -52.5,-6.5 parent: 2 type: Transform - - uid: 15790 + - uid: 13771 components: - rot: 1.5707963267948966 rad pos: -60.5,0.5 @@ -88916,29 +90368,29 @@ entities: type: Transform - proto: SinkWide entities: - - uid: 118 + - uid: 13772 components: - pos: -4.5,-2.5 parent: 2 type: Transform - - uid: 288 + - uid: 13773 components: - pos: -8.5,12.5 parent: 2 type: Transform - - uid: 656 + - uid: 13774 components: - rot: 3.141592653589793 rad pos: -8.5,15.5 parent: 2 type: Transform - - uid: 1714 + - uid: 13775 components: - rot: 1.5707963267948966 rad pos: 33.5,-14.5 parent: 2 type: Transform - - uid: 16092 + - uid: 13776 components: - rot: -1.5707963267948966 rad pos: 1.5,10.5 @@ -88946,358 +90398,358 @@ entities: type: Transform - proto: SMESBasic entities: - - uid: 1376 + - uid: 13777 components: - pos: -2.5,-24.5 parent: 2 type: Transform - - uid: 1378 + - uid: 13778 components: - pos: -3.5,-24.5 parent: 2 type: Transform - - uid: 2605 + - uid: 13779 components: - pos: -20.5,-43.5 parent: 2 type: Transform - - uid: 2612 + - uid: 13780 components: - pos: -20.5,-33.5 parent: 2 type: Transform - - uid: 6081 + - uid: 13781 components: - pos: -44.5,50.5 parent: 2 type: Transform - - uid: 6922 + - uid: 13782 components: - pos: 45.5,12.5 parent: 2 type: Transform - proto: SMESMachineCircuitboard entities: - - uid: 6813 + - uid: 13783 components: - pos: -10.560801,-26.621416 parent: 2 type: Transform - proto: SmokingPipeFilledTobacco entities: - - uid: 3266 + - uid: 13784 components: - pos: -34.66471,32.488693 parent: 2 type: Transform - proto: soda_dispenser entities: - - uid: 124 + - uid: 13785 components: - rot: -1.5707963267948966 rad pos: -3.5,-4.5 parent: 2 type: Transform - - uid: 4264 + - uid: 13786 components: - rot: 3.141592653589793 rad pos: 33.5,-10.5 parent: 2 type: Transform - - uid: 5503 + - uid: 13787 components: - rot: -1.5707963267948966 rad pos: 4.5,34.5 parent: 2 type: Transform - - uid: 11157 + - uid: 13788 components: - pos: -60.5,2.5 parent: 2 type: Transform - proto: SolarAssembly entities: - - uid: 5235 + - uid: 13789 components: - pos: 52.5,14.5 parent: 2 type: Transform - - uid: 5236 + - uid: 13790 components: - pos: 50.5,16.5 parent: 2 type: Transform - - uid: 5237 + - uid: 13791 components: - pos: 54.5,18.5 parent: 2 type: Transform - - uid: 5238 + - uid: 13792 components: - pos: 56.5,16.5 parent: 2 type: Transform - - uid: 5239 + - uid: 13793 components: - pos: 58.5,16.5 parent: 2 type: Transform - - uid: 5240 + - uid: 13794 components: - pos: 60.5,18.5 parent: 2 type: Transform - - uid: 5241 + - uid: 13795 components: - pos: 60.5,16.5 parent: 2 type: Transform - - uid: 5242 + - uid: 13796 components: - pos: 60.5,7.5 parent: 2 type: Transform - - uid: 5243 + - uid: 13797 components: - pos: 58.5,6.5 parent: 2 type: Transform - - uid: 5244 + - uid: 13798 components: - pos: 58.5,4.5 parent: 2 type: Transform - - uid: 5245 + - uid: 13799 components: - pos: 54.5,5.5 parent: 2 type: Transform - - uid: 5246 + - uid: 13800 components: - pos: 56.5,7.5 parent: 2 type: Transform - - uid: 5247 + - uid: 13801 components: - pos: 50.5,8.5 parent: 2 type: Transform - - uid: 5248 + - uid: 13802 components: - pos: 52.5,5.5 parent: 2 type: Transform - - uid: 6488 + - uid: 13803 components: - pos: -50.5,56.5 parent: 2 type: Transform - - uid: 6492 + - uid: 13804 components: - pos: -49.5,56.5 parent: 2 type: Transform - - uid: 6493 + - uid: 13805 components: - pos: -47.5,58.5 parent: 2 type: Transform - - uid: 6495 + - uid: 13806 components: - pos: -47.5,60.5 parent: 2 type: Transform - - uid: 6496 + - uid: 13807 components: - pos: -48.5,60.5 parent: 2 type: Transform - - uid: 6497 + - uid: 13808 components: - pos: -47.5,64.5 parent: 2 type: Transform - - uid: 6498 + - uid: 13809 components: - pos: -49.5,66.5 parent: 2 type: Transform - - uid: 6499 + - uid: 13810 components: - pos: -50.5,60.5 parent: 2 type: Transform - - uid: 6500 + - uid: 13811 components: - pos: -36.5,62.5 parent: 2 type: Transform - - uid: 6501 + - uid: 13812 components: - pos: -39.5,60.5 parent: 2 type: Transform - - uid: 6502 + - uid: 13813 components: - pos: -39.5,66.5 parent: 2 type: Transform - - uid: 6503 + - uid: 13814 components: - pos: -34.5,64.5 parent: 2 type: Transform - proto: SolarPanel entities: - - uid: 869 + - uid: 13815 components: - pos: 58.5,8.5 parent: 2 type: Transform - - uid: 5072 + - uid: 13816 components: - pos: 56.5,5.5 parent: 2 type: Transform - - uid: 5212 + - uid: 13817 components: - pos: 60.5,17.5 parent: 2 type: Transform - - uid: 5263 + - uid: 13818 components: - pos: 50.5,14.5 parent: 2 type: Transform - - uid: 5264 + - uid: 13819 components: - pos: 52.5,15.5 parent: 2 type: Transform - - uid: 5265 + - uid: 13820 components: - pos: 52.5,16.5 parent: 2 type: Transform - - uid: 5266 + - uid: 13821 components: - pos: 52.5,17.5 parent: 2 type: Transform - - uid: 5267 + - uid: 13822 components: - pos: 54.5,15.5 parent: 2 type: Transform - - uid: 5268 + - uid: 13823 components: - pos: 50.5,17.5 parent: 2 type: Transform - - uid: 5269 + - uid: 13824 components: - pos: 50.5,18.5 parent: 2 type: Transform - - uid: 5270 + - uid: 13825 components: - pos: 54.5,14.5 parent: 2 type: Transform - - uid: 5271 + - uid: 13826 components: - pos: 60.5,6.5 parent: 2 type: Transform - - uid: 5272 + - uid: 13827 components: - pos: 60.5,4.5 parent: 2 type: Transform - - uid: 5273 + - uid: 13828 components: - pos: 50.5,6.5 parent: 2 type: Transform - - uid: 6515 + - uid: 13829 components: - rot: -1.5707963267948966 rad pos: -45.5,62.5 parent: 2 type: Transform - - uid: 6516 + - uid: 13830 components: - rot: -1.5707963267948966 rad pos: -40.5,64.5 parent: 2 type: Transform - - uid: 6517 + - uid: 13831 components: - rot: -1.5707963267948966 rad pos: -47.5,62.5 parent: 2 type: Transform - - uid: 6534 + - uid: 13832 components: - rot: -1.5707963267948966 rad pos: -48.5,56.5 parent: 2 type: Transform - - uid: 6535 + - uid: 13833 components: - rot: -1.5707963267948966 rad pos: -44.5,58.5 parent: 2 type: Transform - - uid: 6536 + - uid: 13834 components: - rot: -1.5707963267948966 rad pos: -34.5,66.5 parent: 2 type: Transform - - uid: 6537 + - uid: 13835 components: - rot: -1.5707963267948966 rad pos: -34.5,62.5 parent: 2 type: Transform - - uid: 6539 + - uid: 13836 components: - rot: -1.5707963267948966 rad pos: -35.5,58.5 parent: 2 type: Transform - - uid: 6540 + - uid: 13837 components: - rot: -1.5707963267948966 rad pos: -40.5,58.5 parent: 2 type: Transform - - uid: 6541 + - uid: 13838 components: - rot: -1.5707963267948966 rad pos: -39.5,58.5 parent: 2 type: Transform - - uid: 6542 + - uid: 13839 components: - rot: -1.5707963267948966 rad pos: -38.5,58.5 parent: 2 type: Transform - - uid: 6543 + - uid: 13840 components: - rot: -1.5707963267948966 rad pos: -34.5,56.5 parent: 2 type: Transform - - uid: 6544 + - uid: 13841 components: - rot: -1.5707963267948966 rad pos: -44.5,66.5 parent: 2 type: Transform - - uid: 6545 + - uid: 13842 components: - rot: -1.5707963267948966 rad pos: -50.5,66.5 @@ -89305,239 +90757,239 @@ entities: type: Transform - proto: SolarPanelBroken entities: - - uid: 5249 + - uid: 13843 components: - pos: 50.5,5.5 parent: 2 type: Transform - - uid: 5250 + - uid: 13844 components: - pos: 50.5,4.5 parent: 2 type: Transform - - uid: 5251 + - uid: 13845 components: - pos: 52.5,7.5 parent: 2 type: Transform - - uid: 5252 + - uid: 13846 components: - pos: 54.5,6.5 parent: 2 type: Transform - - uid: 5253 + - uid: 13847 components: - pos: 58.5,5.5 parent: 2 type: Transform - - uid: 5254 + - uid: 13848 components: - pos: 56.5,4.5 parent: 2 type: Transform - - uid: 5255 + - uid: 13849 components: - pos: 60.5,8.5 parent: 2 type: Transform - - uid: 5256 + - uid: 13850 components: - pos: 60.5,14.5 parent: 2 type: Transform - - uid: 5257 + - uid: 13851 components: - pos: 58.5,17.5 parent: 2 type: Transform - - uid: 5258 + - uid: 13852 components: - pos: 58.5,18.5 parent: 2 type: Transform - - uid: 5259 + - uid: 13853 components: - pos: 56.5,14.5 parent: 2 type: Transform - - uid: 5260 + - uid: 13854 components: - pos: 54.5,16.5 parent: 2 type: Transform - - uid: 5261 + - uid: 13855 components: - pos: 52.5,18.5 parent: 2 type: Transform - - uid: 5262 + - uid: 13856 components: - pos: 50.5,15.5 parent: 2 type: Transform - - uid: 6394 + - uid: 13857 components: - rot: -1.5707963267948966 rad pos: -45.5,66.5 parent: 2 type: Transform - - uid: 6504 + - uid: 13858 components: - rot: -1.5707963267948966 rad pos: -38.5,66.5 parent: 2 type: Transform - - uid: 6505 + - uid: 13859 components: - rot: -1.5707963267948966 rad pos: -37.5,66.5 parent: 2 type: Transform - - uid: 6506 + - uid: 13860 components: - rot: -1.5707963267948966 rad pos: -36.5,64.5 parent: 2 type: Transform - - uid: 6507 + - uid: 13861 components: - rot: -1.5707963267948966 rad pos: -38.5,64.5 parent: 2 type: Transform - - uid: 6508 + - uid: 13862 components: - rot: -1.5707963267948966 rad pos: -38.5,62.5 parent: 2 type: Transform - - uid: 6509 + - uid: 13863 components: - rot: -1.5707963267948966 rad pos: -36.5,60.5 parent: 2 type: Transform - - uid: 6510 + - uid: 13864 components: - rot: -1.5707963267948966 rad pos: -34.5,60.5 parent: 2 type: Transform - - uid: 6511 + - uid: 13865 components: - rot: -1.5707963267948966 rad pos: -34.5,58.5 parent: 2 type: Transform - - uid: 6512 + - uid: 13866 components: - rot: -1.5707963267948966 rad pos: -36.5,58.5 parent: 2 type: Transform - - uid: 6513 + - uid: 13867 components: - rot: -1.5707963267948966 rad pos: -37.5,56.5 parent: 2 type: Transform - - uid: 6514 + - uid: 13868 components: - rot: -1.5707963267948966 rad pos: -38.5,56.5 parent: 2 type: Transform - - uid: 6518 + - uid: 13869 components: - rot: -1.5707963267948966 rad pos: -49.5,62.5 parent: 2 type: Transform - - uid: 6519 + - uid: 13870 components: - rot: -1.5707963267948966 rad pos: -39.5,62.5 parent: 2 type: Transform - - uid: 6520 + - uid: 13871 components: - rot: -1.5707963267948966 rad pos: -40.5,62.5 parent: 2 type: Transform - - uid: 6521 + - uid: 13872 components: - rot: -1.5707963267948966 rad pos: -46.5,66.5 parent: 2 type: Transform - - uid: 6522 + - uid: 13873 components: - rot: -1.5707963267948966 rad pos: -47.5,66.5 parent: 2 type: Transform - - uid: 6523 + - uid: 13874 components: - rot: -1.5707963267948966 rad pos: -46.5,64.5 parent: 2 type: Transform - - uid: 6524 + - uid: 13875 components: - rot: -1.5707963267948966 rad pos: -49.5,64.5 parent: 2 type: Transform - - uid: 6525 + - uid: 13876 components: - rot: -1.5707963267948966 rad pos: -50.5,64.5 parent: 2 type: Transform - - uid: 6526 + - uid: 13877 components: - rot: -1.5707963267948966 rad pos: -39.5,56.5 parent: 2 type: Transform - - uid: 6527 + - uid: 13878 components: - rot: -1.5707963267948966 rad pos: -46.5,58.5 parent: 2 type: Transform - - uid: 6528 + - uid: 13879 components: - rot: -1.5707963267948966 rad pos: -45.5,58.5 parent: 2 type: Transform - - uid: 6529 + - uid: 13880 components: - rot: -1.5707963267948966 rad pos: -44.5,56.5 parent: 2 type: Transform - - uid: 6530 + - uid: 13881 components: - rot: -1.5707963267948966 rad pos: -45.5,56.5 parent: 2 type: Transform - - uid: 6531 + - uid: 13882 components: - rot: -1.5707963267948966 rad pos: -46.5,56.5 parent: 2 type: Transform - - uid: 6532 + - uid: 13883 components: - rot: -1.5707963267948966 rad pos: -50.5,58.5 parent: 2 type: Transform - - uid: 6533 + - uid: 13884 components: - rot: -1.5707963267948966 rad pos: -49.5,58.5 @@ -89545,1049 +90997,1059 @@ entities: type: Transform - proto: SolarTracker entities: - - uid: 5078 + - uid: 13885 components: - pos: 63.5,11.5 parent: 2 type: Transform - - uid: 6413 + - uid: 13886 components: - pos: -42.5,68.5 parent: 2 type: Transform - proto: SophicScribe entities: - - uid: 5812 + - uid: 13887 components: - pos: -30.5,32.5 parent: 2 type: Transform - proto: SpaceCash1000 entities: - - uid: 15349 + - uid: 13888 components: - pos: -0.39021492,18.901426 parent: 2 type: Transform - - uid: 15350 + - uid: 13889 components: - pos: -0.5777149,18.713926 parent: 2 type: Transform - - uid: 15363 + - uid: 13890 components: - pos: -0.45271492,18.495176 parent: 2 type: Transform - - uid: 15370 + - uid: 13891 components: - pos: -0.49958992,18.823301 parent: 2 type: Transform - proto: SpaceVillainArcadeFilled entities: - - uid: 3084 + - uid: 13892 components: - pos: -49.5,-12.5 parent: 2 type: Transform - proto: SpawnMobBandito entities: - - uid: 5750 + - uid: 13893 components: - pos: -26.5,32.5 parent: 2 type: Transform - - uid: 11208 + - uid: 13894 components: - pos: -35.5,43.5 parent: 2 type: Transform - - uid: 11216 + - uid: 13895 components: - pos: -42.5,-18.5 parent: 2 type: Transform - - uid: 11218 + - uid: 13896 components: - pos: 4.5,11.5 parent: 2 type: Transform - proto: SpawnMobCatBingus entities: - - uid: 16306 + - uid: 13897 components: - pos: -35.5,13.5 parent: 2 type: Transform - proto: SpawnMobCatException entities: - - uid: 1415 + - uid: 13898 components: - pos: -1.5,-30.5 parent: 2 type: Transform - proto: SpawnMobCatGeneric entities: - - uid: 4576 + - uid: 13899 components: - pos: 9.5,27.5 parent: 2 type: Transform - proto: SpawnMobCatRuntime entities: - - uid: 4583 + - uid: 13900 components: - pos: 9.5,17.5 parent: 2 type: Transform - proto: SpawnMobCleanBot entities: - - uid: 3943 + - uid: 13901 components: - pos: -17.5,0.5 parent: 2 type: Transform - proto: SpawnMobCorgi entities: - - uid: 11624 + - uid: 13902 components: - pos: 21.5,-3.5 parent: 2 type: Transform - proto: SpawnMobDrone entities: - - uid: 376 + - uid: 13903 components: - pos: -10.5,-21.5 parent: 2 type: Transform - - uid: 557 + - uid: 13904 components: - pos: -11.5,-21.5 parent: 2 type: Transform - - uid: 7907 + - uid: 13905 components: - pos: -12.5,-21.5 parent: 2 type: Transform - proto: SpawnMobFoxRenault entities: - - uid: 6683 + - uid: 13906 components: - pos: -1.5,37.5 parent: 2 type: Transform - proto: SpawnMobKangarooWillow entities: - - uid: 4023 + - uid: 13907 components: - pos: -48.5,39.5 parent: 2 type: Transform - proto: SpawnMobMcGriff entities: - - uid: 10903 + - uid: 13908 components: - pos: -37.5,-4.5 parent: 2 type: Transform - proto: SpawnMobMedibot entities: - - uid: 1040 + - uid: 13909 components: - pos: 9.5,0.5 parent: 2 type: Transform - proto: SpawnMobMonkeyPunpun entities: - - uid: 17199 + - uid: 13910 components: - pos: -4.5,-5.5 parent: 2 type: Transform - proto: SpawnMobPossumMorty entities: - - uid: 2270 + - uid: 13911 components: - pos: 26.5,20.5 parent: 2 type: Transform - proto: SpawnMobShiva entities: - - uid: 568 + - uid: 13912 components: - pos: -30.5,-15.5 parent: 2 type: Transform - proto: SpawnMobSlothPaperwork entities: - - uid: 15709 + - uid: 13913 components: - pos: 7.5,-7.5 parent: 2 type: Transform - proto: SpawnPointAssistant entities: - - uid: 16346 + - uid: 13914 components: - pos: -12.5,4.5 parent: 2 type: Transform - - uid: 16347 + - uid: 13915 components: - pos: -48.5,12.5 parent: 2 type: Transform - - uid: 16348 + - uid: 13916 components: - pos: -31.5,19.5 parent: 2 type: Transform - - uid: 16349 + - uid: 13917 components: - pos: -30.5,10.5 parent: 2 type: Transform - - uid: 16350 + - uid: 13918 components: - pos: -34.5,19.5 parent: 2 type: Transform - - uid: 16364 + - uid: 13919 components: - pos: 30.5,-2.5 parent: 2 type: Transform - - uid: 16367 + - uid: 13920 components: - pos: 35.5,-4.5 parent: 2 type: Transform - - uid: 16377 + - uid: 13921 components: - pos: -10.5,3.5 parent: 2 type: Transform - - uid: 16378 + - uid: 13922 components: - pos: -10.5,4.5 parent: 2 type: Transform - - uid: 16379 + - uid: 13923 components: - pos: -12.5,3.5 parent: 2 type: Transform - - uid: 16380 + - uid: 13924 components: - pos: -8.5,3.5 parent: 2 type: Transform - - uid: 16381 + - uid: 13925 components: - pos: -7.5,4.5 parent: 2 type: Transform - - uid: 16382 + - uid: 13926 components: - pos: -7.5,-7.5 parent: 2 type: Transform - - uid: 16383 + - uid: 13927 components: - pos: -7.5,-6.5 parent: 2 type: Transform - - uid: 16384 + - uid: 13928 components: - pos: -5.5,-8.5 parent: 2 type: Transform - - uid: 16385 + - uid: 13929 components: - pos: -4.5,-8.5 parent: 2 type: Transform - - uid: 16762 + - uid: 13930 components: - pos: -0.5,-0.5 parent: 2 type: Transform - - uid: 16772 + - uid: 13931 components: - pos: -0.5,1.5 parent: 2 type: Transform - - uid: 16773 + - uid: 13932 components: - pos: 1.5,-0.5 parent: 2 type: Transform - proto: SpawnPointAtmos entities: - - uid: 10922 + - uid: 13933 components: - pos: -1.5,-27.5 parent: 2 type: Transform - - uid: 10923 + - uid: 13934 components: - pos: -0.5,-27.5 parent: 2 type: Transform - - uid: 10924 + - uid: 13935 components: - pos: 0.5,-28.5 parent: 2 type: Transform - - uid: 16308 + - uid: 13936 components: - pos: 1.5,-28.5 parent: 2 type: Transform - - uid: 16351 + - uid: 13937 components: - - pos: -6.5,-40.5 + - pos: -7.5,-39.5 parent: 2 type: Transform - - uid: 16352 + - uid: 13938 components: - - pos: -6.5,-38.5 + - pos: -6.5,-39.5 parent: 2 type: Transform - - uid: 16353 + - uid: 13939 components: - - pos: -6.5,-39.5 + - pos: -1.5,-50.5 + parent: 2 + type: Transform + - uid: 13940 + components: + - pos: 1.5,-44.5 + parent: 2 + type: Transform + - uid: 13941 + components: + - pos: 6.5,-39.5 parent: 2 type: Transform - proto: SpawnPointBartender entities: - - uid: 15340 + - uid: 13942 components: - pos: -13.5,-4.5 parent: 2 type: Transform - - uid: 16544 + - uid: 13943 components: - pos: -12.5,-4.5 parent: 2 type: Transform - proto: SpawnPointBorg entities: - - uid: 4841 + - uid: 13944 components: - pos: -40.5,41.5 parent: 2 type: Transform - proto: SpawnPointBotanist entities: - - uid: 15410 + - uid: 13945 components: - pos: -20.5,10.5 parent: 2 type: Transform - - uid: 15412 + - uid: 13946 components: - pos: -19.5,9.5 parent: 2 type: Transform - proto: SpawnPointBoxer entities: - - uid: 5038 + - uid: 13947 components: - pos: 34.5,7.5 parent: 2 type: Transform - - uid: 5039 + - uid: 13948 components: - pos: 33.5,8.5 parent: 2 type: Transform - - uid: 16354 + - uid: 13949 components: - pos: -44.5,26.5 parent: 2 type: Transform - proto: SpawnPointCaptain entities: - - uid: 15424 + - uid: 13950 components: - pos: -10.5,35.5 parent: 2 type: Transform - proto: SpawnPointCargoTechnician entities: - - uid: 972 + - uid: 13951 components: - pos: 20.5,-31.5 parent: 2 type: Transform - - uid: 11477 + - uid: 13952 components: - pos: 16.5,-31.5 parent: 2 type: Transform - - uid: 11478 + - uid: 13953 components: - pos: 19.5,-30.5 parent: 2 type: Transform - - uid: 15011 + - uid: 13954 components: - pos: 15.5,-30.5 parent: 2 type: Transform - proto: SpawnPointChaplain entities: - - uid: 16387 + - uid: 13955 components: - pos: -29.5,29.5 parent: 2 type: Transform - proto: SpawnPointChef entities: - - uid: 15212 + - uid: 13956 components: - pos: -7.5,10.5 parent: 2 type: Transform - - uid: 15401 + - uid: 13957 components: - pos: -8.5,11.5 parent: 2 type: Transform - - uid: 16234 + - uid: 13958 components: - pos: -7.5,16.5 parent: 2 type: Transform - - uid: 16629 + - uid: 13959 components: - pos: -8.5,16.5 parent: 2 type: Transform - proto: SpawnPointChemist entities: - - uid: 13140 + - uid: 13960 components: - pos: 15.5,11.5 parent: 2 type: Transform - - uid: 13360 + - uid: 13961 components: - pos: 15.5,10.5 parent: 2 type: Transform - - uid: 13576 + - uid: 13962 components: - pos: 18.5,11.5 parent: 2 type: Transform - - uid: 13586 + - uid: 13963 components: - pos: 19.5,11.5 parent: 2 type: Transform - proto: SpawnPointChiefEngineer entities: - - uid: 15427 + - uid: 13964 components: - pos: -11.5,32.5 parent: 2 type: Transform - proto: SpawnPointChiefMedicalOfficer entities: - - uid: 15429 + - uid: 13965 components: - pos: -8.5,34.5 parent: 2 type: Transform - proto: SpawnPointClown entities: - - uid: 16365 + - uid: 13966 components: - pos: -33.5,9.5 parent: 2 type: Transform - proto: SpawnPointDetective entities: - - uid: 1722 + - uid: 13967 components: - pos: 26.5,6.5 parent: 2 type: Transform - proto: SpawnPointForensicMantis entities: - - uid: 15848 + - uid: 13968 components: - pos: -36.5,33.5 parent: 2 type: Transform - proto: SpawnPointHeadOfPersonnel entities: - - uid: 15431 + - uid: 13969 components: - pos: -8.5,33.5 parent: 2 type: Transform - proto: SpawnPointHeadOfSecurity entities: - - uid: 15433 + - uid: 13970 components: - pos: -11.5,34.5 parent: 2 type: Transform - proto: SpawnPointJanitor entities: - - uid: 15846 + - uid: 13971 components: - pos: 0.5,11.5 parent: 2 type: Transform - - uid: 15847 + - uid: 13972 components: - pos: -0.5,10.5 parent: 2 type: Transform - proto: SpawnPointLatejoin entities: - - uid: 15372 + - uid: 13973 components: - pos: 32.5,-21.5 parent: 2 type: Transform - - uid: 15388 + - uid: 13974 components: - pos: 32.5,-19.5 parent: 2 type: Transform - - uid: 15389 + - uid: 13975 components: - pos: 33.5,-21.5 parent: 2 type: Transform - - uid: 15390 + - uid: 13976 components: - pos: 33.5,-19.5 parent: 2 type: Transform - - uid: 15391 + - uid: 13977 components: - pos: 34.5,-19.5 parent: 2 type: Transform - - uid: 15392 + - uid: 13978 components: - pos: 34.5,-21.5 parent: 2 type: Transform - - uid: 15393 + - uid: 13979 components: - pos: 35.5,-21.5 parent: 2 type: Transform - - uid: 15394 + - uid: 13980 components: - pos: 35.5,-19.5 parent: 2 type: Transform - proto: SpawnPointLawyer entities: - - uid: 15552 + - uid: 13981 components: - pos: -20.5,21.5 parent: 2 type: Transform - proto: SpawnPointLocationMidRoundAntag entities: - - uid: 9021 + - uid: 13982 components: - pos: 32.5,19.5 parent: 2 type: Transform - - uid: 12139 + - uid: 13983 components: - pos: 20.5,-13.5 parent: 2 type: Transform - - uid: 16529 + - uid: 13984 components: - pos: 6.5,14.5 parent: 2 type: Transform - - uid: 16530 + - uid: 13985 components: - pos: 0.5,-12.5 parent: 2 type: Transform - - uid: 16531 + - uid: 13986 components: - pos: -36.5,-23.5 parent: 2 type: Transform - - uid: 16532 + - uid: 13987 components: - pos: -35.5,10.5 parent: 2 type: Transform - - uid: 16533 + - uid: 13988 components: - pos: -28.5,12.5 parent: 2 type: Transform - - uid: 16534 + - uid: 13989 components: - pos: -16.5,17.5 parent: 2 type: Transform - - uid: 16535 + - uid: 13990 components: - pos: -33.5,41.5 parent: 2 type: Transform - - uid: 16536 + - uid: 13991 components: - pos: -49.5,29.5 parent: 2 type: Transform - - uid: 16537 + - uid: 13992 components: - pos: -47.5,1.5 parent: 2 type: Transform - - uid: 16538 + - uid: 13993 components: - pos: 34.5,-15.5 parent: 2 type: Transform - - uid: 16539 + - uid: 13994 components: - pos: 17.5,25.5 parent: 2 type: Transform - - uid: 16541 + - uid: 13995 components: - pos: -29.5,27.5 parent: 2 type: Transform - - uid: 16542 + - uid: 13996 components: - pos: -21.5,43.5 parent: 2 type: Transform - - uid: 16543 + - uid: 13997 components: - pos: -20.5,20.5 parent: 2 type: Transform - proto: SpawnPointMailCarrier entities: - - uid: 2422 + - uid: 13998 components: - pos: 15.5,-26.5 parent: 2 type: Transform - - uid: 14490 + - uid: 13999 components: - pos: 15.5,-28.5 parent: 2 type: Transform - - uid: 14491 + - uid: 14000 components: - pos: 16.5,-27.5 parent: 2 type: Transform - proto: SpawnPointMedicalDoctor entities: - - uid: 10076 + - uid: 14001 components: - pos: 19.5,7.5 parent: 2 type: Transform - - uid: 10509 + - uid: 14002 components: - pos: 19.5,6.5 parent: 2 type: Transform - - uid: 10655 + - uid: 14003 components: - pos: 20.5,6.5 parent: 2 type: Transform - - uid: 10656 + - uid: 14004 components: - pos: 20.5,7.5 parent: 2 type: Transform - proto: SpawnPointMedicalIntern entities: - - uid: 10071 + - uid: 14005 components: - pos: 18.5,7.5 parent: 2 type: Transform - - uid: 10077 + - uid: 14006 components: - pos: 18.5,6.5 parent: 2 type: Transform - - uid: 10195 + - uid: 14007 components: - pos: 18.5,5.5 parent: 2 type: Transform - proto: SpawnPointMime entities: - - uid: 15184 + - uid: 14008 components: - pos: -38.5,9.5 parent: 2 type: Transform - proto: SpawnPointMusician entities: - - uid: 16145 + - uid: 14009 components: - pos: -13.5,-8.5 parent: 2 type: Transform - proto: SpawnPointObserver entities: - - uid: 2481 + - uid: 14010 components: - pos: 0.5,0.5 parent: 2 type: Transform - proto: SpawnPointParamedic entities: - - uid: 2939 + - uid: 14011 components: - pos: 22.5,7.5 parent: 2 type: Transform - - uid: 10585 + - uid: 14012 components: - pos: 22.5,6.5 parent: 2 type: Transform - - uid: 10662 + - uid: 14013 components: - pos: 22.5,5.5 parent: 2 type: Transform - proto: SpawnPointPrisoner entities: - - uid: 3080 + - uid: 14014 components: - pos: -55.5,-12.5 parent: 2 type: Transform - - uid: 9163 + - uid: 14015 components: - pos: -59.5,-0.5 parent: 2 type: Transform - - uid: 9291 + - uid: 14016 components: - pos: -60.5,-8.5 parent: 2 type: Transform - - uid: 12303 + - uid: 14017 components: - pos: -55.5,-13.5 parent: 2 type: Transform - - uid: 12304 + - uid: 14018 components: - pos: -52.5,-13.5 parent: 2 type: Transform - - uid: 12305 + - uid: 14019 components: - pos: -61.5,-7.5 parent: 2 type: Transform - - uid: 12306 + - uid: 14020 components: - pos: -59.5,-1.5 parent: 2 type: Transform - - uid: 12309 + - uid: 14021 components: - pos: -50.5,0.5 parent: 2 type: Transform - proto: SpawnPointPsychologist entities: - - uid: 4531 + - uid: 14022 components: - pos: 7.5,26.5 parent: 2 type: Transform - proto: SpawnPointQuartermaster entities: - - uid: 11458 + - uid: 14023 components: - pos: -8.5,32.5 parent: 2 type: Transform - proto: SpawnPointReporter entities: - - uid: 5036 + - uid: 14024 components: - pos: 34.5,13.5 parent: 2 type: Transform - - uid: 15570 + - uid: 14025 components: - pos: -13.5,22.5 parent: 2 type: Transform - proto: SpawnPointResearchAssistant entities: - - uid: 2175 + - uid: 14026 components: - pos: -40.5,26.5 parent: 2 type: Transform - - uid: 17044 + - uid: 14027 components: - pos: -41.5,26.5 parent: 2 type: Transform - - uid: 17046 + - uid: 14028 components: - pos: -39.5,26.5 parent: 2 type: Transform - - uid: 17047 + - uid: 14029 components: - pos: -38.5,26.5 parent: 2 type: Transform - proto: SpawnPointResearchDirector entities: - - uid: 12527 + - uid: 14030 components: - pos: -11.5,33.5 parent: 2 type: Transform - proto: SpawnPointSalvageSpecialist entities: - - uid: 893 + - uid: 14031 components: - pos: 10.5,-32.5 parent: 2 type: Transform - - uid: 1808 + - uid: 14032 components: - pos: 10.5,-30.5 parent: 2 type: Transform - - uid: 1903 + - uid: 14033 components: - pos: 9.5,-31.5 parent: 2 type: Transform - - uid: 17182 + - uid: 14034 components: - pos: 9.5,-33.5 parent: 2 type: Transform - proto: SpawnPointScientist entities: - - uid: 17048 + - uid: 14035 components: - pos: -41.5,27.5 parent: 2 type: Transform - - uid: 17049 + - uid: 14036 components: - pos: -40.5,27.5 parent: 2 type: Transform - - uid: 17050 + - uid: 14037 components: - pos: -39.5,27.5 parent: 2 type: Transform - - uid: 17051 + - uid: 14038 components: - pos: -38.5,27.5 parent: 2 type: Transform - proto: SpawnPointSecurityCadet entities: - - uid: 16334 + - uid: 14039 components: - pos: -21.5,-13.5 parent: 2 type: Transform - - uid: 16335 + - uid: 14040 components: - pos: -21.5,-14.5 parent: 2 type: Transform - - uid: 16336 + - uid: 14041 components: - pos: -21.5,-15.5 parent: 2 type: Transform - - uid: 16337 + - uid: 14042 components: - pos: -21.5,-16.5 parent: 2 type: Transform - - uid: 16341 + - uid: 14043 components: - pos: -22.5,-7.5 parent: 2 type: Transform - - uid: 16344 + - uid: 14044 components: - pos: -35.5,-13.5 parent: 2 type: Transform - proto: SpawnPointSecurityOfficer entities: - - uid: 16312 + - uid: 14045 components: - pos: -22.5,-13.5 parent: 2 type: Transform - - uid: 16331 + - uid: 14046 components: - pos: -22.5,-14.5 parent: 2 type: Transform - - uid: 16332 + - uid: 14047 components: - pos: -22.5,-15.5 parent: 2 type: Transform - - uid: 16333 + - uid: 14048 components: - pos: -22.5,-16.5 parent: 2 type: Transform - - uid: 16340 + - uid: 14049 components: - pos: -21.5,-7.5 parent: 2 type: Transform - - uid: 16342 + - uid: 14050 components: - pos: -37.5,-13.5 parent: 2 type: Transform - - uid: 16343 + - uid: 14051 components: - pos: -35.5,-12.5 parent: 2 type: Transform - proto: SpawnPointStationEngineer entities: - - uid: 17055 + - uid: 14052 components: - pos: -1.5,-24.5 parent: 2 type: Transform - - uid: 17056 + - uid: 14053 components: - pos: -0.5,-24.5 parent: 2 type: Transform - - uid: 17057 + - uid: 14054 components: - pos: -3.5,-27.5 parent: 2 type: Transform - - uid: 17058 + - uid: 14055 components: - pos: -2.5,-27.5 parent: 2 type: Transform - - uid: 17059 + - uid: 14056 components: - pos: 2.5,-25.5 parent: 2 type: Transform - - uid: 17060 + - uid: 14057 components: - pos: 3.5,-25.5 parent: 2 type: Transform - - uid: 17061 + - uid: 14058 components: - pos: 2.5,-24.5 parent: 2 type: Transform - - uid: 17062 + - uid: 14059 components: - pos: 3.5,-24.5 parent: 2 type: Transform - proto: SpawnPointTechnicalAssistant entities: - - uid: 17052 + - uid: 14060 components: - pos: -0.5,-22.5 parent: 2 type: Transform - - uid: 17053 + - uid: 14061 components: - pos: 0.5,-22.5 parent: 2 type: Transform - - uid: 17054 + - uid: 14062 components: - pos: 1.5,-22.5 parent: 2 type: Transform - proto: SpawnPointWarden entities: - - uid: 16345 + - uid: 14063 components: - pos: -36.5,-6.5 parent: 2 type: Transform - proto: SpawnVehicleATV entities: - - uid: 15902 + - uid: 14064 components: - pos: 8.5,-7.5 parent: 2 type: Transform - proto: SpawnVehicleSecway entities: - - uid: 1511 + - uid: 14065 components: - pos: -33.5,-5.5 parent: 2 type: Transform - proto: SpawnVendingMachineRestockFoodDrink entities: - - uid: 14499 + - uid: 14066 components: - pos: 19.5,-11.5 parent: 2 type: Transform - proto: SpeedLoaderLightRifle entities: - - uid: 11376 + - uid: 14067 components: - rot: 1.5707963267948966 rad pos: 1.3356142,20.589882 parent: 2 type: Transform - - uid: 11406 + - uid: 14068 components: - rot: 1.5707963267948966 rad pos: 1.5895681,20.7266 parent: 2 type: Transform - - uid: 11407 + - uid: 14069 components: - rot: 1.5707963267948966 rad pos: 1.3160801,20.492226 @@ -90595,47 +92057,47 @@ entities: type: Transform - proto: Spoon entities: - - uid: 15736 + - uid: 14070 components: - rot: 2.2102243900299072 rad pos: -62.70413,-7.8477774 parent: 2 type: Transform - - uid: 17063 + - uid: 14071 components: - pos: -10.708023,14.570831 parent: 2 type: Transform - proto: SprayBottleSpaceCleaner entities: - - uid: 3506 + - uid: 14072 components: - pos: 32.446316,-16.471302 parent: 2 type: Transform - - uid: 4245 + - uid: 14073 components: - pos: -27.260195,11.305423 parent: 2 type: Transform - - uid: 4814 + - uid: 14074 components: - pos: 32.27444,-16.174221 parent: 2 type: Transform - - uid: 11160 + - uid: 14075 components: - pos: 0.16161251,9.369377 parent: 2 type: Transform - - uid: 16979 + - uid: 14076 components: - pos: 0.32103753,9.680939 parent: 2 type: Transform - proto: SS13Memorial entities: - - uid: 10989 + - uid: 14077 components: - desc: He peers into the future to see what it will bring him... name: a nameless crewman @@ -90651,71 +92113,71 @@ entities: - Pullable - proto: StasisBed entities: - - uid: 4458 + - uid: 14078 components: - pos: 23.5,8.5 parent: 2 type: Transform - proto: StationMap entities: - - uid: 978 + - uid: 14079 components: - pos: 7.5,2.5 parent: 2 type: Transform - - uid: 1043 + - uid: 14080 components: - rot: -1.5707963267948966 rad pos: 41.5,-0.5 parent: 2 type: Transform - - uid: 1077 + - uid: 14081 components: - pos: -13.5,28.5 parent: 2 type: Transform - - uid: 3890 + - uid: 14082 components: - rot: -1.5707963267948966 rad pos: -6.5,-77.5 parent: 2 type: Transform - - uid: 13790 + - uid: 14083 components: - rot: -1.5707963267948966 rad pos: -39.5,12.5 parent: 2 type: Transform - - uid: 14572 + - uid: 14084 components: - rot: -1.5707963267948966 rad pos: -54.5,-3.5 parent: 2 type: Transform - - uid: 14574 + - uid: 14085 components: - pos: -47.5,24.5 parent: 2 type: Transform - - uid: 14577 + - uid: 14086 components: - rot: 1.5707963267948966 rad pos: -25.5,36.5 parent: 2 type: Transform - - uid: 15161 + - uid: 14087 components: - rot: 1.5707963267948966 rad pos: -13.5,33.5 parent: 2 type: Transform - - uid: 15756 + - uid: 14088 components: - rot: -1.5707963267948966 rad pos: -14.5,-10.5 parent: 2 type: Transform - - uid: 16590 + - uid: 14089 components: - rot: 1.5707963267948966 rad pos: 27.5,-18.5 @@ -90723,155 +92185,155 @@ entities: type: Transform - proto: SteelBench entities: - - uid: 424 + - uid: 14090 components: - rot: -1.5707963267948966 rad pos: 12.5,-3.5 parent: 2 type: Transform - - uid: 425 + - uid: 14091 components: - rot: 1.5707963267948966 rad pos: 13.5,-4.5 parent: 2 type: Transform - - uid: 426 + - uid: 14092 components: - rot: 1.5707963267948966 rad pos: 13.5,-3.5 parent: 2 type: Transform - - uid: 1521 + - uid: 14093 components: - rot: -1.5707963267948966 rad pos: 12.5,-4.5 parent: 2 type: Transform - - uid: 1522 + - uid: 14094 components: - rot: -1.5707963267948966 rad pos: -48.5,12.5 parent: 2 type: Transform - - uid: 1843 + - uid: 14095 components: - rot: -1.5707963267948966 rad pos: -48.5,14.5 parent: 2 type: Transform - - uid: 6182 + - uid: 14096 components: - rot: 1.5707963267948966 rad pos: -47.5,17.5 parent: 2 type: Transform - - uid: 6833 + - uid: 14097 components: - rot: 1.5707963267948966 rad pos: -47.5,18.5 parent: 2 type: Transform - - uid: 6836 + - uid: 14098 components: - rot: -1.5707963267948966 rad pos: -48.5,15.5 parent: 2 type: Transform - - uid: 6838 + - uid: 14099 components: - rot: -1.5707963267948966 rad pos: -48.5,20.5 parent: 2 type: Transform - - uid: 6841 + - uid: 14100 components: - rot: -1.5707963267948966 rad pos: -48.5,18.5 parent: 2 type: Transform - - uid: 6842 + - uid: 14101 components: - rot: -1.5707963267948966 rad pos: -48.5,17.5 parent: 2 type: Transform - - uid: 6844 + - uid: 14102 components: - rot: -1.5707963267948966 rad pos: -48.5,11.5 parent: 2 type: Transform - - uid: 6846 + - uid: 14103 components: - rot: 1.5707963267948966 rad pos: -47.5,20.5 parent: 2 type: Transform - - uid: 6847 + - uid: 14104 components: - rot: -1.5707963267948966 rad pos: -48.5,21.5 parent: 2 type: Transform - - uid: 6851 + - uid: 14105 components: - rot: 1.5707963267948966 rad pos: -47.5,21.5 parent: 2 type: Transform - - uid: 11869 + - uid: 14106 components: - rot: -1.5707963267948966 rad pos: 15.5,-1.5 parent: 2 type: Transform - - uid: 11904 + - uid: 14107 components: - rot: 1.5707963267948966 rad pos: 10.5,-1.5 parent: 2 type: Transform - - uid: 12085 + - uid: 14108 components: - rot: -1.5707963267948966 rad pos: -23.5,15.5 parent: 2 type: Transform - - uid: 12100 + - uid: 14109 components: - pos: 29.5,-14.5 parent: 2 type: Transform - - uid: 12101 + - uid: 14110 components: - pos: 28.5,-14.5 parent: 2 type: Transform - - uid: 14513 + - uid: 14111 components: - rot: -1.5707963267948966 rad pos: -23.5,14.5 parent: 2 type: Transform - - uid: 14929 + - uid: 14112 components: - rot: 1.5707963267948966 rad pos: -47.5,15.5 parent: 2 type: Transform - - uid: 15227 + - uid: 14113 components: - rot: 1.5707963267948966 rad pos: -47.5,14.5 parent: 2 type: Transform - - uid: 16359 + - uid: 14114 components: - rot: 1.5707963267948966 rad pos: -47.5,12.5 parent: 2 type: Transform - - uid: 16928 + - uid: 14115 components: - rot: 1.5707963267948966 rad pos: -47.5,11.5 @@ -90879,73 +92341,73 @@ entities: type: Transform - proto: Stool entities: - - uid: 476 + - uid: 14116 components: - rot: 3.141592653589793 rad pos: -10.5,-6.5 parent: 2 type: Transform - - uid: 1489 + - uid: 14117 components: - rot: 1.5707963267948966 rad pos: -56.5,-16.5 parent: 2 type: Transform - - uid: 11766 + - uid: 14118 components: - rot: -1.5707963267948966 rad pos: 7.5,-21.5 parent: 2 type: Transform - - uid: 12185 + - uid: 14119 components: - rot: 3.141592653589793 rad pos: -27.5,27.5 parent: 2 type: Transform - - uid: 12186 + - uid: 14120 components: - rot: 3.141592653589793 rad pos: -26.5,27.5 parent: 2 type: Transform - - uid: 12187 + - uid: 14121 components: - rot: 3.141592653589793 rad pos: -26.5,28.5 parent: 2 type: Transform - - uid: 12189 + - uid: 14122 components: - rot: 3.141592653589793 rad pos: -27.5,28.5 parent: 2 type: Transform - - uid: 12190 + - uid: 14123 components: - rot: 3.141592653589793 rad pos: -27.5,29.5 parent: 2 type: Transform - - uid: 12192 + - uid: 14124 components: - rot: 3.141592653589793 rad pos: -26.5,29.5 parent: 2 type: Transform - - uid: 12193 + - uid: 14125 components: - rot: 3.141592653589793 rad pos: -31.5,29.5 parent: 2 type: Transform - - uid: 12194 + - uid: 14126 components: - rot: 3.141592653589793 rad pos: -31.5,28.5 parent: 2 type: Transform - - uid: 12195 + - uid: 14127 components: - rot: 3.141592653589793 rad pos: -31.5,27.5 @@ -90953,121 +92415,121 @@ entities: type: Transform - proto: StoolBar entities: - - uid: 125 + - uid: 14128 components: - rot: 1.5707963267948966 rad pos: -7.5,-4.5 parent: 2 type: Transform - - uid: 126 + - uid: 14129 components: - rot: 1.5707963267948966 rad pos: -7.5,-5.5 parent: 2 type: Transform - - uid: 127 + - uid: 14130 components: - rot: 1.5707963267948966 rad pos: -7.5,-6.5 parent: 2 type: Transform - - uid: 128 + - uid: 14131 components: - rot: 1.5707963267948966 rad pos: -7.5,-7.5 parent: 2 type: Transform - - uid: 129 + - uid: 14132 components: - rot: 3.141592653589793 rad pos: -6.5,-8.5 parent: 2 type: Transform - - uid: 130 + - uid: 14133 components: - rot: 3.141592653589793 rad pos: -5.5,-8.5 parent: 2 type: Transform - - uid: 131 + - uid: 14134 components: - rot: 3.141592653589793 rad pos: -4.5,-8.5 parent: 2 type: Transform - - uid: 132 + - uid: 14135 components: - rot: 3.141592653589793 rad pos: -3.5,-8.5 parent: 2 type: Transform - - uid: 705 + - uid: 14136 components: - pos: -7.5,20.5 parent: 2 type: Transform - - uid: 743 + - uid: 14137 components: - pos: 33.5,-6.5 parent: 2 type: Transform - - uid: 745 + - uid: 14138 components: - pos: 34.5,-6.5 parent: 2 type: Transform - - uid: 1140 + - uid: 14139 components: - pos: -8.5,20.5 parent: 2 type: Transform - - uid: 3225 + - uid: 14140 components: - rot: 3.141592653589793 rad pos: -53.5,-14.5 parent: 2 type: Transform - - uid: 3228 + - uid: 14141 components: - rot: 3.141592653589793 rad pos: -54.5,-14.5 parent: 2 type: Transform - - uid: 3231 + - uid: 14142 components: - rot: -1.5707963267948966 rad pos: -52.5,-13.5 parent: 2 type: Transform - - uid: 3274 + - uid: 14143 components: - pos: -53.5,-11.5 parent: 2 type: Transform - - uid: 3275 + - uid: 14144 components: - rot: 1.5707963267948966 rad pos: -55.5,-13.5 parent: 2 type: Transform - - uid: 4727 + - uid: 14145 components: - pos: 32.5,-6.5 parent: 2 type: Transform - - uid: 5506 + - uid: 14146 components: - rot: 1.5707963267948966 rad pos: 1.5,35.5 parent: 2 type: Transform - - uid: 5507 + - uid: 14147 components: - rot: 1.5707963267948966 rad pos: 1.5,34.5 parent: 2 type: Transform - - uid: 5508 + - uid: 14148 components: - rot: 1.5707963267948966 rad pos: 1.5,33.5 @@ -91075,170 +92537,170 @@ entities: type: Transform - proto: StorageCanister entities: - - uid: 2965 - components: - - pos: 0.5,-35.5 - parent: 2 - type: Transform - - uid: 2966 + - uid: 14149 components: - - pos: 1.5,-35.5 + - pos: 5.5,-36.5 parent: 2 type: Transform - - uid: 2967 + - uid: 14150 components: - - pos: 2.5,-35.5 + - pos: 7.5,-35.5 parent: 2 type: Transform - - uid: 2968 + - uid: 14151 components: - - pos: 6.5,-48.5 + - pos: 4.5,-36.5 parent: 2 type: Transform - - uid: 2969 + - uid: 14152 components: - - pos: 6.5,-49.5 + - pos: 7.5,-51.5 parent: 2 type: Transform - - uid: 2970 + - uid: 14153 components: - - pos: 6.5,-50.5 + - pos: 2.5,-36.5 parent: 2 type: Transform - - uid: 6178 + - uid: 14154 components: - pos: -54.5,31.5 parent: 2 type: Transform - - uid: 6253 + - uid: 14155 components: - pos: -55.5,31.5 parent: 2 type: Transform - - uid: 16901 + - uid: 14156 components: - pos: -56.5,31.5 parent: 2 type: Transform + - uid: 14157 + components: + - pos: 5.5,-35.5 + parent: 2 + type: Transform - proto: SubstationBasic entities: - - uid: 257 + - uid: 14158 components: - pos: -18.5,14.5 parent: 2 type: Transform - - uid: 858 + - uid: 14159 components: - pos: 1.5,-9.5 parent: 2 type: Transform - - uid: 878 + - uid: 14160 components: - pos: -32.5,-17.5 parent: 2 type: Transform - - uid: 1729 + - uid: 14161 components: - pos: -31.5,-25.5 parent: 2 type: Transform - - uid: 3846 + - uid: 14162 components: - pos: -14.5,-80.5 parent: 2 type: Transform - - uid: 5548 + - uid: 14163 components: - pos: -14.5,32.5 parent: 2 type: Transform - - uid: 7301 + - uid: 14164 components: - pos: -47.5,44.5 parent: 2 type: Transform - - uid: 7452 + - uid: 14165 components: - pos: 28.5,24.5 parent: 2 type: Transform - - uid: 7790 + - uid: 14166 components: - pos: -4.5,-21.5 parent: 2 type: Transform - - uid: 11633 + - uid: 14167 components: - pos: 26.5,-22.5 parent: 2 type: Transform - proto: SuitStorageAtmos entities: - - uid: 16338 + - uid: 14168 components: - - pos: -8.5,-40.5 + - pos: -6.5,-42.5 parent: 2 type: Transform - - uid: 16339 + - uid: 14169 components: - - pos: -8.5,-38.5 + - pos: -7.5,-42.5 parent: 2 type: Transform - proto: SuitStorageEngi entities: - - uid: 12940 + - uid: 14170 components: - pos: -2.5,-17.5 parent: 2 type: Transform - - uid: 12941 + - uid: 14171 components: - pos: -3.5,-17.5 parent: 2 type: Transform - proto: SuitStorageEVA entities: - - uid: 1497 + - uid: 14172 components: - pos: -25.5,-25.5 parent: 2 type: Transform - - uid: 2247 + - uid: 14173 components: - pos: -24.5,-21.5 parent: 2 type: Transform - - uid: 2264 + - uid: 14174 components: - pos: -25.5,-21.5 parent: 2 type: Transform - - uid: 2279 + - uid: 14175 components: - pos: -24.5,-25.5 parent: 2 type: Transform - - uid: 2762 + - uid: 14176 components: - pos: -22.5,-25.5 parent: 2 type: Transform - - uid: 2765 + - uid: 14177 components: - pos: -23.5,-25.5 parent: 2 type: Transform - - uid: 6764 + - uid: 14178 components: - pos: -23.5,-21.5 parent: 2 type: Transform - - uid: 6779 + - uid: 14179 components: - pos: -22.5,-21.5 parent: 2 type: Transform - - uid: 15637 + - uid: 14180 components: - pos: -14.5,34.5 parent: 2 @@ -91261,53 +92723,53 @@ entities: - 0 - 0 type: EntityStorage - - uid: 15638 + - uid: 14181 components: - pos: -15.5,34.5 parent: 2 type: Transform - proto: SuitStorageEVAAlternate entities: - - uid: 6181 + - uid: 14182 components: - pos: -44.5,34.5 parent: 2 type: Transform - - uid: 6452 + - uid: 14183 components: - pos: -45.5,34.5 parent: 2 type: Transform - proto: SuitStorageEVAEmergency entities: - - uid: 1642 + - uid: 14184 components: - pos: -30.5,-18.5 parent: 2 type: Transform - - uid: 16618 + - uid: 14185 components: - pos: 10.5,15.5 parent: 2 type: Transform - - uid: 16619 + - uid: 14186 components: - pos: 11.5,16.5 parent: 2 type: Transform - - uid: 17176 + - uid: 14187 components: - pos: 9.5,-40.5 parent: 2 type: Transform - proto: SuitStorageEVAPrisoner entities: - - uid: 2173 + - uid: 14188 components: - pos: -47.5,-10.5 parent: 2 type: Transform - - uid: 2180 + - uid: 14189 components: - pos: -48.5,-10.5 parent: 2 @@ -91330,31 +92792,31 @@ entities: - 0 - 0 type: EntityStorage - - uid: 13801 + - uid: 14190 components: - pos: -49.5,-10.5 parent: 2 type: Transform - proto: SuitStorageHOS entities: - - uid: 17196 + - uid: 14191 components: - pos: -31.5,-15.5 parent: 2 type: Transform - proto: SuitStorageSec entities: - - uid: 976 + - uid: 14192 components: - pos: -25.5,-15.5 parent: 2 type: Transform - - uid: 995 + - uid: 14193 components: - pos: -25.5,-11.5 parent: 2 type: Transform - - uid: 6738 + - uid: 14194 components: - pos: -40.5,-0.5 parent: 2 @@ -91377,30 +92839,30 @@ entities: - 0 - 0 type: EntityStorage - - uid: 6758 + - uid: 14195 components: - pos: -39.5,-2.5 parent: 2 type: Transform - - uid: 6762 + - uid: 14196 components: - pos: -39.5,-0.5 parent: 2 type: Transform - - uid: 6790 + - uid: 14197 components: - pos: -40.5,-2.5 parent: 2 type: Transform - proto: SurveillanceCameraCommand entities: - - uid: 144 + - uid: 14198 components: - rot: -1.5707963267948966 rad pos: -30.5,-76.5 parent: 2 type: Transform - - uid: 3200 + - uid: 14199 components: - rot: 3.141592653589793 rad pos: 0.5,20.5 @@ -91411,7 +92873,7 @@ entities: nameSet: True id: vault type: SurveillanceCamera - - uid: 5086 + - uid: 14200 components: - rot: -1.5707963267948966 rad pos: -1.5,33.5 @@ -91422,7 +92884,7 @@ entities: nameSet: True id: executive bar type: SurveillanceCamera - - uid: 9530 + - uid: 14201 components: - pos: -9.5,41.5 parent: 2 @@ -91432,7 +92894,7 @@ entities: nameSet: True id: bridge type: SurveillanceCamera - - uid: 13160 + - uid: 14202 components: - rot: 3.141592653589793 rad pos: -9.5,39.5 @@ -91445,7 +92907,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraEngineering entities: - - uid: 15990 + - uid: 14203 components: - rot: -1.5707963267948966 rad pos: -14.5,-22.5 @@ -91456,7 +92918,7 @@ entities: nameSet: True id: drones type: SurveillanceCamera - - uid: 15995 + - uid: 14204 components: - pos: -33.5,-46.5 parent: 2 @@ -91466,7 +92928,7 @@ entities: nameSet: True id: singularity - south type: SurveillanceCamera - - uid: 16000 + - uid: 14205 components: - rot: 1.5707963267948966 rad pos: -6.5,-17.5 @@ -91477,7 +92939,7 @@ entities: nameSet: True id: engi hall - north type: SurveillanceCamera - - uid: 16011 + - uid: 14206 components: - rot: 1.5707963267948966 rad pos: -5.5,-34.5 @@ -91488,7 +92950,7 @@ entities: nameSet: True id: engi hall - south type: SurveillanceCamera - - uid: 16017 + - uid: 14207 components: - rot: 3.141592653589793 rad pos: 5.5,-23.5 @@ -91499,7 +92961,7 @@ entities: nameSet: True id: ame/grav type: SurveillanceCamera - - uid: 16020 + - uid: 14208 components: - rot: 3.141592653589793 rad pos: -12.5,-26.5 @@ -91510,7 +92972,7 @@ entities: nameSet: True id: board storage type: SurveillanceCamera - - uid: 16024 + - uid: 14209 components: - rot: 3.141592653589793 rad pos: -22.5,-36.5 @@ -91521,7 +92983,7 @@ entities: nameSet: True id: pa controller type: SurveillanceCamera - - uid: 16025 + - uid: 14210 components: - rot: 3.141592653589793 rad pos: -33.5,-30.5 @@ -91532,7 +92994,7 @@ entities: nameSet: True id: singularity - north type: SurveillanceCamera - - uid: 16029 + - uid: 14211 components: - rot: -1.5707963267948966 rad pos: -25.5,-22.5 @@ -91543,29 +93005,7 @@ entities: nameSet: True id: eva storage type: SurveillanceCamera - - uid: 16037 - components: - - rot: 1.5707963267948966 rad - pos: 6.5,-48.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: atmos south - type: SurveillanceCamera - - uid: 16038 - components: - - rot: 1.5707963267948966 rad - pos: -5.5,-37.5 - parent: 2 - type: Transform - - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: atmos northwest - type: SurveillanceCamera - - uid: 16564 + - uid: 14212 components: - rot: 1.5707963267948966 rad pos: 7.5,-36.5 @@ -91578,7 +93018,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraGeneral entities: - - uid: 10631 + - uid: 14213 components: - pos: -11.5,3.5 parent: 2 @@ -91588,7 +93028,7 @@ entities: nameSet: True id: south kitchen type: SurveillanceCamera - - uid: 10772 + - uid: 14214 components: - rot: -1.5707963267948966 rad pos: -50.5,18.5 @@ -91599,7 +93039,7 @@ entities: nameSet: True id: evac type: SurveillanceCamera - - uid: 10993 + - uid: 14215 components: - rot: 3.141592653589793 rad pos: -32.5,16.5 @@ -91610,7 +93050,7 @@ entities: nameSet: True id: dorms type: SurveillanceCamera - - uid: 16082 + - uid: 14216 components: - rot: 1.5707963267948966 rad pos: -40.5,13.5 @@ -91621,7 +93061,7 @@ entities: nameSet: True id: east evac type: SurveillanceCamera - - uid: 16097 + - uid: 14217 components: - rot: 3.141592653589793 rad pos: -43.5,7.5 @@ -91632,7 +93072,7 @@ entities: nameSet: True id: south evac type: SurveillanceCamera - - uid: 16098 + - uid: 14218 components: - rot: 3.141592653589793 rad pos: -31.5,7.5 @@ -91643,7 +93083,7 @@ entities: nameSet: True id: south dorms type: SurveillanceCamera - - uid: 16099 + - uid: 14219 components: - rot: -1.5707963267948966 rad pos: -25.5,16.5 @@ -91654,7 +93094,7 @@ entities: nameSet: True id: east dorms type: SurveillanceCamera - - uid: 16102 + - uid: 14220 components: - pos: -21.5,38.5 parent: 2 @@ -91664,7 +93104,7 @@ entities: nameSet: True id: courtroom type: SurveillanceCamera - - uid: 16103 + - uid: 14221 components: - rot: 3.141592653589793 rad pos: -21.5,27.5 @@ -91675,7 +93115,7 @@ entities: nameSet: True id: north halls type: SurveillanceCamera - - uid: 16104 + - uid: 14222 components: - rot: 1.5707963267948966 rad pos: -2.5,24.5 @@ -91686,7 +93126,7 @@ entities: nameSet: True id: north kitchen type: SurveillanceCamera - - uid: 16105 + - uid: 14223 components: - rot: 3.141592653589793 rad pos: -16.5,1.5 @@ -91699,7 +93139,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraMedical entities: - - uid: 3120 + - uid: 14224 components: - rot: 3.141592653589793 rad pos: 21.5,26.5 @@ -91710,7 +93150,7 @@ entities: nameSet: True id: cloning type: SurveillanceCamera - - uid: 11688 + - uid: 14225 components: - rot: 1.5707963267948966 rad pos: 19.5,19.5 @@ -91721,7 +93161,7 @@ entities: nameSet: True id: cryo lab type: SurveillanceCamera - - uid: 12704 + - uid: 14226 components: - rot: 3.141592653589793 rad pos: 17.5,13.5 @@ -91732,7 +93172,7 @@ entities: nameSet: True id: chemistry type: SurveillanceCamera - - uid: 13112 + - uid: 14227 components: - rot: 3.141592653589793 rad pos: 16.5,26.5 @@ -91743,7 +93183,7 @@ entities: nameSet: True id: surgery type: SurveillanceCamera - - uid: 13162 + - uid: 14228 components: - rot: -1.5707963267948966 rad pos: 25.5,12.5 @@ -91754,7 +93194,7 @@ entities: nameSet: True id: virology type: SurveillanceCamera - - uid: 16127 + - uid: 14229 components: - rot: 3.141592653589793 rad pos: 20.5,8.5 @@ -91767,7 +93207,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraRouterCommand entities: - - uid: 1818 + - uid: 14230 components: - name: camera router (command) type: MetaData @@ -91776,7 +93216,7 @@ entities: type: Transform - proto: SurveillanceCameraRouterEngineering entities: - - uid: 6599 + - uid: 14231 components: - name: camera router (engineering) type: MetaData @@ -91785,7 +93225,7 @@ entities: type: Transform - proto: SurveillanceCameraRouterGeneral entities: - - uid: 15982 + - uid: 14232 components: - name: camera router (general) type: MetaData @@ -91794,7 +93234,7 @@ entities: type: Transform - proto: SurveillanceCameraRouterMedical entities: - - uid: 15298 + - uid: 14233 components: - name: camera router (medical) type: MetaData @@ -91803,7 +93243,7 @@ entities: type: Transform - proto: SurveillanceCameraRouterScience entities: - - uid: 15271 + - uid: 14234 components: - name: camera router (epistemics) type: MetaData @@ -91812,7 +93252,7 @@ entities: type: Transform - proto: SurveillanceCameraRouterSecurity entities: - - uid: 2278 + - uid: 14235 components: - name: camera router (security) type: MetaData @@ -91821,7 +93261,7 @@ entities: type: Transform - proto: SurveillanceCameraRouterService entities: - - uid: 416 + - uid: 14236 components: - name: camera router (service) type: MetaData @@ -91830,7 +93270,7 @@ entities: type: Transform - proto: SurveillanceCameraRouterSupply entities: - - uid: 12284 + - uid: 14237 components: - name: camera router (supply) type: MetaData @@ -91839,7 +93279,7 @@ entities: type: Transform - proto: SurveillanceCameraScience entities: - - uid: 12129 + - uid: 14238 components: - rot: 3.141592653589793 rad pos: -47.5,30.5 @@ -91850,7 +93290,7 @@ entities: nameSet: True id: library type: SurveillanceCamera - - uid: 15243 + - uid: 14239 components: - rot: 3.141592653589793 rad pos: -53.5,41.5 @@ -91861,7 +93301,7 @@ entities: nameSet: True id: artifact science type: SurveillanceCamera - - uid: 15279 + - uid: 14240 components: - rot: 3.141592653589793 rad pos: -48.5,37.5 @@ -91872,7 +93312,7 @@ entities: nameSet: True id: main lab type: SurveillanceCamera - - uid: 16015 + - uid: 14241 components: - pos: -56.5,31.5 parent: 2 @@ -91882,7 +93322,7 @@ entities: nameSet: True id: toxins/artifact lab type: SurveillanceCamera - - uid: 16027 + - uid: 14242 components: - rot: 1.5707963267948966 rad pos: -38.5,34.5 @@ -91893,7 +93333,7 @@ entities: nameSet: True id: lockers type: SurveillanceCamera - - uid: 16067 + - uid: 14243 components: - rot: 3.141592653589793 rad pos: -39.5,28.5 @@ -91904,7 +93344,7 @@ entities: nameSet: True id: epi reception type: SurveillanceCamera - - uid: 16068 + - uid: 14244 components: - rot: 1.5707963267948966 rad pos: -26.5,27.5 @@ -91915,7 +93355,7 @@ entities: nameSet: True id: chapel type: SurveillanceCamera - - uid: 16390 + - uid: 14245 components: - rot: -1.5707963267948966 rad pos: -44.5,41.5 @@ -91928,7 +93368,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraSecurity entities: - - uid: 3024 + - uid: 14246 components: - pos: -61.5,-9.5 parent: 2 @@ -91938,7 +93378,7 @@ entities: nameSet: True id: perma botany type: SurveillanceCamera - - uid: 3272 + - uid: 14247 components: - rot: -1.5707963267948966 rad pos: -53.5,-3.5 @@ -91949,7 +93389,7 @@ entities: nameSet: True id: perma visiting type: SurveillanceCamera - - uid: 3849 + - uid: 14248 components: - rot: 3.141592653589793 rad pos: -53.5,-11.5 @@ -91960,7 +93400,7 @@ entities: nameSet: True id: perma dorms type: SurveillanceCamera - - uid: 9531 + - uid: 14249 components: - rot: 3.141592653589793 rad pos: -41.5,1.5 @@ -91971,7 +93411,7 @@ entities: nameSet: True id: Heavy Armory type: SurveillanceCamera - - uid: 16053 + - uid: 14250 components: - rot: 1.5707963267948966 rad pos: -21.5,-6.5 @@ -91982,7 +93422,7 @@ entities: nameSet: True id: reception type: SurveillanceCamera - - uid: 16087 + - uid: 14251 components: - rot: 1.5707963267948966 rad pos: -20.5,-13.5 @@ -91993,7 +93433,7 @@ entities: nameSet: True id: lockers type: SurveillanceCamera - - uid: 16101 + - uid: 14252 components: - rot: -1.5707963267948966 rad pos: -60.5,1.5 @@ -92004,7 +93444,7 @@ entities: nameSet: True id: perma kitchen type: SurveillanceCamera - - uid: 16393 + - uid: 14253 components: - rot: -1.5707963267948966 rad pos: -40.5,-13.5 @@ -92015,7 +93455,7 @@ entities: nameSet: True id: holding cells type: SurveillanceCamera - - uid: 16394 + - uid: 14254 components: - rot: 3.141592653589793 rad pos: -42.5,-4.5 @@ -92026,7 +93466,7 @@ entities: nameSet: True id: light armory type: SurveillanceCamera - - uid: 16396 + - uid: 14255 components: - pos: -21.5,-9.5 parent: 2 @@ -92036,7 +93476,7 @@ entities: nameSet: True id: reception type: SurveillanceCamera - - uid: 16397 + - uid: 14256 components: - rot: 3.141592653589793 rad pos: -27.5,-4.5 @@ -92047,7 +93487,7 @@ entities: nameSet: True id: interrogation type: SurveillanceCamera - - uid: 16398 + - uid: 14257 components: - rot: 1.5707963267948966 rad pos: -46.5,-3.5 @@ -92058,7 +93498,7 @@ entities: nameSet: True id: visiting room type: SurveillanceCamera - - uid: 16399 + - uid: 14258 components: - rot: 1.5707963267948966 rad pos: -27.5,-10.5 @@ -92069,7 +93509,7 @@ entities: nameSet: True id: less lethal armory type: SurveillanceCamera - - uid: 16401 + - uid: 14259 components: - rot: 1.5707963267948966 rad pos: -45.5,-13.5 @@ -92080,7 +93520,7 @@ entities: nameSet: True id: shooting range type: SurveillanceCamera - - uid: 16617 + - uid: 14260 components: - rot: 1.5707963267948966 rad pos: 28.5,6.5 @@ -92093,7 +93533,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraService entities: - - uid: 10770 + - uid: 14261 components: - rot: 1.5707963267948966 rad pos: -6.5,19.5 @@ -92104,7 +93544,7 @@ entities: nameSet: True id: kitchen north type: SurveillanceCamera - - uid: 10952 + - uid: 14262 components: - rot: 1.5707963267948966 rad pos: -12.5,12.5 @@ -92115,7 +93555,7 @@ entities: nameSet: True id: freezer type: SurveillanceCamera - - uid: 11808 + - uid: 14263 components: - rot: 1.5707963267948966 rad pos: 34.5,-10.5 @@ -92126,7 +93566,7 @@ entities: nameSet: True id: arrivals kitchenette type: SurveillanceCamera - - uid: 15253 + - uid: 14264 components: - rot: 1.5707963267948966 rad pos: -17.5,8.5 @@ -92137,7 +93577,7 @@ entities: nameSet: True id: hydroponics type: SurveillanceCamera - - uid: 15266 + - uid: 14265 components: - rot: 1.5707963267948966 rad pos: -7.5,7.5 @@ -92148,7 +93588,7 @@ entities: nameSet: True id: kitchen south type: SurveillanceCamera - - uid: 16069 + - uid: 14266 components: - rot: -1.5707963267948966 rad pos: 30.5,7.5 @@ -92159,7 +93599,7 @@ entities: nameSet: True id: boxing ring type: SurveillanceCamera - - uid: 16071 + - uid: 14267 components: - pos: 20.5,-6.5 parent: 2 @@ -92171,7 +93611,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraSupply entities: - - uid: 2035 + - uid: 14268 components: - rot: 1.5707963267948966 rad pos: 12.5,-30.5 @@ -92182,7 +93622,7 @@ entities: nameSet: True id: salvage type: SurveillanceCamera - - uid: 6145 + - uid: 14269 components: - rot: -1.5707963267948966 rad pos: 14.5,-28.5 @@ -92193,7 +93633,7 @@ entities: nameSet: True id: loading area type: SurveillanceCamera - - uid: 16075 + - uid: 14270 components: - rot: 1.5707963267948966 rad pos: 8.5,-5.5 @@ -92204,7 +93644,7 @@ entities: nameSet: True id: mail room type: SurveillanceCamera - - uid: 16076 + - uid: 14271 components: - rot: -1.5707963267948966 rad pos: 10.5,-5.5 @@ -92215,7 +93655,7 @@ entities: nameSet: True id: cargo reception type: SurveillanceCamera - - uid: 16597 + - uid: 14272 components: - rot: -1.5707963267948966 rad pos: 9.5,-22.5 @@ -92226,7 +93666,7 @@ entities: nameSet: True id: long hall type: SurveillanceCamera - - uid: 16598 + - uid: 14273 components: - rot: -1.5707963267948966 rad pos: 9.5,-15.5 @@ -92239,13925 +93679,14072 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraWirelessRouterEntertainment entities: - - uid: 1244 + - uid: 14274 components: - name: wireless camera router (Entertainment) type: MetaData - pos: -14.5,20.5 parent: 2 type: Transform - - uid: 15985 + - uid: 14275 components: - pos: -25.5,-80.5 parent: 2 type: Transform - proto: SurveillanceWirelessCameraMovableEntertainment entities: - - uid: 1245 + - uid: 14276 components: - rot: -2.080612181625094 rad pos: -12.459,22.595003 parent: 2 type: Transform - - uid: 5032 + - uid: 14277 components: - pos: 33.5,13.5 parent: 2 type: Transform - proto: Table entities: - - uid: 93 + - uid: 14278 + components: + - pos: -8.5,-39.5 + parent: 2 + type: Transform + - uid: 14279 components: - pos: -19.5,7.5 parent: 2 type: Transform - - uid: 141 + - uid: 14280 components: - pos: -28.5,-5.5 parent: 2 type: Transform - - uid: 280 + - uid: 14281 components: - pos: -8.5,4.5 parent: 2 type: Transform - - uid: 319 + - uid: 14282 components: - rot: -1.5707963267948966 rad pos: -11.5,3.5 parent: 2 type: Transform - - uid: 320 + - uid: 14283 components: - rot: -1.5707963267948966 rad pos: -11.5,4.5 parent: 2 type: Transform - - uid: 435 + - uid: 14284 components: - pos: 10.5,-10.5 parent: 2 type: Transform - - uid: 436 + - uid: 14285 components: - pos: 11.5,-10.5 parent: 2 type: Transform - - uid: 460 + - uid: 14286 components: - rot: 1.5707963267948966 rad pos: 34.5,-4.5 parent: 2 type: Transform - - uid: 487 + - uid: 14287 components: - rot: 1.5707963267948966 rad pos: 34.5,-2.5 parent: 2 type: Transform - - uid: 846 + - uid: 14288 components: - pos: -29.5,-5.5 parent: 2 type: Transform - - uid: 875 + - uid: 14289 components: - pos: -36.5,-14.5 parent: 2 type: Transform - - uid: 877 + - uid: 14290 components: - pos: -36.5,-13.5 parent: 2 type: Transform - - uid: 1189 + - uid: 14291 components: - pos: -8.5,17.5 parent: 2 type: Transform - - uid: 1198 + - uid: 14292 components: - pos: -19.5,6.5 parent: 2 type: Transform - - uid: 1255 + - uid: 14293 components: - pos: -38.5,18.5 parent: 2 type: Transform - - uid: 1460 + - uid: 14294 components: - pos: -36.5,-12.5 parent: 2 type: Transform - - uid: 1645 + - uid: 14295 components: - pos: 2.5,-9.5 parent: 2 type: Transform - - uid: 1855 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-41.5 - parent: 2 - type: Transform - - uid: 2717 + - uid: 14296 components: - pos: -18.5,-40.5 parent: 2 type: Transform - - uid: 2729 + - uid: 14297 components: - pos: 16.5,11.5 parent: 2 type: Transform - - uid: 3124 + - uid: 14298 components: - pos: -30.5,20.5 parent: 2 type: Transform - - uid: 3186 + - uid: 14299 components: - pos: -60.5,-1.5 parent: 2 type: Transform - - uid: 3187 + - uid: 14300 components: - pos: -60.5,-0.5 parent: 2 type: Transform - - uid: 3190 + - uid: 14301 components: - rot: -1.5707963267948966 rad pos: -58.5,-3.5 parent: 2 type: Transform - - uid: 3257 + - uid: 14302 components: - pos: 37.5,3.5 parent: 2 type: Transform - - uid: 3259 + - uid: 14303 components: - pos: -53.5,-16.5 parent: 2 type: Transform - - uid: 4256 + - uid: 14304 components: - pos: 16.5,10.5 parent: 2 type: Transform - - uid: 4287 + - uid: 14305 components: - pos: -31.5,11.5 parent: 2 type: Transform - - uid: 4440 + - uid: 14306 components: - rot: 3.141592653589793 rad pos: 29.5,18.5 parent: 2 type: Transform - - uid: 4734 + - uid: 14307 components: - rot: 1.5707963267948966 rad pos: 29.5,-2.5 parent: 2 type: Transform - - uid: 4875 + - uid: 14308 components: - pos: 30.5,16.5 parent: 2 type: Transform - - uid: 4957 + - uid: 14309 components: - pos: 15.5,-19.5 parent: 2 type: Transform - - uid: 4973 + - uid: 14310 components: - pos: 14.5,-19.5 parent: 2 type: Transform - - uid: 5080 + - uid: 14311 components: - pos: 29.5,-3.5 parent: 2 type: Transform - - uid: 5208 + - uid: 14312 components: - pos: -39.5,1.5 parent: 2 type: Transform - - uid: 5605 + - uid: 14313 components: - rot: -1.5707963267948966 rad pos: -8.5,42.5 parent: 2 type: Transform - - uid: 5694 + - uid: 14314 components: - pos: -39.5,0.5 parent: 2 type: Transform - - uid: 6256 + - uid: 14315 components: - pos: -50.5,48.5 parent: 2 type: Transform - - uid: 6339 + - uid: 14316 components: - pos: -50.5,49.5 parent: 2 type: Transform - - uid: 6363 + - uid: 14317 components: - pos: -51.5,48.5 parent: 2 type: Transform - - uid: 7078 + - uid: 14318 components: - rot: -1.5707963267948966 rad pos: -35.5,37.5 parent: 2 type: Transform - - uid: 7918 + - uid: 14319 components: - pos: -50.5,47.5 parent: 2 type: Transform - - uid: 10677 + - uid: 14320 components: - pos: -9.5,16.5 parent: 2 type: Transform - - uid: 10690 + - uid: 14321 components: - pos: 23.5,-18.5 parent: 2 type: Transform - - uid: 11730 + - uid: 14322 components: - rot: 3.141592653589793 rad pos: -15.5,-8.5 parent: 2 type: Transform - - uid: 11762 + - uid: 14323 components: - rot: -1.5707963267948966 rad pos: 15.5,28.5 parent: 2 type: Transform - - uid: 11776 + - uid: 14324 components: - pos: -49.5,48.5 parent: 2 type: Transform - - uid: 11777 + - uid: 14325 components: - pos: -49.5,49.5 parent: 2 type: Transform - - uid: 11795 + - uid: 14326 components: - rot: -1.5707963267948966 rad pos: 6.5,-21.5 parent: 2 type: Transform - - uid: 11799 + - uid: 14327 components: - rot: 1.5707963267948966 rad pos: -38.5,47.5 parent: 2 type: Transform - - uid: 12155 + - uid: 14328 components: - rot: -1.5707963267948966 rad pos: -9.5,1.5 parent: 2 type: Transform - - uid: 12275 + - uid: 14329 components: - pos: -1.5,-9.5 parent: 2 type: Transform - - uid: 12310 + - uid: 14330 components: - pos: -35.5,-5.5 parent: 2 type: Transform - - uid: 12990 + - uid: 14331 components: - pos: -51.5,49.5 parent: 2 type: Transform - - uid: 12991 + - uid: 14332 components: - pos: -49.5,47.5 parent: 2 type: Transform - - uid: 12992 + - uid: 14333 components: - pos: -51.5,47.5 parent: 2 type: Transform - - uid: 13086 + - uid: 14334 components: - rot: -1.5707963267948966 rad pos: -16.5,-22.5 parent: 2 type: Transform - - uid: 13782 + - uid: 14335 components: - rot: 1.5707963267948966 rad pos: -38.5,17.5 parent: 2 type: Transform - - uid: 13983 + - uid: 14336 components: - pos: -9.5,17.5 parent: 2 type: Transform - - uid: 15453 + - uid: 14337 components: - pos: 34.5,12.5 parent: 2 type: Transform - - uid: 15613 + - uid: 14338 components: - pos: 35.5,12.5 parent: 2 type: Transform - - uid: 15676 + - uid: 14339 components: - pos: -25.5,-4.5 parent: 2 type: Transform - - uid: 15919 + - uid: 14340 components: - pos: 23.5,-19.5 parent: 2 type: Transform - - uid: 16073 + - uid: 14341 components: - pos: 24.5,-18.5 parent: 2 type: Transform - - uid: 16859 + - uid: 14342 components: - pos: -26.5,22.5 parent: 2 type: Transform - - uid: 16954 + - uid: 14343 + components: + - pos: 28.5,18.5 + parent: 2 + type: Transform + - uid: 14344 + components: + - pos: 6.5,22.5 + parent: 2 + type: Transform +- proto: TableCarpet + entities: + - uid: 14345 + components: + - pos: -10.5,-2.5 + parent: 2 + type: Transform + - uid: 14346 + components: + - pos: -6.5,-10.5 + parent: 2 + type: Transform + - uid: 14347 + components: + - pos: -33.5,18.5 + parent: 2 + type: Transform + - uid: 14348 + components: + - pos: -33.5,13.5 + parent: 2 + type: Transform + - uid: 14349 + components: + - pos: -54.5,-12.5 + parent: 2 + type: Transform + - uid: 14350 + components: + - pos: -54.5,-13.5 + parent: 2 + type: Transform + - uid: 14351 + components: + - pos: -53.5,-13.5 + parent: 2 + type: Transform + - uid: 14352 + components: + - pos: -53.5,-12.5 + parent: 2 + type: Transform + - uid: 14353 + components: + - pos: 1.5,30.5 + parent: 2 + type: Transform + - uid: 14354 + components: + - pos: -49.5,27.5 + parent: 2 + type: Transform + - uid: 14355 + components: + - pos: -49.5,26.5 + parent: 2 + type: Transform + - uid: 14356 + components: + - pos: -48.5,26.5 + parent: 2 + type: Transform + - uid: 14357 + components: + - pos: -48.5,27.5 + parent: 2 + type: Transform + - uid: 14358 + components: + - rot: 1.5707963267948966 rad + pos: -44.5,25.5 + parent: 2 + type: Transform + - uid: 14359 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,39.5 + parent: 2 + type: Transform + - uid: 14360 + components: + - pos: 10.5,-31.5 + parent: 2 + type: Transform + - uid: 14361 + components: + - pos: -52.5,-0.5 + parent: 2 + type: Transform + - uid: 14362 + components: + - pos: -32.5,-13.5 + parent: 2 + type: Transform + - uid: 14363 + components: + - pos: -31.5,-13.5 + parent: 2 + type: Transform + - uid: 14364 + components: + - rot: 3.141592653589793 rad + pos: -51.5,-0.5 + parent: 2 + type: Transform +- proto: TableCounterMetal + entities: + - uid: 14365 + components: + - rot: -1.5707963267948966 rad + pos: 32.5,-16.5 + parent: 2 + type: Transform + - uid: 14366 + components: + - pos: 28.5,14.5 + parent: 2 + type: Transform + - uid: 14367 + components: + - pos: -3.5,-3.5 + parent: 2 + type: Transform + - uid: 14368 + components: + - pos: -3.5,-4.5 + parent: 2 + type: Transform + - uid: 14369 + components: + - pos: -3.5,-2.5 + parent: 2 + type: Transform + - uid: 14370 + components: + - pos: -31.5,-10.5 + parent: 2 + type: Transform + - uid: 14371 + components: + - pos: 4.5,-3.5 + parent: 2 + type: Transform + - uid: 14372 + components: + - pos: -13.5,13.5 + parent: 2 + type: Transform + - uid: 14373 + components: + - pos: -10.5,12.5 + parent: 2 + type: Transform + - uid: 14374 + components: + - pos: -9.5,12.5 + parent: 2 + type: Transform + - uid: 14375 + components: + - pos: -10.5,14.5 + parent: 2 + type: Transform + - uid: 14376 + components: + - rot: -1.5707963267948966 rad + pos: -26.5,-13.5 + parent: 2 + type: Transform + - uid: 14377 + components: + - pos: -9.5,11.5 + parent: 2 + type: Transform + - uid: 14378 + components: + - pos: -13.5,14.5 + parent: 2 + type: Transform + - uid: 14379 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-15.5 + parent: 2 + type: Transform + - uid: 14380 + components: + - rot: -1.5707963267948966 rad + pos: -20.5,-16.5 + parent: 2 + type: Transform + - uid: 14381 + components: + - pos: 30.5,-7.5 + parent: 2 + type: Transform + - uid: 14382 + components: + - pos: -32.5,-10.5 + parent: 2 + type: Transform + - uid: 14383 + components: + - pos: -23.5,-12.5 + parent: 2 + type: Transform + - uid: 14384 + components: + - pos: -20.5,-14.5 + parent: 2 + type: Transform + - uid: 14385 + components: + - pos: -1.5,-15.5 + parent: 2 + type: Transform + - uid: 14386 + components: + - pos: -2.5,-15.5 + parent: 2 + type: Transform + - uid: 14387 + components: + - pos: -13.5,-37.5 + parent: 2 + type: Transform + - uid: 14388 + components: + - pos: -13.5,-38.5 + parent: 2 + type: Transform + - uid: 14389 + components: + - pos: -21.5,-9.5 + parent: 2 + type: Transform + - uid: 14390 + components: + - pos: -47.5,-13.5 + parent: 2 + type: Transform + - uid: 14391 + components: + - pos: -57.5,2.5 + parent: 2 + type: Transform + - uid: 14392 + components: + - rot: -1.5707963267948966 rad + pos: -58.5,2.5 + parent: 2 + type: Transform + - uid: 14393 + components: + - rot: -1.5707963267948966 rad + pos: -59.5,2.5 + parent: 2 + type: Transform + - uid: 14394 + components: + - pos: -43.5,39.5 + parent: 2 + type: Transform + - uid: 14395 + components: + - pos: 19.5,20.5 + parent: 2 + type: Transform + - uid: 14396 + components: + - rot: -1.5707963267948966 rad + pos: -14.5,-72.5 + parent: 2 + type: Transform + - uid: 14397 + components: + - rot: -1.5707963267948966 rad + pos: -17.5,-80.5 + parent: 2 + type: Transform + - uid: 14398 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-79.5 + parent: 2 + type: Transform + - uid: 14399 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-79.5 + parent: 2 + type: Transform + - uid: 14400 + components: + - rot: -1.5707963267948966 rad + pos: -12.5,-73.5 + parent: 2 + type: Transform + - uid: 14401 + components: + - rot: -1.5707963267948966 rad + pos: -11.5,-73.5 + parent: 2 + type: Transform + - uid: 14402 + components: + - pos: 28.5,-9.5 + parent: 2 + type: Transform + - uid: 14403 + components: + - pos: 28.5,-8.5 + parent: 2 + type: Transform + - uid: 14404 + components: + - rot: -1.5707963267948966 rad + pos: 29.5,-12.5 + parent: 2 + type: Transform + - uid: 14405 + components: + - rot: -1.5707963267948966 rad + pos: 28.5,-12.5 + parent: 2 + type: Transform + - uid: 14406 + components: + - pos: 17.5,13.5 + parent: 2 + type: Transform + - uid: 14407 + components: + - pos: 16.5,13.5 + parent: 2 + type: Transform + - uid: 14408 + components: + - rot: 3.141592653589793 rad + pos: 28.5,12.5 + parent: 2 + type: Transform + - uid: 14409 + components: + - pos: 28.5,16.5 + parent: 2 + type: Transform + - uid: 14410 + components: + - rot: 1.5707963267948966 rad + pos: 15.5,21.5 + parent: 2 + type: Transform + - uid: 14411 components: - - pos: 28.5,18.5 + - rot: 1.5707963267948966 rad + pos: 19.5,21.5 parent: 2 type: Transform - - uid: 17012 + - uid: 14412 components: - - pos: 6.5,22.5 + - pos: -20.5,-9.5 parent: 2 type: Transform -- proto: TableCarpet - entities: - - uid: 10 + - uid: 14413 components: - - pos: -10.5,-2.5 + - rot: 1.5707963267948966 rad + pos: 12.5,7.5 parent: 2 type: Transform - - uid: 26 + - uid: 14414 components: - - pos: -6.5,-10.5 + - rot: 1.5707963267948966 rad + pos: 11.5,6.5 parent: 2 type: Transform - - uid: 196 + - uid: 14415 components: - - pos: -33.5,18.5 + - rot: 1.5707963267948966 rad + pos: 12.5,6.5 parent: 2 type: Transform - - uid: 1678 + - uid: 14416 components: - - pos: -33.5,13.5 + - rot: 1.5707963267948966 rad + pos: 7.5,6.5 parent: 2 type: Transform - - uid: 2127 + - uid: 14417 components: - - pos: -54.5,-12.5 + - rot: 1.5707963267948966 rad + pos: 6.5,6.5 parent: 2 type: Transform - - uid: 3111 + - uid: 14418 components: - - pos: -54.5,-13.5 + - rot: 3.141592653589793 rad + pos: 45.5,9.5 parent: 2 type: Transform - - uid: 3113 + - uid: 14419 components: - - pos: -53.5,-13.5 + - pos: 29.5,-7.5 parent: 2 type: Transform - - uid: 3115 + - uid: 14420 components: - - pos: -53.5,-12.5 + - pos: -3.5,-28.5 parent: 2 type: Transform - - uid: 5511 + - uid: 14421 components: - - pos: 1.5,30.5 + - pos: -36.5,27.5 parent: 2 type: Transform - - uid: 5854 + - uid: 14422 components: - - pos: -49.5,27.5 + - pos: -38.5,31.5 parent: 2 type: Transform - - uid: 5862 + - uid: 14423 components: - - pos: -49.5,26.5 + - pos: -48.5,34.5 parent: 2 type: Transform - - uid: 5876 + - uid: 14424 components: - - pos: -48.5,26.5 + - pos: -48.5,35.5 parent: 2 type: Transform - - uid: 5881 + - uid: 14425 components: - - pos: -48.5,27.5 + - pos: -35.5,27.5 parent: 2 type: Transform - - uid: 5899 + - uid: 14426 components: - - rot: 1.5707963267948966 rad - pos: -44.5,25.5 + - pos: -40.5,51.5 parent: 2 type: Transform - - uid: 6715 + - uid: 14427 components: - - rot: 1.5707963267948966 rad - pos: 2.5,39.5 + - pos: -35.5,34.5 parent: 2 type: Transform - - uid: 10692 + - uid: 14428 components: - - pos: 10.5,-31.5 + - pos: 12.5,-32.5 parent: 2 type: Transform - - uid: 10960 + - uid: 14429 components: - - pos: -52.5,-0.5 + - pos: 12.5,-31.5 parent: 2 type: Transform - - uid: 13991 + - uid: 14430 components: - - pos: -32.5,-13.5 + - rot: 1.5707963267948966 rad + pos: -56.5,-17.5 parent: 2 type: Transform - - uid: 13994 + - uid: 14431 components: - - pos: -31.5,-13.5 + - pos: -42.5,39.5 parent: 2 type: Transform - - uid: 15810 + - uid: 14432 components: - - rot: 3.141592653589793 rad - pos: -51.5,-0.5 + - rot: -1.5707963267948966 rad + pos: -60.5,2.5 parent: 2 type: Transform -- proto: TableCounterMetal - entities: - - uid: 32 + - uid: 14433 components: - - rot: -1.5707963267948966 rad - pos: 32.5,-16.5 + - pos: 3.5,-7.5 parent: 2 type: Transform - - uid: 62 + - uid: 14434 components: - - pos: 28.5,14.5 + - pos: 30.5,-12.5 parent: 2 type: Transform - - uid: 111 + - uid: 14435 components: - - pos: -3.5,-3.5 + - rot: 1.5707963267948966 rad + pos: -44.5,43.5 parent: 2 type: Transform - - uid: 117 + - uid: 14436 components: - - pos: -3.5,-4.5 + - rot: 1.5707963267948966 rad + pos: -44.5,44.5 parent: 2 type: Transform - - uid: 119 + - uid: 14437 components: - - pos: -3.5,-2.5 + - pos: -47.5,-12.5 parent: 2 type: Transform - - uid: 321 + - uid: 14438 components: - - pos: -31.5,-10.5 + - pos: -36.5,-24.5 parent: 2 type: Transform - - uid: 331 + - uid: 14439 components: - - pos: 4.5,-3.5 + - pos: 1.5,-7.5 parent: 2 type: Transform - - uid: 623 + - uid: 14440 components: - - pos: -13.5,13.5 + - pos: -34.5,34.5 parent: 2 type: Transform - - uid: 629 + - uid: 14441 components: - - pos: -10.5,12.5 + - pos: 15.5,20.5 parent: 2 type: Transform - - uid: 630 + - uid: 14442 components: - - pos: -9.5,12.5 + - pos: 8.5,9.5 parent: 2 type: Transform - - uid: 657 + - uid: 14443 components: - - pos: -10.5,14.5 + - pos: 8.5,6.5 parent: 2 type: Transform - - uid: 678 + - uid: 14444 components: - - rot: -1.5707963267948966 rad - pos: -26.5,-13.5 + - pos: 4.5,-2.5 parent: 2 type: Transform - - uid: 681 + - uid: 14445 components: - - pos: -9.5,11.5 + - pos: 2.5,-7.5 parent: 2 type: Transform - - uid: 684 + - uid: 14446 components: - - pos: -13.5,14.5 + - pos: -41.5,39.5 parent: 2 type: Transform - - uid: 687 + - uid: 14447 components: - - rot: -1.5707963267948966 rad - pos: -20.5,-15.5 + - pos: -2.5,-28.5 parent: 2 type: Transform - - uid: 688 + - uid: 14448 components: - - rot: -1.5707963267948966 rad - pos: -20.5,-16.5 + - pos: -40.5,39.5 parent: 2 type: Transform - - uid: 1169 + - uid: 14449 components: - - pos: 30.5,-7.5 + - pos: -40.5,40.5 parent: 2 type: Transform - - uid: 1276 + - uid: 14450 components: - - pos: -32.5,-10.5 + - pos: -32.5,-28.5 parent: 2 type: Transform - - uid: 1280 + - uid: 14451 components: - - pos: -23.5,-12.5 + - pos: -32.5,-27.5 parent: 2 type: Transform - - uid: 1307 + - uid: 14452 components: - - pos: -20.5,-14.5 + - pos: 5.5,-5.5 parent: 2 type: Transform - - uid: 1323 + - uid: 14453 components: - - pos: -1.5,-15.5 + - rot: -1.5707963267948966 rad + pos: -1.5,-51.5 parent: 2 type: Transform - - uid: 1701 + - uid: 14454 components: - - pos: -2.5,-15.5 + - rot: -1.5707963267948966 rad + pos: -0.5,-51.5 parent: 2 type: Transform - - uid: 2541 +- proto: TableCounterWood + entities: + - uid: 14455 components: - - pos: -13.5,-37.5 + - rot: 1.5707963267948966 rad + pos: 4.5,33.5 parent: 2 type: Transform - - uid: 2660 + - uid: 14456 components: - - pos: -13.5,-38.5 + - pos: -20.5,23.5 parent: 2 type: Transform - - uid: 2963 + - uid: 14457 components: - - pos: -21.5,-9.5 + - pos: 8.5,-31.5 parent: 2 type: Transform - - uid: 2975 + - uid: 14458 components: - - pos: -47.5,-13.5 + - rot: 3.141592653589793 rad + pos: 32.5,-7.5 parent: 2 type: Transform - - uid: 3056 + - uid: 14459 components: - - pos: -57.5,2.5 + - rot: 3.141592653589793 rad + pos: 33.5,-7.5 parent: 2 type: Transform - - uid: 3075 + - uid: 14460 components: - - rot: -1.5707963267948966 rad - pos: -58.5,2.5 + - rot: 3.141592653589793 rad + pos: 34.5,-7.5 parent: 2 type: Transform - - uid: 3176 + - uid: 14461 components: - - rot: -1.5707963267948966 rad - pos: -59.5,2.5 + - pos: 20.5,-3.5 parent: 2 type: Transform - - uid: 3522 + - uid: 14462 components: - - pos: -43.5,39.5 + - pos: 19.5,-3.5 parent: 2 type: Transform - - uid: 3548 + - uid: 14463 components: - - pos: 19.5,20.5 + - pos: 33.5,-10.5 parent: 2 type: Transform - - uid: 3836 + - uid: 14464 components: - - rot: -1.5707963267948966 rad - pos: -14.5,-72.5 + - pos: 32.5,-10.5 parent: 2 type: Transform - - uid: 3837 + - uid: 14465 components: - - rot: -1.5707963267948966 rad - pos: -17.5,-80.5 + - rot: 1.5707963267948966 rad + pos: 4.5,34.5 parent: 2 type: Transform - - uid: 3881 +- proto: TableGlass + entities: + - uid: 14466 components: - - rot: -1.5707963267948966 rad - pos: -12.5,-79.5 + - pos: -10.5,-9.5 parent: 2 type: Transform - - uid: 3882 + - uid: 14467 components: - - rot: -1.5707963267948966 rad - pos: -11.5,-79.5 + - pos: -20.5,-2.5 parent: 2 type: Transform - - uid: 3883 + - uid: 14468 components: - - rot: -1.5707963267948966 rad - pos: -12.5,-73.5 + - pos: -3.5,-33.5 parent: 2 type: Transform - - uid: 3884 + - uid: 14469 components: - - rot: -1.5707963267948966 rad - pos: -11.5,-73.5 + - pos: -2.5,-33.5 parent: 2 type: Transform - - uid: 4039 + - uid: 14470 components: - - pos: 28.5,-9.5 + - pos: 7.5,-16.5 parent: 2 type: Transform - - uid: 4051 + - uid: 14471 components: - - pos: 28.5,-8.5 + - pos: -34.5,11.5 parent: 2 type: Transform - - uid: 4187 + - uid: 14472 components: - - rot: -1.5707963267948966 rad - pos: 29.5,-12.5 + - pos: 5.5,-39.5 parent: 2 type: Transform - - uid: 4188 + - uid: 14473 components: - - rot: -1.5707963267948966 rad - pos: 28.5,-12.5 + - pos: -10.5,-29.5 parent: 2 type: Transform - - uid: 4312 + - uid: 14474 components: - - pos: 17.5,13.5 + - pos: -10.5,-30.5 parent: 2 type: Transform - - uid: 4313 + - uid: 14475 components: - - pos: 16.5,13.5 + - pos: -35.5,11.5 parent: 2 type: Transform - - uid: 4367 + - uid: 14476 components: - - rot: 3.141592653589793 rad - pos: 28.5,12.5 + - pos: -13.5,-9.5 parent: 2 type: Transform - - uid: 4378 + - uid: 14477 components: - - pos: 28.5,16.5 + - pos: -36.5,-76.5 parent: 2 type: Transform - - uid: 4483 + - uid: 14478 components: - - rot: 1.5707963267948966 rad - pos: 15.5,21.5 + - pos: 2.5,-76.5 parent: 2 type: Transform - - uid: 4484 + - uid: 14479 components: - - rot: 1.5707963267948966 rad - pos: 19.5,21.5 + - pos: 17.5,26.5 parent: 2 type: Transform - - uid: 4632 + - uid: 14480 components: - - pos: -20.5,-9.5 + - rot: 3.141592653589793 rad + pos: 23.5,26.5 parent: 2 type: Transform - - uid: 4745 + - uid: 14481 components: - - rot: 1.5707963267948966 rad - pos: 12.5,7.5 + - rot: 3.141592653589793 rad + pos: 22.5,26.5 parent: 2 type: Transform - - uid: 4747 + - uid: 14482 components: - rot: 1.5707963267948966 rad - pos: 11.5,6.5 + pos: 31.5,3.5 parent: 2 type: Transform - - uid: 4748 + - uid: 14483 components: - rot: 1.5707963267948966 rad - pos: 12.5,6.5 + pos: 32.5,3.5 parent: 2 type: Transform - - uid: 4772 + - uid: 14484 components: - - rot: 1.5707963267948966 rad - pos: 7.5,6.5 + - pos: -1.5,32.5 parent: 2 type: Transform - - uid: 4773 + - uid: 14485 components: - - rot: 1.5707963267948966 rad - pos: 6.5,6.5 + - pos: -10.5,33.5 parent: 2 type: Transform - - uid: 5073 + - uid: 14486 components: - - rot: 3.141592653589793 rad - pos: 45.5,9.5 + - pos: -9.5,33.5 parent: 2 type: Transform - - uid: 5275 + - uid: 14487 components: - - pos: 29.5,-7.5 + - pos: -10.5,34.5 parent: 2 type: Transform - - uid: 5497 + - uid: 14488 components: - - pos: -3.5,-28.5 + - pos: -9.5,34.5 parent: 2 type: Transform - - uid: 6090 + - uid: 14489 components: - - pos: -36.5,27.5 + - pos: -10.5,32.5 parent: 2 type: Transform - - uid: 6143 + - uid: 14490 components: - - pos: -38.5,31.5 + - pos: -9.5,32.5 parent: 2 type: Transform - - uid: 6177 + - uid: 14491 components: - - pos: -48.5,34.5 + - pos: -8.5,44.5 parent: 2 type: Transform - - uid: 6252 + - uid: 14492 components: - - pos: -48.5,35.5 + - rot: 3.141592653589793 rad + pos: -31.5,37.5 parent: 2 type: Transform - - uid: 6422 + - uid: 14493 components: - - pos: -35.5,27.5 + - pos: 6.5,-16.5 parent: 2 type: Transform - - uid: 6427 + - uid: 14494 components: - - pos: -40.5,51.5 + - rot: 3.141592653589793 rad + pos: -31.5,32.5 parent: 2 type: Transform - - uid: 7075 + - uid: 14495 components: - - pos: -35.5,34.5 + - rot: 3.141592653589793 rad + pos: -12.5,21.5 parent: 2 type: Transform - - uid: 10683 + - uid: 14496 components: - - pos: 12.5,-32.5 + - pos: -12.5,20.5 parent: 2 type: Transform - - uid: 10684 +- proto: TablePlasmaGlass + entities: + - uid: 14497 components: - - pos: 12.5,-31.5 + - pos: -47.5,41.5 parent: 2 type: Transform - - uid: 10896 + - uid: 14498 components: - - rot: 1.5707963267948966 rad - pos: -56.5,-17.5 + - pos: -28.5,3.5 parent: 2 type: Transform - - uid: 11086 + - uid: 14499 components: - - pos: -42.5,39.5 + - pos: 9.5,21.5 parent: 2 type: Transform - - uid: 11088 + - uid: 14500 components: - - rot: -1.5707963267948966 rad - pos: -60.5,2.5 + - pos: 1.5,18.5 parent: 2 type: Transform - - uid: 11247 + - uid: 14501 components: - - pos: 3.5,-7.5 + - pos: 0.5,18.5 parent: 2 type: Transform - - uid: 11423 + - uid: 14502 components: - - pos: 30.5,-12.5 + - pos: 1.5,20.5 parent: 2 type: Transform - - uid: 11500 + - uid: 14503 components: - - rot: 1.5707963267948966 rad - pos: -44.5,43.5 + - pos: -0.5,18.5 parent: 2 type: Transform - - uid: 11501 + - uid: 14504 components: - - rot: 1.5707963267948966 rad - pos: -44.5,44.5 + - pos: -0.5,20.5 parent: 2 type: Transform - - uid: 11634 +- proto: TableReinforced + entities: + - uid: 14505 components: - - pos: -47.5,-12.5 + - pos: -8.5,8.5 parent: 2 type: Transform - - uid: 12006 + - uid: 14506 components: - - pos: -36.5,-24.5 + - pos: -16.5,5.5 parent: 2 type: Transform - - uid: 12198 + - uid: 14507 components: - - pos: 1.5,-7.5 + - pos: -16.5,4.5 parent: 2 type: Transform - - uid: 14113 + - uid: 14508 components: - - pos: -34.5,34.5 + - pos: -22.5,5.5 parent: 2 type: Transform - - uid: 15210 + - uid: 14509 components: - - pos: 15.5,20.5 + - pos: 9.5,-3.5 parent: 2 type: Transform - - uid: 15591 + - uid: 14510 components: - - pos: 8.5,9.5 + - pos: 13.5,-7.5 parent: 2 type: Transform - - uid: 15665 + - uid: 14511 components: - - pos: 8.5,6.5 + - pos: 12.5,-7.5 parent: 2 type: Transform - - uid: 16201 + - uid: 14512 components: - - pos: 4.5,-2.5 + - pos: -22.5,6.5 parent: 2 type: Transform - - uid: 16217 + - uid: 14513 components: - - pos: 2.5,-7.5 + - pos: -6.5,19.5 parent: 2 type: Transform - - uid: 16319 + - uid: 14514 components: - - pos: -41.5,39.5 + - pos: -26.5,2.5 parent: 2 type: Transform - - uid: 16325 + - uid: 14515 components: - - pos: -2.5,-28.5 + - pos: -21.5,-6.5 parent: 2 type: Transform - - uid: 16460 + - uid: 14516 components: - - pos: -40.5,39.5 + - pos: -22.5,-6.5 parent: 2 type: Transform - - uid: 16514 + - uid: 14517 components: - - pos: -40.5,40.5 + - pos: -9.5,-16.5 parent: 2 type: Transform - - uid: 16608 + - uid: 14518 components: - - pos: -32.5,-28.5 + - pos: -7.5,-15.5 parent: 2 type: Transform - - uid: 16609 + - uid: 14519 components: - - pos: -32.5,-27.5 + - rot: 1.5707963267948966 rad + pos: -10.5,-24.5 parent: 2 type: Transform - - uid: 16843 + - uid: 14520 components: - - pos: 5.5,-5.5 + - pos: -41.5,-7.5 parent: 2 type: Transform -- proto: TableCounterWood - entities: - - uid: 1179 + - uid: 14521 components: - - rot: 1.5707963267948966 rad - pos: 4.5,33.5 + - pos: -42.5,-7.5 parent: 2 type: Transform - - uid: 1212 + - uid: 14522 components: - - pos: -20.5,23.5 + - pos: 14.5,-33.5 parent: 2 type: Transform - - uid: 1838 + - uid: 14523 components: - - pos: 8.5,-31.5 + - pos: 18.5,9.5 parent: 2 type: Transform - - uid: 3714 + - uid: 14524 components: - - rot: 3.141592653589793 rad - pos: 32.5,-7.5 + - rot: -1.5707963267948966 rad + pos: -8.5,-15.5 parent: 2 type: Transform - - uid: 3715 + - uid: 14525 components: - - rot: 3.141592653589793 rad - pos: 33.5,-7.5 + - pos: -7.5,8.5 parent: 2 type: Transform - - uid: 3716 + - uid: 14526 components: - - rot: 3.141592653589793 rad - pos: 34.5,-7.5 + - pos: 14.5,9.5 parent: 2 type: Transform - - uid: 3841 + - uid: 14527 components: - - pos: 20.5,-3.5 + - pos: 15.5,9.5 parent: 2 type: Transform - - uid: 3842 + - uid: 14528 components: - - pos: 19.5,-3.5 + - pos: 19.5,9.5 parent: 2 type: Transform - - uid: 4261 + - uid: 14529 components: - - pos: 33.5,-10.5 + - pos: 18.5,-2.5 parent: 2 type: Transform - - uid: 4262 + - uid: 14530 components: - - pos: 32.5,-10.5 + - pos: -33.5,28.5 parent: 2 type: Transform - - uid: 5502 + - uid: 14531 components: - - rot: 1.5707963267948966 rad - pos: 4.5,34.5 + - pos: -43.5,27.5 parent: 2 type: Transform -- proto: TableGlass - entities: - - uid: 16 + - uid: 14532 components: - - pos: -10.5,-9.5 + - pos: -43.5,28.5 parent: 2 type: Transform - - uid: 891 + - uid: 14533 components: - - pos: -20.5,-2.5 + - pos: -33.5,29.5 parent: 2 type: Transform - - uid: 1416 + - uid: 14534 components: - - pos: -3.5,-33.5 + - pos: -43.5,0.5 parent: 2 type: Transform - - uid: 1763 + - uid: 14535 components: - - pos: -2.5,-33.5 + - pos: -9.5,8.5 parent: 2 type: Transform - - uid: 1865 + - uid: 14536 components: - - pos: 7.5,-16.5 + - pos: -10.5,8.5 parent: 2 type: Transform - - uid: 1998 + - uid: 14537 components: - - pos: -34.5,11.5 + - rot: 3.141592653589793 rad + pos: -7.5,19.5 parent: 2 type: Transform - - uid: 2954 + - uid: 14538 components: - - pos: 5.5,-39.5 + - rot: 3.141592653589793 rad + pos: -8.5,19.5 parent: 2 type: Transform - - uid: 3726 + - uid: 14539 components: - - pos: -10.5,-29.5 + - pos: -11.5,-24.5 parent: 2 type: Transform - - uid: 3791 + - uid: 14540 components: - - pos: -10.5,-30.5 + - pos: 14.5,-32.5 parent: 2 type: Transform - - uid: 4250 + - uid: 14541 components: - - pos: -35.5,11.5 + - rot: 3.141592653589793 rad + pos: -41.5,1.5 parent: 2 type: Transform - - uid: 4302 +- proto: TableReinforcedGlass + entities: + - uid: 14542 components: - - pos: -13.5,-9.5 + - pos: -33.5,-0.5 parent: 2 type: Transform - - uid: 4454 + - uid: 14543 components: - - pos: -36.5,-76.5 + - pos: -32.5,-0.5 parent: 2 type: Transform - - uid: 4457 + - uid: 14544 components: - - pos: 2.5,-76.5 + - pos: -10.5,-40.5 parent: 2 type: Transform - - uid: 4516 + - uid: 14545 components: - - pos: 17.5,26.5 + - pos: 20.5,3.5 parent: 2 type: Transform - - uid: 4549 + - uid: 14546 components: - - rot: 3.141592653589793 rad - pos: 23.5,26.5 + - pos: 21.5,12.5 parent: 2 type: Transform - - uid: 4553 + - uid: 14547 components: - - rot: 3.141592653589793 rad - pos: 22.5,26.5 + - pos: 21.5,13.5 parent: 2 type: Transform - - uid: 4955 + - uid: 14548 components: - - rot: 1.5707963267948966 rad - pos: 31.5,3.5 + - rot: -1.5707963267948966 rad + pos: 21.5,32.5 parent: 2 type: Transform - - uid: 4981 + - uid: 14549 components: - - rot: 1.5707963267948966 rad - pos: 32.5,3.5 + - pos: 21.5,8.5 parent: 2 type: Transform - - uid: 5509 + - uid: 14550 components: - - pos: -1.5,32.5 + - rot: -1.5707963267948966 rad + pos: 20.5,5.5 parent: 2 type: Transform - - uid: 5546 + - uid: 14551 components: - - pos: -10.5,33.5 + - pos: -14.5,-15.5 parent: 2 type: Transform - - uid: 5547 + - uid: 14552 components: - - pos: -9.5,33.5 + - rot: -1.5707963267948966 rad + pos: 27.5,7.5 parent: 2 type: Transform - - uid: 5551 +- proto: TableStone + entities: + - uid: 14553 components: - - pos: -10.5,34.5 + - pos: -8.5,23.5 parent: 2 type: Transform - - uid: 5552 + - uid: 14554 components: - - pos: -9.5,34.5 + - pos: -6.5,22.5 parent: 2 type: Transform - - uid: 5561 +- proto: TableWood + entities: + - uid: 14555 components: - - pos: -10.5,32.5 + - pos: -20.5,9.5 parent: 2 type: Transform - - uid: 5562 + - uid: 14556 components: - - pos: -9.5,32.5 + - pos: -13.5,-5.5 parent: 2 type: Transform - - uid: 5591 + - uid: 14557 components: - - pos: -8.5,44.5 + - rot: 1.5707963267948966 rad + pos: 8.5,26.5 parent: 2 type: Transform - - uid: 7433 + - uid: 14558 components: - - rot: 3.141592653589793 rad - pos: -31.5,37.5 + - rot: 1.5707963267948966 rad + pos: 8.5,27.5 parent: 2 type: Transform - - uid: 10075 + - uid: 14559 components: - - pos: 6.5,-16.5 + - pos: -21.5,41.5 parent: 2 type: Transform - - uid: 12207 + - uid: 14560 components: - - rot: 3.141592653589793 rad - pos: -31.5,32.5 + - pos: -25.5,41.5 parent: 2 type: Transform - - uid: 15268 + - uid: 14561 components: - - rot: 3.141592653589793 rad - pos: -12.5,21.5 + - pos: -26.5,41.5 parent: 2 type: Transform - - uid: 15318 + - uid: 14562 components: - - pos: -12.5,20.5 + - pos: -20.5,41.5 parent: 2 type: Transform -- proto: TablePlasmaGlass - entities: - - uid: 17 + - uid: 14563 components: - - pos: -47.5,41.5 + - pos: -1.5,40.5 parent: 2 type: Transform - - uid: 804 + - uid: 14564 components: - - pos: -28.5,3.5 + - pos: 8.5,-4.5 parent: 2 type: Transform - - uid: 4518 +- proto: TableWoodReinforced + entities: + - uid: 14565 components: - - pos: 9.5,21.5 + - rot: 1.5707963267948966 rad + pos: -6.5,-4.5 parent: 2 type: Transform - - uid: 11395 + - uid: 14566 components: - - pos: 1.5,18.5 + - rot: 1.5707963267948966 rad + pos: -6.5,-7.5 parent: 2 type: Transform - - uid: 11396 + - uid: 14567 components: - - pos: 0.5,18.5 + - rot: 1.5707963267948966 rad + pos: -6.5,-5.5 parent: 2 type: Transform - - uid: 11398 + - uid: 14568 components: - - pos: 1.5,20.5 + - rot: 1.5707963267948966 rad + pos: -6.5,-6.5 parent: 2 type: Transform - - uid: 15343 + - uid: 14569 components: - - pos: -0.5,18.5 + - rot: 1.5707963267948966 rad + pos: -5.5,-7.5 parent: 2 type: Transform - - uid: 15344 + - uid: 14570 components: - - pos: -0.5,20.5 + - rot: 1.5707963267948966 rad + pos: -4.5,-7.5 parent: 2 type: Transform -- proto: TableReinforced - entities: - - uid: 172 + - uid: 14571 components: - - pos: -8.5,8.5 + - rot: 1.5707963267948966 rad + pos: -3.5,-7.5 parent: 2 type: Transform - - uid: 264 + - uid: 14572 components: - - pos: -16.5,5.5 + - pos: -19.5,21.5 parent: 2 type: Transform - - uid: 265 + - uid: 14573 components: - - pos: -16.5,4.5 + - pos: 20.5,-6.5 parent: 2 type: Transform - - uid: 297 + - uid: 14574 components: - - pos: -22.5,5.5 + - pos: 20.5,-5.5 parent: 2 type: Transform - - uid: 327 + - uid: 14575 components: - - pos: 9.5,-3.5 + - rot: -1.5707963267948966 rad + pos: -19.5,-73.5 parent: 2 type: Transform - - uid: 354 + - uid: 14576 components: - - pos: 13.5,-7.5 + - rot: -1.5707963267948966 rad + pos: -19.5,-74.5 parent: 2 type: Transform - - uid: 355 + - uid: 14577 components: - - pos: 12.5,-7.5 + - rot: -1.5707963267948966 rad + pos: -22.5,-78.5 parent: 2 type: Transform - - uid: 466 + - uid: 14578 components: - - pos: -22.5,6.5 + - rot: -1.5707963267948966 rad + pos: -22.5,-79.5 parent: 2 type: Transform - - uid: 591 + - uid: 14579 components: - - pos: -6.5,19.5 + - rot: -1.5707963267948966 rad + pos: -19.5,-79.5 parent: 2 type: Transform - - uid: 789 + - uid: 14580 components: - - pos: -26.5,2.5 + - rot: -1.5707963267948966 rad + pos: -19.5,-78.5 parent: 2 type: Transform - - uid: 829 + - uid: 14581 components: - - pos: -21.5,-6.5 + - rot: -1.5707963267948966 rad + pos: -22.5,-74.5 parent: 2 type: Transform - - uid: 830 + - uid: 14582 components: - - pos: -22.5,-6.5 + - rot: -1.5707963267948966 rad + pos: -22.5,-74.5 parent: 2 type: Transform - - uid: 923 + - uid: 14583 components: - - pos: -9.5,-16.5 + - rot: -1.5707963267948966 rad + pos: -22.5,-73.5 parent: 2 type: Transform - - uid: 1094 + - uid: 14584 components: - - pos: -7.5,-15.5 + - pos: 2.5,34.5 parent: 2 type: Transform - - uid: 1807 + - uid: 14585 components: - - rot: 1.5707963267948966 rad - pos: -10.5,-24.5 + - pos: 2.5,33.5 parent: 2 type: Transform - - uid: 1866 + - uid: 14586 components: - - pos: -41.5,-7.5 + - pos: 2.5,35.5 parent: 2 type: Transform - - uid: 1867 + - uid: 14587 components: - - pos: -42.5,-7.5 + - pos: -24.5,43.5 parent: 2 type: Transform - - uid: 1891 + - uid: 14588 components: - - pos: 14.5,-33.5 + - pos: -23.5,43.5 parent: 2 type: Transform - - uid: 1899 + - uid: 14589 components: - - pos: 18.5,9.5 + - pos: -22.5,43.5 parent: 2 type: Transform - - uid: 1991 + - uid: 14590 components: - - rot: -1.5707963267948966 rad - pos: -8.5,-15.5 + - rot: 3.141592653589793 rad + pos: -30.5,30.5 parent: 2 type: Transform - - uid: 3432 + - uid: 14591 components: - - pos: -7.5,8.5 + - rot: 3.141592653589793 rad + pos: -28.5,30.5 parent: 2 type: Transform - - uid: 3525 + - uid: 14592 components: - - pos: 14.5,9.5 + - rot: -1.5707963267948966 rad + pos: -0.5,37.5 parent: 2 type: Transform - - uid: 3549 + - uid: 14593 components: - - pos: 15.5,9.5 + - rot: 1.5707963267948966 rad + pos: -49.5,1.5 parent: 2 type: Transform - - uid: 3550 + - uid: 14594 components: - - pos: 19.5,9.5 + - pos: -22.5,44.5 parent: 2 type: Transform - - uid: 3566 + - uid: 14595 components: - - pos: 18.5,-2.5 + - rot: 1.5707963267948966 rad + pos: -49.5,0.5 parent: 2 type: Transform - - uid: 5211 + - uid: 14596 components: - - pos: -33.5,28.5 + - rot: 1.5707963267948966 rad + pos: -49.5,0.5 parent: 2 type: Transform - - uid: 5855 + - uid: 14597 components: - - pos: -43.5,27.5 + - rot: 1.5707963267948966 rad + pos: -49.5,-0.5 parent: 2 type: Transform - - uid: 5874 +- proto: tatamimat + entities: + - uid: 14598 components: - - pos: -43.5,28.5 + - pos: 31.5,10.5 parent: 2 type: Transform - - uid: 6381 + - uid: 14599 components: - - pos: -33.5,29.5 + - rot: 1.5707963267948966 rad + pos: 36.5,7.5 parent: 2 type: Transform - - uid: 6750 + - uid: 14600 components: - - pos: -43.5,0.5 + - rot: 1.5707963267948966 rad + pos: 31.5,6.5 parent: 2 type: Transform - - uid: 11049 + - uid: 14601 components: - - pos: -9.5,8.5 + - pos: 36.5,10.5 parent: 2 type: Transform - - uid: 11113 + - uid: 14602 components: - - pos: -10.5,8.5 + - pos: 32.5,9.5 parent: 2 type: Transform - - uid: 11151 + - uid: 14603 components: - rot: 3.141592653589793 rad - pos: -7.5,19.5 + pos: 35.5,9.5 parent: 2 type: Transform - - uid: 11153 + - uid: 14604 components: - - rot: 3.141592653589793 rad - pos: -8.5,19.5 + - rot: -1.5707963267948966 rad + pos: 36.5,6.5 parent: 2 type: Transform - - uid: 11391 + - uid: 14605 components: - - pos: -11.5,-24.5 + - rot: 1.5707963267948966 rad + pos: 36.5,8.5 parent: 2 type: Transform - - uid: 12245 + - uid: 14606 components: - - pos: 14.5,-32.5 + - rot: 1.5707963267948966 rad + pos: 31.5,8.5 parent: 2 type: Transform - - uid: 15369 + - uid: 14607 components: - - rot: 3.141592653589793 rad - pos: -41.5,1.5 + - pos: 34.5,9.5 parent: 2 type: Transform -- proto: TableReinforcedGlass - entities: - - uid: 692 + - uid: 14608 components: - - pos: -33.5,-0.5 + - rot: -1.5707963267948966 rad + pos: 31.5,9.5 parent: 2 type: Transform - - uid: 693 + - uid: 14609 components: - - pos: -32.5,-0.5 + - pos: 33.5,8.5 parent: 2 type: Transform - - uid: 2516 + - uid: 14610 components: - - pos: -10.5,-40.5 + - rot: 1.5707963267948966 rad + pos: 32.5,7.5 parent: 2 type: Transform - - uid: 3499 + - uid: 14611 components: - - pos: 20.5,3.5 + - rot: -1.5707963267948966 rad + pos: 31.5,7.5 parent: 2 type: Transform - - uid: 3832 + - uid: 14612 components: - - pos: 21.5,12.5 + - pos: 31.5,5.5 parent: 2 type: Transform - - uid: 4252 + - uid: 14613 components: - - pos: 21.5,13.5 + - rot: 3.141592653589793 rad + pos: 36.5,5.5 parent: 2 type: Transform - - uid: 5352 + - uid: 14614 components: - - rot: -1.5707963267948966 rad - pos: 21.5,32.5 + - rot: 3.141592653589793 rad + pos: 35.5,6.5 parent: 2 type: Transform - - uid: 11932 + - uid: 14615 components: - - pos: 21.5,8.5 + - rot: 1.5707963267948966 rad + pos: 35.5,7.5 parent: 2 type: Transform - - uid: 12384 + - uid: 14616 components: - - rot: -1.5707963267948966 rad - pos: 20.5,5.5 + - pos: 32.5,6.5 parent: 2 type: Transform - - uid: 12921 + - uid: 14617 components: - - pos: -14.5,-15.5 + - pos: 35.5,5.5 parent: 2 type: Transform - - uid: 13580 + - uid: 14618 components: - - rot: -1.5707963267948966 rad - pos: 27.5,7.5 + - pos: 34.5,6.5 parent: 2 type: Transform -- proto: TableStone - entities: - - uid: 1193 + - uid: 14619 components: - - pos: -8.5,23.5 + - rot: 3.141592653589793 rad + pos: 35.5,10.5 parent: 2 type: Transform - - uid: 1194 + - uid: 14620 components: - - pos: -6.5,22.5 + - rot: 3.141592653589793 rad + pos: 32.5,10.5 parent: 2 type: Transform -- proto: TableWood - entities: - - uid: 642 + - uid: 14621 components: - - pos: -20.5,9.5 + - rot: 3.141592653589793 rad + pos: 34.5,8.5 parent: 2 type: Transform - - uid: 1222 + - uid: 14622 components: - - pos: -13.5,-5.5 + - pos: 33.5,7.5 parent: 2 type: Transform - - uid: 4430 + - uid: 14623 components: - - rot: 1.5707963267948966 rad - pos: 8.5,26.5 + - rot: 3.141592653589793 rad + pos: 34.5,5.5 parent: 2 type: Transform - - uid: 4537 + - uid: 14624 components: - - rot: 1.5707963267948966 rad - pos: 8.5,27.5 + - rot: 3.141592653589793 rad + pos: 34.5,10.5 parent: 2 type: Transform - - uid: 5646 + - uid: 14625 components: - - pos: -21.5,41.5 + - rot: -1.5707963267948966 rad + pos: 36.5,9.5 parent: 2 type: Transform - - uid: 5669 + - uid: 14626 components: - - pos: -25.5,41.5 + - pos: 33.5,5.5 parent: 2 type: Transform - - uid: 5681 + - uid: 14627 components: - - pos: -26.5,41.5 + - rot: 3.141592653589793 rad + pos: 34.5,7.5 parent: 2 type: Transform - - uid: 5686 + - uid: 14628 components: - - pos: -20.5,41.5 + - rot: 3.141592653589793 rad + pos: 32.5,5.5 parent: 2 type: Transform - - uid: 6676 + - uid: 14629 components: - - pos: -1.5,40.5 + - rot: -1.5707963267948966 rad + pos: 35.5,8.5 parent: 2 type: Transform - - uid: 17204 + - uid: 14630 components: - - pos: 8.5,-4.5 + - rot: -1.5707963267948966 rad + pos: 32.5,8.5 parent: 2 type: Transform -- proto: TableWoodReinforced - entities: - - uid: 110 + - uid: 14631 components: - - rot: 1.5707963267948966 rad - pos: -6.5,-4.5 + - rot: 3.141592653589793 rad + pos: 33.5,9.5 parent: 2 type: Transform - - uid: 112 + - uid: 14632 components: - - rot: 1.5707963267948966 rad - pos: -6.5,-7.5 + - rot: 3.141592653589793 rad + pos: 33.5,6.5 parent: 2 type: Transform - - uid: 113 + - uid: 14633 components: - - rot: 1.5707963267948966 rad - pos: -6.5,-5.5 + - pos: 33.5,10.5 parent: 2 type: Transform - - uid: 114 +- proto: TelecomServer + entities: + - uid: 7260 components: - - rot: 1.5707963267948966 rad - pos: -6.5,-6.5 + - pos: -30.5,-74.5 parent: 2 type: Transform - - uid: 116 + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 7261 + - 7262 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 7263 components: - - rot: 1.5707963267948966 rad - pos: -5.5,-7.5 + - pos: -28.5,-79.5 parent: 2 type: Transform - - uid: 121 + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 7264 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 7265 components: - - rot: 1.5707963267948966 rad - pos: -4.5,-7.5 + - pos: -30.5,-75.5 parent: 2 type: Transform - - uid: 122 + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 7266 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 7267 components: - - rot: 1.5707963267948966 rad - pos: -3.5,-7.5 + - pos: -28.5,-74.5 parent: 2 type: Transform - - uid: 1207 + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 7268 + - 7269 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 7270 components: - - pos: -19.5,21.5 + - pos: -30.5,-78.5 parent: 2 type: Transform - - uid: 3736 + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 7271 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 7272 components: - - pos: 20.5,-6.5 + - pos: -30.5,-77.5 parent: 2 type: Transform - - uid: 3741 + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 7273 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 7274 components: - - pos: 20.5,-5.5 + - pos: -28.5,-78.5 parent: 2 type: Transform - - uid: 4157 + - containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 7275 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + type: ContainerContainer + - uid: 14634 components: - - rot: -1.5707963267948966 rad - pos: -19.5,-73.5 + - pos: -24.5,-72.5 parent: 2 type: Transform - - uid: 4158 + - uid: 14635 components: - - rot: -1.5707963267948966 rad - pos: -19.5,-74.5 + - pos: -24.5,-80.5 parent: 2 type: Transform - - uid: 4159 +- proto: ThermomachineFreezerMachineCircuitBoard + entities: + - uid: 14636 components: - - rot: -1.5707963267948966 rad - pos: -22.5,-78.5 + - pos: -11.592051,-26.621416 parent: 2 type: Transform - - uid: 4160 +- proto: ThermomachineHeaterMachineCircuitBoard + entities: + - uid: 14637 components: - - rot: -1.5707963267948966 rad - pos: -22.5,-79.5 + - pos: -8.5,-38.5 parent: 2 type: Transform - - uid: 4161 +- proto: TimerTrigger + entities: + - uid: 14638 components: - - rot: -1.5707963267948966 rad - pos: -19.5,-79.5 + - pos: 9.392495,21.753458 parent: 2 type: Transform - - uid: 4162 +- proto: TintedWindow + entities: + - uid: 14639 components: - - rot: -1.5707963267948966 rad - pos: -19.5,-78.5 + - pos: -4.5,-1.5 parent: 2 type: Transform - - uid: 4163 + - uid: 14640 components: - - rot: -1.5707963267948966 rad - pos: -22.5,-74.5 + - pos: -3.5,-1.5 parent: 2 type: Transform - - uid: 4164 + - uid: 14641 components: - - rot: -1.5707963267948966 rad - pos: -22.5,-74.5 + - pos: -30.5,-4.5 parent: 2 type: Transform - - uid: 4165 + - uid: 14642 components: - - rot: -1.5707963267948966 rad - pos: -22.5,-73.5 + - pos: -30.5,-5.5 parent: 2 type: Transform - - uid: 5485 + - uid: 14643 components: - - pos: 2.5,34.5 + - pos: -30.5,-6.5 parent: 2 type: Transform - - uid: 5489 + - uid: 14644 components: - - pos: 2.5,33.5 + - pos: -35.5,12.5 parent: 2 type: Transform - - uid: 5499 + - uid: 14645 components: - - pos: 2.5,35.5 + - pos: -34.5,12.5 parent: 2 type: Transform - - uid: 5643 + - uid: 14646 components: - - pos: -24.5,43.5 + - pos: -12.5,-2.5 parent: 2 type: Transform - - uid: 5644 + - uid: 14647 components: - - pos: -23.5,43.5 + - pos: -23.5,10.5 parent: 2 type: Transform - - uid: 5645 + - uid: 14648 components: - - pos: -22.5,43.5 + - pos: -23.5,9.5 parent: 2 type: Transform - - uid: 5772 + - uid: 14649 components: - - rot: 3.141592653589793 rad - pos: -30.5,30.5 + - pos: -13.5,-2.5 parent: 2 type: Transform - - uid: 5808 + - uid: 14650 components: - - rot: 3.141592653589793 rad - pos: -28.5,30.5 + - pos: -12.5,-10.5 parent: 2 type: Transform - - uid: 6714 + - uid: 14651 components: - - rot: -1.5707963267948966 rad - pos: -0.5,37.5 + - pos: -13.5,-10.5 parent: 2 type: Transform - - uid: 11852 +- proto: ToiletDirtyWater + entities: + - uid: 14652 components: - - rot: 1.5707963267948966 rad - pos: -49.5,1.5 + - rot: -1.5707963267948966 rad + pos: 35.5,-14.5 parent: 2 type: Transform - - uid: 15648 + - uid: 14653 components: - - pos: -22.5,44.5 + - rot: -1.5707963267948966 rad + pos: -27.5,9.5 parent: 2 type: Transform - - uid: 15781 + - uid: 14654 components: - rot: 1.5707963267948966 rad - pos: -49.5,0.5 + pos: 25.5,8.5 parent: 2 type: Transform - - uid: 15782 + - uid: 14655 components: - - rot: 1.5707963267948966 rad - pos: -49.5,0.5 + - rot: -1.5707963267948966 rad + pos: -27.5,10.5 parent: 2 type: Transform - - uid: 15783 + - uid: 14656 components: - - rot: 1.5707963267948966 rad - pos: -49.5,-0.5 + - rot: -1.5707963267948966 rad + pos: 35.5,-16.5 parent: 2 type: Transform -- proto: tatamimat - entities: - - uid: 3526 + - uid: 14657 components: - - pos: 31.5,10.5 + - rot: -1.5707963267948966 rad + pos: 1.5,42.5 parent: 2 type: Transform - - uid: 4868 + - uid: 14658 components: - - rot: 1.5707963267948966 rad - pos: 36.5,7.5 + - rot: -1.5707963267948966 rad + pos: -51.5,-6.5 parent: 2 type: Transform - - uid: 4937 +- proto: ToolboxElectricalFilled + entities: + - uid: 14659 components: - - rot: 1.5707963267948966 rad - pos: 31.5,6.5 + - pos: 1.7769808,-10.705922 parent: 2 type: Transform - - uid: 4939 + - uid: 14660 components: - - pos: 36.5,10.5 + - pos: 29.478056,24.531494 parent: 2 type: Transform - - uid: 4941 +- proto: ToolboxEmergencyFilled + entities: + - uid: 14661 components: - - pos: 32.5,9.5 + - pos: -29.827248,-10.610678 parent: 2 type: Transform - - uid: 4942 + - uid: 14662 components: - - rot: 3.141592653589793 rad - pos: 35.5,9.5 + - pos: 3.6223974,-19.342974 parent: 2 type: Transform - - uid: 4943 + - uid: 14663 components: - - rot: -1.5707963267948966 rad - pos: 36.5,6.5 + - pos: -42.5538,-2.7034986 parent: 2 type: Transform - - uid: 4944 + - uid: 14664 components: - - rot: 1.5707963267948966 rad - pos: 36.5,8.5 + - pos: -47.503345,0.4337144 parent: 2 type: Transform - - uid: 4945 + - uid: 14665 components: - - rot: 1.5707963267948966 rad - pos: 31.5,8.5 + - pos: -53.433834,31.35351 parent: 2 type: Transform - - uid: 4946 + - uid: 14666 components: - - pos: 34.5,9.5 + - pos: 25.324356,18.286425 parent: 2 type: Transform - - uid: 4947 + - uid: 14667 components: - - rot: -1.5707963267948966 rad - pos: 31.5,9.5 + - pos: 21.27988,-22.19179 parent: 2 type: Transform - - uid: 4948 + - uid: 14668 components: - - pos: 33.5,8.5 + - pos: 7.471225,15.4227915 parent: 2 type: Transform - - uid: 4949 + - uid: 14669 components: - - rot: 1.5707963267948966 rad - pos: 32.5,7.5 + - pos: -26.499691,19.384647 parent: 2 type: Transform - - uid: 4950 + - uid: 14670 components: - - rot: -1.5707963267948966 rad - pos: 31.5,7.5 + - pos: -21.466671,13.577564 parent: 2 type: Transform - - uid: 4966 + - uid: 14671 components: - - pos: 31.5,5.5 + - pos: 6.6968956,7.356404 parent: 2 type: Transform - - uid: 4988 +- proto: ToolboxGolden + entities: + - uid: 14672 components: - - rot: 3.141592653589793 rad - pos: 36.5,5.5 + - pos: 1.4926577,18.67008 parent: 2 type: Transform - - uid: 4989 +- proto: ToolboxMechanical + entities: + - uid: 14673 components: - - rot: 3.141592653589793 rad - pos: 35.5,6.5 + - pos: -10.480042,-24.573797 parent: 2 type: Transform - - uid: 4991 +- proto: ToolboxMechanicalFilled + entities: + - uid: 14674 components: - - rot: 1.5707963267948966 rad - pos: 35.5,7.5 + - pos: -17.440155,-83.509575 parent: 2 type: Transform - - uid: 4992 + - uid: 14675 components: - - pos: 32.5,6.5 + - pos: -41.22711,-6.611117 parent: 2 type: Transform - - uid: 4993 + - uid: 14676 components: - - pos: 35.5,5.5 + - pos: -49.65051,32.736427 parent: 2 type: Transform - - uid: 4996 + - uid: 14677 components: - - pos: 34.5,6.5 + - pos: -49.42134,32.517525 parent: 2 type: Transform - - uid: 4997 + - uid: 14678 components: - - rot: 3.141592653589793 rad - pos: 35.5,10.5 + - pos: -47.63044,-12.36487 parent: 2 type: Transform - - uid: 4998 + - uid: 14679 components: - - rot: 3.141592653589793 rad - pos: 32.5,10.5 + - pos: 26.377935,-21.641388 parent: 2 type: Transform - - uid: 5000 +- proto: ToyAi + entities: + - uid: 14680 components: - - rot: 3.141592653589793 rad - pos: 34.5,8.5 + - pos: -8.611491,-76.47475 parent: 2 type: Transform - - uid: 5001 +- proto: ToyAmongPequeno + entities: + - uid: 14681 components: - - pos: 33.5,7.5 + - pos: 0.22309184,23.320057 parent: 2 type: Transform - - uid: 5005 + - uid: 14682 components: - - rot: 3.141592653589793 rad - pos: 34.5,5.5 + - pos: -50.447548,46.652744 parent: 2 type: Transform - - uid: 5007 + - uid: 14683 components: - rot: 3.141592653589793 rad - pos: 34.5,10.5 + pos: -56.71391,48.025852 parent: 2 type: Transform - - uid: 5008 + - uid: 14684 components: - rot: -1.5707963267948966 rad - pos: 36.5,9.5 + pos: -49.479637,45.98868 parent: 2 type: Transform - - uid: 5009 + - uid: 14685 components: - - pos: 33.5,5.5 + - pos: -51.52429,46.73087 parent: 2 type: Transform - - uid: 5012 + - uid: 14686 components: - - rot: 3.141592653589793 rad - pos: 34.5,7.5 + - pos: -52.44894,47.746494 parent: 2 type: Transform - - uid: 5013 + - uid: 14687 components: - - rot: 3.141592653589793 rad - pos: 32.5,5.5 + - pos: -52.44894,48.65795 parent: 2 type: Transform - - uid: 5014 + - uid: 14688 components: - - rot: -1.5707963267948966 rad - pos: 35.5,8.5 + - pos: -52.422894,49.725662 parent: 2 type: Transform - - uid: 5016 + - uid: 14689 components: - - rot: -1.5707963267948966 rad - pos: 32.5,8.5 + - pos: -50.508472,50.754307 parent: 2 type: Transform - - uid: 5017 + - uid: 14690 components: - - rot: 3.141592653589793 rad - pos: 33.5,9.5 + - pos: -49.323357,50.65014 parent: 2 type: Transform - - uid: 5018 + - uid: 14691 components: - - rot: 3.141592653589793 rad - pos: 33.5,6.5 + - pos: -48.372658,49.42618 parent: 2 type: Transform - - uid: 5020 + - uid: 14692 components: - - pos: 33.5,10.5 + - pos: -48.34661,48.423576 parent: 2 type: Transform -- proto: TelecomServer - entities: - - uid: 3900 + - uid: 14693 components: - - pos: -30.5,-77.5 + - pos: -38.38389,3.271461 parent: 2 type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 14277 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 3901 + - uid: 14694 components: - - pos: -28.5,-74.5 - parent: 2 - type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 14342 - - 14387 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 3903 + - pos: 1.7562656,-2.5871618 + parent: 2 + type: Transform +- proto: ToyFigurineCargoTech + entities: + - uid: 14695 components: - - pos: -30.5,-75.5 + - pos: 7.7041554,-16.06605 parent: 2 type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 14478 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 3904 +- proto: ToyFigurineEngineer + entities: + - uid: 14696 components: - - pos: -28.5,-78.5 + - pos: 2.2488086,-9.017249 parent: 2 type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 14504 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 3906 +- proto: ToyNuke + entities: + - uid: 14697 components: - - pos: -28.5,-79.5 + - pos: -47.588776,-13.505631 parent: 2 type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 14505 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 3907 +- proto: ToyRubberDuck + entities: + - uid: 14698 components: - - pos: -30.5,-78.5 + - pos: 0.46778727,42.6243 parent: 2 type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 14667 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 3908 +- proto: ToySpawner + entities: + - uid: 14699 components: - - pos: -30.5,-74.5 + - pos: -35.5,15.5 parent: 2 type: Transform - - containers: - key_slots: !type:Container - showEnts: False - occludes: True - ents: - - 14674 - - 14675 - machine_board: !type:Container - showEnts: False - occludes: True - ents: [] - machine_parts: !type:Container - showEnts: False - occludes: True - ents: [] - type: ContainerContainer - - uid: 4468 +- proto: TrainingBomb + entities: + - uid: 14700 components: - - pos: -24.5,-72.5 + - pos: -45.5,-14.5 parent: 2 type: Transform - - uid: 12241 + - uid: 14701 components: - - pos: -24.5,-80.5 + - pos: -46.5,-17.5 parent: 2 type: Transform -- proto: ThermomachineFreezerMachineCircuitBoard +- proto: TromboneInstrument entities: - - uid: 6816 + - uid: 14702 components: - - pos: -11.592051,-26.621416 + - pos: -13.500584,-7.4743967 parent: 2 type: Transform -- proto: TimerTrigger +- proto: TwoWayLever entities: - - uid: 9571 + - uid: 14703 components: - - pos: 9.392495,21.753458 + - pos: 14.5,-8.5 parent: 2 type: Transform -- proto: TintedWindow - entities: - - uid: 106 + - linkedPorts: + 6190: + - Left: Forward + - Right: Reverse + - Middle: Off + 6191: + - Left: Forward + - Right: Reverse + - Middle: Off + 6192: + - Left: Forward + - Right: Reverse + - Middle: Off + 6193: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource + - uid: 14704 components: - - pos: -4.5,-1.5 + - pos: 10.5,-23.5 parent: 2 type: Transform - - uid: 375 + - linkedPorts: + 6204: + - Left: Forward + - Right: Reverse + - Middle: Off + 6215: + - Left: Forward + - Right: Reverse + - Middle: Off + 6201: + - Left: Forward + - Right: Reverse + - Middle: Off + 6203: + - Left: Forward + - Right: Reverse + - Middle: Off + 6213: + - Left: Forward + - Right: Reverse + - Middle: Off + 6212: + - Left: Forward + - Right: Reverse + - Middle: Off + 6211: + - Left: Forward + - Right: Reverse + - Middle: Off + 6210: + - Left: Forward + - Right: Reverse + - Middle: Off + 6208: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource + - uid: 14705 components: - - pos: -3.5,-1.5 + - pos: -51.5,3.5 parent: 2 type: Transform - - uid: 1073 + - linkedPorts: + 13007: + - Left: Forward + - Right: Reverse + - Middle: Off + 6200: + - Left: Reverse + - Right: Forward + - Middle: Off + type: DeviceLinkSource + - uid: 14706 components: - - pos: -30.5,-4.5 + - pos: 16.5,-21.5 parent: 2 type: Transform - - uid: 1074 + - linkedPorts: + 6199: + - Left: Forward + - Right: Reverse + - Middle: Off + 6198: + - Left: Forward + - Right: Reverse + - Middle: Off + 13008: + - Left: Forward + - Right: Reverse + - Middle: Off + 6197: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource + - uid: 14707 components: - - pos: -30.5,-5.5 + - pos: 14.5,-10.5 parent: 2 type: Transform - - uid: 1075 + - linkedPorts: + 6194: + - Left: Forward + - Right: Reverse + - Middle: Off + 6189: + - Left: Forward + - Right: Reverse + - Middle: Off + 6188: + - Left: Forward + - Right: Reverse + - Middle: Off + 6186: + - Left: Forward + - Right: Reverse + - Middle: Off + 6187: + - Left: Forward + - Right: Reverse + - Middle: Off + 6196: + - Left: Forward + - Right: Reverse + - Middle: Off + 6219: + - Left: Forward + - Right: Reverse + - Middle: Off + 6218: + - Left: Forward + - Right: Reverse + - Middle: Off + type: DeviceLinkSource +- proto: UnfinishedMachineFrame + entities: + - uid: 14708 components: - - pos: -30.5,-6.5 + - pos: 21.5,-24.5 parent: 2 type: Transform - - uid: 3126 + - uid: 14709 components: - - pos: -35.5,12.5 + - pos: -12.5,-28.5 parent: 2 type: Transform - - uid: 3129 +- proto: UniformPrinter + entities: + - uid: 14710 components: - - pos: -34.5,12.5 + - pos: -3.5,36.5 parent: 2 type: Transform - - uid: 6723 +- proto: UnstableMutagenChemistryBottle + entities: + - uid: 14711 components: - - pos: -12.5,-2.5 + - pos: -19.285854,6.843782 parent: 2 type: Transform - - uid: 16903 +- proto: Vaccinator + entities: + - uid: 14712 components: - - pos: -23.5,10.5 + - pos: 25.5,11.5 parent: 2 type: Transform - - uid: 16904 +- proto: VehicleKeyATV + entities: + - uid: 14713 components: - - pos: -23.5,9.5 + - pos: 2.6372638,-7.4532895 parent: 2 type: Transform - - uid: 16947 +- proto: VehicleKeySecway + entities: + - uid: 14714 components: - - pos: -13.5,-2.5 + - pos: -20.573252,-15.750397 parent: 2 type: Transform - - uid: 16948 +- proto: VendingBarDrobe + entities: + - uid: 14715 components: - - pos: -12.5,-10.5 + - flags: SessionSpecific + type: MetaData + - pos: -13.5,-3.5 parent: 2 type: Transform - - uid: 16949 +- proto: VendingMachineAtmosDrobe + entities: + - uid: 14716 components: - - pos: -13.5,-10.5 + - pos: -5.5,-40.5 parent: 2 type: Transform -- proto: ToiletDirtyWater +- proto: VendingMachineBooze entities: - - uid: 1696 + - uid: 14717 components: - - rot: -1.5707963267948966 rad - pos: 35.5,-14.5 + - flags: SessionSpecific + type: MetaData + - pos: -5.5,-2.5 parent: 2 type: Transform - - uid: 3139 + - uid: 14718 components: - - rot: -1.5707963267948966 rad - pos: -27.5,9.5 + - flags: SessionSpecific + type: MetaData + - pos: 4.5,35.5 parent: 2 type: Transform - - uid: 3594 + - uid: 14719 components: - - rot: 1.5707963267948966 rad - pos: 25.5,8.5 + - flags: SessionSpecific + type: MetaData + - pos: 34.5,-10.5 parent: 2 type: Transform - - uid: 4243 +- proto: VendingMachineBoxingDrobe + entities: + - uid: 14720 components: - - rot: -1.5707963267948966 rad - pos: -27.5,10.5 + - flags: SessionSpecific + type: MetaData + - pos: 33.5,16.5 parent: 2 type: Transform - - uid: 4825 +- proto: VendingMachineCargoDrobe + entities: + - uid: 14721 components: - - rot: -1.5707963267948966 rad - pos: 35.5,-16.5 + - flags: SessionSpecific + type: MetaData + - pos: 1.5,-5.5 parent: 2 type: Transform - - uid: 5574 +- proto: VendingMachineCart + entities: + - uid: 14722 components: - - rot: -1.5707963267948966 rad - pos: 1.5,42.5 + - pos: 17.5,-5.5 parent: 2 type: Transform - - uid: 14733 +- proto: VendingMachineChapel + entities: + - uid: 14723 components: - - rot: -1.5707963267948966 rad - pos: -51.5,-6.5 + - flags: SessionSpecific + type: MetaData + - pos: -31.5,35.5 parent: 2 type: Transform -- proto: ToolboxElectricalFilled +- proto: VendingMachineChefDrobe entities: - - uid: 332 + - uid: 14724 components: - - pos: 1.7769808,-10.705922 + - flags: SessionSpecific + type: MetaData + - pos: -12.5,9.5 parent: 2 type: Transform - - uid: 9399 +- proto: VendingMachineChefvend + entities: + - uid: 14725 components: - - pos: 29.478056,24.531494 + - flags: SessionSpecific + type: MetaData + - pos: -6.5,13.5 parent: 2 type: Transform -- proto: ToolboxEmergencyFilled + - uid: 14726 + components: + - flags: SessionSpecific + type: MetaData + - pos: 28.5,-10.5 + parent: 2 + type: Transform +- proto: VendingMachineChemDrobe entities: - - uid: 882 + - uid: 14727 components: - - pos: -29.827248,-10.610678 + - flags: SessionSpecific + type: MetaData + - pos: 19.5,13.5 parent: 2 type: Transform - - uid: 1640 +- proto: VendingMachineChemicals + entities: + - uid: 14728 components: - - pos: 3.6223974,-19.342974 + - flags: SessionSpecific + type: MetaData + - pos: -29.5,3.5 parent: 2 type: Transform - - uid: 3489 + - uid: 14729 components: - - pos: -42.5538,-2.7034986 + - flags: SessionSpecific + type: MetaData + - pos: 14.5,13.5 parent: 2 type: Transform - - uid: 4749 +- proto: VendingMachineCigs + entities: + - uid: 14730 components: - - pos: -47.503345,0.4337144 + - flags: SessionSpecific + type: MetaData + - pos: -3.5,-10.5 parent: 2 type: Transform - - uid: 10098 + - uid: 14731 components: - - pos: -53.433834,31.35351 + - flags: SessionSpecific + type: MetaData + - pos: -0.5,29.5 parent: 2 type: Transform - - uid: 11008 +- proto: VendingMachineClothing + entities: + - uid: 14732 components: - - pos: 25.324356,18.286425 + - flags: SessionSpecific + type: MetaData + - pos: -36.5,20.5 parent: 2 type: Transform - - uid: 11078 +- proto: VendingMachineCondiments + entities: + - uid: 14733 components: - - pos: 21.27988,-22.19179 + - flags: SessionSpecific + type: MetaData + - pos: -7.5,8.5 parent: 2 type: Transform - - uid: 11791 + - uid: 14734 components: - - pos: 7.471225,15.4227915 + - flags: SessionSpecific + type: MetaData + - pos: -6.5,19.5 parent: 2 type: Transform - - uid: 13137 + - uid: 14735 components: - - pos: -26.499691,19.384647 + - flags: SessionSpecific + type: MetaData + - rot: 1.5707963267948966 rad + pos: 28.5,-9.5 parent: 2 type: Transform - - uid: 13189 +- proto: VendingMachineCourierDrobe + entities: + - uid: 14736 components: - - pos: -21.466671,13.577564 + - pos: 4.5,-4.5 parent: 2 type: Transform - - uid: 16548 +- proto: VendingMachineDetDrobe + entities: + - uid: 14737 components: - - pos: 6.6968956,7.356404 + - pos: -20.5,-11.5 parent: 2 type: Transform -- proto: ToolboxGolden +- proto: VendingMachineDinnerware entities: - - uid: 6879 + - uid: 14738 components: - - pos: 1.4926577,18.67008 + - flags: SessionSpecific + type: MetaData + - pos: -6.5,14.5 parent: 2 type: Transform -- proto: ToolboxMechanical + - uid: 14739 + components: + - flags: SessionSpecific + type: MetaData + - pos: 28.5,-11.5 + parent: 2 + type: Transform +- proto: VendingMachineDonut entities: - - uid: 16726 + - uid: 14740 components: - - pos: -10.480042,-24.573797 + - flags: SessionSpecific + type: MetaData + - pos: -25.5,-2.5 parent: 2 type: Transform -- proto: ToolboxMechanicalFilled + - uid: 14741 + components: + - flags: SessionSpecific + type: MetaData + - pos: -51.5,-11.5 + parent: 2 + type: Transform +- proto: VendingMachineEngiDrobe entities: - - uid: 3840 + - uid: 14742 components: - - pos: -17.440155,-83.509575 + - flags: SessionSpecific + type: MetaData + - pos: -4.5,-19.5 parent: 2 type: Transform - - uid: 4921 +- proto: VendingMachineEngivend + entities: + - uid: 14743 components: - - pos: -41.22711,-6.611117 + - flags: SessionSpecific + type: MetaData + - pos: -6.5,-26.5 parent: 2 type: Transform - - uid: 6548 +- proto: VendingMachineGames + entities: + - uid: 14744 components: - - pos: -49.65051,32.736427 + - flags: SessionSpecific + type: MetaData + - pos: -45.5,30.5 parent: 2 type: Transform - - uid: 6567 + - uid: 14745 components: - - pos: -49.42134,32.517525 + - flags: SessionSpecific + type: MetaData + - pos: -50.5,-12.5 parent: 2 type: Transform - - uid: 15989 + - uid: 14746 components: - - pos: -47.63044,-12.36487 + - flags: SessionSpecific + type: MetaData + - pos: 2.5,29.5 parent: 2 type: Transform - - uid: 16212 +- proto: VendingMachineGeneDrobe + entities: + - uid: 14747 components: - - pos: 26.377935,-21.641388 + - flags: SessionSpecific + type: MetaData + - pos: 19.5,23.5 parent: 2 type: Transform -- proto: ToyAi +- proto: VendingMachineHappyHonk entities: - - uid: 3877 + - uid: 14748 components: - - pos: -8.611491,-76.47475 + - flags: SessionSpecific + type: MetaData + - pos: -6.5,17.5 parent: 2 type: Transform -- proto: ToyAmongPequeno +- proto: VendingMachineHydrobe entities: - - uid: 5184 + - uid: 14749 components: - - pos: 0.22309184,23.320057 + - flags: SessionSpecific + type: MetaData + - pos: -22.5,9.5 parent: 2 type: Transform - - uid: 6246 +- proto: VendingMachineJaniDrobe + entities: + - uid: 14750 components: - - pos: -50.447548,46.652744 + - flags: SessionSpecific + type: MetaData + - pos: 1.5,12.5 parent: 2 type: Transform - - uid: 7522 +- proto: VendingMachineLawDrobe + entities: + - uid: 14751 components: - - rot: 3.141592653589793 rad - pos: -56.71391,48.025852 + - flags: SessionSpecific + type: MetaData + - pos: -19.5,19.5 parent: 2 type: Transform - - uid: 12243 +- proto: VendingMachineMedical + entities: + - uid: 14752 components: - - rot: -1.5707963267948966 rad - pos: -49.479637,45.98868 + - flags: SessionSpecific + type: MetaData + - pos: -30.5,-0.5 parent: 2 type: Transform - - uid: 12248 + - uid: 14753 components: - - pos: -51.52429,46.73087 + - flags: SessionSpecific + type: MetaData + - pos: 20.5,8.5 parent: 2 type: Transform - - uid: 12249 +- proto: VendingMachineMediDrobe + entities: + - uid: 14754 components: - - pos: -52.44894,47.746494 + - flags: SessionSpecific + type: MetaData + - pos: 6.5,12.5 parent: 2 type: Transform - - uid: 12253 +- proto: VendingMachineMNKDrobe + entities: + - uid: 14755 components: - - pos: -52.44894,48.65795 + - flags: SessionSpecific + type: MetaData + - pos: -38.5,20.5 parent: 2 type: Transform - - uid: 12254 +- proto: VendingMachineNutri + entities: + - uid: 14756 components: - - pos: -52.422894,49.725662 + - flags: SessionSpecific + type: MetaData + - pos: -17.5,11.5 parent: 2 type: Transform - - uid: 12256 +- proto: VendingMachinePride + entities: + - uid: 14757 components: - - pos: -50.508472,50.754307 + - flags: SessionSpecific + type: MetaData + - pos: -2.5,6.5 parent: 2 type: Transform - - uid: 12257 +- proto: VendingMachineRepDrobe + entities: + - uid: 14758 components: - - pos: -49.323357,50.65014 + - flags: SessionSpecific + type: MetaData + - pos: -12.5,23.5 parent: 2 type: Transform - - uid: 12258 +- proto: VendingMachineRestockChemVend + entities: + - uid: 14759 components: - - pos: -48.372658,49.42618 + - pos: 8.652911,19.716545 parent: 2 type: Transform - - uid: 12259 +- proto: VendingMachineRoboDrobe + entities: + - uid: 14760 components: - - pos: -48.34661,48.423576 + - pos: -38.5,39.5 parent: 2 type: Transform - - uid: 14728 +- proto: VendingMachineRobotics + entities: + - uid: 14761 components: - - pos: -38.38389,3.271461 + - pos: -44.5,40.5 parent: 2 type: Transform - - uid: 16776 +- proto: VendingMachineSalvage + entities: + - uid: 14762 components: - - pos: 1.7562656,-2.5871618 + - pos: 9.5,-29.5 parent: 2 type: Transform -- proto: ToyFigurineCargoTech +- proto: VendingMachineSciDrobe entities: - - uid: 418 + - uid: 14763 components: - - pos: 7.7041554,-16.06605 + - pos: -38.5,33.5 parent: 2 type: Transform -- proto: ToyFigurineEngineer +- proto: VendingMachineSec entities: - - uid: 1586 + - uid: 14764 components: - - pos: 2.2488086,-9.017249 + - flags: SessionSpecific + type: MetaData + - pos: -25.5,-13.5 parent: 2 type: Transform -- proto: ToyNuke +- proto: VendingMachineSecDrobe entities: - - uid: 16314 + - uid: 14765 components: - - pos: -47.588776,-13.505631 + - pos: -21.5,-11.5 parent: 2 type: Transform -- proto: ToyRubberDuck +- proto: VendingMachineSeeds entities: - - uid: 5580 + - uid: 14766 components: - - pos: 0.46778727,42.6243 + - flags: SessionSpecific + type: MetaData + - pos: -18.5,11.5 parent: 2 type: Transform -- proto: ToySpawner +- proto: VendingMachineSeedsUnlocked entities: - - uid: 945 + - uid: 14767 components: - - pos: -35.5,15.5 + - flags: SessionSpecific + type: MetaData + - pos: -61.5,-5.5 parent: 2 type: Transform -- proto: TrainingBomb +- proto: VendingMachineTankDispenserEngineering entities: - - uid: 10640 + - uid: 14768 components: - - pos: -45.5,-14.5 + - pos: -17.5,-42.5 parent: 2 type: Transform - - uid: 11595 + - uid: 14769 components: - - pos: -46.5,-17.5 + - pos: -3.5,-51.5 parent: 2 type: Transform -- proto: trayScanner +- proto: VendingMachineTankDispenserEVA entities: - - uid: 2877 + - uid: 14770 components: - - pos: -8.222499,-43.547462 + - flags: SessionSpecific + type: MetaData + - pos: -25.5,-23.5 parent: 2 type: Transform -- proto: TromboneInstrument +- proto: VendingMachineTheater entities: - - uid: 4306 + - uid: 14771 components: - - pos: -13.500584,-7.4743967 + - flags: SessionSpecific + type: MetaData + - pos: -36.5,19.5 parent: 2 type: Transform -- proto: TwoWayLever +- proto: VendingMachineVendomat entities: - - uid: 427 + - uid: 14772 components: - - pos: 14.5,-8.5 + - pos: -41.5,25.5 parent: 2 type: Transform - - linkedPorts: - 411: - - Left: Forward - - Right: Reverse - - Middle: Off - 412: - - Left: Forward - - Right: Reverse - - Middle: Off - 413: - - Left: Forward - - Right: Reverse - - Middle: Off - 414: - - Left: Forward - - Right: Reverse - - Middle: Off - type: DeviceLinkSource - - uid: 1549 + - uid: 14773 components: - - pos: 10.5,-23.5 + - flags: SessionSpecific + type: MetaData + - pos: -17.5,-70.5 parent: 2 type: Transform - - linkedPorts: - 8336: - - Left: Forward - - Right: Reverse - - Middle: Off - 10659: - - Left: Forward - - Right: Reverse - - Middle: Off - 7909: - - Left: Forward - - Right: Reverse - - Middle: Off - 8304: - - Left: Forward - - Right: Reverse - - Middle: Off - 10644: - - Left: Forward - - Right: Reverse - - Middle: Off - 8883: - - Left: Forward - - Right: Reverse - - Middle: Off - 8882: - - Left: Forward - - Right: Reverse - - Middle: Off - 8881: - - Left: Forward - - Right: Reverse - - Middle: Off - 8341: - - Left: Forward - - Right: Reverse - - Middle: Off - type: DeviceLinkSource - - uid: 6732 +- proto: VendingMachineViroDrobe + entities: + - uid: 14774 components: - - pos: -51.5,3.5 + - flags: SessionSpecific + type: MetaData + - pos: 25.5,16.5 parent: 2 type: Transform - - linkedPorts: - 3149: - - Left: Forward - - Right: Reverse - - Middle: Off - 6730: - - Left: Reverse - - Right: Forward - - Middle: Off - type: DeviceLinkSource - - uid: 14963 +- proto: VendingMachineWallMedical + entities: + - uid: 14775 components: - - pos: 16.5,-21.5 + - rot: 1.5707963267948966 rad + pos: 20.5,18.5 parent: 2 type: Transform - - linkedPorts: - 4959: - - Left: Forward - - Right: Reverse - - Middle: Off - 4222: - - Left: Forward - - Right: Reverse - - Middle: Off - 8401: - - Left: Forward - - Right: Reverse - - Middle: Off - 4220: - - Left: Forward - - Right: Reverse - - Middle: Off - type: DeviceLinkSource - - uid: 16209 +- proto: VendingMachineWinter + entities: + - uid: 14776 components: - - pos: 14.5,-10.5 + - flags: SessionSpecific + type: MetaData + - pos: 23.5,-7.5 parent: 2 type: Transform - - linkedPorts: - 429: - - Left: Forward - - Right: Reverse - - Middle: Off - 409: - - Left: Forward - - Right: Reverse - - Middle: Off - 408: - - Left: Forward - - Right: Reverse - - Middle: Off - 406: - - Left: Forward - - Right: Reverse - - Middle: Off - 407: - - Left: Forward - - Right: Reverse - - Middle: Off - 2983: - - Left: Forward - - Right: Reverse - - Middle: Off - 10672: - - Left: Forward - - Right: Reverse - - Middle: Off - 10671: - - Left: Forward - - Right: Reverse - - Middle: Off - type: DeviceLinkSource -- proto: UnfinishedMachineFrame +- proto: VendingMachineYouTool entities: - - uid: 11540 + - uid: 14777 components: - - pos: 21.5,-24.5 + - flags: SessionSpecific + type: MetaData + - pos: -6.5,-27.5 parent: 2 type: Transform - - uid: 16765 +- proto: WallReinforced + entities: + - uid: 14778 components: - - pos: -12.5,-28.5 + - rot: 1.5707963267948966 rad + pos: -3.5,-34.5 parent: 2 type: Transform -- proto: UniformPrinter - entities: - - uid: 9525 + - uid: 14779 components: - - pos: -3.5,36.5 + - rot: 1.5707963267948966 rad + pos: 4.5,-50.5 parent: 2 type: Transform -- proto: UnstableMutagenChemistryBottle - entities: - - uid: 1203 + - uid: 14780 components: - - pos: -19.285854,6.843782 + - rot: 1.5707963267948966 rad + pos: -8.5,-41.5 parent: 2 type: Transform -- proto: Vaccinator - entities: - - uid: 1801 + - uid: 14781 components: - - pos: 25.5,11.5 + - rot: 1.5707963267948966 rad + pos: -2.5,-52.5 parent: 2 type: Transform -- proto: VehicleKeyATV - entities: - - uid: 17083 + - uid: 14782 components: - - pos: 2.6372638,-7.4532895 + - rot: 1.5707963267948966 rad + pos: -5.5,-52.5 parent: 2 type: Transform -- proto: VehicleKeySecway - entities: - - uid: 16546 + - uid: 14783 components: - - pos: -20.573252,-15.750397 + - rot: 1.5707963267948966 rad + pos: -5.5,-46.5 parent: 2 type: Transform -- proto: VendingBarDrobe - entities: - - uid: 137 + - uid: 14784 components: - - flags: SessionSpecific - type: MetaData - - pos: -13.5,-3.5 + - rot: 1.5707963267948966 rad + pos: 1.5,-54.5 parent: 2 type: Transform -- proto: VendingMachineAtmosDrobe - entities: - - uid: 2262 + - uid: 14785 components: - - flags: SessionSpecific - type: MetaData - - pos: -5.5,-44.5 + - rot: 1.5707963267948966 rad + pos: 3.5,-54.5 parent: 2 type: Transform -- proto: VendingMachineBooze - entities: - - uid: 115 + - uid: 14786 components: - - flags: SessionSpecific - type: MetaData - - pos: -5.5,-2.5 + - rot: 1.5707963267948966 rad + pos: 5.5,-50.5 parent: 2 type: Transform - - uid: 1171 + - uid: 14787 components: - - flags: SessionSpecific - type: MetaData - - pos: 4.5,35.5 + - rot: 1.5707963267948966 rad + pos: -4.5,-34.5 parent: 2 type: Transform - - uid: 4263 + - uid: 14788 components: - - flags: SessionSpecific - type: MetaData - - pos: 34.5,-10.5 + - rot: 1.5707963267948966 rad + pos: 2.5,-44.5 parent: 2 type: Transform -- proto: VendingMachineBoxingDrobe - entities: - - uid: 4982 + - uid: 14789 components: - - flags: SessionSpecific - type: MetaData - - pos: 33.5,16.5 + - rot: 3.141592653589793 rad + pos: -6.5,-50.5 parent: 2 type: Transform -- proto: VendingMachineCargoDrobe - entities: - - uid: 1265 + - uid: 14790 components: - - flags: SessionSpecific - type: MetaData - - pos: 1.5,-5.5 + - rot: -1.5707963267948966 rad + pos: 4.5,-39.5 parent: 2 type: Transform -- proto: VendingMachineCart - entities: - - uid: 11585 + - uid: 14791 components: - - pos: 17.5,-5.5 + - rot: -1.5707963267948966 rad + pos: -1.5,-34.5 parent: 2 type: Transform -- proto: VendingMachineChapel - entities: - - uid: 5794 + - uid: 14792 components: - - flags: SessionSpecific - type: MetaData - - pos: -31.5,35.5 + - rot: 1.5707963267948966 rad + pos: -9.5,-51.5 parent: 2 type: Transform -- proto: VendingMachineChefDrobe - entities: - - uid: 253 + - uid: 14793 components: - - flags: SessionSpecific - type: MetaData - - pos: -12.5,9.5 + - rot: 1.5707963267948966 rad + pos: 2.5,-52.5 parent: 2 type: Transform -- proto: VendingMachineChefvend - entities: - - uid: 637 + - uid: 14794 components: - - flags: SessionSpecific - type: MetaData - - pos: -6.5,13.5 + - rot: 1.5707963267948966 rad + pos: -3.5,-52.5 parent: 2 type: Transform - - uid: 4175 + - uid: 14795 components: - - flags: SessionSpecific - type: MetaData - - pos: 28.5,-10.5 + - rot: 1.5707963267948966 rad + pos: -7.5,-41.5 parent: 2 type: Transform -- proto: VendingMachineChemDrobe - entities: - - uid: 15465 + - uid: 14796 components: - - flags: SessionSpecific - type: MetaData - - pos: 19.5,13.5 + - rot: 1.5707963267948966 rad + pos: 4.5,-44.5 parent: 2 type: Transform -- proto: VendingMachineChemicals - entities: - - uid: 595 + - uid: 14797 components: - - flags: SessionSpecific - type: MetaData - - pos: -29.5,3.5 + - rot: 1.5707963267948966 rad + pos: 4.5,-42.5 parent: 2 type: Transform - - uid: 1087 + - uid: 14798 components: - - flags: SessionSpecific - type: MetaData - - pos: 14.5,13.5 + - rot: 1.5707963267948966 rad + pos: 5.5,-42.5 parent: 2 type: Transform -- proto: VendingMachineCigs - entities: - - uid: 148 + - uid: 14799 components: - - flags: SessionSpecific - type: MetaData - - pos: -3.5,-10.5 + - rot: -1.5707963267948966 rad + pos: -1.5,-36.5 parent: 2 type: Transform - - uid: 5515 + - uid: 14800 components: - - flags: SessionSpecific - type: MetaData - - pos: -0.5,29.5 + - rot: 1.5707963267948966 rad + pos: -2.5,-34.5 parent: 2 type: Transform -- proto: VendingMachineClothing - entities: - - uid: 15737 + - uid: 14801 components: - - flags: SessionSpecific - type: MetaData - - pos: -36.5,20.5 + - rot: 1.5707963267948966 rad + pos: 6.5,-42.5 parent: 2 type: Transform -- proto: VendingMachineCondiments - entities: - - uid: 639 + - uid: 14802 components: - - flags: SessionSpecific - type: MetaData - - pos: -7.5,8.5 + - rot: 1.5707963267948966 rad + pos: 7.5,-42.5 parent: 2 type: Transform - - uid: 703 + - uid: 14803 components: - - flags: SessionSpecific - type: MetaData - - pos: -6.5,19.5 + - rot: 1.5707963267948966 rad + pos: 0.5,-53.5 parent: 2 type: Transform - - uid: 15705 + - uid: 14804 + components: + - rot: 1.5707963267948966 rad + pos: 2.5,-48.5 + parent: 2 + type: Transform + - uid: 14805 components: - - flags: SessionSpecific - type: MetaData - rot: 1.5707963267948966 rad - pos: 28.5,-9.5 + pos: 2.5,-40.5 parent: 2 type: Transform -- proto: VendingMachineCourierDrobe - entities: - - uid: 16198 + - uid: 14806 components: - - pos: 4.5,-4.5 + - rot: 1.5707963267948966 rad + pos: 6.5,-50.5 parent: 2 type: Transform -- proto: VendingMachineDetDrobe - entities: - - uid: 14403 + - uid: 14807 components: - - pos: -20.5,-11.5 + - rot: 3.141592653589793 rad + pos: -5.5,-50.5 parent: 2 type: Transform -- proto: VendingMachineDinnerware - entities: - - uid: 199 + - uid: 14808 components: - - flags: SessionSpecific - type: MetaData - - pos: -6.5,14.5 + - rot: 1.5707963267948966 rad + pos: 6.5,-52.5 parent: 2 type: Transform - - uid: 3910 + - uid: 14809 components: - - flags: SessionSpecific - type: MetaData - - pos: 28.5,-11.5 + - rot: 1.5707963267948966 rad + pos: 4.5,-53.5 parent: 2 type: Transform -- proto: VendingMachineDonut - entities: - - uid: 889 + - uid: 14810 components: - - flags: SessionSpecific - type: MetaData - - pos: -25.5,-2.5 + - rot: 1.5707963267948966 rad + pos: 8.5,-52.5 parent: 2 type: Transform - - uid: 3070 + - uid: 14811 components: - - flags: SessionSpecific - type: MetaData - - pos: -51.5,-11.5 + - rot: 3.141592653589793 rad + pos: -7.5,-50.5 parent: 2 type: Transform -- proto: VendingMachineEngiDrobe - entities: - - uid: 1672 + - uid: 14812 components: - - flags: SessionSpecific - type: MetaData - - pos: -4.5,-19.5 + - rot: 1.5707963267948966 rad + pos: -7.5,-52.5 parent: 2 type: Transform -- proto: VendingMachineEngivend - entities: - - uid: 986 + - uid: 14813 components: - - flags: SessionSpecific - type: MetaData - - pos: -6.5,-26.5 + - rot: -1.5707963267948966 rad + pos: -1.5,-35.5 parent: 2 type: Transform -- proto: VendingMachineGames - entities: - - uid: 764 + - uid: 14814 components: - - flags: SessionSpecific - type: MetaData - - pos: -45.5,30.5 + - rot: 1.5707963267948966 rad + pos: 0.5,-54.5 parent: 2 type: Transform - - uid: 3229 + - uid: 14815 components: - - flags: SessionSpecific - type: MetaData - - pos: -50.5,-12.5 + - rot: 1.5707963267948966 rad + pos: 0.5,-52.5 parent: 2 type: Transform - - uid: 5519 + - uid: 14816 components: - - flags: SessionSpecific - type: MetaData - - pos: 2.5,29.5 + - rot: 1.5707963267948966 rad + pos: -4.5,-35.5 parent: 2 type: Transform -- proto: VendingMachineGeneDrobe - entities: - - uid: 4561 + - uid: 14817 components: - - flags: SessionSpecific - type: MetaData - - pos: 19.5,23.5 + - rot: 1.5707963267948966 rad + pos: -9.5,-52.5 parent: 2 type: Transform -- proto: VendingMachineHappyHonk - entities: - - uid: 15180 + - uid: 14818 components: - - flags: SessionSpecific - type: MetaData - - pos: -6.5,17.5 + - rot: 1.5707963267948966 rad + pos: -8.5,-52.5 parent: 2 type: Transform -- proto: VendingMachineHydrobe - entities: - - uid: 601 + - uid: 14819 components: - - flags: SessionSpecific - type: MetaData - - pos: -22.5,9.5 + - rot: 1.5707963267948966 rad + pos: 7.5,-52.5 parent: 2 type: Transform -- proto: VendingMachineJaniDrobe - entities: - - uid: 856 + - uid: 14820 components: - - flags: SessionSpecific - type: MetaData - - pos: 1.5,12.5 + - rot: 1.5707963267948966 rad + pos: -5.5,-41.5 parent: 2 type: Transform -- proto: VendingMachineLawDrobe - entities: - - uid: 1085 + - uid: 14821 components: - - flags: SessionSpecific - type: MetaData - - pos: -19.5,19.5 + - rot: 3.141592653589793 rad + pos: -9.5,-50.5 parent: 2 type: Transform -- proto: VendingMachineMedical - entities: - - uid: 824 + - uid: 14822 components: - - flags: SessionSpecific - type: MetaData - - pos: -30.5,-0.5 + - rot: 1.5707963267948966 rad + pos: 7.5,-48.5 parent: 2 type: Transform - - uid: 1868 + - uid: 14823 components: - - flags: SessionSpecific - type: MetaData - - pos: 20.5,8.5 + - rot: 1.5707963267948966 rad + pos: 7.5,-50.5 parent: 2 type: Transform -- proto: VendingMachineMediDrobe - entities: - - uid: 1386 + - uid: 14824 components: - - flags: SessionSpecific - type: MetaData - - pos: 6.5,12.5 + - rot: 1.5707963267948966 rad + pos: -6.5,-41.5 parent: 2 type: Transform -- proto: VendingMachineMNKDrobe - entities: - - uid: 16554 + - uid: 14825 components: - - flags: SessionSpecific - type: MetaData - - pos: -38.5,20.5 + - rot: 1.5707963267948966 rad + pos: 6.5,-48.5 parent: 2 type: Transform -- proto: VendingMachineNutri - entities: - - uid: 613 + - uid: 14826 components: - - flags: SessionSpecific - type: MetaData - - pos: -17.5,11.5 + - rot: 1.5707963267948966 rad + pos: 5.5,-46.5 parent: 2 type: Transform -- proto: VendingMachinePride - entities: - - uid: 17017 + - uid: 14827 components: - - flags: SessionSpecific - type: MetaData - - pos: -2.5,6.5 + - rot: 3.141592653589793 rad + pos: 2.5,-39.5 parent: 2 type: Transform -- proto: VendingMachineRepDrobe - entities: - - uid: 1218 + - uid: 14828 components: - - flags: SessionSpecific - type: MetaData - - pos: -12.5,23.5 + - rot: 1.5707963267948966 rad + pos: 8.5,-49.5 parent: 2 type: Transform -- proto: VendingMachineRestockChemVend - entities: - - uid: 12087 + - uid: 14829 components: - - pos: 8.652911,19.716545 + - rot: 1.5707963267948966 rad + pos: 8.5,-51.5 parent: 2 type: Transform -- proto: VendingMachineRoboDrobe - entities: - - uid: 16320 + - uid: 14830 components: - - pos: -38.5,39.5 + - rot: 1.5707963267948966 rad + pos: 8.5,-46.5 parent: 2 type: Transform -- proto: VendingMachineRobotics - entities: - - uid: 6590 + - uid: 14831 components: - - pos: -44.5,40.5 + - rot: 1.5707963267948966 rad + pos: 8.5,-48.5 parent: 2 type: Transform -- proto: VendingMachineSalvage - entities: - - uid: 11561 + - uid: 14832 components: - - pos: 9.5,-29.5 + - rot: 1.5707963267948966 rad + pos: 5.5,-52.5 parent: 2 type: Transform -- proto: VendingMachineSciDrobe - entities: - - uid: 6446 + - uid: 14833 components: - - pos: -38.5,33.5 + - rot: 1.5707963267948966 rad + pos: 8.5,-50.5 parent: 2 type: Transform -- proto: VendingMachineSec - entities: - - uid: 817 + - uid: 14834 components: - - flags: SessionSpecific - type: MetaData - - pos: -25.5,-13.5 + - rot: 1.5707963267948966 rad + pos: 8.5,-47.5 parent: 2 type: Transform -- proto: VendingMachineSecDrobe - entities: - - uid: 16744 + - uid: 14835 components: - - pos: -21.5,-11.5 + - rot: 1.5707963267948966 rad + pos: -4.5,-52.5 parent: 2 type: Transform -- proto: VendingMachineSeeds - entities: - - uid: 611 + - uid: 14836 components: - - flags: SessionSpecific - type: MetaData - - pos: -18.5,11.5 + - rot: 1.5707963267948966 rad + pos: -6.5,-52.5 parent: 2 type: Transform -- proto: VendingMachineSeedsUnlocked - entities: - - uid: 15730 + - uid: 14837 components: - - flags: SessionSpecific - type: MetaData - - pos: -61.5,-5.5 + - rot: 1.5707963267948966 rad + pos: -4.5,-41.5 parent: 2 type: Transform -- proto: VendingMachineTankDispenserEngineering - entities: - - uid: 14200 + - uid: 14838 components: - - pos: -17.5,-42.5 + - rot: 1.5707963267948966 rad + pos: 4.5,-52.5 parent: 2 type: Transform -- proto: VendingMachineTankDispenserEVA - entities: - - uid: 2307 + - uid: 14839 components: - - flags: SessionSpecific - type: MetaData - - pos: -25.5,-23.5 + - rot: 1.5707963267948966 rad + pos: 5.5,-48.5 parent: 2 type: Transform -- proto: VendingMachineTheater - entities: - - uid: 4240 + - uid: 14840 components: - - flags: SessionSpecific - type: MetaData - - pos: -36.5,19.5 + - rot: 1.5707963267948966 rad + pos: 6.5,-46.5 parent: 2 type: Transform -- proto: VendingMachineVendomat - entities: - - uid: 523 + - uid: 14841 components: - - pos: -41.5,25.5 + - rot: 3.141592653589793 rad + pos: 3.5,-39.5 parent: 2 type: Transform - - uid: 4582 + - uid: 14842 components: - - flags: SessionSpecific - type: MetaData - - pos: -17.5,-70.5 + - rot: 1.5707963267948966 rad + pos: -4.5,-36.5 parent: 2 type: Transform -- proto: VendingMachineViroDrobe - entities: - - uid: 4380 + - uid: 14843 components: - - flags: SessionSpecific - type: MetaData - - pos: 25.5,16.5 + - rot: 1.5707963267948966 rad + pos: 6.5,-44.5 parent: 2 type: Transform -- proto: VendingMachineWallMedical - entities: - - uid: 13007 + - uid: 14844 components: - rot: 1.5707963267948966 rad - pos: 20.5,18.5 + pos: 7.5,-44.5 parent: 2 type: Transform -- proto: VendingMachineWinter - entities: - - uid: 16930 + - uid: 14845 components: - - flags: SessionSpecific - type: MetaData - - pos: 23.5,-7.5 + - rot: 1.5707963267948966 rad + pos: 5.5,-44.5 parent: 2 type: Transform -- proto: VendingMachineYouTool - entities: - - uid: 984 + - uid: 14846 components: - - flags: SessionSpecific - type: MetaData - - pos: -6.5,-27.5 + - rot: 1.5707963267948966 rad + pos: 4.5,-54.5 parent: 2 type: Transform -- proto: WallReinforced - entities: - - uid: 123 + - uid: 14847 components: - pos: -30.5,-11.5 parent: 2 type: Transform - - uid: 183 + - uid: 14848 components: - pos: -19.5,-6.5 parent: 2 type: Transform - - uid: 184 + - uid: 14849 components: - pos: -19.5,-7.5 parent: 2 type: Transform - - uid: 186 + - uid: 14850 components: - pos: -19.5,-9.5 parent: 2 type: Transform - - uid: 206 + - uid: 14851 components: - pos: -32.5,-11.5 parent: 2 type: Transform - - uid: 208 + - uid: 14852 components: - pos: -33.5,-11.5 parent: 2 type: Transform - - uid: 220 + - uid: 14853 components: - pos: 15.5,-2.5 parent: 2 type: Transform - - uid: 223 + - uid: 14854 components: - pos: -29.5,-12.5 parent: 2 type: Transform - - uid: 236 + - uid: 14855 components: - pos: -16.5,13.5 parent: 2 type: Transform - - uid: 238 + - uid: 14856 components: - pos: -16.5,14.5 parent: 2 type: Transform - - uid: 256 + - uid: 14857 components: - pos: -16.5,15.5 parent: 2 type: Transform - - uid: 258 + - uid: 14858 components: - pos: -19.5,12.5 parent: 2 type: Transform - - uid: 259 + - uid: 14859 components: - pos: -18.5,12.5 parent: 2 type: Transform - - uid: 260 + - uid: 14860 components: - pos: -17.5,12.5 parent: 2 type: Transform - - uid: 266 + - uid: 14861 components: - pos: -16.5,12.5 parent: 2 type: Transform - - uid: 269 + - uid: 14862 components: - pos: 16.5,-1.5 parent: 2 type: Transform - - uid: 270 + - uid: 14863 components: - pos: 16.5,-2.5 parent: 2 type: Transform - - uid: 271 + - uid: 14864 components: - pos: 16.5,-3.5 parent: 2 type: Transform - - uid: 274 + - uid: 14865 components: - pos: 16.5,-6.5 parent: 2 type: Transform - - uid: 275 + - uid: 14866 components: - pos: 16.5,-7.5 parent: 2 type: Transform - - uid: 279 + - uid: 14867 components: - pos: -31.5,-11.5 parent: 2 type: Transform - - uid: 377 + - uid: 14868 components: - pos: -30.5,-16.5 parent: 2 type: Transform - - uid: 398 + - uid: 14869 components: - pos: 13.5,-35.5 parent: 2 type: Transform - - uid: 450 + - uid: 14870 components: - pos: 17.5,-7.5 parent: 2 type: Transform - - uid: 451 + - uid: 14871 components: - pos: -18.5,15.5 parent: 2 type: Transform - - uid: 452 + - uid: 14872 components: - pos: -19.5,15.5 parent: 2 type: Transform - - uid: 453 + - uid: 14873 components: - pos: -19.5,14.5 parent: 2 type: Transform - - uid: 454 + - uid: 14874 components: - pos: -19.5,13.5 parent: 2 type: Transform - - uid: 459 + - uid: 14875 components: - pos: 0.5,-15.5 parent: 2 type: Transform - - uid: 464 - components: - - pos: -4.5,-46.5 - parent: 2 - type: Transform - - uid: 473 + - uid: 14876 components: - pos: -29.5,-15.5 parent: 2 type: Transform - - uid: 474 + - uid: 14877 components: - pos: 22.5,-7.5 parent: 2 type: Transform - - uid: 475 + - uid: 14878 components: - pos: 22.5,-2.5 parent: 2 type: Transform - - uid: 477 + - uid: 14879 components: - pos: 20.5,-7.5 parent: 2 type: Transform - - uid: 478 + - uid: 14880 components: - pos: 21.5,-7.5 parent: 2 type: Transform - - uid: 479 + - uid: 14881 components: - pos: -0.5,-29.5 parent: 2 type: Transform - - uid: 480 + - uid: 14882 components: - pos: 22.5,-3.5 parent: 2 type: Transform - - uid: 484 + - uid: 14883 components: - pos: -30.5,-19.5 parent: 2 type: Transform - - uid: 488 + - uid: 14884 components: - pos: 22.5,-6.5 parent: 2 type: Transform - - uid: 492 + - uid: 14885 components: - pos: -33.5,-19.5 parent: 2 type: Transform - - uid: 512 + - uid: 14886 components: - pos: 0.5,-29.5 parent: 2 type: Transform - - uid: 516 + - uid: 14887 components: - pos: 1.5,-32.5 parent: 2 type: Transform - - uid: 517 + - uid: 14888 components: - pos: -4.5,-30.5 parent: 2 type: Transform - - uid: 519 + - uid: 14889 components: - pos: 1.5,-29.5 parent: 2 type: Transform - - uid: 520 + - uid: 14890 components: - pos: -0.5,-32.5 parent: 2 type: Transform - - uid: 525 + - uid: 14891 components: - pos: 7.5,-34.5 parent: 2 type: Transform - - uid: 527 + - uid: 14892 components: - pos: -23.5,-41.5 parent: 2 type: Transform - - uid: 529 - components: - - rot: -1.5707963267948966 rad - pos: -7.5,-46.5 - parent: 2 - type: Transform - - uid: 530 - components: - - rot: -1.5707963267948966 rad - pos: -6.5,-46.5 - parent: 2 - type: Transform - - uid: 549 + - uid: 14893 components: - pos: -26.5,-4.5 parent: 2 type: Transform - - uid: 607 + - uid: 14894 components: - pos: -32.5,-19.5 parent: 2 type: Transform - - uid: 690 + - uid: 14895 components: - pos: -45.5,-7.5 parent: 2 type: Transform - - uid: 698 + - uid: 14896 components: - pos: -29.5,-11.5 parent: 2 type: Transform - - uid: 700 + - uid: 14897 components: - pos: -9.5,-41.5 parent: 2 type: Transform - - uid: 707 + - uid: 14898 components: - pos: -26.5,-16.5 parent: 2 type: Transform - - uid: 726 + - uid: 14899 components: - pos: 0.5,-19.5 parent: 2 type: Transform - - uid: 727 + - uid: 14900 components: - pos: 0.5,-20.5 parent: 2 type: Transform - - uid: 728 + - uid: 14901 components: - pos: 1.5,-21.5 parent: 2 type: Transform - - uid: 730 + - uid: 14902 components: - pos: 28.5,-24.5 parent: 2 type: Transform - - uid: 772 + - uid: 14903 components: - pos: -45.5,0.5 parent: 2 type: Transform - - uid: 786 + - uid: 14904 components: - pos: -26.5,-6.5 parent: 2 type: Transform - - uid: 815 + - uid: 14905 components: - pos: -9.5,-39.5 parent: 2 type: Transform - - uid: 821 + - uid: 14906 components: - pos: -5.5,-14.5 parent: 2 type: Transform - - uid: 826 + - uid: 14907 components: - pos: -26.5,-5.5 parent: 2 type: Transform - - uid: 827 + - uid: 14908 components: - pos: -25.5,-6.5 parent: 2 type: Transform - - uid: 828 + - uid: 14909 components: - pos: -23.5,-6.5 parent: 2 type: Transform - - uid: 831 + - uid: 14910 components: - pos: -19.5,-13.5 parent: 2 type: Transform - - uid: 832 + - uid: 14911 components: - pos: -20.5,-6.5 parent: 2 type: Transform - - uid: 833 + - uid: 14912 components: - pos: -26.5,-3.5 parent: 2 type: Transform - - uid: 834 + - uid: 14913 components: - pos: -19.5,-11.5 parent: 2 type: Transform - - uid: 835 + - uid: 14914 components: - pos: -19.5,-12.5 parent: 2 type: Transform - - uid: 836 + - uid: 14915 components: - pos: -28.5,-3.5 parent: 2 type: Transform - - uid: 837 + - uid: 14916 components: - pos: -19.5,-10.5 parent: 2 type: Transform - - uid: 838 + - uid: 14917 components: - pos: -19.5,-14.5 parent: 2 type: Transform - - uid: 839 + - uid: 14918 components: - pos: -19.5,-15.5 parent: 2 type: Transform - - uid: 843 + - uid: 14919 components: - pos: -25.5,-16.5 parent: 2 type: Transform - - uid: 844 + - uid: 14920 components: - pos: -29.5,-3.5 parent: 2 type: Transform - - uid: 845 + - uid: 14921 components: - pos: -30.5,-3.5 parent: 2 type: Transform - - uid: 847 + - uid: 14922 components: - pos: -42.5,-16.5 parent: 2 type: Transform - - uid: 865 + - uid: 14923 components: - pos: -38.5,4.5 parent: 2 type: Transform - - uid: 868 + - uid: 14924 components: - pos: -27.5,-3.5 parent: 2 type: Transform - - uid: 870 + - uid: 14925 components: - pos: -31.5,-3.5 parent: 2 type: Transform - - uid: 881 + - uid: 14926 components: - pos: -45.5,-5.5 parent: 2 type: Transform - - uid: 908 + - uid: 14927 components: - pos: -38.5,-2.5 parent: 2 type: Transform - - uid: 913 + - uid: 14928 components: - pos: -36.5,-17.5 parent: 2 type: Transform - - uid: 920 + - uid: 14929 components: - pos: -0.5,-15.5 parent: 2 type: Transform - - uid: 922 + - uid: 14930 components: - pos: -41.5,-16.5 parent: 2 type: Transform - - uid: 924 + - uid: 14931 components: - pos: 21.5,-2.5 parent: 2 type: Transform - - uid: 930 + - uid: 14932 components: - pos: -37.5,-1.5 parent: 2 type: Transform - - uid: 931 + - uid: 14933 components: - pos: -37.5,-0.5 parent: 2 type: Transform - - uid: 932 + - uid: 14934 components: - pos: -37.5,-2.5 parent: 2 type: Transform - - uid: 935 + - uid: 14935 components: - pos: -0.5,-14.5 parent: 2 type: Transform - - uid: 936 + - uid: 14936 components: - pos: -1.5,-14.5 parent: 2 type: Transform - - uid: 937 + - uid: 14937 components: - pos: -3.5,-14.5 parent: 2 type: Transform - - uid: 948 + - uid: 14938 components: - pos: -35.5,-3.5 parent: 2 type: Transform - - uid: 953 + - uid: 14939 components: - pos: -44.5,-19.5 parent: 2 type: Transform - - uid: 954 + - uid: 14940 components: - pos: -34.5,-3.5 parent: 2 type: Transform - - uid: 955 + - uid: 14941 components: - pos: -36.5,-3.5 parent: 2 type: Transform - - uid: 956 + - uid: 14942 components: - pos: -37.5,-3.5 parent: 2 type: Transform - - uid: 958 + - uid: 14943 components: - pos: -28.5,0.5 parent: 2 type: Transform - - uid: 965 + - uid: 14944 components: - pos: -24.5,-16.5 parent: 2 type: Transform - - uid: 970 + - uid: 14945 components: - pos: -19.5,-16.5 parent: 2 type: Transform - - uid: 971 + - uid: 14946 components: - pos: -19.5,-17.5 parent: 2 type: Transform - - uid: 977 + - uid: 14947 components: - pos: -34.5,-4.5 parent: 2 type: Transform - - uid: 987 + - uid: 14948 components: - pos: -33.5,-14.5 parent: 2 type: Transform - - uid: 998 + - uid: 14949 components: - pos: -45.5,-6.5 parent: 2 type: Transform - - uid: 1001 + - uid: 14950 components: - pos: -4.5,-14.5 parent: 2 type: Transform - - uid: 1002 + - uid: 14951 components: - pos: -35.5,-19.5 parent: 2 type: Transform - - uid: 1005 + - uid: 14952 components: - pos: -33.5,-3.5 parent: 2 type: Transform - - uid: 1006 + - uid: 14953 components: - pos: -41.5,-18.5 parent: 2 type: Transform - - uid: 1008 + - uid: 14954 components: - pos: -33.5,-18.5 parent: 2 type: Transform - - uid: 1009 + - uid: 14955 components: - pos: -33.5,-17.5 parent: 2 type: Transform - - uid: 1010 + - uid: 14956 components: - pos: -36.5,-18.5 parent: 2 type: Transform - - uid: 1011 + - uid: 14957 components: - pos: -38.5,-18.5 parent: 2 type: Transform - - uid: 1012 + - uid: 14958 components: - pos: -33.5,-16.5 parent: 2 type: Transform - - uid: 1013 + - uid: 14959 components: - pos: -33.5,-15.5 parent: 2 type: Transform - - uid: 1015 + - uid: 14960 components: - pos: -41.5,-17.5 parent: 2 type: Transform - - uid: 1019 + - uid: 14961 components: - pos: -38.5,-3.5 parent: 2 type: Transform - - uid: 1020 + - uid: 14962 components: - pos: -39.5,-3.5 parent: 2 type: Transform - - uid: 1027 + - uid: 14963 components: - pos: -38.5,-19.5 parent: 2 type: Transform - - uid: 1029 + - uid: 14964 components: - pos: -34.5,-7.5 parent: 2 type: Transform - - uid: 1030 + - uid: 14965 components: - pos: 24.5,9.5 parent: 2 type: Transform - - uid: 1031 + - uid: 14966 components: - pos: -39.5,-19.5 parent: 2 type: Transform - - uid: 1034 + - uid: 14967 components: - pos: -39.5,-7.5 parent: 2 type: Transform - - uid: 1035 + - uid: 14968 components: - pos: -39.5,-6.5 parent: 2 type: Transform - - uid: 1036 + - uid: 14969 components: - pos: -36.5,-19.5 parent: 2 type: Transform - - uid: 1037 + - uid: 14970 components: - pos: -39.5,-4.5 parent: 2 type: Transform - - uid: 1038 + - uid: 14971 components: - pos: -41.5,-19.5 parent: 2 type: Transform - - uid: 1039 + - uid: 14972 components: - pos: -40.5,-19.5 parent: 2 type: Transform - - uid: 1050 + - uid: 14973 components: - pos: -2.5,-14.5 parent: 2 type: Transform - - uid: 1060 + - uid: 14974 components: - pos: -43.5,-3.5 parent: 2 type: Transform - - uid: 1066 + - uid: 14975 components: - pos: -43.5,-16.5 parent: 2 type: Transform - - uid: 1076 + - uid: 14976 components: - pos: -44.5,-20.5 parent: 2 type: Transform - - uid: 1079 + - uid: 14977 components: - pos: -38.5,-17.5 parent: 2 type: Transform - - uid: 1080 + - uid: 14978 components: - pos: -42.5,-22.5 parent: 2 type: Transform - - uid: 1081 + - uid: 14979 components: - pos: -43.5,-22.5 parent: 2 type: Transform - - uid: 1082 + - uid: 14980 components: - pos: -44.5,-22.5 parent: 2 type: Transform - - uid: 1098 + - uid: 14981 components: - pos: -29.5,-16.5 parent: 2 type: Transform - - uid: 1099 + - uid: 14982 components: - pos: -29.5,-17.5 parent: 2 type: Transform - - uid: 1100 + - uid: 14983 components: - pos: -29.5,-18.5 parent: 2 type: Transform - - uid: 1103 + - uid: 14984 components: - pos: -27.5,-16.5 parent: 2 type: Transform - - uid: 1104 + - uid: 14985 components: - pos: 4.5,15.5 parent: 2 type: Transform - - uid: 1107 + - uid: 14986 components: - pos: 4.5,16.5 parent: 2 type: Transform - - uid: 1111 + - uid: 14987 components: - pos: -1.5,15.5 parent: 2 type: Transform - - uid: 1118 + - uid: 14988 components: - pos: -0.5,15.5 parent: 2 type: Transform - - uid: 1119 + - uid: 14989 components: - pos: 0.5,15.5 parent: 2 type: Transform - - uid: 1120 + - uid: 14990 components: - pos: 1.5,15.5 parent: 2 type: Transform - - uid: 1121 + - uid: 14991 components: - pos: 2.5,15.5 parent: 2 type: Transform - - uid: 1122 + - uid: 14992 components: - pos: 3.5,15.5 parent: 2 type: Transform - - uid: 1123 + - uid: 14993 components: - pos: 3.5,23.5 parent: 2 type: Transform - - uid: 1124 + - uid: 14994 components: - pos: 4.5,21.5 parent: 2 type: Transform - - uid: 1126 + - uid: 14995 components: - pos: 4.5,22.5 parent: 2 type: Transform - - uid: 1129 + - uid: 14996 components: - pos: 4.5,23.5 parent: 2 type: Transform - - uid: 1130 + - uid: 14997 components: - pos: 4.5,17.5 parent: 2 type: Transform - - uid: 1135 + - uid: 14998 components: - pos: -1.5,23.5 parent: 2 type: Transform - - uid: 1147 + - uid: 14999 components: - pos: 19.5,31.5 parent: 2 type: Transform - - uid: 1163 + - uid: 15000 components: - pos: 2.5,-29.5 parent: 2 type: Transform - - uid: 1172 + - uid: 15001 components: - rot: 3.141592653589793 rad pos: 29.5,5.5 parent: 2 type: Transform - - uid: 1190 + - uid: 15002 components: - rot: -1.5707963267948966 rad pos: -35.5,-21.5 parent: 2 type: Transform - - uid: 1224 + - uid: 15003 components: - rot: 3.141592653589793 rad pos: 29.5,6.5 parent: 2 type: Transform - - uid: 1254 + - uid: 15004 components: - rot: -1.5707963267948966 rad pos: -34.5,-22.5 parent: 2 type: Transform - - uid: 1273 + - uid: 15005 components: - pos: -31.5,-16.5 parent: 2 type: Transform - - uid: 1274 + - uid: 15006 components: - pos: -32.5,-16.5 parent: 2 type: Transform - - uid: 1275 + - uid: 15007 components: - pos: -29.5,-19.5 parent: 2 type: Transform - - uid: 1282 + - uid: 15008 components: - pos: -38.5,-1.5 parent: 2 type: Transform - - uid: 1283 + - uid: 15009 components: - pos: -38.5,-0.5 parent: 2 type: Transform - - uid: 1291 + - uid: 15010 components: - pos: -41.5,-22.5 parent: 2 type: Transform - - uid: 1293 + - uid: 15011 components: - rot: -1.5707963267948966 rad pos: -35.5,-22.5 parent: 2 type: Transform - - uid: 1295 + - uid: 15012 components: - pos: -44.5,-3.5 parent: 2 type: Transform - - uid: 1299 + - uid: 15013 components: - pos: -44.5,-7.5 parent: 2 type: Transform - - uid: 1300 + - uid: 15014 components: - pos: -43.5,-7.5 parent: 2 type: Transform - - uid: 1302 + - uid: 15015 components: - pos: 2.5,-34.5 parent: 2 type: Transform - - uid: 1303 + - uid: 15016 components: - pos: -40.5,-7.5 parent: 2 type: Transform - - uid: 1304 + - uid: 15017 components: - pos: -44.5,-2.5 parent: 2 type: Transform - - uid: 1305 + - uid: 15018 components: - pos: -44.5,-1.5 parent: 2 type: Transform - - uid: 1306 + - uid: 15019 components: - pos: -44.5,-0.5 parent: 2 type: Transform - - uid: 1315 + - uid: 15020 components: - pos: -41.5,-10.5 parent: 2 type: Transform - - uid: 1318 + - uid: 15021 components: - pos: -40.5,-10.5 parent: 2 type: Transform - - uid: 1347 + - uid: 15022 components: - pos: 6.5,-23.5 parent: 2 type: Transform - - uid: 1350 + - uid: 15023 components: - pos: 6.5,-28.5 parent: 2 type: Transform - - uid: 1357 + - uid: 15024 components: - pos: 6.5,-27.5 parent: 2 type: Transform - - uid: 1387 + - uid: 15025 components: - pos: 0.5,-21.5 parent: 2 type: Transform - - uid: 1390 + - uid: 15026 components: - pos: 3.5,-21.5 parent: 2 type: Transform - - uid: 1391 + - uid: 15027 components: - pos: 4.5,-21.5 parent: 2 type: Transform - - uid: 1392 + - uid: 15028 components: - pos: 5.5,-21.5 parent: 2 type: Transform - - uid: 1395 + - uid: 15029 components: - pos: 5.5,-22.5 parent: 2 type: Transform - - uid: 1396 + - uid: 15030 components: - pos: 6.5,-22.5 parent: 2 type: Transform - - uid: 1398 + - uid: 15031 components: - rot: 1.5707963267948966 rad pos: -1.5,-29.5 parent: 2 type: Transform - - uid: 1399 + - uid: 15032 components: - pos: 7.5,-22.5 parent: 2 type: Transform - - uid: 1400 + - uid: 15033 components: - pos: 8.5,-23.5 parent: 2 type: Transform - - uid: 1401 + - uid: 15034 components: - pos: 8.5,-22.5 parent: 2 type: Transform - - uid: 1422 + - uid: 15035 components: - pos: 6.5,-29.5 parent: 2 type: Transform - - uid: 1426 + - uid: 15036 components: - pos: -9.5,-38.5 parent: 2 type: Transform - - uid: 1445 + - uid: 15037 components: - pos: -45.5,-4.5 parent: 2 type: Transform - - uid: 1446 + - uid: 15038 components: - pos: -45.5,-3.5 parent: 2 type: Transform - - uid: 1448 + - uid: 15039 components: - pos: -45.5,-1.5 parent: 2 type: Transform - - uid: 1449 + - uid: 15040 components: - pos: -45.5,-0.5 parent: 2 type: Transform - - uid: 1463 + - uid: 15041 components: - pos: -41.5,-13.5 parent: 2 type: Transform - - uid: 1464 + - uid: 15042 components: - pos: -36.5,-16.5 parent: 2 type: Transform - - uid: 1465 + - uid: 15043 components: - pos: -42.5,-13.5 parent: 2 type: Transform - - uid: 1469 + - uid: 15044 components: - pos: -44.5,-16.5 parent: 2 type: Transform - - uid: 1470 + - uid: 15045 components: - pos: -44.5,-21.5 parent: 2 type: Transform - - uid: 1471 + - uid: 15046 components: - pos: -34.5,-19.5 parent: 2 type: Transform - - uid: 1472 + - uid: 15047 components: - pos: -38.5,-16.5 parent: 2 type: Transform - - uid: 1478 + - uid: 15048 components: - pos: -33.5,-22.5 parent: 2 type: Transform - - uid: 1479 + - uid: 15049 components: - pos: -32.5,-22.5 parent: 2 type: Transform - - uid: 1480 + - uid: 15050 components: - pos: -31.5,-22.5 parent: 2 type: Transform - - uid: 1481 + - uid: 15051 components: - pos: -30.5,-22.5 parent: 2 type: Transform - - uid: 1482 + - uid: 15052 components: - pos: -29.5,-22.5 parent: 2 type: Transform - - uid: 1484 + - uid: 15053 components: - pos: -9.5,-42.5 parent: 2 type: Transform - - uid: 1492 + - uid: 15054 components: - pos: -9.5,-37.5 parent: 2 type: Transform - - uid: 1496 + - uid: 15055 components: - rot: -1.5707963267948966 rad pos: -21.5,-35.5 parent: 2 type: Transform - - uid: 1499 + - uid: 15056 components: - pos: -43.5,-13.5 parent: 2 type: Transform - - uid: 1500 + - uid: 15057 components: - pos: 0.5,-32.5 parent: 2 type: Transform - - uid: 1501 + - uid: 15058 components: - pos: 1.5,-34.5 parent: 2 type: Transform - - uid: 1510 + - uid: 15059 components: - pos: -42.5,-10.5 parent: 2 type: Transform - - uid: 1512 + - uid: 15060 components: - pos: -43.5,-10.5 parent: 2 type: Transform - - uid: 1621 + - uid: 15061 components: - pos: 42.5,2.5 parent: 2 type: Transform - - uid: 1702 + - uid: 15062 components: - pos: 0.5,-16.5 parent: 2 type: Transform - - uid: 1764 + - uid: 15063 components: - pos: 3.5,-34.5 parent: 2 type: Transform - - uid: 1778 + - uid: 15064 components: - rot: 1.5707963267948966 rad pos: -32.5,-24.5 parent: 2 type: Transform - - uid: 1779 + - uid: 15065 components: - rot: 1.5707963267948966 rad pos: -31.5,-24.5 parent: 2 type: Transform - - uid: 1780 + - uid: 15066 components: - pos: 5.5,5.5 parent: 2 type: Transform - - uid: 1817 + - uid: 15067 components: - rot: 1.5707963267948966 rad pos: -52.5,-10.5 parent: 2 type: Transform - - uid: 1824 + - uid: 15068 components: - pos: 0.5,-34.5 parent: 2 type: Transform - - uid: 1826 + - uid: 15069 components: - pos: -9.5,-43.5 parent: 2 type: Transform - - uid: 1834 + - uid: 15070 components: - pos: 12.5,-41.5 parent: 2 type: Transform - - uid: 1835 + - uid: 15071 components: - pos: 9.5,-44.5 parent: 2 type: Transform - - uid: 1837 + - uid: 15072 components: - pos: 7.5,-33.5 parent: 2 type: Transform - - uid: 1871 + - uid: 15073 components: - pos: 2.5,-14.5 parent: 2 type: Transform - - uid: 1872 + - uid: 15074 components: - pos: 3.5,-14.5 parent: 2 type: Transform - - uid: 1887 - components: - - pos: -3.5,-45.5 - parent: 2 - type: Transform - - uid: 1894 + - uid: 15075 components: - pos: 13.5,9.5 parent: 2 type: Transform - - uid: 1897 + - uid: 15076 components: - pos: 6.5,13.5 parent: 2 type: Transform - - uid: 1908 + - uid: 15077 components: - pos: 23.5,-32.5 parent: 2 type: Transform - - uid: 1917 + - uid: 15078 components: - pos: 6.5,5.5 parent: 2 type: Transform - - uid: 1919 + - uid: 15079 components: - rot: 3.141592653589793 rad pos: 23.5,-27.5 parent: 2 type: Transform - - uid: 1920 + - uid: 15080 components: - rot: 3.141592653589793 rad pos: 23.5,-26.5 parent: 2 type: Transform - - uid: 1922 + - uid: 15081 components: - pos: 8.5,5.5 parent: 2 type: Transform - - uid: 1923 + - uid: 15082 components: - pos: 7.5,5.5 parent: 2 type: Transform - - uid: 1929 + - uid: 15083 components: - pos: 5.5,6.5 parent: 2 type: Transform - - uid: 1930 + - uid: 15084 components: - pos: 24.5,5.5 parent: 2 type: Transform - - uid: 1931 + - uid: 15085 components: - pos: 16.5,9.5 parent: 2 type: Transform - - uid: 1932 + - uid: 15086 components: - pos: 5.5,8.5 parent: 2 type: Transform - - uid: 1933 + - uid: 15087 components: - pos: 5.5,9.5 parent: 2 type: Transform - - uid: 1934 + - uid: 15088 components: - pos: 5.5,10.5 parent: 2 type: Transform - - uid: 1935 + - uid: 15089 components: - pos: 5.5,11.5 parent: 2 type: Transform - - uid: 1936 + - uid: 15090 components: - pos: 5.5,12.5 parent: 2 type: Transform - - uid: 1937 + - uid: 15091 components: - pos: 5.5,13.5 parent: 2 type: Transform - - uid: 1938 + - uid: 15092 components: - pos: 7.5,13.5 parent: 2 type: Transform - - uid: 1942 + - uid: 15093 components: - pos: -24.5,-17.5 parent: 2 type: Transform - - uid: 1946 + - uid: 15094 components: - pos: -19.5,-18.5 parent: 2 type: Transform - - uid: 1947 + - uid: 15095 components: - pos: -19.5,-20.5 parent: 2 type: Transform - - uid: 1952 + - uid: 15096 components: - pos: -44.5,-10.5 parent: 2 type: Transform - - uid: 1955 + - uid: 15097 components: - pos: -23.5,-17.5 parent: 2 type: Transform - - uid: 1956 + - uid: 15098 components: - pos: -44.5,-14.5 parent: 2 type: Transform - - uid: 1957 + - uid: 15099 components: - pos: -21.5,-17.5 parent: 2 type: Transform - - uid: 1958 + - uid: 15100 components: - pos: -20.5,-17.5 parent: 2 type: Transform - - uid: 1961 + - uid: 15101 components: - rot: -1.5707963267948966 rad pos: -22.5,-35.5 parent: 2 type: Transform - - uid: 1963 + - uid: 15102 components: - pos: -44.5,-12.5 parent: 2 type: Transform - - uid: 1964 + - uid: 15103 components: - pos: -44.5,-13.5 parent: 2 type: Transform - - uid: 1967 + - uid: 15104 components: - pos: -44.5,-15.5 parent: 2 type: Transform - - uid: 1971 + - uid: 15105 components: - pos: 8.5,-40.5 parent: 2 type: Transform - - uid: 1972 + - uid: 15106 components: - pos: -2.5,-29.5 parent: 2 type: Transform - - uid: 1973 + - uid: 15107 components: - pos: -3.5,-29.5 parent: 2 type: Transform - - uid: 1974 + - uid: 15108 components: - pos: -4.5,-29.5 parent: 2 type: Transform - - uid: 1976 + - uid: 15109 components: - pos: 7.5,-29.5 parent: 2 type: Transform - - uid: 1977 + - uid: 15110 components: - pos: 23.5,-25.5 parent: 2 type: Transform - - uid: 1978 + - uid: 15111 components: - pos: 23.5,-24.5 parent: 2 type: Transform - - uid: 1979 + - uid: 15112 components: - pos: 23.5,-23.5 parent: 2 type: Transform - - uid: 1985 + - uid: 15113 components: - pos: -45.5,40.5 parent: 2 type: Transform - - uid: 1988 + - uid: 15114 components: - pos: 27.5,-23.5 parent: 2 type: Transform - - uid: 1997 + - uid: 15115 components: - rot: -1.5707963267948966 rad pos: -8.5,-80.5 parent: 2 type: Transform - - uid: 1999 + - uid: 15116 components: - rot: 1.5707963267948966 rad pos: 26.5,10.5 parent: 2 type: Transform - - uid: 2003 + - uid: 15117 components: - rot: -1.5707963267948966 rad pos: -60.5,-2.5 parent: 2 type: Transform - - uid: 2004 + - uid: 15118 components: - pos: 17.5,9.5 parent: 2 type: Transform - - uid: 2014 + - uid: 15119 components: - pos: 24.5,4.5 parent: 2 type: Transform - - uid: 2017 + - uid: 15120 components: - pos: -44.5,-11.5 parent: 2 type: Transform - - uid: 2024 - components: - - rot: -1.5707963267948966 rad - pos: -8.5,-46.5 - parent: 2 - type: Transform - - uid: 2025 - components: - - pos: -4.5,-45.5 - parent: 2 - type: Transform - - uid: 2027 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-45.5 - parent: 2 - type: Transform - - uid: 2030 - components: - - pos: 1.5,-46.5 - parent: 2 - type: Transform - - uid: 2032 - components: - - pos: 1.5,-45.5 - parent: 2 - type: Transform - - uid: 2033 - components: - - rot: -1.5707963267948966 rad - pos: -5.5,-46.5 - parent: 2 - type: Transform - - uid: 2049 + - uid: 15121 components: - pos: 22.5,-18.5 parent: 2 type: Transform - - uid: 2051 + - uid: 15122 components: - pos: 22.5,-19.5 parent: 2 type: Transform - - uid: 2052 + - uid: 15123 components: - pos: 22.5,-21.5 parent: 2 type: Transform - - uid: 2066 + - uid: 15124 components: - pos: 20.5,-35.5 parent: 2 type: Transform - - uid: 2103 + - uid: 15125 components: - pos: -13.5,30.5 parent: 2 type: Transform - - uid: 2124 + - uid: 15126 components: - pos: 4.5,36.5 parent: 2 type: Transform - - uid: 2126 + - uid: 15127 components: - pos: -1.5,24.5 parent: 2 type: Transform - - uid: 2128 + - uid: 15128 components: - pos: 5.5,32.5 parent: 2 type: Transform - - uid: 2131 + - uid: 15129 components: - pos: -46.5,-19.5 parent: 2 type: Transform - - uid: 2133 + - uid: 15130 components: - pos: -45.5,-19.5 parent: 2 type: Transform - - uid: 2134 + - uid: 15131 components: - pos: -48.5,-1.5 parent: 2 type: Transform - - uid: 2138 + - uid: 15132 components: - pos: -18.5,-6.5 parent: 2 type: Transform - - uid: 2139 + - uid: 15133 components: - pos: -19.5,-5.5 parent: 2 type: Transform - - uid: 2142 + - uid: 15134 components: - rot: -1.5707963267948966 rad pos: -56.5,-18.5 parent: 2 type: Transform - - uid: 2143 + - uid: 15135 components: - pos: -47.5,-1.5 parent: 2 type: Transform - - uid: 2144 + - uid: 15136 components: - pos: -52.5,-1.5 parent: 2 type: Transform - - uid: 2145 + - uid: 15137 components: - rot: 3.141592653589793 rad pos: -48.5,-18.5 parent: 2 type: Transform - - uid: 2146 + - uid: 15138 components: - pos: -47.5,-19.5 parent: 2 type: Transform - - uid: 2147 + - uid: 15139 components: - rot: 3.141592653589793 rad pos: -48.5,-19.5 parent: 2 type: Transform - - uid: 2148 + - uid: 15140 components: - pos: -51.5,-1.5 parent: 2 type: Transform - - uid: 2151 + - uid: 15141 components: - rot: 3.141592653589793 rad pos: -48.5,-17.5 parent: 2 type: Transform - - uid: 2152 + - uid: 15142 components: - rot: 3.141592653589793 rad pos: -48.5,-16.5 parent: 2 type: Transform - - uid: 2153 + - uid: 15143 components: - rot: 3.141592653589793 rad pos: -48.5,-15.5 parent: 2 type: Transform - - uid: 2154 + - uid: 15144 components: - rot: 3.141592653589793 rad pos: -48.5,-14.5 parent: 2 type: Transform - - uid: 2155 + - uid: 15145 components: - rot: 3.141592653589793 rad pos: -48.5,-13.5 parent: 2 type: Transform - - uid: 2156 + - uid: 15146 components: - rot: 3.141592653589793 rad pos: -48.5,-12.5 parent: 2 type: Transform - - uid: 2157 + - uid: 15147 components: - rot: 3.141592653589793 rad pos: -48.5,-11.5 parent: 2 type: Transform - - uid: 2158 + - uid: 15148 components: - pos: -48.5,-0.5 parent: 2 type: Transform - - uid: 2159 + - uid: 15149 components: - pos: -48.5,0.5 parent: 2 type: Transform - - uid: 2160 + - uid: 15150 components: - pos: -48.5,1.5 parent: 2 type: Transform - - uid: 2161 + - uid: 15151 components: - pos: -48.5,2.5 parent: 2 type: Transform - - uid: 2162 + - uid: 15152 components: - rot: -1.5707963267948966 rad pos: -49.5,4.5 parent: 2 type: Transform - - uid: 2163 + - uid: 15153 components: - rot: -1.5707963267948966 rad pos: -52.5,3.5 parent: 2 type: Transform - - uid: 2164 + - uid: 15154 components: - pos: -50.5,-10.5 parent: 2 type: Transform - - uid: 2165 + - uid: 15155 components: - rot: 1.5707963267948966 rad pos: -52.5,-7.5 parent: 2 type: Transform - - uid: 2166 + - uid: 15156 components: - rot: 1.5707963267948966 rad pos: -53.5,-10.5 parent: 2 type: Transform - - uid: 2167 - components: - - pos: -50.5,-7.5 - parent: 2 - type: Transform - - uid: 2168 - components: - - pos: -50.5,-6.5 - parent: 2 - type: Transform - - uid: 2169 - components: - - pos: -50.5,-5.5 - parent: 2 - type: Transform - - uid: 2170 - components: - - pos: -50.5,-1.5 - parent: 2 - type: Transform - - uid: 2179 - components: - - pos: -9.5,-40.5 - parent: 2 - type: Transform - - uid: 2182 - components: - - pos: -9.5,-46.5 - parent: 2 - type: Transform - - uid: 2183 - components: - - pos: -41.5,-30.5 - parent: 2 - type: Transform - - uid: 2185 + - uid: 15157 components: - - pos: -23.5,-31.5 + - pos: -50.5,-7.5 parent: 2 type: Transform - - uid: 2188 + - uid: 15158 components: - - pos: -17.5,-40.5 + - pos: -50.5,-6.5 parent: 2 type: Transform - - uid: 2190 + - uid: 15159 components: - - pos: -17.5,-38.5 + - pos: -50.5,-5.5 parent: 2 type: Transform - - uid: 2193 + - uid: 15160 components: - - pos: -17.5,-36.5 + - pos: -50.5,-1.5 parent: 2 type: Transform - - uid: 2195 + - uid: 15161 components: - - pos: -9.5,-36.5 + - pos: -9.5,-40.5 parent: 2 type: Transform - - uid: 2197 + - uid: 15162 components: - - pos: -9.5,-44.5 + - pos: -9.5,-46.5 parent: 2 type: Transform - - uid: 2198 + - uid: 15163 components: - - rot: 3.141592653589793 rad - pos: -4.5,-44.5 + - pos: -41.5,-30.5 parent: 2 type: Transform - - uid: 2199 + - uid: 15164 components: - - rot: 3.141592653589793 rad - pos: -4.5,-43.5 + - pos: -23.5,-31.5 parent: 2 type: Transform - - uid: 2206 + - uid: 15165 components: - - rot: 1.5707963267948966 rad - pos: 7.5,-49.5 + - pos: -17.5,-40.5 parent: 2 type: Transform - - uid: 2209 + - uid: 15166 components: - - rot: -1.5707963267948966 rad - pos: -17.5,-26.5 + - pos: -17.5,-38.5 parent: 2 type: Transform - - uid: 2213 + - uid: 15167 components: - - rot: 3.141592653589793 rad - pos: -2.5,-43.5 + - pos: -17.5,-36.5 parent: 2 type: Transform - - uid: 2218 + - uid: 15168 components: - - rot: -1.5707963267948966 rad - pos: 1.5,-50.5 + - pos: -9.5,-36.5 parent: 2 type: Transform - - uid: 2222 + - uid: 15169 components: - - rot: -1.5707963267948966 rad - pos: 4.5,-52.5 + - pos: -9.5,-44.5 parent: 2 type: Transform - - uid: 2223 + - uid: 15170 components: - rot: -1.5707963267948966 rad - pos: 7.5,-51.5 + pos: -17.5,-26.5 parent: 2 type: Transform - - uid: 2224 + - uid: 15171 components: - - rot: -1.5707963267948966 rad - pos: 7.5,-52.5 + - rot: 1.5707963267948966 rad + pos: 7.5,-46.5 parent: 2 type: Transform - - uid: 2225 + - uid: 15172 components: - pos: -23.5,-42.5 parent: 2 type: Transform - - uid: 2226 + - uid: 15173 components: - pos: -24.5,-48.5 parent: 2 type: Transform - - uid: 2228 + - uid: 15174 components: - rot: -1.5707963267948966 rad pos: -24.5,-41.5 parent: 2 type: Transform - - uid: 2235 + - uid: 15175 components: - pos: -18.5,-47.5 parent: 2 type: Transform - - uid: 2239 + - uid: 15176 components: - pos: -26.5,-23.5 parent: 2 type: Transform - - uid: 2246 - components: - - rot: 3.141592653589793 rad - pos: -2.5,-42.5 - parent: 2 - type: Transform - - uid: 2248 + - uid: 15177 components: - pos: -23.5,-34.5 parent: 2 type: Transform - - uid: 2250 + - uid: 15178 components: - pos: -23.5,-35.5 parent: 2 type: Transform - - uid: 2254 + - uid: 15179 components: - pos: 8.5,-45.5 parent: 2 type: Transform - - uid: 2255 + - uid: 15180 components: - pos: 8.5,-44.5 parent: 2 type: Transform - - uid: 2256 + - uid: 15181 components: - pos: 8.5,-43.5 parent: 2 type: Transform - - uid: 2257 + - uid: 15182 components: - pos: 8.5,-42.5 parent: 2 type: Transform - - uid: 2258 + - uid: 15183 components: - pos: 8.5,-41.5 parent: 2 type: Transform - - uid: 2265 + - uid: 15184 components: - pos: -19.5,-21.5 parent: 2 type: Transform - - uid: 2268 + - uid: 15185 components: - pos: -19.5,-47.5 parent: 2 type: Transform - - uid: 2271 - components: - - rot: 3.141592653589793 rad - pos: -4.5,-42.5 - parent: 2 - type: Transform - - uid: 2273 + - uid: 15186 components: - pos: -26.5,-25.5 parent: 2 type: Transform - - uid: 2274 + - uid: 15187 components: - pos: -23.5,-26.5 parent: 2 type: Transform - - uid: 2276 + - uid: 15188 components: - pos: -14.5,-47.5 parent: 2 type: Transform - - uid: 2280 + - uid: 15189 components: - pos: -19.5,-25.5 parent: 2 type: Transform - - uid: 2287 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-48.5 - parent: 2 - type: Transform - - uid: 2288 + - uid: 15190 components: - pos: -26.5,-24.5 parent: 2 type: Transform - - uid: 2295 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-44.5 - parent: 2 - type: Transform - - uid: 2302 + - uid: 15191 components: - rot: -1.5707963267948966 rad pos: -24.5,-35.5 parent: 2 type: Transform - - uid: 2303 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-50.5 - parent: 2 - type: Transform - - uid: 2304 + - uid: 15192 components: - pos: -23.5,-48.5 parent: 2 type: Transform - - uid: 2306 + - uid: 15193 components: - pos: -26.5,-26.5 parent: 2 type: Transform - - uid: 2308 - components: - - rot: 1.5707963267948966 rad - pos: 7.5,-47.5 - parent: 2 - type: Transform - - uid: 2310 + - uid: 15194 components: - pos: -25.5,-26.5 parent: 2 type: Transform - - uid: 2311 + - uid: 15195 components: - pos: -24.5,-26.5 parent: 2 type: Transform - - uid: 2312 + - uid: 15196 components: - pos: -22.5,-26.5 parent: 2 type: Transform - - uid: 2315 + - uid: 15197 components: - pos: -20.5,-26.5 parent: 2 type: Transform - - uid: 2316 + - uid: 15198 components: - pos: -19.5,-26.5 parent: 2 type: Transform - - uid: 2344 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-45.5 - parent: 2 - type: Transform - - uid: 2345 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-45.5 - parent: 2 - type: Transform - - uid: 2346 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-45.5 - parent: 2 - type: Transform - - uid: 2348 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-41.5 - parent: 2 - type: Transform - - uid: 2349 - components: - - rot: -1.5707963267948966 rad - pos: 7.5,-43.5 - parent: 2 - type: Transform - - uid: 2351 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-41.5 - parent: 2 - type: Transform - - uid: 2352 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-43.5 - parent: 2 - type: Transform - - uid: 2353 - components: - - rot: -1.5707963267948966 rad - pos: 6.5,-41.5 - parent: 2 - type: Transform - - uid: 2355 - components: - - rot: -1.5707963267948966 rad - pos: 5.5,-43.5 - parent: 2 - type: Transform - - uid: 2362 + - uid: 15199 components: - - rot: -1.5707963267948966 rad - pos: 3.5,-52.5 + - rot: 1.5707963267948966 rad + pos: 4.5,-46.5 parent: 2 type: Transform - - uid: 2367 + - uid: 15200 components: - rot: 3.141592653589793 rad pos: -39.5,-29.5 parent: 2 type: Transform - - uid: 2369 + - uid: 15201 components: - rot: 3.141592653589793 rad pos: -35.5,-29.5 parent: 2 type: Transform - - uid: 2371 + - uid: 15202 components: - pos: -38.5,-29.5 parent: 2 type: Transform - - uid: 2372 - components: - - rot: -1.5707963267948966 rad - pos: 2.5,-52.5 - parent: 2 - type: Transform - - uid: 2373 + - uid: 15203 components: - rot: 3.141592653589793 rad pos: -28.5,-29.5 parent: 2 type: Transform - - uid: 2376 + - uid: 15204 components: - rot: 3.141592653589793 rad pos: -29.5,-29.5 parent: 2 type: Transform - - uid: 2378 + - uid: 15205 components: - rot: -1.5707963267948966 rad pos: -20.5,-41.5 parent: 2 type: Transform - - uid: 2379 + - uid: 15206 components: - rot: -1.5707963267948966 rad pos: -21.5,-41.5 parent: 2 type: Transform - - uid: 2380 + - uid: 15207 components: - rot: -1.5707963267948966 rad pos: -22.5,-41.5 parent: 2 type: Transform - - uid: 2381 + - uid: 15208 components: - rot: -1.5707963267948966 rad pos: -20.5,-35.5 parent: 2 type: Transform - - uid: 2382 + - uid: 15209 components: - rot: -1.5707963267948966 rad pos: -23.5,-45.5 parent: 2 type: Transform - - uid: 2388 + - uid: 15210 components: - pos: -25.5,-47.5 parent: 2 type: Transform - - uid: 2395 + - uid: 15211 components: - rot: 3.141592653589793 rad pos: -25.5,-29.5 parent: 2 type: Transform - - uid: 2397 + - uid: 15212 components: - pos: 13.5,13.5 parent: 2 type: Transform - - uid: 2398 + - uid: 15213 components: - rot: -1.5707963267948966 rad pos: -27.5,-29.5 parent: 2 type: Transform - - uid: 2399 + - uid: 15214 components: - rot: 3.141592653589793 rad pos: -24.5,-29.5 parent: 2 type: Transform - - uid: 2401 + - uid: 15215 components: - rot: 3.141592653589793 rad pos: -24.5,-47.5 parent: 2 type: Transform - - uid: 2403 + - uid: 15216 components: - rot: 3.141592653589793 rad pos: -23.5,-47.5 parent: 2 type: Transform - - uid: 2406 + - uid: 15217 components: - pos: -40.5,-46.5 parent: 2 type: Transform - - uid: 2408 + - uid: 15218 components: - rot: 3.141592653589793 rad pos: -29.5,-47.5 parent: 2 type: Transform - - uid: 2409 + - uid: 15219 components: - pos: -30.5,-47.5 parent: 2 type: Transform - - uid: 2412 + - uid: 15220 components: - rot: 3.141592653589793 rad pos: -33.5,-47.5 parent: 2 type: Transform - - uid: 2414 + - uid: 15221 components: - rot: 3.141592653589793 rad pos: -34.5,-47.5 parent: 2 type: Transform - - uid: 2427 + - uid: 15222 components: - pos: 12.5,-44.5 parent: 2 type: Transform - - uid: 2429 + - uid: 15223 components: - rot: -1.5707963267948966 rad pos: -23.5,-30.5 parent: 2 type: Transform - - uid: 2430 + - uid: 15224 components: - rot: 3.141592653589793 rad pos: -23.5,-29.5 parent: 2 type: Transform - - uid: 2432 + - uid: 15225 components: - rot: 3.141592653589793 rad pos: -38.5,-47.5 parent: 2 type: Transform - - uid: 2433 + - uid: 15226 components: - rot: 3.141592653589793 rad pos: -39.5,-47.5 parent: 2 type: Transform - - uid: 2434 + - uid: 15227 components: - pos: -41.5,-29.5 parent: 2 type: Transform - - uid: 2436 + - uid: 15228 components: - pos: -40.5,-47.5 parent: 2 type: Transform - - uid: 2437 + - uid: 15229 components: - pos: -41.5,-46.5 parent: 2 type: Transform - - uid: 2438 + - uid: 15230 components: - pos: -39.5,-30.5 parent: 2 type: Transform - - uid: 2447 + - uid: 15231 components: - pos: -40.5,-45.5 parent: 2 type: Transform - - uid: 2451 + - uid: 15232 components: - pos: -40.5,-41.5 parent: 2 type: Transform - - uid: 2452 + - uid: 15233 components: - pos: -40.5,-40.5 parent: 2 type: Transform - - uid: 2453 + - uid: 15234 components: - pos: -17.5,-35.5 parent: 2 type: Transform - - uid: 2456 + - uid: 15235 components: - pos: -40.5,-36.5 parent: 2 type: Transform - - uid: 2457 + - uid: 15236 components: - pos: -40.5,-35.5 parent: 2 type: Transform - - uid: 2461 + - uid: 15237 components: - pos: -40.5,-31.5 parent: 2 type: Transform - - uid: 2468 + - uid: 15238 components: - pos: -18.5,-35.5 parent: 2 type: Transform - - uid: 2469 + - uid: 15239 components: - pos: -18.5,-41.5 parent: 2 type: Transform - - uid: 2470 + - uid: 15240 components: - pos: -17.5,-41.5 parent: 2 type: Transform - - uid: 2471 + - uid: 15241 components: - pos: -40.5,-29.5 parent: 2 type: Transform - - uid: 2473 + - uid: 15242 components: - pos: 3.5,-35.5 parent: 2 type: Transform - - uid: 2476 + - uid: 15243 components: - pos: -9.5,-45.5 parent: 2 type: Transform - - uid: 2506 + - uid: 15244 components: - pos: -41.5,-47.5 parent: 2 type: Transform - - uid: 2507 + - uid: 15245 components: - pos: -39.5,-46.5 parent: 2 type: Transform - - uid: 2508 + - uid: 15246 components: - pos: -40.5,-30.5 parent: 2 type: Transform - - uid: 2521 + - uid: 15247 components: - pos: 6.5,-40.5 parent: 2 type: Transform - - uid: 2562 + - uid: 15248 components: - pos: -41.5,-28.5 parent: 2 type: Transform - - uid: 2568 + - uid: 15249 components: - pos: -39.5,-48.5 parent: 2 type: Transform - - uid: 2569 + - uid: 15250 components: - pos: -40.5,-48.5 parent: 2 type: Transform - - uid: 2570 + - uid: 15251 components: - pos: -41.5,-48.5 parent: 2 type: Transform - - uid: 2571 + - uid: 15252 components: - pos: -22.5,-48.5 parent: 2 type: Transform - - uid: 2584 + - uid: 15253 components: - pos: -40.5,-28.5 parent: 2 type: Transform - - uid: 2586 + - uid: 15254 components: - pos: -20.5,-47.5 parent: 2 type: Transform - - uid: 2587 + - uid: 15255 components: - pos: -39.5,-28.5 parent: 2 type: Transform - - uid: 2588 + - uid: 15256 components: - pos: -29.5,-25.5 parent: 2 type: Transform - - uid: 2589 + - uid: 15257 components: - pos: -33.5,-26.5 parent: 2 type: Transform - - uid: 2590 + - uid: 15258 components: - rot: 3.141592653589793 rad pos: -33.5,-29.5 parent: 2 type: Transform - - uid: 2591 + - uid: 15259 components: - rot: 3.141592653589793 rad pos: -34.5,-28.5 parent: 2 type: Transform - - uid: 2596 + - uid: 15260 components: - rot: 3.141592653589793 rad pos: -33.5,-28.5 parent: 2 type: Transform - - uid: 2597 + - uid: 15261 components: - pos: -29.5,-28.5 parent: 2 type: Transform - - uid: 2602 + - uid: 15262 components: - pos: -29.5,-24.5 parent: 2 type: Transform - - uid: 2604 + - uid: 15263 components: - pos: -29.5,-23.5 parent: 2 type: Transform - - uid: 2608 + - uid: 15264 components: - rot: 1.5707963267948966 rad pos: -21.5,-48.5 parent: 2 type: Transform - - uid: 2609 + - uid: 15265 components: - rot: -1.5707963267948966 rad pos: -13.5,-47.5 parent: 2 type: Transform - - uid: 2610 + - uid: 15266 components: - rot: -1.5707963267948966 rad pos: -12.5,-47.5 parent: 2 type: Transform - - uid: 2617 + - uid: 15267 components: - rot: -1.5707963267948966 rad pos: -9.5,-47.5 parent: 2 type: Transform - - uid: 2620 + - uid: 15268 components: - rot: -1.5707963267948966 rad pos: -10.5,-47.5 parent: 2 type: Transform - - uid: 2621 + - uid: 15269 components: - rot: -1.5707963267948966 rad pos: -11.5,-47.5 parent: 2 type: Transform - - uid: 2624 + - uid: 15270 components: - - rot: -1.5707963267948966 rad - pos: 3.5,-50.5 + - rot: 1.5707963267948966 rad + pos: 4.5,-48.5 parent: 2 type: Transform - - uid: 2663 + - uid: 15271 components: - pos: 8.5,-35.5 parent: 2 type: Transform - - uid: 2675 + - uid: 15272 components: - pos: 5.5,-40.5 parent: 2 type: Transform - - uid: 2711 + - uid: 15273 components: - rot: 1.5707963267948966 rad pos: -20.5,-48.5 parent: 2 type: Transform - - uid: 2714 + - uid: 15274 components: - pos: -33.5,-27.5 parent: 2 type: Transform - - uid: 2715 + - uid: 15275 components: - rot: -1.5707963267948966 rad pos: -23.5,-28.5 parent: 2 type: Transform - - uid: 2716 + - uid: 15276 components: - pos: 13.5,14.5 parent: 2 type: Transform - - uid: 2718 + - uid: 15277 components: - pos: 13.5,11.5 parent: 2 type: Transform - - uid: 2728 + - uid: 15278 components: - rot: 3.141592653589793 rad pos: -34.5,-29.5 parent: 2 type: Transform - - uid: 2753 + - uid: 15279 components: - rot: -1.5707963267948966 rad pos: -26.5,-29.5 parent: 2 type: Transform - - uid: 2793 + - uid: 15280 components: - pos: -33.5,-25.5 parent: 2 type: Transform - - uid: 2794 + - uid: 15281 components: - pos: -33.5,-24.5 parent: 2 type: Transform - - uid: 2839 + - uid: 15282 components: - pos: -24.5,-30.5 parent: 2 type: Transform - - uid: 2874 + - uid: 15283 components: - pos: 7.5,-40.5 parent: 2 type: Transform - - uid: 2875 + - uid: 15284 components: - rot: 3.141592653589793 rad pos: -53.5,-15.5 parent: 2 type: Transform - - uid: 2887 - components: - - pos: 1.5,-52.5 - parent: 2 - type: Transform - - uid: 2888 - components: - - pos: -4.5,-47.5 - parent: 2 - type: Transform - - uid: 2893 - components: - - pos: -4.5,-52.5 - parent: 2 - type: Transform - - uid: 2896 - components: - - pos: -1.5,-52.5 - parent: 2 - type: Transform - - uid: 2905 - components: - - pos: -1.5,-50.5 - parent: 2 - type: Transform - - uid: 2906 - components: - - pos: -2.5,-50.5 - parent: 2 - type: Transform - - uid: 2907 - components: - - pos: -2.5,-48.5 - parent: 2 - type: Transform - - uid: 2934 + - uid: 15285 components: - pos: 8.5,-34.5 parent: 2 type: Transform - - uid: 2944 + - uid: 15286 components: - pos: 8.5,-39.5 parent: 2 type: Transform - - uid: 2949 + - uid: 15287 components: - pos: 8.5,-36.5 parent: 2 type: Transform - - uid: 2950 - components: - - pos: 3.5,-40.5 - parent: 2 - type: Transform - - uid: 2955 + - uid: 15288 components: - pos: 4.5,-40.5 parent: 2 type: Transform - - uid: 2999 + - uid: 15289 components: - pos: -55.5,2.5 parent: 2 type: Transform - - uid: 3000 + - uid: 15290 components: - pos: -52.5,-5.5 parent: 2 type: Transform - - uid: 3005 + - uid: 15291 components: - rot: 1.5707963267948966 rad pos: -51.5,-10.5 parent: 2 type: Transform - - uid: 3006 + - uid: 15292 components: - rot: 1.5707963267948966 rad pos: -51.5,-7.5 parent: 2 type: Transform - - uid: 3007 + - uid: 15293 components: - pos: -51.5,-5.5 parent: 2 type: Transform - - uid: 3014 + - uid: 15294 components: - pos: -50.5,-3.5 parent: 2 type: Transform - - uid: 3018 + - uid: 15295 components: - rot: 1.5707963267948966 rad pos: -53.5,-7.5 parent: 2 type: Transform - - uid: 3019 + - uid: 15296 components: - rot: 1.5707963267948966 rad pos: -53.5,-5.5 parent: 2 type: Transform - - uid: 3020 + - uid: 15297 components: - rot: 1.5707963267948966 rad pos: -53.5,-1.5 parent: 2 type: Transform - - uid: 3021 + - uid: 15298 components: - rot: -1.5707963267948966 rad pos: -52.5,4.5 parent: 2 type: Transform - - uid: 3028 + - uid: 15299 components: - rot: -1.5707963267948966 rad pos: -57.5,-18.5 parent: 2 type: Transform - - uid: 3029 + - uid: 15300 components: - rot: -1.5707963267948966 rad pos: -60.5,-17.5 parent: 2 type: Transform - - uid: 3031 + - uid: 15301 components: - rot: 3.141592653589793 rad pos: -59.5,-15.5 parent: 2 type: Transform - - uid: 3032 + - uid: 15302 components: - rot: 3.141592653589793 rad pos: -54.5,-17.5 parent: 2 type: Transform - - uid: 3033 + - uid: 15303 components: - rot: 3.141592653589793 rad pos: -57.5,-16.5 parent: 2 type: Transform - - uid: 3034 + - uid: 15304 components: - rot: -1.5707963267948966 rad pos: -60.5,-18.5 parent: 2 type: Transform - - uid: 3035 + - uid: 15305 components: - rot: -1.5707963267948966 rad pos: -49.5,-11.5 parent: 2 type: Transform - - uid: 3036 + - uid: 15306 components: - rot: -1.5707963267948966 rad pos: -59.5,-18.5 parent: 2 type: Transform - - uid: 3037 + - uid: 15307 components: - rot: -1.5707963267948966 rad pos: -51.5,-18.5 parent: 2 type: Transform - - uid: 3038 + - uid: 15308 components: - rot: -1.5707963267948966 rad pos: -50.5,-11.5 parent: 2 type: Transform - - uid: 3041 + - uid: 15309 components: - rot: -1.5707963267948966 rad pos: -54.5,-18.5 parent: 2 type: Transform - - uid: 3042 + - uid: 15310 components: - rot: 3.141592653589793 rad pos: -53.5,-18.5 parent: 2 type: Transform - - uid: 3043 + - uid: 15311 components: - pos: -58.5,-10.5 parent: 2 type: Transform - - uid: 3044 + - uid: 15312 components: - pos: -59.5,-10.5 parent: 2 type: Transform - - uid: 3045 + - uid: 15313 components: - pos: -60.5,-10.5 parent: 2 type: Transform - - uid: 3046 + - uid: 15314 components: - pos: -61.5,-10.5 parent: 2 type: Transform - - uid: 3052 + - uid: 15315 components: - pos: -61.5,-4.5 parent: 2 type: Transform - - uid: 3053 + - uid: 15316 components: - pos: -60.5,-4.5 parent: 2 type: Transform - - uid: 3054 + - uid: 15317 components: - pos: -59.5,-4.5 parent: 2 type: Transform - - uid: 3055 + - uid: 15318 components: - pos: -58.5,-4.5 parent: 2 type: Transform - - uid: 3057 + - uid: 15319 components: - rot: -1.5707963267948966 rad pos: -59.5,-3.5 parent: 2 type: Transform - - uid: 3059 + - uid: 15320 components: - pos: 20.5,13.5 parent: 2 type: Transform - - uid: 3060 + - uid: 15321 components: - pos: 20.5,10.5 parent: 2 type: Transform - - uid: 3061 + - uid: 15322 components: - pos: 20.5,14.5 parent: 2 type: Transform - - uid: 3068 + - uid: 15323 components: - pos: -54.5,-1.5 parent: 2 type: Transform - - uid: 3071 + - uid: 15324 components: - rot: -1.5707963267948966 rad pos: -51.5,8.5 parent: 2 type: Transform - - uid: 3072 + - uid: 15325 components: - pos: -54.5,-3.5 parent: 2 type: Transform - - uid: 3073 + - uid: 15326 components: - rot: -1.5707963267948966 rad pos: -59.5,-2.5 parent: 2 type: Transform - - uid: 3074 + - uid: 15327 components: - rot: -1.5707963267948966 rad pos: -60.5,3.5 parent: 2 type: Transform - - uid: 3076 + - uid: 15328 components: - rot: -1.5707963267948966 rad pos: -56.5,3.5 parent: 2 type: Transform - - uid: 3077 + - uid: 15329 components: - rot: -1.5707963267948966 rad pos: -55.5,3.5 parent: 2 type: Transform - - uid: 3078 + - uid: 15330 components: - rot: -1.5707963267948966 rad pos: -59.5,3.5 parent: 2 type: Transform - - uid: 3082 + - uid: 15331 components: - pos: 19.5,14.5 parent: 2 type: Transform - - uid: 3087 + - uid: 15332 components: - pos: 17.5,-2.5 parent: 2 type: Transform - - uid: 3089 + - uid: 15333 components: - pos: -18.5,-50.5 parent: 2 type: Transform - - uid: 3091 + - uid: 15334 components: - pos: -14.5,-50.5 parent: 2 type: Transform - - uid: 3092 + - uid: 15335 components: - pos: -18.5,-49.5 parent: 2 type: Transform - - uid: 3094 + - uid: 15336 components: - pos: -18.5,-48.5 parent: 2 type: Transform - - uid: 3095 + - uid: 15337 components: - pos: -14.5,-48.5 parent: 2 type: Transform - - uid: 3096 + - uid: 15338 components: - rot: -1.5707963267948966 rad pos: -48.5,3.5 parent: 2 type: Transform - - uid: 3098 + - uid: 15339 components: - rot: 1.5707963267948966 rad pos: -50.5,2.5 parent: 2 type: Transform - - uid: 3100 + - uid: 15340 components: - rot: 1.5707963267948966 rad pos: -49.5,2.5 parent: 2 type: Transform - - uid: 3101 + - uid: 15341 components: - pos: 17.5,14.5 parent: 2 type: Transform - - uid: 3104 + - uid: 15342 components: - pos: -54.5,-5.5 parent: 2 type: Transform - - uid: 3108 + - uid: 15343 components: - rot: 1.5707963267948966 rad pos: 41.5,-12.5 parent: 2 type: Transform - - uid: 3116 + - uid: 15344 components: - rot: 1.5707963267948966 rad pos: 41.5,-4.5 parent: 2 type: Transform - - uid: 3130 + - uid: 15345 components: - rot: -1.5707963267948966 rad pos: -51.5,4.5 parent: 2 type: Transform - - uid: 3137 + - uid: 15346 components: - rot: -1.5707963267948966 rad pos: -57.5,-10.5 parent: 2 type: Transform - - uid: 3142 + - uid: 15347 components: - pos: 20.5,9.5 parent: 2 type: Transform - - uid: 3143 + - uid: 15348 components: - rot: -1.5707963267948966 rad pos: -50.5,4.5 parent: 2 type: Transform - - uid: 3144 + - uid: 15349 components: - rot: -1.5707963267948966 rad pos: -48.5,4.5 parent: 2 type: Transform - - uid: 3145 + - uid: 15350 components: - rot: 3.141592653589793 rad pos: -52.5,2.5 parent: 2 type: Transform - - uid: 3148 + - uid: 15351 components: - rot: -1.5707963267948966 rad pos: -57.5,-4.5 parent: 2 type: Transform - - uid: 3150 + - uid: 15352 components: - rot: -1.5707963267948966 rad pos: -57.5,-5.5 parent: 2 type: Transform - - uid: 3152 + - uid: 15353 components: - rot: -1.5707963267948966 rad pos: -57.5,-9.5 parent: 2 type: Transform - - uid: 3154 + - uid: 15354 components: - rot: 3.141592653589793 rad pos: -57.5,-11.5 parent: 2 type: Transform - - uid: 3158 + - uid: 15355 components: - rot: -1.5707963267948966 rad pos: -60.5,-12.5 parent: 2 type: Transform - - uid: 3160 + - uid: 15356 components: - rot: -1.5707963267948966 rad pos: -50.5,-18.5 parent: 2 type: Transform - - uid: 3161 + - uid: 15357 components: - rot: -1.5707963267948966 rad pos: -60.5,-13.5 parent: 2 type: Transform - - uid: 3162 + - uid: 15358 components: - rot: -1.5707963267948966 rad pos: -60.5,-14.5 parent: 2 type: Transform - - uid: 3163 + - uid: 15359 components: - rot: -1.5707963267948966 rad pos: -60.5,-15.5 parent: 2 type: Transform - - uid: 3164 + - uid: 15360 components: - rot: -1.5707963267948966 rad pos: -60.5,-16.5 parent: 2 type: Transform - - uid: 3165 + - uid: 15361 components: - rot: -1.5707963267948966 rad pos: -51.5,44.5 parent: 2 type: Transform - - uid: 3166 + - uid: 15362 components: - rot: 3.141592653589793 rad pos: -51.5,-17.5 parent: 2 type: Transform - - uid: 3167 + - uid: 15363 components: - rot: 3.141592653589793 rad pos: -54.5,-16.5 parent: 2 type: Transform - - uid: 3169 + - uid: 15364 components: - rot: 3.141592653589793 rad pos: -51.5,-16.5 parent: 2 type: Transform - - uid: 3170 + - uid: 15365 components: - rot: 3.141592653589793 rad pos: -50.5,-15.5 parent: 2 type: Transform - - uid: 3171 + - uid: 15366 components: - rot: 3.141592653589793 rad pos: -54.5,-15.5 parent: 2 type: Transform - - uid: 3172 + - uid: 15367 components: - rot: 3.141592653589793 rad pos: -57.5,-15.5 parent: 2 type: Transform - - uid: 3173 + - uid: 15368 components: - rot: 3.141592653589793 rad pos: -56.5,-15.5 parent: 2 type: Transform - - uid: 3174 + - uid: 15369 components: - rot: 3.141592653589793 rad pos: -57.5,-17.5 parent: 2 type: Transform - - uid: 3178 + - uid: 15370 components: - rot: -1.5707963267948966 rad pos: -61.5,3.5 parent: 2 type: Transform - - uid: 3179 + - uid: 15371 components: - rot: -1.5707963267948966 rad pos: -61.5,2.5 parent: 2 type: Transform - - uid: 3180 + - uid: 15372 components: - rot: -1.5707963267948966 rad pos: -61.5,1.5 parent: 2 type: Transform - - uid: 3181 + - uid: 15373 components: - rot: -1.5707963267948966 rad pos: -61.5,0.5 parent: 2 type: Transform - - uid: 3184 + - uid: 15374 components: - rot: -1.5707963267948966 rad pos: -61.5,-2.5 parent: 2 type: Transform - - uid: 3206 + - uid: 15375 components: - rot: 3.141592653589793 rad pos: -57.5,-12.5 parent: 2 type: Transform - - uid: 3207 + - uid: 15376 components: - rot: 3.141592653589793 rad pos: -57.5,-13.5 parent: 2 type: Transform - - uid: 3208 + - uid: 15377 components: - rot: -1.5707963267948966 rad pos: -59.5,-13.5 parent: 2 type: Transform - - uid: 3235 + - uid: 15378 components: - rot: 1.5707963267948966 rad pos: 43.5,-20.5 parent: 2 type: Transform - - uid: 3236 + - uid: 15379 components: - rot: 1.5707963267948966 rad pos: 42.5,-20.5 parent: 2 type: Transform - - uid: 3237 + - uid: 15380 components: - rot: 1.5707963267948966 rad pos: 41.5,-20.5 parent: 2 type: Transform - - uid: 3240 + - uid: 15381 components: - rot: 1.5707963267948966 rad pos: 43.5,-16.5 parent: 2 type: Transform - - uid: 3241 + - uid: 15382 components: - rot: 1.5707963267948966 rad pos: 42.5,-16.5 parent: 2 type: Transform - - uid: 3242 + - uid: 15383 components: - rot: 1.5707963267948966 rad pos: 41.5,-16.5 parent: 2 type: Transform - - uid: 3243 + - uid: 15384 components: - rot: 1.5707963267948966 rad pos: 43.5,-12.5 parent: 2 type: Transform - - uid: 3244 + - uid: 15385 components: - rot: 1.5707963267948966 rad pos: 42.5,-12.5 parent: 2 type: Transform - - uid: 3245 + - uid: 15386 components: - rot: 1.5707963267948966 rad pos: 43.5,-4.5 parent: 2 type: Transform - - uid: 3246 + - uid: 15387 components: - rot: 1.5707963267948966 rad pos: 43.5,-8.5 parent: 2 type: Transform - - uid: 3247 + - uid: 15388 components: - rot: 1.5707963267948966 rad pos: 42.5,-8.5 parent: 2 type: Transform - - uid: 3248 + - uid: 15389 components: - rot: 1.5707963267948966 rad pos: 41.5,-8.5 parent: 2 type: Transform - - uid: 3249 + - uid: 15390 components: - rot: 1.5707963267948966 rad pos: 42.5,-4.5 parent: 2 type: Transform - - uid: 3250 + - uid: 15391 components: - rot: 1.5707963267948966 rad pos: 43.5,-0.5 parent: 2 type: Transform - - uid: 3251 + - uid: 15392 components: - rot: 1.5707963267948966 rad pos: 42.5,-0.5 parent: 2 type: Transform - - uid: 3252 + - uid: 15393 components: - rot: 1.5707963267948966 rad pos: 41.5,-0.5 parent: 2 type: Transform - - uid: 3262 + - uid: 15394 components: - pos: -49.5,-1.5 parent: 2 type: Transform - - uid: 3279 + - uid: 15395 components: - pos: 41.5,0.5 parent: 2 type: Transform - - uid: 3286 + - uid: 15396 components: - rot: 3.141592653589793 rad pos: 17.5,-35.5 parent: 2 type: Transform - - uid: 3340 + - uid: 15397 components: - pos: -66.5,-4.5 parent: 2 type: Transform - - uid: 3382 + - uid: 15398 components: - rot: 3.141592653589793 rad pos: 17.5,-33.5 parent: 2 type: Transform - - uid: 3396 + - uid: 15399 components: - pos: 5.5,36.5 parent: 2 type: Transform - - uid: 3450 + - uid: 15400 components: - pos: 41.5,-23.5 parent: 2 type: Transform - - uid: 3461 + - uid: 15401 components: - pos: 40.5,-23.5 parent: 2 type: Transform - - uid: 3464 + - uid: 15402 components: - pos: 39.5,-23.5 parent: 2 type: Transform - - uid: 3483 + - uid: 15403 components: - rot: -1.5707963267948966 rad pos: -34.5,-5.5 parent: 2 type: Transform - - uid: 3484 + - uid: 15404 components: - pos: 26.5,-23.5 parent: 2 type: Transform - - uid: 3496 + - uid: 15405 components: - pos: 41.5,1.5 parent: 2 type: Transform - - uid: 3500 + - uid: 15406 components: - pos: 35.5,-23.5 parent: 2 type: Transform - - uid: 3501 + - uid: 15407 components: - pos: 0.5,-17.5 parent: 2 type: Transform - - uid: 3503 + - uid: 15408 components: - pos: 28.5,-23.5 parent: 2 type: Transform - - uid: 3504 + - uid: 15409 components: - pos: 32.5,-23.5 parent: 2 type: Transform - - uid: 3515 + - uid: 15410 components: - rot: 1.5707963267948966 rad pos: 27.5,10.5 parent: 2 type: Transform - - uid: 3516 + - uid: 15411 components: - rot: 1.5707963267948966 rad pos: 28.5,10.5 parent: 2 type: Transform - - uid: 3517 + - uid: 15412 components: - rot: 1.5707963267948966 rad pos: 29.5,10.5 parent: 2 type: Transform - - uid: 3518 + - uid: 15413 components: - pos: 38.5,18.5 parent: 2 type: Transform - - uid: 3534 + - uid: 15414 components: - pos: 13.5,10.5 parent: 2 type: Transform - - uid: 3545 + - uid: 15415 components: - pos: 24.5,3.5 parent: 2 type: Transform - - uid: 3547 + - uid: 15416 components: - pos: 24.5,8.5 parent: 2 type: Transform - - uid: 3553 + - uid: 15417 components: - pos: 23.5,-33.5 parent: 2 type: Transform - - uid: 3556 + - uid: 15418 components: - pos: 24.5,-23.5 parent: 2 type: Transform - - uid: 3558 + - uid: 15419 components: - pos: 29.5,4.5 parent: 2 type: Transform - - uid: 3560 + - uid: 15420 components: - pos: 29.5,3.5 parent: 2 type: Transform - - uid: 3570 + - uid: 15421 components: - pos: 14.5,14.5 parent: 2 type: Transform - - uid: 3571 + - uid: 15422 components: - pos: 29.5,9.5 parent: 2 type: Transform - - uid: 3573 + - uid: 15423 components: - pos: 29.5,8.5 parent: 2 type: Transform - - uid: 3574 + - uid: 15424 components: - pos: 29.5,7.5 parent: 2 type: Transform - - uid: 3584 + - uid: 15425 components: - rot: 1.5707963267948966 rad pos: 25.5,10.5 parent: 2 type: Transform - - uid: 3585 + - uid: 15426 components: - rot: 1.5707963267948966 rad pos: 24.5,10.5 parent: 2 type: Transform - - uid: 3602 + - uid: 15427 components: - pos: -5.5,-81.5 parent: 2 type: Transform - - uid: 3604 + - uid: 15428 components: - pos: -5.5,-82.5 parent: 2 type: Transform - - uid: 3605 + - uid: 15429 components: - pos: -6.5,-82.5 parent: 2 type: Transform - - uid: 3606 + - uid: 15430 components: - pos: -6.5,-81.5 parent: 2 type: Transform - - uid: 3607 + - uid: 15431 components: - pos: -7.5,-82.5 parent: 2 type: Transform - - uid: 3608 + - uid: 15432 components: - pos: -5.5,-80.5 parent: 2 type: Transform - - uid: 3609 + - uid: 15433 components: - pos: -7.5,-81.5 parent: 2 type: Transform - - uid: 3610 + - uid: 15434 components: - rot: -1.5707963267948966 rad pos: -7.5,-80.5 parent: 2 type: Transform - - uid: 3612 + - uid: 15435 components: - pos: -1.5,-74.5 parent: 2 type: Transform - - uid: 3613 + - uid: 15436 components: - pos: -1.5,-75.5 parent: 2 type: Transform - - uid: 3614 + - uid: 15437 components: - pos: -1.5,-76.5 parent: 2 type: Transform - - uid: 3615 + - uid: 15438 components: - pos: -1.5,-77.5 parent: 2 type: Transform - - uid: 3616 + - uid: 15439 components: - pos: -1.5,-78.5 parent: 2 type: Transform - - uid: 3617 + - uid: 15440 components: - pos: -2.5,-74.5 parent: 2 type: Transform - - uid: 3618 + - uid: 15441 components: - pos: -2.5,-75.5 parent: 2 type: Transform - - uid: 3619 + - uid: 15442 components: - pos: -2.5,-76.5 parent: 2 type: Transform - - uid: 3620 + - uid: 15443 components: - pos: -2.5,-77.5 parent: 2 type: Transform - - uid: 3621 + - uid: 15444 components: - pos: -2.5,-78.5 parent: 2 type: Transform - - uid: 3622 + - uid: 15445 components: - pos: -3.5,-78.5 parent: 2 type: Transform - - uid: 3623 + - uid: 15446 components: - pos: -3.5,-79.5 parent: 2 type: Transform - - uid: 3624 + - uid: 15447 components: - pos: -3.5,-80.5 parent: 2 type: Transform - - uid: 3625 + - uid: 15448 components: - pos: -2.5,-80.5 parent: 2 type: Transform - - uid: 3626 + - uid: 15449 components: - pos: -2.5,-79.5 parent: 2 type: Transform - - uid: 3627 + - uid: 15450 components: - pos: -3.5,-73.5 parent: 2 type: Transform - - uid: 3628 + - uid: 15451 components: - pos: -2.5,-73.5 parent: 2 type: Transform - - uid: 3629 + - uid: 15452 components: - pos: -2.5,-72.5 parent: 2 type: Transform - - uid: 3630 + - uid: 15453 components: - pos: -3.5,-72.5 parent: 2 type: Transform - - uid: 3631 + - uid: 15454 components: - pos: -3.5,-74.5 parent: 2 type: Transform - - uid: 3632 + - uid: 15455 components: - pos: -4.5,-71.5 parent: 2 type: Transform - - uid: 3633 + - uid: 15456 components: - pos: -3.5,-71.5 parent: 2 type: Transform - - uid: 3634 + - uid: 15457 components: - pos: -4.5,-72.5 parent: 2 type: Transform - - uid: 3635 + - uid: 15458 components: - pos: -4.5,-80.5 parent: 2 type: Transform - - uid: 3636 + - uid: 15459 components: - pos: -4.5,-81.5 parent: 2 type: Transform - - uid: 3637 + - uid: 15460 components: - pos: -3.5,-81.5 parent: 2 type: Transform - - uid: 3638 + - uid: 15461 components: - pos: -3.5,-75.5 parent: 2 type: Transform - - uid: 3639 + - uid: 15462 components: - pos: -19.5,-71.5 parent: 2 type: Transform - - uid: 3640 + - uid: 15463 components: - pos: -3.5,-77.5 parent: 2 type: Transform - - uid: 3641 + - uid: 15464 components: - pos: -8.5,-81.5 parent: 2 type: Transform - - uid: 3642 + - uid: 15465 components: - pos: -13.5,-73.5 parent: 2 type: Transform - - uid: 3643 + - uid: 15466 components: - pos: -5.5,-72.5 parent: 2 type: Transform - - uid: 3644 + - uid: 15467 components: - pos: -5.5,-71.5 parent: 2 type: Transform - - uid: 3645 + - uid: 15468 components: - pos: -5.5,-70.5 parent: 2 type: Transform - - uid: 3646 + - uid: 15469 components: - pos: -6.5,-71.5 parent: 2 type: Transform - - uid: 3647 + - uid: 15470 components: - pos: -6.5,-70.5 parent: 2 type: Transform - - uid: 3648 + - uid: 15471 components: - pos: -7.5,-70.5 parent: 2 type: Transform - - uid: 3649 + - uid: 15472 components: - pos: -7.5,-71.5 parent: 2 type: Transform - - uid: 3650 + - uid: 15473 components: - pos: -7.5,-72.5 parent: 2 type: Transform - - uid: 3652 + - uid: 15474 components: - pos: -8.5,-72.5 parent: 2 type: Transform - - uid: 3653 + - uid: 15475 components: - pos: -8.5,-71.5 parent: 2 type: Transform - - uid: 3654 + - uid: 15476 components: - pos: -8.5,-70.5 parent: 2 type: Transform - - uid: 3655 + - uid: 15477 components: - pos: -9.5,-72.5 parent: 2 type: Transform - - uid: 3656 + - uid: 15478 components: - pos: -9.5,-71.5 parent: 2 type: Transform - - uid: 3657 + - uid: 15479 components: - pos: -9.5,-70.5 parent: 2 type: Transform - - uid: 3658 + - uid: 15480 components: - pos: -10.5,-72.5 parent: 2 type: Transform - - uid: 3659 + - uid: 15481 components: - pos: -10.5,-71.5 parent: 2 type: Transform - - uid: 3660 + - uid: 15482 components: - pos: -10.5,-70.5 parent: 2 type: Transform - - uid: 3661 + - uid: 15483 components: - pos: -11.5,-72.5 parent: 2 type: Transform - - uid: 3662 + - uid: 15484 components: - pos: -11.5,-71.5 parent: 2 type: Transform - - uid: 3663 + - uid: 15485 components: - pos: -11.5,-70.5 parent: 2 type: Transform - - uid: 3664 + - uid: 15486 components: - pos: -12.5,-72.5 parent: 2 type: Transform - - uid: 3665 + - uid: 15487 components: - pos: -12.5,-71.5 parent: 2 type: Transform - - uid: 3666 + - uid: 15488 components: - pos: -12.5,-70.5 parent: 2 type: Transform - - uid: 3667 + - uid: 15489 components: - pos: -13.5,-72.5 parent: 2 type: Transform - - uid: 3668 + - uid: 15490 components: - pos: -13.5,-71.5 parent: 2 type: Transform - - uid: 3669 + - uid: 15491 components: - pos: -13.5,-70.5 parent: 2 type: Transform - - uid: 3670 + - uid: 15492 components: - pos: -13.5,-69.5 parent: 2 type: Transform - - uid: 3671 + - uid: 15493 components: - pos: -14.5,-69.5 parent: 2 type: Transform - - uid: 3672 + - uid: 15494 components: - pos: -15.5,-69.5 parent: 2 type: Transform - - uid: 3673 + - uid: 15495 components: - pos: -18.5,-69.5 parent: 2 type: Transform - - uid: 3674 + - uid: 15496 components: - pos: -17.5,-69.5 parent: 2 type: Transform - - uid: 3675 + - uid: 15497 components: - pos: -18.5,-68.5 parent: 2 type: Transform - - uid: 3676 + - uid: 15498 components: - pos: -18.5,-67.5 parent: 2 type: Transform - - uid: 3677 + - uid: 15499 components: - pos: -18.5,-70.5 parent: 2 type: Transform - - uid: 3678 + - uid: 15500 components: - pos: -19.5,-70.5 parent: 2 type: Transform - - uid: 3679 + - uid: 15501 components: - pos: -18.5,-71.5 parent: 2 type: Transform - - uid: 3680 + - uid: 15502 components: - pos: -19.5,-72.5 parent: 2 type: Transform - - uid: 3681 + - uid: 15503 components: - pos: -18.5,-72.5 parent: 2 type: Transform - - uid: 3682 + - uid: 15504 components: - pos: -14.5,-73.5 parent: 2 type: Transform - - uid: 3683 + - uid: 15505 components: - pos: -15.5,-73.5 parent: 2 type: Transform - - uid: 3684 + - uid: 15506 components: - pos: -18.5,-73.5 parent: 2 type: Transform - - uid: 3685 + - uid: 15507 components: - pos: -17.5,-73.5 parent: 2 type: Transform - - uid: 3686 + - uid: 15508 components: - pos: -13.5,-74.5 parent: 2 type: Transform - - uid: 3687 + - uid: 15509 components: - pos: -13.5,-75.5 parent: 2 type: Transform - - uid: 3688 + - uid: 15510 components: - pos: -13.5,-77.5 parent: 2 type: Transform - - uid: 3689 + - uid: 15511 components: - pos: -13.5,-78.5 parent: 2 type: Transform - - uid: 3690 + - uid: 15512 components: - pos: -15.5,-84.5 parent: 2 type: Transform - - uid: 3691 + - uid: 15513 components: - pos: -14.5,-84.5 parent: 2 type: Transform - - uid: 3692 + - uid: 15514 components: - pos: -13.5,-84.5 parent: 2 type: Transform - - uid: 3693 + - uid: 15515 components: - pos: -13.5,-83.5 parent: 2 type: Transform - - uid: 3694 + - uid: 15516 components: - pos: -8.5,-82.5 parent: 2 type: Transform - - uid: 3695 + - uid: 15517 components: - pos: -9.5,-80.5 parent: 2 type: Transform - - uid: 3696 + - uid: 15518 components: - pos: -9.5,-81.5 parent: 2 type: Transform - - uid: 3697 + - uid: 15519 components: - pos: -9.5,-82.5 parent: 2 type: Transform - - uid: 3698 + - uid: 15520 components: - pos: -10.5,-80.5 parent: 2 type: Transform - - uid: 3699 + - uid: 15521 components: - pos: -10.5,-81.5 parent: 2 type: Transform - - uid: 3700 + - uid: 15522 components: - pos: -10.5,-82.5 parent: 2 type: Transform - - uid: 3701 + - uid: 15523 components: - pos: -11.5,-80.5 parent: 2 type: Transform - - uid: 3702 + - uid: 15524 components: - pos: -11.5,-81.5 parent: 2 type: Transform - - uid: 3703 + - uid: 15525 components: - pos: -11.5,-82.5 parent: 2 type: Transform - - uid: 3704 + - uid: 15526 components: - pos: -12.5,-80.5 parent: 2 type: Transform - - uid: 3705 + - uid: 15527 components: - pos: -12.5,-81.5 parent: 2 type: Transform - - uid: 3706 + - uid: 15528 components: - pos: -12.5,-82.5 parent: 2 type: Transform - - uid: 3707 + - uid: 15529 components: - pos: -13.5,-80.5 parent: 2 type: Transform - - uid: 3708 + - uid: 15530 components: - pos: -13.5,-81.5 parent: 2 type: Transform - - uid: 3718 + - uid: 15531 components: - pos: -13.5,-79.5 parent: 2 type: Transform - - uid: 3719 + - uid: 15532 components: - pos: 22.5,-5.5 parent: 2 type: Transform - - uid: 3720 + - uid: 15533 components: - pos: -14.5,-79.5 parent: 2 type: Transform - - uid: 3721 + - uid: 15534 components: - pos: -15.5,-79.5 parent: 2 type: Transform - - uid: 3723 + - uid: 15535 components: - pos: -17.5,-79.5 parent: 2 type: Transform - - uid: 3724 + - uid: 15536 components: - pos: -18.5,-79.5 parent: 2 type: Transform - - uid: 3725 + - uid: 15537 components: - pos: -18.5,-78.5 parent: 2 type: Transform - - uid: 3727 + - uid: 15538 components: - pos: -18.5,-75.5 parent: 2 type: Transform - - uid: 3728 + - uid: 15539 components: - pos: -18.5,-74.5 parent: 2 type: Transform - - uid: 3729 + - uid: 15540 components: - pos: -18.5,-80.5 parent: 2 type: Transform - - uid: 3730 + - uid: 15541 components: - pos: -18.5,-81.5 parent: 2 type: Transform - - uid: 3731 + - uid: 15542 components: - pos: -18.5,-82.5 parent: 2 type: Transform - - uid: 3732 + - uid: 15543 components: - pos: -18.5,-83.5 parent: 2 type: Transform - - uid: 3733 + - uid: 15544 components: - pos: -18.5,-84.5 parent: 2 type: Transform - - uid: 3734 + - uid: 15545 components: - pos: -17.5,-84.5 parent: 2 type: Transform - - uid: 3737 + - uid: 15546 components: - pos: -19.5,-82.5 parent: 2 type: Transform - - uid: 3738 + - uid: 15547 components: - pos: -19.5,-81.5 parent: 2 type: Transform - - uid: 3739 + - uid: 15548 components: - pos: -19.5,-80.5 parent: 2 type: Transform - - uid: 3740 + - uid: 15549 components: - pos: -21.5,-80.5 parent: 2 type: Transform - - uid: 3742 + - uid: 15550 components: - pos: -20.5,-81.5 parent: 2 type: Transform - - uid: 3743 + - uid: 15551 components: - pos: -20.5,-80.5 parent: 2 type: Transform - - uid: 3744 + - uid: 15552 components: - pos: -21.5,-81.5 parent: 2 type: Transform - - uid: 3745 + - uid: 15553 components: - pos: -22.5,-80.5 parent: 2 type: Transform - - uid: 3746 + - uid: 15554 components: - pos: -22.5,-81.5 parent: 2 type: Transform - - uid: 3747 + - uid: 15555 components: - pos: -23.5,-80.5 parent: 2 type: Transform - - uid: 3748 + - uid: 15556 components: - pos: -23.5,-81.5 parent: 2 type: Transform - - uid: 3749 + - uid: 15557 components: - pos: -23.5,-79.5 parent: 2 type: Transform - - uid: 3750 + - uid: 15558 components: - pos: -23.5,-78.5 parent: 2 type: Transform - - uid: 3753 + - uid: 15559 components: - pos: -23.5,-74.5 parent: 2 type: Transform - - uid: 3754 + - uid: 15560 components: - pos: -23.5,-73.5 parent: 2 type: Transform - - uid: 3755 + - uid: 15561 components: - pos: -23.5,-72.5 parent: 2 type: Transform - - uid: 3756 + - uid: 15562 components: - pos: -23.5,-71.5 parent: 2 type: Transform - - uid: 3757 + - uid: 15563 components: - pos: -22.5,-72.5 parent: 2 type: Transform - - uid: 3758 + - uid: 15564 components: - pos: -22.5,-71.5 parent: 2 type: Transform - - uid: 3759 + - uid: 15565 components: - pos: -21.5,-72.5 parent: 2 type: Transform - - uid: 3760 + - uid: 15566 components: - pos: -21.5,-71.5 parent: 2 type: Transform - - uid: 3761 + - uid: 15567 components: - pos: -20.5,-72.5 parent: 2 type: Transform - - uid: 3762 + - uid: 15568 components: - pos: -20.5,-71.5 parent: 2 type: Transform - - uid: 3769 + - uid: 15569 components: - pos: 19.5,-7.5 parent: 2 type: Transform - - uid: 3775 + - uid: 15570 components: - pos: -28.5,-80.5 parent: 2 type: Transform - - uid: 3776 + - uid: 15571 components: - pos: -24.5,-81.5 parent: 2 type: Transform - - uid: 3777 + - uid: 15572 components: - pos: -25.5,-81.5 parent: 2 type: Transform - - uid: 3778 + - uid: 15573 components: - pos: -26.5,-81.5 parent: 2 type: Transform - - uid: 3779 + - uid: 15574 components: - pos: -27.5,-81.5 parent: 2 type: Transform - - uid: 3780 + - uid: 15575 components: - pos: -28.5,-81.5 parent: 2 type: Transform - - uid: 3781 + - uid: 15576 components: - pos: -29.5,-81.5 parent: 2 type: Transform - - uid: 3782 + - uid: 15577 components: - pos: -30.5,-81.5 parent: 2 type: Transform - - uid: 3784 + - uid: 15578 components: - pos: -29.5,-80.5 parent: 2 type: Transform - - uid: 3785 + - uid: 15579 components: - pos: -30.5,-80.5 parent: 2 type: Transform - - uid: 3786 + - uid: 15580 components: - pos: -31.5,-80.5 parent: 2 type: Transform - - uid: 3792 + - uid: 15581 components: - pos: -31.5,-79.5 parent: 2 type: Transform - - uid: 3793 + - uid: 15582 components: - pos: -31.5,-78.5 parent: 2 type: Transform - - uid: 3794 + - uid: 15583 components: - pos: -32.5,-78.5 parent: 2 type: Transform - - uid: 3795 + - uid: 15584 components: - pos: -32.5,-77.5 parent: 2 type: Transform - - uid: 3796 + - uid: 15585 components: - pos: -32.5,-76.5 parent: 2 type: Transform - - uid: 3797 + - uid: 15586 components: - pos: -32.5,-75.5 parent: 2 type: Transform - - uid: 3798 + - uid: 15587 components: - pos: -32.5,-74.5 parent: 2 type: Transform - - uid: 3799 + - uid: 15588 components: - pos: -31.5,-77.5 parent: 2 type: Transform - - uid: 3800 + - uid: 15589 components: - pos: -31.5,-76.5 parent: 2 type: Transform - - uid: 3801 + - uid: 15590 components: - pos: -31.5,-75.5 parent: 2 type: Transform - - uid: 3802 + - uid: 15591 components: - pos: -31.5,-74.5 parent: 2 type: Transform - - uid: 3803 + - uid: 15592 components: - pos: -31.5,-73.5 parent: 2 type: Transform - - uid: 3804 + - uid: 15593 components: - pos: -31.5,-72.5 parent: 2 type: Transform - - uid: 3805 + - uid: 15594 components: - pos: -30.5,-72.5 parent: 2 type: Transform - - uid: 3806 + - uid: 15595 components: - pos: -30.5,-71.5 parent: 2 type: Transform - - uid: 3807 + - uid: 15596 components: - pos: -29.5,-71.5 parent: 2 type: Transform - - uid: 3808 + - uid: 15597 components: - pos: -28.5,-71.5 parent: 2 type: Transform - - uid: 3809 + - uid: 15598 components: - pos: -27.5,-71.5 parent: 2 type: Transform - - uid: 3810 + - uid: 15599 components: - pos: -26.5,-71.5 parent: 2 type: Transform - - uid: 3811 + - uid: 15600 components: - pos: -25.5,-71.5 parent: 2 type: Transform - - uid: 3812 + - uid: 15601 components: - pos: -24.5,-71.5 parent: 2 type: Transform - - uid: 3813 + - uid: 15602 components: - pos: -29.5,-72.5 parent: 2 type: Transform - - uid: 3814 + - uid: 15603 components: - pos: -28.5,-72.5 parent: 2 type: Transform - - uid: 3831 + - uid: 15604 components: - rot: -1.5707963267948966 rad pos: -9.5,-76.5 parent: 2 type: Transform - - uid: 3860 + - uid: 15605 components: - rot: -1.5707963267948966 rad pos: -6.5,-75.5 parent: 2 type: Transform - - uid: 3861 + - uid: 15606 components: - rot: -1.5707963267948966 rad pos: -6.5,-77.5 parent: 2 type: Transform - - uid: 3862 + - uid: 15607 components: - rot: -1.5707963267948966 rad pos: -8.5,-77.5 parent: 2 type: Transform - - uid: 3863 + - uid: 15608 components: - rot: -1.5707963267948966 rad pos: -9.5,-77.5 parent: 2 type: Transform - - uid: 3864 + - uid: 15609 components: - rot: -1.5707963267948966 rad pos: -9.5,-75.5 parent: 2 type: Transform - - uid: 3865 + - uid: 15610 components: - rot: -1.5707963267948966 rad pos: -8.5,-75.5 parent: 2 type: Transform - - uid: 3913 + - uid: 15611 components: - rot: 1.5707963267948966 rad pos: -15.5,-62.5 parent: 2 type: Transform - - uid: 3916 + - uid: 15612 components: - rot: 1.5707963267948966 rad pos: -17.5,-62.5 parent: 2 type: Transform - - uid: 3935 + - uid: 15613 components: - rot: 3.141592653589793 rad pos: -35.5,-25.5 parent: 2 type: Transform - - uid: 3945 + - uid: 15614 components: - rot: 3.141592653589793 rad pos: -35.5,-24.5 parent: 2 type: Transform - - uid: 3987 + - uid: 15615 components: - pos: -19.5,32.5 parent: 2 type: Transform - - uid: 4014 + - uid: 15616 components: - rot: 3.141592653589793 rad pos: -40.5,-25.5 parent: 2 type: Transform - - uid: 4308 + - uid: 15617 components: - rot: -1.5707963267948966 rad pos: -26.5,0.5 parent: 2 type: Transform - - uid: 4323 + - uid: 15618 components: - rot: -1.5707963267948966 rad pos: -26.5,3.5 parent: 2 type: Transform - - uid: 4331 + - uid: 15619 components: - rot: -1.5707963267948966 rad pos: -26.5,4.5 parent: 2 type: Transform - - uid: 4336 + - uid: 15620 components: - pos: 10.5,16.5 parent: 2 type: Transform - - uid: 4337 + - uid: 15621 components: - pos: 37.5,18.5 parent: 2 type: Transform - - uid: 4344 + - uid: 15622 components: - pos: 40.5,17.5 parent: 2 type: Transform - - uid: 4351 + - uid: 15623 components: - pos: 41.5,17.5 parent: 2 type: Transform - - uid: 4352 + - uid: 15624 components: - pos: 10.5,17.5 parent: 2 type: Transform - - uid: 4358 + - uid: 15625 components: - pos: 7.5,19.5 parent: 2 type: Transform - - uid: 4359 + - uid: 15626 components: - pos: 7.5,20.5 parent: 2 type: Transform - - uid: 4360 + - uid: 15627 components: - pos: 7.5,21.5 parent: 2 type: Transform - - uid: 4361 + - uid: 15628 components: - pos: 7.5,22.5 parent: 2 type: Transform - - uid: 4362 + - uid: 15629 components: - pos: 7.5,23.5 parent: 2 type: Transform - - uid: 4364 + - uid: 15630 components: - rot: -1.5707963267948966 rad pos: -27.5,4.5 parent: 2 type: Transform - - uid: 4369 + - uid: 15631 components: - pos: 9.5,16.5 parent: 2 type: Transform - - uid: 4370 + - uid: 15632 components: - pos: 8.5,16.5 parent: 2 type: Transform - - uid: 4371 + - uid: 15633 components: - pos: 7.5,16.5 parent: 2 type: Transform - - uid: 4372 + - uid: 15634 components: - pos: 7.5,17.5 parent: 2 type: Transform - - uid: 4373 + - uid: 15635 components: - pos: 7.5,18.5 parent: 2 type: Transform - - uid: 4394 + - uid: 15636 components: - rot: -1.5707963267948966 rad pos: -29.5,4.5 parent: 2 type: Transform - - uid: 4395 + - uid: 15637 components: - pos: 11.5,17.5 parent: 2 type: Transform - - uid: 4397 + - uid: 15638 components: - pos: 27.5,23.5 parent: 2 type: Transform - - uid: 4403 + - uid: 15639 components: - rot: -1.5707963267948966 rad pos: -29.5,0.5 parent: 2 type: Transform - - uid: 4406 + - uid: 15640 components: - rot: -1.5707963267948966 rad pos: -27.5,0.5 parent: 2 type: Transform - - uid: 4411 + - uid: 15641 components: - pos: 28.5,23.5 parent: 2 type: Transform - - uid: 4412 + - uid: 15642 components: - pos: 26.5,23.5 parent: 2 type: Transform - - uid: 4420 + - uid: 15643 components: - pos: 8.5,23.5 parent: 2 type: Transform - - uid: 4421 + - uid: 15644 components: - pos: 9.5,23.5 parent: 2 type: Transform - - uid: 4422 + - uid: 15645 components: - pos: 10.5,23.5 parent: 2 type: Transform - - uid: 4424 + - uid: 15646 components: - pos: 11.5,22.5 parent: 2 type: Transform - - uid: 4425 + - uid: 15647 components: - pos: 29.5,23.5 parent: 2 type: Transform - - uid: 4438 + - uid: 15648 components: - pos: 11.5,20.5 parent: 2 type: Transform - - uid: 4467 + - uid: 15649 components: - pos: -45.5,2.5 parent: 2 type: Transform - - uid: 4488 + - uid: 15650 components: - pos: -45.5,1.5 parent: 2 type: Transform - - uid: 4508 + - uid: 15651 components: - rot: 1.5707963267948966 rad pos: 11.5,23.5 parent: 2 type: Transform - - uid: 4536 + - uid: 15652 components: - rot: -1.5707963267948966 rad pos: -54.5,49.5 parent: 2 type: Transform - - uid: 4542 + - uid: 15653 components: - pos: 30.5,24.5 parent: 2 type: Transform - - uid: 4585 + - uid: 15654 components: - pos: -44.5,1.5 parent: 2 type: Transform - - uid: 4592 + - uid: 15655 components: - rot: -1.5707963267948966 rad pos: 12.5,-36.5 parent: 2 type: Transform - - uid: 4643 + - uid: 15656 components: - pos: -45.5,3.5 parent: 2 type: Transform - - uid: 4683 + - uid: 15657 components: - pos: -37.5,2.5 parent: 2 type: Transform - - uid: 4703 + - uid: 15658 components: - pos: -37.5,0.5 parent: 2 type: Transform - - uid: 4750 + - uid: 15659 components: - pos: 32.5,-24.5 parent: 2 type: Transform - - uid: 4751 + - uid: 15660 components: - rot: 1.5707963267948966 rad pos: -30.5,-24.5 parent: 2 type: Transform - - uid: 4752 + - uid: 15661 components: - pos: -28.5,-23.5 parent: 2 type: Transform - - uid: 4768 + - uid: 15662 components: - pos: -44.5,0.5 parent: 2 type: Transform - - uid: 4769 + - uid: 15663 components: - pos: -44.5,2.5 parent: 2 type: Transform - - uid: 4770 + - uid: 15664 components: - pos: -38.5,0.5 parent: 2 type: Transform - - uid: 4776 + - uid: 15665 components: - pos: -37.5,1.5 parent: 2 type: Transform - - uid: 4777 + - uid: 15666 components: - pos: 41.5,2.5 parent: 2 type: Transform - - uid: 4812 + - uid: 15667 components: - pos: 35.5,-24.5 parent: 2 type: Transform - - uid: 4813 + - uid: 15668 components: - pos: 39.5,-24.5 parent: 2 type: Transform - - uid: 4838 + - uid: 15669 components: - rot: 1.5707963267948966 rad pos: 22.5,-23.5 parent: 2 type: Transform - - uid: 4843 + - uid: 15670 components: - pos: -37.5,3.5 parent: 2 type: Transform - - uid: 4844 + - uid: 15671 components: - pos: -38.5,1.5 parent: 2 type: Transform - - uid: 4845 + - uid: 15672 components: - pos: -38.5,2.5 parent: 2 type: Transform - - uid: 4848 + - uid: 15673 components: - pos: 8.5,-16.5 parent: 2 type: Transform - - uid: 4863 + - uid: 15674 components: - pos: 42.5,14.5 parent: 2 type: Transform - - uid: 4864 + - uid: 15675 components: - pos: 42.5,15.5 parent: 2 type: Transform - - uid: 4865 + - uid: 15676 components: - pos: 44.5,14.5 parent: 2 type: Transform - - uid: 4867 + - uid: 15677 components: - pos: 42.5,8.5 parent: 2 type: Transform - - uid: 4869 + - uid: 15678 components: - pos: 42.5,7.5 parent: 2 type: Transform - - uid: 4870 + - uid: 15679 components: - pos: 46.5,8.5 parent: 2 type: Transform - - uid: 4871 + - uid: 15680 components: - pos: 43.5,14.5 parent: 2 type: Transform - - uid: 4872 + - uid: 15681 components: - pos: 46.5,14.5 parent: 2 type: Transform - - uid: 4873 + - uid: 15682 components: - pos: 45.5,14.5 parent: 2 type: Transform - - uid: 4874 + - uid: 15683 components: - pos: 39.5,18.5 parent: 2 type: Transform - - uid: 4876 + - uid: 15684 components: - pos: 39.5,17.5 parent: 2 type: Transform - - uid: 4877 + - uid: 15685 components: - pos: 41.5,16.5 parent: 2 type: Transform - - uid: 4880 + - uid: 15686 components: - pos: 42.5,3.5 parent: 2 type: Transform - - uid: 4881 + - uid: 15687 components: - pos: 42.5,16.5 parent: 2 type: Transform - - uid: 4886 + - uid: 15688 components: - pos: 34.5,20.5 parent: 2 type: Transform - - uid: 4887 + - uid: 15689 components: - pos: 34.5,21.5 parent: 2 type: Transform - - uid: 4890 + - uid: 15690 components: - pos: 34.5,24.5 parent: 2 type: Transform - - uid: 4891 + - uid: 15691 components: - pos: 34.5,25.5 parent: 2 type: Transform - - uid: 4892 + - uid: 15692 components: - pos: 33.5,25.5 parent: 2 type: Transform - - uid: 4893 + - uid: 15693 components: - pos: 33.5,26.5 parent: 2 type: Transform - - uid: 4894 + - uid: 15694 components: - pos: 30.5,29.5 parent: 2 type: Transform - - uid: 4895 + - uid: 15695 components: - pos: 32.5,29.5 parent: 2 type: Transform - - uid: 4896 + - uid: 15696 components: - pos: 33.5,28.5 parent: 2 type: Transform - - uid: 4897 + - uid: 15697 components: - pos: 33.5,29.5 parent: 2 type: Transform - - uid: 4898 + - uid: 15698 components: - pos: 31.5,29.5 parent: 2 type: Transform - - uid: 4901 + - uid: 15699 components: - pos: 30.5,30.5 parent: 2 type: Transform - - uid: 4902 + - uid: 15700 components: - pos: 29.5,30.5 parent: 2 type: Transform - - uid: 4903 + - uid: 15701 components: - pos: 28.5,30.5 parent: 2 type: Transform - - uid: 4904 + - uid: 15702 components: - pos: 27.5,30.5 parent: 2 type: Transform - - uid: 4905 + - uid: 15703 components: - pos: 26.5,30.5 parent: 2 type: Transform - - uid: 4906 + - uid: 15704 components: - pos: 25.5,30.5 parent: 2 type: Transform - - uid: 4907 + - uid: 15705 components: - pos: 24.5,30.5 parent: 2 type: Transform - - uid: 4908 + - uid: 15706 components: - pos: 23.5,30.5 parent: 2 type: Transform - - uid: 4910 + - uid: 15707 components: - pos: 23.5,31.5 parent: 2 type: Transform - - uid: 4911 + - uid: 15708 components: - pos: 3.5,30.5 parent: 2 type: Transform - - uid: 4912 + - uid: 15709 components: - pos: 19.5,30.5 parent: 2 type: Transform - - uid: 4913 + - uid: 15710 components: - pos: 17.5,30.5 parent: 2 type: Transform - - uid: 4914 + - uid: 15711 components: - pos: 18.5,30.5 parent: 2 type: Transform - - uid: 4915 + - uid: 15712 components: - pos: 17.5,31.5 parent: 2 type: Transform - - uid: 4916 + - uid: 15713 components: - pos: 16.5,31.5 parent: 2 type: Transform - - uid: 4917 + - uid: 15714 components: - pos: 15.5,31.5 parent: 2 type: Transform - - uid: 4918 + - uid: 15715 components: - pos: 14.5,31.5 parent: 2 type: Transform - - uid: 4919 + - uid: 15716 components: - pos: 13.5,31.5 parent: 2 type: Transform - - uid: 4920 + - uid: 15717 components: - pos: 12.5,31.5 parent: 2 type: Transform - - uid: 4923 + - uid: 15718 components: - pos: 9.5,31.5 parent: 2 type: Transform - - uid: 4924 + - uid: 15719 components: - pos: 8.5,31.5 parent: 2 type: Transform - - uid: 4925 + - uid: 15720 components: - pos: 7.5,31.5 parent: 2 type: Transform - - uid: 4926 + - uid: 15721 components: - pos: 6.5,31.5 parent: 2 type: Transform - - uid: 4927 + - uid: 15722 components: - pos: 5.5,31.5 parent: 2 type: Transform - - uid: 4928 + - uid: 15723 components: - pos: 4.5,31.5 parent: 2 type: Transform - - uid: 4929 + - uid: 15724 components: - pos: 3.5,31.5 parent: 2 type: Transform - - uid: 4930 + - uid: 15725 components: - pos: -2.5,32.5 parent: 2 type: Transform - - uid: 4931 + - uid: 15726 components: - pos: 3.5,29.5 parent: 2 type: Transform - - uid: 4932 + - uid: 15727 components: - pos: -0.5,24.5 parent: 2 type: Transform - - uid: 4933 + - uid: 15728 components: - pos: 1.5,28.5 parent: 2 type: Transform - - uid: 4935 + - uid: 15729 components: - pos: 2.5,28.5 parent: 2 type: Transform - - uid: 4951 + - uid: 15730 components: - pos: 37.5,19.5 parent: 2 type: Transform - - uid: 4963 + - uid: 15731 components: - pos: 33.5,27.5 parent: 2 type: Transform - - uid: 4999 + - uid: 15732 components: - pos: 44.5,8.5 parent: 2 type: Transform - - uid: 5027 + - uid: 15733 components: - pos: 37.5,20.5 parent: 2 type: Transform - - uid: 5028 + - uid: 15734 components: - pos: 36.5,20.5 parent: 2 type: Transform - - uid: 5029 + - uid: 15735 components: - pos: 35.5,20.5 parent: 2 type: Transform - - uid: 5035 + - uid: 15736 components: - pos: 45.5,8.5 parent: 2 type: Transform - - uid: 5048 + - uid: 15737 components: - pos: 43.5,8.5 parent: 2 type: Transform - - uid: 5145 + - uid: 15738 components: - pos: -51.5,-15.5 parent: 2 type: Transform - - uid: 5148 + - uid: 15739 components: - rot: -1.5707963267948966 rad pos: -13.5,-82.5 parent: 2 type: Transform - - uid: 5150 + - uid: 15740 components: - pos: -18.5,-77.5 parent: 2 type: Transform - - uid: 5168 + - uid: 15741 components: - pos: -21.5,37.5 parent: 2 type: Transform - - uid: 5229 + - uid: 15742 components: - pos: 23.5,9.5 parent: 2 type: Transform - - uid: 5328 + - uid: 15743 components: - pos: 20.5,30.5 parent: 2 type: Transform - - uid: 5329 + - uid: 15744 components: - rot: -1.5707963267948966 rad pos: 22.5,30.5 parent: 2 type: Transform - - uid: 5340 + - uid: 15745 components: - pos: 1.5,36.5 parent: 2 type: Transform - - uid: 5355 + - uid: 15746 components: - pos: -52.5,5.5 parent: 2 type: Transform - - uid: 5356 + - uid: 15747 components: - pos: -51.5,5.5 parent: 2 type: Transform - - uid: 5357 + - uid: 15748 components: - pos: -51.5,6.5 parent: 2 type: Transform - - uid: 5358 + - uid: 15749 components: - pos: -51.5,7.5 parent: 2 type: Transform - - uid: 5359 + - uid: 15750 components: - pos: -50.5,5.5 parent: 2 type: Transform - - uid: 5360 + - uid: 15751 components: - pos: -50.5,6.5 parent: 2 type: Transform - - uid: 5361 + - uid: 15752 components: - pos: -50.5,7.5 parent: 2 type: Transform - - uid: 5362 + - uid: 15753 components: - pos: -50.5,8.5 parent: 2 type: Transform - - uid: 5365 + - uid: 15754 components: - rot: -1.5707963267948966 rad pos: -40.5,-22.5 parent: 2 type: Transform - - uid: 5366 + - uid: 15755 components: - rot: 3.141592653589793 rad pos: -40.5,-23.5 parent: 2 type: Transform - - uid: 5370 + - uid: 15756 components: - rot: -1.5707963267948966 rad pos: -38.5,-21.5 parent: 2 type: Transform - - uid: 5371 + - uid: 15757 components: - rot: -1.5707963267948966 rad pos: -36.5,-21.5 parent: 2 type: Transform - - uid: 5377 + - uid: 15758 components: - rot: -1.5707963267948966 rad pos: -39.5,-21.5 parent: 2 type: Transform - - uid: 5382 + - uid: 15759 components: - rot: 3.141592653589793 rad pos: -35.5,-23.5 parent: 2 type: Transform - - uid: 5395 + - uid: 15760 components: - rot: -1.5707963267948966 rad pos: -52.5,14.5 parent: 2 type: Transform - - uid: 5397 + - uid: 15761 components: - rot: 3.141592653589793 rad pos: -40.5,-24.5 parent: 2 type: Transform - - uid: 5399 + - uid: 15762 components: - rot: -1.5707963267948966 rad pos: -48.5,38.5 parent: 2 type: Transform - - uid: 5404 + - uid: 15763 components: - rot: -1.5707963267948966 rad pos: -39.5,-22.5 parent: 2 type: Transform - - uid: 5405 + - uid: 15764 components: - rot: 3.141592653589793 rad pos: -36.5,-25.5 parent: 2 type: Transform - - uid: 5406 + - uid: 15765 components: - rot: -1.5707963267948966 rad pos: -51.5,10.5 parent: 2 type: Transform - - uid: 5408 + - uid: 15766 components: - pos: -7.5,28.5 parent: 2 type: Transform - - uid: 5409 + - uid: 15767 components: - pos: -7.5,27.5 parent: 2 type: Transform - - uid: 5410 + - uid: 15768 components: - pos: -1.5,27.5 parent: 2 type: Transform - - uid: 5411 + - uid: 15769 components: - pos: -1.5,28.5 parent: 2 type: Transform - - uid: 5412 + - uid: 15770 components: - pos: -2.5,28.5 parent: 2 type: Transform - - uid: 5413 + - uid: 15771 components: - pos: -6.5,28.5 parent: 2 type: Transform - - uid: 5421 + - uid: 15772 components: - pos: -15.5,30.5 parent: 2 type: Transform - - uid: 5423 + - uid: 15773 components: - pos: -15.5,33.5 parent: 2 type: Transform - - uid: 5425 + - uid: 15774 components: - pos: -8.5,31.5 parent: 2 type: Transform - - uid: 5427 + - uid: 15775 components: - pos: -9.5,31.5 parent: 2 type: Transform - - uid: 5428 + - uid: 15776 components: - pos: -6.5,29.5 parent: 2 type: Transform - - uid: 5429 + - uid: 15777 components: - pos: -7.5,31.5 parent: 2 type: Transform - - uid: 5430 + - uid: 15778 components: - pos: -6.5,31.5 parent: 2 type: Transform - - uid: 5431 + - uid: 15779 components: - pos: -2.5,29.5 parent: 2 type: Transform - - uid: 5432 + - uid: 15780 components: - pos: 0.5,24.5 parent: 2 type: Transform - - uid: 5433 + - uid: 15781 components: - pos: -2.5,31.5 parent: 2 type: Transform - - uid: 5435 + - uid: 15782 components: - rot: -1.5707963267948966 rad pos: -54.5,22.5 parent: 2 type: Transform - - uid: 5436 + - uid: 15783 components: - pos: -13.5,31.5 parent: 2 type: Transform - - uid: 5438 + - uid: 15784 components: - pos: -13.5,32.5 parent: 2 type: Transform - - uid: 5439 + - uid: 15785 components: - pos: -16.5,31.5 parent: 2 type: Transform - - uid: 5440 + - uid: 15786 components: - pos: -17.5,31.5 parent: 2 type: Transform - - uid: 5441 + - uid: 15787 components: - pos: -18.5,31.5 parent: 2 type: Transform - - uid: 5443 + - uid: 15788 components: - rot: -1.5707963267948966 rad pos: -53.5,22.5 parent: 2 type: Transform - - uid: 5444 + - uid: 15789 components: - pos: -18.5,32.5 parent: 2 type: Transform - - uid: 5446 + - uid: 15790 components: - pos: 1.5,24.5 parent: 2 type: Transform - - uid: 5447 + - uid: 15791 components: - pos: 3.5,28.5 parent: 2 type: Transform - - uid: 5448 + - uid: 15792 components: - pos: -18.5,37.5 parent: 2 type: Transform - - uid: 5449 + - uid: 15793 components: - pos: -18.5,36.5 parent: 2 type: Transform - - uid: 5450 + - uid: 15794 components: - pos: -6.5,32.5 parent: 2 type: Transform - - uid: 5451 + - uid: 15795 components: - pos: -2.5,36.5 parent: 2 type: Transform - - uid: 5452 + - uid: 15796 components: - pos: -1.5,36.5 parent: 2 type: Transform - - uid: 5453 + - uid: 15797 components: - pos: -4.5,40.5 parent: 2 type: Transform - - uid: 5454 + - uid: 15798 components: - pos: -5.5,40.5 parent: 2 type: Transform - - uid: 5456 + - uid: 15799 components: - pos: -3.5,40.5 parent: 2 type: Transform - - uid: 5458 + - uid: 15800 components: - pos: 2.5,41.5 parent: 2 type: Transform - - uid: 5459 + - uid: 15801 components: - pos: 0.5,43.5 parent: 2 type: Transform - - uid: 5460 + - uid: 15802 components: - rot: -1.5707963267948966 rad pos: -51.5,14.5 parent: 2 type: Transform - - uid: 5462 + - uid: 15803 components: - rot: 3.141592653589793 rad pos: -11.5,40.5 parent: 2 type: Transform - - uid: 5463 + - uid: 15804 components: - pos: -1.5,41.5 parent: 2 type: Transform - - uid: 5465 + - uid: 15805 components: - pos: -0.5,41.5 parent: 2 type: Transform - - uid: 5466 + - uid: 15806 components: - pos: 1.5,41.5 parent: 2 type: Transform - - uid: 5469 + - uid: 15807 components: - pos: -16.5,37.5 parent: 2 type: Transform - - uid: 5470 + - uid: 15808 components: - pos: -16.5,38.5 parent: 2 type: Transform - - uid: 5471 + - uid: 15809 components: - pos: -16.5,40.5 parent: 2 type: Transform - - uid: 5473 + - uid: 15810 components: - pos: -14.5,40.5 parent: 2 type: Transform - - uid: 5474 + - uid: 15811 components: - pos: -15.5,40.5 parent: 2 type: Transform - - uid: 5475 + - uid: 15812 components: - pos: -21.5,36.5 parent: 2 type: Transform - - uid: 5477 + - uid: 15813 components: - pos: -2.5,41.5 parent: 2 type: Transform - - uid: 5478 + - uid: 15814 components: - pos: 2.5,36.5 parent: 2 type: Transform - - uid: 5479 + - uid: 15815 components: - pos: 0.5,36.5 parent: 2 type: Transform - - uid: 5482 + - uid: 15816 components: - pos: 3.5,36.5 parent: 2 type: Transform - - uid: 5483 + - uid: 15817 components: - pos: -0.5,28.5 parent: 2 type: Transform - - uid: 5484 + - uid: 15818 components: - pos: -2.5,35.5 parent: 2 type: Transform - - uid: 5488 + - uid: 15819 components: - pos: -2.5,33.5 parent: 2 type: Transform - - uid: 5494 + - uid: 15820 components: - pos: -0.5,36.5 parent: 2 type: Transform - - uid: 5500 + - uid: 15821 components: - pos: 2.5,24.5 parent: 2 type: Transform - - uid: 5501 + - uid: 15822 components: - pos: 3.5,24.5 parent: 2 type: Transform - - uid: 5521 + - uid: 15823 components: - pos: -16.5,39.5 parent: 2 type: Transform - - uid: 5522 + - uid: 15824 components: - pos: -19.5,36.5 parent: 2 type: Transform - - uid: 5523 + - uid: 15825 components: - pos: -11.5,31.5 parent: 2 type: Transform - - uid: 5530 + - uid: 15826 components: - pos: -10.5,31.5 parent: 2 type: Transform - - uid: 5545 + - uid: 15827 components: - pos: -13.5,33.5 parent: 2 type: Transform - - uid: 5549 + - uid: 15828 components: - pos: -14.5,33.5 parent: 2 type: Transform - - uid: 5560 + - uid: 15829 components: - pos: -17.5,37.5 parent: 2 type: Transform - - uid: 5565 + - uid: 15830 components: - pos: -5.5,42.5 parent: 2 type: Transform - - uid: 5566 + - uid: 15831 components: - pos: -5.5,41.5 parent: 2 type: Transform - - uid: 5567 + - uid: 15832 components: - pos: -2.5,40.5 parent: 2 type: Transform - - uid: 5568 + - uid: 15833 components: - pos: -2.5,39.5 parent: 2 type: Transform - - uid: 5570 + - uid: 15834 components: - pos: -2.5,37.5 parent: 2 type: Transform - - uid: 5571 + - uid: 15835 components: - pos: -0.5,42.5 parent: 2 type: Transform - - uid: 5572 + - uid: 15836 components: - pos: 1.5,43.5 parent: 2 type: Transform - - uid: 5575 + - uid: 15837 components: - pos: -6.5,40.5 parent: 2 type: Transform - - uid: 5576 + - uid: 15838 components: - pos: -0.5,43.5 parent: 2 type: Transform - - uid: 5577 + - uid: 15839 components: - pos: 2.5,43.5 parent: 2 type: Transform - - uid: 5579 + - uid: 15840 components: - pos: -15.5,32.5 parent: 2 type: Transform - - uid: 5582 + - uid: 15841 components: - pos: -15.5,31.5 parent: 2 type: Transform - - uid: 5594 + - uid: 15842 components: - pos: -14.5,41.5 parent: 2 type: Transform - - uid: 5595 + - uid: 15843 components: - pos: -14.5,42.5 parent: 2 type: Transform - - uid: 5596 + - uid: 15844 components: - rot: 3.141592653589793 rad pos: -10.5,40.5 parent: 2 type: Transform - - uid: 5598 + - uid: 15845 components: - pos: -13.5,40.5 parent: 2 type: Transform - - uid: 5608 + - uid: 15846 components: - rot: 3.141592653589793 rad pos: -9.5,40.5 parent: 2 type: Transform - - uid: 5615 + - uid: 15847 components: - rot: 3.141592653589793 rad pos: -8.5,40.5 parent: 2 type: Transform - - uid: 5628 + - uid: 15848 components: - pos: -20.5,36.5 parent: 2 type: Transform - - uid: 5653 + - uid: 15849 components: - pos: -18.5,41.5 parent: 2 type: Transform - - uid: 5654 + - uid: 15850 components: - pos: -18.5,40.5 parent: 2 type: Transform - - uid: 5655 + - uid: 15851 components: - pos: -18.5,39.5 parent: 2 type: Transform - - uid: 5656 + - uid: 15852 components: - pos: -18.5,38.5 parent: 2 type: Transform - - uid: 5659 + - uid: 15853 components: - pos: -28.5,42.5 parent: 2 type: Transform - - uid: 5697 + - uid: 15854 components: - pos: -18.5,42.5 parent: 2 type: Transform - - uid: 5757 + - uid: 15855 components: - pos: -30.5,42.5 parent: 2 type: Transform - - uid: 5758 + - uid: 15856 components: - pos: -29.5,42.5 parent: 2 type: Transform - - uid: 5760 + - uid: 15857 components: - pos: -34.5,35.5 parent: 2 type: Transform - - uid: 5761 + - uid: 15858 components: - pos: -35.5,35.5 parent: 2 type: Transform - - uid: 5762 + - uid: 15859 components: - pos: -33.5,31.5 parent: 2 type: Transform - - uid: 5764 + - uid: 15860 components: - pos: -33.5,32.5 parent: 2 type: Transform - - uid: 5776 + - uid: 15861 components: - pos: -33.5,30.5 parent: 2 type: Transform - - uid: 5795 + - uid: 15862 components: - pos: -37.5,36.5 parent: 2 type: Transform - - uid: 5799 + - uid: 15863 components: - pos: -37.5,37.5 parent: 2 type: Transform - - uid: 5804 + - uid: 15864 components: - pos: -37.5,35.5 parent: 2 type: Transform - - uid: 5837 + - uid: 15865 components: - pos: -43.5,25.5 parent: 2 type: Transform - - uid: 5842 + - uid: 15866 components: - pos: -43.5,31.5 parent: 2 type: Transform - - uid: 5847 + - uid: 15867 components: - pos: -43.5,24.5 parent: 2 type: Transform - - uid: 5850 + - uid: 15868 components: - pos: -45.5,52.5 parent: 2 type: Transform - - uid: 5853 + - uid: 15869 components: - pos: -43.5,29.5 parent: 2 type: Transform - - uid: 5856 + - uid: 15870 components: - pos: -43.5,26.5 parent: 2 type: Transform - - uid: 5861 + - uid: 15871 components: - pos: -44.5,31.5 parent: 2 type: Transform - - uid: 5864 + - uid: 15872 components: - pos: -43.5,30.5 parent: 2 type: Transform - - uid: 5869 + - uid: 15873 components: - pos: -55.5,30.5 parent: 2 type: Transform - - uid: 5871 + - uid: 15874 components: - pos: -45.5,44.5 parent: 2 type: Transform - - uid: 5878 + - uid: 15875 components: - pos: -42.5,30.5 parent: 2 type: Transform - - uid: 5879 + - uid: 15876 components: - rot: -1.5707963267948966 rad pos: -53.5,49.5 parent: 2 type: Transform - - uid: 5888 + - uid: 15877 components: - pos: -51.5,30.5 parent: 2 type: Transform - - uid: 5901 + - uid: 15878 components: - pos: -45.5,31.5 parent: 2 type: Transform - - uid: 5902 + - uid: 15879 components: - pos: -47.5,31.5 parent: 2 type: Transform - - uid: 5903 + - uid: 15880 components: - pos: -48.5,31.5 parent: 2 type: Transform - - uid: 5904 + - uid: 15881 components: - pos: -49.5,31.5 parent: 2 type: Transform - - uid: 5905 + - uid: 15882 components: - pos: -50.5,31.5 parent: 2 type: Transform - - uid: 5906 + - uid: 15883 components: - pos: -51.5,31.5 parent: 2 type: Transform - - uid: 5910 + - uid: 15884 components: - pos: -52.5,30.5 parent: 2 type: Transform - - uid: 5917 + - uid: 15885 components: - rot: -1.5707963267948966 rad pos: -34.5,47.5 parent: 2 type: Transform - - uid: 5918 + - uid: 15886 components: - pos: -37.5,38.5 parent: 2 type: Transform - - uid: 5919 + - uid: 15887 components: - pos: -53.5,30.5 parent: 2 type: Transform - - uid: 5926 + - uid: 15888 components: - pos: -54.5,30.5 parent: 2 type: Transform - - uid: 5940 + - uid: 15889 components: - rot: -1.5707963267948966 rad pos: -34.5,42.5 parent: 2 type: Transform - - uid: 5989 + - uid: 15890 components: - rot: -1.5707963267948966 rad pos: -34.5,43.5 parent: 2 type: Transform - - uid: 6022 + - uid: 15891 components: - pos: 8.5,-17.5 parent: 2 type: Transform - - uid: 6024 + - uid: 15892 components: - pos: -38.5,48.5 parent: 2 type: Transform - - uid: 6066 + - uid: 15893 components: - rot: -1.5707963267948966 rad pos: -54.5,18.5 parent: 2 type: Transform - - uid: 6067 + - uid: 15894 components: - rot: -1.5707963267948966 rad pos: -54.5,14.5 parent: 2 type: Transform - - uid: 6069 + - uid: 15895 components: - rot: -1.5707963267948966 rad pos: -52.5,22.5 parent: 2 type: Transform - - uid: 6071 + - uid: 15896 components: - rot: -1.5707963267948966 rad pos: -53.5,18.5 parent: 2 type: Transform - - uid: 6072 + - uid: 15897 components: - rot: -1.5707963267948966 rad pos: -52.5,18.5 parent: 2 type: Transform - - uid: 6075 + - uid: 15898 components: - rot: -1.5707963267948966 rad pos: -53.5,10.5 parent: 2 type: Transform - - uid: 6084 + - uid: 15899 components: - pos: -37.5,48.5 parent: 2 type: Transform - - uid: 6086 + - uid: 15900 components: - pos: -61.5,30.5 parent: 2 type: Transform - - uid: 6088 + - uid: 15901 components: - pos: -60.5,30.5 parent: 2 type: Transform - - uid: 6091 + - uid: 15902 components: - pos: -57.5,38.5 parent: 2 type: Transform - - uid: 6092 + - uid: 15903 components: - rot: -1.5707963267948966 rad pos: -53.5,44.5 parent: 2 type: Transform - - uid: 6093 + - uid: 15904 components: - pos: -56.5,38.5 parent: 2 type: Transform - - uid: 6094 + - uid: 15905 components: - pos: -51.5,38.5 parent: 2 type: Transform - - uid: 6098 + - uid: 15906 components: - pos: -56.5,42.5 parent: 2 type: Transform - - uid: 6105 + - uid: 15907 components: - pos: -35.5,48.5 parent: 2 type: Transform - - uid: 6106 + - uid: 15908 components: - pos: -52.5,38.5 parent: 2 type: Transform - - uid: 6107 + - uid: 15909 components: - pos: -52.5,42.5 parent: 2 type: Transform - - uid: 6109 + - uid: 15910 components: - rot: -1.5707963267948966 rad pos: -37.5,40.5 parent: 2 type: Transform - - uid: 6110 + - uid: 15911 components: - rot: -1.5707963267948966 rad pos: -37.5,39.5 parent: 2 type: Transform - - uid: 6113 + - uid: 15912 components: - pos: -56.5,30.5 parent: 2 type: Transform - - uid: 6114 + - uid: 15913 components: - pos: -45.5,45.5 parent: 2 type: Transform - - uid: 6115 + - uid: 15914 components: - pos: -44.5,45.5 parent: 2 type: Transform - - uid: 6116 + - uid: 15915 components: - pos: -39.5,51.5 parent: 2 type: Transform - - uid: 6117 + - uid: 15916 components: - pos: -42.5,45.5 parent: 2 type: Transform - - uid: 6118 + - uid: 15917 components: - pos: -41.5,45.5 parent: 2 type: Transform - - uid: 6119 + - uid: 15918 components: - pos: -40.5,45.5 parent: 2 type: Transform - - uid: 6120 + - uid: 15919 components: - pos: -39.5,45.5 parent: 2 type: Transform - - uid: 6121 + - uid: 15920 components: - pos: -38.5,45.5 parent: 2 type: Transform - - uid: 6122 + - uid: 15921 components: - pos: -37.5,45.5 parent: 2 type: Transform - - uid: 6123 + - uid: 15922 components: - rot: -1.5707963267948966 rad pos: -34.5,45.5 parent: 2 type: Transform - - uid: 6125 + - uid: 15923 components: - pos: -45.5,43.5 parent: 2 type: Transform - - uid: 6126 + - uid: 15924 components: - pos: -45.5,42.5 parent: 2 type: Transform - - uid: 6127 + - uid: 15925 components: - pos: -45.5,41.5 parent: 2 type: Transform - - uid: 6128 + - uid: 15926 components: - pos: -49.5,38.5 parent: 2 type: Transform - - uid: 6130 + - uid: 15927 components: - pos: -45.5,38.5 parent: 2 type: Transform - - uid: 6131 + - uid: 15928 components: - pos: -37.5,44.5 parent: 2 type: Transform - - uid: 6132 + - uid: 15929 components: - pos: -37.5,43.5 parent: 2 type: Transform - - uid: 6133 + - uid: 15930 components: - pos: -37.5,42.5 parent: 2 type: Transform - - uid: 6135 + - uid: 15931 components: - rot: -1.5707963267948966 rad pos: -34.5,46.5 parent: 2 type: Transform - - uid: 6136 + - uid: 15932 components: - pos: -46.5,42.5 parent: 2 type: Transform - - uid: 6137 + - uid: 15933 components: - pos: -47.5,42.5 parent: 2 type: Transform - - uid: 6138 + - uid: 15934 components: - pos: -48.5,42.5 parent: 2 type: Transform - - uid: 6139 + - uid: 15935 components: - pos: -49.5,42.5 parent: 2 type: Transform - - uid: 6140 + - uid: 15936 components: - pos: -50.5,42.5 parent: 2 type: Transform - - uid: 6141 + - uid: 15937 components: - pos: -50.5,41.5 parent: 2 type: Transform - - uid: 6144 + - uid: 15938 components: - pos: -50.5,38.5 parent: 2 type: Transform - - uid: 6146 + - uid: 15939 components: - pos: -36.5,48.5 parent: 2 type: Transform - - uid: 6147 + - uid: 15940 components: - pos: -40.5,48.5 parent: 2 type: Transform - - uid: 6148 + - uid: 15941 components: - pos: -39.5,48.5 parent: 2 type: Transform - - uid: 6149 + - uid: 15942 components: - pos: -34.5,48.5 parent: 2 type: Transform - - uid: 6153 + - uid: 15943 components: - pos: -45.5,49.5 parent: 2 type: Transform - - uid: 6154 + - uid: 15944 components: - pos: -39.5,49.5 parent: 2 type: Transform - - uid: 6155 + - uid: 15945 components: - pos: -45.5,48.5 parent: 2 type: Transform - - uid: 6156 + - uid: 15946 components: - pos: -44.5,48.5 parent: 2 type: Transform - - uid: 6157 + - uid: 15947 components: - pos: -39.5,50.5 parent: 2 type: Transform - - uid: 6158 + - uid: 15948 components: - rot: -1.5707963267948966 rad pos: -46.5,48.5 parent: 2 type: Transform - - uid: 6165 + - uid: 15949 components: - pos: -39.5,52.5 parent: 2 type: Transform - - uid: 6167 + - uid: 15950 components: - pos: -62.5,30.5 parent: 2 type: Transform - - uid: 6169 + - uid: 15951 components: - pos: -45.5,51.5 parent: 2 type: Transform - - uid: 6170 + - uid: 15952 components: - pos: -63.5,30.5 parent: 2 type: Transform - - uid: 6171 + - uid: 15953 components: - rot: -1.5707963267948966 rad pos: -52.5,51.5 parent: 2 type: Transform - - uid: 6184 + - uid: 15954 components: - rot: -1.5707963267948966 rad pos: -47.5,48.5 parent: 2 type: Transform - - uid: 6185 + - uid: 15955 components: - rot: -1.5707963267948966 rad pos: -47.5,45.5 parent: 2 type: Transform - - uid: 6200 + - uid: 15956 components: - rot: -1.5707963267948966 rad pos: -41.5,48.5 parent: 2 type: Transform - - uid: 6204 + - uid: 15957 components: - pos: -63.5,38.5 parent: 2 type: Transform - - uid: 6216 + - uid: 15958 components: - pos: -63.5,37.5 parent: 2 type: Transform - - uid: 6227 + - uid: 15959 components: - pos: -47.5,47.5 parent: 2 type: Transform - - uid: 6230 + - uid: 15960 components: - rot: -1.5707963267948966 rad pos: -53.5,47.5 parent: 2 type: Transform - - uid: 6232 + - uid: 15961 components: - pos: -51.5,37.5 parent: 2 type: Transform - - uid: 6260 + - uid: 15962 components: - rot: -1.5707963267948966 rad pos: -49.5,44.5 parent: 2 type: Transform - - uid: 6265 + - uid: 15963 components: - rot: -1.5707963267948966 rad pos: -49.5,51.5 parent: 2 type: Transform - - uid: 6268 + - uid: 15964 components: - pos: -63.5,36.5 parent: 2 type: Transform - - uid: 6275 + - uid: 15965 components: - pos: -62.5,38.5 parent: 2 type: Transform - - uid: 6276 + - uid: 15966 components: - pos: -61.5,38.5 parent: 2 type: Transform - - uid: 6277 + - uid: 15967 components: - pos: -60.5,38.5 parent: 2 type: Transform - - uid: 6287 + - uid: 15968 components: - pos: -63.5,32.5 parent: 2 type: Transform - - uid: 6288 + - uid: 15969 components: - pos: -63.5,31.5 parent: 2 type: Transform - - uid: 6300 + - uid: 15970 components: - pos: -58.5,38.5 parent: 2 type: Transform - - uid: 6320 + - uid: 15971 components: - rot: -1.5707963267948966 rad pos: -53.5,51.5 parent: 2 type: Transform - - uid: 6322 + - uid: 15972 components: - pos: -57.5,30.5 parent: 2 type: Transform - - uid: 6323 + - uid: 15973 components: - pos: -58.5,30.5 parent: 2 type: Transform - - uid: 6331 + - uid: 15974 components: - rot: -1.5707963267948966 rad pos: -48.5,51.5 parent: 2 type: Transform - - uid: 6346 + - uid: 15975 components: - rot: -1.5707963267948966 rad pos: -54.5,47.5 parent: 2 type: Transform - - uid: 6348 + - uid: 15976 components: - pos: -51.5,32.5 parent: 2 type: Transform - - uid: 6362 + - uid: 15977 components: - rot: -1.5707963267948966 rad pos: -43.5,48.5 parent: 2 type: Transform - - uid: 6371 + - uid: 15978 components: - rot: -1.5707963267948966 rad pos: -50.5,51.5 parent: 2 type: Transform - - uid: 6376 + - uid: 15979 components: - rot: -1.5707963267948966 rad pos: -51.5,51.5 parent: 2 type: Transform - - uid: 6383 + - uid: 15980 components: - pos: -45.5,50.5 parent: 2 type: Transform - - uid: 6385 + - uid: 15981 components: - rot: -1.5707963267948966 rad pos: -48.5,44.5 parent: 2 type: Transform - - uid: 6388 + - uid: 15982 components: - rot: -1.5707963267948966 rad pos: -53.5,50.5 parent: 2 type: Transform - - uid: 6397 + - uid: 15983 components: - rot: -1.5707963267948966 rad pos: -50.5,44.5 parent: 2 type: Transform - - uid: 6398 + - uid: 15984 components: - rot: -1.5707963267948966 rad pos: -47.5,51.5 parent: 2 type: Transform - - uid: 6399 + - uid: 15985 components: - rot: -1.5707963267948966 rad pos: -53.5,46.5 parent: 2 type: Transform - - uid: 6400 + - uid: 15986 components: - rot: -1.5707963267948966 rad pos: -48.5,45.5 parent: 2 type: Transform - - uid: 6438 + - uid: 15987 components: - rot: -1.5707963267948966 rad pos: -48.5,43.5 parent: 2 type: Transform - - uid: 6442 + - uid: 15988 components: - rot: -1.5707963267948966 rad pos: -47.5,49.5 parent: 2 type: Transform - - uid: 6444 + - uid: 15989 components: - rot: -1.5707963267948966 rad pos: -47.5,50.5 parent: 2 type: Transform - - uid: 6445 + - uid: 15990 components: - rot: -1.5707963267948966 rad pos: -52.5,44.5 parent: 2 type: Transform - - uid: 6458 + - uid: 15991 components: - rot: -1.5707963267948966 rad pos: -53.5,45.5 parent: 2 type: Transform - - uid: 6594 + - uid: 15992 components: - rot: -1.5707963267948966 rad pos: -52.5,10.5 parent: 2 type: Transform - - uid: 6595 + - uid: 15993 components: - rot: -1.5707963267948966 rad pos: -54.5,10.5 parent: 2 type: Transform - - uid: 6600 + - uid: 15994 components: - rot: -1.5707963267948966 rad pos: -53.5,14.5 parent: 2 type: Transform - - uid: 6618 + - uid: 15995 components: - pos: -37.5,4.5 parent: 2 type: Transform - - uid: 6619 + - uid: 15996 components: - rot: -1.5707963267948966 rad pos: -51.5,18.5 parent: 2 type: Transform - - uid: 6621 + - uid: 15997 components: - rot: -1.5707963267948966 rad pos: -51.5,22.5 parent: 2 type: Transform - - uid: 6638 + - uid: 15998 components: - pos: -44.5,4.5 parent: 2 type: Transform - - uid: 6657 + - uid: 15999 components: - pos: 30.5,26.5 parent: 2 type: Transform - - uid: 6672 + - uid: 16000 components: - rot: -1.5707963267948966 rad pos: -55.5,47.5 parent: 2 type: Transform - - uid: 6687 + - uid: 16001 components: - pos: 3.5,37.5 parent: 2 type: Transform - - uid: 6688 + - uid: 16002 components: - pos: 3.5,40.5 parent: 2 type: Transform - - uid: 6689 + - uid: 16003 components: - pos: 3.5,41.5 parent: 2 type: Transform - - uid: 6740 + - uid: 16004 components: - pos: -45.5,4.5 parent: 2 type: Transform - - uid: 6755 + - uid: 16005 components: - pos: -39.5,2.5 parent: 2 type: Transform - - uid: 6789 + - uid: 16006 components: - pos: -43.5,2.5 parent: 2 type: Transform - - uid: 7053 + - uid: 16007 components: - pos: -33.5,35.5 parent: 2 type: Transform - - uid: 7173 + - uid: 16008 components: - pos: 29.5,26.5 parent: 2 type: Transform - - uid: 7174 + - uid: 16009 components: - pos: 27.5,24.5 parent: 2 type: Transform - - uid: 7176 + - uid: 16010 components: - pos: 27.5,26.5 parent: 2 type: Transform - - uid: 7453 + - uid: 16011 components: - pos: 30.5,25.5 parent: 2 type: Transform - - uid: 8077 + - uid: 16012 components: - pos: -33.5,33.5 parent: 2 type: Transform - - uid: 8408 + - uid: 16013 components: - pos: 14.5,-35.5 parent: 2 type: Transform - - uid: 8886 + - uid: 16014 components: - rot: 3.141592653589793 rad pos: 23.5,-35.5 parent: 2 type: Transform - - uid: 8887 + - uid: 16015 components: - rot: 3.141592653589793 rad pos: 23.5,-34.5 parent: 2 type: Transform - - uid: 8979 + - uid: 16016 components: - pos: 27.5,25.5 parent: 2 type: Transform - - uid: 9070 + - uid: 16017 components: - rot: 3.141592653589793 rad pos: -33.5,42.5 parent: 2 type: Transform - - uid: 9524 + - uid: 16018 components: - pos: 7.5,-30.5 parent: 2 type: Transform - - uid: 9540 + - uid: 16019 components: - rot: 3.141592653589793 rad pos: -14.5,-49.5 parent: 2 type: Transform - - uid: 9545 + - uid: 16020 components: - pos: 8.5,-14.5 parent: 2 type: Transform - - uid: 9583 + - uid: 16021 components: - rot: -1.5707963267948966 rad pos: -55.5,49.5 parent: 2 type: Transform - - uid: 10099 + - uid: 16022 components: - pos: -15.5,-22.5 parent: 2 type: Transform - - uid: 10639 + - uid: 16023 components: - pos: 8.5,-15.5 parent: 2 type: Transform - - uid: 10675 + - uid: 16024 components: - pos: 25.5,3.5 parent: 2 type: Transform - - uid: 10678 + - uid: 16025 components: - pos: 22.5,-22.5 parent: 2 type: Transform - - uid: 10735 + - uid: 16026 components: - rot: 3.141592653589793 rad pos: -39.5,-25.5 parent: 2 type: Transform - - uid: 10905 + - uid: 16027 components: - pos: -6.5,-14.5 parent: 2 type: Transform - - uid: 10966 + - uid: 16028 components: - rot: -1.5707963267948966 rad pos: -34.5,-6.5 parent: 2 type: Transform - - uid: 11027 + - uid: 16029 components: - pos: -9.5,-20.5 parent: 2 type: Transform - - uid: 11028 + - uid: 16030 components: - pos: -10.5,-20.5 parent: 2 type: Transform - - uid: 11495 + - uid: 16031 components: - pos: 9.5,-41.5 parent: 2 type: Transform - - uid: 11606 + - uid: 16032 components: - pos: 4.5,-14.5 parent: 2 type: Transform - - uid: 11731 + - uid: 16033 components: - rot: 3.141592653589793 rad pos: -32.5,42.5 parent: 2 type: Transform - - uid: 11796 + - uid: 16034 components: - pos: -47.5,4.5 parent: 2 type: Transform - - uid: 12179 + - uid: 16035 components: - pos: 12.5,-40.5 parent: 2 type: Transform - - uid: 13142 + - uid: 16036 components: - pos: -38.5,-7.5 parent: 2 type: Transform - - uid: 13686 + - uid: 16037 components: - pos: -9.5,-19.5 parent: 2 type: Transform - - uid: 13704 + - uid: 16038 components: - pos: -8.5,-14.5 parent: 2 type: Transform - - uid: 13805 + - uid: 16039 components: - pos: -45.5,-2.5 parent: 2 type: Transform - - uid: 13808 + - uid: 16040 components: - pos: -9.5,-14.5 parent: 2 type: Transform - - uid: 13815 + - uid: 16041 components: - pos: -7.5,-14.5 parent: 2 type: Transform - - uid: 14125 + - uid: 16042 components: - pos: -33.5,34.5 parent: 2 type: Transform - - uid: 14575 + - uid: 16043 components: - pos: -14.5,-20.5 parent: 2 type: Transform - - uid: 14750 + - uid: 16044 components: - pos: -17.5,-65.5 parent: 2 type: Transform - - uid: 14752 + - uid: 16045 components: - pos: -15.5,-65.5 parent: 2 type: Transform - - uid: 14933 + - uid: 16046 components: - pos: -45.5,39.5 parent: 2 type: Transform - - uid: 14935 + - uid: 16047 components: - pos: -14.5,-25.5 parent: 2 type: Transform - - uid: 14937 + - uid: 16048 components: - pos: -13.5,-25.5 parent: 2 type: Transform - - uid: 14938 + - uid: 16049 components: - pos: -12.5,-25.5 parent: 2 type: Transform - - uid: 14939 + - uid: 16050 components: - pos: -11.5,-25.5 parent: 2 type: Transform - - uid: 14945 + - uid: 16051 components: - pos: -64.5,-20.5 parent: 2 type: Transform - - uid: 14952 + - uid: 16052 components: - pos: -65.5,6.5 parent: 2 type: Transform - - uid: 14956 + - uid: 16053 components: - pos: -46.5,-23.5 parent: 2 type: Transform - - uid: 15179 + - uid: 16054 components: - pos: 3.5,-11.5 parent: 2 type: Transform - - uid: 15192 + - uid: 16055 components: - pos: 0.5,-8.5 parent: 2 type: Transform - - uid: 15205 + - uid: 16056 components: - pos: 1.5,-8.5 parent: 2 type: Transform - - uid: 15207 + - uid: 16057 components: - pos: 2.5,-8.5 parent: 2 type: Transform - - uid: 15209 + - uid: 16058 components: - pos: 3.5,-8.5 parent: 2 type: Transform - - uid: 15211 + - uid: 16059 components: - pos: 3.5,-9.5 parent: 2 type: Transform - - uid: 15214 + - uid: 16060 components: - pos: 0.5,-11.5 parent: 2 type: Transform - - uid: 15215 + - uid: 16061 components: - pos: 0.5,-9.5 parent: 2 type: Transform - - uid: 15216 + - uid: 16062 components: - pos: -10.5,-25.5 parent: 2 type: Transform - - uid: 15222 + - uid: 16063 components: - pos: 1.5,-11.5 parent: 2 type: Transform - - uid: 15228 + - uid: 16064 components: - pos: 3.5,-10.5 parent: 2 type: Transform - - uid: 15241 + - uid: 16065 components: - pos: 2.5,-11.5 parent: 2 type: Transform - - uid: 15311 + - uid: 16066 components: - pos: 8.5,13.5 parent: 2 type: Transform - - uid: 15626 + - uid: 16067 components: - pos: 23.5,-28.5 parent: 2 type: Transform - - uid: 15650 + - uid: 16068 components: - pos: 23.5,-29.5 parent: 2 type: Transform - - uid: 15706 + - uid: 16069 components: - pos: 9.5,13.5 parent: 2 type: Transform - - uid: 15851 + - uid: 16070 components: - pos: 12.5,-35.5 parent: 2 type: Transform - - uid: 15854 + - uid: 16071 components: - pos: 4.5,-18.5 parent: 2 type: Transform - - uid: 15890 + - uid: 16072 components: - pos: 5.5,-18.5 parent: 2 type: Transform - - uid: 15891 + - uid: 16073 components: - pos: 8.5,-18.5 parent: 2 type: Transform - - uid: 15892 + - uid: 16074 components: - pos: 6.5,-18.5 parent: 2 type: Transform - - uid: 15893 + - uid: 16075 components: - pos: 7.5,-18.5 parent: 2 type: Transform - - uid: 15894 + - uid: 16076 components: - pos: 3.5,-18.5 parent: 2 type: Transform - - uid: 15904 + - uid: 16077 components: - pos: 2.5,-16.5 parent: 2 type: Transform - - uid: 15905 + - uid: 16078 components: - pos: 2.5,-17.5 parent: 2 type: Transform - - uid: 15906 + - uid: 16079 components: - pos: 2.5,-15.5 parent: 2 type: Transform - - uid: 15907 + - uid: 16080 components: - pos: 8.5,-29.5 parent: 2 type: Transform - - uid: 15910 + - uid: 16081 components: - pos: 3.5,-17.5 parent: 2 type: Transform - - uid: 15914 + - uid: 16082 components: - pos: 26.5,-17.5 parent: 2 type: Transform - - uid: 15915 + - uid: 16083 components: - pos: 27.5,-17.5 parent: 2 type: Transform - - uid: 15916 + - uid: 16084 components: - pos: 27.5,-18.5 parent: 2 type: Transform - - uid: 15918 + - uid: 16085 components: - pos: 27.5,-22.5 parent: 2 type: Transform - - uid: 15920 + - uid: 16086 components: - pos: 22.5,-17.5 parent: 2 type: Transform - - uid: 15922 + - uid: 16087 components: - pos: 23.5,-17.5 parent: 2 type: Transform - - uid: 15936 + - uid: 16088 components: - pos: -9.5,-24.5 parent: 2 type: Transform - - uid: 15938 + - uid: 16089 components: - pos: -9.5,-21.5 parent: 2 type: Transform - - uid: 15955 + - uid: 16090 components: - pos: 24.5,-17.5 parent: 2 type: Transform - - uid: 15975 + - uid: 16091 components: - pos: -44.5,-17.5 parent: 2 type: Transform - - uid: 15981 + - uid: 16092 components: - pos: -9.5,-25.5 parent: 2 type: Transform - - uid: 15993 + - uid: 16093 components: - pos: 30.5,23.5 parent: 2 type: Transform - - uid: 16005 + - uid: 16094 components: - pos: -15.5,-24.5 parent: 2 type: Transform - - uid: 16009 + - uid: 16095 components: - pos: -15.5,-20.5 parent: 2 type: Transform - - uid: 16030 + - uid: 16096 components: - pos: 27.5,-21.5 parent: 2 type: Transform - - uid: 16031 + - uid: 16097 components: - pos: 8.5,-28.5 parent: 2 type: Transform - - uid: 16096 + - uid: 16098 components: - pos: -15.5,-23.5 parent: 2 type: Transform - - uid: 16133 + - uid: 16099 components: - pos: -15.5,-21.5 parent: 2 type: Transform - - uid: 16174 + - uid: 16100 components: - pos: 8.5,-27.5 parent: 2 type: Transform - - uid: 16191 + - uid: 16101 components: - pos: -15.5,-26.5 parent: 2 type: Transform - - uid: 16547 + - uid: 16102 components: - pos: -15.5,-25.5 parent: 2 type: Transform -- proto: WallRiveted - entities: - - uid: 1105 - components: - - pos: -4.5,-35.5 - parent: 2 - type: Transform - - uid: 1110 + - uid: 16103 components: - - pos: -4.5,-36.5 + - rot: 1.5707963267948966 rad + pos: -0.5,-34.5 parent: 2 type: Transform - - uid: 1113 +- proto: WallRiveted + entities: + - uid: 16104 components: - pos: 2.5,19.5 parent: 2 type: Transform - - uid: 1115 + - uid: 16105 components: - pos: -1.5,18.5 parent: 2 type: Transform - - uid: 1117 + - uid: 16106 components: - pos: -1.5,20.5 parent: 2 type: Transform - - uid: 1137 + - uid: 16107 components: - pos: -1.5,17.5 parent: 2 type: Transform - - uid: 1623 + - uid: 16108 components: - pos: -0.5,17.5 parent: 2 type: Transform - - uid: 1791 + - uid: 16109 components: - pos: 2.5,17.5 parent: 2 type: Transform - - uid: 1939 + - uid: 16110 components: - pos: 2.5,20.5 parent: 2 type: Transform - - uid: 1940 + - uid: 16111 components: - pos: 2.5,18.5 parent: 2 type: Transform - - uid: 1993 + - uid: 16112 components: - pos: -1.5,21.5 parent: 2 type: Transform - - uid: 2205 + - uid: 16113 components: - pos: -0.5,21.5 parent: 2 type: Transform - - uid: 2207 + - uid: 16114 components: - pos: 2.5,21.5 parent: 2 type: Transform - - uid: 2208 - components: - - pos: -4.5,-37.5 - parent: 2 - type: Transform - - uid: 2211 - components: - - pos: -0.5,-34.5 - parent: 2 - type: Transform - - uid: 2212 - components: - - pos: -4.5,-34.5 - parent: 2 - type: Transform - - uid: 2221 - components: - - pos: -2.5,-37.5 - parent: 2 - type: Transform - - uid: 2232 - components: - - pos: -1.5,-34.5 - parent: 2 - type: Transform - - uid: 2233 - components: - - pos: -3.5,-34.5 - parent: 2 - type: Transform - - uid: 2275 - components: - - pos: -0.5,-37.5 - parent: 2 - type: Transform - - uid: 2283 - components: - - pos: -2.5,-34.5 - parent: 2 - type: Transform - - uid: 2285 - components: - - pos: -0.5,-35.5 - parent: 2 - type: Transform - - uid: 2334 - components: - - pos: -2.5,-36.5 - parent: 2 - type: Transform - - uid: 14098 - components: - - pos: -2.5,-35.5 - parent: 2 - type: Transform - - uid: 14559 - components: - - pos: -0.5,-36.5 - parent: 2 - type: Transform - proto: WallSolid entities: - - uid: 3 + - uid: 16115 components: - pos: -2.5,-1.5 parent: 2 type: Transform - - uid: 4 + - uid: 16116 components: - pos: -2.5,-3.5 parent: 2 type: Transform - - uid: 5 + - uid: 16117 components: - pos: -2.5,-2.5 parent: 2 type: Transform - - uid: 21 + - uid: 16118 components: - pos: -2.5,-4.5 parent: 2 type: Transform - - uid: 22 + - uid: 16119 components: - pos: -0.5,-4.5 parent: 2 type: Transform - - uid: 23 + - uid: 16120 components: - pos: 0.5,-4.5 parent: 2 type: Transform - - uid: 28 + - uid: 16121 components: - pos: 36.5,2.5 parent: 2 type: Transform - - uid: 30 + - uid: 16122 components: - pos: 3.5,-1.5 parent: 2 type: Transform - - uid: 33 + - uid: 16123 components: - pos: 1.5,5.5 parent: 2 type: Transform - - uid: 36 + - uid: 16124 components: - pos: -2.5,2.5 parent: 2 type: Transform - - uid: 42 + - uid: 16125 components: - pos: -6.5,-1.5 parent: 2 type: Transform - - uid: 46 + - uid: 16126 components: - pos: -2.5,5.5 parent: 2 type: Transform - - uid: 48 + - uid: 16127 components: - pos: -0.5,5.5 parent: 2 type: Transform - - uid: 49 + - uid: 16128 components: - pos: 3.5,-4.5 parent: 2 type: Transform - - uid: 50 + - uid: 16129 components: - pos: 1.5,-4.5 parent: 2 type: Transform - - uid: 51 + - uid: 16130 components: - pos: -2.5,0.5 parent: 2 type: Transform - - uid: 52 + - uid: 16131 components: - pos: 3.5,0.5 parent: 2 type: Transform - - uid: 53 + - uid: 16132 components: - rot: -1.5707963267948966 rad pos: -6.5,3.5 parent: 2 type: Transform - - uid: 54 + - uid: 16133 components: - rot: -1.5707963267948966 rad pos: -11.5,2.5 parent: 2 type: Transform - - uid: 55 + - uid: 16134 components: - rot: -1.5707963267948966 rad pos: -7.5,2.5 parent: 2 type: Transform - - uid: 59 + - uid: 16135 components: - rot: -1.5707963267948966 rad pos: -6.5,2.5 parent: 2 type: Transform - - uid: 63 + - uid: 16136 components: - rot: -1.5707963267948966 rad pos: -11.5,9.5 parent: 2 type: Transform - - uid: 64 + - uid: 16137 components: - rot: -1.5707963267948966 rad pos: -11.5,13.5 parent: 2 type: Transform - - uid: 67 + - uid: 16138 components: - pos: 4.5,-1.5 parent: 2 type: Transform - - uid: 68 + - uid: 16139 components: - pos: 5.5,-1.5 parent: 2 type: Transform - - uid: 70 + - uid: 16140 components: - pos: 7.5,-1.5 parent: 2 type: Transform - - uid: 71 + - uid: 16141 components: - pos: 8.5,-1.5 parent: 2 type: Transform - - uid: 72 + - uid: 16142 components: - pos: 9.5,-1.5 parent: 2 type: Transform - - uid: 73 + - uid: 16143 components: - pos: 0.5,-5.5 parent: 2 type: Transform - - uid: 75 + - uid: 16144 components: - pos: 0.5,-7.5 parent: 2 type: Transform - - uid: 77 + - uid: 16145 components: - pos: -15.5,2.5 parent: 2 type: Transform - - uid: 78 + - uid: 16146 components: - pos: -1.5,5.5 parent: 2 type: Transform - - uid: 79 + - uid: 16147 components: - pos: 2.5,5.5 parent: 2 type: Transform - - uid: 81 + - uid: 16148 components: - pos: -10.5,-1.5 parent: 2 type: Transform - - uid: 83 + - uid: 16149 components: - pos: -11.5,-2.5 parent: 2 type: Transform - - uid: 84 + - uid: 16150 components: - pos: -11.5,-3.5 parent: 2 type: Transform - - uid: 85 + - uid: 16151 components: - pos: -1.5,6.5 parent: 2 type: Transform - - uid: 86 + - uid: 16152 components: - pos: -11.5,-5.5 parent: 2 type: Transform - - uid: 87 + - uid: 16153 components: - pos: -11.5,-6.5 parent: 2 type: Transform - - uid: 90 + - uid: 16154 components: - pos: -11.5,-9.5 parent: 2 type: Transform - - uid: 92 + - uid: 16155 components: - pos: -1.5,8.5 parent: 2 type: Transform - - uid: 95 + - uid: 16156 components: - pos: -5.5,-11.5 parent: 2 type: Transform - - uid: 96 + - uid: 16157 components: - pos: -4.5,-11.5 parent: 2 type: Transform - - uid: 97 + - uid: 16158 components: - pos: -3.5,-11.5 parent: 2 type: Transform - - uid: 98 + - uid: 16159 components: - pos: -2.5,-11.5 parent: 2 type: Transform - - uid: 99 + - uid: 16160 components: - pos: -2.5,-10.5 parent: 2 type: Transform - - uid: 100 + - uid: 16161 components: - pos: -2.5,-9.5 parent: 2 type: Transform - - uid: 101 + - uid: 16162 components: - pos: -2.5,-8.5 parent: 2 type: Transform - - uid: 102 + - uid: 16163 components: - pos: -2.5,-7.5 parent: 2 type: Transform - - uid: 103 + - uid: 16164 components: - pos: -11.5,-1.5 parent: 2 type: Transform - - uid: 104 + - uid: 16165 components: - pos: -2.5,-5.5 parent: 2 type: Transform - - uid: 105 + - uid: 16166 components: - pos: -11.5,-11.5 parent: 2 type: Transform - - uid: 107 + - uid: 16167 components: - pos: -11.5,-10.5 parent: 2 type: Transform - - uid: 108 + - uid: 16168 components: - pos: -10.5,-11.5 parent: 2 type: Transform - - uid: 120 + - uid: 16169 components: - rot: 1.5707963267948966 rad pos: -6.5,-2.5 parent: 2 type: Transform - - uid: 133 + - uid: 16170 components: - rot: -1.5707963267948966 rad pos: -6.5,7.5 parent: 2 type: Transform - - uid: 154 + - uid: 16171 components: - pos: -14.5,-4.5 parent: 2 type: Transform - - uid: 155 + - uid: 16172 components: - pos: -15.5,-6.5 parent: 2 type: Transform - - uid: 156 + - uid: 16173 components: - pos: -14.5,-7.5 parent: 2 type: Transform - - uid: 157 + - uid: 16174 components: - pos: -14.5,-5.5 parent: 2 type: Transform - - uid: 158 + - uid: 16175 components: - pos: -14.5,-8.5 parent: 2 type: Transform - - uid: 159 + - uid: 16176 components: - pos: -14.5,-9.5 parent: 2 type: Transform - - uid: 165 + - uid: 16177 components: - pos: -14.5,-6.5 parent: 2 type: Transform - - uid: 168 + - uid: 16178 components: - pos: -13.5,-6.5 parent: 2 type: Transform - - uid: 169 + - uid: 16179 components: - pos: -12.5,-6.5 parent: 2 type: Transform - - uid: 171 + - uid: 16180 components: - pos: -12.5,2.5 parent: 2 type: Transform - - uid: 173 + - uid: 16181 components: - pos: -16.5,3.5 parent: 2 type: Transform - - uid: 175 + - uid: 16182 components: - pos: -16.5,2.5 parent: 2 type: Transform - - uid: 176 + - uid: 16183 components: - pos: -17.5,2.5 parent: 2 type: Transform - - uid: 177 + - uid: 16184 components: - pos: -5.5,-1.5 parent: 2 type: Transform - - uid: 178 + - uid: 16185 components: - pos: -19.5,-1.5 parent: 2 type: Transform - - uid: 179 + - uid: 16186 components: - pos: -19.5,-2.5 parent: 2 type: Transform - - uid: 187 + - uid: 16187 components: - pos: -0.5,8.5 parent: 2 type: Transform - - uid: 188 + - uid: 16188 components: - pos: 0.5,8.5 parent: 2 type: Transform - - uid: 189 + - uid: 16189 components: - pos: 1.5,8.5 parent: 2 type: Transform - - uid: 190 + - uid: 16190 components: - pos: 2.5,8.5 parent: 2 type: Transform - - uid: 202 + - uid: 16191 components: - rot: -1.5707963267948966 rad pos: -11.5,8.5 parent: 2 type: Transform - - uid: 213 + - uid: 16192 components: - pos: -12.5,8.5 parent: 2 type: Transform - - uid: 214 + - uid: 16193 components: - pos: -11.5,12.5 parent: 2 type: Transform - - uid: 215 + - uid: 16194 components: - pos: 2.5,10.5 parent: 2 type: Transform - - uid: 216 + - uid: 16195 components: - pos: 2.5,9.5 parent: 2 type: Transform - - uid: 217 + - uid: 16196 components: - pos: 2.5,12.5 parent: 2 type: Transform - - uid: 218 + - uid: 16197 components: - pos: -6.5,8.5 parent: 2 type: Transform - - uid: 219 + - uid: 16198 components: - pos: 2.5,13.5 parent: 2 type: Transform - - uid: 221 + - uid: 16199 components: - pos: -16.5,7.5 parent: 2 type: Transform - - uid: 225 + - uid: 16200 components: - pos: -16.5,8.5 parent: 2 type: Transform - - uid: 226 + - uid: 16201 components: - pos: -14.5,19.5 parent: 2 type: Transform - - uid: 227 + - uid: 16202 components: - pos: -5.5,18.5 parent: 2 type: Transform - - uid: 228 + - uid: 16203 components: - pos: -16.5,11.5 parent: 2 type: Transform - - uid: 231 + - uid: 16204 components: - pos: -11.5,14.5 parent: 2 type: Transform - - uid: 235 + - uid: 16205 components: - pos: -15.5,8.5 parent: 2 type: Transform - - uid: 237 + - uid: 16206 components: - pos: -13.5,8.5 parent: 2 type: Transform - - uid: 240 + - uid: 16207 components: - pos: -5.5,9.5 parent: 2 type: Transform - - uid: 241 + - uid: 16208 components: - pos: -5.5,13.5 parent: 2 type: Transform - - uid: 242 + - uid: 16209 components: - pos: -14.5,-2.5 parent: 2 type: Transform - - uid: 243 + - uid: 16210 components: - pos: -14.5,-3.5 parent: 2 type: Transform - - uid: 244 + - uid: 16211 components: - pos: -22.5,2.5 parent: 2 type: Transform - - uid: 245 + - uid: 16212 components: - pos: -22.5,3.5 parent: 2 type: Transform - - uid: 246 + - uid: 16213 components: - pos: -22.5,4.5 parent: 2 type: Transform - - uid: 247 + - uid: 16214 components: - pos: -14.5,-10.5 parent: 2 type: Transform - - uid: 249 + - uid: 16215 components: - pos: -22.5,7.5 parent: 2 type: Transform - - uid: 254 + - uid: 16216 components: - rot: -1.5707963267948966 rad pos: -44.5,8.5 parent: 2 type: Transform - - uid: 255 + - uid: 16217 components: - pos: -11.5,19.5 parent: 2 type: Transform - - uid: 261 + - uid: 16218 components: - pos: -13.5,16.5 parent: 2 type: Transform - - uid: 268 + - uid: 16219 components: - pos: -5.5,15.5 parent: 2 type: Transform - - uid: 284 + - uid: 16220 components: - pos: -9.5,19.5 parent: 2 type: Transform - - uid: 285 + - uid: 16221 components: - pos: -16.5,16.5 parent: 2 type: Transform - - uid: 290 + - uid: 16222 components: - pos: -19.5,8.5 parent: 2 type: Transform - - uid: 291 + - uid: 16223 components: - pos: -21.5,8.5 parent: 2 type: Transform - - uid: 294 + - uid: 16224 components: - pos: -16.5,9.5 parent: 2 type: Transform - - uid: 295 + - uid: 16225 components: - pos: -22.5,8.5 parent: 2 type: Transform - - uid: 300 + - uid: 16226 components: - pos: -15.5,19.5 parent: 2 type: Transform - - uid: 301 + - uid: 16227 components: - pos: 0.5,13.5 parent: 2 type: Transform - - uid: 303 + - uid: 16228 components: - pos: 1.5,13.5 parent: 2 type: Transform - - uid: 305 + - uid: 16229 components: - pos: -5.5,14.5 parent: 2 type: Transform - - uid: 306 + - uid: 16230 components: - pos: -1.5,13.5 parent: 2 type: Transform - - uid: 309 + - uid: 16231 components: - pos: -0.5,13.5 parent: 2 type: Transform - - uid: 310 + - uid: 16232 components: - pos: -18.5,19.5 parent: 2 type: Transform - - uid: 311 + - uid: 16233 components: - pos: -5.5,12.5 parent: 2 type: Transform - - uid: 313 + - uid: 16234 components: - pos: -12.5,16.5 parent: 2 type: Transform - - uid: 314 + - uid: 16235 components: - pos: -11.5,16.5 parent: 2 type: Transform - - uid: 318 + - uid: 16236 components: - pos: 10.5,-7.5 parent: 2 type: Transform - - uid: 325 + - uid: 16237 components: - pos: 9.5,-2.5 parent: 2 type: Transform - - uid: 329 + - uid: 16238 components: - pos: 9.5,-5.5 parent: 2 type: Transform - - uid: 334 + - uid: 16239 components: - pos: 8.5,-8.5 parent: 2 type: Transform - - uid: 343 + - uid: 16240 components: - pos: 9.5,-8.5 parent: 2 type: Transform - - uid: 344 + - uid: 16241 components: - pos: 10.5,-2.5 parent: 2 type: Transform - - uid: 345 + - uid: 16242 components: - pos: -12.5,18.5 parent: 2 type: Transform - - uid: 347 + - uid: 16243 components: - pos: -15.5,16.5 parent: 2 type: Transform - - uid: 350 + - uid: 16244 components: - pos: 20.5,-10.5 parent: 2 type: Transform - - uid: 351 + - uid: 16245 components: - pos: 19.5,-10.5 parent: 2 type: Transform - - uid: 352 + - uid: 16246 components: - pos: 9.5,-7.5 parent: 2 type: Transform - - uid: 353 + - uid: 16247 components: - pos: 7.5,-8.5 parent: 2 type: Transform - - uid: 356 + - uid: 16248 components: - pos: 4.5,-8.5 parent: 2 type: Transform - - uid: 357 + - uid: 16249 components: - pos: 9.5,-11.5 parent: 2 type: Transform - - uid: 358 + - uid: 16250 components: - pos: 10.5,-11.5 parent: 2 type: Transform - - uid: 362 + - uid: 16251 components: - pos: 14.5,-11.5 parent: 2 type: Transform - - uid: 367 + - uid: 16252 components: - pos: 16.5,-11.5 parent: 2 type: Transform - - uid: 392 + - uid: 16253 components: - pos: 16.5,-15.5 parent: 2 type: Transform - - uid: 393 + - uid: 16254 components: - pos: 16.5,-14.5 parent: 2 type: Transform - - uid: 394 + - uid: 16255 components: - pos: 16.5,-13.5 parent: 2 type: Transform - - uid: 395 + - uid: 16256 components: - pos: 16.5,-12.5 parent: 2 type: Transform - - uid: 401 + - uid: 16257 components: - pos: 16.5,-17.5 parent: 2 type: Transform - - uid: 403 + - uid: 16258 components: - pos: -5.5,20.5 parent: 2 type: Transform - - uid: 428 + - uid: 16259 components: - pos: 16.5,-10.5 parent: 2 type: Transform - - uid: 430 + - uid: 16260 components: - pos: 16.5,-8.5 parent: 2 type: Transform - - uid: 431 + - uid: 16261 components: - pos: -18.5,18.5 parent: 2 type: Transform - - uid: 432 + - uid: 16262 components: - pos: -19.5,18.5 parent: 2 type: Transform - - uid: 449 + - uid: 16263 components: - pos: -7.5,-1.5 parent: 2 type: Transform - - uid: 455 + - uid: 16264 components: - pos: 17.5,2.5 parent: 2 type: Transform - - uid: 457 + - uid: 16265 components: - pos: -34.5,0.5 parent: 2 type: Transform - - uid: 458 + - uid: 16266 components: - pos: 20.5,2.5 parent: 2 type: Transform - - uid: 465 + - uid: 16267 components: - pos: -21.5,18.5 parent: 2 type: Transform - - uid: 467 + - uid: 16268 components: - pos: -22.5,14.5 parent: 2 type: Transform - - uid: 468 + - uid: 16269 components: - pos: -21.5,15.5 parent: 2 type: Transform - - uid: 485 + - uid: 16270 components: - pos: -1.5,9.5 parent: 2 type: Transform - - uid: 486 + - uid: 16271 components: - pos: -2.5,9.5 parent: 2 type: Transform - - uid: 490 + - uid: 16272 components: - pos: -2.5,13.5 parent: 2 type: Transform - - uid: 494 + - uid: 16273 components: - pos: 16.5,2.5 parent: 2 type: Transform - - uid: 496 + - uid: 16274 components: - rot: -1.5707963267948966 rad pos: -45.5,8.5 parent: 2 type: Transform - - uid: 497 + - uid: 16275 components: - pos: 10.5,3.5 parent: 2 type: Transform - - uid: 502 + - uid: 16276 components: - pos: 15.5,3.5 parent: 2 type: Transform - - uid: 503 + - uid: 16277 components: - pos: 16.5,3.5 parent: 2 type: Transform - - uid: 504 + - uid: 16278 components: - pos: 26.5,-6.5 parent: 2 type: Transform - - uid: 510 + - uid: 16279 components: - pos: 16.5,4.5 parent: 2 type: Transform - - uid: 514 + - uid: 16280 components: - pos: 16.5,8.5 parent: 2 type: Transform - - uid: 539 + - uid: 16281 components: - pos: -8.5,13.5 parent: 2 type: Transform - - uid: 542 + - uid: 16282 components: - pos: -20.5,-1.5 parent: 2 type: Transform - - uid: 545 + - uid: 16283 components: - pos: -23.5,-1.5 parent: 2 type: Transform - - uid: 547 + - uid: 16284 components: - pos: -25.5,-1.5 parent: 2 type: Transform - - uid: 548 + - uid: 16285 components: - pos: -26.5,-1.5 parent: 2 type: Transform - - uid: 555 + - uid: 16286 components: - pos: -26.5,8.5 parent: 2 type: Transform - - uid: 556 + - uid: 16287 components: - pos: -27.5,8.5 parent: 2 type: Transform - - uid: 558 + - uid: 16288 components: - pos: -29.5,8.5 parent: 2 type: Transform - - uid: 559 + - uid: 16289 components: - pos: -30.5,8.5 parent: 2 type: Transform - - uid: 560 + - uid: 16290 components: - pos: -31.5,8.5 parent: 2 type: Transform - - uid: 561 + - uid: 16291 components: - pos: -32.5,8.5 parent: 2 type: Transform - - uid: 562 + - uid: 16292 components: - pos: -33.5,8.5 parent: 2 type: Transform - - uid: 564 + - uid: 16293 components: - pos: -35.5,8.5 parent: 2 type: Transform - - uid: 572 + - uid: 16294 components: - pos: -34.5,4.5 parent: 2 type: Transform - - uid: 573 + - uid: 16295 components: - pos: -35.5,4.5 parent: 2 type: Transform - - uid: 574 + - uid: 16296 components: - pos: -26.5,9.5 parent: 2 type: Transform - - uid: 575 + - uid: 16297 components: - pos: -26.5,11.5 parent: 2 type: Transform - - uid: 576 + - uid: 16298 components: - pos: -26.5,10.5 parent: 2 type: Transform - - uid: 577 + - uid: 16299 components: - pos: -26.5,13.5 parent: 2 type: Transform - - uid: 578 + - uid: 16300 components: - pos: -26.5,12.5 parent: 2 type: Transform - - uid: 580 + - uid: 16301 components: - pos: -23.5,8.5 parent: 2 type: Transform - - uid: 581 + - uid: 16302 components: - pos: -26.5,17.5 parent: 2 type: Transform - - uid: 582 + - uid: 16303 components: - pos: -26.5,16.5 parent: 2 type: Transform - - uid: 584 + - uid: 16304 components: - pos: -25.5,18.5 parent: 2 type: Transform - - uid: 585 + - uid: 16305 components: - pos: -25.5,19.5 parent: 2 type: Transform - - uid: 586 + - uid: 16306 components: - pos: -25.5,20.5 parent: 2 type: Transform - - uid: 587 + - uid: 16307 components: - pos: -25.5,21.5 parent: 2 type: Transform - - uid: 588 + - uid: 16308 components: - pos: -25.5,22.5 parent: 2 type: Transform - - uid: 589 + - uid: 16309 components: - pos: -13.5,19.5 parent: 2 type: Transform - - uid: 590 + - uid: 16310 components: - pos: -12.5,19.5 parent: 2 type: Transform - - uid: 592 + - uid: 16311 components: - pos: -5.5,19.5 parent: 2 type: Transform - - uid: 599 + - uid: 16312 components: - pos: -23.5,11.5 parent: 2 type: Transform - - uid: 600 + - uid: 16313 components: - pos: -26.5,18.5 parent: 2 type: Transform - - uid: 604 + - uid: 16314 components: - pos: -23.5,13.5 parent: 2 type: Transform - - uid: 606 + - uid: 16315 components: - pos: -22.5,15.5 parent: 2 type: Transform - - uid: 615 + - uid: 16316 components: - pos: -20.5,8.5 parent: 2 type: Transform - - uid: 621 + - uid: 16317 components: - pos: -11.5,11.5 parent: 2 type: Transform - - uid: 622 + - uid: 16318 components: - pos: -8.5,14.5 parent: 2 type: Transform - - uid: 628 + - uid: 16319 components: - pos: -5.5,8.5 parent: 2 type: Transform - - uid: 685 + - uid: 16320 components: - pos: -22.5,16.5 parent: 2 type: Transform - - uid: 686 + - uid: 16321 components: - pos: -22.5,18.5 parent: 2 type: Transform - - uid: 702 + - uid: 16322 components: - pos: -5.5,-16.5 parent: 2 type: Transform - - uid: 704 + - uid: 16323 components: - pos: -25.5,23.5 parent: 2 type: Transform - - uid: 713 + - uid: 16324 components: - pos: -29.5,12.5 parent: 2 type: Transform - - uid: 714 + - uid: 16325 components: - pos: -29.5,11.5 parent: 2 type: Transform - - uid: 715 + - uid: 16326 components: - pos: -29.5,10.5 parent: 2 type: Transform - - uid: 717 + - uid: 16327 components: - pos: -29.5,9.5 parent: 2 type: Transform - - uid: 719 + - uid: 16328 components: - pos: -32.5,12.5 parent: 2 type: Transform - - uid: 721 + - uid: 16329 components: - pos: -29.5,-1.5 parent: 2 type: Transform - - uid: 722 + - uid: 16330 components: - pos: -32.5,11.5 parent: 2 type: Transform - - uid: 723 + - uid: 16331 components: - pos: -32.5,10.5 parent: 2 type: Transform - - uid: 724 + - uid: 16332 components: - pos: -32.5,9.5 parent: 2 type: Transform - - uid: 725 + - uid: 16333 components: - pos: -26.5,-2.5 parent: 2 type: Transform - - uid: 733 + - uid: 16334 components: - pos: -38.5,12.5 parent: 2 type: Transform - - uid: 737 + - uid: 16335 components: - pos: -38.5,8.5 parent: 2 type: Transform - - uid: 740 + - uid: 16336 components: - pos: -29.5,13.5 parent: 2 type: Transform - - uid: 742 + - uid: 16337 components: - pos: -27.5,13.5 parent: 2 type: Transform - - uid: 744 + - uid: 16338 components: - pos: 36.5,-17.5 parent: 2 type: Transform - - uid: 746 + - uid: 16339 components: - pos: -35.5,16.5 parent: 2 type: Transform - - uid: 747 + - uid: 16340 components: - pos: -35.5,17.5 parent: 2 type: Transform - - uid: 748 + - uid: 16341 components: - pos: 33.5,-17.5 parent: 2 type: Transform - - uid: 752 + - uid: 16342 components: - pos: -38.5,21.5 parent: 2 type: Transform - - uid: 753 + - uid: 16343 components: - pos: -35.5,18.5 parent: 2 type: Transform - - uid: 754 + - uid: 16344 components: - pos: -35.5,19.5 parent: 2 type: Transform - - uid: 755 + - uid: 16345 components: - pos: -35.5,20.5 parent: 2 type: Transform - - uid: 756 + - uid: 16346 components: - pos: -35.5,21.5 parent: 2 type: Transform - - uid: 757 + - uid: 16347 components: - pos: -34.5,1.5 parent: 2 type: Transform - - uid: 758 + - uid: 16348 components: - pos: -5.5,-15.5 parent: 2 type: Transform - - uid: 759 + - uid: 16349 components: - pos: -32.5,17.5 parent: 2 type: Transform - - uid: 761 + - uid: 16350 components: - pos: -30.5,17.5 parent: 2 type: Transform - - uid: 762 + - uid: 16351 components: - pos: -29.5,17.5 parent: 2 type: Transform - - uid: 765 + - uid: 16352 components: - pos: -28.5,17.5 parent: 2 type: Transform - - uid: 766 + - uid: 16353 components: - pos: -36.5,21.5 parent: 2 type: Transform - - uid: 768 + - uid: 16354 components: - pos: -29.5,18.5 parent: 2 type: Transform - - uid: 769 + - uid: 16355 components: - pos: -29.5,19.5 parent: 2 type: Transform - - uid: 770 + - uid: 16356 components: - pos: -29.5,20.5 parent: 2 type: Transform - - uid: 771 + - uid: 16357 components: - pos: -32.5,21.5 parent: 2 type: Transform - - uid: 773 + - uid: 16358 components: - pos: -29.5,-7.5 parent: 2 type: Transform - - uid: 775 + - uid: 16359 components: - pos: -29.5,21.5 parent: 2 type: Transform - - uid: 776 + - uid: 16360 components: - pos: -32.5,20.5 parent: 2 type: Transform - - uid: 777 + - uid: 16361 components: - pos: -32.5,19.5 parent: 2 type: Transform - - uid: 778 + - uid: 16362 components: - pos: -32.5,18.5 parent: 2 type: Transform - - uid: 779 + - uid: 16363 components: - pos: -31.5,21.5 parent: 2 type: Transform - - uid: 780 + - uid: 16364 components: - pos: -30.5,21.5 parent: 2 type: Transform - - uid: 782 + - uid: 16365 components: - pos: -34.5,21.5 parent: 2 type: Transform - - uid: 784 + - uid: 16366 components: - rot: 1.5707963267948966 rad pos: 21.5,-16.5 parent: 2 type: Transform - - uid: 785 + - uid: 16367 components: - pos: -30.5,-1.5 parent: 2 type: Transform - - uid: 787 + - uid: 16368 components: - pos: -32.5,-1.5 parent: 2 type: Transform - - uid: 788 + - uid: 16369 components: - pos: -33.5,-1.5 parent: 2 type: Transform - - uid: 796 + - uid: 16370 components: - pos: -34.5,3.5 parent: 2 type: Transform - - uid: 797 + - uid: 16371 components: - pos: -34.5,2.5 parent: 2 type: Transform - - uid: 798 + - uid: 16372 components: - pos: -29.5,-0.5 parent: 2 type: Transform - - uid: 800 + - uid: 16373 components: - pos: -34.5,-0.5 parent: 2 type: Transform - - uid: 801 + - uid: 16374 components: - pos: -34.5,-1.5 parent: 2 type: Transform - - uid: 840 + - uid: 16375 components: - pos: -20.5,-10.5 parent: 2 type: Transform - - uid: 841 + - uid: 16376 components: - pos: -21.5,-10.5 parent: 2 type: Transform - - uid: 848 + - uid: 16377 components: - pos: -23.5,-10.5 parent: 2 type: Transform - - uid: 849 + - uid: 16378 components: - pos: 2.5,-12.5 parent: 2 type: Transform - - uid: 852 + - uid: 16379 components: - pos: -15.5,20.5 parent: 2 type: Transform - - uid: 853 + - uid: 16380 components: - pos: -22.5,23.5 parent: 2 type: Transform - - uid: 871 + - uid: 16381 components: - pos: -26.5,-7.5 parent: 2 type: Transform - - uid: 872 + - uid: 16382 components: - pos: -27.5,-7.5 parent: 2 type: Transform - - uid: 885 + - uid: 16383 components: - pos: -5.5,-21.5 parent: 2 type: Transform - - uid: 903 + - uid: 16384 components: - pos: -22.5,13.5 parent: 2 type: Transform - - uid: 904 + - uid: 16385 components: - pos: -33.5,17.5 parent: 2 type: Transform - - uid: 915 + - uid: 16386 components: - pos: -18.5,22.5 parent: 2 type: Transform - - uid: 927 + - uid: 16387 components: - pos: -5.5,-19.5 parent: 2 type: Transform - - uid: 929 + - uid: 16388 components: - pos: 13.5,-29.5 parent: 2 type: Transform - - uid: 933 + - uid: 16389 components: - pos: -18.5,24.5 parent: 2 type: Transform - - uid: 934 + - uid: 16390 components: - pos: -2.5,-20.5 parent: 2 type: Transform - - uid: 941 + - uid: 16391 components: - pos: 35.5,-17.5 parent: 2 type: Transform - - uid: 943 + - uid: 16392 components: - pos: -15.5,-19.5 parent: 2 type: Transform - - uid: 944 + - uid: 16393 components: - pos: -1.5,-20.5 parent: 2 type: Transform - - uid: 947 + - uid: 16394 components: - pos: -10.5,-14.5 parent: 2 type: Transform - - uid: 975 + - uid: 16395 components: - pos: 23.5,-6.5 parent: 2 type: Transform - - uid: 997 + - uid: 16396 components: - pos: -30.5,-7.5 parent: 2 type: Transform - - uid: 1007 + - uid: 16397 components: - pos: -5.5,-20.5 parent: 2 type: Transform - - uid: 1032 + - uid: 16398 components: - pos: -4.5,-20.5 parent: 2 type: Transform - - uid: 1044 + - uid: 16399 components: - pos: -4.5,-12.5 parent: 2 type: Transform - - uid: 1048 + - uid: 16400 components: - pos: -15.5,-14.5 parent: 2 type: Transform - - uid: 1049 + - uid: 16401 components: - pos: -14.5,-14.5 parent: 2 type: Transform - - uid: 1051 + - uid: 16402 components: - pos: -13.5,-14.5 parent: 2 type: Transform - - uid: 1052 + - uid: 16403 components: - pos: -11.5,23.5 parent: 2 type: Transform - - uid: 1054 + - uid: 16404 components: - pos: -19.5,24.5 parent: 2 type: Transform - - uid: 1056 + - uid: 16405 components: - pos: -22.5,21.5 parent: 2 type: Transform - - uid: 1071 + - uid: 16406 components: - pos: 8.5,-19.5 parent: 2 type: Transform - - uid: 1088 + - uid: 16407 components: - pos: -18.5,20.5 parent: 2 type: Transform - - uid: 1090 + - uid: 16408 components: - pos: -20.5,24.5 parent: 2 type: Transform - - uid: 1109 + - uid: 16409 components: - pos: -2.5,15.5 parent: 2 type: Transform - - uid: 1112 + - uid: 16410 components: - pos: -22.5,24.5 parent: 2 type: Transform - - uid: 1136 + - uid: 16411 components: - pos: -21.5,24.5 parent: 2 type: Transform - - uid: 1139 + - uid: 16412 components: - pos: -15.5,22.5 parent: 2 type: Transform - - uid: 1142 + - uid: 16413 components: - pos: -18.5,21.5 parent: 2 type: Transform - - uid: 1143 + - uid: 16414 components: - pos: -16.5,23.5 parent: 2 type: Transform - - uid: 1144 + - uid: 16415 components: - pos: -15.5,23.5 parent: 2 type: Transform - - uid: 1145 + - uid: 16416 components: - pos: -15.5,24.5 parent: 2 type: Transform - - uid: 1148 + - uid: 16417 components: - pos: -12.5,24.5 parent: 2 type: Transform - - uid: 1156 + - uid: 16418 components: - pos: -18.5,23.5 parent: 2 type: Transform - - uid: 1158 + - uid: 16419 components: - pos: -11.5,24.5 parent: 2 type: Transform - - uid: 1159 + - uid: 16420 components: - pos: -25.5,24.5 parent: 2 type: Transform - - uid: 1191 + - uid: 16421 components: - pos: -1.5,26.5 parent: 2 type: Transform - - uid: 1313 + - uid: 16422 components: - pos: -15.5,-15.5 parent: 2 type: Transform - - uid: 1314 + - uid: 16423 components: - pos: -15.5,-16.5 parent: 2 type: Transform - - uid: 1316 + - uid: 16424 components: - pos: -33.5,-10.5 parent: 2 type: Transform - - uid: 1317 + - uid: 16425 components: - pos: -34.5,-10.5 parent: 2 type: Transform - - uid: 1336 + - uid: 16426 components: - pos: -5.5,-25.5 parent: 2 type: Transform - - uid: 1337 + - uid: 16427 components: - pos: -5.5,-26.5 parent: 2 type: Transform - - uid: 1338 + - uid: 16428 components: - pos: -5.5,-27.5 parent: 2 type: Transform - - uid: 1339 + - uid: 16429 components: - pos: -5.5,-28.5 parent: 2 type: Transform - - uid: 1475 + - uid: 16430 components: - pos: -20.5,28.5 parent: 2 type: Transform - - uid: 1476 + - uid: 16431 components: - pos: -17.5,28.5 parent: 2 type: Transform - - uid: 1477 + - uid: 16432 components: - pos: -18.5,28.5 parent: 2 type: Transform - - uid: 1485 + - uid: 16433 components: - pos: -13.5,-31.5 parent: 2 type: Transform - - uid: 1490 + - uid: 16434 components: - pos: -6.5,-11.5 parent: 2 type: Transform - - uid: 1503 + - uid: 16435 components: - pos: 36.5,-11.5 parent: 2 type: Transform - - uid: 1509 + - uid: 16436 components: - pos: -15.5,28.5 parent: 2 type: Transform - - uid: 1523 + - uid: 16437 components: - pos: 13.5,-30.5 parent: 2 type: Transform - - uid: 1526 + - uid: 16438 components: - pos: 12.5,-28.5 parent: 2 type: Transform - - uid: 1527 + - uid: 16439 components: - pos: 13.5,-28.5 parent: 2 type: Transform - - uid: 1539 + - uid: 16440 components: - pos: 9.5,-28.5 parent: 2 type: Transform - - uid: 1679 + - uid: 16441 components: - rot: 1.5707963267948966 rad pos: 28.5,-1.5 parent: 2 type: Transform - - uid: 1680 + - uid: 16442 components: - rot: 1.5707963267948966 rad pos: 27.5,-2.5 parent: 2 type: Transform - - uid: 1682 + - uid: 16443 components: - pos: -16.5,28.5 parent: 2 type: Transform - - uid: 1694 + - uid: 16444 components: - pos: 32.5,-14.5 parent: 2 type: Transform - - uid: 1699 + - uid: 16445 components: - pos: -5.5,-17.5 parent: 2 type: Transform - - uid: 1700 + - uid: 16446 components: - rot: 3.141592653589793 rad pos: 36.5,-6.5 parent: 2 type: Transform - - uid: 1705 + - uid: 16447 components: - pos: 18.5,-10.5 parent: 2 type: Transform - - uid: 1708 + - uid: 16448 components: - pos: 19.5,-14.5 parent: 2 type: Transform - - uid: 1726 + - uid: 16449 components: - pos: 32.5,-17.5 parent: 2 type: Transform - - uid: 1732 + - uid: 16450 components: - rot: 3.141592653589793 rad pos: 27.5,-6.5 parent: 2 type: Transform - - uid: 1735 + - uid: 16451 components: - rot: 3.141592653589793 rad pos: 35.5,-10.5 parent: 2 type: Transform - - uid: 1736 + - uid: 16452 components: - rot: 3.141592653589793 rad pos: 36.5,-12.5 parent: 2 type: Transform - - uid: 1757 + - uid: 16453 components: - pos: -21.5,28.5 parent: 2 type: Transform - - uid: 1765 + - uid: 16454 components: - rot: 1.5707963267948966 rad pos: 27.5,-1.5 parent: 2 type: Transform - - uid: 1774 + - uid: 16455 components: - pos: -0.5,-20.5 parent: 2 type: Transform - - uid: 1777 + - uid: 16456 components: - rot: -1.5707963267948966 rad pos: 18.5,23.5 parent: 2 type: Transform - - uid: 1790 + - uid: 16457 components: - pos: 21.5,-10.5 parent: 2 type: Transform - - uid: 1793 + - uid: 16458 components: - pos: -10.5,-35.5 parent: 2 type: Transform - - uid: 1794 + - uid: 16459 components: - pos: -13.5,-35.5 parent: 2 type: Transform - - uid: 1796 + - uid: 16460 components: - pos: 19.5,-21.5 parent: 2 type: Transform - - uid: 1798 + - uid: 16461 components: - pos: 19.5,-19.5 parent: 2 type: Transform - - uid: 1799 + - uid: 16462 components: - pos: 19.5,-18.5 parent: 2 type: Transform - - uid: 1803 + - uid: 16463 components: - pos: 22.5,-10.5 parent: 2 type: Transform - - uid: 1842 + - uid: 16464 components: - pos: 8.5,-11.5 parent: 2 type: Transform - - uid: 1906 + - uid: 16465 components: - pos: 16.5,5.5 parent: 2 type: Transform - - uid: 1943 + - uid: 16466 components: - pos: -15.5,-27.5 parent: 2 type: Transform - - uid: 1944 + - uid: 16467 components: - pos: -15.5,-28.5 parent: 2 type: Transform - - uid: 1951 + - uid: 16468 components: - pos: -12.5,-31.5 parent: 2 type: Transform - - uid: 1953 + - uid: 16469 components: - pos: -10.5,-31.5 parent: 2 type: Transform - - uid: 1954 + - uid: 16470 components: - pos: -9.5,-31.5 parent: 2 type: Transform - - uid: 1965 + - uid: 16471 components: - pos: -35.5,-10.5 parent: 2 type: Transform - - uid: 1968 + - uid: 16472 components: - pos: 9.5,3.5 parent: 2 type: Transform - - uid: 1969 + - uid: 16473 components: - pos: 3.5,2.5 parent: 2 type: Transform - - uid: 1975 + - uid: 16474 components: - pos: 5.5,2.5 parent: 2 type: Transform - - uid: 2000 + - uid: 16475 components: - pos: 27.5,-11.5 parent: 2 type: Transform - - uid: 2018 + - uid: 16476 components: - pos: -26.5,-22.5 parent: 2 type: Transform - - uid: 2019 + - uid: 16477 components: - pos: -26.5,-20.5 parent: 2 type: Transform - - uid: 2020 + - uid: 16478 components: - pos: -25.5,-20.5 parent: 2 type: Transform - - uid: 2021 + - uid: 16479 components: - pos: -24.5,-20.5 parent: 2 type: Transform - - uid: 2022 + - uid: 16480 components: - pos: -14.5,-46.5 parent: 2 type: Transform - - uid: 2023 + - uid: 16481 components: - pos: 4.5,2.5 parent: 2 type: Transform - - uid: 2037 + - uid: 16482 components: - pos: -26.5,-21.5 parent: 2 type: Transform - - uid: 2071 + - uid: 16483 components: - pos: -20.5,-20.5 parent: 2 type: Transform - - uid: 2104 + - uid: 16484 components: - pos: -14.5,28.5 parent: 2 type: Transform - - uid: 2105 + - uid: 16485 components: - pos: -11.5,28.5 parent: 2 type: Transform - - uid: 2106 + - uid: 16486 components: - pos: -12.5,28.5 parent: 2 type: Transform - - uid: 2107 + - uid: 16487 components: - pos: -11.5,27.5 parent: 2 type: Transform - - uid: 2113 + - uid: 16488 components: - pos: 19.5,-16.5 parent: 2 type: Transform - - uid: 2119 + - uid: 16489 components: - pos: -10.5,28.5 parent: 2 type: Transform - - uid: 2120 + - uid: 16490 components: - pos: -9.5,28.5 parent: 2 type: Transform - - uid: 2121 + - uid: 16491 components: - pos: 3.5,3.5 parent: 2 type: Transform - - uid: 2122 + - uid: 16492 components: - pos: -11.5,-7.5 parent: 2 type: Transform - - uid: 2125 + - uid: 16493 components: - pos: -39.5,13.5 parent: 2 type: Transform - - uid: 2129 + - uid: 16494 components: - pos: -39.5,16.5 parent: 2 type: Transform - - uid: 2130 + - uid: 16495 components: - pos: -15.5,-29.5 parent: 2 type: Transform - - uid: 2150 + - uid: 16496 components: - pos: -15.5,-30.5 parent: 2 type: Transform - - uid: 2186 + - uid: 16497 components: - pos: -14.5,-38.5 parent: 2 type: Transform - - uid: 2187 + - uid: 16498 components: - pos: -14.5,-37.5 parent: 2 type: Transform - - uid: 2194 + - uid: 16499 components: - pos: -13.5,-41.5 parent: 2 type: Transform - - uid: 2196 + - uid: 16500 components: - pos: -9.5,-35.5 parent: 2 type: Transform - - uid: 2281 + - uid: 16501 components: - pos: -15.5,-31.5 parent: 2 type: Transform - - uid: 2462 + - uid: 16502 components: - rot: 1.5707963267948966 rad pos: -22.5,-45.5 parent: 2 type: Transform - - uid: 2472 + - uid: 16503 components: - pos: -14.5,-36.5 parent: 2 type: Transform - - uid: 2474 + - uid: 16504 components: - pos: -11.5,-41.5 parent: 2 type: Transform - - uid: 2475 + - uid: 16505 components: - pos: -12.5,-41.5 parent: 2 type: Transform - - uid: 2477 + - uid: 16506 components: - pos: -10.5,-41.5 parent: 2 type: Transform - - uid: 2564 + - uid: 16507 components: - pos: -14.5,-42.5 parent: 2 type: Transform - - uid: 2606 + - uid: 16508 components: - rot: 1.5707963267948966 rad pos: -21.5,-45.5 parent: 2 type: Transform - - uid: 2611 + - uid: 16509 components: - pos: -14.5,-41.5 parent: 2 type: Transform - - uid: 2614 + - uid: 16510 components: - pos: -14.5,-35.5 parent: 2 type: Transform - - uid: 2618 + - uid: 16511 components: - rot: 1.5707963267948966 rad pos: -20.5,-45.5 parent: 2 type: Transform - - uid: 2759 + - uid: 16512 components: - pos: -14.5,-31.5 parent: 2 type: Transform - - uid: 2766 + - uid: 16513 components: - pos: -45.5,-11.5 parent: 2 type: Transform - - uid: 2767 + - uid: 16514 components: - pos: -47.5,-11.5 parent: 2 type: Transform - - uid: 2870 - components: - - pos: -8.5,-42.5 - parent: 2 - type: Transform - - uid: 2936 + - uid: 16515 components: - pos: -4.5,-28.5 parent: 2 type: Transform - - uid: 2987 + - uid: 16516 components: - rot: 3.141592653589793 rad pos: 22.5,-8.5 parent: 2 type: Transform - - uid: 2988 + - uid: 16517 components: - pos: 27.5,-10.5 parent: 2 type: Transform - - uid: 2989 + - uid: 16518 components: - pos: 27.5,-9.5 parent: 2 type: Transform - - uid: 2990 + - uid: 16519 components: - pos: 3.5,5.5 parent: 2 type: Transform - - uid: 2991 + - uid: 16520 components: - pos: 27.5,-8.5 parent: 2 type: Transform - - uid: 2992 + - uid: 16521 components: - pos: 3.5,4.5 parent: 2 type: Transform - - uid: 2993 + - uid: 16522 components: - pos: 27.5,-7.5 parent: 2 type: Transform - - uid: 2996 + - uid: 16523 components: - pos: 9.5,2.5 parent: 2 type: Transform - - uid: 3008 + - uid: 16524 components: - pos: -19.5,-28.5 parent: 2 type: Transform - - uid: 3009 + - uid: 16525 components: - pos: -19.5,-29.5 parent: 2 type: Transform - - uid: 3058 + - uid: 16526 components: - pos: 23.5,2.5 parent: 2 type: Transform - - uid: 3069 + - uid: 16527 components: - pos: 8.5,2.5 parent: 2 type: Transform - - uid: 3097 + - uid: 16528 components: - pos: 36.5,-7.5 parent: 2 type: Transform - - uid: 3099 + - uid: 16529 components: - pos: 36.5,-8.5 parent: 2 type: Transform - - uid: 3102 + - uid: 16530 components: - pos: 36.5,-10.5 parent: 2 type: Transform - - uid: 3103 + - uid: 16531 components: - pos: 36.5,-9.5 parent: 2 type: Transform - - uid: 3112 + - uid: 16532 components: - rot: 3.141592653589793 rad pos: 24.5,12.5 parent: 2 type: Transform - - uid: 3122 + - uid: 16533 components: - pos: -39.5,12.5 parent: 2 type: Transform - - uid: 3123 + - uid: 16534 components: - pos: -33.5,12.5 parent: 2 type: Transform - - uid: 3138 + - uid: 16535 components: - pos: -36.5,12.5 parent: 2 type: Transform - - uid: 3204 + - uid: 16536 components: - pos: 4.5,28.5 parent: 2 type: Transform - - uid: 3267 + - uid: 16537 components: - pos: 18.5,-13.5 parent: 2 type: Transform - - uid: 3268 + - uid: 16538 components: - pos: 18.5,-12.5 parent: 2 type: Transform - - uid: 3269 + - uid: 16539 components: - pos: 18.5,-11.5 parent: 2 type: Transform - - uid: 3280 + - uid: 16540 components: - pos: 24.5,11.5 parent: 2 type: Transform - - uid: 3389 + - uid: 16541 components: - pos: 3.5,-66.5 parent: 2 type: Transform - - uid: 3390 + - uid: 16542 components: - pos: -15.5,-89.5 parent: 2 type: Transform - - uid: 3391 + - uid: 16543 components: - pos: -33.5,-66.5 parent: 2 type: Transform - - uid: 3392 + - uid: 16544 components: - pos: -39.5,-80.5 parent: 2 type: Transform - - uid: 3481 + - uid: 16545 components: - pos: -39.5,8.5 parent: 2 type: Transform - - uid: 3493 + - uid: 16546 components: - pos: 18.5,-14.5 parent: 2 type: Transform - - uid: 3495 + - uid: 16547 components: - pos: 36.5,-13.5 parent: 2 type: Transform - - uid: 3509 + - uid: 16548 components: - pos: 36.5,-16.5 parent: 2 type: Transform - - uid: 3512 + - uid: 16549 components: - rot: -1.5707963267948966 rad pos: 29.5,16.5 parent: 2 type: Transform - - uid: 3513 + - uid: 16550 components: - rot: -1.5707963267948966 rad pos: 29.5,15.5 parent: 2 type: Transform - - uid: 3519 + - uid: 16551 components: - pos: 30.5,2.5 parent: 2 type: Transform - - uid: 3543 + - uid: 16552 components: - pos: 28.5,-13.5 parent: 2 type: Transform - - uid: 3555 + - uid: 16553 components: - pos: 35.5,2.5 parent: 2 type: Transform - - uid: 3567 + - uid: 16554 components: - pos: 37.5,-14.5 parent: 2 type: Transform - - uid: 3576 + - uid: 16555 components: - pos: 29.5,2.5 parent: 2 type: Transform - - uid: 3578 + - uid: 16556 components: - rot: 3.141592653589793 rad pos: 34.5,-17.5 parent: 2 type: Transform - - uid: 3835 + - uid: 16557 components: - pos: 31.5,-16.5 parent: 2 type: Transform - - uid: 3891 + - uid: 16558 components: - pos: 31.5,-14.5 parent: 2 type: Transform - - uid: 3892 + - uid: 16559 components: - pos: 27.5,-13.5 parent: 2 type: Transform - - uid: 3898 + - uid: 16560 components: - pos: 23.5,-16.5 parent: 2 type: Transform - - uid: 3902 + - uid: 16561 components: - pos: 27.5,-12.5 parent: 2 type: Transform - - uid: 3920 + - uid: 16562 components: - rot: 1.5707963267948966 rad pos: 36.5,-1.5 parent: 2 type: Transform - - uid: 3922 + - uid: 16563 components: - pos: 31.5,-17.5 parent: 2 type: Transform - - uid: 3947 + - uid: 16564 components: - rot: 1.5707963267948966 rad pos: -8.5,-25.5 parent: 2 type: Transform - - uid: 4102 + - uid: 16565 components: - pos: 31.5,-13.5 parent: 2 type: Transform - - uid: 4110 + - uid: 16566 components: - pos: 32.5,-13.5 parent: 2 type: Transform - - uid: 4111 + - uid: 16567 components: - pos: 33.5,-13.5 parent: 2 type: Transform - - uid: 4113 + - uid: 16568 components: - pos: 35.5,-13.5 parent: 2 type: Transform - - uid: 4154 + - uid: 16569 components: - rot: 1.5707963267948966 rad pos: 36.5,-2.5 parent: 2 type: Transform - - uid: 4167 + - uid: 16570 components: - rot: 1.5707963267948966 rad pos: 35.5,-1.5 parent: 2 type: Transform - - uid: 4197 + - uid: 16571 components: - rot: 3.141592653589793 rad pos: 31.5,-7.5 parent: 2 type: Transform - - uid: 4203 + - uid: 16572 components: - pos: 23.5,-11.5 parent: 2 type: Transform - - uid: 4205 + - uid: 16573 components: - pos: 23.5,-10.5 parent: 2 type: Transform - - uid: 4235 + - uid: 16574 components: - pos: -39.5,17.5 parent: 2 type: Transform - - uid: 4238 + - uid: 16575 components: - pos: -39.5,20.5 parent: 2 type: Transform - - uid: 4239 + - uid: 16576 components: - pos: -39.5,21.5 parent: 2 type: Transform - - uid: 4247 + - uid: 16577 components: - pos: -39.5,11.5 parent: 2 type: Transform - - uid: 4248 + - uid: 16578 components: - pos: -39.5,10.5 parent: 2 type: Transform - - uid: 4249 + - uid: 16579 components: - pos: -39.5,9.5 parent: 2 type: Transform - - uid: 4259 + - uid: 16580 components: - pos: 7.5,2.5 parent: 2 type: Transform - - uid: 4309 + - uid: 16581 components: - rot: -1.5707963267948966 rad pos: -33.5,21.5 parent: 2 type: Transform - - uid: 4329 + - uid: 16582 components: - pos: 9.5,12.5 parent: 2 type: Transform - - uid: 4333 + - uid: 16583 components: - pos: 24.5,16.5 parent: 2 type: Transform - - uid: 4335 + - uid: 16584 components: - rot: 3.141592653589793 rad pos: 24.5,17.5 parent: 2 type: Transform - - uid: 4338 + - uid: 16585 components: - rot: -1.5707963267948966 rad pos: 29.5,12.5 parent: 2 type: Transform - - uid: 4341 + - uid: 16586 components: - rot: 3.141592653589793 rad pos: 29.5,17.5 parent: 2 type: Transform - - uid: 4345 + - uid: 16587 components: - rot: 3.141592653589793 rad pos: 34.5,17.5 parent: 2 type: Transform - - uid: 4346 + - uid: 16588 components: - rot: 3.141592653589793 rad pos: 34.5,16.5 parent: 2 type: Transform - - uid: 4347 + - uid: 16589 components: - pos: 30.5,17.5 parent: 2 type: Transform - - uid: 4348 + - uid: 16590 components: - pos: 24.5,18.5 parent: 2 type: Transform - - uid: 4350 + - uid: 16591 components: - rot: -1.5707963267948966 rad pos: 29.5,13.5 parent: 2 type: Transform - - uid: 4353 + - uid: 16592 components: - rot: 3.141592653589793 rad pos: 27.5,17.5 parent: 2 type: Transform - - uid: 4354 + - uid: 16593 components: - rot: -1.5707963267948966 rad pos: 29.5,14.5 parent: 2 type: Transform - - uid: 4357 + - uid: 16594 components: - rot: 3.141592653589793 rad pos: 28.5,17.5 parent: 2 type: Transform - - uid: 4363 + - uid: 16595 components: - rot: 3.141592653589793 rad pos: 25.5,17.5 parent: 2 type: Transform - - uid: 4366 + - uid: 16596 components: - rot: -1.5707963267948966 rad pos: 29.5,11.5 parent: 2 type: Transform - - uid: 4374 + - uid: 16597 components: - pos: 9.5,15.5 parent: 2 type: Transform - - uid: 4379 + - uid: 16598 components: - rot: 1.5707963267948966 rad pos: 38.5,2.5 parent: 2 type: Transform - - uid: 4384 + - uid: 16599 components: - pos: 20.5,19.5 parent: 2 type: Transform - - uid: 4385 + - uid: 16600 components: - pos: 20.5,20.5 parent: 2 type: Transform - - uid: 4386 + - uid: 16601 components: - pos: 20.5,18.5 parent: 2 type: Transform - - uid: 4387 + - uid: 16602 components: - pos: 20.5,17.5 parent: 2 type: Transform - - uid: 4389 + - uid: 16603 components: - pos: 20.5,21.5 parent: 2 type: Transform - - uid: 4390 + - uid: 16604 components: - pos: 15.5,22.5 parent: 2 type: Transform - - uid: 4391 + - uid: 16605 components: - pos: 14.5,22.5 parent: 2 type: Transform - - uid: 4393 + - uid: 16606 components: - pos: 14.5,17.5 parent: 2 type: Transform - - uid: 4396 + - uid: 16607 components: - pos: 24.5,23.5 parent: 2 type: Transform - - uid: 4398 + - uid: 16608 components: - pos: 14.5,18.5 parent: 2 type: Transform - - uid: 4401 + - uid: 16609 components: - pos: 24.5,20.5 parent: 2 type: Transform - - uid: 4402 + - uid: 16610 components: - pos: 23.5,20.5 parent: 2 type: Transform - - uid: 4405 + - uid: 16611 components: - pos: 30.5,18.5 parent: 2 type: Transform - - uid: 4407 + - uid: 16612 components: - pos: 30.5,20.5 parent: 2 type: Transform - - uid: 4408 + - uid: 16613 components: - pos: 30.5,21.5 parent: 2 type: Transform - - uid: 4409 + - uid: 16614 components: - pos: 30.5,22.5 parent: 2 type: Transform - - uid: 4413 + - uid: 16615 components: - pos: 25.5,23.5 parent: 2 type: Transform - - uid: 4414 + - uid: 16616 components: - pos: 24.5,21.5 parent: 2 type: Transform - - uid: 4416 + - uid: 16617 components: - pos: 16.5,22.5 parent: 2 type: Transform - - uid: 4417 + - uid: 16618 components: - pos: 17.5,22.5 parent: 2 type: Transform - - uid: 4418 + - uid: 16619 components: - pos: 18.5,22.5 parent: 2 type: Transform - - uid: 4419 + - uid: 16620 components: - pos: 14.5,21.5 parent: 2 type: Transform - - uid: 4449 + - uid: 16621 components: - pos: 19.5,22.5 parent: 2 type: Transform - - uid: 4453 + - uid: 16622 components: - pos: 20.5,22.5 parent: 2 type: Transform - - uid: 4495 + - uid: 16623 components: - rot: -1.5707963267948966 rad pos: 17.5,27.5 parent: 2 type: Transform - - uid: 4496 + - uid: 16624 components: - pos: 16.5,27.5 parent: 2 type: Transform - - uid: 4497 + - uid: 16625 components: - pos: 15.5,27.5 parent: 2 type: Transform - - uid: 4498 + - uid: 16626 components: - pos: 14.5,27.5 parent: 2 type: Transform - - uid: 4500 + - uid: 16627 components: - pos: 12.5,27.5 parent: 2 type: Transform - - uid: 4501 + - uid: 16628 components: - pos: 7.5,28.5 parent: 2 type: Transform - - uid: 4510 + - uid: 16629 components: - pos: 6.5,27.5 parent: 2 type: Transform - - uid: 4511 + - uid: 16630 components: - pos: 6.5,26.5 parent: 2 type: Transform - - uid: 4512 + - uid: 16631 components: - pos: 7.5,24.5 parent: 2 type: Transform - - uid: 4515 + - uid: 16632 components: - pos: 6.5,24.5 parent: 2 type: Transform - - uid: 4517 + - uid: 16633 components: - pos: 6.5,25.5 parent: 2 type: Transform - - uid: 4521 + - uid: 16634 components: - rot: -1.5707963267948966 rad pos: 11.5,28.5 parent: 2 type: Transform - - uid: 4522 + - uid: 16635 components: - rot: -1.5707963267948966 rad pos: 10.5,28.5 parent: 2 type: Transform - - uid: 4523 + - uid: 16636 components: - pos: 11.5,24.5 parent: 2 type: Transform - - uid: 4525 + - uid: 16637 components: - rot: -1.5707963267948966 rad pos: 18.5,24.5 parent: 2 type: Transform - - uid: 4526 + - uid: 16638 components: - rot: -1.5707963267948966 rad pos: 18.5,25.5 parent: 2 type: Transform - - uid: 4527 + - uid: 16639 components: - rot: -1.5707963267948966 rad pos: 18.5,26.5 parent: 2 type: Transform - - uid: 4528 + - uid: 16640 components: - rot: -1.5707963267948966 rad pos: 18.5,27.5 parent: 2 type: Transform - - uid: 4529 + - uid: 16641 components: - rot: -1.5707963267948966 rad pos: 14.5,26.5 parent: 2 type: Transform - - uid: 4541 + - uid: 16642 components: - pos: 19.5,27.5 parent: 2 type: Transform - - uid: 4543 + - uid: 16643 components: - pos: 21.5,27.5 parent: 2 type: Transform - - uid: 4544 + - uid: 16644 components: - pos: 22.5,27.5 parent: 2 type: Transform - - uid: 4545 + - uid: 16645 components: - pos: 23.5,27.5 parent: 2 type: Transform - - uid: 4546 + - uid: 16646 components: - pos: 24.5,27.5 parent: 2 type: Transform - - uid: 4547 + - uid: 16647 components: - pos: 25.5,27.5 parent: 2 type: Transform - - uid: 4548 + - uid: 16648 components: - pos: 26.5,27.5 parent: 2 type: Transform - - uid: 4555 + - uid: 16649 components: - pos: 6.5,28.5 parent: 2 type: Transform - - uid: 4569 + - uid: 16650 components: - pos: 11.5,27.5 parent: 2 type: Transform - - uid: 4580 + - uid: 16651 components: - pos: 8.5,28.5 parent: 2 type: Transform - - uid: 4581 + - uid: 16652 components: - pos: 9.5,28.5 parent: 2 type: Transform - - uid: 4758 + - uid: 16653 components: - rot: 3.141592653589793 rad pos: 31.5,14.5 parent: 2 type: Transform - - uid: 4866 + - uid: 16654 components: - rot: 3.141592653589793 rad pos: 35.5,14.5 parent: 2 type: Transform - - uid: 4878 + - uid: 16655 components: - rot: 3.141592653589793 rad pos: 32.5,17.5 parent: 2 type: Transform - - uid: 4879 + - uid: 16656 components: - rot: 3.141592653589793 rad pos: 38.5,14.5 parent: 2 type: Transform - - uid: 4882 + - uid: 16657 components: - rot: 3.141592653589793 rad pos: 37.5,14.5 parent: 2 type: Transform - - uid: 4883 + - uid: 16658 components: - rot: 3.141592653589793 rad pos: 34.5,14.5 parent: 2 type: Transform - - uid: 4884 + - uid: 16659 components: - rot: 3.141592653589793 rad pos: 32.5,14.5 parent: 2 type: Transform - - uid: 4885 + - uid: 16660 components: - rot: 3.141592653589793 rad pos: 33.5,14.5 parent: 2 type: Transform - - uid: 4938 + - uid: 16661 components: - rot: 3.141592653589793 rad pos: 36.5,14.5 parent: 2 type: Transform - - uid: 4940 + - uid: 16662 components: - rot: 3.141592653589793 rad pos: 33.5,17.5 parent: 2 type: Transform - - uid: 4960 + - uid: 16663 components: - rot: 1.5707963267948966 rad pos: 37.5,2.5 parent: 2 type: Transform - - uid: 4962 + - uid: 16664 components: - rot: 3.141592653589793 rad pos: 39.5,2.5 parent: 2 type: Transform - - uid: 4970 + - uid: 16665 components: - pos: 18.5,-18.5 parent: 2 type: Transform - - uid: 4994 + - uid: 16666 components: - rot: 3.141592653589793 rad pos: 38.5,9.5 parent: 2 type: Transform - - uid: 4995 + - uid: 16667 components: - rot: 3.141592653589793 rad pos: 38.5,7.5 parent: 2 type: Transform - - uid: 5002 + - uid: 16668 components: - rot: 3.141592653589793 rad pos: 38.5,10.5 parent: 2 type: Transform - - uid: 5003 + - uid: 16669 components: - rot: 3.141592653589793 rad pos: 38.5,4.5 parent: 2 type: Transform - - uid: 5004 + - uid: 16670 components: - rot: 3.141592653589793 rad pos: 38.5,3.5 parent: 2 type: Transform - - uid: 5006 + - uid: 16671 components: - rot: 3.141592653589793 rad pos: 38.5,8.5 parent: 2 type: Transform - - uid: 5010 + - uid: 16672 components: - rot: 3.141592653589793 rad pos: 38.5,6.5 parent: 2 type: Transform - - uid: 5015 + - uid: 16673 components: - rot: 3.141592653589793 rad pos: 38.5,13.5 parent: 2 type: Transform - - uid: 5021 + - uid: 16674 components: - rot: 3.141592653589793 rad pos: 38.5,12.5 parent: 2 type: Transform - - uid: 5022 + - uid: 16675 components: - rot: 3.141592653589793 rad pos: 38.5,5.5 parent: 2 type: Transform - - uid: 5026 + - uid: 16676 components: - rot: 3.141592653589793 rad pos: 34.5,15.5 parent: 2 type: Transform - - uid: 5046 + - uid: 16677 components: - pos: 42.5,10.5 parent: 2 type: Transform - - uid: 5050 + - uid: 16678 components: - pos: 42.5,9.5 parent: 2 type: Transform - - uid: 5052 + - uid: 16679 components: - pos: 42.5,13.5 parent: 2 type: Transform - - uid: 5066 + - uid: 16680 components: - rot: -1.5707963267948966 rad pos: 42.5,12.5 parent: 2 type: Transform - - uid: 5069 + - uid: 16681 components: - pos: 9.5,5.5 parent: 2 type: Transform - - uid: 5071 + - uid: 16682 components: - pos: -19.5,-27.5 parent: 2 type: Transform - - uid: 5074 + - uid: 16683 components: - pos: -49.5,-5.5 parent: 2 type: Transform - - uid: 5153 + - uid: 16684 components: - pos: -25.5,37.5 parent: 2 type: Transform - - uid: 5172 + - uid: 16685 components: - pos: -25.5,36.5 parent: 2 type: Transform - - uid: 5182 + - uid: 16686 components: - pos: 9.5,9.5 parent: 2 type: Transform - - uid: 5187 + - uid: 16687 components: - pos: 9.5,6.5 parent: 2 type: Transform - - uid: 5192 + - uid: 16688 components: - pos: 9.5,8.5 parent: 2 type: Transform - - uid: 5193 + - uid: 16689 components: - pos: -31.5,12.5 parent: 2 type: Transform - - uid: 5196 + - uid: 16690 components: - rot: 1.5707963267948966 rad pos: -47.5,24.5 parent: 2 type: Transform - - uid: 5210 + - uid: 16691 components: - rot: 3.141592653589793 rad pos: -25.5,27.5 parent: 2 type: Transform - - uid: 5227 + - uid: 16692 components: - rot: 1.5707963267948966 rad pos: 36.5,-14.5 parent: 2 type: Transform - - uid: 5326 + - uid: 16693 components: - rot: 1.5707963267948966 rad pos: -44.5,24.5 parent: 2 type: Transform - - uid: 5379 + - uid: 16694 components: - pos: 12.5,9.5 parent: 2 type: Transform - - uid: 5407 + - uid: 16695 components: - pos: -8.5,28.5 parent: 2 type: Transform - - uid: 5417 + - uid: 16696 components: - pos: -21.5,29.5 parent: 2 type: Transform - - uid: 5418 + - uid: 16697 components: - pos: -21.5,30.5 parent: 2 type: Transform - - uid: 5419 + - uid: 16698 components: - pos: -21.5,31.5 parent: 2 type: Transform - - uid: 5420 + - uid: 16699 components: - pos: -21.5,32.5 parent: 2 type: Transform - - uid: 5422 + - uid: 16700 components: - pos: -13.5,36.5 parent: 2 type: Transform - - uid: 5529 + - uid: 16701 components: - pos: -13.5,34.5 parent: 2 type: Transform - - uid: 5532 + - uid: 16702 components: - pos: -12.5,37.5 parent: 2 type: Transform - - uid: 5533 + - uid: 16703 components: - pos: -13.5,37.5 parent: 2 type: Transform - - uid: 5538 + - uid: 16704 components: - pos: -7.5,37.5 parent: 2 type: Transform - - uid: 5539 + - uid: 16705 components: - pos: -6.5,37.5 parent: 2 type: Transform - - uid: 5540 + - uid: 16706 components: - pos: -6.5,36.5 parent: 2 type: Transform - - uid: 5542 + - uid: 16707 components: - pos: -6.5,34.5 parent: 2 type: Transform - - uid: 5543 + - uid: 16708 components: - pos: -6.5,33.5 parent: 2 type: Transform - - uid: 5648 + - uid: 16709 components: - pos: -25.5,32.5 parent: 2 type: Transform - - uid: 5660 + - uid: 16710 components: - pos: -25.5,33.5 parent: 2 type: Transform - - uid: 5661 + - uid: 16711 components: - pos: -28.5,40.5 parent: 2 type: Transform - - uid: 5662 + - uid: 16712 components: - pos: -28.5,39.5 parent: 2 type: Transform - - uid: 5663 + - uid: 16713 components: - pos: -28.5,38.5 parent: 2 type: Transform - - uid: 5664 + - uid: 16714 components: - pos: -28.5,37.5 parent: 2 type: Transform - - uid: 5665 + - uid: 16715 components: - pos: -28.5,36.5 parent: 2 type: Transform - - uid: 5666 + - uid: 16716 components: - pos: -27.5,36.5 parent: 2 type: Transform - - uid: 5667 + - uid: 16717 components: - pos: -26.5,36.5 parent: 2 type: Transform - - uid: 5713 + - uid: 16718 components: - pos: -25.5,31.5 parent: 2 type: Transform - - uid: 5744 + - uid: 16719 components: - pos: -26.5,33.5 parent: 2 type: Transform - - uid: 5745 + - uid: 16720 components: - pos: -27.5,33.5 parent: 2 type: Transform - - uid: 5746 + - uid: 16721 components: - pos: -28.5,33.5 parent: 2 type: Transform - - uid: 5747 + - uid: 16722 components: - pos: -29.5,33.5 parent: 2 type: Transform - - uid: 5748 + - uid: 16723 components: - pos: -30.5,33.5 parent: 2 type: Transform - - uid: 5749 + - uid: 16724 components: - pos: -31.5,33.5 parent: 2 type: Transform - - uid: 5759 + - uid: 16725 components: - pos: -25.5,35.5 parent: 2 type: Transform - - uid: 5763 + - uid: 16726 components: - pos: -37.5,31.5 parent: 2 type: Transform - - uid: 5765 + - uid: 16727 components: - pos: -35.5,24.5 parent: 2 type: Transform - - uid: 5768 + - uid: 16728 components: - pos: -37.5,33.5 parent: 2 type: Transform - - uid: 5770 + - uid: 16729 components: - rot: 3.141592653589793 rad pos: -33.5,25.5 parent: 2 type: Transform - - uid: 5771 + - uid: 16730 components: - rot: 3.141592653589793 rad pos: -33.5,24.5 parent: 2 type: Transform - - uid: 5778 + - uid: 16731 components: - pos: -31.5,39.5 parent: 2 type: Transform - - uid: 5779 + - uid: 16732 components: - pos: -30.5,39.5 parent: 2 type: Transform - - uid: 5780 + - uid: 16733 components: - pos: -37.5,30.5 parent: 2 type: Transform - - uid: 5781 + - uid: 16734 components: - pos: -38.5,24.5 parent: 2 type: Transform - - uid: 5783 + - uid: 16735 components: - pos: -51.5,24.5 parent: 2 type: Transform - - uid: 5788 + - uid: 16736 components: - pos: -37.5,34.5 parent: 2 type: Transform - - uid: 5789 + - uid: 16737 components: - pos: -34.5,30.5 parent: 2 type: Transform - - uid: 5791 + - uid: 16738 components: - pos: -36.5,30.5 parent: 2 type: Transform - - uid: 5796 + - uid: 16739 components: - pos: -39.5,29.5 parent: 2 type: Transform - - uid: 5800 + - uid: 16740 components: - pos: -39.5,25.5 parent: 2 type: Transform - - uid: 5803 + - uid: 16741 components: - pos: -39.5,30.5 parent: 2 type: Transform - - uid: 5810 + - uid: 16742 components: - pos: -38.5,30.5 parent: 2 type: Transform - - uid: 5816 + - uid: 16743 components: - pos: -39.5,24.5 parent: 2 type: Transform - - uid: 5817 + - uid: 16744 components: - pos: -36.5,24.5 parent: 2 type: Transform - - uid: 5822 + - uid: 16745 components: - pos: -34.5,24.5 parent: 2 type: Transform - - uid: 5838 + - uid: 16746 components: - rot: 3.141592653589793 rad pos: -33.5,23.5 parent: 2 type: Transform - - uid: 5839 + - uid: 16747 components: - rot: 3.141592653589793 rad pos: -32.5,23.5 parent: 2 type: Transform - - uid: 5840 + - uid: 16748 components: - rot: 3.141592653589793 rad pos: -31.5,23.5 parent: 2 type: Transform - - uid: 5841 + - uid: 16749 components: - rot: 3.141592653589793 rad pos: -30.5,23.5 parent: 2 type: Transform - - uid: 5843 + - uid: 16750 components: - rot: 3.141592653589793 rad pos: -28.5,23.5 parent: 2 type: Transform - - uid: 5844 + - uid: 16751 components: - rot: 3.141592653589793 rad pos: -27.5,23.5 parent: 2 type: Transform - - uid: 5845 + - uid: 16752 components: - rot: 3.141592653589793 rad pos: -26.5,23.5 parent: 2 type: Transform - - uid: 5852 + - uid: 16753 components: - rot: 1.5707963267948966 rad pos: -45.5,24.5 parent: 2 type: Transform - - uid: 5857 + - uid: 16754 components: - pos: -50.5,24.5 parent: 2 type: Transform - - uid: 5870 + - uid: 16755 components: - pos: -43.5,32.5 parent: 2 type: Transform - - uid: 5883 + - uid: 16756 components: - pos: -51.5,25.5 parent: 2 type: Transform - - uid: 5887 + - uid: 16757 components: - pos: -51.5,29.5 parent: 2 type: Transform - - uid: 5900 + - uid: 16758 components: - pos: -38.5,38.5 parent: 2 type: Transform - - uid: 5909 + - uid: 16759 components: - pos: -43.5,35.5 parent: 2 type: Transform - - uid: 5916 + - uid: 16760 components: - pos: -43.5,34.5 parent: 2 type: Transform - - uid: 5923 + - uid: 16761 components: - pos: -44.5,35.5 parent: 2 type: Transform - - uid: 5924 + - uid: 16762 components: - pos: -41.5,35.5 parent: 2 type: Transform - - uid: 5927 + - uid: 16763 components: - pos: -44.5,38.5 parent: 2 type: Transform - - uid: 5930 + - uid: 16764 components: - pos: -41.5,38.5 parent: 2 type: Transform - - uid: 5934 + - uid: 16765 components: - pos: -40.5,38.5 parent: 2 type: Transform - - uid: 6191 + - uid: 16766 components: - pos: -13.5,28.5 parent: 2 type: Transform - - uid: 6447 + - uid: 16767 components: - pos: -45.5,35.5 parent: 2 type: Transform - - uid: 6608 + - uid: 16768 components: - rot: -1.5707963267948966 rad pos: -44.5,12.5 parent: 2 type: Transform - - uid: 6609 + - uid: 16769 components: - rot: -1.5707963267948966 rad pos: -43.5,11.5 parent: 2 type: Transform - - uid: 6611 + - uid: 16770 components: - rot: -1.5707963267948966 rad pos: -43.5,8.5 parent: 2 type: Transform - - uid: 6612 + - uid: 16771 components: - rot: -1.5707963267948966 rad pos: -43.5,9.5 parent: 2 type: Transform - - uid: 6613 + - uid: 16772 components: - rot: -1.5707963267948966 rad pos: -43.5,10.5 parent: 2 type: Transform - - uid: 6614 + - uid: 16773 components: - rot: -1.5707963267948966 rad pos: -43.5,22.5 parent: 2 type: Transform - - uid: 6616 + - uid: 16774 components: - rot: -1.5707963267948966 rad pos: -43.5,21.5 parent: 2 type: Transform - - uid: 6623 + - uid: 16775 components: - rot: -1.5707963267948966 rad pos: -43.5,18.5 parent: 2 type: Transform - - uid: 6625 + - uid: 16776 components: - rot: -1.5707963267948966 rad pos: -44.5,13.5 parent: 2 type: Transform - - uid: 6626 + - uid: 16777 components: - rot: -1.5707963267948966 rad pos: -49.5,8.5 parent: 2 type: Transform - - uid: 6630 + - uid: 16778 components: - rot: -1.5707963267948966 rad pos: -44.5,11.5 parent: 2 type: Transform - - uid: 6632 + - uid: 16779 components: - rot: -1.5707963267948966 rad pos: -44.5,14.5 parent: 2 type: Transform - - uid: 6633 + - uid: 16780 components: - rot: -1.5707963267948966 rad pos: -44.5,21.5 parent: 2 type: Transform - - uid: 6634 + - uid: 16781 components: - rot: -1.5707963267948966 rad pos: -44.5,18.5 parent: 2 type: Transform - - uid: 6635 + - uid: 16782 components: - rot: -1.5707963267948966 rad pos: -44.5,20.5 parent: 2 type: Transform - - uid: 6636 + - uid: 16783 components: - rot: -1.5707963267948966 rad pos: -44.5,19.5 parent: 2 type: Transform - - uid: 6637 + - uid: 16784 components: - rot: -1.5707963267948966 rad pos: -43.5,14.5 parent: 2 type: Transform - - uid: 6639 + - uid: 16785 components: - rot: -1.5707963267948966 rad pos: -43.5,23.5 parent: 2 type: Transform - - uid: 6759 + - uid: 16786 components: - pos: 10.5,9.5 parent: 2 type: Transform - - uid: 7051 + - uid: 16787 components: - pos: -34.5,38.5 parent: 2 type: Transform - - uid: 7281 + - uid: 16788 components: - pos: 4.5,8.5 parent: 2 type: Transform - - uid: 7454 + - uid: 16789 components: - rot: 1.5707963267948966 rad pos: 27.5,27.5 parent: 2 type: Transform - - uid: 7504 + - uid: 16790 components: - pos: 13.5,-24.5 parent: 2 type: Transform - - uid: 7917 + - uid: 16791 components: - pos: 24.5,2.5 parent: 2 type: Transform - - uid: 8059 + - uid: 16792 components: - pos: -30.5,38.5 parent: 2 type: Transform - - uid: 8060 + - uid: 16793 components: - pos: -35.5,39.5 parent: 2 type: Transform - - uid: 8061 + - uid: 16794 components: - pos: -34.5,39.5 parent: 2 type: Transform - - uid: 8070 + - uid: 16795 components: - pos: -33.5,39.5 parent: 2 type: Transform - - uid: 8071 + - uid: 16796 components: - pos: -32.5,39.5 parent: 2 type: Transform - - uid: 8072 + - uid: 16797 components: - rot: 1.5707963267948966 rad pos: -30.5,34.5 parent: 2 type: Transform - - uid: 8074 + - uid: 16798 components: - rot: 1.5707963267948966 rad pos: -30.5,35.5 parent: 2 type: Transform - - uid: 8075 + - uid: 16799 components: - rot: 1.5707963267948966 rad pos: -30.5,36.5 parent: 2 type: Transform - - uid: 8076 + - uid: 16800 components: - rot: 1.5707963267948966 rad pos: -30.5,37.5 parent: 2 type: Transform - - uid: 8340 + - uid: 16801 components: - pos: 12.5,-18.5 parent: 2 type: Transform - - uid: 8702 + - uid: 16802 components: - pos: -48.5,-5.5 parent: 2 type: Transform - - uid: 8787 + - uid: 16803 components: - rot: 1.5707963267948966 rad pos: -34.5,37.5 parent: 2 type: Transform - - uid: 8959 + - uid: 16804 components: - pos: 21.5,20.5 parent: 2 type: Transform - - uid: 9074 + - uid: 16805 components: - pos: -47.5,-5.5 parent: 2 type: Transform - - uid: 9310 + - uid: 16806 components: - pos: -22.5,-20.5 parent: 2 type: Transform - - uid: 9333 + - uid: 16807 components: - pos: -23.5,-20.5 parent: 2 type: Transform - - uid: 11031 + - uid: 16808 components: - pos: -20.5,2.5 parent: 2 type: Transform - - uid: 11065 + - uid: 16809 components: - pos: -21.5,2.5 parent: 2 type: Transform - - uid: 11801 + - uid: 16810 components: - rot: 1.5707963267948966 rad pos: 22.5,-16.5 parent: 2 type: Transform - - uid: 13619 + - uid: 16811 components: - pos: -24.5,-12.5 parent: 2 type: Transform - - uid: 14110 + - uid: 16812 components: - pos: -24.5,-10.5 parent: 2 type: Transform - - uid: 14355 + - uid: 16813 components: - pos: -39.5,23.5 parent: 2 type: Transform - - uid: 14404 + - uid: 16814 components: - pos: 13.5,-23.5 parent: 2 type: Transform - - uid: 14442 + - uid: 16815 components: - pos: 8.5,-21.5 parent: 2 type: Transform - - uid: 14443 + - uid: 16816 components: - pos: 16.5,-23.5 parent: 2 type: Transform - - uid: 14453 + - uid: 16817 components: - pos: 14.5,-23.5 parent: 2 type: Transform - - uid: 14932 + - uid: 16818 components: - pos: 3.5,-84.5 parent: 2 type: Transform - - uid: 15034 + - uid: 16819 components: - pos: 18.5,-23.5 parent: 2 type: Transform - - uid: 15048 + - uid: 16820 components: - pos: 17.5,-23.5 parent: 2 type: Transform - - uid: 15234 + - uid: 16821 components: - pos: 21.5,-23.5 parent: 2 type: Transform - - uid: 15275 + - uid: 16822 components: - pos: 19.5,-23.5 parent: 2 type: Transform - - uid: 15303 + - uid: 16823 components: - pos: 16.5,-18.5 parent: 2 type: Transform - - uid: 15368 + - uid: 16824 components: - pos: 15.5,-18.5 parent: 2 type: Transform - - uid: 15405 + - uid: 16825 components: - pos: 13.5,-34.5 parent: 2 type: Transform - - uid: 15438 + - uid: 16826 components: - pos: 14.5,-18.5 parent: 2 type: Transform - - uid: 15493 + - uid: 16827 components: - pos: 13.5,-18.5 parent: 2 type: Transform - - uid: 15499 + - uid: 16828 components: - pos: 13.5,-19.5 parent: 2 type: Transform - - uid: 15520 + - uid: 16829 components: - pos: 13.5,-22.5 parent: 2 type: Transform - - uid: 15550 + - uid: 16830 components: - pos: 13.5,-21.5 parent: 2 type: Transform - - uid: 15849 + - uid: 16831 components: - pos: 19.5,-22.5 parent: 2 type: Transform - - uid: 15903 + - uid: 16832 components: - pos: 16.5,-16.5 parent: 2 type: Transform - - uid: 15913 + - uid: 16833 components: - rot: 1.5707963267948966 rad pos: 20.5,-16.5 parent: 2 type: Transform - - uid: 15949 + - uid: 16834 components: - pos: 13.5,-33.5 parent: 2 type: Transform - - uid: 16107 + - uid: 16835 components: - pos: -25.5,-10.5 parent: 2 type: Transform - - uid: 17116 + - uid: 16836 components: - pos: -24.5,-13.5 parent: 2 type: Transform - - uid: 17143 + - uid: 16837 components: - pos: -24.5,-11.5 parent: 2 type: Transform - - uid: 17183 + - uid: 16838 components: - pos: -24.5,-14.5 parent: 2 type: Transform - - uid: 17184 + - uid: 16839 components: - pos: -24.5,-15.5 parent: 2 type: Transform - - uid: 17185 + - uid: 16840 components: - pos: -26.5,-10.5 parent: 2 type: Transform - proto: WallWeaponCapacitorRecharger entities: - - uid: 16048 + - uid: 16841 components: - pos: -31.5,-11.5 parent: 2 type: Transform - - uid: 16126 + - uid: 16842 components: - rot: 3.141592653589793 rad pos: -33.5,-10.5 parent: 2 type: Transform +- proto: WardrobeAtmosphericsFilled + entities: + - uid: 16843 + components: + - pos: -8.5,-37.5 + parent: 2 + type: Transform - proto: WardrobeFormal entities: - - uid: 4304 + - uid: 16844 components: - pos: -12.5,-7.5 parent: 2 type: Transform - proto: WardrobePrisonFilled entities: - - uid: 1003 + - uid: 16845 components: - pos: -42.5,-11.5 parent: 2 type: Transform - - uid: 1057 + - uid: 16846 components: - pos: -42.5,-14.5 parent: 2 type: Transform - - uid: 1091 + - uid: 16847 components: - pos: -40.5,-17.5 parent: 2 type: Transform - - uid: 1269 + - uid: 16848 components: - pos: -34.5,-17.5 parent: 2 type: Transform - proto: WardrobeSalvageFilled entities: - - uid: 10688 + - uid: 16849 components: - pos: 8.5,-33.5 parent: 2 type: Transform +- proto: WarningAir + entities: + - uid: 16850 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-40.5 + parent: 2 + type: Transform - proto: WarningCO2 entities: - - uid: 506 + - uid: 16851 components: - - rot: -1.5707963267948966 rad - pos: -2.5,-42.5 + - rot: 1.5707963267948966 rad + pos: 4.5,-46.5 parent: 2 type: Transform - proto: WarningN2 entities: - - uid: 2286 + - uid: 16852 components: - - rot: 1.5707963267948966 rad - pos: -2.5,-37.5 + - rot: 3.141592653589793 rad + pos: 4.5,-42.5 parent: 2 type: Transform - proto: WarningO2 entities: - - uid: 2299 + - uid: 16853 components: - - rot: 1.5707963267948966 rad - pos: -0.5,-37.5 + - rot: 3.141592653589793 rad + pos: 4.5,-44.5 parent: 2 type: Transform - proto: WarningPlasma entities: - - uid: 2721 + - uid: 16854 components: - - rot: -1.5707963267948966 rad - pos: 5.5,-41.5 + - rot: 1.5707963267948966 rad + pos: 4.5,-48.5 parent: 2 type: Transform - proto: WarningWaste entities: - - uid: 2722 + - uid: 16855 + components: + - rot: 1.5707963267948966 rad + pos: 4.5,-50.5 + parent: 2 + type: Transform + - uid: 16856 components: - rot: -1.5707963267948966 rad - pos: 5.5,-45.5 + pos: 2.5,-40.5 parent: 2 type: Transform - proto: WarpPoint entities: - - uid: 11945 + - uid: 16857 components: - name: pa room type: MetaData @@ -106166,7 +107753,7 @@ entities: type: Transform - location: pa room type: WarpPoint - - uid: 16247 + - uid: 16858 components: - pos: -40.5,32.5 parent: 2 @@ -106176,21 +107763,14 @@ entities: - color: '#D381C9FF' text: epistemics type: NavMapBeacon - - uid: 16249 - components: - - pos: 0.5,-40.5 - parent: 2 - type: Transform - - location: atmospherics - type: WarpPoint - - uid: 16251 + - uid: 16859 components: - pos: 2.5,-25.5 parent: 2 type: Transform - location: ame room type: WarpPoint - - uid: 16254 + - uid: 16860 components: - pos: 33.5,-20.5 parent: 2 @@ -106200,7 +107780,7 @@ entities: - color: '#FFFFFFFF' text: arrivals type: NavMapBeacon - - uid: 16257 + - uid: 16861 components: - pos: -10.5,36.5 parent: 2 @@ -106210,7 +107790,7 @@ entities: - color: '#334E6DFF' text: bridge type: NavMapBeacon - - uid: 16258 + - uid: 16862 components: - pos: -47.5,16.5 parent: 2 @@ -106220,33 +107800,33 @@ entities: - color: '#FFFFFFFF' text: primary evac type: NavMapBeacon - - uid: 16260 + - uid: 16863 components: - pos: -42.5,67.5 parent: 2 type: Transform - - uid: 16262 + - uid: 16864 components: - pos: 62.5,11.5 parent: 2 type: Transform - location: east solar panel type: WarpPoint - - uid: 16270 + - uid: 16865 components: - pos: 34.5,8.5 parent: 2 type: Transform - location: dojo type: WarpPoint - - uid: 16274 + - uid: 16866 components: - pos: -21.5,-23.5 parent: 2 type: Transform - location: eva room type: WarpPoint - - uid: 16275 + - uid: 16867 components: - pos: -15.5,-76.5 parent: 2 @@ -106258,21 +107838,21 @@ entities: type: NavMapBeacon - proto: WarpPointBombing entities: - - uid: 15909 + - uid: 16868 components: - pos: -14.5,13.5 parent: 2 type: Transform - location: kitchen/hydro type: WarpPoint - - uid: 16248 + - uid: 16869 components: - pos: 0.5,1.5 parent: 2 type: Transform - location: center park type: WarpPoint - - uid: 16250 + - uid: 16870 components: - pos: 10.5,-15.5 parent: 2 @@ -106282,7 +107862,7 @@ entities: - color: '#A46106FF' text: logistics type: NavMapBeacon - - uid: 16252 + - uid: 16871 components: - pos: -30.5,-9.5 parent: 2 @@ -106292,21 +107872,21 @@ entities: - color: '#FF0000FF' text: security type: NavMapBeacon - - uid: 16255 + - uid: 16872 components: - pos: -23.5,41.5 parent: 2 type: Transform - location: courtroom type: WarpPoint - - uid: 16256 + - uid: 16873 components: - pos: -32.5,15.5 parent: 2 type: Transform - location: dormitories type: WarpPoint - - uid: 16259 + - uid: 16874 components: - pos: 17.5,16.5 parent: 2 @@ -106316,14 +107896,14 @@ entities: - color: '#52B4E9FF' text: medical type: NavMapBeacon - - uid: 16261 + - uid: 16875 components: - pos: 0.5,19.5 parent: 2 type: Transform - location: vault type: WarpPoint - - uid: 16263 + - uid: 16876 components: - pos: -8.5,-6.5 parent: 2 @@ -106333,14 +107913,14 @@ entities: - color: '#791500FF' text: bar type: NavMapBeacon - - uid: 16273 + - uid: 16877 components: - pos: -55.5,-8.5 parent: 2 type: Transform - location: extended confinement type: WarpPoint - - uid: 17198 + - uid: 16878 components: - pos: -7.5,-22.5 parent: 2 @@ -106352,105 +107932,112 @@ entities: type: NavMapBeacon - proto: WashingMachineFilledClothes entities: - - uid: 16132 + - uid: 16879 components: - pos: -38.5,19.5 parent: 2 type: Transform - proto: WaterCooler entities: - - uid: 5925 + - uid: 16880 components: - pos: -39.5,31.5 parent: 2 type: Transform - - uid: 15675 + - uid: 16881 components: - pos: -25.5,-5.5 parent: 2 type: Transform - proto: WaterTank entities: - - uid: 11236 + - uid: 16882 components: - pos: -6.5,-21.5 parent: 2 type: Transform - proto: WaterTankFull entities: - - uid: 13588 + - uid: 16883 components: - pos: 20.5,-14.5 parent: 2 type: Transform - - uid: 15521 + - uid: 16884 components: - pos: -16.5,19.5 parent: 2 type: Transform - - uid: 16980 + - uid: 16885 components: - pos: 4.5,9.5 parent: 2 type: Transform - - uid: 16996 + - uid: 16886 components: - pos: -40.5,47.5 parent: 2 type: Transform - proto: WaterTankHighCapacity entities: - - uid: 608 + - uid: 16887 components: - pos: -17.5,3.5 parent: 2 type: Transform - - uid: 15752 + - uid: 16888 components: - pos: -63.5,-5.5 parent: 2 type: Transform +- proto: WaterVaporCanister + entities: + - uid: 16889 + components: + - pos: 0.5,-36.5 + parent: 2 + type: Transform - proto: WeaponCapacitorRecharger entities: - - uid: 689 + - uid: 16890 components: - rot: -1.5707963267948966 rad pos: -26.5,-13.5 parent: 2 type: Transform - - uid: 883 + - uid: 16891 components: - pos: -23.5,-12.5 parent: 2 type: Transform - - uid: 6753 + - uid: 16892 components: - rot: -1.5707963267948966 rad pos: -39.5,0.5 parent: 2 type: Transform - - uid: 16125 + - uid: 16893 components: - pos: -31.5,-10.5 parent: 2 type: Transform - proto: WeaponCapacitorRechargerCircuitboard entities: - - uid: 15666 + - uid: 16894 components: - pos: 8.398281,-31.671444 parent: 2 type: Transform - proto: WeaponLauncherRocket entities: - - uid: 15397 + - uid: 16895 components: - pos: -41.49494,1.6153598 parent: 2 type: Transform - proto: WeaponPulsePistol entities: - - uid: 3003 + - uid: 16896 components: - name: Head of Security's Prized Pulse Pistol type: MetaData @@ -106459,26 +108046,26 @@ entities: type: Transform - proto: WeaponShotgunHandmade entities: - - uid: 16077 + - uid: 16897 components: - pos: 58.21016,9.5359 parent: 2 type: Transform - proto: WeaponShotgunKammererNonLethal entities: - - uid: 16001 + - uid: 16898 components: - pos: -26.271503,-15.564819 parent: 2 type: Transform - - uid: 16052 + - uid: 16899 components: - pos: -26.388712,-15.330445 parent: 2 type: Transform - proto: WeaponSniperCeremonial entities: - - uid: 11403 + - uid: 16900 components: - rot: -1.5707963267948966 rad pos: 1.651196,20.645538 @@ -106486,136 +108073,143 @@ entities: type: Transform - proto: WeaponTurretSyndicateBroken entities: - - uid: 3568 + - uid: 16901 components: - pos: -4.5,-73.5 parent: 2 type: Transform - - uid: 3820 + - uid: 16902 components: - pos: -10.5,-79.5 parent: 2 type: Transform - - uid: 3821 + - uid: 16903 components: - pos: -10.5,-73.5 parent: 2 type: Transform - - uid: 3822 + - uid: 16904 components: - pos: -14.5,-74.5 parent: 2 type: Transform - - uid: 3823 + - uid: 16905 components: - pos: -10.5,-76.5 parent: 2 type: Transform - - uid: 3824 + - uid: 16906 components: - pos: -4.5,-79.5 parent: 2 type: Transform - - uid: 14767 + - uid: 16907 components: - pos: -17.5,-74.5 parent: 2 type: Transform - proto: WeaponWaterPistol entities: - - uid: 625 + - uid: 16908 components: - pos: -20.31781,9.430968 parent: 2 type: Transform +- proto: WelderIndustrial + entities: + - uid: 16909 + components: + - pos: -8.5,-39.5 + parent: 2 + type: Transform - proto: WelderMini entities: - - uid: 1638 + - uid: 16910 components: - pos: 2.4258919,-9.600988 parent: 2 type: Transform - proto: WeldingFuelTank entities: - - uid: 17010 + - uid: 16911 components: - pos: 4.5,-19.5 parent: 2 type: Transform - proto: WeldingFuelTankFull entities: - - uid: 11235 + - uid: 16912 components: - pos: -6.5,-19.5 parent: 2 type: Transform - - uid: 11623 + - uid: 16913 components: - pos: 26.5,-18.5 parent: 2 type: Transform - - uid: 15517 + - uid: 16914 components: - pos: 4.5,3.5 parent: 2 type: Transform - - uid: 16983 + - uid: 16915 components: - pos: -28.5,20.5 parent: 2 type: Transform - - uid: 16984 + - uid: 16916 components: - pos: -9.5,29.5 parent: 2 type: Transform - - uid: 16985 + - uid: 16917 components: - pos: 36.5,19.5 parent: 2 type: Transform - - uid: 16995 + - uid: 16918 components: - pos: 4.5,29.5 parent: 2 type: Transform - - uid: 17009 + - uid: 16919 components: - pos: -31.5,-21.5 parent: 2 type: Transform - proto: WetFloorSign entities: - - uid: 13190 + - uid: 16920 components: - pos: -21.720625,13.343189 parent: 2 type: Transform - - uid: 16602 + - uid: 16921 components: - pos: -1.5648136,12.694733 parent: 2 type: Transform - - uid: 16603 + - uid: 16922 components: - pos: -1.2002304,12.663462 parent: 2 type: Transform - - uid: 16604 + - uid: 16923 components: - pos: 22.190928,-14.054367 parent: 2 type: Transform - proto: WheatSeeds entities: - - uid: 4282 + - uid: 16924 components: - pos: 32.33082,-12.661961 parent: 2 type: Transform - proto: WindoorBarLocked entities: - - uid: 109 + - uid: 16925 components: - rot: 1.5707963267948966 rad pos: -6.5,-3.5 @@ -106623,43 +108217,43 @@ entities: type: Transform - proto: WindoorCargoLocked entities: - - uid: 16074 + - uid: 16926 components: - pos: 12.5,-7.5 parent: 2 type: Transform - - uid: 16142 + - uid: 16927 components: - pos: 13.5,-7.5 parent: 2 type: Transform - proto: WindoorHydroponicsLocked entities: - - uid: 162 + - uid: 16928 components: - rot: 1.5707963267948966 rad pos: -22.5,5.5 parent: 2 type: Transform - - uid: 292 + - uid: 16929 components: - rot: 1.5707963267948966 rad pos: -19.5,10.5 parent: 2 type: Transform - - uid: 296 + - uid: 16930 components: - rot: 1.5707963267948966 rad pos: -22.5,6.5 parent: 2 type: Transform - - uid: 315 + - uid: 16931 components: - rot: -1.5707963267948966 rad pos: -16.5,4.5 parent: 2 type: Transform - - uid: 316 + - uid: 16932 components: - rot: -1.5707963267948966 rad pos: -16.5,5.5 @@ -106667,20 +108261,20 @@ entities: type: Transform - proto: WindoorKitchenLocked entities: - - uid: 664 + - uid: 16933 components: - rot: 3.141592653589793 rad pos: -7.5,14.5 parent: 2 type: Transform - - uid: 665 + - uid: 16934 components: - pos: -7.5,13.5 parent: 2 type: Transform - proto: WindoorMailLocked entities: - - uid: 16323 + - uid: 16935 components: - rot: -1.5707963267948966 rad pos: 9.5,-3.5 @@ -106688,32 +108282,32 @@ entities: type: Transform - proto: WindoorSecure entities: - - uid: 13590 + - uid: 16936 components: - rot: 3.141592653589793 rad pos: 18.5,-2.5 parent: 2 type: Transform - - uid: 16330 + - uid: 16937 components: - pos: -23.5,40.5 parent: 2 type: Transform - proto: WindoorSecureArmoryLocked entities: - - uid: 8073 + - uid: 16938 components: - rot: 3.141592653589793 rad pos: -41.5,-7.5 parent: 2 type: Transform - - uid: 8078 + - uid: 16939 components: - rot: 3.141592653589793 rad pos: -42.5,-7.5 parent: 2 type: Transform - - uid: 15302 + - uid: 16940 components: - rot: 3.141592653589793 rad pos: -41.5,0.5 @@ -106721,19 +108315,19 @@ entities: type: Transform - proto: WindoorSecureBrigLocked entities: - - uid: 1443 + - uid: 16941 components: - pos: -21.5,-6.5 parent: 2 type: Transform - - uid: 1444 + - uid: 16942 components: - pos: -22.5,-6.5 parent: 2 type: Transform - proto: WindoorSecureCargoLocked entities: - - uid: 9574 + - uid: 16943 components: - rot: 3.141592653589793 rad pos: 11.5,-28.5 @@ -106741,37 +108335,37 @@ entities: type: Transform - proto: WindoorSecureChemistryLocked entities: - - uid: 790 + - uid: 16944 components: - rot: -1.5707963267948966 rad pos: -26.5,2.5 parent: 2 type: Transform - - uid: 791 + - uid: 16945 components: - rot: -1.5707963267948966 rad pos: -29.5,2.5 parent: 2 type: Transform - - uid: 2998 + - uid: 16946 components: - rot: 3.141592653589793 rad pos: 18.5,9.5 parent: 2 type: Transform - - uid: 3177 + - uid: 16947 components: - rot: 3.141592653589793 rad pos: 19.5,9.5 parent: 2 type: Transform - - uid: 3521 + - uid: 16948 components: - rot: 3.141592653589793 rad pos: 15.5,9.5 parent: 2 type: Transform - - uid: 3530 + - uid: 16949 components: - rot: 3.141592653589793 rad pos: 14.5,9.5 @@ -106779,71 +108373,71 @@ entities: type: Transform - proto: WindoorSecureCommandLocked entities: - - uid: 2036 + - uid: 16950 components: - rot: 1.5707963267948966 rad pos: -13.5,-29.5 parent: 2 type: Transform - - uid: 3713 + - uid: 16951 components: - rot: -1.5707963267948966 rad pos: -28.5,-84.5 parent: 2 type: Transform - - uid: 3872 + - uid: 16952 components: - rot: 3.141592653589793 rad pos: -7.5,-75.5 parent: 2 type: Transform - - uid: 3873 + - uid: 16953 components: - pos: -7.5,-77.5 parent: 2 type: Transform - - uid: 4155 + - uid: 16954 components: - rot: -1.5707963267948966 rad pos: 1.5,-84.5 parent: 2 type: Transform - - uid: 4170 + - uid: 16955 components: - rot: -1.5707963267948966 rad pos: -17.5,-66.5 parent: 2 type: Transform - - uid: 4198 + - uid: 16956 components: - rot: -1.5707963267948966 rad pos: -28.5,-68.5 parent: 2 type: Transform - - uid: 4199 + - uid: 16957 components: - rot: 1.5707963267948966 rad pos: -15.5,-66.5 parent: 2 type: Transform - - uid: 4200 + - uid: 16958 components: - rot: -1.5707963267948966 rad pos: -3.5,-67.5 parent: 2 type: Transform - - uid: 4934 + - uid: 16959 components: - rot: 1.5707963267948966 rad pos: 2.5,32.5 parent: 2 type: Transform - - uid: 14764 + - uid: 16960 components: - pos: -6.5,-79.5 parent: 2 type: Transform - - uid: 14765 + - uid: 16961 components: - rot: 3.141592653589793 rad pos: -6.5,-73.5 @@ -106851,7 +108445,7 @@ entities: type: Transform - proto: WindoorSecureEngineeringLocked entities: - - uid: 1652 + - uid: 16962 components: - rot: 1.5707963267948966 rad pos: -9.5,-16.5 @@ -106859,33 +108453,33 @@ entities: type: Transform - proto: WindoorSecureHeadOfPersonnelLocked entities: - - uid: 1896 + - uid: 16963 components: - pos: 18.5,-2.5 parent: 2 type: Transform - proto: WindoorSecureMailLocked entities: - - uid: 16324 + - uid: 16964 components: - pos: 6.5,-4.5 parent: 2 type: Transform - proto: WindoorSecureMedicalLocked entities: - - uid: 4368 + - uid: 16965 components: - rot: -1.5707963267948966 rad pos: 27.5,16.5 parent: 2 type: Transform - - uid: 4376 + - uid: 16966 components: - rot: -1.5707963267948966 rad pos: 27.5,14.5 parent: 2 type: Transform - - uid: 4551 + - uid: 16967 components: - rot: -1.5707963267948966 rad pos: 24.5,25.5 @@ -106893,32 +108487,32 @@ entities: type: Transform - proto: WindoorSecureSalvageLocked entities: - - uid: 9573 + - uid: 16968 components: - pos: 11.5,-28.5 parent: 2 type: Transform - proto: WindoorSecureScienceLocked entities: - - uid: 15219 + - uid: 16969 components: - rot: -1.5707963267948966 rad pos: -33.5,28.5 parent: 2 type: Transform - - uid: 15278 + - uid: 16970 components: - rot: 1.5707963267948966 rad pos: -43.5,28.5 parent: 2 type: Transform - - uid: 15309 + - uid: 16971 components: - rot: 1.5707963267948966 rad pos: -43.5,27.5 parent: 2 type: Transform - - uid: 15379 + - uid: 16972 components: - rot: -1.5707963267948966 rad pos: -33.5,29.5 @@ -106926,31 +108520,31 @@ entities: type: Transform - proto: WindoorSecureSecurityLocked entities: - - uid: 1268 + - uid: 16973 components: - rot: 3.141592653589793 rad pos: -37.5,-10.5 parent: 2 type: Transform - - uid: 1270 + - uid: 16974 components: - rot: -1.5707963267948966 rad pos: -26.5,-12.5 parent: 2 type: Transform - - uid: 1271 + - uid: 16975 components: - rot: -1.5707963267948966 rad pos: -26.5,-14.5 parent: 2 type: Transform - - uid: 1298 + - uid: 16976 components: - rot: 3.141592653589793 rad pos: -38.5,-10.5 parent: 2 type: Transform - - uid: 3586 + - uid: 16977 components: - rot: 3.141592653589793 rad pos: 26.5,7.5 @@ -106958,7 +108552,7 @@ entities: type: Transform - proto: WindoorServiceLocked entities: - - uid: 12763 + - uid: 16978 components: - rot: 3.141592653589793 rad pos: 35.5,-7.5 @@ -106966,2440 +108560,2430 @@ entities: type: Transform - proto: Window entities: - - uid: 24 + - uid: 16979 components: - pos: -11.5,21.5 parent: 2 type: Transform - - uid: 56 + - uid: 16980 components: - pos: -8.5,2.5 parent: 2 type: Transform - - uid: 135 + - uid: 16981 components: - pos: -9.5,-1.5 parent: 2 type: Transform - - uid: 146 + - uid: 16982 components: - pos: -11.5,20.5 parent: 2 type: Transform - - uid: 166 + - uid: 16983 components: - pos: -9.5,-29.5 parent: 2 type: Transform - - uid: 263 + - uid: 16984 components: - pos: -16.5,6.5 parent: 2 type: Transform - - uid: 277 + - uid: 16985 components: - pos: -9.5,2.5 parent: 2 type: Transform - - uid: 287 + - uid: 16986 components: - pos: -5.5,11.5 parent: 2 type: Transform - - uid: 298 + - uid: 16987 components: - pos: -6.5,-25.5 parent: 2 type: Transform - - uid: 317 + - uid: 16988 components: - pos: -10.5,2.5 parent: 2 type: Transform - - uid: 323 + - uid: 16989 components: - pos: 9.5,-4.5 parent: 2 type: Transform - - uid: 335 + - uid: 16990 components: - pos: 12.5,-2.5 parent: 2 type: Transform - - uid: 337 + - uid: 16991 components: - pos: 13.5,-2.5 parent: 2 type: Transform - - uid: 341 + - uid: 16992 components: - pos: 11.5,-7.5 parent: 2 type: Transform - - uid: 342 + - uid: 16993 components: - pos: 14.5,-7.5 parent: 2 type: Transform - - uid: 365 + - uid: 16994 components: - pos: 12.5,-11.5 parent: 2 type: Transform - - uid: 366 + - uid: 16995 components: - pos: 11.5,-11.5 parent: 2 type: Transform - - uid: 397 + - uid: 16996 components: - pos: 9.5,-10.5 parent: 2 type: Transform - - uid: 405 + - uid: 16997 components: - pos: -2.5,10.5 parent: 2 type: Transform - - uid: 482 + - uid: 16998 components: - pos: -5.5,16.5 parent: 2 type: Transform - - uid: 495 + - uid: 16999 components: - rot: -1.5707963267948966 rad pos: 36.5,-4.5 parent: 2 type: Transform - - uid: 498 + - uid: 17000 components: - pos: 11.5,3.5 parent: 2 type: Transform - - uid: 501 + - uid: 17001 components: - pos: 14.5,3.5 parent: 2 type: Transform - - uid: 546 + - uid: 17002 components: - pos: -21.5,-1.5 parent: 2 type: Transform - - uid: 651 + - uid: 17003 components: - pos: -9.5,13.5 parent: 2 type: Transform - - uid: 652 + - uid: 17004 components: - pos: -10.5,13.5 parent: 2 type: Transform - - uid: 890 + - uid: 17005 components: - pos: -22.5,-1.5 parent: 2 type: Transform - - uid: 1024 + - uid: 17006 components: - pos: -5.5,17.5 parent: 2 type: Transform - - uid: 1070 + - uid: 17007 components: - pos: -9.5,-11.5 parent: 2 type: Transform - - uid: 1175 + - uid: 17008 components: - pos: -19.5,2.5 parent: 2 type: Transform - - uid: 1176 + - uid: 17009 components: - pos: -18.5,2.5 parent: 2 type: Transform - - uid: 1177 + - uid: 17010 components: - pos: -11.5,22.5 parent: 2 type: Transform - - uid: 1261 + - uid: 17011 components: - pos: -11.5,1.5 parent: 2 type: Transform - - uid: 1294 + - uid: 17012 components: - pos: -30.5,4.5 parent: 2 type: Transform - - uid: 1311 + - uid: 17013 components: - pos: -32.5,4.5 parent: 2 type: Transform - - uid: 1343 + - uid: 17014 components: - pos: -5.5,-22.5 parent: 2 type: Transform - - uid: 1440 + - uid: 17015 components: - pos: -5.5,-24.5 parent: 2 type: Transform - - uid: 1442 + - uid: 17016 components: - pos: -18.5,-14.5 parent: 2 type: Transform - - uid: 1486 + - uid: 17017 components: - pos: -7.5,-11.5 parent: 2 type: Transform - - uid: 1620 + - uid: 17018 components: - pos: 30.5,-17.5 parent: 2 type: Transform - - uid: 1622 + - uid: 17019 components: - pos: 28.5,-17.5 parent: 2 type: Transform - - uid: 1704 + - uid: 17020 components: - pos: 24.5,15.5 parent: 2 type: Transform - - uid: 1772 + - uid: 17021 components: - rot: -1.5707963267948966 rad pos: 36.5,-3.5 parent: 2 type: Transform - - uid: 1886 + - uid: 17022 components: - pos: -12.5,-35.5 parent: 2 type: Transform - - uid: 2001 + - uid: 17023 components: - rot: 1.5707963267948966 rad pos: -9.5,-30.5 parent: 2 type: Transform - - uid: 2002 + - uid: 17024 components: - rot: 1.5707963267948966 rad pos: -9.5,-26.5 parent: 2 type: Transform - - uid: 2041 + - uid: 17025 components: - pos: -9.5,-27.5 parent: 2 type: Transform - - uid: 2514 - components: - - pos: -5.5,-42.5 - parent: 2 - type: Transform - - uid: 2668 - components: - - pos: -6.5,-42.5 - parent: 2 - type: Transform - - uid: 2737 + - uid: 17026 components: - pos: -9.5,-32.5 parent: 2 type: Transform - - uid: 2739 + - uid: 17027 components: - pos: -9.5,-34.5 parent: 2 type: Transform - - uid: 3141 + - uid: 17028 components: - pos: -39.5,19.5 parent: 2 type: Transform - - uid: 3194 + - uid: 17029 components: - pos: -39.5,18.5 parent: 2 type: Transform - - uid: 3197 + - uid: 17030 components: - pos: -38.5,16.5 parent: 2 type: Transform - - uid: 3205 + - uid: 17031 components: - pos: -36.5,16.5 parent: 2 type: Transform - - uid: 3288 + - uid: 17032 components: - pos: -37.5,8.5 parent: 2 type: Transform - - uid: 3435 + - uid: 17033 components: - pos: -36.5,8.5 parent: 2 type: Transform - - uid: 3487 + - uid: 17034 components: - rot: 1.5707963267948966 rad pos: 32.5,2.5 parent: 2 type: Transform - - uid: 3492 + - uid: 17035 components: - rot: -1.5707963267948966 rad pos: 27.5,-3.5 parent: 2 type: Transform - - uid: 3579 + - uid: 17036 components: - rot: 1.5707963267948966 rad pos: 34.5,-1.5 parent: 2 type: Transform - - uid: 3815 + - uid: 17037 components: - rot: 1.5707963267948966 rad pos: 33.5,-1.5 parent: 2 type: Transform - - uid: 3909 + - uid: 17038 components: - rot: 1.5707963267948966 rad pos: 31.5,2.5 parent: 2 type: Transform - - uid: 3915 + - uid: 17039 components: - rot: 1.5707963267948966 rad pos: 30.5,-1.5 parent: 2 type: Transform - - uid: 3925 + - uid: 17040 components: - pos: 23.5,-13.5 parent: 2 type: Transform - - uid: 3989 + - uid: 17041 components: - rot: 3.141592653589793 rad pos: 28.5,-7.5 parent: 2 type: Transform - - uid: 4153 + - uid: 17042 components: - rot: 1.5707963267948966 rad pos: 29.5,-1.5 parent: 2 type: Transform - - uid: 4201 + - uid: 17043 components: - pos: 23.5,-14.5 parent: 2 type: Transform - - uid: 4318 + - uid: 17044 components: - pos: 22.5,2.5 parent: 2 type: Transform - - uid: 4319 + - uid: 17045 components: - pos: 21.5,2.5 parent: 2 type: Transform - - uid: 4320 + - uid: 17046 components: - pos: 19.5,2.5 parent: 2 type: Transform - - uid: 4321 + - uid: 17047 components: - pos: 18.5,2.5 parent: 2 type: Transform - - uid: 4339 + - uid: 17048 components: - pos: 24.5,14.5 parent: 2 type: Transform - - uid: 4462 + - uid: 17049 components: - pos: 16.5,17.5 parent: 2 type: Transform - - uid: 4464 + - uid: 17050 components: - pos: 18.5,17.5 parent: 2 type: Transform - - uid: 4465 + - uid: 17051 components: - pos: 19.5,17.5 parent: 2 type: Transform - - uid: 4507 + - uid: 17052 components: - rot: 1.5707963267948966 rad pos: 14.5,23.5 parent: 2 type: Transform - - uid: 4519 + - uid: 17053 components: - pos: 11.5,26.5 parent: 2 type: Transform - - uid: 4936 + - uid: 17054 components: - pos: 27.5,-5.5 parent: 2 type: Transform - - uid: 5126 + - uid: 17055 components: - pos: 16.5,1.5 parent: 2 type: Transform - - uid: 5129 + - uid: 17056 components: - pos: 16.5,-0.5 parent: 2 type: Transform - - uid: 5304 + - uid: 17057 components: - pos: 36.5,1.5 parent: 2 type: Transform - - uid: 5305 + - uid: 17058 components: - pos: 36.5,-0.5 parent: 2 type: Transform - - uid: 5863 + - uid: 17059 components: - pos: -40.5,30.5 parent: 2 type: Transform - - uid: 5865 + - uid: 17060 components: - pos: -48.5,24.5 parent: 2 type: Transform - - uid: 5866 + - uid: 17061 components: - pos: -49.5,24.5 parent: 2 type: Transform - - uid: 6008 + - uid: 17062 components: - pos: 3.5,-3.5 parent: 2 type: Transform - - uid: 6617 + - uid: 17063 components: - pos: -43.5,16.5 parent: 2 type: Transform - - uid: 6766 + - uid: 17064 components: - pos: -47.5,8.5 parent: 2 type: Transform - - uid: 6777 + - uid: 17065 components: - pos: -13.5,24.5 parent: 2 type: Transform - - uid: 6788 + - uid: 17066 components: - pos: -41.5,8.5 parent: 2 type: Transform - - uid: 7302 + - uid: 17067 components: - pos: -17.5,-29.5 parent: 2 type: Transform - - uid: 9153 + - uid: 17068 components: - pos: -6.5,4.5 parent: 2 type: Transform - - uid: 9626 + - uid: 17069 components: - pos: -25.5,30.5 parent: 2 type: Transform - - uid: 9627 + - uid: 17070 components: - pos: -25.5,29.5 parent: 2 type: Transform - - uid: 9629 + - uid: 17071 components: - pos: -25.5,28.5 parent: 2 type: Transform - - uid: 10985 + - uid: 17072 components: - pos: -26.5,7.5 parent: 2 type: Transform - - uid: 11118 + - uid: 17073 components: - pos: 14.5,24.5 parent: 2 type: Transform - - uid: 11145 + - uid: 17074 components: - pos: 14.5,19.5 parent: 2 type: Transform - - uid: 11506 + - uid: 17075 components: - pos: 29.5,-13.5 parent: 2 type: Transform - - uid: 11564 + - uid: 17076 components: - pos: 30.5,-13.5 parent: 2 type: Transform - - uid: 11890 + - uid: 17077 components: - pos: 15.5,17.5 parent: 2 type: Transform - - uid: 12324 + - uid: 17078 components: - pos: 9.5,10.5 parent: 2 type: Transform - - uid: 14272 + - uid: 17079 components: - pos: -38.5,7.5 parent: 2 type: Transform - - uid: 15472 + - uid: 17080 components: - pos: 14.5,20.5 parent: 2 type: Transform - - uid: 15594 + - uid: 17081 components: - pos: -20.5,1.5 parent: 2 type: Transform - - uid: 15697 + - uid: 17082 components: - pos: 3.5,-2.5 parent: 2 type: Transform - - uid: 15699 + - uid: 17083 components: - pos: -2.5,4.5 parent: 2 type: Transform - - uid: 15700 + - uid: 17084 components: - pos: -2.5,3.5 parent: 2 type: Transform - - uid: 16655 + - uid: 17085 components: - pos: -2.5,12.5 parent: 2 type: Transform - - uid: 16897 + - uid: 17086 components: - pos: -33.5,4.5 parent: 2 type: Transform - - uid: 17163 + - uid: 17087 components: - pos: 13.5,-31.5 parent: 2 type: Transform - - uid: 17164 + - uid: 17088 components: - pos: 13.5,-32.5 parent: 2 type: Transform - proto: WindowDirectional entities: - - uid: 293 + - uid: 17089 components: - rot: 1.5707963267948966 rad pos: -19.5,11.5 parent: 2 type: Transform - - uid: 602 + - uid: 17090 components: - rot: 1.5707963267948966 rad pos: -19.5,9.5 parent: 2 type: Transform - - uid: 636 + - uid: 17091 components: - rot: 3.141592653589793 rad pos: -6.5,14.5 parent: 2 type: Transform - - uid: 663 + - uid: 17092 components: - pos: -6.5,13.5 parent: 2 type: Transform - proto: WindowFrostedDirectional entities: - - uid: 205 + - uid: 17093 components: - pos: 5.5,-4.5 parent: 2 type: Transform - - uid: 281 + - uid: 17094 components: - pos: 8.5,-4.5 parent: 2 type: Transform - - uid: 282 + - uid: 17095 components: - pos: 4.5,-4.5 parent: 2 type: Transform - - uid: 324 + - uid: 17096 components: - pos: 7.5,-4.5 parent: 2 type: Transform - proto: WindowReinforcedDirectional entities: - - uid: 552 + - uid: 17097 components: - rot: -1.5707963267948966 rad pos: -29.5,1.5 parent: 2 type: Transform - - uid: 695 + - uid: 17098 components: - rot: -1.5707963267948966 rad pos: -26.5,-13.5 parent: 2 type: Transform - - uid: 792 + - uid: 17099 components: - rot: -1.5707963267948966 rad pos: -29.5,3.5 parent: 2 type: Transform - - uid: 818 + - uid: 17100 components: - rot: -1.5707963267948966 rad pos: -26.5,-15.5 parent: 2 type: Transform - - uid: 1026 + - uid: 17101 components: - rot: -1.5707963267948966 rad pos: -26.5,-11.5 parent: 2 type: Transform - - uid: 1041 + - uid: 17102 components: - rot: 3.141592653589793 rad pos: -39.5,-10.5 parent: 2 type: Transform - - uid: 1320 + - uid: 17103 components: - rot: 3.141592653589793 rad pos: -36.5,-10.5 parent: 2 type: Transform - - uid: 1408 + - uid: 17104 components: - rot: 3.141592653589793 rad pos: -11.5,-87.5 parent: 2 type: Transform - - uid: 1409 + - uid: 17105 components: - rot: 3.141592653589793 rad pos: -14.5,-87.5 parent: 2 type: Transform - - uid: 1425 + - uid: 17106 components: - rot: 3.141592653589793 rad pos: -18.5,-87.5 parent: 2 type: Transform - - uid: 1506 + - uid: 17107 components: - rot: 1.5707963267948966 rad pos: -13.5,-30.5 parent: 2 type: Transform - - uid: 3105 + - uid: 17108 components: - rot: -1.5707963267948966 rad pos: 27.5,13.5 parent: 2 type: Transform - - uid: 3577 + - uid: 17109 components: - rot: 1.5707963267948966 rad pos: -15.5,-68.5 parent: 2 type: Transform - - uid: 3587 + - uid: 17110 components: - rot: 3.141592653589793 rad pos: 28.5,7.5 parent: 2 type: Transform - - uid: 3600 + - uid: 17111 components: - rot: 3.141592653589793 rad pos: 27.5,7.5 parent: 2 type: Transform - - uid: 3710 + - uid: 17112 components: - pos: -9.5,-66.5 parent: 2 type: Transform - - uid: 3722 + - uid: 17113 components: - pos: -11.5,-66.5 parent: 2 type: Transform - - uid: 3790 + - uid: 17114 components: - rot: -1.5707963267948966 rad pos: -10.5,-67.5 parent: 2 type: Transform - - uid: 3816 + - uid: 17115 components: - rot: 1.5707963267948966 rad pos: -15.5,-67.5 parent: 2 type: Transform - - uid: 3830 + - uid: 17116 components: - pos: -31.5,-68.5 parent: 2 type: Transform - - uid: 3833 + - uid: 17117 components: - pos: -30.5,-68.5 parent: 2 type: Transform - - uid: 3845 + - uid: 17118 components: - pos: -10.5,-67.5 parent: 2 type: Transform - - uid: 3857 + - uid: 17119 components: - pos: -12.5,-66.5 parent: 2 type: Transform - - uid: 3859 + - uid: 17120 components: - pos: -29.5,-68.5 parent: 2 type: Transform - - uid: 3870 + - uid: 17121 components: - pos: -28.5,-68.5 parent: 2 type: Transform - - uid: 3874 + - uid: 17122 components: - pos: -14.5,-66.5 parent: 2 type: Transform - - uid: 3876 + - uid: 17123 components: - pos: -13.5,-66.5 parent: 2 type: Transform - - uid: 3893 + - uid: 17124 components: - rot: 3.141592653589793 rad pos: 0.5,-84.5 parent: 2 type: Transform - - uid: 3894 + - uid: 17125 components: - rot: -1.5707963267948966 rad pos: -17.5,-68.5 parent: 2 type: Transform - - uid: 3897 + - uid: 17126 components: - rot: 1.5707963267948966 rad pos: -15.5,-64.5 parent: 2 type: Transform - - uid: 3899 + - uid: 17127 components: - rot: -1.5707963267948966 rad pos: -17.5,-67.5 parent: 2 type: Transform - - uid: 3911 + - uid: 17128 components: - rot: 1.5707963267948966 rad pos: -15.5,-63.5 parent: 2 type: Transform - - uid: 3917 + - uid: 17129 components: - rot: -1.5707963267948966 rad pos: -17.5,-63.5 parent: 2 type: Transform - - uid: 3918 + - uid: 17130 components: - rot: -1.5707963267948966 rad pos: -17.5,-64.5 parent: 2 type: Transform - - uid: 3948 + - uid: 17131 components: - rot: 3.141592653589793 rad pos: -12.5,-87.5 parent: 2 type: Transform - - uid: 3950 + - uid: 17132 components: - rot: 3.141592653589793 rad pos: -15.5,-87.5 parent: 2 type: Transform - - uid: 3970 + - uid: 17133 components: - rot: 3.141592653589793 rad pos: 1.5,-85.5 parent: 2 type: Transform - - uid: 3971 + - uid: 17134 components: - rot: -1.5707963267948966 rad pos: -2.5,-85.5 parent: 2 type: Transform - - uid: 3972 + - uid: 17135 components: - rot: 3.141592653589793 rad pos: -19.5,-87.5 parent: 2 type: Transform - - uid: 3973 + - uid: 17136 components: - rot: 3.141592653589793 rad pos: -21.5,-88.5 parent: 2 type: Transform - - uid: 3974 + - uid: 17137 components: - rot: 1.5707963267948966 rad pos: -22.5,-87.5 parent: 2 type: Transform - - uid: 3975 + - uid: 17138 components: - rot: 1.5707963267948966 rad pos: -22.5,-86.5 parent: 2 type: Transform - - uid: 3976 + - uid: 17139 components: - rot: 1.5707963267948966 rad pos: -36.5,-72.5 parent: 2 type: Transform - - uid: 3977 + - uid: 17140 components: - rot: 3.141592653589793 rad pos: -17.5,-87.5 parent: 2 type: Transform - - uid: 3978 + - uid: 17141 components: - rot: 3.141592653589793 rad pos: -13.5,-87.5 parent: 2 type: Transform - - uid: 3980 + - uid: 17142 components: - rot: 3.141592653589793 rad pos: -20.5,-87.5 parent: 2 type: Transform - - uid: 4029 + - uid: 17143 components: - rot: -1.5707963267948966 rad pos: 2.5,-69.5 parent: 2 type: Transform - - uid: 4030 + - uid: 17144 components: - pos: -14.5,-65.5 parent: 2 type: Transform - - uid: 4031 + - uid: 17145 components: - pos: -13.5,-65.5 parent: 2 type: Transform - - uid: 4032 + - uid: 17146 components: - pos: -12.5,-65.5 parent: 2 type: Transform - - uid: 4033 + - uid: 17147 components: - pos: -11.5,-65.5 parent: 2 type: Transform - - uid: 4034 + - uid: 17148 components: - pos: -10.5,-65.5 parent: 2 type: Transform - - uid: 4035 + - uid: 17149 components: - rot: -1.5707963267948966 rad pos: -9.5,-66.5 parent: 2 type: Transform - - uid: 4036 + - uid: 17150 components: - pos: -8.5,-66.5 parent: 2 type: Transform - - uid: 4037 + - uid: 17151 components: - pos: -7.5,-66.5 parent: 2 type: Transform - - uid: 4038 + - uid: 17152 components: - pos: -6.5,-66.5 parent: 2 type: Transform - - uid: 4040 + - uid: 17153 components: - pos: -5.5,-66.5 parent: 2 type: Transform - - uid: 4041 + - uid: 17154 components: - pos: -4.5,-66.5 parent: 2 type: Transform - - uid: 4042 + - uid: 17155 components: - pos: -3.5,-66.5 parent: 2 type: Transform - - uid: 4043 + - uid: 17156 components: - rot: -1.5707963267948966 rad pos: -2.5,-67.5 parent: 2 type: Transform - - uid: 4044 + - uid: 17157 components: - rot: -1.5707963267948966 rad pos: 2.5,-68.5 parent: 2 type: Transform - - uid: 4045 + - uid: 17158 components: - pos: -2.5,-67.5 parent: 2 type: Transform - - uid: 4046 + - uid: 17159 components: - pos: -18.5,-66.5 parent: 2 type: Transform - - uid: 4047 + - uid: 17160 components: - pos: -19.5,-66.5 parent: 2 type: Transform - - uid: 4048 + - uid: 17161 components: - pos: -20.5,-66.5 parent: 2 type: Transform - - uid: 4049 + - uid: 17162 components: - rot: 1.5707963267948966 rad pos: -21.5,-67.5 parent: 2 type: Transform - - uid: 4050 + - uid: 17163 components: - rot: 1.5707963267948966 rad pos: -21.5,-68.5 parent: 2 type: Transform - - uid: 4052 + - uid: 17164 components: - rot: 1.5707963267948966 rad pos: -35.5,-69.5 parent: 2 type: Transform - - uid: 4054 + - uid: 17165 components: - rot: 1.5707963267948966 rad pos: -35.5,-70.5 parent: 2 type: Transform - - uid: 4055 + - uid: 17166 components: - rot: 1.5707963267948966 rad pos: -35.5,-71.5 parent: 2 type: Transform - - uid: 4056 + - uid: 17167 components: - rot: 1.5707963267948966 rad pos: -35.5,-72.5 parent: 2 type: Transform - - uid: 4057 + - uid: 17168 components: - rot: 1.5707963267948966 rad pos: -35.5,-73.5 parent: 2 type: Transform - - uid: 4058 + - uid: 17169 components: - rot: 1.5707963267948966 rad pos: -35.5,-74.5 parent: 2 type: Transform - - uid: 4059 + - uid: 17170 components: - rot: 1.5707963267948966 rad pos: -35.5,-75.5 parent: 2 type: Transform - - uid: 4060 + - uid: 17171 components: - rot: 1.5707963267948966 rad pos: -35.5,-76.5 parent: 2 type: Transform - - uid: 4061 + - uid: 17172 components: - rot: 1.5707963267948966 rad pos: -35.5,-77.5 parent: 2 type: Transform - - uid: 4062 + - uid: 17173 components: - rot: 1.5707963267948966 rad pos: -35.5,-78.5 parent: 2 type: Transform - - uid: 4063 + - uid: 17174 components: - rot: 1.5707963267948966 rad pos: -35.5,-79.5 parent: 2 type: Transform - - uid: 4064 + - uid: 17175 components: - rot: 1.5707963267948966 rad pos: -35.5,-80.5 parent: 2 type: Transform - - uid: 4065 + - uid: 17176 components: - rot: 1.5707963267948966 rad pos: -35.5,-81.5 parent: 2 type: Transform - - uid: 4066 + - uid: 17177 components: - rot: 1.5707963267948966 rad pos: -35.5,-82.5 parent: 2 type: Transform - - uid: 4067 + - uid: 17178 components: - rot: 1.5707963267948966 rad pos: -35.5,-83.5 parent: 2 type: Transform - - uid: 4069 + - uid: 17179 components: - rot: 1.5707963267948966 rad pos: -21.5,-84.5 parent: 2 type: Transform - - uid: 4070 + - uid: 17180 components: - rot: 1.5707963267948966 rad pos: -21.5,-85.5 parent: 2 type: Transform - - uid: 4071 + - uid: 17181 components: - rot: 1.5707963267948966 rad pos: -21.5,-86.5 parent: 2 type: Transform - - uid: 4072 + - uid: 17182 components: - pos: -34.5,-68.5 parent: 2 type: Transform - - uid: 4073 + - uid: 17183 components: - rot: -1.5707963267948966 rad pos: 1.5,-69.5 parent: 2 type: Transform - - uid: 4074 + - uid: 17184 components: - rot: -1.5707963267948966 rad pos: 1.5,-70.5 parent: 2 type: Transform - - uid: 4075 + - uid: 17185 components: - rot: -1.5707963267948966 rad pos: 1.5,-71.5 parent: 2 type: Transform - - uid: 4076 + - uid: 17186 components: - rot: -1.5707963267948966 rad pos: 1.5,-72.5 parent: 2 type: Transform - - uid: 4077 + - uid: 17187 components: - rot: -1.5707963267948966 rad pos: 1.5,-73.5 parent: 2 type: Transform - - uid: 4078 + - uid: 17188 components: - rot: -1.5707963267948966 rad pos: 1.5,-74.5 parent: 2 type: Transform - - uid: 4079 + - uid: 17189 components: - rot: -1.5707963267948966 rad pos: 1.5,-75.5 parent: 2 type: Transform - - uid: 4080 + - uid: 17190 components: - rot: -1.5707963267948966 rad pos: 1.5,-76.5 parent: 2 type: Transform - - uid: 4081 + - uid: 17191 components: - rot: -1.5707963267948966 rad pos: 1.5,-77.5 parent: 2 type: Transform - - uid: 4082 + - uid: 17192 components: - rot: -1.5707963267948966 rad pos: 1.5,-78.5 parent: 2 type: Transform - - uid: 4083 + - uid: 17193 components: - rot: -1.5707963267948966 rad pos: 1.5,-79.5 parent: 2 type: Transform - - uid: 4084 + - uid: 17194 components: - rot: -1.5707963267948966 rad pos: 1.5,-80.5 parent: 2 type: Transform - - uid: 4085 + - uid: 17195 components: - rot: -1.5707963267948966 rad pos: 1.5,-81.5 parent: 2 type: Transform - - uid: 4086 + - uid: 17196 components: - rot: -1.5707963267948966 rad pos: 1.5,-82.5 parent: 2 type: Transform - - uid: 4087 + - uid: 17197 components: - rot: -1.5707963267948966 rad pos: 1.5,-83.5 parent: 2 type: Transform - - uid: 4088 + - uid: 17198 components: - pos: -27.5,-68.5 parent: 2 type: Transform - - uid: 4089 + - uid: 17199 components: - rot: -1.5707963267948966 rad pos: -3.5,-84.5 parent: 2 type: Transform - - uid: 4090 + - uid: 17200 components: - rot: -1.5707963267948966 rad pos: -10.5,-85.5 parent: 2 type: Transform - - uid: 4091 + - uid: 17201 components: - rot: -1.5707963267948966 rad pos: -10.5,-86.5 parent: 2 type: Transform - - uid: 4092 + - uid: 17202 components: - pos: -33.5,-68.5 parent: 2 type: Transform - - uid: 4095 + - uid: 17203 components: - pos: -32.5,-68.5 parent: 2 type: Transform - - uid: 4096 + - uid: 17204 components: - pos: -26.5,-68.5 parent: 2 type: Transform - - uid: 4097 + - uid: 17205 components: - pos: -25.5,-68.5 parent: 2 type: Transform - - uid: 4098 + - uid: 17206 components: - pos: -24.5,-68.5 parent: 2 type: Transform - - uid: 4099 + - uid: 17207 components: - pos: -23.5,-68.5 parent: 2 type: Transform - - uid: 4100 + - uid: 17208 components: - pos: -22.5,-68.5 parent: 2 type: Transform - - uid: 4101 + - uid: 17209 components: - pos: -21.5,-68.5 parent: 2 type: Transform - - uid: 4103 + - uid: 17210 components: - pos: -8.5,-67.5 parent: 2 type: Transform - - uid: 4104 + - uid: 17211 components: - pos: -9.5,-67.5 parent: 2 type: Transform - - uid: 4105 + - uid: 17212 components: - pos: -7.5,-67.5 parent: 2 type: Transform - - uid: 4106 + - uid: 17213 components: - pos: -6.5,-67.5 parent: 2 type: Transform - - uid: 4107 + - uid: 17214 components: - pos: -5.5,-67.5 parent: 2 type: Transform - - uid: 4108 + - uid: 17215 components: - pos: -4.5,-67.5 parent: 2 type: Transform - - uid: 4109 + - uid: 17216 components: - pos: -3.5,-68.5 parent: 2 type: Transform - - uid: 4114 + - uid: 17217 components: - rot: 3.141592653589793 rad pos: -0.5,-84.5 parent: 2 type: Transform - - uid: 4115 + - uid: 17218 components: - pos: -2.5,-68.5 parent: 2 type: Transform - - uid: 4116 + - uid: 17219 components: - pos: -1.5,-68.5 parent: 2 type: Transform - - uid: 4117 + - uid: 17220 components: - pos: -0.5,-68.5 parent: 2 type: Transform - - uid: 4118 + - uid: 17221 components: - pos: 0.5,-68.5 parent: 2 type: Transform - - uid: 4119 + - uid: 17222 components: - rot: 3.141592653589793 rad pos: -21.5,-84.5 parent: 2 type: Transform - - uid: 4120 + - uid: 17223 components: - rot: 3.141592653589793 rad pos: -1.5,-84.5 parent: 2 type: Transform - - uid: 4121 + - uid: 17224 components: - rot: 3.141592653589793 rad pos: -2.5,-84.5 parent: 2 type: Transform - - uid: 4122 + - uid: 17225 components: - rot: 3.141592653589793 rad pos: -3.5,-84.5 parent: 2 type: Transform - - uid: 4123 + - uid: 17226 components: - rot: 3.141592653589793 rad pos: -4.5,-85.5 parent: 2 type: Transform - - uid: 4124 + - uid: 17227 components: - rot: 3.141592653589793 rad pos: -5.5,-85.5 parent: 2 type: Transform - - uid: 4125 + - uid: 17228 components: - rot: 3.141592653589793 rad pos: -6.5,-85.5 parent: 2 type: Transform - - uid: 4126 + - uid: 17229 components: - rot: 3.141592653589793 rad pos: -7.5,-85.5 parent: 2 type: Transform - - uid: 4127 + - uid: 17230 components: - rot: 3.141592653589793 rad pos: -8.5,-85.5 parent: 2 type: Transform - - uid: 4128 + - uid: 17231 components: - rot: 3.141592653589793 rad pos: -9.5,-85.5 parent: 2 type: Transform - - uid: 4129 + - uid: 17232 components: - rot: 3.141592653589793 rad pos: -10.5,-85.5 parent: 2 type: Transform - - uid: 4130 + - uid: 17233 components: - pos: -1.5,-67.5 parent: 2 type: Transform - - uid: 4131 + - uid: 17234 components: - pos: -0.5,-67.5 parent: 2 type: Transform - - uid: 4132 + - uid: 17235 components: - pos: 0.5,-67.5 parent: 2 type: Transform - - uid: 4133 + - uid: 17236 components: - pos: 1.5,-67.5 parent: 2 type: Transform - - uid: 4134 + - uid: 17237 components: - rot: -1.5707963267948966 rad pos: 2.5,-70.5 parent: 2 type: Transform - - uid: 4135 + - uid: 17238 components: - rot: -1.5707963267948966 rad pos: 2.5,-71.5 parent: 2 type: Transform - - uid: 4136 + - uid: 17239 components: - rot: -1.5707963267948966 rad pos: 2.5,-72.5 parent: 2 type: Transform - - uid: 4137 + - uid: 17240 components: - rot: -1.5707963267948966 rad pos: 2.5,-73.5 parent: 2 type: Transform - - uid: 4138 + - uid: 17241 components: - rot: 3.141592653589793 rad pos: 2.5,-79.5 parent: 2 type: Transform - - uid: 4140 + - uid: 17242 components: - rot: 3.141592653589793 rad pos: -22.5,-84.5 parent: 2 type: Transform - - uid: 4141 + - uid: 17243 components: - rot: 3.141592653589793 rad pos: -23.5,-84.5 parent: 2 type: Transform - - uid: 4142 + - uid: 17244 components: - rot: 3.141592653589793 rad pos: -24.5,-84.5 parent: 2 type: Transform - - uid: 4143 + - uid: 17245 components: - rot: 3.141592653589793 rad pos: -25.5,-84.5 parent: 2 type: Transform - - uid: 4144 + - uid: 17246 components: - rot: 3.141592653589793 rad pos: -26.5,-84.5 parent: 2 type: Transform - - uid: 4145 + - uid: 17247 components: - rot: 3.141592653589793 rad pos: -27.5,-84.5 parent: 2 type: Transform - - uid: 4146 + - uid: 17248 components: - rot: 3.141592653589793 rad pos: -28.5,-84.5 parent: 2 type: Transform - - uid: 4147 + - uid: 17249 components: - rot: 3.141592653589793 rad pos: -29.5,-84.5 parent: 2 type: Transform - - uid: 4148 + - uid: 17250 components: - rot: 3.141592653589793 rad pos: -30.5,-84.5 parent: 2 type: Transform - - uid: 4149 + - uid: 17251 components: - rot: 3.141592653589793 rad pos: -31.5,-84.5 parent: 2 type: Transform - - uid: 4150 + - uid: 17252 components: - rot: 3.141592653589793 rad pos: -32.5,-84.5 parent: 2 type: Transform - - uid: 4151 + - uid: 17253 components: - rot: 3.141592653589793 rad pos: -33.5,-84.5 parent: 2 type: Transform - - uid: 4152 + - uid: 17254 components: - rot: 3.141592653589793 rad pos: -34.5,-84.5 parent: 2 type: Transform - - uid: 4156 + - uid: 17255 components: - rot: -1.5707963267948966 rad pos: -3.5,-68.5 parent: 2 type: Transform - - uid: 4204 + - uid: 17256 components: - pos: 2.5,-73.5 parent: 2 type: Transform - - uid: 4334 + - uid: 17257 components: - pos: 27.5,15.5 parent: 2 type: Transform - - uid: 4340 + - uid: 17258 components: - pos: 28.5,15.5 parent: 2 type: Transform - - uid: 4342 + - uid: 17259 components: - pos: 28.5,13.5 parent: 2 type: Transform - - uid: 4356 + - uid: 17260 components: - pos: 27.5,13.5 parent: 2 type: Transform - - uid: 4375 + - uid: 17261 components: - rot: -1.5707963267948966 rad pos: 27.5,15.5 parent: 2 type: Transform - - uid: 4550 + - uid: 17262 components: - rot: -1.5707963267948966 rad pos: 24.5,24.5 parent: 2 type: Transform - - uid: 4552 + - uid: 17263 components: - rot: -1.5707963267948966 rad pos: 24.5,26.5 parent: 2 type: Transform - - uid: 4589 + - uid: 17264 components: - pos: 3.5,-73.5 parent: 2 type: Transform - - uid: 5033 + - uid: 17265 components: - rot: -1.5707963267948966 rad pos: 33.5,13.5 parent: 2 type: Transform - - uid: 5037 + - uid: 17266 components: - rot: 1.5707963267948966 rad pos: 35.5,13.5 parent: 2 type: Transform - - uid: 5583 + - uid: 17267 components: - rot: 1.5707963267948966 rad pos: -13.5,45.5 parent: 2 type: Transform - - uid: 5584 + - uid: 17268 components: - pos: -10.5,46.5 parent: 2 type: Transform - - uid: 5586 + - uid: 17269 components: - pos: -9.5,46.5 parent: 2 type: Transform - - uid: 5590 + - uid: 17270 components: - pos: -8.5,46.5 parent: 2 type: Transform - - uid: 5599 + - uid: 17271 components: - pos: -11.5,46.5 parent: 2 type: Transform - - uid: 5607 + - uid: 17272 components: - rot: -1.5707963267948966 rad pos: -6.5,45.5 parent: 2 type: Transform - - uid: 5647 + - uid: 17273 components: - pos: -27.5,40.5 parent: 2 type: Transform - - uid: 5678 + - uid: 17274 components: - pos: -26.5,40.5 parent: 2 type: Transform - - uid: 5679 + - uid: 17275 components: - pos: -25.5,40.5 parent: 2 type: Transform - - uid: 5680 + - uid: 17276 components: - pos: -24.5,40.5 parent: 2 type: Transform - - uid: 5682 + - uid: 17277 components: - pos: -22.5,40.5 parent: 2 type: Transform - - uid: 5683 + - uid: 17278 components: - pos: -21.5,40.5 parent: 2 type: Transform - - uid: 5684 + - uid: 17279 components: - pos: -20.5,40.5 parent: 2 type: Transform - - uid: 5685 + - uid: 17280 components: - pos: -19.5,40.5 parent: 2 type: Transform - - uid: 5714 + - uid: 17281 components: - pos: -21.5,46.5 parent: 2 type: Transform - - uid: 5715 + - uid: 17282 components: - pos: -22.5,46.5 parent: 2 type: Transform - - uid: 5716 + - uid: 17283 components: - pos: -23.5,46.5 parent: 2 type: Transform - - uid: 5717 + - uid: 17284 components: - pos: -24.5,46.5 parent: 2 type: Transform - - uid: 5718 + - uid: 17285 components: - pos: -25.5,46.5 parent: 2 type: Transform - - uid: 5719 + - uid: 17286 components: - rot: 1.5707963267948966 rad pos: -27.5,45.5 parent: 2 type: Transform - - uid: 5720 + - uid: 17287 components: - rot: -1.5707963267948966 rad pos: -19.5,45.5 parent: 2 type: Transform - - uid: 5721 + - uid: 17288 components: - pos: -27.5,45.5 parent: 2 type: Transform - - uid: 5722 + - uid: 17289 components: - pos: -19.5,45.5 parent: 2 type: Transform - - uid: 5723 + - uid: 17290 components: - pos: -28.5,44.5 parent: 2 type: Transform - - uid: 5724 + - uid: 17291 components: - pos: -18.5,44.5 parent: 2 type: Transform - - uid: 5725 + - uid: 17292 components: - pos: -26.5,46.5 parent: 2 type: Transform - - uid: 5726 + - uid: 17293 components: - pos: -20.5,46.5 parent: 2 type: Transform - - uid: 6806 + - uid: 17294 components: - rot: 3.141592653589793 rad pos: -14.5,-28.5 parent: 2 type: Transform - - uid: 6808 + - uid: 17295 components: - rot: 3.141592653589793 rad pos: -13.5,-28.5 parent: 2 type: Transform - - uid: 6809 + - uid: 17296 components: - rot: 1.5707963267948966 rad pos: -13.5,-28.5 parent: 2 type: Transform - - uid: 6853 + - uid: 17297 components: - rot: -1.5707963267948966 rad pos: -47.5,11.5 parent: 2 type: Transform - - uid: 6854 + - uid: 17298 components: - rot: -1.5707963267948966 rad pos: -47.5,12.5 parent: 2 type: Transform - - uid: 6856 + - uid: 17299 components: - rot: -1.5707963267948966 rad pos: -47.5,14.5 parent: 2 type: Transform - - uid: 6857 + - uid: 17300 components: - rot: -1.5707963267948966 rad pos: -47.5,15.5 parent: 2 type: Transform - - uid: 6858 + - uid: 17301 components: - rot: 1.5707963267948966 rad pos: -48.5,15.5 parent: 2 type: Transform - - uid: 6859 + - uid: 17302 components: - rot: 1.5707963267948966 rad pos: -48.5,14.5 parent: 2 type: Transform - - uid: 6861 + - uid: 17303 components: - rot: 1.5707963267948966 rad pos: -48.5,12.5 parent: 2 type: Transform - - uid: 6862 + - uid: 17304 components: - rot: 1.5707963267948966 rad pos: -48.5,11.5 parent: 2 type: Transform - - uid: 6863 + - uid: 17305 components: - rot: 1.5707963267948966 rad pos: -48.5,17.5 parent: 2 type: Transform - - uid: 6864 + - uid: 17306 components: - rot: 1.5707963267948966 rad pos: -48.5,18.5 parent: 2 type: Transform - - uid: 6866 + - uid: 17307 components: - rot: 1.5707963267948966 rad pos: -48.5,20.5 parent: 2 type: Transform - - uid: 6867 + - uid: 17308 components: - rot: 1.5707963267948966 rad pos: -48.5,21.5 parent: 2 type: Transform - - uid: 6868 + - uid: 17309 components: - rot: -1.5707963267948966 rad pos: -47.5,21.5 parent: 2 type: Transform - - uid: 6869 + - uid: 17310 components: - rot: -1.5707963267948966 rad pos: -47.5,20.5 parent: 2 type: Transform - - uid: 6871 + - uid: 17311 components: - rot: -1.5707963267948966 rad pos: -47.5,18.5 parent: 2 type: Transform - - uid: 6872 + - uid: 17312 components: - rot: -1.5707963267948966 rad pos: -47.5,17.5 parent: 2 type: Transform - - uid: 7866 + - uid: 17313 components: - rot: -1.5707963267948966 rad pos: 2.5,-80.5 parent: 2 type: Transform - - uid: 8906 + - uid: 17314 components: - rot: -1.5707963267948966 rad pos: 4.5,-74.5 parent: 2 type: Transform - - uid: 9276 + - uid: 17315 components: - rot: -1.5707963267948966 rad pos: 4.5,-75.5 parent: 2 type: Transform - - uid: 9376 + - uid: 17316 components: - rot: -1.5707963267948966 rad pos: 4.5,-76.5 parent: 2 type: Transform - - uid: 10314 + - uid: 17317 components: - rot: -1.5707963267948966 rad pos: 4.5,-77.5 parent: 2 type: Transform - - uid: 10315 + - uid: 17318 components: - rot: -1.5707963267948966 rad pos: 4.5,-78.5 parent: 2 type: Transform - - uid: 10316 + - uid: 17319 components: - rot: 3.141592653589793 rad pos: 3.5,-79.5 parent: 2 type: Transform - - uid: 10317 + - uid: 17320 components: - rot: 1.5707963267948966 rad pos: -36.5,-84.5 parent: 2 type: Transform - - uid: 10318 + - uid: 17321 components: - rot: -1.5707963267948966 rad pos: 2.5,-79.5 parent: 2 type: Transform - - uid: 10319 + - uid: 17322 components: - rot: -1.5707963267948966 rad pos: 2.5,-81.5 parent: 2 type: Transform - - uid: 10320 + - uid: 17323 components: - rot: -1.5707963267948966 rad pos: 2.5,-82.5 parent: 2 type: Transform - - uid: 10425 + - uid: 17324 components: - rot: -1.5707963267948966 rad pos: 2.5,-83.5 parent: 2 type: Transform - - uid: 10426 + - uid: 17325 components: - rot: -1.5707963267948966 rad pos: 2.5,-84.5 parent: 2 type: Transform - - uid: 10427 + - uid: 17326 components: - rot: 3.141592653589793 rad pos: 0.5,-85.5 parent: 2 type: Transform - - uid: 10428 + - uid: 17327 components: - rot: 3.141592653589793 rad pos: -0.5,-85.5 parent: 2 type: Transform - - uid: 11390 + - uid: 17328 components: - rot: 3.141592653589793 rad pos: -1.5,-85.5 parent: 2 type: Transform - - uid: 11436 + - uid: 17329 components: - rot: 3.141592653589793 rad pos: -2.5,-85.5 parent: 2 type: Transform - - uid: 12302 + - uid: 17330 components: - pos: -9.5,37.5 parent: 2 type: Transform - - uid: 13055 + - uid: 17331 components: - rot: 3.141592653589793 rad pos: -3.5,-86.5 parent: 2 type: Transform - - uid: 13056 + - uid: 17332 components: - rot: -1.5707963267948966 rad pos: -9.5,-86.5 parent: 2 type: Transform - - uid: 13148 + - uid: 17333 components: - rot: 3.141592653589793 rad pos: -4.5,-86.5 parent: 2 type: Transform - - uid: 13149 + - uid: 17334 components: - rot: 3.141592653589793 rad pos: -5.5,-86.5 parent: 2 type: Transform - - uid: 13585 + - uid: 17335 components: - rot: 3.141592653589793 rad pos: -6.5,-86.5 parent: 2 type: Transform - - uid: 13936 + - uid: 17336 components: - rot: -1.5707963267948966 rad pos: 13.5,-4.5 parent: 2 type: Transform - - uid: 13937 + - uid: 17337 components: - rot: -1.5707963267948966 rad pos: 13.5,-3.5 parent: 2 type: Transform - - uid: 13938 + - uid: 17338 components: - rot: 1.5707963267948966 rad pos: 12.5,-3.5 parent: 2 type: Transform - - uid: 13940 + - uid: 17339 components: - rot: 1.5707963267948966 rad pos: 12.5,-4.5 parent: 2 type: Transform - - uid: 15119 + - uid: 17340 components: - rot: 3.141592653589793 rad pos: -7.5,-86.5 parent: 2 type: Transform - - uid: 15120 + - uid: 17341 components: - rot: 3.141592653589793 rad pos: -8.5,-86.5 parent: 2 type: Transform - - uid: 15312 + - uid: 17342 components: - pos: -8.5,37.5 parent: 2 type: Transform - - uid: 15313 + - uid: 17343 components: - rot: 3.141592653589793 rad pos: -9.5,-86.5 parent: 2 type: Transform - - uid: 15338 + - uid: 17344 components: - pos: -10.5,37.5 parent: 2 type: Transform - - uid: 15639 + - uid: 17345 components: - rot: -1.5707963267948966 rad pos: -9.5,-87.5 parent: 2 type: Transform - - uid: 15640 + - uid: 17346 components: - rot: 3.141592653589793 rad pos: -13.5,-88.5 parent: 2 type: Transform - - uid: 15642 + - uid: 17347 components: - rot: 3.141592653589793 rad pos: -10.5,-88.5 parent: 2 type: Transform - - uid: 15645 + - uid: 17348 components: - rot: 3.141592653589793 rad pos: -11.5,-88.5 parent: 2 type: Transform - - uid: 15646 + - uid: 17349 components: - rot: 3.141592653589793 rad pos: -12.5,-88.5 parent: 2 type: Transform - - uid: 15787 + - uid: 17350 components: - rot: 3.141592653589793 rad pos: -14.5,-88.5 parent: 2 type: Transform - - uid: 15928 + - uid: 17351 components: - rot: 3.141592653589793 rad pos: -15.5,-88.5 parent: 2 type: Transform - - uid: 15972 + - uid: 17352 components: - rot: 3.141592653589793 rad pos: -16.5,-88.5 parent: 2 type: Transform - - uid: 16040 + - uid: 17353 components: - rot: 3.141592653589793 rad pos: -17.5,-88.5 parent: 2 type: Transform - - uid: 16041 + - uid: 17354 components: - rot: 3.141592653589793 rad pos: -18.5,-88.5 parent: 2 type: Transform - - uid: 16110 + - uid: 17355 components: - pos: -11.5,37.5 parent: 2 type: Transform - - uid: 16117 + - uid: 17356 components: - rot: 3.141592653589793 rad pos: -19.5,-88.5 parent: 2 type: Transform - - uid: 16214 + - uid: 17357 components: - rot: 3.141592653589793 rad pos: 25.5,7.5 parent: 2 type: Transform - - uid: 16368 + - uid: 17358 components: - rot: 3.141592653589793 rad pos: -20.5,-88.5 parent: 2 type: Transform - - uid: 16369 + - uid: 17359 components: - rot: 1.5707963267948966 rad pos: -22.5,-85.5 parent: 2 type: Transform - - uid: 16370 + - uid: 17360 components: - rot: 3.141592653589793 rad pos: -22.5,-85.5 parent: 2 type: Transform - - uid: 16371 + - uid: 17361 components: - rot: 3.141592653589793 rad pos: -23.5,-85.5 parent: 2 type: Transform - - uid: 16403 + - uid: 17362 components: - rot: 3.141592653589793 rad pos: -24.5,-85.5 parent: 2 type: Transform - - uid: 16404 + - uid: 17363 components: - rot: 3.141592653589793 rad pos: -25.5,-85.5 parent: 2 type: Transform - - uid: 16405 + - uid: 17364 components: - rot: 3.141592653589793 rad pos: -26.5,-85.5 parent: 2 type: Transform - - uid: 16406 + - uid: 17365 components: - rot: 3.141592653589793 rad pos: -27.5,-85.5 parent: 2 type: Transform - - uid: 16407 + - uid: 17366 components: - rot: 3.141592653589793 rad pos: -28.5,-85.5 parent: 2 type: Transform - - uid: 16408 + - uid: 17367 components: - rot: 3.141592653589793 rad pos: -29.5,-85.5 parent: 2 type: Transform - - uid: 16409 + - uid: 17368 components: - rot: 3.141592653589793 rad pos: -30.5,-85.5 parent: 2 type: Transform - - uid: 16410 + - uid: 17369 components: - rot: 3.141592653589793 rad pos: -31.5,-85.5 parent: 2 type: Transform - - uid: 16411 + - uid: 17370 components: - rot: 3.141592653589793 rad pos: -32.5,-85.5 parent: 2 type: Transform - - uid: 16412 + - uid: 17371 components: - rot: 3.141592653589793 rad pos: -33.5,-85.5 parent: 2 type: Transform - - uid: 16413 + - uid: 17372 components: - rot: 3.141592653589793 rad pos: -34.5,-85.5 parent: 2 type: Transform - - uid: 16414 + - uid: 17373 components: - rot: 3.141592653589793 rad pos: -35.5,-85.5 parent: 2 type: Transform - - uid: 16415 + - uid: 17374 components: - rot: 1.5707963267948966 rad pos: -36.5,-83.5 parent: 2 type: Transform - - uid: 16416 + - uid: 17375 components: - rot: 1.5707963267948966 rad pos: -36.5,-82.5 parent: 2 type: Transform - - uid: 16417 + - uid: 17376 components: - rot: 1.5707963267948966 rad pos: -36.5,-81.5 parent: 2 type: Transform - - uid: 16418 + - uid: 17377 components: - rot: 1.5707963267948966 rad pos: -36.5,-80.5 parent: 2 type: Transform - - uid: 16419 + - uid: 17378 components: - rot: 1.5707963267948966 rad pos: -36.5,-79.5 parent: 2 type: Transform - - uid: 16420 + - uid: 17379 components: - rot: 3.141592653589793 rad pos: -36.5,-79.5 parent: 2 type: Transform - - uid: 16421 + - uid: 17380 components: - rot: 3.141592653589793 rad pos: -37.5,-79.5 parent: 2 type: Transform - - uid: 16422 + - uid: 17381 components: - rot: 1.5707963267948966 rad pos: -38.5,-78.5 parent: 2 type: Transform - - uid: 16423 + - uid: 17382 components: - rot: 1.5707963267948966 rad pos: -38.5,-77.5 parent: 2 type: Transform - - uid: 16424 + - uid: 17383 components: - rot: 1.5707963267948966 rad pos: -38.5,-76.5 parent: 2 type: Transform - - uid: 16425 + - uid: 17384 components: - rot: 1.5707963267948966 rad pos: -38.5,-75.5 parent: 2 type: Transform - - uid: 16426 + - uid: 17385 components: - rot: 1.5707963267948966 rad pos: -38.5,-74.5 parent: 2 type: Transform - - uid: 16427 + - uid: 17386 components: - pos: -37.5,-73.5 parent: 2 type: Transform - - uid: 16428 + - uid: 17387 components: - pos: -36.5,-73.5 parent: 2 type: Transform - - uid: 16429 + - uid: 17388 components: - rot: 1.5707963267948966 rad pos: -36.5,-73.5 parent: 2 type: Transform - - uid: 16430 + - uid: 17389 components: - rot: 1.5707963267948966 rad pos: -36.5,-71.5 parent: 2 type: Transform - - uid: 16431 + - uid: 17390 components: - rot: 1.5707963267948966 rad pos: -36.5,-70.5 parent: 2 type: Transform - - uid: 16432 + - uid: 17391 components: - rot: 1.5707963267948966 rad pos: -36.5,-69.5 parent: 2 type: Transform - - uid: 16433 + - uid: 17392 components: - rot: 1.5707963267948966 rad pos: -36.5,-68.5 parent: 2 type: Transform - - uid: 16434 + - uid: 17393 components: - pos: -35.5,-67.5 parent: 2 type: Transform - - uid: 16435 + - uid: 17394 components: - pos: -34.5,-67.5 parent: 2 type: Transform - - uid: 16436 + - uid: 17395 components: - pos: -33.5,-67.5 parent: 2 type: Transform - - uid: 16437 + - uid: 17396 components: - pos: -32.5,-67.5 parent: 2 type: Transform - - uid: 16438 + - uid: 17397 components: - pos: -31.5,-67.5 parent: 2 type: Transform - - uid: 16439 + - uid: 17398 components: - pos: -30.5,-67.5 parent: 2 type: Transform - - uid: 16440 + - uid: 17399 components: - pos: -29.5,-67.5 parent: 2 type: Transform - - uid: 16441 + - uid: 17400 components: - pos: -28.5,-67.5 parent: 2 type: Transform - - uid: 16442 + - uid: 17401 components: - pos: -27.5,-67.5 parent: 2 type: Transform - - uid: 16443 + - uid: 17402 components: - pos: -26.5,-67.5 parent: 2 type: Transform - - uid: 16444 + - uid: 17403 components: - pos: -25.5,-67.5 parent: 2 type: Transform - - uid: 16445 + - uid: 17404 components: - pos: -24.5,-67.5 parent: 2 type: Transform - - uid: 16446 + - uid: 17405 components: - pos: -23.5,-67.5 parent: 2 type: Transform - - uid: 16447 + - uid: 17406 components: - pos: -22.5,-67.5 parent: 2 type: Transform - - uid: 16448 + - uid: 17407 components: - rot: 1.5707963267948966 rad pos: -22.5,-67.5 parent: 2 type: Transform - - uid: 16449 + - uid: 17408 components: - rot: 1.5707963267948966 rad pos: -22.5,-66.5 parent: 2 type: Transform - - uid: 16450 + - uid: 17409 components: - pos: -21.5,-65.5 parent: 2 type: Transform - - uid: 16451 + - uid: 17410 components: - pos: -20.5,-65.5 parent: 2 type: Transform - - uid: 16452 + - uid: 17411 components: - pos: -19.5,-65.5 parent: 2 type: Transform - - uid: 16453 + - uid: 17412 components: - pos: -18.5,-65.5 parent: 2 type: Transform - - uid: 16659 + - uid: 17413 components: - rot: 1.5707963267948966 rad pos: -17.5,-86.5 parent: 2 type: Transform - - uid: 16660 + - uid: 17414 components: - rot: 1.5707963267948966 rad pos: -17.5,-85.5 parent: 2 type: Transform - - uid: 16661 + - uid: 17415 components: - rot: -1.5707963267948966 rad pos: -15.5,-85.5 parent: 2 type: Transform - - uid: 16662 + - uid: 17416 components: - rot: -1.5707963267948966 rad pos: -15.5,-86.5 @@ -109407,41 +110991,41 @@ entities: type: Transform - proto: Wirecutter entities: - - uid: 16316 + - uid: 17417 components: - pos: -47.23643,-18.134506 parent: 2 type: Transform - proto: WoodDoor entities: - - uid: 14354 + - uid: 17418 components: - pos: -46.5,24.5 parent: 2 type: Transform - proto: Wrench entities: - - uid: 4432 + - uid: 17419 components: - pos: 19.52687,21.19062 parent: 2 type: Transform - - uid: 13188 + - uid: 17420 components: - pos: -21.54481,13.343189 parent: 2 type: Transform - - uid: 16563 + - uid: 17421 components: - pos: -40.489174,40.55304 parent: 2 type: Transform - - uid: 16728 + - uid: 17422 components: - pos: -11.125876,-24.417439 parent: 2 type: Transform - - uid: 16817 + - uid: 17423 components: - pos: 4.4012365,-10.410826 parent: 2 diff --git a/Resources/Maps/pebble.yml b/Resources/Maps/pebble.yml index 41a2532d05..08c0207603 100644 --- a/Resources/Maps/pebble.yml +++ b/Resources/Maps/pebble.yml @@ -9,52 +9,52 @@ tilemap: 13: FloorBasalt 15: FloorBlueCircuit 17: FloorBrokenWood - 22: FloorClown - 26: FloorDark - 27: FloorDarkDiagonal - 28: FloorDarkDiagonalMini - 31: FloorDarkMono - 32: FloorDarkOffset - 35: FloorDarkPlastic - 37: FloorDirt - 38: FloorEighties - 41: FloorFreezer - 42: FloorGlass - 51: FloorGreenCircuit - 52: FloorGym - 54: FloorHullReinforced - 55: FloorHydro - 57: FloorKitchen - 59: FloorLino - 61: FloorMetalDiamond - 62: FloorMime - 63: FloorMono - 68: FloorPlanetGrass - 69: FloorPlastic - 70: FloorRGlass - 71: FloorReinforced - 73: FloorRockVault - 74: FloorShowroom - 83: FloorSteel - 86: FloorSteelDiagonal - 88: FloorSteelDirty - 89: FloorSteelHerringbone - 91: FloorSteelMono - 92: FloorSteelOffset - 93: FloorSteelPavement - 95: FloorTechMaint - 96: FloorTechMaint2 - 97: FloorTechMaint3 - 99: FloorWhite - 100: FloorWhiteDiagonal - 101: FloorWhiteDiagonalMini - 103: FloorWhiteMini - 104: FloorWhiteMono - 105: FloorWhiteOffset - 109: FloorWood - 110: FloorWoodTile - 111: Lattice - 112: Plating + 23: FloorClown + 27: FloorDark + 28: FloorDarkDiagonal + 29: FloorDarkDiagonalMini + 32: FloorDarkMono + 33: FloorDarkOffset + 36: FloorDarkPlastic + 38: FloorDirt + 39: FloorEighties + 42: FloorFreezer + 43: FloorGlass + 52: FloorGreenCircuit + 53: FloorGym + 55: FloorHullReinforced + 56: FloorHydro + 58: FloorKitchen + 60: FloorLino + 62: FloorMetalDiamond + 63: FloorMime + 64: FloorMono + 69: FloorPlanetGrass + 70: FloorPlastic + 71: FloorRGlass + 72: FloorReinforced + 74: FloorRockVault + 75: FloorShowroom + 84: FloorSteel + 87: FloorSteelDiagonal + 89: FloorSteelDirty + 90: FloorSteelHerringbone + 92: FloorSteelMono + 93: FloorSteelOffset + 94: FloorSteelPavement + 96: FloorTechMaint + 97: FloorTechMaint2 + 98: FloorTechMaint3 + 100: FloorWhite + 101: FloorWhiteDiagonal + 102: FloorWhiteDiagonalMini + 104: FloorWhiteMini + 105: FloorWhiteMono + 106: FloorWhiteOffset + 110: FloorWood + 111: FloorWoodTile + 112: Lattice + 113: Plating entities: - proto: "" entities: @@ -68,6 +68,8 @@ entities: - type: OccluderTree - type: LoadedMap - type: GridTree + - parallax: PebbleStation + type: Parallax - type: MovedGrids - uid: 2 components: @@ -79,159 +81,159 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: UwAAAAABUwAAAAABcAAAAAAAVgAAAAACVgAAAAABYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAVgAAAAAAVgAAAAADcAAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAYAAAAAAAUwAAAAABUwAAAAAARwAAAAAAVgAAAAAAVgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPgAAAAAAUwAAAAAAUwAAAAADWwAAAAADVgAAAAACVgAAAAABcAAAAAAAbQAAAAACbQAAAAACbQAAAAACbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAJgAAAAAAJgAAAAAAPgAAAAAAUwAAAAADUwAAAAABWwAAAAACVgAAAAADVgAAAAADcAAAAAAAbQAAAAAAbQAAAAADbQAAAAAAbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAJgAAAAAAJgAAAAAAPgAAAAAAUwAAAAADUwAAAAACRwAAAAAAVgAAAAADVgAAAAAAcAAAAAAAbQAAAAACbQAAAAADcAAAAAAAbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVgAAAAABVgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAADbQAAAAABcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAIAAAAAAAIAAAAAAAcAAAAAAAWwAAAAAAWwAAAAABcAAAAAAAbQAAAAABbQAAAAACbQAAAAAAbQAAAAACbQAAAAABbQAAAAABcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAIAAAAAAAIAAAAAAAGgAAAAADVgAAAAAAVgAAAAADcAAAAAAAbQAAAAABbQAAAAACbQAAAAAAbQAAAAADbQAAAAAAbQAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAIAAAAAAAIAAAAAAAcAAAAAAAVgAAAAACVgAAAAABcAAAAAAAXwAAAAAAcAAAAAAAWwAAAAACWwAAAAABWwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVgAAAAAAVgAAAAADcAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAUwAAAAACWwAAAAAAVgAAAAABVgAAAAAAVgAAAAABWwAAAAAAXAAAAAAAVgAAAAAAVgAAAAABVgAAAAABVgAAAAAAVgAAAAADVgAAAAAAVgAAAAADVgAAAAAAVgAAAAADUwAAAAACWwAAAAADVgAAAAAAVgAAAAAAVgAAAAABWwAAAAAAVgAAAAADVgAAAAACVgAAAAABVgAAAAADVgAAAAADVgAAAAADVgAAAAABVgAAAAABVgAAAAADVgAAAAABUwAAAAADWwAAAAACVgAAAAACVgAAAAACVgAAAAAAWwAAAAAAXAAAAAAAVgAAAAAAVgAAAAABVgAAAAABVgAAAAACVgAAAAACVgAAAAAAVgAAAAAAVgAAAAACVgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAVgAAAAACVgAAAAACcAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAVgAAAAADVgAAAAACcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOQAAAAAAcAAAAAAADAAAAAABDAAAAAABDAAAAAAB + tiles: VAAAAAABVAAAAAABcQAAAAAAVwAAAAACVwAAAAABYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABcQAAAAAAVwAAAAAAVwAAAAADcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYQAAAAAAVAAAAAABVAAAAAAASAAAAAAAVwAAAAAAVwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPwAAAAAAVAAAAAAAVAAAAAADXAAAAAADVwAAAAACVwAAAAABcQAAAAAAbgAAAAACbgAAAAACbgAAAAACbgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAJwAAAAAAJwAAAAAAPwAAAAAAVAAAAAADVAAAAAABXAAAAAACVwAAAAADVwAAAAADcQAAAAAAbgAAAAAAbgAAAAADbgAAAAAAbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAJwAAAAAAJwAAAAAAPwAAAAAAVAAAAAADVAAAAAACSAAAAAAAVwAAAAADVwAAAAAAcQAAAAAAbgAAAAACbgAAAAADcQAAAAAAbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVwAAAAABVwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADbgAAAAADbgAAAAABcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAIQAAAAAAIQAAAAAAcQAAAAAAXAAAAAAAXAAAAAABcQAAAAAAbgAAAAABbgAAAAACbgAAAAAAbgAAAAACbgAAAAABbgAAAAABcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAIQAAAAAAIQAAAAAAGwAAAAADVwAAAAAAVwAAAAADcQAAAAAAbgAAAAABbgAAAAACbgAAAAAAbgAAAAADbgAAAAAAbgAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAIQAAAAAAIQAAAAAAcQAAAAAAVwAAAAACVwAAAAABcQAAAAAAYAAAAAAAcQAAAAAAXAAAAAACXAAAAAABXAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVwAAAAAAVwAAAAADcQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAVAAAAAACXAAAAAAAVwAAAAABVwAAAAAAVwAAAAABXAAAAAAAXQAAAAAAVwAAAAAAVwAAAAABVwAAAAABVwAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAAAVwAAAAADVAAAAAACXAAAAAADVwAAAAAAVwAAAAAAVwAAAAABXAAAAAAAVwAAAAADVwAAAAACVwAAAAABVwAAAAADVwAAAAADVwAAAAADVwAAAAABVwAAAAABVwAAAAADVwAAAAABVAAAAAADXAAAAAACVwAAAAACVwAAAAACVwAAAAAAXAAAAAAAXQAAAAAAVwAAAAAAVwAAAAABVwAAAAABVwAAAAACVwAAAAACVwAAAAAAVwAAAAAAVwAAAAACVwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAVwAAAAACVwAAAAACcQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAVwAAAAADVwAAAAACcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOgAAAAAAcQAAAAAADAAAAAABDAAAAAABDAAAAAAB version: 6 0,-1: ind: 0,-1 - tiles: cAAAAAAAcAAAAAAAYAAAAAAAVgAAAAAAVgAAAAADVgAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVgAAAAAAVgAAAAABVgAAAAABcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAUwAAAAADUwAAAAADcAAAAAAAGgAAAAADGgAAAAACGgAAAAABFgAAAAAAFgAAAAAAcAAAAAAAVgAAAAABVgAAAAABVgAAAAADcAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAAAGgAAAAACGgAAAAADGgAAAAAAPgAAAAAAFgAAAAAAXwAAAAAAVgAAAAACVgAAAAABVgAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPgAAAAAAFgAAAAAAcAAAAAAAVgAAAAADVgAAAAABVgAAAAACUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAADYAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVgAAAAACVgAAAAACVgAAAAADcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAVgAAAAACVgAAAAAAVgAAAAADcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAPQAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAVgAAAAABVgAAAAACVgAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAWwAAAAABWwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAVgAAAAAAVgAAAAABbQAAAAABbQAAAAAAbQAAAAACbQAAAAAAbQAAAAACcAAAAAAAbgAAAAACbgAAAAAAcAAAAAAASgAAAAAAcAAAAAAAXAAAAAAAXAAAAAAAcAAAAAAAVgAAAAAAVgAAAAABcAAAAAAAbQAAAAABbQAAAAABbQAAAAACbQAAAAAAbgAAAAABbgAAAAADbgAAAAADSgAAAAAASgAAAAAAcAAAAAAAVgAAAAAAXAAAAAAAWwAAAAABVgAAAAAAVgAAAAADWwAAAAAAbQAAAAAAbQAAAAABbQAAAAADbQAAAAACcAAAAAAAbgAAAAACbgAAAAAAcAAAAAAASgAAAAAAcAAAAAAAVgAAAAACVgAAAAAAWwAAAAAAVgAAAAACVgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVgAAAAAAXAAAAAAAWwAAAAACVgAAAAABVgAAAAACcAAAAAAAGgAAAAAAGgAAAAAARwAAAAAARwAAAAAAWwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAXAAAAAAAXAAAAAAAcAAAAAAAVgAAAAAAVgAAAAABcAAAAAAAGgAAAAAAGgAAAAAARwAAAAAARwAAAAAAWwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVgAAAAACVgAAAAADWwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAWwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAA + tiles: cQAAAAAAcQAAAAAAYQAAAAAAVwAAAAAAVwAAAAADVwAAAAACVAAAAAABVAAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVwAAAAAAVwAAAAABVwAAAAABcQAAAAAAVAAAAAADVAAAAAABcQAAAAAAVAAAAAADVAAAAAADcQAAAAAAGwAAAAADGwAAAAACGwAAAAABFwAAAAAAFwAAAAAAcQAAAAAAVwAAAAABVwAAAAABVwAAAAADcQAAAAAAVAAAAAABVAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAAAGwAAAAACGwAAAAADGwAAAAAAPwAAAAAAFwAAAAAAYAAAAAAAVwAAAAACVwAAAAABVwAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAABVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPwAAAAAAFwAAAAAAcQAAAAAAVwAAAAADVwAAAAABVwAAAAACVAAAAAADVAAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAADYQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVwAAAAACVwAAAAACVwAAAAADcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAVwAAAAACVwAAAAAAVwAAAAADcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAPgAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAVwAAAAABVwAAAAACVwAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAXAAAAAABXAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAVwAAAAAAVwAAAAABbgAAAAABbgAAAAAAbgAAAAACbgAAAAAAbgAAAAACcQAAAAAAbwAAAAACbwAAAAAAcQAAAAAASwAAAAAAcQAAAAAAXQAAAAAAXQAAAAAAcQAAAAAAVwAAAAAAVwAAAAABcQAAAAAAbgAAAAABbgAAAAABbgAAAAACbgAAAAAAbwAAAAABbwAAAAADbwAAAAADSwAAAAAASwAAAAAAcQAAAAAAVwAAAAAAXQAAAAAAXAAAAAABVwAAAAAAVwAAAAADXAAAAAAAbgAAAAAAbgAAAAABbgAAAAADbgAAAAACcQAAAAAAbwAAAAACbwAAAAAAcQAAAAAASwAAAAAAcQAAAAAAVwAAAAACVwAAAAAAXAAAAAAAVwAAAAACVwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVwAAAAAAXQAAAAAAXAAAAAACVwAAAAABVwAAAAACcQAAAAAAGwAAAAAAGwAAAAAASAAAAAAASAAAAAAAXAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAXQAAAAAAXQAAAAAAcQAAAAAAVwAAAAAAVwAAAAABcQAAAAAAGwAAAAAAGwAAAAAASAAAAAAASAAAAAAAXAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVwAAAAACVwAAAAADXAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAXAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAVgAAAAACVgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAACWwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVgAAAAABVgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAYwAAAAADYwAAAAAAcAAAAAAAVgAAAAADVgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAYwAAAAACYwAAAAACcAAAAAAAVgAAAAAAVgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAYwAAAAAAYwAAAAACcAAAAAAAVgAAAAABVgAAAAABYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAYwAAAAADcAAAAAAAcAAAAAAAVgAAAAABVgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABcAAAAAAAVgAAAAADVgAAAAAAVgAAAAACcAAAAAAAYAAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAADGgAAAAADGgAAAAACGgAAAAABGgAAAAACGgAAAAABYwAAAAACYwAAAAADVgAAAAAAVgAAAAABVgAAAAABGgAAAAACGgAAAAACGgAAAAABGgAAAAADNwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAGgAAAAACYwAAAAABYwAAAAADVgAAAAADVgAAAAABVgAAAAABGgAAAAABGgAAAAAAGgAAAAABGgAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAGgAAAAAAYwAAAAACcAAAAAAAVgAAAAACVgAAAAABVgAAAAACGgAAAAABGgAAAAADGgAAAAAAGgAAAAADGgAAAAABGgAAAAABGgAAAAADGgAAAAADGgAAAAABGgAAAAAAGgAAAAACYwAAAAADcAAAAAAAcAAAAAAAWwAAAAADWwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAABcAAAAAAAVgAAAAACVgAAAAABVgAAAAACVgAAAAAAVgAAAAABVgAAAAABVgAAAAACVgAAAAAAVgAAAAADWwAAAAACVgAAAAADVgAAAAAAVgAAAAAAYwAAAAADYwAAAAABcAAAAAAAVgAAAAAAVgAAAAAAVgAAAAABVgAAAAAAVgAAAAADVgAAAAAAVgAAAAABVgAAAAABVgAAAAADWwAAAAABVgAAAAAAVgAAAAAAVgAAAAACYwAAAAADYwAAAAADcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAVgAAAAADVgAAAAACVgAAAAAAVgAAAAAAVgAAAAADVgAAAAACcAAAAAAARwAAAAAAXwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAARwAAAAAAbQAAAAABbQAAAAADRwAAAAAAcAAAAAAAcAAAAAAAWwAAAAACWwAAAAACWwAAAAAB + tiles: cQAAAAAAcQAAAAAAcQAAAAAAVwAAAAACVwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAACXAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVwAAAAABVwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAZAAAAAADZAAAAAAAcQAAAAAAVwAAAAADVwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAZAAAAAACZAAAAAACcQAAAAAAVwAAAAAAVwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAZAAAAAAAZAAAAAACcQAAAAAAVwAAAAABVwAAAAABYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAZAAAAAADcQAAAAAAcQAAAAAAVwAAAAABVwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAABcQAAAAAAVwAAAAADVwAAAAAAVwAAAAACcQAAAAAAYQAAAAAAcQAAAAAAGwAAAAADGwAAAAACGwAAAAADGwAAAAADGwAAAAACGwAAAAABGwAAAAACGwAAAAABZAAAAAACZAAAAAADVwAAAAAAVwAAAAABVwAAAAABGwAAAAACGwAAAAACGwAAAAABGwAAAAADOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAGwAAAAACZAAAAAABZAAAAAADVwAAAAADVwAAAAABVwAAAAABGwAAAAABGwAAAAAAGwAAAAABGwAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAGwAAAAAAZAAAAAACcQAAAAAAVwAAAAACVwAAAAABVwAAAAACGwAAAAABGwAAAAADGwAAAAAAGwAAAAADGwAAAAABGwAAAAABGwAAAAADGwAAAAADGwAAAAABGwAAAAAAGwAAAAACZAAAAAADcQAAAAAAcQAAAAAAXAAAAAADXAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAACZAAAAAABcQAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAAAVwAAAAABVwAAAAABVwAAAAACVwAAAAAAVwAAAAADXAAAAAACVwAAAAADVwAAAAAAVwAAAAAAZAAAAAADZAAAAAABcQAAAAAAVwAAAAAAVwAAAAAAVwAAAAABVwAAAAAAVwAAAAADVwAAAAAAVwAAAAABVwAAAAABVwAAAAADXAAAAAABVwAAAAAAVwAAAAAAVwAAAAACZAAAAAADZAAAAAADcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAVwAAAAADVwAAAAACVwAAAAAAVwAAAAAAVwAAAAADVwAAAAACcQAAAAAASAAAAAAAYAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAbgAAAAABbgAAAAADSAAAAAAAcQAAAAAAcQAAAAAAXAAAAAACXAAAAAACXAAAAAAB version: 6 -2,0: ind: -2,0 - tiles: RwAAAAAAUwAAAAABKgAAAAAAKgAAAAAAKgAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAABcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAADYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAAAWwAAAAABRgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAZwAAAAABZwAAAAAAZwAAAAADZwAAAAABcAAAAAAAYwAAAAACYwAAAAAAAAAAAAAAAAAAAAAARgAAAAAAUwAAAAABUwAAAAACKgAAAAAAUwAAAAACUwAAAAABcAAAAAAAZwAAAAADZwAAAAADZwAAAAACZwAAAAABcAAAAAAAYwAAAAADYwAAAAAAAAAAAAAAAAAAAAAARgAAAAAAUwAAAAAAKgAAAAAAUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAZwAAAAACZwAAAAACZwAAAAABZwAAAAABYwAAAAADYwAAAAACYwAAAAADRgAAAAAARgAAAAAAcAAAAAAAUwAAAAAAKgAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAARgAAAAAARgAAAAAAPwAAAAAAVgAAAAABVgAAAAAAVgAAAAAAcAAAAAAAZAAAAAACZAAAAAACZAAAAAADZAAAAAACcAAAAAAAYwAAAAADYwAAAAABYwAAAAABYwAAAAADRgAAAAAARgAAAAAAcAAAAAAAWQAAAAACVgAAAAACWQAAAAACcAAAAAAAZAAAAAAAZQAAAAAAZQAAAAABZAAAAAADYwAAAAAAYwAAAAADZAAAAAAAZAAAAAACZAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAWQAAAAAAVgAAAAABWQAAAAAAcAAAAAAAZAAAAAACZQAAAAADZQAAAAACZAAAAAACcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAABAAAAAAAAAAAAAAAARgAAAAAAVgAAAAABVgAAAAABVgAAAAAAcAAAAAAAZAAAAAAAZAAAAAAAZAAAAAACZAAAAAACcAAAAAAAYwAAAAAAYwAAAAAAcAAAAAAAYwAAAAAAAAAAAAAAAAAAAAAARgAAAAAAUwAAAAACKgAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAADcAAAAAAAYwAAAAABAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAACKgAAAAAAUwAAAAAAUwAAAAACcAAAAAAAYwAAAAAAYwAAAAADYwAAAAADcAAAAAAAYwAAAAACYwAAAAAAcAAAAAAAYwAAAAABRgAAAAAARgAAAAAAcAAAAAAAUwAAAAAAUwAAAAACKgAAAAAAUwAAAAAAcAAAAAAAYwAAAAABYwAAAAACYwAAAAACYwAAAAACYwAAAAADYwAAAAACYwAAAAAAYwAAAAADRgAAAAAARgAAAAAAPwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAADcAAAAAAAYwAAAAABYwAAAAACcAAAAAAAYwAAAAACRgAAAAAARgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAA + tiles: SAAAAAAAVAAAAAABKwAAAAAAKwAAAAAAKwAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAABcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAABVAAAAAABVAAAAAADYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAAAXAAAAAABRwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADcQAAAAAAaAAAAAABaAAAAAAAaAAAAAADaAAAAAABcQAAAAAAZAAAAAACZAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAVAAAAAABVAAAAAACKwAAAAAAVAAAAAACVAAAAAABcQAAAAAAaAAAAAADaAAAAAADaAAAAAACaAAAAAABcQAAAAAAZAAAAAADZAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAVAAAAAAAKwAAAAAAVAAAAAAAVAAAAAABVAAAAAABcQAAAAAAaAAAAAACaAAAAAACaAAAAAABaAAAAAABZAAAAAADZAAAAAACZAAAAAADRwAAAAAARwAAAAAAcQAAAAAAVAAAAAAAKwAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAAARwAAAAAARwAAAAAAQAAAAAAAVwAAAAABVwAAAAAAVwAAAAAAcQAAAAAAZQAAAAACZQAAAAACZQAAAAADZQAAAAACcQAAAAAAZAAAAAADZAAAAAABZAAAAAABZAAAAAADRwAAAAAARwAAAAAAcQAAAAAAWgAAAAACVwAAAAACWgAAAAACcQAAAAAAZQAAAAAAZgAAAAAAZgAAAAABZQAAAAADZAAAAAAAZAAAAAADZQAAAAAAZQAAAAACZQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAWgAAAAAAVwAAAAABWgAAAAAAcQAAAAAAZQAAAAACZgAAAAADZgAAAAACZQAAAAACcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAABAAAAAAAAAAAAAAAARwAAAAAAVwAAAAABVwAAAAABVwAAAAAAcQAAAAAAZQAAAAAAZQAAAAAAZQAAAAACZQAAAAACcQAAAAAAZAAAAAAAZAAAAAAAcQAAAAAAZAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAVAAAAAACKwAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAABZAAAAAADcQAAAAAAZAAAAAABAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAACKwAAAAAAVAAAAAAAVAAAAAACcQAAAAAAZAAAAAAAZAAAAAADZAAAAAADcQAAAAAAZAAAAAACZAAAAAAAcQAAAAAAZAAAAAABRwAAAAAARwAAAAAAcQAAAAAAVAAAAAAAVAAAAAACKwAAAAAAVAAAAAAAcQAAAAAAZAAAAAABZAAAAAACZAAAAAACZAAAAAACZAAAAAADZAAAAAACZAAAAAAAZAAAAAADRwAAAAAARwAAAAAAQAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAADcQAAAAAAZAAAAAABZAAAAAACcQAAAAAAZAAAAAACRwAAAAAARwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: AAAAAAAAcAAAAAAAWwAAAAAAWwAAAAACWwAAAAAAWwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAADWwAAAAABUwAAAAACUwAAAAADUwAAAAABUwAAAAACUwAAAAACAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAACAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAACAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAADAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAXwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAADcAAAAAAAGwAAAAAAGwAAAAAAGwAAAAADGwAAAAAAIAAAAAAARwAAAAAAUwAAAAABKgAAAAAAKgAAAAAAKgAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAACIwAAAAADIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAXwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAHwAAAAAAGgAAAAAAcAAAAAAAcAAAAAAARAAAAAAARQAAAAACVgAAAAABVgAAAAADKgAAAAAAKgAAAAAAKgAAAAAAVgAAAAADVgAAAAADUwAAAAACWwAAAAADIAAAAAAAIAAAAAAAIAAAAAAAWwAAAAAAUwAAAAAARAAAAAABVgAAAAACVgAAAAAAVgAAAAADVgAAAAABKgAAAAAAVgAAAAACVgAAAAADVgAAAAAAVgAAAAADWwAAAAACIAAAAAAAIAAAAAAAIAAAAAAAWwAAAAAAUwAAAAADRAAAAAABRQAAAAADVgAAAAABVgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAVgAAAAACVgAAAAADUwAAAAABWwAAAAADIAAAAAAAIAAAAAAAIAAAAAAAWwAAAAABUwAAAAABcAAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAXwAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAA + tiles: AAAAAAAAcQAAAAAAXAAAAAAAXAAAAAACXAAAAAAAXAAAAAACVAAAAAADVAAAAAAAVAAAAAACVAAAAAADXAAAAAABVAAAAAACVAAAAAADVAAAAAABVAAAAAACVAAAAAACAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAAAVAAAAAACAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAACVAAAAAACAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAACVAAAAAADAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAYAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAABVAAAAAADcQAAAAAAHAAAAAAAHAAAAAAAHAAAAAADHAAAAAAAIQAAAAAASAAAAAAAVAAAAAABKwAAAAAAKwAAAAAAKwAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAACJAAAAAADIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAYAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAABVAAAAAACVAAAAAABVAAAAAAAcQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAIAAAAAAAGwAAAAAAcQAAAAAAcQAAAAAARQAAAAAARgAAAAACVwAAAAABVwAAAAADKwAAAAAAKwAAAAAAKwAAAAAAVwAAAAADVwAAAAADVAAAAAACXAAAAAADIQAAAAAAIQAAAAAAIQAAAAAAXAAAAAAAVAAAAAAARQAAAAABVwAAAAACVwAAAAAAVwAAAAADVwAAAAABKwAAAAAAVwAAAAACVwAAAAADVwAAAAAAVwAAAAADXAAAAAACIQAAAAAAIQAAAAAAIQAAAAAAXAAAAAAAVAAAAAADRQAAAAABRgAAAAADVwAAAAABVwAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAVwAAAAACVwAAAAADVAAAAAABXAAAAAADIQAAAAAAIQAAAAAAIQAAAAAAXAAAAAABVAAAAAABcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYAAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAABVAAAAAABVAAAAAAAVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAA version: 6 0,0: ind: 0,0 - tiles: OQAAAAAAcAAAAAAAVgAAAAAAVgAAAAAAVgAAAAACWwAAAAAAGgAAAAAAKgAAAAAAKgAAAAAAGgAAAAAAWwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAOQAAAAAAcAAAAAAAVgAAAAABVgAAAAAAVgAAAAABcAAAAAAAGgAAAAAAKgAAAAAAKgAAAAAAGgAAAAAAWwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAVgAAAAABVgAAAAABVgAAAAACcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAWwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAVgAAAAADVgAAAAACVgAAAAABVgAAAAADcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAWwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAVgAAAAABVgAAAAABVgAAAAAAVgAAAAABcAAAAAAAGgAAAAADGgAAAAADGgAAAAACcAAAAAAAbQAAAAADbQAAAAACbQAAAAADbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAVgAAAAABVgAAAAABVgAAAAAAVgAAAAACWwAAAAAAGgAAAAABGgAAAAABGgAAAAABcAAAAAAAbQAAAAADbQAAAAACbQAAAAABbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVgAAAAACVgAAAAAAVgAAAAACVgAAAAABcAAAAAAAGgAAAAABGgAAAAABGgAAAAAAXwAAAAAAbQAAAAACbQAAAAACbQAAAAACbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAVgAAAAAAVgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVgAAAAABVgAAAAACcAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAcAAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVgAAAAADVgAAAAACcAAAAAAAXAAAAAAAXAAAAAAAPwAAAAAAXAAAAAAAXAAAAAAAcAAAAAAAYQAAAAABYQAAAAADYQAAAAACYQAAAAAAYQAAAAADYAAAAAAAcAAAAAAAVgAAAAABVgAAAAADWwAAAAABXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAYAAAAAAAYQAAAAACYQAAAAABYQAAAAAAYQAAAAADYQAAAAABcAAAAAAAcAAAAAAAWwAAAAAAWwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVgAAAAACVgAAAAABVgAAAAADVgAAAAACVgAAAAADVgAAAAAAVgAAAAABVgAAAAAAVgAAAAACVgAAAAABVgAAAAACVgAAAAABcAAAAAAAUwAAAAACUwAAAAACUwAAAAABVgAAAAAAVgAAAAADVgAAAAAAVgAAAAADVgAAAAADVgAAAAACVgAAAAADVgAAAAACVgAAAAABVgAAAAABVgAAAAABVgAAAAABXwAAAAAAUwAAAAACUwAAAAABUwAAAAADcAAAAAAARwAAAAAAXwAAAAAARwAAAAAAcAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABcAAAAAAAUwAAAAABUwAAAAABUwAAAAABWwAAAAAAWwAAAAACWwAAAAADWwAAAAADcAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAPQAAAAAAUwAAAAACUwAAAAAB + tiles: OgAAAAAAcQAAAAAAVwAAAAAAVwAAAAAAVwAAAAACXAAAAAAAGwAAAAAAKwAAAAAAKwAAAAAAGwAAAAAAXAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAOgAAAAAAcQAAAAAAVwAAAAABVwAAAAAAVwAAAAABcQAAAAAAGwAAAAAAKwAAAAAAKwAAAAAAGwAAAAAAXAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAVwAAAAABVwAAAAABVwAAAAACcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAXAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAVwAAAAADVwAAAAACVwAAAAABVwAAAAADcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAXAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAVwAAAAABVwAAAAABVwAAAAAAVwAAAAABcQAAAAAAGwAAAAADGwAAAAADGwAAAAACcQAAAAAAbgAAAAADbgAAAAACbgAAAAADbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAVwAAAAABVwAAAAABVwAAAAAAVwAAAAACXAAAAAAAGwAAAAABGwAAAAABGwAAAAABcQAAAAAAbgAAAAADbgAAAAACbgAAAAABbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVwAAAAACVwAAAAAAVwAAAAACVwAAAAABcQAAAAAAGwAAAAABGwAAAAABGwAAAAAAYAAAAAAAbgAAAAACbgAAAAACbgAAAAACbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAVwAAAAAAVwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVwAAAAABVwAAAAACcQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVwAAAAADVwAAAAACcQAAAAAAXQAAAAAAXQAAAAAAQAAAAAAAXQAAAAAAXQAAAAAAcQAAAAAAYgAAAAABYgAAAAADYgAAAAACYgAAAAAAYgAAAAADYQAAAAAAcQAAAAAAVwAAAAABVwAAAAADXAAAAAABXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAYQAAAAAAYgAAAAACYgAAAAABYgAAAAAAYgAAAAADYgAAAAABcQAAAAAAcQAAAAAAXAAAAAAAXAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVwAAAAACVwAAAAABVwAAAAADVwAAAAACVwAAAAADVwAAAAAAVwAAAAABVwAAAAAAVwAAAAACVwAAAAABVwAAAAACVwAAAAABcQAAAAAAVAAAAAACVAAAAAACVAAAAAABVwAAAAAAVwAAAAADVwAAAAAAVwAAAAADVwAAAAADVwAAAAACVwAAAAADVwAAAAACVwAAAAABVwAAAAABVwAAAAABVwAAAAABYAAAAAAAVAAAAAACVAAAAAABVAAAAAADcQAAAAAASAAAAAAAYAAAAAAASAAAAAAAcQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABcQAAAAAAVAAAAAABVAAAAAABVAAAAAABXAAAAAAAXAAAAAACXAAAAAADXAAAAAADcQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAPgAAAAAAVAAAAAACVAAAAAAB version: 6 -2,1: ind: -2,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAPwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAPwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAADcAAAAAAAGgAAAAADGgAAAAABGgAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAPwAAAAAAcAAAAAAAXwAAAAAAYAAAAAAAGgAAAAABGgAAAAADGgAAAAADcAAAAAAAGgAAAAABGgAAAAABGgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAADcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbQAAAAADbQAAAAADbQAAAAACcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARgAAAAAARgAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbQAAAAACbQAAAAAAbQAAAAADOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAbQAAAAADOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAAAYwAAAAADYwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAABYwAAAAAAYwAAAAABWAAAAAAAcAAAAAAAWAAAAAAAGwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAACYwAAAAABYwAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAABYwAAAAACYwAAAAACWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAQAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAGwAAAAABGwAAAAACGwAAAAAAcQAAAAAAGwAAAAADGwAAAAADGwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAQAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAGwAAAAADGwAAAAACGwAAAAADcQAAAAAAGwAAAAADGwAAAAABGwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAQAAAAAAAcQAAAAAAYAAAAAAAYQAAAAAAGwAAAAABGwAAAAADGwAAAAADcQAAAAAAGwAAAAABGwAAAAABGwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAABGwAAAAADcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAbgAAAAADbgAAAAADbgAAAAACcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARwAAAAAARwAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAbgAAAAACbgAAAAAAbgAAAAADPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAbgAAAAADPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAAAZAAAAAADZAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAABZAAAAAAAZAAAAAABWQAAAAAAcQAAAAAAWQAAAAAAHAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAACZAAAAAABZAAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAABZAAAAAACZAAAAAACWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: cAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAABGgAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAABBwAAAAABBwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADcAAAAAAABwAAAAACBwAAAAACBwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAAAbQAAAAACcAAAAAAABwAAAAABCAAAAAAABwAAAAABPQAAAAAAPQAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAACcAAAAAAABwAAAAAABwAAAAABBwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAABBwAAAAAABwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAWwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAWwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAWwAAAAAAcAAAAAAAcAAAAAAA + tiles: cQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAABGwAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAABBwAAAAABBwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADcQAAAAAABwAAAAACBwAAAAACBwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADbgAAAAAAbgAAAAACcQAAAAAABwAAAAABCAAAAAAABwAAAAABPgAAAAAAPgAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAACcQAAAAAABwAAAAAABwAAAAABBwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAABBwAAAAAABwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAXAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAXAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAXAAAAAAAcQAAAAAAcQAAAAAA version: 6 -1,1: ind: -1,1 - tiles: cAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbQAAAAADbQAAAAACbQAAAAADbQAAAAABbQAAAAABbQAAAAAAcAAAAAAAWwAAAAADWwAAAAAAWwAAAAACcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAYAAAAAAAbQAAAAABbQAAAAAAbQAAAAADbQAAAAAAbQAAAAADbQAAAAACcAAAAAAAWwAAAAABWwAAAAADWwAAAAACcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAbQAAAAACGwAAAAACbQAAAAABbQAAAAABGwAAAAADbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbQAAAAADbQAAAAADbQAAAAAAbQAAAAAAbQAAAAACbQAAAAABHAAAAAAARwAAAAAARwAAAAAAHAAAAAABXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbQAAAAAAbQAAAAACHwAAAAAAHwAAAAACbQAAAAACbQAAAAABHAAAAAAARwAAAAAARwAAAAAAHAAAAAAAPQAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAACHwAAAAAAHwAAAAABbQAAAAABbQAAAAAAHAAAAAAARwAAAAAARwAAAAAAHAAAAAADPQAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbQAAAAACbQAAAAABbQAAAAAAbQAAAAABHwAAAAADHwAAAAACbQAAAAABbQAAAAAAcAAAAAAAHAAAAAAAHAAAAAAAHAAAAAAAPQAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbQAAAAAAbQAAAAACbQAAAAACbQAAAAABbQAAAAABbQAAAAABbQAAAAABbQAAAAADcAAAAAAAaAAAAAACaAAAAAABaAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbQAAAAADbQAAAAADbQAAAAAAbQAAAAABbQAAAAABbQAAAAAAbQAAAAADbQAAAAABPwAAAAAAZAAAAAABZAAAAAADZAAAAAABXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPwAAAAAAcAAAAAAAcAAAAAAAZAAAAAAAZAAAAAADZAAAAAACcAAAAAAAYAAAAAAAcAAAAAAAbQAAAAAAbQAAAAABbQAAAAADbQAAAAADcAAAAAAAYwAAAAADYwAAAAABYwAAAAABYwAAAAACcAAAAAAAZAAAAAABZAAAAAAAZAAAAAACcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAABbQAAAAAAbQAAAAAAcAAAAAAAYwAAAAAAYwAAAAACYwAAAAAAYwAAAAADaAAAAAAAZAAAAAACZAAAAAAAZAAAAAADcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAADbQAAAAADbQAAAAACcAAAAAAAYwAAAAADYwAAAAAAYwAAAAADYwAAAAABaAAAAAACZAAAAAADZAAAAAACZAAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAABYwAAAAABYwAAAAABcAAAAAAAZAAAAAACZAAAAAADZAAAAAABcAAAAAAAWwAAAAABWwAAAAAAWwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAaAAAAAADaAAAAAADcAAAAAAAcAAAAAAAZAAAAAACZAAAAAABZAAAAAAAcAAAAAAAWwAAAAABWwAAAAAAWwAAAAACWAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaAAAAAADZAAAAAADZAAAAAAAZAAAAAAA + tiles: cQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAbgAAAAADbgAAAAACbgAAAAADbgAAAAABbgAAAAABbgAAAAAAcQAAAAAAXAAAAAADXAAAAAAAXAAAAAACcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYQAAAAAAbgAAAAABbgAAAAAAbgAAAAADbgAAAAAAbgAAAAADbgAAAAACcQAAAAAAXAAAAAABXAAAAAADXAAAAAACcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAbgAAAAACHAAAAAACbgAAAAABbgAAAAABHAAAAAADbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAbgAAAAADbgAAAAADbgAAAAAAbgAAAAAAbgAAAAACbgAAAAABHQAAAAAASAAAAAAASAAAAAAAHQAAAAABYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAbgAAAAAAbgAAAAACIAAAAAAAIAAAAAACbgAAAAACbgAAAAABHQAAAAAASAAAAAAASAAAAAAAHQAAAAAAPgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADbgAAAAACIAAAAAAAIAAAAAABbgAAAAABbgAAAAAAHQAAAAAASAAAAAAASAAAAAAAHQAAAAADPgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAbgAAAAACbgAAAAABbgAAAAAAbgAAAAABIAAAAAADIAAAAAACbgAAAAABbgAAAAAAcQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAPgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAbgAAAAAAbgAAAAACbgAAAAACbgAAAAABbgAAAAABbgAAAAABbgAAAAABbgAAAAADcQAAAAAAaQAAAAACaQAAAAABaQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAbgAAAAADbgAAAAADbgAAAAAAbgAAAAABbgAAAAABbgAAAAAAbgAAAAADbgAAAAABQAAAAAAAZQAAAAABZQAAAAADZQAAAAABYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAQAAAAAAAcQAAAAAAcQAAAAAAZQAAAAAAZQAAAAADZQAAAAACcQAAAAAAYQAAAAAAcQAAAAAAbgAAAAAAbgAAAAABbgAAAAADbgAAAAADcQAAAAAAZAAAAAADZAAAAAABZAAAAAABZAAAAAACcQAAAAAAZQAAAAABZQAAAAAAZQAAAAACcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADbgAAAAABbgAAAAAAbgAAAAAAcQAAAAAAZAAAAAAAZAAAAAACZAAAAAAAZAAAAAADaQAAAAAAZQAAAAACZQAAAAAAZQAAAAADcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAACcQAAAAAAZAAAAAADZAAAAAAAZAAAAAADZAAAAAABaQAAAAACZQAAAAADZQAAAAACZQAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAADZAAAAAABZAAAAAABZAAAAAABcQAAAAAAZQAAAAACZQAAAAADZQAAAAABcQAAAAAAXAAAAAABXAAAAAAAXAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAaQAAAAADaQAAAAADcQAAAAAAcQAAAAAAZQAAAAACZQAAAAABZQAAAAAAcQAAAAAAXAAAAAABXAAAAAAAXAAAAAACWQAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAaQAAAAADZQAAAAADZQAAAAAAZQAAAAAA version: 6 0,1: ind: 0,1 - tiles: WwAAAAADWwAAAAAAWwAAAAABWwAAAAAAcAAAAAAAXAAAAAAAHwAAAAABHwAAAAABXAAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAADWwAAAAACWwAAAAABWwAAAAABcAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAXAAAAAAARwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAHAAAAAAAPwAAAAAAbQAAAAABbQAAAAACbQAAAAABbQAAAAABcAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHAAAAAAAcAAAAAAAbQAAAAACGwAAAAACGwAAAAAAbQAAAAAAcAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHAAAAAACcAAAAAAAbQAAAAADbQAAAAAAbQAAAAACbQAAAAADcAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAADHAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAAARwAAAAAAXwAAAAAAXwAAAAAAPwAAAAAAIAAAAAAAGwAAAAABGwAAAAAAGwAAAAACIAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAADGgAAAAABRwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAIAAAAAAAGwAAAAACGwAAAAABGwAAAAACIAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAABGgAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: XAAAAAADXAAAAAAAXAAAAAABXAAAAAAAcQAAAAAAXQAAAAAAIAAAAAABIAAAAAABXQAAAAAAYAAAAAAAcQAAAAAAVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAADXAAAAAACXAAAAAABXAAAAAABcQAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAXQAAAAAASAAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAHQAAAAAAQAAAAAAAbgAAAAABbgAAAAACbgAAAAABbgAAAAABcQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAHQAAAAAAcQAAAAAAbgAAAAACHAAAAAACHAAAAAAAbgAAAAAAcQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAHQAAAAACcQAAAAAAbgAAAAADbgAAAAAAbgAAAAACbgAAAAADcQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAABVAAAAAADVAAAAAADHQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAAASAAAAAAAYAAAAAAAYAAAAAAAQAAAAAAAIQAAAAAAHAAAAAABHAAAAAAAHAAAAAACIQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAADGwAAAAABSAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAIQAAAAAAHAAAAAACHAAAAAABHAAAAAACIQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAABGwAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAABZAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: bwAAAAAAcAAAAAAAOwAAAAAAbQAAAAABbQAAAAACcAAAAAAAcAAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAOwAAAAAAbQAAAAABbQAAAAAAbQAAAAAAbQAAAAACbQAAAAADbQAAAAABbQAAAAABcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAOwAAAAAAbQAAAAAAbQAAAAACbQAAAAABbQAAAAADbQAAAAACcAAAAAAAbQAAAAAAbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAOwAAAAAAbQAAAAABbQAAAAADbQAAAAAAbQAAAAAAcAAAAAAAbQAAAAADbQAAAAABcAAAAAAAXwAAAAAAXwAAAAAAGgAAAAACGgAAAAAABwAAAAABAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAGgAAAAABGgAAAAABGgAAAAAACAAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAACGgAAAAADcAAAAAAAXwAAAAAAGgAAAAACGgAAAAADGgAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAACcAAAAAAAGgAAAAACUwAAAAABUwAAAAACGgAAAAABcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAAAcAAAAAAAGgAAAAABUwAAAAADUwAAAAABGgAAAAABcAAAAAAAGgAAAAABGgAAAAABUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAABwAAAAACBwAAAAACBwAAAAAAcAAAAAAAGgAAAAAAUwAAAAACUwAAAAADGgAAAAABcAAAAAAAGgAAAAAAUwAAAAABUwAAAAADUwAAAAAAMwAAAAAAMwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABUwAAAAAAUwAAAAABGgAAAAAAcAAAAAAAGgAAAAACUwAAAAACUwAAAAADUwAAAAADMwAAAAAAMwAAAAAAcAAAAAAAVgAAAAADVgAAAAADVgAAAAABcAAAAAAAGgAAAAAAGgAAAAACGgAAAAACGgAAAAABcAAAAAAAGgAAAAABUwAAAAABUwAAAAACUwAAAAACGgAAAAACGgAAAAABXwAAAAAAVgAAAAAAVgAAAAADVgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAcAAAAAAAGgAAAAADGgAAAAADUwAAAAADUwAAAAAAGgAAAAABGgAAAAADcAAAAAAAVgAAAAAAVgAAAAACVgAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAACGgAAAAACcAAAAAAAGgAAAAACGgAAAAABGgAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAVgAAAAAAVgAAAAAAVgAAAAACGgAAAAABGgAAAAAAGgAAAAABGgAAAAABGgAAAAAAGgAAAAADGgAAAAADGgAAAAADGgAAAAAAGgAAAAABbwAAAAAAbwAAAAAAcAAAAAAAVgAAAAAAVgAAAAACVgAAAAABcAAAAAAAGgAAAAAAGgAAAAADGgAAAAACGgAAAAACcAAAAAAAGgAAAAADGgAAAAABGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVgAAAAACVgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAA + tiles: cAAAAAAAcQAAAAAAPAAAAAAAbgAAAAABbgAAAAACcQAAAAAAcQAAAAAAKgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAPAAAAAAAbgAAAAABbgAAAAAAbgAAAAAAbgAAAAACbgAAAAADbgAAAAABbgAAAAABcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAPAAAAAAAbgAAAAAAbgAAAAACbgAAAAABbgAAAAADbgAAAAACcQAAAAAAbgAAAAAAbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAPAAAAAAAbgAAAAABbgAAAAADbgAAAAAAbgAAAAAAcQAAAAAAbgAAAAADbgAAAAABcQAAAAAAYAAAAAAAYAAAAAAAGwAAAAACGwAAAAAABwAAAAABAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAGwAAAAABGwAAAAABGwAAAAAACAAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAAAcQAAAAAAGwAAAAAAGwAAAAABGwAAAAACGwAAAAADcQAAAAAAYAAAAAAAGwAAAAACGwAAAAADGwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAACcQAAAAAAGwAAAAACVAAAAAABVAAAAAACGwAAAAABcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAAAcQAAAAAAGwAAAAABVAAAAAADVAAAAAABGwAAAAABcQAAAAAAGwAAAAABGwAAAAABVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAABwAAAAACBwAAAAACBwAAAAAAcQAAAAAAGwAAAAAAVAAAAAACVAAAAAADGwAAAAABcQAAAAAAGwAAAAAAVAAAAAABVAAAAAADVAAAAAAANAAAAAAANAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABVAAAAAAAVAAAAAABGwAAAAAAcQAAAAAAGwAAAAACVAAAAAACVAAAAAADVAAAAAADNAAAAAAANAAAAAAAcQAAAAAAVwAAAAADVwAAAAADVwAAAAABcQAAAAAAGwAAAAAAGwAAAAACGwAAAAACGwAAAAABcQAAAAAAGwAAAAABVAAAAAABVAAAAAACVAAAAAACGwAAAAACGwAAAAABYAAAAAAAVwAAAAAAVwAAAAADVwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAcQAAAAAAGwAAAAADGwAAAAADVAAAAAADVAAAAAAAGwAAAAABGwAAAAADcQAAAAAAVwAAAAAAVwAAAAACVwAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAACGwAAAAACcQAAAAAAGwAAAAACGwAAAAABGwAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAVwAAAAAAVwAAAAAAVwAAAAACGwAAAAABGwAAAAAAGwAAAAABGwAAAAABGwAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAAAGwAAAAABcAAAAAAAcAAAAAAAcQAAAAAAVwAAAAAAVwAAAAACVwAAAAABcQAAAAAAGwAAAAAAGwAAAAADGwAAAAACGwAAAAACcQAAAAAAGwAAAAADGwAAAAABGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVwAAAAACVwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: bwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAJQAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAGgAAAAACXwAAAAAAXwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAGgAAAAAAGgAAAAACXwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAGgAAAAABGgAAAAADXwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAUwAAAAACUwAAAAACcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABGgAAAAADGgAAAAACcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADGgAAAAAAcAAAAAAAcAAAAAAAVgAAAAABcAAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADXwAAAAAAUwAAAAACUwAAAAABGgAAAAABcAAAAAAAVgAAAAACVgAAAAAAVgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAACcAAAAAAAGgAAAAADXwAAAAAAUwAAAAADUwAAAAAAGgAAAAAAcAAAAAAAVgAAAAADVgAAAAACVgAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAGgAAAAACXwAAAAAAUwAAAAAAGgAAAAADGgAAAAACcAAAAAAAVgAAAAAAVgAAAAADVgAAAAABcAAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAACcAAAAAAAGgAAAAACcAAAAAAAGgAAAAADGgAAAAACGgAAAAACcAAAAAAAVgAAAAABVgAAAAAAVgAAAAACcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADGgAAAAAAGgAAAAABGgAAAAACGgAAAAABVgAAAAADVgAAAAAAVgAAAAADcAAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAADUwAAAAACGgAAAAABGgAAAAABGgAAAAADcAAAAAAAVgAAAAACVgAAAAABVgAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWwAAAAABWwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAAB + tiles: cAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAJgAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAGwAAAAACYAAAAAAAYAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAGwAAAAAAGwAAAAACYAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAGwAAAAABGwAAAAADYAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAVAAAAAACVAAAAAACcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABGwAAAAADGwAAAAACcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADGwAAAAAAcQAAAAAAcQAAAAAAVwAAAAABcQAAAAAAcQAAAAAAPAAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADYAAAAAAAVAAAAAACVAAAAAABGwAAAAABcQAAAAAAVwAAAAACVwAAAAAAVwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAACcQAAAAAAGwAAAAADYAAAAAAAVAAAAAADVAAAAAAAGwAAAAAAcQAAAAAAVwAAAAADVwAAAAACVwAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAACcQAAAAAAGwAAAAACYAAAAAAAVAAAAAAAGwAAAAADGwAAAAACcQAAAAAAVwAAAAAAVwAAAAADVwAAAAABcQAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAACVAAAAAACcQAAAAAAGwAAAAACcQAAAAAAGwAAAAADGwAAAAACGwAAAAACcQAAAAAAVwAAAAABVwAAAAAAVwAAAAACcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAADGwAAAAAAGwAAAAABGwAAAAACGwAAAAABVwAAAAADVwAAAAAAVwAAAAADcQAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAABVAAAAAADVAAAAAACGwAAAAABGwAAAAABGwAAAAADcQAAAAAAVwAAAAACVwAAAAABVwAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXAAAAAABXAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAACVAAAAAACVAAAAAAB version: 6 -2,-2: ind: -2,-2 - tiles: PQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAABwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAABwAAAAACBwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAABwAAAAACBwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAABwAAAAAAcAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAACXQAAAAAAXQAAAAADXQAAAAACcAAAAAAAcAAAAAAABwAAAAAABwAAAAABcAAAAAAAcAAAAAAABwAAAAACBwAAAAAAcAAAAAAAWwAAAAACWwAAAAACWwAAAAACcAAAAAAAXQAAAAADXQAAAAABXQAAAAABXQAAAAACcAAAAAAABwAAAAACBwAAAAAAcAAAAAAAcAAAAAAABwAAAAABBwAAAAAAcAAAAAAAWwAAAAABWwAAAAAAWwAAAAABcAAAAAAAXQAAAAABXQAAAAABXQAAAAABXQAAAAACcAAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAABwAAAAACbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAWwAAAAABWwAAAAADWwAAAAABWwAAAAACWwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAWwAAAAADWwAAAAABWwAAAAABWwAAAAADcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAWwAAAAAAWwAAAAABWwAAAAADcAAAAAAAcAAAAAAAWwAAAAAAWwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAcAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAWwAAAAABWwAAAAABWwAAAAACcAAAAAAAXAAAAAAAKgAAAAAAWwAAAAACXAAAAAAAcAAAAAAAbgAAAAAAKgAAAAAAKgAAAAAAbgAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAWwAAAAACWwAAAAABWwAAAAAAcAAAAAAAXAAAAAAAWwAAAAAAKgAAAAAAXAAAAAAAcAAAAAAAbgAAAAAAKgAAAAAAKgAAAAAAbgAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAWwAAAAADWwAAAAAAWwAAAAAAWwAAAAACXAAAAAAAKgAAAAAAWwAAAAAAXAAAAAAAWwAAAAACbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXAAAAAAAWwAAAAABKgAAAAAAXAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAWwAAAAACWwAAAAAAWwAAAAABcAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAWwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAA + tiles: PgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcAAAAAAABwAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAABwAAAAACBwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAABwAAAAACBwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAABwAAAAAAcQAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAACXgAAAAAAXgAAAAADXgAAAAACcQAAAAAAcQAAAAAABwAAAAAABwAAAAABcQAAAAAAcQAAAAAABwAAAAACBwAAAAAAcQAAAAAAXAAAAAACXAAAAAACXAAAAAACcQAAAAAAXgAAAAADXgAAAAABXgAAAAABXgAAAAACcQAAAAAABwAAAAACBwAAAAAAcQAAAAAAcQAAAAAABwAAAAABBwAAAAAAcQAAAAAAXAAAAAABXAAAAAAAXAAAAAABcQAAAAAAXgAAAAABXgAAAAABXgAAAAABXgAAAAACcQAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAABwAAAAACcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAXAAAAAABXAAAAAADXAAAAAABXAAAAAACXAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAXAAAAAADXAAAAAABXAAAAAABXAAAAAADcQAAAAAAVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAXAAAAAAAXAAAAAABXAAAAAADcQAAAAAAcQAAAAAAXAAAAAAAXAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAXAAAAAABXAAAAAABXAAAAAACcQAAAAAAXQAAAAAAKwAAAAAAXAAAAAACXQAAAAAAcQAAAAAAbwAAAAAAKwAAAAAAKwAAAAAAbwAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAXAAAAAACXAAAAAABXAAAAAAAcQAAAAAAXQAAAAAAXAAAAAAAKwAAAAAAXQAAAAAAcQAAAAAAbwAAAAAAKwAAAAAAKwAAAAAAbwAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAXAAAAAADXAAAAAAAXAAAAAAAXAAAAAACXQAAAAAAKwAAAAAAXAAAAAAAXQAAAAAAXAAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXQAAAAAAXAAAAAABKwAAAAAAXQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAXAAAAAACXAAAAAAAXAAAAAABcQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAXAAAAAADVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAOwAAAAAAbQAAAAABcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAPAAAAAAAbgAAAAABcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-2: ind: 1,-2 - tiles: cAAAAAAAcAAAAAAAcAAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABJQAAAAACJQAAAAAAJQAAAAACcAAAAAAAcAAAAAAABwAAAAACBwAAAAACcAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAcAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAABwAAAAABBwAAAAACcAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAcAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAABwAAAAABBwAAAAABcAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAcAAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAACCAAAAAAABwAAAAAABwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAABwAAAAAABwAAAAACCAAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAABwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAABwAAAAACBwAAAAABBwAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAcAAAAAAABwAAAAABBwAAAAAACAAAAAAABwAAAAACBwAAAAABUwAAAAAAUwAAAAAAUwAAAAAABwAAAAACBwAAAAABBwAAAAACcAAAAAAAcAAAAAAAKQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABcAAAAAAAGgAAAAAAGgAAAAADGgAAAAADGgAAAAACGgAAAAACGwAAAAADIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAcAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAACGgAAAAACGgAAAAADGgAAAAADGgAAAAACGgAAAAABcAAAAAAAGwAAAAABIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAcAAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAAAGgAAAAACcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAAACAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAAACAAAAAAA + tiles: cQAAAAAAcQAAAAAAcQAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABJgAAAAACJgAAAAAAJgAAAAACcQAAAAAAcQAAAAAABwAAAAACBwAAAAACcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAABwAAAAABBwAAAAACcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAABwAAAAABBwAAAAABcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAABwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAACCAAAAAAABwAAAAAABwAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAABwAAAAAABwAAAAACCAAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAABVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAABwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAAAVAAAAAAAVAAAAAAAVAAAAAAABwAAAAACBwAAAAABBwAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAcQAAAAAABwAAAAABBwAAAAAACAAAAAAABwAAAAACBwAAAAABVAAAAAAAVAAAAAAAVAAAAAAABwAAAAACBwAAAAABBwAAAAACcQAAAAAAcQAAAAAAKgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAABVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABcQAAAAAAGwAAAAAAGwAAAAADGwAAAAADGwAAAAACGwAAAAACHAAAAAADIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAACGwAAAAACGwAAAAADGwAAAAADGwAAAAACGwAAAAABcQAAAAAAHAAAAAABIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAAAcQAAAAAAGwAAAAABGwAAAAABGwAAAAAAGwAAAAACcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAAACAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAAACAAAAAAA version: 6 1,0: ind: 1,0 - tiles: UwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWwAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAAAWwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWwAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAAAWwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAWwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAARgAAAAAAcAAAAAAARgAAAAAAcAAAAAAARgAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAGgAAAAACGgAAAAAAGgAAAAACXwAAAAAAcAAAAAAAbgAAAAADbgAAAAABbgAAAAACbgAAAAADbgAAAAADcAAAAAAASgAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAbgAAAAABbgAAAAADbgAAAAABbgAAAAABbgAAAAABbgAAAAACSgAAAAAASgAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAAAXwAAAAAAcAAAAAAAbgAAAAACbgAAAAAAbgAAAAACcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAADbgAAAAABcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: VAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAXAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAXAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAAAXAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAXAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAAAXAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAXAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAARwAAAAAAcQAAAAAARwAAAAAAcQAAAAAARwAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAGwAAAAACGwAAAAAAGwAAAAACYAAAAAAAcQAAAAAAbwAAAAADbwAAAAABbwAAAAACbwAAAAADbwAAAAADcQAAAAAASwAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAbwAAAAABbwAAAAADbwAAAAABbwAAAAABbwAAAAABbwAAAAACSwAAAAAASwAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAGwAAAAABGwAAAAACGwAAAAAAYAAAAAAAcQAAAAAAbwAAAAACbwAAAAAAbwAAAAACcQAAAAAAcQAAAAAAcQAAAAAASwAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbwAAAAADbwAAAAABcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA version: 6 1,1: ind: 1,1 - tiles: UwAAAAABUwAAAAACUwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACXwAAAAAAXwAAAAAAPQAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIAAAAAAAIAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABUwAAAAABUwAAAAABcAAAAAAAIAAAAAAAIAAAAAAAcAAAAAAAUwAAAAABUwAAAAABcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIAAAAAAAIAAAAAAAcAAAAAAAUwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAUwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAADwAAAAAADwAAAAAAcAAAAAAAUwAAAAACPQAAAAAAcAAAAAAAPQAAAAAAUwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADPQAAAAAAcAAAAAAAPQAAAAAAUwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACPQAAAAAAcAAAAAAAPQAAAAAAUwAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAUwAAAAABcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXAAAAAAAXAAAAAAAXAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAA + tiles: VAAAAAABVAAAAAACVAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAACYAAAAAAAYAAAAAAAPgAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAQAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABVAAAAAABVAAAAAABcQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAAVAAAAAABVAAAAAABcQAAAAAAVAAAAAADVAAAAAACcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAAVAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAVAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAADwAAAAAADwAAAAAAcQAAAAAAVAAAAAACPgAAAAAAcQAAAAAAPgAAAAAAVAAAAAADcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAbgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADPgAAAAAAcQAAAAAAPgAAAAAAVAAAAAADcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACPgAAAAAAcQAAAAAAPgAAAAAAVAAAAAABcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAVAAAAAABcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAXQAAAAAAXQAAAAAAXQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAA version: 6 0,2: ind: 0,2 - tiles: YwAAAAADYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAMwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIAAAAAAAIAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAANgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAMwAAAAAAIAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIAAAAAAAIAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAACBwAAAAAABwAAAAAADwAAAAAAcAAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAABBwAAAAACDwAAAAAAcAAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAABBwAAAAACcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: ZAAAAAADZAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAABZAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAANAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAANwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAANAAAAAAAIQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAACBwAAAAAABwAAAAAADwAAAAAAcQAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAABBwAAAAACDwAAAAAAcQAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAABBwAAAAACcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,2: ind: -1,2 - tiles: PwAAAAAAWwAAAAABYQAAAAACWwAAAAAAcAAAAAAAaQAAAAAAGwAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAABaQAAAAAAaAAAAAAAZAAAAAACZAAAAAADZAAAAAACcAAAAAAAWwAAAAAAWwAAAAAAWwAAAAABcAAAAAAAaQAAAAAAGwAAAAABGwAAAAACGwAAAAAAGwAAAAABGwAAAAABaQAAAAAAcAAAAAAAZAAAAAACZAAAAAABZAAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAaQAAAAAAGwAAAAABGwAAAAADGwAAAAAAGwAAAAACGwAAAAAAaQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAaQAAAAAAGwAAAAABGwAAAAACGwAAAAADGwAAAAABGwAAAAADaQAAAAAAcAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAPwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAaQAAAAAAcAAAAAAAIAAAAAAAMwAAAAAAMwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADwAAAAAAUwAAAAABUwAAAAAAUwAAAAAADwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAMwAAAAAAMwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAABcAAAAAAADwAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAADDwAAAAAAcAAAAAAAWwAAAAACWwAAAAADWwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAABcAAAAAAADwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAAADwAAAAAAPwAAAAAADwAAAAAADwAAAAAADwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPwAAAAAAcAAAAAAAPwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAABcAAAAAAAMwAAAAAAMwAAAAAAGgAAAAABMwAAAAAAGgAAAAABMwAAAAAAMwAAAAAAcAAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAACMwAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAACcAAAAAAAMwAAAAAAMwAAAAAAGgAAAAACMwAAAAAAGgAAAAABMwAAAAAAMwAAAAAAcAAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAADGgAAAAABGgAAAAADGgAAAAABGgAAAAACcAAAAAAABwAAAAABBwAAAAABBwAAAAABbwAAAAAABwAAAAABBwAAAAAABwAAAAACcAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAcAAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAACcAAAAAAAcAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAACBwAAAAAC + tiles: QAAAAAAAXAAAAAABYgAAAAACXAAAAAAAcQAAAAAAagAAAAAAHAAAAAAAHAAAAAACHAAAAAAAHAAAAAACHAAAAAABagAAAAAAaQAAAAAAZQAAAAACZQAAAAADZQAAAAACcQAAAAAAXAAAAAAAXAAAAAAAXAAAAAABcQAAAAAAagAAAAAAHAAAAAABHAAAAAACHAAAAAAAHAAAAAABHAAAAAABagAAAAAAcQAAAAAAZQAAAAACZQAAAAABZQAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAagAAAAAAHAAAAAABHAAAAAADHAAAAAAAHAAAAAACHAAAAAAAagAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAagAAAAAAHAAAAAABHAAAAAACHAAAAAADHAAAAAABHAAAAAADagAAAAAAcQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAQAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAcQAAAAAAIQAAAAAANAAAAAAANAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAQAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAADwAAAAAAVAAAAAABVAAAAAAAVAAAAAAADwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAANAAAAAAANAAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAABcQAAAAAADwAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAADDwAAAAAAcQAAAAAAXAAAAAACXAAAAAADXAAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAABcQAAAAAADwAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAABVAAAAAAADwAAAAAAQAAAAAAADwAAAAAADwAAAAAADwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAQAAAAAAAcQAAAAAAQAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAABcQAAAAAANAAAAAAANAAAAAAAGwAAAAABNAAAAAAAGwAAAAABNAAAAAAANAAAAAAAcQAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAAAcQAAAAAAGwAAAAADGwAAAAACGwAAAAACNAAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAACcQAAAAAANAAAAAAANAAAAAAAGwAAAAACNAAAAAAAGwAAAAABNAAAAAAANAAAAAAAcQAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAADGwAAAAABGwAAAAADGwAAAAABGwAAAAACcQAAAAAABwAAAAABBwAAAAABBwAAAAABcAAAAAAABwAAAAABBwAAAAAABwAAAAACcQAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAcQAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAACcQAAAAAAcQAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAACBwAAAAAC version: 6 1,2: ind: 1,2 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAABwAAAAACBwAAAAACBwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAABBwAAAAACcAAAAAAABwAAAAAABwAAAAACBwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAACcAAAAAAABwAAAAAACAAAAAAABwAAAAACcAAAAAAANgAAAAAAcAAAAAAANgAAAAAAcAAAAAAANgAAAAAAcAAAAAAANgAAAAAANgAAAAAAcAAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAABcAAAAAAANgAAAAAAcAAAAAAANgAAAAAAcAAAAAAANgAAAAAAcAAAAAAANgAAAAAANgAAAAAAcAAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAAAcAAAAAAANgAAAAAAcAAAAAAANgAAAAAAcAAAAAAANgAAAAAAcAAAAAAANgAAAAAANgAAAAAAcAAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAACCAAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAACDQAAAAAADQAAAAAABwAAAAAACAAAAAAABwAAAAACBwAAAAAABwAAAAAACAAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAABDQAAAAAADQAAAAAADQAAAAAAAAAAAAAACAAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAAADQAAAAAADQAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAACDQAAAAAADQAAAAAADQAAAAAA + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAABwAAAAACBwAAAAACBwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAABBwAAAAACcQAAAAAABwAAAAAABwAAAAACBwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAACcQAAAAAABwAAAAAACAAAAAAABwAAAAACcQAAAAAANwAAAAAAcQAAAAAANwAAAAAAcQAAAAAANwAAAAAAcQAAAAAANwAAAAAANwAAAAAAcQAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAABcQAAAAAANwAAAAAAcQAAAAAANwAAAAAAcQAAAAAANwAAAAAAcQAAAAAANwAAAAAANwAAAAAAcQAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAAAcQAAAAAANwAAAAAAcQAAAAAANwAAAAAAcQAAAAAANwAAAAAAcQAAAAAANwAAAAAANwAAAAAAcQAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAACCAAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAACDQAAAAAADQAAAAAABwAAAAAACAAAAAAABwAAAAACBwAAAAAABwAAAAAACAAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAABDQAAAAAADQAAAAAADQAAAAAAAAAAAAAACAAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAAADQAAAAAADQAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAACDQAAAAAADQAAAAAADQAAAAAA version: 6 2,1: ind: 2,1 - tiles: cAAAAAAAcAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAABOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAbQAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAbQAAAAAAbQAAAAAAbQAAAAADcAAAAAAAbQAAAAABbQAAAAACcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAbQAAAAACEQAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbQAAAAACbQAAAAAAbQAAAAABbQAAAAABcAAAAAAAbQAAAAADbQAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAbQAAAAACcAAAAAAAbQAAAAADbQAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAbwAAAAAAKgAAAAAAAAAAAAAAKgAAAAAAbQAAAAAAbQAAAAAAbQAAAAADbQAAAAACbQAAAAADEQAAAAAAbQAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAbwAAAAAAKgAAAAAAAAAAAAAAKgAAAAAAXAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAbwAAAAAAKgAAAAAAAAAAAAAAKgAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cQAAAAAAcQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAABPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAbgAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAEQAAAAAAbgAAAAAAbgAAAAAAbgAAAAADcQAAAAAAbgAAAAABbgAAAAACcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAbgAAAAACEQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbgAAAAACbgAAAAAAbgAAAAABbgAAAAABcQAAAAAAbgAAAAADbgAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAbgAAAAACcQAAAAAAbgAAAAADbgAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcAAAAAAAKwAAAAAAAAAAAAAAKwAAAAAAbgAAAAAAbgAAAAAAbgAAAAADbgAAAAACbgAAAAADEQAAAAAAbgAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcAAAAAAAKwAAAAAAAAAAAAAAKwAAAAAAXQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAcAAAAAAAKwAAAAAAAAAAAAAAKwAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,0: ind: 2,0 - tiles: cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAPQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAXwAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAXwAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAA + tiles: cQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAA version: 6 -2,2: ind: -2,2 - tiles: WAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAWwAAAAADWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAWwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAWwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAWwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAWwAAAAADBwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAABbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAACCAAAAAAABwAAAAABBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAABbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAABwAAAAAACAAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: WQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAXAAAAAADWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAXAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAXAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAXAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAXAAAAAADBwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAACCAAAAAAABwAAAAABBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAACAAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-1: ind: -3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARgAAAAAAcAAAAAAARgAAAAAAcAAAAAAARgAAAAAAcAAAAAAARgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARgAAAAAAXwAAAAAARgAAAAAAXwAAAAAARgAAAAAAXwAAAAAARgAAAAAAXwAAAAAARgAAAAAAXwAAAAAARgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARgAAAAAAcAAAAAAARgAAAAAAXwAAAAAARgAAAAAAcAAAAAAARgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARgAAAAAAXwAAAAAARgAAAAAAXwAAAAAARgAAAAAAXwAAAAAARgAAAAAAXwAAAAAARgAAAAAAXwAAAAAARgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARgAAAAAAcAAAAAAARgAAAAAAcAAAAAAARgAAAAAAcAAAAAAARgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARgAAAAAAcAAAAAAARgAAAAAAcAAAAAAARgAAAAAAcAAAAAAARgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARgAAAAAAXwAAAAAARgAAAAAAXwAAAAAARgAAAAAAXwAAAAAARgAAAAAAXwAAAAAARgAAAAAAXwAAAAAARgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARwAAAAAAcQAAAAAARwAAAAAAcQAAAAAARwAAAAAAcQAAAAAARwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARwAAAAAAYAAAAAAARwAAAAAAYAAAAAAARwAAAAAAYAAAAAAARwAAAAAAYAAAAAAARwAAAAAAYAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARwAAAAAAcQAAAAAARwAAAAAAYAAAAAAARwAAAAAAcQAAAAAARwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARwAAAAAAYAAAAAAARwAAAAAAYAAAAAAARwAAAAAAYAAAAAAARwAAAAAAYAAAAAAARwAAAAAAYAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARwAAAAAAcQAAAAAARwAAAAAAcQAAAAAARwAAAAAAcQAAAAAARwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARwAAAAAAcQAAAAAARwAAAAAAcQAAAAAARwAAAAAAcQAAAAAARwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARwAAAAAAYAAAAAAARwAAAAAAYAAAAAAARwAAAAAAYAAAAAAARwAAAAAAYAAAAAAARwAAAAAAYAAAAAAARwAAAAAA version: 6 -3,0: ind: -3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARgAAAAAAcAAAAAAARgAAAAAAcAAAAAAARgAAAAAAcAAAAAAARgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARgAAAAAAXwAAAAAARgAAAAAAXwAAAAAARgAAAAAAXwAAAAAARgAAAAAAXwAAAAAARgAAAAAAXwAAAAAARgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARgAAAAAAcAAAAAAARgAAAAAAcAAAAAAARgAAAAAAcAAAAAAARgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARwAAAAAAcQAAAAAARwAAAAAAcQAAAAAARwAAAAAAcQAAAAAARwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARwAAAAAAYAAAAAAARwAAAAAAYAAAAAAARwAAAAAAYAAAAAAARwAAAAAAYAAAAAAARwAAAAAAYAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARwAAAAAAcQAAAAAARwAAAAAAcQAAAAAARwAAAAAAcQAAAAAARwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAA version: 6 1,-3: ind: 1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAAACAAAAAAABwAAAAACBwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAAACAAAAAAABwAAAAACBwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAC version: 6 -3,1: ind: -3,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAABcAAAAAAAWAAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAACAAAAAAABwAAAAACcAAAAAAAWAAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAACcAAAAAAAWAAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAACcAAAAAAAWAAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAABCAAAAAAABwAAAAACBwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAABcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAACcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACCAAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAABcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAABcQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAACAAAAAAABwAAAAACcQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAACcQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAABBwAAAAACcQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAABCAAAAAAABwAAAAACBwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAABcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAACcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACCAAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAABcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAA version: 6 -3,2: ind: -3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAACcAAAAAAANAAAAAADNAAAAAADNAAAAAACNAAAAAABAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAAAcAAAAAAANAAAAAAANAAAAAADNAAAAAAANAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAABCAAAAAAABwAAAAABBwAAAAABcAAAAAAANAAAAAABNAAAAAABNAAAAAABNAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAABcAAAAAAANAAAAAABNAAAAAACNAAAAAADNAAAAAABAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAACAAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAACCAAAAAAABwAAAAABBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAACCAAAAAAABwAAAAABBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAACcQAAAAAANQAAAAADNQAAAAADNQAAAAACNQAAAAABAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAAAcQAAAAAANQAAAAAANQAAAAADNQAAAAAANQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAABCAAAAAAABwAAAAABBwAAAAABcQAAAAAANQAAAAABNQAAAAABNQAAAAABNQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAABcQAAAAAANQAAAAABNQAAAAACNQAAAAADNQAAAAABAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAABBwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAACAAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAABBwAAAAAABwAAAAACCAAAAAAABwAAAAABBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAACCAAAAAAABwAAAAABBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: BwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAABAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAACAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAACbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAACbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAABAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAACAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABwAAAAAABwAAAAAARwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAARwAAAAAARwAAAAAARwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAARwAAAAAARwAAAAAARwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAARwAAAAAARwAAAAAARwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABwAAAAAABwAAAAAASAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAASAAAAAAASAAAAAAASAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAASAAAAAAASAAAAAAASAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAASAAAAAAASAAAAAAASAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAA version: 6 -2,-3: ind: -2,-3 - tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAABBwAAAAABBwAAAAAADQAAAAAADQAAAAAADQAAAAAAcAAAAAAAcAAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAABwAAAAACBwAAAAABDQAAAAAADQAAAAAADQAAAAAADQAAAAAAcAAAAAAAcAAAAAAADQAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAACcAAAAAAAcAAAAAAAbwAAAAAABwAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAcAAAAAAAcAAAAAAADQAAAAAADQAAAAAABwAAAAAABwAAAAABBwAAAAABcAAAAAAAcAAAAAAAbwAAAAAABwAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAcAAAAAAAcAAAAAAADQAAAAAADQAAAAAABwAAAAABBwAAAAAABwAAAAABcAAAAAAAcAAAAAAAbwAAAAAABwAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAcAAAAAAAcAAAAAAADQAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAACcAAAAAAAcAAAAAAAbwAAAAAABwAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAcAAAAAAAcAAAAAAADQAAAAAADQAAAAAABwAAAAAABwAAAAABBwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAABwAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAcAAAAAAAcAAAAAAADQAAAAAADQAAAAAABwAAAAACBwAAAAACBwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAABwAAAAABBwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAcAAAAAAAcAAAAAAADQAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAABwAAAAABBwAAAAABBwAAAAAADQAAAAAADQAAAAAADQAAAAAAcAAAAAAAcAAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAAACAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAA + tiles: BwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAACAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAABBwAAAAABBwAAAAAADQAAAAAADQAAAAAADQAAAAAAcQAAAAAAcQAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAAAcQAAAAAAcQAAAAAAcAAAAAAABwAAAAACBwAAAAABDQAAAAAADQAAAAAADQAAAAAADQAAAAAAcQAAAAAAcQAAAAAADQAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAACcQAAAAAAcQAAAAAAcAAAAAAABwAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAcQAAAAAAcQAAAAAADQAAAAAADQAAAAAABwAAAAAABwAAAAABBwAAAAABcQAAAAAAcQAAAAAAcAAAAAAABwAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAcQAAAAAAcQAAAAAADQAAAAAADQAAAAAABwAAAAABBwAAAAAABwAAAAABcQAAAAAAcQAAAAAAcAAAAAAABwAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAcQAAAAAAcQAAAAAADQAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAACcQAAAAAAcQAAAAAAcAAAAAAABwAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAcQAAAAAAcQAAAAAADQAAAAAADQAAAAAABwAAAAAABwAAAAABBwAAAAAAcQAAAAAAcQAAAAAAcAAAAAAABwAAAAACDQAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAcQAAAAAAcQAAAAAADQAAAAAADQAAAAAABwAAAAACBwAAAAACBwAAAAAAcQAAAAAAcQAAAAAAcAAAAAAABwAAAAABBwAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAAcQAAAAAAcQAAAAAADQAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAAAcQAAAAAAcQAAAAAAcAAAAAAABwAAAAABBwAAAAABBwAAAAAADQAAAAAADQAAAAAADQAAAAAAcQAAAAAAcQAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAAACAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAA version: 6 3,1: ind: 3,1 - tiles: bwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAKgAAAAAAAAAAAAAAKgAAAAAAbwAAAAAAKgAAAAAAAAAAAAAAKgAAAAAAbwAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAKgAAAAAAAAAAAAAAKgAAAAAAbwAAAAAAKgAAAAAAAAAAAAAAKgAAAAAAbwAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAKgAAAAAAAAAAAAAAKgAAAAAAbwAAAAAAKgAAAAAAAAAAAAAAKgAAAAAAbwAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAKwAAAAAAAAAAAAAAKwAAAAAAcAAAAAAAKwAAAAAAAAAAAAAAKwAAAAAAcAAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAKwAAAAAAAAAAAAAAKwAAAAAAcAAAAAAAKwAAAAAAAAAAAAAAKwAAAAAAcAAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAKwAAAAAAAAAAAAAAKwAAAAAAcAAAAAAAKwAAAAAAAAAAAAAAKwAAAAAAcAAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,3: ind: -1,3 - tiles: BwAAAAABBwAAAAAABwAAAAACBwAAAAACBwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAACCAAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAABCAAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAAAAAAAAAABwAAAAABAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACCAAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAACAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAKgAAAAAAbwAAAAAAbwAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAKgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BwAAAAABBwAAAAAABwAAAAACBwAAAAACBwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAACCAAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAABCAAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAAAAAAAAAABwAAAAABAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACCAAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAACAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKwAAAAAAcAAAAAAAcAAAAAAABwAAAAACBwAAAAABBwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,3: ind: -2,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAKgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAAAAAAAAAKgAAAAAAAAAAAAAAKgAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAKgAAAAAAAAAAAAAAKgAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAAAAAAAAAKgAAAAAAAAAAAAAAKgAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAKgAAAAAAAAAAAAAAKgAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAKgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAAAAAAAAAKgAAAAAAAAAAAAAAKgAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAKgAAAAAAAAAAAAAAKgAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAAAAAAAAAKgAAAAAAAAAAAAAAKgAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAKgAAAAAAAAAAAAAAKgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAKwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAKwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAKwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAKwAAAAAA version: 6 3,0: ind: 3,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAA version: 6 3,2: ind: 3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,2: ind: 2,2 - tiles: bwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAADQAAAAAADQAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAABwAAAAAABwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAADQAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAADQAAAAAADQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAAABwAAAAACBwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAADQAAAAAADQAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAABwAAAAAABwAAAAABBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAADQAAAAAADQAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAADQAAAAAADQAAAAAABwAAAAAABwAAAAAABwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADQAAAAAADQAAAAAADQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: BwAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAACCAAAAAAABwAAAAABBwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAAACAAAAAAABwAAAAABBwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAABAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: BwAAAAACBwAAAAABBwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAACCAAAAAAABwAAAAABBwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAAAAACAAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAACBwAAAAABBwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAACBwAAAAACBwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAACBwAAAAABBwAAAAAABwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAAABwAAAAACBwAAAAACBwAAAAABBwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAABBwAAAAABBwAAAAABBwAAAAACBwAAAAABBwAAAAAABwAAAAABBwAAAAACBwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAACBwAAAAACBwAAAAAABwAAAAAABwAAAAACBwAAAAAACAAAAAAABwAAAAABBwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAABBwAAAAAABwAAAAABBwAAAAABBwAAAAACBwAAAAABAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-3: ind: 2,-3 @@ -243,15 +245,15 @@ entities: version: 6 -3,3: ind: -3,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,4: ind: -2,4 - tiles: bwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,4: ind: -1,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,3: ind: 0,3 @@ -4766,11 +4768,11 @@ entities: parent: 2 type: Transform - devices: - - 5069 - - 5053 + - 5297 + - 5281 - 263 - - 6636 - - 6733 + - 6864 + - 6961 type: DeviceList - uid: 5 components: @@ -4778,14 +4780,14 @@ entities: parent: 2 type: Transform - devices: - - 5054 - - 5193 + - 5282 + - 5421 - 285 - - 5150 - - 5151 - - 5152 - - 6713 - - 6617 + - 5378 + - 5379 + - 5380 + - 6941 + - 6845 type: DeviceList - uid: 6 components: @@ -4794,10 +4796,10 @@ entities: type: Transform - devices: - 296 - - 5157 - - 5053 - - 6746 - - 6657 + - 5385 + - 5281 + - 6974 + - 6885 type: DeviceList - uid: 7 components: @@ -4805,12 +4807,12 @@ entities: parent: 2 type: Transform - devices: - - 5126 - - 5127 + - 5354 + - 5355 - 274 - - 5112 - - 6639 - - 6727 + - 5340 + - 6867 + - 6955 type: DeviceList - uid: 8 components: @@ -4825,11 +4827,11 @@ entities: parent: 2 type: Transform - devices: - - 5111 + - 5339 - 275 - - 5112 - - 6628 - - 6718 + - 5340 + - 6856 + - 6946 type: DeviceList - uid: 10 components: @@ -4839,9 +4841,9 @@ entities: type: Transform - devices: - 257 - - 5111 - - 6724 - - 6634 + - 5339 + - 6952 + - 6862 type: DeviceList - uid: 11 components: @@ -4850,10 +4852,10 @@ entities: type: Transform - devices: - 272 - - 5163 - - 5162 - - 6717 - - 6626 + - 5391 + - 5390 + - 6945 + - 6854 type: DeviceList - uid: 12 components: @@ -4862,11 +4864,11 @@ entities: parent: 2 type: Transform - devices: - - 5109 - - 5110 + - 5337 + - 5338 - 276 - - 6633 - - 6721 + - 6861 + - 6949 type: DeviceList - uid: 13 components: @@ -4875,13 +4877,13 @@ entities: parent: 2 type: Transform - devices: - - 5128 - - 5116 - - 5117 + - 5356 + - 5344 + - 5345 - 278 - - 6660 - - 5066 - - 6767 + - 6888 + - 5294 + - 6995 type: DeviceList - uid: 14 components: @@ -4891,10 +4893,10 @@ entities: type: Transform - devices: - 280 - - 5121 - - 5160 - - 6611 - - 6702 + - 5349 + - 5388 + - 6839 + - 6930 type: DeviceList - uid: 15 components: @@ -4902,10 +4904,10 @@ entities: parent: 2 type: Transform - devices: - - 5131 + - 5359 - 259 - - 6731 - - 6643 + - 6959 + - 6871 type: DeviceList - uid: 16 components: @@ -4913,11 +4915,11 @@ entities: parent: 2 type: Transform - devices: - - 5130 - - 5131 + - 5358 + - 5359 - 260 - - 6730 - - 6642 + - 6958 + - 6870 type: DeviceList - uid: 17 components: @@ -4926,10 +4928,10 @@ entities: parent: 2 type: Transform - devices: - - 5132 - - 5129 + - 5360 + - 5357 - 282 - - 6630 + - 6858 type: DeviceList - uid: 18 components: @@ -4938,10 +4940,10 @@ entities: type: Transform - devices: - 283 - - 5129 - - 5049 - - 6629 - - 6722 + - 5357 + - 5277 + - 6857 + - 6950 type: DeviceList - uid: 19 components: @@ -4950,13 +4952,13 @@ entities: parent: 2 type: Transform - devices: - - 5141 - - 5139 - - 5140 + - 5369 + - 5367 + - 5368 - 262 - - 6661 - - 6745 - - 5138 + - 6889 + - 6973 + - 5366 type: DeviceList - uid: 20 components: @@ -4965,14 +4967,14 @@ entities: parent: 2 type: Transform - devices: - - 6647 - - 6764 - - 5064 - - 5114 - - 5113 - - 5067 - - 5071 - - 5072 + - 6875 + - 6992 + - 5292 + - 5342 + - 5341 + - 5295 + - 5299 + - 5300 type: DeviceList - uid: 21 components: @@ -4981,18 +4983,18 @@ entities: parent: 2 type: Transform - devices: - - 5177 - - 5178 + - 5405 + - 5406 - 294 - - 5154 - - 5158 - - 5159 - - 5153 - - 5176 - - 5196 - - 6732 - - 6768 - - 5200 + - 5382 + - 5386 + - 5387 + - 5381 + - 5404 + - 5424 + - 6960 + - 6996 + - 5428 type: DeviceList - uid: 22 components: @@ -5001,15 +5003,15 @@ entities: parent: 2 type: Transform - devices: - - 5104 - - 5101 - - 5097 - - 5065 + - 5332 + - 5329 + - 5325 + - 5293 - 292 - - 5102 - - 5103 - - 6726 - - 6638 + - 5330 + - 5331 + - 6954 + - 6866 type: DeviceList - uid: 23 components: @@ -5018,7 +5020,7 @@ entities: parent: 2 type: Transform - devices: - - 5062 + - 5290 - 266 type: DeviceList - uid: 24 @@ -5028,9 +5030,9 @@ entities: type: Transform - devices: - 268 - - 5092 - - 6740 - - 6650 + - 5320 + - 6968 + - 6878 type: DeviceList - uid: 25 components: @@ -5039,11 +5041,11 @@ entities: parent: 2 type: Transform - devices: - - 5092 - - 5149 + - 5320 + - 5377 - 269 - - 6625 - - 6710 + - 6853 + - 6938 type: DeviceList - uid: 26 components: @@ -5051,12 +5053,12 @@ entities: parent: 2 type: Transform - devices: - - 5147 - - 5123 - - 5148 + - 5375 + - 5351 + - 5376 - 291 - - 6620 - - 6709 + - 6848 + - 6937 type: DeviceList - uid: 27 components: @@ -5064,10 +5066,10 @@ entities: parent: 2 type: Transform - devices: - - 5120 + - 5348 - 270 - - 6707 - - 6624 + - 6935 + - 6852 type: DeviceList - uid: 28 components: @@ -5076,11 +5078,11 @@ entities: parent: 2 type: Transform - devices: - - 5120 - - 5091 + - 5348 + - 5319 - 290 - - 6708 - - 6623 + - 6936 + - 6851 type: DeviceList - uid: 29 components: @@ -5089,14 +5091,14 @@ entities: parent: 2 type: Transform - devices: - - 5149 - - 5123 - - 5091 - - 5089 - - 5090 + - 5377 + - 5351 + - 5319 + - 5317 + - 5318 - 289 - - 6652 - - 6742 + - 6880 + - 6970 type: DeviceList - uid: 30 components: @@ -5104,13 +5106,13 @@ entities: parent: 2 type: Transform - devices: - - 5127 + - 5355 - 277 - - 5128 - - 5109 - - 5110 - - 6632 - - 6720 + - 5356 + - 5337 + - 5338 + - 6860 + - 6948 type: DeviceList - uid: 31 components: @@ -5119,18 +5121,18 @@ entities: parent: 2 type: Transform - devices: - - 5118 - - 5119 - - 5156 + - 5346 + - 5347 + - 5384 - 279 - - 5135 - - 5134 - - 5117 - - 5116 - - 5141 - - 6701 - - 6658 - - 5189 + - 5363 + - 5362 + - 5345 + - 5344 + - 5369 + - 6929 + - 6886 + - 5417 type: DeviceList - uid: 32 components: @@ -5139,24 +5141,24 @@ entities: parent: 2 type: Transform - ShutdownSubscribers: - - 6723 - - 6631 + - 6951 + - 6859 - 295 type: DeviceNetwork - devices: - - 5122 - - 5130 - - 5049 - - 5137 - - 5136 - - 5138 - - 5133 - - 5098 + - 5350 + - 5358 + - 5277 + - 5365 + - 5364 + - 5366 + - 5361 + - 5326 - 304 - - 6765 - - 6679 - - 6723 - - 6631 + - 6993 + - 6907 + - 6951 + - 6859 - 295 type: DeviceList - uid: 33 @@ -5166,15 +5168,15 @@ entities: parent: 2 type: Transform - devices: - - 5103 - - 5102 - - 5099 - - 5100 - - 5052 - - 5051 + - 5331 + - 5330 + - 5327 + - 5328 + - 5280 + - 5279 - 293 - - 6739 - - 6648 + - 6967 + - 6876 type: DeviceList - uid: 34 components: @@ -5183,24 +5185,24 @@ entities: parent: 2 type: Transform - devices: - - 5145 - - 5144 - - 5082 - - 5083 - - 5084 - - 5073 - - 5074 - - 5075 - - 5081 - - 5080 - - 5079 - - 5146 - - 5078 - - 5077 - - 5076 + - 5373 + - 5372 + - 5310 + - 5311 + - 5312 + - 5301 + - 5302 + - 5303 + - 5309 + - 5308 + - 5307 + - 5374 + - 5306 + - 5305 + - 5304 - 265 - - 6612 - - 6706 + - 6840 + - 6934 type: DeviceList - uid: 35 components: @@ -5209,12 +5211,12 @@ entities: parent: 2 type: Transform - devices: - - 5087 - - 5088 + - 5315 + - 5316 - 287 - - 6712 - - 6621 - - 5167 + - 6940 + - 6849 + - 5395 type: DeviceList - uid: 36 components: @@ -5224,18 +5226,18 @@ entities: type: Transform - ShutdownSubscribers: - 267 - - 6737 - - 6649 + - 6965 + - 6877 type: DeviceNetwork - devices: - 267 - - 5065 - - 5097 + - 5293 + - 5325 - 254 - - 6654 - - 6738 - - 6737 - - 6649 + - 6882 + - 6966 + - 6965 + - 6877 type: DeviceList - uid: 37 components: @@ -5245,15 +5247,15 @@ entities: type: Transform - devices: - 281 - - 5101 - - 5104 - - 5105 - - 5106 - - 5085 - - 5086 - - 6743 - - 6655 - - 5185 + - 5329 + - 5332 + - 5333 + - 5334 + - 5313 + - 5314 + - 6971 + - 6883 + - 5413 type: DeviceList - uid: 38 components: @@ -5262,15 +5264,15 @@ entities: parent: 2 type: Transform - devices: - - 5107 - - 5108 + - 5335 + - 5336 - 271 - - 5126 - - 5164 - - 6719 - - 6635 - - 6725 - - 6637 + - 5354 + - 5392 + - 6947 + - 6863 + - 6953 + - 6865 type: DeviceList - uid: 39 components: @@ -5278,11 +5280,11 @@ entities: parent: 2 type: Transform - devices: - - 5165 + - 5393 - 297 - - 5167 - - 6663 - - 6749 + - 5395 + - 6891 + - 6977 type: DeviceList - uid: 40 components: @@ -5290,11 +5292,11 @@ entities: parent: 2 type: Transform - devices: - - 5166 - - 5165 - - 6748 + - 5394 + - 5393 + - 6976 - 253 - - 6644 + - 6872 type: DeviceList - uid: 41 components: @@ -5304,14 +5306,14 @@ entities: type: Transform - devices: - 299 - - 5170 - - 5171 - - 5172 - - 5183 - - 5201 - - 5173 - - 5174 - - 5175 + - 5398 + - 5399 + - 5400 + - 5411 + - 5429 + - 5401 + - 5402 + - 5403 type: DeviceList - uid: 42 components: @@ -5319,13 +5321,13 @@ entities: parent: 2 type: Transform - devices: - - 5168 - - 5169 + - 5396 + - 5397 - 298 - - 6618 - - 6716 - - 5059 - - 5183 + - 6846 + - 6944 + - 5287 + - 5411 type: DeviceList - uid: 43 components: @@ -5334,11 +5336,11 @@ entities: parent: 2 type: Transform - devices: - - 5052 - - 5051 + - 5280 + - 5279 - 300 - - 6668 - - 6751 + - 6896 + - 6979 type: DeviceList - uid: 44 components: @@ -5348,11 +5350,11 @@ entities: type: Transform - devices: - 301 - - 5182 - - 5181 - - 5179 - - 5199 - - 5180 + - 5410 + - 5409 + - 5407 + - 5427 + - 5408 type: DeviceList - uid: 45 components: @@ -5360,13 +5362,13 @@ entities: parent: 2 type: Transform - devices: - - 5191 - - 5190 + - 5419 + - 5418 - 302 - - 6670 - - 6757 - - 5143 - - 5070 + - 6898 + - 6985 + - 5371 + - 5298 type: DeviceList - uid: 46 components: @@ -5374,13 +5376,13 @@ entities: parent: 2 type: Transform - devices: - - 5191 - - 5190 + - 5419 + - 5418 - 272 - - 5163 - - 5162 - - 6717 - - 6626 + - 5391 + - 5390 + - 6945 + - 6854 type: DeviceList - uid: 47 components: @@ -5389,10 +5391,10 @@ entities: parent: 2 type: Transform - devices: - - 5066 - - 5098 - - 6659 - - 6747 + - 5294 + - 5326 + - 6887 + - 6975 type: DeviceList - uid: 48 components: @@ -5401,13 +5403,13 @@ entities: parent: 2 type: Transform - devices: - - 5060 - - 5043 - - 5044 - - 5192 + - 5288 + - 5271 + - 5272 + - 5420 - 303 - - 6677 - - 6763 + - 6905 + - 6991 type: DeviceList - uid: 49 components: @@ -5416,15 +5418,15 @@ entities: parent: 2 type: Transform - devices: - - 5054 - - 5193 + - 5282 + - 5421 - 284 - - 5082 - - 5083 - - 5084 - - 5145 - - 6616 - - 6714 + - 5310 + - 5311 + - 5312 + - 5373 + - 6844 + - 6942 type: DeviceList - uid: 50 components: @@ -5433,20 +5435,20 @@ entities: parent: 2 type: Transform - devices: - - 5099 - - 5100 - - 5069 - - 5194 - - 5060 - - 5043 - - 5119 - - 5118 - - 5075 - - 5074 - - 5073 + - 5327 + - 5328 + - 5297 + - 5422 + - 5288 + - 5271 + - 5347 + - 5346 + - 5303 + - 5302 + - 5301 - 256 - - 6705 - - 6613 + - 6933 + - 6841 type: DeviceList - uid: 51 components: @@ -5455,12 +5457,12 @@ entities: parent: 2 type: Transform - devices: - - 5177 - - 5178 + - 5405 + - 5406 - 266 - - 6608 - - 6698 - - 5062 + - 6836 + - 6926 + - 5290 type: DeviceList - uid: 52 components: @@ -5479,9 +5481,9 @@ entities: type: Transform - devices: - 307 - - 5195 - - 6653 - - 6699 + - 5423 + - 6881 + - 6927 type: DeviceList - uid: 54 components: @@ -5490,13 +5492,13 @@ entities: parent: 2 type: Transform - devices: - - 5071 - - 5125 - - 5115 - - 6646 - - 6736 - - 5068 - - 5195 + - 5299 + - 5353 + - 5343 + - 6874 + - 6964 + - 5296 + - 5423 - 255 type: DeviceList - uid: 55 @@ -5505,11 +5507,11 @@ entities: parent: 2 type: Transform - devices: - - 6645 - - 6769 - - 5064 - - 5094 - - 5095 + - 6873 + - 6997 + - 5292 + - 5322 + - 5323 type: DeviceList - uid: 56 components: @@ -5517,10 +5519,10 @@ entities: parent: 2 type: Transform - devices: - - 6640 - - 6752 - - 5094 - - 5095 + - 6868 + - 6980 + - 5322 + - 5323 type: DeviceList - uid: 57 components: @@ -5551,17 +5553,17 @@ entities: parent: 2 type: Transform - ShutdownSubscribers: - - 5202 - - 5038 + - 5430 + - 5265 type: DeviceNetwork - devices: - - 5038 - - 5047 - - 5046 - - 6773 - - 6689 + - 5265 + - 5275 + - 5274 + - 7001 + - 6917 - 310 - - 5202 + - 5430 type: DeviceList - uid: 60 components: @@ -5570,18 +5572,18 @@ entities: parent: 2 type: Transform - ShutdownSubscribers: - - 5048 - - 5039 + - 5276 + - 5266 type: DeviceNetwork - devices: - - 6703 - - 6607 - - 5203 - - 5204 - - 5205 - - 5206 - - 5039 - - 5048 + - 6931 + - 6835 + - 5431 + - 5432 + - 5433 + - 5434 + - 5266 + - 5276 type: DeviceList - uid: 61 components: @@ -5592,20 +5594,20 @@ entities: - 315 type: DeviceNetwork - devices: - - 6685 - - 6691 + - 6913 + - 6919 - 312 - - 6694 - - 6604 + - 6922 + - 6832 - 313 - - 6687 - - 6692 - - 6686 - - 6693 - - 5058 - - 5209 - - 5210 - - 5211 + - 6915 + - 6920 + - 6914 + - 6921 + - 5286 + - 5437 + - 5438 + - 5439 - 314 - 315 type: DeviceList @@ -5634,7 +5636,7 @@ entities: parent: 2 type: Transform - links: - - 8452 + - 8683 type: DeviceLinkSink - uid: 66 components: @@ -5657,7 +5659,7 @@ entities: parent: 2 type: Transform - links: - - 8451 + - 8682 type: DeviceLinkSink - uid: 70 components: @@ -5665,7 +5667,7 @@ entities: parent: 2 type: Transform - links: - - 8450 + - 8681 type: DeviceLinkSink - proto: AirlockArmoryGlassLocked entities: @@ -6737,7 +6739,7 @@ entities: parent: 2 type: Transform - links: - - 1387 + - 1611 type: DeviceLinkSink - uid: 245 components: @@ -7143,7 +7145,7 @@ entities: - ShutdownSubscribers: - 61 type: DeviceNetwork -- proto: AltarTechnology +- proto: AltarSpawner entities: - uid: 316 components: @@ -11440,154 +11442,1274 @@ entities: - pos: 10.5,40.5 parent: 2 type: Transform + - uid: 1165 + components: + - pos: -33.5,-31.5 + parent: 2 + type: Transform + - uid: 1166 + components: + - pos: -34.5,-31.5 + parent: 2 + type: Transform + - uid: 1167 + components: + - pos: -35.5,-31.5 + parent: 2 + type: Transform + - uid: 1168 + components: + - pos: -36.5,-31.5 + parent: 2 + type: Transform + - uid: 1169 + components: + - pos: -32.5,-31.5 + parent: 2 + type: Transform + - uid: 1170 + components: + - pos: -31.5,-31.5 + parent: 2 + type: Transform + - uid: 1171 + components: + - pos: -30.5,-31.5 + parent: 2 + type: Transform + - uid: 1172 + components: + - pos: -29.5,-31.5 + parent: 2 + type: Transform + - uid: 1173 + components: + - pos: -28.5,-31.5 + parent: 2 + type: Transform + - uid: 1174 + components: + - pos: -27.5,-31.5 + parent: 2 + type: Transform + - uid: 1175 + components: + - pos: -26.5,-31.5 + parent: 2 + type: Transform + - uid: 1176 + components: + - pos: -25.5,-31.5 + parent: 2 + type: Transform + - uid: 1177 + components: + - pos: -24.5,-31.5 + parent: 2 + type: Transform + - uid: 1178 + components: + - pos: -24.5,-30.5 + parent: 2 + type: Transform + - uid: 1179 + components: + - pos: -25.5,-30.5 + parent: 2 + type: Transform + - uid: 1180 + components: + - pos: -26.5,-30.5 + parent: 2 + type: Transform + - uid: 1181 + components: + - pos: -27.5,-30.5 + parent: 2 + type: Transform + - uid: 1182 + components: + - pos: -28.5,-30.5 + parent: 2 + type: Transform + - uid: 1183 + components: + - pos: -29.5,-30.5 + parent: 2 + type: Transform + - uid: 1184 + components: + - pos: -30.5,-30.5 + parent: 2 + type: Transform + - uid: 1185 + components: + - pos: -31.5,-30.5 + parent: 2 + type: Transform + - uid: 1186 + components: + - pos: -32.5,-30.5 + parent: 2 + type: Transform + - uid: 1187 + components: + - pos: -33.5,-30.5 + parent: 2 + type: Transform + - uid: 1188 + components: + - pos: -35.5,-32.5 + parent: 2 + type: Transform + - uid: 1189 + components: + - pos: -30.5,-29.5 + parent: 2 + type: Transform + - uid: 1190 + components: + - pos: -32.5,-29.5 + parent: 2 + type: Transform + - uid: 1191 + components: + - pos: -34.5,-32.5 + parent: 2 + type: Transform + - uid: 1192 + components: + - pos: -33.5,-32.5 + parent: 2 + type: Transform + - uid: 1193 + components: + - pos: -32.5,-32.5 + parent: 2 + type: Transform + - uid: 1194 + components: + - pos: -31.5,-32.5 + parent: 2 + type: Transform + - uid: 1195 + components: + - pos: -30.5,-32.5 + parent: 2 + type: Transform + - uid: 1196 + components: + - pos: -29.5,-32.5 + parent: 2 + type: Transform + - uid: 1197 + components: + - pos: -28.5,-32.5 + parent: 2 + type: Transform + - uid: 1198 + components: + - pos: -27.5,-32.5 + parent: 2 + type: Transform + - uid: 1199 + components: + - pos: -26.5,-32.5 + parent: 2 + type: Transform + - uid: 1200 + components: + - pos: -25.5,-32.5 + parent: 2 + type: Transform + - uid: 1201 + components: + - pos: -24.5,-32.5 + parent: 2 + type: Transform + - uid: 1202 + components: + - pos: -23.5,-33.5 + parent: 2 + type: Transform + - uid: 1203 + components: + - pos: -24.5,-33.5 + parent: 2 + type: Transform + - uid: 1204 + components: + - pos: -25.5,-33.5 + parent: 2 + type: Transform + - uid: 1205 + components: + - pos: -26.5,-33.5 + parent: 2 + type: Transform + - uid: 1206 + components: + - pos: -27.5,-33.5 + parent: 2 + type: Transform + - uid: 1207 + components: + - pos: -28.5,-33.5 + parent: 2 + type: Transform + - uid: 1208 + components: + - pos: -29.5,-33.5 + parent: 2 + type: Transform + - uid: 1209 + components: + - pos: -30.5,-33.5 + parent: 2 + type: Transform + - uid: 1210 + components: + - pos: -31.5,-33.5 + parent: 2 + type: Transform + - uid: 1211 + components: + - pos: -32.5,-33.5 + parent: 2 + type: Transform + - uid: 1212 + components: + - pos: -33.5,-33.5 + parent: 2 + type: Transform + - uid: 1213 + components: + - pos: -34.5,-33.5 + parent: 2 + type: Transform + - uid: 1214 + components: + - pos: -34.5,-34.5 + parent: 2 + type: Transform + - uid: 1215 + components: + - pos: -34.5,-35.5 + parent: 2 + type: Transform + - uid: 1216 + components: + - pos: -33.5,-34.5 + parent: 2 + type: Transform + - uid: 1217 + components: + - pos: -33.5,-35.5 + parent: 2 + type: Transform + - uid: 1218 + components: + - pos: -32.5,-34.5 + parent: 2 + type: Transform + - uid: 1219 + components: + - pos: -32.5,-35.5 + parent: 2 + type: Transform + - uid: 1220 + components: + - pos: -31.5,-34.5 + parent: 2 + type: Transform + - uid: 1221 + components: + - pos: -31.5,-35.5 + parent: 2 + type: Transform + - uid: 1222 + components: + - pos: -30.5,-34.5 + parent: 2 + type: Transform + - uid: 1223 + components: + - pos: -30.5,-35.5 + parent: 2 + type: Transform + - uid: 1224 + components: + - pos: -29.5,-34.5 + parent: 2 + type: Transform + - uid: 1225 + components: + - pos: -29.5,-35.5 + parent: 2 + type: Transform + - uid: 1226 + components: + - pos: -28.5,-34.5 + parent: 2 + type: Transform + - uid: 1227 + components: + - pos: -28.5,-35.5 + parent: 2 + type: Transform + - uid: 1228 + components: + - pos: -27.5,-34.5 + parent: 2 + type: Transform + - uid: 1229 + components: + - pos: -27.5,-35.5 + parent: 2 + type: Transform + - uid: 1230 + components: + - pos: -26.5,-34.5 + parent: 2 + type: Transform + - uid: 1231 + components: + - pos: -26.5,-35.5 + parent: 2 + type: Transform + - uid: 1232 + components: + - pos: -25.5,-34.5 + parent: 2 + type: Transform + - uid: 1233 + components: + - pos: -25.5,-35.5 + parent: 2 + type: Transform + - uid: 1234 + components: + - pos: -24.5,-34.5 + parent: 2 + type: Transform + - uid: 1235 + components: + - pos: -24.5,-35.5 + parent: 2 + type: Transform + - uid: 1236 + components: + - pos: -23.5,-34.5 + parent: 2 + type: Transform + - uid: 1237 + components: + - pos: -23.5,-35.5 + parent: 2 + type: Transform + - uid: 1238 + components: + - pos: -22.5,-34.5 + parent: 2 + type: Transform + - uid: 1239 + components: + - pos: -22.5,-35.5 + parent: 2 + type: Transform + - uid: 1240 + components: + - pos: -22.5,-36.5 + parent: 2 + type: Transform + - uid: 1241 + components: + - pos: -22.5,-37.5 + parent: 2 + type: Transform + - uid: 1242 + components: + - pos: -22.5,-38.5 + parent: 2 + type: Transform + - uid: 1243 + components: + - pos: -23.5,-36.5 + parent: 2 + type: Transform + - uid: 1244 + components: + - pos: -23.5,-37.5 + parent: 2 + type: Transform + - uid: 1245 + components: + - pos: -23.5,-38.5 + parent: 2 + type: Transform + - uid: 1246 + components: + - pos: -24.5,-36.5 + parent: 2 + type: Transform + - uid: 1247 + components: + - pos: -24.5,-37.5 + parent: 2 + type: Transform + - uid: 1248 + components: + - pos: -24.5,-38.5 + parent: 2 + type: Transform + - uid: 1249 + components: + - pos: -25.5,-36.5 + parent: 2 + type: Transform + - uid: 1250 + components: + - pos: -25.5,-37.5 + parent: 2 + type: Transform + - uid: 1251 + components: + - pos: -25.5,-38.5 + parent: 2 + type: Transform + - uid: 1252 + components: + - pos: -26.5,-36.5 + parent: 2 + type: Transform + - uid: 1253 + components: + - pos: -26.5,-37.5 + parent: 2 + type: Transform + - uid: 1254 + components: + - pos: -26.5,-38.5 + parent: 2 + type: Transform + - uid: 1255 + components: + - pos: -27.5,-36.5 + parent: 2 + type: Transform + - uid: 1256 + components: + - pos: -27.5,-37.5 + parent: 2 + type: Transform + - uid: 1257 + components: + - pos: -27.5,-38.5 + parent: 2 + type: Transform + - uid: 1258 + components: + - pos: -28.5,-36.5 + parent: 2 + type: Transform + - uid: 1259 + components: + - pos: -28.5,-37.5 + parent: 2 + type: Transform + - uid: 1260 + components: + - pos: -28.5,-38.5 + parent: 2 + type: Transform + - uid: 1261 + components: + - pos: -29.5,-36.5 + parent: 2 + type: Transform + - uid: 1262 + components: + - pos: -29.5,-37.5 + parent: 2 + type: Transform + - uid: 1263 + components: + - pos: -29.5,-38.5 + parent: 2 + type: Transform + - uid: 1264 + components: + - pos: -30.5,-36.5 + parent: 2 + type: Transform + - uid: 1265 + components: + - pos: -30.5,-37.5 + parent: 2 + type: Transform + - uid: 1266 + components: + - pos: -30.5,-38.5 + parent: 2 + type: Transform + - uid: 1267 + components: + - pos: -29.5,-39.5 + parent: 2 + type: Transform + - uid: 1268 + components: + - pos: -28.5,-39.5 + parent: 2 + type: Transform + - uid: 1269 + components: + - pos: -27.5,-39.5 + parent: 2 + type: Transform + - uid: 1270 + components: + - pos: -26.5,-39.5 + parent: 2 + type: Transform + - uid: 1271 + components: + - pos: -25.5,-39.5 + parent: 2 + type: Transform + - uid: 1272 + components: + - pos: -24.5,-39.5 + parent: 2 + type: Transform + - uid: 1273 + components: + - pos: -23.5,-39.5 + parent: 2 + type: Transform + - uid: 1274 + components: + - pos: -24.5,-40.5 + parent: 2 + type: Transform + - uid: 1275 + components: + - pos: -24.5,-41.5 + parent: 2 + type: Transform + - uid: 1276 + components: + - pos: -24.5,-42.5 + parent: 2 + type: Transform + - uid: 1277 + components: + - pos: -25.5,-40.5 + parent: 2 + type: Transform + - uid: 1278 + components: + - pos: -25.5,-41.5 + parent: 2 + type: Transform + - uid: 1279 + components: + - pos: -25.5,-42.5 + parent: 2 + type: Transform + - uid: 1280 + components: + - pos: -26.5,-40.5 + parent: 2 + type: Transform + - uid: 1281 + components: + - pos: -26.5,-41.5 + parent: 2 + type: Transform + - uid: 1282 + components: + - pos: -26.5,-42.5 + parent: 2 + type: Transform + - uid: 1283 + components: + - pos: -27.5,-40.5 + parent: 2 + type: Transform + - uid: 1284 + components: + - pos: -27.5,-41.5 + parent: 2 + type: Transform + - uid: 1285 + components: + - pos: -27.5,-42.5 + parent: 2 + type: Transform + - uid: 1286 + components: + - pos: -28.5,-40.5 + parent: 2 + type: Transform + - uid: 1287 + components: + - pos: -28.5,-41.5 + parent: 2 + type: Transform + - uid: 1288 + components: + - pos: -28.5,-42.5 + parent: 2 + type: Transform + - uid: 1289 + components: + - pos: -29.5,-42.5 + parent: 2 + type: Transform + - uid: 1290 + components: + - pos: -29.5,-41.5 + parent: 2 + type: Transform + - uid: 1291 + components: + - pos: -30.5,-42.5 + parent: 2 + type: Transform + - uid: 1292 + components: + - pos: -30.5,-41.5 + parent: 2 + type: Transform + - uid: 1293 + components: + - pos: -31.5,-42.5 + parent: 2 + type: Transform + - uid: 1294 + components: + - pos: -31.5,-41.5 + parent: 2 + type: Transform + - uid: 1295 + components: + - pos: -32.5,-42.5 + parent: 2 + type: Transform + - uid: 1296 + components: + - pos: -32.5,-41.5 + parent: 2 + type: Transform + - uid: 1297 + components: + - pos: -33.5,-42.5 + parent: 2 + type: Transform + - uid: 1298 + components: + - pos: -33.5,-41.5 + parent: 2 + type: Transform + - uid: 1299 + components: + - pos: -34.5,-42.5 + parent: 2 + type: Transform + - uid: 1300 + components: + - pos: -34.5,-41.5 + parent: 2 + type: Transform + - uid: 1301 + components: + - pos: -35.5,-42.5 + parent: 2 + type: Transform + - uid: 1302 + components: + - pos: -35.5,-41.5 + parent: 2 + type: Transform + - uid: 1303 + components: + - pos: -36.5,-42.5 + parent: 2 + type: Transform + - uid: 1304 + components: + - pos: -36.5,-41.5 + parent: 2 + type: Transform + - uid: 1305 + components: + - pos: -37.5,-41.5 + parent: 2 + type: Transform + - uid: 1306 + components: + - pos: -36.5,-40.5 + parent: 2 + type: Transform + - uid: 1307 + components: + - pos: -36.5,-39.5 + parent: 2 + type: Transform + - uid: 1308 + components: + - pos: -36.5,-38.5 + parent: 2 + type: Transform + - uid: 1309 + components: + - pos: -36.5,-37.5 + parent: 2 + type: Transform + - uid: 1310 + components: + - pos: -35.5,-38.5 + parent: 2 + type: Transform + - uid: 1311 + components: + - pos: -35.5,-39.5 + parent: 2 + type: Transform + - uid: 1312 + components: + - pos: -35.5,-40.5 + parent: 2 + type: Transform + - uid: 1313 + components: + - pos: -34.5,-40.5 + parent: 2 + type: Transform + - uid: 1314 + components: + - pos: -34.5,-39.5 + parent: 2 + type: Transform + - uid: 1315 + components: + - pos: -33.5,-40.5 + parent: 2 + type: Transform + - uid: 1316 + components: + - pos: -20.5,-33.5 + parent: 2 + type: Transform + - uid: 1317 + components: + - pos: -20.5,-32.5 + parent: 2 + type: Transform + - uid: 1318 + components: + - pos: -20.5,-31.5 + parent: 2 + type: Transform + - uid: 1319 + components: + - pos: -20.5,-30.5 + parent: 2 + type: Transform + - uid: 1320 + components: + - pos: -20.5,-29.5 + parent: 2 + type: Transform + - uid: 1321 + components: + - pos: -19.5,-34.5 + parent: 2 + type: Transform + - uid: 1322 + components: + - pos: -19.5,-33.5 + parent: 2 + type: Transform + - uid: 1323 + components: + - pos: -19.5,-32.5 + parent: 2 + type: Transform + - uid: 1324 + components: + - pos: -19.5,-31.5 + parent: 2 + type: Transform + - uid: 1325 + components: + - pos: -19.5,-30.5 + parent: 2 + type: Transform + - uid: 1326 + components: + - pos: -19.5,-29.5 + parent: 2 + type: Transform + - uid: 1327 + components: + - pos: -19.5,-28.5 + parent: 2 + type: Transform + - uid: 1328 + components: + - pos: -19.5,-35.5 + parent: 2 + type: Transform + - uid: 1329 + components: + - pos: -21.5,-29.5 + parent: 2 + type: Transform + - uid: 1330 + components: + - pos: -21.5,-30.5 + parent: 2 + type: Transform + - uid: 1331 + components: + - pos: -18.5,-34.5 + parent: 2 + type: Transform + - uid: 1332 + components: + - pos: -18.5,-35.5 + parent: 2 + type: Transform + - uid: 1333 + components: + - pos: -17.5,-34.5 + parent: 2 + type: Transform + - uid: 1334 + components: + - pos: -17.5,-35.5 + parent: 2 + type: Transform + - uid: 1335 + components: + - pos: -17.5,-33.5 + parent: 2 + type: Transform + - uid: 1336 + components: + - pos: -17.5,-32.5 + parent: 2 + type: Transform + - uid: 1337 + components: + - pos: -17.5,-31.5 + parent: 2 + type: Transform + - uid: 1338 + components: + - pos: -17.5,-30.5 + parent: 2 + type: Transform + - uid: 1339 + components: + - pos: -17.5,-29.5 + parent: 2 + type: Transform + - uid: 1340 + components: + - pos: -17.5,-28.5 + parent: 2 + type: Transform + - uid: 1341 + components: + - pos: -17.5,-27.5 + parent: 2 + type: Transform + - uid: 1342 + components: + - pos: -17.5,-26.5 + parent: 2 + type: Transform + - uid: 1343 + components: + - pos: -18.5,-33.5 + parent: 2 + type: Transform + - uid: 1344 + components: + - pos: -18.5,-32.5 + parent: 2 + type: Transform + - uid: 1345 + components: + - pos: -18.5,-31.5 + parent: 2 + type: Transform + - uid: 1346 + components: + - pos: -18.5,-30.5 + parent: 2 + type: Transform + - uid: 1347 + components: + - pos: -18.5,-29.5 + parent: 2 + type: Transform + - uid: 1348 + components: + - pos: -18.5,-28.5 + parent: 2 + type: Transform + - uid: 1349 + components: + - pos: -18.5,-27.5 + parent: 2 + type: Transform + - uid: 1350 + components: + - pos: -18.5,-26.5 + parent: 2 + type: Transform + - uid: 1351 + components: + - pos: -18.5,-36.5 + parent: 2 + type: Transform + - uid: 1352 + components: + - pos: -18.5,-37.5 + parent: 2 + type: Transform + - uid: 1353 + components: + - pos: -18.5,-38.5 + parent: 2 + type: Transform + - uid: 1354 + components: + - pos: -18.5,-39.5 + parent: 2 + type: Transform + - uid: 1355 + components: + - pos: -18.5,-40.5 + parent: 2 + type: Transform + - uid: 1356 + components: + - pos: -18.5,-41.5 + parent: 2 + type: Transform + - uid: 1357 + components: + - pos: -18.5,-42.5 + parent: 2 + type: Transform + - uid: 1358 + components: + - pos: -17.5,-36.5 + parent: 2 + type: Transform + - uid: 1359 + components: + - pos: -17.5,-37.5 + parent: 2 + type: Transform + - uid: 1360 + components: + - pos: -17.5,-38.5 + parent: 2 + type: Transform + - uid: 1361 + components: + - pos: -17.5,-39.5 + parent: 2 + type: Transform + - uid: 1362 + components: + - pos: -17.5,-40.5 + parent: 2 + type: Transform + - uid: 1363 + components: + - pos: -17.5,-41.5 + parent: 2 + type: Transform + - uid: 1364 + components: + - pos: -17.5,-42.5 + parent: 2 + type: Transform + - uid: 1365 + components: + - pos: -16.5,-42.5 + parent: 2 + type: Transform + - uid: 1366 + components: + - pos: -16.5,-41.5 + parent: 2 + type: Transform + - uid: 1367 + components: + - pos: -15.5,-42.5 + parent: 2 + type: Transform + - uid: 1368 + components: + - pos: -15.5,-41.5 + parent: 2 + type: Transform + - uid: 1369 + components: + - pos: -14.5,-42.5 + parent: 2 + type: Transform + - uid: 1370 + components: + - pos: -14.5,-41.5 + parent: 2 + type: Transform + - uid: 1371 + components: + - pos: -13.5,-42.5 + parent: 2 + type: Transform + - uid: 1372 + components: + - pos: -13.5,-41.5 + parent: 2 + type: Transform + - uid: 1373 + components: + - pos: -12.5,-42.5 + parent: 2 + type: Transform + - uid: 1374 + components: + - pos: -12.5,-41.5 + parent: 2 + type: Transform + - uid: 1375 + components: + - pos: -11.5,-42.5 + parent: 2 + type: Transform + - uid: 1376 + components: + - pos: -11.5,-41.5 + parent: 2 + type: Transform + - uid: 1377 + components: + - pos: -10.5,-41.5 + parent: 2 + type: Transform + - uid: 1378 + components: + - pos: -10.5,-42.5 + parent: 2 + type: Transform + - uid: 1379 + components: + - pos: -19.5,-42.5 + parent: 2 + type: Transform + - uid: 1380 + components: + - pos: -19.5,-41.5 + parent: 2 + type: Transform + - uid: 1381 + components: + - pos: -20.5,-42.5 + parent: 2 + type: Transform + - uid: 1382 + components: + - pos: -20.5,-41.5 + parent: 2 + type: Transform + - uid: 1383 + components: + - pos: -21.5,-42.5 + parent: 2 + type: Transform + - uid: 1384 + components: + - pos: -21.5,-41.5 + parent: 2 + type: Transform + - uid: 1385 + components: + - pos: -22.5,-42.5 + parent: 2 + type: Transform + - uid: 1386 + components: + - pos: -22.5,-41.5 + parent: 2 + type: Transform + - uid: 1387 + components: + - pos: -23.5,-42.5 + parent: 2 + type: Transform + - uid: 1388 + components: + - pos: -23.5,-41.5 + parent: 2 + type: Transform - proto: AtmosFixFreezerMarker entities: - - uid: 1165 + - uid: 1389 components: - pos: -7.5,2.5 parent: 2 type: Transform - - uid: 1166 + - uid: 1390 components: - pos: -7.5,1.5 parent: 2 type: Transform - - uid: 1167 + - uid: 1391 components: - pos: -7.5,0.5 parent: 2 type: Transform - - uid: 1168 + - uid: 1392 components: - pos: -6.5,1.5 parent: 2 type: Transform - - uid: 1169 + - uid: 1393 components: - pos: -6.5,2.5 parent: 2 type: Transform - - uid: 1170 + - uid: 1394 components: - pos: -6.5,0.5 parent: 2 type: Transform - proto: AtmosFixNitrogenMarker entities: - - uid: 1171 + - uid: 1395 components: - pos: 23.5,37.5 parent: 2 type: Transform - - uid: 1172 + - uid: 1396 components: - pos: 23.5,39.5 parent: 2 type: Transform - - uid: 1173 + - uid: 1397 components: - pos: 23.5,38.5 parent: 2 type: Transform - proto: AtmosFixOxygenMarker entities: - - uid: 1174 + - uid: 1398 components: - pos: 21.5,39.5 parent: 2 type: Transform - - uid: 1175 + - uid: 1399 components: - pos: 21.5,37.5 parent: 2 type: Transform - - uid: 1176 + - uid: 1400 components: - pos: 21.5,38.5 parent: 2 type: Transform - proto: AtmosFixPlasmaMarker entities: - - uid: 1177 + - uid: 1401 components: - pos: 25.5,38.5 parent: 2 type: Transform - - uid: 1178 + - uid: 1402 components: - pos: 25.5,37.5 parent: 2 type: Transform - - uid: 1179 + - uid: 1403 components: - pos: 25.5,39.5 parent: 2 type: Transform - proto: Autolathe entities: - - uid: 1180 + - uid: 1404 components: - pos: 13.5,14.5 parent: 2 type: Transform - - uid: 1181 + - uid: 1405 components: - pos: 13.5,-2.5 parent: 2 type: Transform - proto: Barricade entities: - - uid: 1182 + - uid: 1406 components: - pos: -15.5,18.5 parent: 2 type: Transform - - uid: 1183 + - uid: 1407 components: - rot: 3.141592653589793 rad pos: -25.5,21.5 parent: 2 type: Transform - - uid: 1184 + - uid: 1408 components: - pos: 24.5,9.5 parent: 2 type: Transform - - uid: 1185 + - uid: 1409 components: - pos: 25.5,9.5 parent: 2 type: Transform - - uid: 1186 + - uid: 1410 components: - rot: 3.141592653589793 rad pos: 30.5,23.5 parent: 2 type: Transform - - uid: 1187 + - uid: 1411 components: - rot: 3.141592653589793 rad pos: -26.5,19.5 parent: 2 type: Transform - - uid: 1188 + - uid: 1412 components: - pos: 27.5,16.5 parent: 2 type: Transform - - uid: 1189 + - uid: 1413 components: - rot: -1.5707963267948966 rad pos: 27.5,-12.5 parent: 2 type: Transform - - uid: 1190 + - uid: 1414 components: - rot: -1.5707963267948966 rad pos: 28.5,-10.5 parent: 2 type: Transform - - uid: 1191 + - uid: 1415 components: - rot: -1.5707963267948966 rad pos: 28.5,-9.5 @@ -11595,74 +12717,74 @@ entities: type: Transform - proto: BarricadeBlock entities: - - uid: 1192 + - uid: 1416 components: - rot: -1.5707963267948966 rad pos: 24.5,-8.5 parent: 2 type: Transform - - uid: 1193 + - uid: 1417 components: - rot: -1.5707963267948966 rad pos: 26.5,9.5 parent: 2 type: Transform - - uid: 1194 + - uid: 1418 components: - rot: -1.5707963267948966 rad pos: 30.5,22.5 parent: 2 type: Transform - - uid: 1195 + - uid: 1419 components: - pos: 26.5,-12.5 parent: 2 type: Transform - proto: BarricadeDirectional entities: - - uid: 1196 + - uid: 1420 components: - rot: 3.141592653589793 rad pos: 34.5,21.5 parent: 2 type: Transform - - uid: 1197 + - uid: 1421 components: - rot: 3.141592653589793 rad pos: 35.5,21.5 parent: 2 type: Transform - - uid: 1198 + - uid: 1422 components: - rot: 3.141592653589793 rad pos: 36.5,21.5 parent: 2 type: Transform - - uid: 1199 + - uid: 1423 components: - rot: 3.141592653589793 rad pos: 37.5,21.5 parent: 2 type: Transform - - uid: 1200 + - uid: 1424 components: - rot: -1.5707963267948966 rad pos: 34.5,21.5 parent: 2 type: Transform - - uid: 1201 + - uid: 1425 components: - rot: 1.5707963267948966 rad pos: 37.5,21.5 parent: 2 type: Transform - - uid: 1202 + - uid: 1426 components: - rot: -1.5707963267948966 rad pos: 34.5,20.5 parent: 2 type: Transform - - uid: 1203 + - uid: 1427 components: - rot: 1.5707963267948966 rad pos: 28.5,-11.5 @@ -11670,449 +12792,449 @@ entities: type: Transform - proto: BarSign entities: - - uid: 1204 + - uid: 1428 components: - pos: 36.5,18.5 parent: 2 type: Transform - proto: BarSignMalteseFalcon entities: - - uid: 1205 + - uid: 1429 components: - pos: -8.5,-9.5 parent: 2 type: Transform - proto: BasaltRandom entities: - - uid: 1206 + - uid: 1430 components: - pos: 33.5,45.5 parent: 2 type: Transform - - uid: 1207 + - uid: 1431 components: - pos: 28.5,46.5 parent: 2 type: Transform - - uid: 1208 + - uid: 1432 components: - pos: 35.5,44.5 parent: 2 type: Transform - - uid: 1209 + - uid: 1433 components: - pos: 32.5,42.5 parent: 2 type: Transform - - uid: 1210 + - uid: 1434 components: - pos: 34.5,44.5 parent: 2 type: Transform - - uid: 1211 + - uid: 1435 components: - pos: 34.5,43.5 parent: 2 type: Transform - - uid: 1212 + - uid: 1436 components: - pos: 34.5,45.5 parent: 2 type: Transform - - uid: 1213 + - uid: 1437 components: - pos: 33.5,43.5 parent: 2 type: Transform - - uid: 1214 + - uid: 1438 components: - pos: 35.5,45.5 parent: 2 type: Transform - - uid: 1215 + - uid: 1439 components: - pos: 30.5,43.5 parent: 2 type: Transform - - uid: 1216 + - uid: 1440 components: - pos: 30.5,44.5 parent: 2 type: Transform - - uid: 1217 + - uid: 1441 components: - pos: 31.5,48.5 parent: 2 type: Transform - - uid: 1218 + - uid: 1442 components: - pos: 28.5,45.5 parent: 2 type: Transform - - uid: 1219 + - uid: 1443 components: - pos: 30.5,47.5 parent: 2 type: Transform - - uid: 1220 + - uid: 1444 components: - pos: 31.5,47.5 parent: 2 type: Transform - - uid: 1221 + - uid: 1445 components: - pos: 34.5,47.5 parent: 2 type: Transform - - uid: 1222 + - uid: 1446 components: - pos: 33.5,47.5 parent: 2 type: Transform - - uid: 1223 + - uid: 1447 components: - pos: 32.5,47.5 parent: 2 type: Transform - - uid: 1224 + - uid: 1448 components: - pos: 31.5,46.5 parent: 2 type: Transform - - uid: 1225 + - uid: 1449 components: - pos: 32.5,45.5 parent: 2 type: Transform - - uid: 1226 + - uid: 1450 components: - pos: 31.5,43.5 parent: 2 type: Transform - - uid: 1227 + - uid: 1451 components: - pos: 31.5,44.5 parent: 2 type: Transform - - uid: 1228 + - uid: 1452 components: - pos: 34.5,46.5 parent: 2 type: Transform - - uid: 1229 + - uid: 1453 components: - pos: 29.5,46.5 parent: 2 type: Transform - - uid: 1230 + - uid: 1454 components: - pos: 29.5,43.5 parent: 2 type: Transform - - uid: 1231 + - uid: 1455 components: - pos: 29.5,44.5 parent: 2 type: Transform - - uid: 1232 + - uid: 1456 components: - pos: 29.5,45.5 parent: 2 type: Transform - - uid: 1233 + - uid: 1457 components: - pos: 31.5,42.5 parent: 2 type: Transform - - uid: 1234 + - uid: 1458 components: - pos: 30.5,42.5 parent: 2 type: Transform - - uid: 1235 + - uid: 1459 components: - pos: 29.5,47.5 parent: 2 type: Transform - - uid: 1236 + - uid: 1460 components: - pos: -30.5,-34.5 parent: 2 type: Transform - - uid: 1237 + - uid: 1461 components: - pos: -29.5,-34.5 parent: 2 type: Transform - - uid: 1238 + - uid: 1462 components: - pos: -28.5,-33.5 parent: 2 type: Transform - - uid: 1239 + - uid: 1463 components: - pos: -28.5,-32.5 parent: 2 type: Transform - - uid: 1240 + - uid: 1464 components: - pos: -27.5,-32.5 parent: 2 type: Transform - - uid: 1241 + - uid: 1465 components: - pos: -26.5,-32.5 parent: 2 type: Transform - - uid: 1242 + - uid: 1466 components: - pos: -23.5,-33.5 parent: 2 type: Transform - - uid: 1243 + - uid: 1467 components: - pos: -23.5,-34.5 parent: 2 type: Transform - - uid: 1244 + - uid: 1468 components: - pos: -22.5,-34.5 parent: 2 type: Transform - - uid: 1245 + - uid: 1469 components: - pos: -22.5,-35.5 parent: 2 type: Transform - - uid: 1246 + - uid: 1470 components: - pos: -22.5,-36.5 parent: 2 type: Transform - - uid: 1247 + - uid: 1471 components: - pos: -22.5,-37.5 parent: 2 type: Transform - - uid: 1248 + - uid: 1472 components: - pos: -22.5,-38.5 parent: 2 type: Transform - - uid: 1249 + - uid: 1473 components: - pos: -23.5,-38.5 parent: 2 type: Transform - - uid: 1250 + - uid: 1474 components: - pos: -23.5,-39.5 parent: 2 type: Transform - - uid: 1251 + - uid: 1475 components: - pos: -26.5,-40.5 parent: 2 type: Transform - - uid: 1252 + - uid: 1476 components: - pos: -27.5,-40.5 parent: 2 type: Transform - - uid: 1253 + - uid: 1477 components: - pos: -28.5,-40.5 parent: 2 type: Transform - - uid: 1254 + - uid: 1478 components: - pos: -28.5,-39.5 parent: 2 type: Transform - - uid: 1255 + - uid: 1479 components: - pos: -29.5,-39.5 parent: 2 type: Transform - - uid: 1256 + - uid: 1480 components: - pos: -29.5,-38.5 parent: 2 type: Transform - - uid: 1257 + - uid: 1481 components: - pos: -30.5,-38.5 parent: 2 type: Transform - - uid: 1258 + - uid: 1482 components: - pos: -30.5,-37.5 parent: 2 type: Transform - - uid: 1259 + - uid: 1483 components: - pos: -30.5,-36.5 parent: 2 type: Transform - - uid: 1260 + - uid: 1484 components: - pos: -30.5,-35.5 parent: 2 type: Transform - proto: Bed entities: - - uid: 1261 + - uid: 1485 components: - pos: 18.5,-7.5 parent: 2 type: Transform - - uid: 1262 + - uid: 1486 components: - pos: -8.5,-10.5 parent: 2 type: Transform - - uid: 1263 + - uid: 1487 components: - pos: -23.5,22.5 parent: 2 type: Transform - - uid: 1264 + - uid: 1488 components: - pos: -17.5,-9.5 parent: 2 type: Transform - - uid: 1265 + - uid: 1489 components: - pos: -19.5,-9.5 parent: 2 type: Transform - - uid: 1266 + - uid: 1490 components: - pos: 12.5,-4.5 parent: 2 type: Transform - - uid: 1267 + - uid: 1491 components: - pos: -5.5,-28.5 parent: 2 type: Transform - - uid: 1268 + - uid: 1492 components: - pos: 15.5,-14.5 parent: 2 type: Transform - - uid: 1269 + - uid: 1493 components: - pos: 5.5,19.5 parent: 2 type: Transform - - uid: 1270 + - uid: 1494 components: - pos: 19.5,-26.5 parent: 2 type: Transform - - uid: 1271 + - uid: 1495 components: - pos: 19.5,-25.5 parent: 2 type: Transform - - uid: 1272 + - uid: 1496 components: - pos: 19.5,-27.5 parent: 2 type: Transform - - uid: 1273 + - uid: 1497 components: - pos: 25.5,15.5 parent: 2 type: Transform - - uid: 1274 + - uid: 1498 components: - pos: 25.5,-19.5 parent: 2 type: Transform - - uid: 1275 + - uid: 1499 components: - pos: -27.5,-22.5 parent: 2 type: Transform - - uid: 1276 + - uid: 1500 components: - pos: -29.5,-16.5 parent: 2 type: Transform - - uid: 1277 + - uid: 1501 components: - pos: -28.5,-26.5 parent: 2 type: Transform - - uid: 1278 + - uid: 1502 components: - pos: -9.5,27.5 parent: 2 type: Transform - - uid: 1279 + - uid: 1503 components: - pos: -2.5,37.5 parent: 2 type: Transform - - uid: 1280 + - uid: 1504 components: - pos: -33.5,27.5 parent: 2 type: Transform - - uid: 1281 + - uid: 1505 components: - pos: -33.5,24.5 parent: 2 type: Transform - - uid: 1282 + - uid: 1506 components: - pos: 22.5,-3.5 parent: 2 type: Transform - - uid: 1283 + - uid: 1507 components: - pos: -35.5,-28.5 parent: 2 type: Transform - - uid: 1284 + - uid: 1508 components: - pos: -27.5,-20.5 parent: 2 type: Transform - - uid: 1285 + - uid: 1509 components: - pos: -18.5,-21.5 parent: 2 type: Transform - proto: BedsheetBlack entities: - - uid: 1286 + - uid: 1510 components: - pos: -8.5,-10.5 parent: 2 type: Transform - - uid: 1287 + - uid: 1511 components: - pos: 5.5,19.5 parent: 2 type: Transform - - uid: 1288 + - uid: 1512 components: - pos: -35.5,-28.5 parent: 2 type: Transform - proto: BedsheetBlue entities: - - uid: 1289 + - uid: 1513 components: - pos: -33.5,27.5 parent: 2 type: Transform - proto: BedsheetBrown entities: - - uid: 1290 + - uid: 1514 components: - rot: -1.5707963267948966 rad pos: -18.5,-21.5 @@ -12120,28 +13242,28 @@ entities: type: Transform - proto: BedsheetCaptain entities: - - uid: 1291 + - uid: 1515 components: - pos: -5.5,-28.5 parent: 2 type: Transform - proto: BedsheetCE entities: - - uid: 1292 + - uid: 1516 components: - pos: 25.5,15.5 parent: 2 type: Transform - proto: BedsheetCMO entities: - - uid: 1293 + - uid: 1517 components: - pos: -23.5,22.5 parent: 2 type: Transform - proto: BedsheetHOP entities: - - uid: 1294 + - uid: 1518 components: - rot: -1.5707963267948966 rad pos: 12.5,-4.5 @@ -12149,48 +13271,48 @@ entities: type: Transform - proto: BedsheetHOS entities: - - uid: 1295 + - uid: 1519 components: - pos: 25.5,-19.5 parent: 2 type: Transform - proto: BedsheetMedical entities: - - uid: 1296 + - uid: 1520 components: - pos: -14.5,3.5 parent: 2 type: Transform - - uid: 1297 + - uid: 1521 components: - pos: -14.5,5.5 parent: 2 type: Transform - - uid: 1298 + - uid: 1522 components: - pos: -17.5,3.5 parent: 2 type: Transform - proto: BedsheetOrange entities: - - uid: 1299 + - uid: 1523 components: - pos: -19.5,-9.5 parent: 2 type: Transform - - uid: 1300 + - uid: 1524 components: - pos: -17.5,-9.5 parent: 2 type: Transform - - uid: 1301 + - uid: 1525 components: - pos: 22.5,-3.5 parent: 2 type: Transform - proto: BedsheetQM entities: - - uid: 1302 + - uid: 1526 components: - rot: 3.141592653589793 rad pos: 18.5,-7.5 @@ -12198,205 +13320,205 @@ entities: type: Transform - proto: BedsheetRD entities: - - uid: 1303 + - uid: 1527 components: - pos: -2.5,37.5 parent: 2 type: Transform - proto: BedsheetRed entities: - - uid: 1304 + - uid: 1528 components: - pos: 15.5,-14.5 parent: 2 type: Transform - - uid: 1305 + - uid: 1529 components: - pos: -33.5,24.5 parent: 2 type: Transform - proto: BedsheetSpawner entities: - - uid: 1306 + - uid: 1530 components: - pos: 19.5,-26.5 parent: 2 type: Transform - - uid: 1307 + - uid: 1531 components: - pos: 19.5,-25.5 parent: 2 type: Transform - - uid: 1308 + - uid: 1532 components: - pos: 19.5,-27.5 parent: 2 type: Transform - - uid: 1309 + - uid: 1533 components: - pos: -28.5,-26.5 parent: 2 type: Transform - - uid: 1310 + - uid: 1534 components: - pos: -27.5,-22.5 parent: 2 type: Transform - - uid: 1311 + - uid: 1535 components: - pos: -29.5,-16.5 parent: 2 type: Transform - - uid: 1312 + - uid: 1536 components: - pos: -9.5,27.5 parent: 2 type: Transform - - uid: 1313 + - uid: 1537 components: - pos: -27.5,-20.5 parent: 2 type: Transform - proto: BikeHornInstrument entities: - - uid: 1314 + - uid: 1538 components: - pos: -0.17386371,-11.409639 parent: 2 type: Transform - proto: BiomassReclaimer entities: - - uid: 1315 + - uid: 1539 components: - pos: -21.5,17.5 parent: 2 type: Transform - proto: BlastDoor entities: - - uid: 1316 + - uid: 1540 components: - pos: -14.5,38.5 parent: 2 type: Transform - links: - - 8448 + - 8679 type: DeviceLinkSink - - uid: 1317 + - uid: 1541 components: - pos: 14.5,37.5 parent: 2 type: Transform - links: - - 8449 + - 8680 type: DeviceLinkSink - - uid: 1318 + - uid: 1542 components: - pos: 15.5,37.5 parent: 2 type: Transform - links: - - 8449 + - 8680 type: DeviceLinkSink - - uid: 1319 + - uid: 1543 components: - pos: -12.5,38.5 parent: 2 type: Transform - links: - - 8448 + - 8679 type: DeviceLinkSink - - uid: 1320 + - uid: 1544 components: - pos: -13.5,38.5 parent: 2 type: Transform - links: - - 8448 + - 8679 type: DeviceLinkSink - - uid: 1321 + - uid: 1545 components: - pos: 10.5,40.5 parent: 2 type: Transform - links: - - 8454 + - 8685 type: DeviceLinkSink - - uid: 1322 + - uid: 1546 components: - pos: 9.5,40.5 parent: 2 type: Transform - links: - - 8454 + - 8685 type: DeviceLinkSink - - uid: 1323 + - uid: 1547 components: - pos: 11.5,40.5 parent: 2 type: Transform - links: - - 8454 + - 8685 type: DeviceLinkSink - - uid: 1324 + - uid: 1548 components: - pos: 8.5,40.5 parent: 2 type: Transform - links: - - 8454 + - 8685 type: DeviceLinkSink - proto: BlastDoorOpen entities: - - uid: 1325 + - uid: 1549 components: - pos: -13.5,-28.5 parent: 2 type: Transform - links: - - 8447 + - 8678 type: DeviceLinkSink - - uid: 1326 + - uid: 1550 components: - pos: -14.5,-29.5 parent: 2 type: Transform - links: - - 8447 + - 8678 type: DeviceLinkSink - - uid: 1327 + - uid: 1551 components: - pos: -14.5,-30.5 parent: 2 type: Transform - links: - - 8447 + - 8678 type: DeviceLinkSink - - uid: 1328 + - uid: 1552 components: - pos: -14.5,-31.5 parent: 2 type: Transform - links: - - 8447 + - 8678 type: DeviceLinkSink - - uid: 1329 + - uid: 1553 components: - pos: -13.5,-32.5 parent: 2 type: Transform - links: - - 8447 + - 8678 type: DeviceLinkSink - proto: BlockGameArcade entities: - - uid: 1330 + - uid: 1554 components: - pos: 1.5,-1.5 parent: 2 type: Transform - proto: BookBartendersManual entities: - - uid: 1331 + - uid: 1555 components: - rot: -1.5707963267948966 rad pos: -4.477532,-9.343726 @@ -12404,163 +13526,156 @@ entities: type: Transform - proto: BookBase entities: - - uid: 1332 + - uid: 1556 components: - pos: -14.314552,-15.392647 parent: 2 type: Transform - proto: BookChefGaming entities: - - uid: 1333 + - uid: 1557 components: - pos: -1.5,2.5 parent: 2 type: Transform - proto: BookChemicalCompendium entities: - - uid: 1334 + - uid: 1558 components: - pos: -15.790929,14.6313305 parent: 2 type: Transform - proto: BookEngineersHandbook entities: - - uid: 1335 + - uid: 1559 components: - pos: -2.6817799,15.737377 parent: 2 type: Transform - - uid: 1336 + - uid: 1560 components: - pos: 13.381934,16.65192 parent: 2 type: Transform - proto: BookHowToSurvive entities: - - uid: 1337 + - uid: 1561 components: - pos: -25.35464,-27.382784 parent: 2 type: Transform - - uid: 1338 + - uid: 1562 components: - pos: -19.719982,-12.727665 parent: 2 type: Transform - - uid: 1339 + - uid: 1563 components: - pos: 7.5865707,-28.404327 parent: 2 type: Transform - - uid: 1340 + - uid: 1564 components: - pos: 9.374661,-21.454462 parent: 2 type: Transform - - uid: 1341 + - uid: 1565 components: - pos: 26.73146,-21.216724 parent: 2 type: Transform -- proto: BookLeafLoversSecret - entities: - - uid: 1342 - components: - - pos: -2.622952,10.665628 - parent: 2 - type: Transform - proto: BookMedicalReferenceBook entities: - - uid: 1343 + - uid: 1566 components: - pos: -24.473717,7.5462623 parent: 2 type: Transform - proto: BookRandom entities: - - uid: 1344 + - uid: 1567 components: - pos: -12.42121,-32.414444 parent: 2 type: Transform - - uid: 1345 + - uid: 1568 components: - pos: -11.556627,-32.46656 parent: 2 type: Transform - - uid: 10638 + - uid: 1569 components: - - pos: -1.5538311,-21.768442 + - pos: -0.70949954,-22.513079 parent: 2 type: Transform - - uid: 10639 + - uid: 1570 components: - - pos: -1.345459,-21.429901 + - pos: -0.49413836,-22.092255 parent: 2 type: Transform - proto: BookSecurity entities: - - uid: 1347 + - uid: 1571 components: - pos: 7.400025,-28.399342 parent: 2 type: Transform - - uid: 1348 + - uid: 1572 components: - pos: -25.115057,-27.403631 parent: 2 type: Transform - - uid: 1349 + - uid: 1573 components: - pos: 9.541327,-21.454462 parent: 2 type: Transform - - uid: 1350 + - uid: 1574 components: - pos: 26.73146,-21.383507 parent: 2 type: Transform - proto: Bookshelf entities: - - uid: 1351 + - uid: 1575 components: - pos: 3.5,21.5 parent: 2 type: Transform - - uid: 1352 + - uid: 1576 components: - pos: -12.5,-32.5 parent: 2 type: Transform - - uid: 1353 + - uid: 1577 components: - pos: -11.5,-32.5 parent: 2 type: Transform - - uid: 1354 + - uid: 1578 components: - pos: -22.5,22.5 parent: 2 type: Transform - - uid: 1355 + - uid: 1579 components: - pos: -17.5,-16.5 parent: 2 type: Transform - - uid: 1356 + - uid: 1580 components: - pos: -18.5,-16.5 parent: 2 type: Transform - proto: BoozeDispenser entities: - - uid: 1357 + - uid: 1581 components: - rot: -1.5707963267948966 rad pos: -4.5,-7.5 parent: 2 type: Transform - - uid: 1358 + - uid: 1582 components: - rot: 3.141592653589793 rad pos: 37.5,19.5 @@ -12568,115 +13683,115 @@ entities: type: Transform - proto: BorgCharger entities: - - uid: 1359 + - uid: 1583 components: - pos: 21.5,16.5 parent: 2 type: Transform - - uid: 1360 + - uid: 1584 components: - pos: -1.5,19.5 parent: 2 type: Transform - - uid: 1361 + - uid: 1585 components: - pos: -12.5,-21.5 parent: 2 type: Transform - proto: BoxBeaker entities: - - uid: 1362 + - uid: 1586 components: - pos: -0.5,4.5 parent: 2 type: Transform - proto: BoxBeanbag entities: - - uid: 1363 + - uid: 1587 components: - - pos: 24.515007,-17.67339 + - pos: 22.39613,-17.226284 parent: 2 type: Transform - proto: BoxBodyBag entities: - - uid: 1364 + - uid: 1588 components: - pos: -21.66172,18.729862 parent: 2 type: Transform - proto: BoxCardboard entities: - - uid: 1365 + - uid: 1589 components: - pos: 13.3479595,5.0109363 parent: 2 type: Transform - - uid: 1366 + - uid: 1590 components: - pos: 13.619985,4.668775 parent: 2 type: Transform - - uid: 1367 + - uid: 1591 components: - pos: 13.72936,5.200025 parent: 2 type: Transform - proto: BoxCartridgeCap entities: - - uid: 1368 + - uid: 1592 components: - pos: -0.913447,-11.232229 parent: 2 type: Transform - proto: BoxFlashbang entities: - - uid: 1369 + - uid: 1593 components: - pos: 14.733539,-17.320053 parent: 2 type: Transform - - uid: 1370 + - uid: 1594 components: - pos: 14.566873,-17.476412 parent: 2 type: Transform - proto: BoxFolderBlack entities: - - uid: 1371 + - uid: 1595 components: - pos: -24.27999,-27.482624 parent: 2 type: Transform - - uid: 1378 + - uid: 1596 components: - - pos: 0.33020028,-21.438581 + - pos: -0.86067873,-21.640265 parent: 2 type: Transform - proto: BoxFolderGrey entities: - - uid: 1373 + - uid: 1597 components: - pos: -14.78339,-15.451241 parent: 2 type: Transform - - uid: 1374 + - uid: 1598 components: - pos: -7.371512,26.705606 parent: 2 type: Transform - - uid: 1375 + - uid: 1599 components: - pos: -24.96749,-27.5295 parent: 2 type: Transform - proto: BoxFolderRed entities: - - uid: 1376 + - uid: 1600 components: - pos: 6.7788434,-28.404394 parent: 2 type: Transform - - uid: 1377 + - uid: 1601 components: - rot: 1.5707963267948966 rad pos: 19.583937,-19.31618 @@ -12684,64 +13799,64 @@ entities: type: Transform - proto: BoxFolderWhite entities: - - uid: 1346 + - uid: 1602 components: - - pos: -1.6580167,-22.610456 + - pos: -1.0645244,-22.571098 parent: 2 type: Transform - - uid: 1379 + - uid: 1603 components: - pos: -18.472965,18.601372 parent: 2 type: Transform - proto: BoxFolderYellow entities: - - uid: 1380 + - uid: 1604 components: - pos: 19.690353,13.64348 parent: 2 type: Transform - proto: BoxHandcuff entities: - - uid: 1381 + - uid: 1605 components: - pos: 14.305864,-17.441164 parent: 2 type: Transform - - uid: 1382 + - uid: 1606 components: - pos: 14.295448,-17.211838 parent: 2 type: Transform - proto: BoxLethalshot entities: - - uid: 1383 + - uid: 1607 components: - - pos: 24.50459,-17.402369 + - pos: 22.67738,-17.570034 parent: 2 type: Transform - proto: BoxMouthSwab entities: - - uid: 1384 + - uid: 1608 components: - pos: -21.454123,3.5989623 parent: 2 type: Transform - - uid: 1385 + - uid: 1609 components: - pos: -7.50126,10.616823 parent: 2 type: Transform - proto: BriefcaseBrownFilled entities: - - uid: 1386 + - uid: 1610 components: - pos: -28.990694,-2.4834647 parent: 2 type: Transform - proto: BrigTimer entities: - - uid: 1387 + - uid: 1611 components: - rot: -1.5707963267948966 rad pos: 16.5,-21.5 @@ -12754,10593 +13869,10593 @@ entities: type: DeviceLinkSource - proto: Brutepack entities: - - uid: 1388 + - uid: 1612 components: - pos: -33.33086,25.841974 parent: 2 type: Transform - - uid: 1389 + - uid: 1613 components: - pos: -33.164192,25.716887 parent: 2 type: Transform - proto: Bucket entities: - - uid: 1390 + - uid: 1614 components: - pos: 14.601148,-29.351398 parent: 2 type: Transform - - uid: 1391 + - uid: 1615 components: - pos: -0.44188207,1.3674624 parent: 2 type: Transform - - uid: 1392 + - uid: 1616 components: - pos: -6.1712074,10.802549 parent: 2 type: Transform - - uid: 1393 + - uid: 1617 components: - pos: -6.0462074,10.541952 parent: 2 type: Transform - proto: CableApcExtension entities: - - uid: 1394 + - uid: 1618 components: - pos: 43.5,-11.5 parent: 2 type: Transform - - uid: 1395 + - uid: 1619 components: - pos: -21.5,5.5 parent: 2 type: Transform - - uid: 1396 + - uid: 1620 components: - pos: 11.5,-0.5 parent: 2 type: Transform - - uid: 1397 + - uid: 1621 components: - pos: 11.5,3.5 parent: 2 type: Transform - - uid: 1398 + - uid: 1622 components: - pos: 11.5,2.5 parent: 2 type: Transform - - uid: 1399 + - uid: 1623 components: - pos: -5.5,-15.5 parent: 2 type: Transform - - uid: 1400 + - uid: 1624 components: - pos: -7.5,-13.5 parent: 2 type: Transform - - uid: 1401 + - uid: 1625 components: - pos: 1.5,-15.5 parent: 2 type: Transform - - uid: 1402 + - uid: 1626 components: - pos: 0.5,-15.5 parent: 2 type: Transform - - uid: 1403 + - uid: 1627 components: - pos: -2.5,-15.5 parent: 2 type: Transform - - uid: 1404 + - uid: 1628 components: - pos: -1.5,-15.5 parent: 2 type: Transform - - uid: 1405 + - uid: 1629 components: - pos: -0.5,-15.5 parent: 2 type: Transform - - uid: 1406 + - uid: 1630 components: - pos: -0.5,-14.5 parent: 2 type: Transform - - uid: 1407 + - uid: 1631 components: - pos: -0.5,-13.5 parent: 2 type: Transform - - uid: 1408 + - uid: 1632 components: - pos: -1.5,-12.5 parent: 2 type: Transform - - uid: 1409 + - uid: 1633 components: - pos: -0.5,-12.5 parent: 2 type: Transform - - uid: 1410 + - uid: 1634 components: - pos: 0.5,-12.5 parent: 2 type: Transform - - uid: 1411 + - uid: 1635 components: - pos: -8.5,-12.5 parent: 2 type: Transform - - uid: 1412 + - uid: 1636 components: - pos: -7.5,-12.5 parent: 2 type: Transform - - uid: 1413 + - uid: 1637 components: - pos: -6.5,-12.5 parent: 2 type: Transform - - uid: 1414 + - uid: 1638 components: - pos: -12.5,-6.5 parent: 2 type: Transform - - uid: 1415 + - uid: 1639 components: - pos: -6.5,-11.5 parent: 2 type: Transform - - uid: 1416 + - uid: 1640 components: - pos: -0.5,-4.5 parent: 2 type: Transform - - uid: 1417 + - uid: 1641 components: - pos: -7.5,18.5 parent: 2 type: Transform - - uid: 1418 + - uid: 1642 components: - pos: -6.5,-10.5 parent: 2 type: Transform - - uid: 1419 + - uid: 1643 components: - pos: -7.5,-14.5 parent: 2 type: Transform - - uid: 1420 + - uid: 1644 components: - pos: -0.5,-5.5 parent: 2 type: Transform - - uid: 1421 + - uid: 1645 components: - pos: -0.5,-6.5 parent: 2 type: Transform - - uid: 1422 + - uid: 1646 components: - pos: -7.5,-15.5 parent: 2 type: Transform - - uid: 1423 + - uid: 1647 components: - pos: -6.5,-15.5 parent: 2 type: Transform - - uid: 1424 + - uid: 1648 components: - pos: -12.5,3.5 parent: 2 type: Transform - - uid: 1425 + - uid: 1649 components: - pos: -12.5,2.5 parent: 2 type: Transform - - uid: 1426 + - uid: 1650 components: - pos: -12.5,1.5 parent: 2 type: Transform - - uid: 1427 + - uid: 1651 components: - pos: -6.5,19.5 parent: 2 type: Transform - - uid: 1428 + - uid: 1652 components: - pos: -12.5,0.5 parent: 2 type: Transform - - uid: 1429 + - uid: 1653 components: - pos: -12.5,-11.5 parent: 2 type: Transform - - uid: 1430 + - uid: 1654 components: - pos: -12.5,4.5 parent: 2 type: Transform - - uid: 1431 + - uid: 1655 components: - pos: -12.5,-13.5 parent: 2 type: Transform - - uid: 1432 + - uid: 1656 components: - pos: -17.5,1.5 parent: 2 type: Transform - - uid: 1433 + - uid: 1657 components: - pos: 12.5,4.5 parent: 2 type: Transform - - uid: 1434 + - uid: 1658 components: - pos: -20.5,22.5 parent: 2 type: Transform - - uid: 1435 + - uid: 1659 components: - pos: -23.5,21.5 parent: 2 type: Transform - - uid: 1436 + - uid: 1660 components: - pos: -22.5,21.5 parent: 2 type: Transform - - uid: 1437 + - uid: 1661 components: - pos: -21.5,21.5 parent: 2 type: Transform - - uid: 1438 + - uid: 1662 components: - pos: -20.5,21.5 parent: 2 type: Transform - - uid: 1439 + - uid: 1663 components: - pos: -19.5,21.5 parent: 2 type: Transform - - uid: 1440 + - uid: 1664 components: - pos: -19.5,20.5 parent: 2 type: Transform - - uid: 1441 + - uid: 1665 components: - pos: -19.5,19.5 parent: 2 type: Transform - - uid: 1442 + - uid: 1666 components: - pos: -18.5,19.5 parent: 2 type: Transform - - uid: 1443 + - uid: 1667 components: - pos: -18.5,18.5 parent: 2 type: Transform - - uid: 1444 + - uid: 1668 components: - pos: -18.5,17.5 parent: 2 type: Transform - - uid: 1445 + - uid: 1669 components: - pos: -18.5,16.5 parent: 2 type: Transform - - uid: 1446 + - uid: 1670 components: - pos: -18.5,15.5 parent: 2 type: Transform - - uid: 1447 + - uid: 1671 components: - pos: -18.5,14.5 parent: 2 type: Transform - - uid: 1448 + - uid: 1672 components: - pos: -18.5,13.5 parent: 2 type: Transform - - uid: 1449 + - uid: 1673 components: - pos: -22.5,17.5 parent: 2 type: Transform - - uid: 1450 + - uid: 1674 components: - pos: -22.5,16.5 parent: 2 type: Transform - - uid: 1451 + - uid: 1675 components: - pos: -22.5,15.5 parent: 2 type: Transform - - uid: 1452 + - uid: 1676 components: - pos: -22.5,14.5 parent: 2 type: Transform - - uid: 1453 + - uid: 1677 components: - pos: -22.5,13.5 parent: 2 type: Transform - - uid: 1454 + - uid: 1678 components: - pos: -21.5,13.5 parent: 2 type: Transform - - uid: 1455 + - uid: 1679 components: - pos: -20.5,13.5 parent: 2 type: Transform - - uid: 1456 + - uid: 1680 components: - pos: -19.5,13.5 parent: 2 type: Transform - - uid: 1457 + - uid: 1681 components: - pos: -19.5,12.5 parent: 2 type: Transform - - uid: 1458 + - uid: 1682 components: - pos: -16.5,4.5 parent: 2 type: Transform - - uid: 1459 + - uid: 1683 components: - pos: -15.5,4.5 parent: 2 type: Transform - - uid: 1460 + - uid: 1684 components: - pos: -15.5,5.5 parent: 2 type: Transform - - uid: 1461 + - uid: 1685 components: - pos: -15.5,6.5 parent: 2 type: Transform - - uid: 1462 + - uid: 1686 components: - pos: -15.5,7.5 parent: 2 type: Transform - - uid: 1463 + - uid: 1687 components: - pos: -15.5,8.5 parent: 2 type: Transform - - uid: 1464 + - uid: 1688 components: - pos: -16.5,8.5 parent: 2 type: Transform - - uid: 1465 + - uid: 1689 components: - pos: -17.5,8.5 parent: 2 type: Transform - - uid: 1466 + - uid: 1690 components: - pos: -18.5,8.5 parent: 2 type: Transform - - uid: 1467 + - uid: 1691 components: - pos: -18.5,9.5 parent: 2 type: Transform - - uid: 1468 + - uid: 1692 components: - pos: -18.5,10.5 parent: 2 type: Transform - - uid: 1469 + - uid: 1693 components: - pos: -15.5,13.5 parent: 2 type: Transform - - uid: 1470 + - uid: 1694 components: - pos: -15.5,12.5 parent: 2 type: Transform - - uid: 1471 + - uid: 1695 components: - pos: -15.5,11.5 parent: 2 type: Transform - - uid: 1472 + - uid: 1696 components: - pos: -16.5,11.5 parent: 2 type: Transform - - uid: 1473 + - uid: 1697 components: - pos: -17.5,11.5 parent: 2 type: Transform - - uid: 1474 + - uid: 1698 components: - pos: -19.5,11.5 parent: 2 type: Transform - - uid: 1475 + - uid: 1699 components: - pos: -18.5,11.5 parent: 2 type: Transform - - uid: 1476 + - uid: 1700 components: - pos: -17.5,11.5 parent: 2 type: Transform - - uid: 1477 + - uid: 1701 components: - pos: 11.5,12.5 parent: 2 type: Transform - - uid: 1478 + - uid: 1702 components: - pos: -8.5,8.5 parent: 2 type: Transform - - uid: 1479 + - uid: 1703 components: - pos: 3.5,-3.5 parent: 2 type: Transform - - uid: 1480 + - uid: 1704 components: - pos: 2.5,-3.5 parent: 2 type: Transform - - uid: 1481 + - uid: 1705 components: - pos: 1.5,-3.5 parent: 2 type: Transform - - uid: 1482 + - uid: 1706 components: - pos: 0.5,-3.5 parent: 2 type: Transform - - uid: 1483 + - uid: 1707 components: - pos: -0.5,-3.5 parent: 2 type: Transform - - uid: 1484 + - uid: 1708 components: - pos: -1.5,-3.5 parent: 2 type: Transform - - uid: 1485 + - uid: 1709 components: - pos: -2.5,-3.5 parent: 2 type: Transform - - uid: 1486 + - uid: 1710 components: - pos: -5.5,-3.5 parent: 2 type: Transform - - uid: 1487 + - uid: 1711 components: - pos: -6.5,-3.5 parent: 2 type: Transform - - uid: 1488 + - uid: 1712 components: - pos: -7.5,-3.5 parent: 2 type: Transform - - uid: 1489 + - uid: 1713 components: - pos: -8.5,-3.5 parent: 2 type: Transform - - uid: 1490 + - uid: 1714 components: - pos: -12.5,-4.5 parent: 2 type: Transform - - uid: 1491 + - uid: 1715 components: - pos: -12.5,-5.5 parent: 2 type: Transform - - uid: 1492 + - uid: 1716 components: - pos: -9.5,6.5 parent: 2 type: Transform - - uid: 1493 + - uid: 1717 components: - pos: -9.5,7.5 parent: 2 type: Transform - - uid: 1494 + - uid: 1718 components: - pos: -8.5,7.5 parent: 2 type: Transform - - uid: 1495 + - uid: 1719 components: - pos: -6.5,1.5 parent: 2 type: Transform - - uid: 1496 + - uid: 1720 components: - pos: -5.5,1.5 parent: 2 type: Transform - - uid: 1497 + - uid: 1721 components: - pos: -4.5,1.5 parent: 2 type: Transform - - uid: 1498 + - uid: 1722 components: - pos: -2.5,0.5 parent: 2 type: Transform - - uid: 1499 + - uid: 1723 components: - pos: -2.5,1.5 parent: 2 type: Transform - - uid: 1500 + - uid: 1724 components: - pos: -2.5,4.5 parent: 2 type: Transform - - uid: 1501 + - uid: 1725 components: - pos: -2.5,3.5 parent: 2 type: Transform - - uid: 1502 + - uid: 1726 components: - pos: -3.5,1.5 parent: 2 type: Transform - - uid: 1503 + - uid: 1727 components: - pos: -2.5,2.5 parent: 2 type: Transform - - uid: 1504 + - uid: 1728 components: - pos: -1.5,2.5 parent: 2 type: Transform - - uid: 1505 + - uid: 1729 components: - pos: -0.5,2.5 parent: 2 type: Transform - - uid: 1506 + - uid: 1730 components: - pos: 0.5,2.5 parent: 2 type: Transform - - uid: 1507 + - uid: 1731 components: - pos: -9.5,9.5 parent: 2 type: Transform - - uid: 1508 + - uid: 1732 components: - pos: -8.5,9.5 parent: 2 type: Transform - - uid: 1509 + - uid: 1733 components: - pos: -1.5,8.5 parent: 2 type: Transform - - uid: 1510 + - uid: 1734 components: - pos: -6.5,8.5 parent: 2 type: Transform - - uid: 1511 + - uid: 1735 components: - pos: -7.5,8.5 parent: 2 type: Transform - - uid: 1512 + - uid: 1736 components: - pos: -1.5,19.5 parent: 2 type: Transform - - uid: 1513 + - uid: 1737 components: - pos: -12.5,-14.5 parent: 2 type: Transform - - uid: 1514 + - uid: 1738 components: - pos: -12.5,-7.5 parent: 2 type: Transform - - uid: 1515 + - uid: 1739 components: - pos: -12.5,-1.5 parent: 2 type: Transform - - uid: 1516 + - uid: 1740 components: - pos: -16.5,-7.5 parent: 2 type: Transform - - uid: 1517 + - uid: 1741 components: - pos: -16.5,-3.5 parent: 2 type: Transform - - uid: 1518 + - uid: 1742 components: - pos: -12.5,-0.5 parent: 2 type: Transform - - uid: 1519 + - uid: 1743 components: - pos: -13.5,-1.5 parent: 2 type: Transform - - uid: 1520 + - uid: 1744 components: - pos: -17.5,-7.5 parent: 2 type: Transform - - uid: 1521 + - uid: 1745 components: - pos: -15.5,-3.5 parent: 2 type: Transform - - uid: 1522 + - uid: 1746 components: - pos: -13.5,-3.5 parent: 2 type: Transform - - uid: 1523 + - uid: 1747 components: - pos: -23.5,-3.5 parent: 2 type: Transform - - uid: 1524 + - uid: 1748 components: - pos: -14.5,-3.5 parent: 2 type: Transform - - uid: 1525 + - uid: 1749 components: - pos: -16.5,-8.5 parent: 2 type: Transform - - uid: 1526 + - uid: 1750 components: - pos: 14.5,-9.5 parent: 2 type: Transform - - uid: 1527 + - uid: 1751 components: - pos: 13.5,-11.5 parent: 2 type: Transform - - uid: 1528 + - uid: 1752 components: - pos: 17.5,-19.5 parent: 2 type: Transform - - uid: 1529 + - uid: 1753 components: - pos: 16.5,-19.5 parent: 2 type: Transform - - uid: 1530 + - uid: 1754 components: - pos: 14.5,-21.5 parent: 2 type: Transform - - uid: 1531 + - uid: 1755 components: - pos: 14.5,-19.5 parent: 2 type: Transform - - uid: 1532 + - uid: 1756 components: - pos: 12.5,5.5 parent: 2 type: Transform - - uid: 1533 + - uid: 1757 components: - pos: 12.5,6.5 parent: 2 type: Transform - - uid: 1534 + - uid: 1758 components: - pos: 11.5,6.5 parent: 2 type: Transform - - uid: 1535 + - uid: 1759 components: - pos: 10.5,6.5 parent: 2 type: Transform - - uid: 1536 + - uid: 1760 components: - pos: 9.5,6.5 parent: 2 type: Transform - - uid: 1537 + - uid: 1761 components: - pos: 8.5,6.5 parent: 2 type: Transform - - uid: 1538 + - uid: 1762 components: - pos: 8.5,5.5 parent: 2 type: Transform - - uid: 1539 + - uid: 1763 components: - pos: 8.5,4.5 parent: 2 type: Transform - - uid: 1540 + - uid: 1764 components: - pos: 8.5,3.5 parent: 2 type: Transform - - uid: 1541 + - uid: 1765 components: - pos: 5.5,32.5 parent: 2 type: Transform - - uid: 1542 + - uid: 1766 components: - pos: 14.5,-10.5 parent: 2 type: Transform - - uid: 1543 + - uid: 1767 components: - pos: 7.5,-7.5 parent: 2 type: Transform - - uid: 1544 + - uid: 1768 components: - pos: 10.5,-5.5 parent: 2 type: Transform - - uid: 1545 + - uid: 1769 components: - pos: 7.5,-5.5 parent: 2 type: Transform - - uid: 1546 + - uid: 1770 components: - pos: -3.5,8.5 parent: 2 type: Transform - - uid: 1547 + - uid: 1771 components: - pos: -4.5,8.5 parent: 2 type: Transform - - uid: 1548 + - uid: 1772 components: - pos: 7.5,-6.5 parent: 2 type: Transform - - uid: 1549 + - uid: 1773 components: - pos: 13.5,-5.5 parent: 2 type: Transform - - uid: 1550 + - uid: 1774 components: - pos: 14.5,-8.5 parent: 2 type: Transform - - uid: 1551 + - uid: 1775 components: - pos: 12.5,-5.5 parent: 2 type: Transform - - uid: 1552 + - uid: 1776 components: - pos: 11.5,-5.5 parent: 2 type: Transform - - uid: 1553 + - uid: 1777 components: - pos: -2.5,8.5 parent: 2 type: Transform - - uid: 1554 + - uid: 1778 components: - pos: 9.5,-5.5 parent: 2 type: Transform - - uid: 1555 + - uid: 1779 components: - pos: 8.5,-5.5 parent: 2 type: Transform - - uid: 1556 + - uid: 1780 components: - pos: 10.5,-11.5 parent: 2 type: Transform - - uid: 1557 + - uid: 1781 components: - pos: 12.5,-11.5 parent: 2 type: Transform - - uid: 1558 + - uid: 1782 components: - pos: 11.5,-11.5 parent: 2 type: Transform - - uid: 1559 + - uid: 1783 components: - pos: -5.5,8.5 parent: 2 type: Transform - - uid: 1560 + - uid: 1784 components: - pos: -11.5,-18.5 parent: 2 type: Transform - - uid: 1561 + - uid: 1785 components: - pos: 11.5,4.5 parent: 2 type: Transform - - uid: 1562 + - uid: 1786 components: - pos: -12.5,-2.5 parent: 2 type: Transform - - uid: 1563 + - uid: 1787 components: - pos: -12.5,-3.5 parent: 2 type: Transform - - uid: 1564 + - uid: 1788 components: - pos: -6.5,2.5 parent: 2 type: Transform - - uid: 1565 + - uid: 1789 components: - pos: -7.5,2.5 parent: 2 type: Transform - - uid: 1566 + - uid: 1790 components: - pos: -8.5,2.5 parent: 2 type: Transform - - uid: 1567 + - uid: 1791 components: - pos: 25.5,35.5 parent: 2 type: Transform - - uid: 1568 + - uid: 1792 components: - pos: -5.5,-10.5 parent: 2 type: Transform - - uid: 1569 + - uid: 1793 components: - pos: -5.5,-9.5 parent: 2 type: Transform - - uid: 1570 + - uid: 1794 components: - pos: -5.5,-8.5 parent: 2 type: Transform - - uid: 1571 + - uid: 1795 components: - pos: -5.5,-7.5 parent: 2 type: Transform - - uid: 1572 + - uid: 1796 components: - pos: -5.5,-6.5 parent: 2 type: Transform - - uid: 1573 + - uid: 1797 components: - pos: -5.5,-5.5 parent: 2 type: Transform - - uid: 1574 + - uid: 1798 components: - pos: -5.5,-4.5 parent: 2 type: Transform - - uid: 1575 + - uid: 1799 components: - pos: -4.5,-3.5 parent: 2 type: Transform - - uid: 1576 + - uid: 1800 components: - pos: -3.5,-3.5 parent: 2 type: Transform - - uid: 1577 + - uid: 1801 components: - pos: -12.5,5.5 parent: 2 type: Transform - - uid: 1578 + - uid: 1802 components: - pos: -9.5,2.5 parent: 2 type: Transform - - uid: 1579 + - uid: 1803 components: - pos: -9.5,1.5 parent: 2 type: Transform - - uid: 1580 + - uid: 1804 components: - pos: -4.5,-15.5 parent: 2 type: Transform - - uid: 1581 + - uid: 1805 components: - pos: -3.5,-15.5 parent: 2 type: Transform - - uid: 1582 + - uid: 1806 components: - pos: -8.5,-15.5 parent: 2 type: Transform - - uid: 1583 + - uid: 1807 components: - pos: 7.5,35.5 parent: 2 type: Transform - - uid: 1584 + - uid: 1808 components: - pos: 14.5,-11.5 parent: 2 type: Transform - - uid: 1585 + - uid: 1809 components: - pos: -10.5,-18.5 parent: 2 type: Transform - - uid: 1586 + - uid: 1810 components: - pos: -9.5,-18.5 parent: 2 type: Transform - - uid: 1587 + - uid: 1811 components: - pos: 14.5,-31.5 parent: 2 type: Transform - - uid: 1588 + - uid: 1812 components: - pos: -16.5,31.5 parent: 2 type: Transform - - uid: 1589 + - uid: 1813 components: - pos: -16.5,30.5 parent: 2 type: Transform - - uid: 1590 + - uid: 1814 components: - pos: 10.5,24.5 parent: 2 type: Transform - - uid: 1591 + - uid: 1815 components: - pos: -7.5,46.5 parent: 2 type: Transform - - uid: 1592 + - uid: 1816 components: - pos: -6.5,31.5 parent: 2 type: Transform - - uid: 1593 + - uid: 1817 components: - pos: -4.5,31.5 parent: 2 type: Transform - - uid: 1594 + - uid: 1818 components: - pos: -5.5,31.5 parent: 2 type: Transform - - uid: 1595 + - uid: 1819 components: - pos: -1.5,24.5 parent: 2 type: Transform - - uid: 1596 + - uid: 1820 components: - pos: 14.5,-20.5 parent: 2 type: Transform - - uid: 1597 + - uid: 1821 components: - pos: -0.5,24.5 parent: 2 type: Transform - - uid: 1598 + - uid: 1822 components: - pos: 1.5,24.5 parent: 2 type: Transform - - uid: 1599 + - uid: 1823 components: - pos: -2.5,24.5 parent: 2 type: Transform - - uid: 1600 + - uid: 1824 components: - pos: -21.5,24.5 parent: 2 type: Transform - - uid: 1601 + - uid: 1825 components: - pos: -22.5,24.5 parent: 2 type: Transform - - uid: 1602 + - uid: 1826 components: - pos: 27.5,37.5 parent: 2 type: Transform - - uid: 1603 + - uid: 1827 components: - pos: 27.5,32.5 parent: 2 type: Transform - - uid: 1604 + - uid: 1828 components: - pos: 6.5,16.5 parent: 2 type: Transform - - uid: 1605 + - uid: 1829 components: - pos: 28.5,36.5 parent: 2 type: Transform - - uid: 1606 + - uid: 1830 components: - pos: 8.5,32.5 parent: 2 type: Transform - - uid: 1607 + - uid: 1831 components: - pos: 9.5,38.5 parent: 2 type: Transform - - uid: 1608 + - uid: 1832 components: - pos: 27.5,36.5 parent: 2 type: Transform - - uid: 1609 + - uid: 1833 components: - pos: 9.5,16.5 parent: 2 type: Transform - - uid: 1610 + - uid: 1834 components: - pos: 7.5,16.5 parent: 2 type: Transform - - uid: 1611 + - uid: 1835 components: - pos: 8.5,16.5 parent: 2 type: Transform - - uid: 1612 + - uid: 1836 components: - pos: -9.5,31.5 parent: 2 type: Transform - - uid: 1613 + - uid: 1837 components: - pos: -29.5,-4.5 parent: 2 type: Transform - - uid: 1614 + - uid: 1838 components: - pos: 19.5,-30.5 parent: 2 type: Transform - - uid: 1615 + - uid: 1839 components: - pos: 18.5,-26.5 parent: 2 type: Transform - - uid: 1616 + - uid: 1840 components: - pos: 18.5,-24.5 parent: 2 type: Transform - - uid: 1617 + - uid: 1841 components: - pos: 14.5,-27.5 parent: 2 type: Transform - - uid: 1618 + - uid: 1842 components: - pos: 15.5,-28.5 parent: 2 type: Transform - - uid: 1619 + - uid: 1843 components: - pos: 17.5,-28.5 parent: 2 type: Transform - - uid: 1620 + - uid: 1844 components: - pos: 18.5,-29.5 parent: 2 type: Transform - - uid: 1621 + - uid: 1845 components: - pos: 17.5,-31.5 parent: 2 type: Transform - - uid: 1622 + - uid: 1846 components: - pos: 27.5,29.5 parent: 2 type: Transform - - uid: 1623 + - uid: 1847 components: - pos: -29.5,-0.5 parent: 2 type: Transform - - uid: 1624 + - uid: 1848 components: - pos: 15.5,-19.5 parent: 2 type: Transform - - uid: 1625 + - uid: 1849 components: - pos: 14.5,-24.5 parent: 2 type: Transform - - uid: 1626 + - uid: 1850 components: - pos: -16.5,-12.5 parent: 2 type: Transform - - uid: 1627 + - uid: 1851 components: - pos: -12.5,-15.5 parent: 2 type: Transform - - uid: 1628 + - uid: 1852 components: - pos: -17.5,-12.5 parent: 2 type: Transform - - uid: 1629 + - uid: 1853 components: - pos: 26.5,30.5 parent: 2 type: Transform - - uid: 1630 + - uid: 1854 components: - pos: 25.5,29.5 parent: 2 type: Transform - - uid: 1631 + - uid: 1855 components: - pos: -29.5,1.5 parent: 2 type: Transform - - uid: 1632 + - uid: 1856 components: - pos: -30.5,-6.5 parent: 2 type: Transform - - uid: 1633 + - uid: 1857 components: - pos: -30.5,-8.5 parent: 2 type: Transform - - uid: 1634 + - uid: 1858 components: - pos: -12.5,-18.5 parent: 2 type: Transform - - uid: 1635 + - uid: 1859 components: - pos: 25.5,-10.5 parent: 2 type: Transform - - uid: 1636 + - uid: 1860 components: - pos: 2.5,24.5 parent: 2 type: Transform - - uid: 1637 + - uid: 1861 components: - pos: 24.5,-9.5 parent: 2 type: Transform - - uid: 1638 + - uid: 1862 components: - pos: 4.5,21.5 parent: 2 type: Transform - - uid: 1639 + - uid: 1863 components: - pos: 27.5,35.5 parent: 2 type: Transform - - uid: 1640 + - uid: 1864 components: - pos: 15.5,-10.5 parent: 2 type: Transform - - uid: 1641 + - uid: 1865 components: - pos: 20.5,-9.5 parent: 2 type: Transform - - uid: 1642 + - uid: 1866 components: - pos: 20.5,-10.5 parent: 2 type: Transform - - uid: 1643 + - uid: 1867 components: - pos: 19.5,-10.5 parent: 2 type: Transform - - uid: 1644 + - uid: 1868 components: - pos: 16.5,-31.5 parent: 2 type: Transform - - uid: 1645 + - uid: 1869 components: - pos: 15.5,-31.5 parent: 2 type: Transform - - uid: 1646 + - uid: 1870 components: - pos: 14.5,-30.5 parent: 2 type: Transform - - uid: 1647 + - uid: 1871 components: - pos: 14.5,-29.5 parent: 2 type: Transform - - uid: 1648 + - uid: 1872 components: - pos: 16.5,19.5 parent: 2 type: Transform - - uid: 1649 + - uid: 1873 components: - pos: -29.5,-5.5 parent: 2 type: Transform - - uid: 1650 + - uid: 1874 components: - pos: 4.5,24.5 parent: 2 type: Transform - - uid: 1651 + - uid: 1875 components: - pos: 4.5,22.5 parent: 2 type: Transform - - uid: 1652 + - uid: 1876 components: - pos: 19.5,-31.5 parent: 2 type: Transform - - uid: 1653 + - uid: 1877 components: - pos: 25.5,-9.5 parent: 2 type: Transform - - uid: 1654 + - uid: 1878 components: - pos: 19.5,-24.5 parent: 2 type: Transform - - uid: 1655 + - uid: 1879 components: - pos: 18.5,-25.5 parent: 2 type: Transform - - uid: 1656 + - uid: 1880 components: - pos: 19.5,-29.5 parent: 2 type: Transform - - uid: 1657 + - uid: 1881 components: - pos: 18.5,-31.5 parent: 2 type: Transform - - uid: 1658 + - uid: 1882 components: - pos: 18.5,-27.5 parent: 2 type: Transform - - uid: 1659 + - uid: 1883 components: - pos: 18.5,-28.5 parent: 2 type: Transform - - uid: 1660 + - uid: 1884 components: - pos: 16.5,-28.5 parent: 2 type: Transform - - uid: 1661 + - uid: 1885 components: - pos: 14.5,-28.5 parent: 2 type: Transform - - uid: 1662 + - uid: 1886 components: - pos: 14.5,-26.5 parent: 2 type: Transform - - uid: 1663 + - uid: 1887 components: - pos: -29.5,-8.5 parent: 2 type: Transform - - uid: 1664 + - uid: 1888 components: - pos: -30.5,1.5 parent: 2 type: Transform - - uid: 1665 + - uid: 1889 components: - pos: -30.5,-0.5 parent: 2 type: Transform - - uid: 1666 + - uid: 1890 components: - pos: -29.5,-6.5 parent: 2 type: Transform - - uid: 1667 + - uid: 1891 components: - pos: 3.5,24.5 parent: 2 type: Transform - - uid: 1668 + - uid: 1892 components: - pos: -25.5,-3.5 parent: 2 type: Transform - - uid: 1669 + - uid: 1893 components: - pos: 4.5,23.5 parent: 2 type: Transform - - uid: 1670 + - uid: 1894 components: - pos: 4.5,20.5 parent: 2 type: Transform - - uid: 1671 + - uid: 1895 components: - pos: 10.5,23.5 parent: 2 type: Transform - - uid: 1672 + - uid: 1896 components: - pos: 9.5,22.5 parent: 2 type: Transform - - uid: 1673 + - uid: 1897 components: - pos: -7.5,44.5 parent: 2 type: Transform - - uid: 1674 + - uid: 1898 components: - pos: -7.5,45.5 parent: 2 type: Transform - - uid: 1675 + - uid: 1899 components: - pos: 26.5,29.5 parent: 2 type: Transform - - uid: 1676 + - uid: 1900 components: - pos: -16.5,29.5 parent: 2 type: Transform - - uid: 1677 + - uid: 1901 components: - pos: 26.5,31.5 parent: 2 type: Transform - - uid: 1678 + - uid: 1902 components: - pos: 26.5,35.5 parent: 2 type: Transform - - uid: 1679 + - uid: 1903 components: - pos: 27.5,31.5 parent: 2 type: Transform - - uid: 1680 + - uid: 1904 components: - pos: 14.5,-23.5 parent: 2 type: Transform - - uid: 1681 + - uid: 1905 components: - pos: -5.5,19.5 parent: 2 type: Transform - - uid: 1682 + - uid: 1906 components: - pos: -4.5,19.5 parent: 2 type: Transform - - uid: 1683 + - uid: 1907 components: - pos: -3.5,19.5 parent: 2 type: Transform - - uid: 1684 + - uid: 1908 components: - pos: -2.5,19.5 parent: 2 type: Transform - - uid: 1685 + - uid: 1909 components: - pos: 4.5,19.5 parent: 2 type: Transform - - uid: 1686 + - uid: 1910 components: - pos: 11.5,13.5 parent: 2 type: Transform - - uid: 1687 + - uid: 1911 components: - pos: -26.5,-3.5 parent: 2 type: Transform - - uid: 1688 + - uid: 1912 components: - pos: -28.5,-3.5 parent: 2 type: Transform - - uid: 1689 + - uid: 1913 components: - pos: 3.5,20.5 parent: 2 type: Transform - - uid: 1690 + - uid: 1914 components: - pos: -6.5,18.5 parent: 2 type: Transform - - uid: 1691 + - uid: 1915 components: - pos: -29.5,-2.5 parent: 2 type: Transform - - uid: 1692 + - uid: 1916 components: - pos: -7.5,-18.5 parent: 2 type: Transform - - uid: 1693 + - uid: 1917 components: - pos: -21.5,28.5 parent: 2 type: Transform - - uid: 1694 + - uid: 1918 components: - pos: 4.5,29.5 parent: 2 type: Transform - - uid: 1695 + - uid: 1919 components: - pos: 5.5,29.5 parent: 2 type: Transform - - uid: 1696 + - uid: 1920 components: - pos: -21.5,26.5 parent: 2 type: Transform - - uid: 1697 + - uid: 1921 components: - pos: 1.5,28.5 parent: 2 type: Transform - - uid: 1698 + - uid: 1922 components: - pos: -8.5,18.5 parent: 2 type: Transform - - uid: 1699 + - uid: 1923 components: - pos: -11.5,25.5 parent: 2 type: Transform - - uid: 1700 + - uid: 1924 components: - pos: -6.5,17.5 parent: 2 type: Transform - - uid: 1701 + - uid: 1925 components: - pos: 29.5,28.5 parent: 2 type: Transform - - uid: 1702 + - uid: 1926 components: - pos: -21.5,27.5 parent: 2 type: Transform - - uid: 1703 + - uid: 1927 components: - pos: -15.5,-13.5 parent: 2 type: Transform - - uid: 1704 + - uid: 1928 components: - pos: -15.5,-12.5 parent: 2 type: Transform - - uid: 1705 + - uid: 1929 components: - pos: -14.5,-12.5 parent: 2 type: Transform - - uid: 1706 + - uid: 1930 components: - pos: -13.5,-12.5 parent: 2 type: Transform - - uid: 1707 + - uid: 1931 components: - pos: -12.5,-12.5 parent: 2 type: Transform - - uid: 1708 + - uid: 1932 components: - pos: 14.5,-22.5 parent: 2 type: Transform - - uid: 1709 + - uid: 1933 components: - pos: -12.5,-19.5 parent: 2 type: Transform - - uid: 1710 + - uid: 1934 components: - pos: -12.5,-20.5 parent: 2 type: Transform - - uid: 1711 + - uid: 1935 components: - pos: -13.5,-20.5 parent: 2 type: Transform - - uid: 1712 + - uid: 1936 components: - pos: -14.5,-20.5 parent: 2 type: Transform - - uid: 1713 + - uid: 1937 components: - pos: -4.5,-20.5 parent: 2 type: Transform - - uid: 1714 + - uid: 1938 components: - pos: -3.5,-20.5 parent: 2 type: Transform - - uid: 1715 + - uid: 1939 components: - pos: -2.5,-20.5 parent: 2 type: Transform - - uid: 1716 + - uid: 1940 components: - pos: -1.5,-20.5 parent: 2 type: Transform - - uid: 1717 + - uid: 1941 components: - pos: -1.5,-19.5 parent: 2 type: Transform - - uid: 1718 + - uid: 1942 components: - pos: -1.5,-18.5 parent: 2 type: Transform - - uid: 1719 + - uid: 1943 components: - pos: -2.5,-18.5 parent: 2 type: Transform - - uid: 1720 + - uid: 1944 components: - pos: -3.5,-18.5 parent: 2 type: Transform - - uid: 1721 + - uid: 1945 components: - pos: -4.5,-18.5 parent: 2 type: Transform - - uid: 1722 + - uid: 1946 components: - pos: -5.5,-18.5 parent: 2 type: Transform - - uid: 1723 + - uid: 1947 components: - pos: -6.5,-18.5 parent: 2 type: Transform - - uid: 1724 + - uid: 1948 components: - pos: -6.5,-19.5 parent: 2 type: Transform - - uid: 1725 + - uid: 1949 components: - pos: -6.5,-20.5 parent: 2 type: Transform - - uid: 1726 + - uid: 1950 components: - pos: -6.5,-21.5 parent: 2 type: Transform - - uid: 1727 + - uid: 1951 components: - pos: -6.5,-22.5 parent: 2 type: Transform - - uid: 1728 + - uid: 1952 components: - pos: -6.5,-23.5 parent: 2 type: Transform - - uid: 1729 + - uid: 1953 components: - pos: -6.5,-24.5 parent: 2 type: Transform - - uid: 1730 + - uid: 1954 components: - pos: -6.5,-25.5 parent: 2 type: Transform - - uid: 1731 + - uid: 1955 components: - pos: -6.5,-26.5 parent: 2 type: Transform - - uid: 1732 + - uid: 1956 components: - pos: -7.5,-24.5 parent: 2 type: Transform - - uid: 1733 + - uid: 1957 components: - pos: -7.5,-26.5 parent: 2 type: Transform - - uid: 1734 + - uid: 1958 components: - pos: -8.5,-26.5 parent: 2 type: Transform - - uid: 1735 + - uid: 1959 components: - pos: -8.5,-27.5 parent: 2 type: Transform - - uid: 1736 + - uid: 1960 components: - pos: -8.5,-28.5 parent: 2 type: Transform - - uid: 1737 + - uid: 1961 components: - pos: -8.5,-29.5 parent: 2 type: Transform - - uid: 1738 + - uid: 1962 components: - pos: -9.5,-29.5 parent: 2 type: Transform - - uid: 1739 + - uid: 1963 components: - pos: -10.5,-29.5 parent: 2 type: Transform - - uid: 1740 + - uid: 1964 components: - pos: -11.5,-29.5 parent: 2 type: Transform - - uid: 1741 + - uid: 1965 components: - pos: -12.5,-29.5 parent: 2 type: Transform - - uid: 1742 + - uid: 1966 components: - pos: -8.5,-30.5 parent: 2 type: Transform - - uid: 1743 + - uid: 1967 components: - pos: -8.5,-31.5 parent: 2 type: Transform - - uid: 1744 + - uid: 1968 components: - pos: -8.5,-32.5 parent: 2 type: Transform - - uid: 1745 + - uid: 1969 components: - pos: -12.5,-30.5 parent: 2 type: Transform - - uid: 1746 + - uid: 1970 components: - pos: -12.5,-31.5 parent: 2 type: Transform - - uid: 1747 + - uid: 1971 components: - pos: -1.5,-21.5 parent: 2 type: Transform - - uid: 1748 + - uid: 1972 components: - pos: -1.5,-22.5 parent: 2 type: Transform - - uid: 1749 + - uid: 1973 components: - pos: -1.5,-23.5 parent: 2 type: Transform - - uid: 1750 + - uid: 1974 components: - pos: -1.5,-24.5 parent: 2 type: Transform - - uid: 1751 + - uid: 1975 components: - pos: -1.5,-25.5 parent: 2 type: Transform - - uid: 1752 + - uid: 1976 components: - pos: -1.5,-26.5 parent: 2 type: Transform - - uid: 1753 + - uid: 1977 components: - pos: -1.5,-27.5 parent: 2 type: Transform - - uid: 1754 + - uid: 1978 components: - pos: -0.5,-27.5 parent: 2 type: Transform - - uid: 1755 + - uid: 1979 components: - pos: 0.5,-27.5 parent: 2 type: Transform - - uid: 1756 + - uid: 1980 components: - pos: 1.5,-27.5 parent: 2 type: Transform - - uid: 1757 + - uid: 1981 components: - pos: -0.5,-18.5 parent: 2 type: Transform - - uid: 1758 + - uid: 1982 components: - pos: 0.5,-18.5 parent: 2 type: Transform - - uid: 1759 + - uid: 1983 components: - pos: 1.5,-18.5 parent: 2 type: Transform - - uid: 1760 + - uid: 1984 components: - pos: 2.5,-10.5 parent: 2 type: Transform - - uid: 1761 + - uid: 1985 components: - pos: 3.5,-10.5 parent: 2 type: Transform - - uid: 1762 + - uid: 1986 components: - pos: 4.5,-10.5 parent: 2 type: Transform - - uid: 1763 + - uid: 1987 components: - pos: 4.5,-9.5 parent: 2 type: Transform - - uid: 1764 + - uid: 1988 components: - pos: 4.5,-8.5 parent: 2 type: Transform - - uid: 1765 + - uid: 1989 components: - pos: 4.5,-7.5 parent: 2 type: Transform - - uid: 1766 + - uid: 1990 components: - pos: 4.5,-6.5 parent: 2 type: Transform - - uid: 1767 + - uid: 1991 components: - pos: 4.5,-11.5 parent: 2 type: Transform - - uid: 1768 + - uid: 1992 components: - pos: 4.5,-12.5 parent: 2 type: Transform - - uid: 1769 + - uid: 1993 components: - pos: 4.5,-13.5 parent: 2 type: Transform - - uid: 1770 + - uid: 1994 components: - pos: 4.5,-14.5 parent: 2 type: Transform - - uid: 1771 + - uid: 1995 components: - pos: 2.5,-18.5 parent: 2 type: Transform - - uid: 1772 + - uid: 1996 components: - pos: 3.5,-18.5 parent: 2 type: Transform - - uid: 1773 + - uid: 1997 components: - pos: 4.5,-18.5 parent: 2 type: Transform - - uid: 1774 + - uid: 1998 components: - pos: 5.5,-18.5 parent: 2 type: Transform - - uid: 1775 + - uid: 1999 components: - pos: 5.5,-19.5 parent: 2 type: Transform - - uid: 1776 + - uid: 2000 components: - pos: 5.5,-20.5 parent: 2 type: Transform - - uid: 1777 + - uid: 2001 components: - pos: 5.5,-21.5 parent: 2 type: Transform - - uid: 1778 + - uid: 2002 components: - pos: 5.5,-22.5 parent: 2 type: Transform - - uid: 1779 + - uid: 2003 components: - pos: 21.5,-19.5 parent: 2 type: Transform - - uid: 1780 + - uid: 2004 components: - pos: 20.5,-19.5 parent: 2 type: Transform - - uid: 1781 + - uid: 2005 components: - pos: 19.5,-19.5 parent: 2 type: Transform - - uid: 1782 + - uid: 2006 components: - pos: 18.5,-19.5 parent: 2 type: Transform - - uid: 1783 + - uid: 2007 components: - pos: 12.5,-15.5 parent: 2 type: Transform - - uid: 1784 + - uid: 2008 components: - pos: 11.5,-15.5 parent: 2 type: Transform - - uid: 1785 + - uid: 2009 components: - pos: 10.5,-15.5 parent: 2 type: Transform - - uid: 1786 + - uid: 2010 components: - pos: 9.5,-15.5 parent: 2 type: Transform - - uid: 1787 + - uid: 2011 components: - pos: 8.5,-15.5 parent: 2 type: Transform - - uid: 1788 + - uid: 2012 components: - pos: 7.5,-15.5 parent: 2 type: Transform - - uid: 1789 + - uid: 2013 components: - pos: 7.5,-14.5 parent: 2 type: Transform - - uid: 1790 + - uid: 2014 components: - pos: 7.5,-13.5 parent: 2 type: Transform - - uid: 1791 + - uid: 2015 components: - pos: 7.5,-12.5 parent: 2 type: Transform - - uid: 1792 + - uid: 2016 components: - pos: 10.5,-14.5 parent: 2 type: Transform - - uid: 1793 + - uid: 2017 components: - pos: 10.5,-13.5 parent: 2 type: Transform - - uid: 1794 + - uid: 2018 components: - pos: 10.5,-12.5 parent: 2 type: Transform - - uid: 1795 + - uid: 2019 components: - pos: 10.5,-16.5 parent: 2 type: Transform - - uid: 1796 + - uid: 2020 components: - pos: 10.5,-17.5 parent: 2 type: Transform - - uid: 1797 + - uid: 2021 components: - pos: 10.5,-18.5 parent: 2 type: Transform - - uid: 1798 + - uid: 2022 components: - pos: 10.5,-19.5 parent: 2 type: Transform - - uid: 1799 + - uid: 2023 components: - pos: 10.5,-20.5 parent: 2 type: Transform - - uid: 1800 + - uid: 2024 components: - pos: 10.5,-21.5 parent: 2 type: Transform - - uid: 1801 + - uid: 2025 components: - pos: 10.5,-22.5 parent: 2 type: Transform - - uid: 1802 + - uid: 2026 components: - pos: 9.5,-20.5 parent: 2 type: Transform - - uid: 1803 + - uid: 2027 components: - pos: 8.5,-20.5 parent: 2 type: Transform - - uid: 1804 + - uid: 2028 components: - pos: 7.5,-20.5 parent: 2 type: Transform - - uid: 1805 + - uid: 2029 components: - pos: 9.5,-17.5 parent: 2 type: Transform - - uid: 1806 + - uid: 2030 components: - pos: 8.5,-17.5 parent: 2 type: Transform - - uid: 1807 + - uid: 2031 components: - pos: 7.5,-17.5 parent: 2 type: Transform - - uid: 1808 + - uid: 2032 components: - pos: -16.5,28.5 parent: 2 type: Transform - - uid: 1809 + - uid: 2033 components: - pos: -12.5,21.5 parent: 2 type: Transform - - uid: 1810 + - uid: 2034 components: - pos: -13.5,21.5 parent: 2 type: Transform - - uid: 1811 + - uid: 2035 components: - pos: -14.5,21.5 parent: 2 type: Transform - - uid: 1812 + - uid: 2036 components: - pos: -12.5,20.5 parent: 2 type: Transform - - uid: 1813 + - uid: 2037 components: - pos: -12.5,19.5 parent: 2 type: Transform - - uid: 1814 + - uid: 2038 components: - pos: -12.5,18.5 parent: 2 type: Transform - - uid: 1815 + - uid: 2039 components: - pos: -12.5,17.5 parent: 2 type: Transform - - uid: 1816 + - uid: 2040 components: - pos: -12.5,16.5 parent: 2 type: Transform - - uid: 1817 + - uid: 2041 components: - pos: -12.5,15.5 parent: 2 type: Transform - - uid: 1818 + - uid: 2042 components: - pos: 6.5,29.5 parent: 2 type: Transform - - uid: 1819 + - uid: 2043 components: - pos: 18.5,24.5 parent: 2 type: Transform - - uid: 1820 + - uid: 2044 components: - pos: 17.5,24.5 parent: 2 type: Transform - - uid: 1821 + - uid: 2045 components: - pos: 16.5,24.5 parent: 2 type: Transform - - uid: 1822 + - uid: 2046 components: - pos: 15.5,24.5 parent: 2 type: Transform - - uid: 1823 + - uid: 2047 components: - pos: 15.5,26.5 parent: 2 type: Transform - - uid: 1824 + - uid: 2048 components: - pos: 15.5,27.5 parent: 2 type: Transform - - uid: 1825 + - uid: 2049 components: - pos: 15.5,28.5 parent: 2 type: Transform - - uid: 1826 + - uid: 2050 components: - pos: 15.5,29.5 parent: 2 type: Transform - - uid: 1827 + - uid: 2051 components: - pos: 15.5,25.5 parent: 2 type: Transform - - uid: 1828 + - uid: 2052 components: - pos: 7.5,33.5 parent: 2 type: Transform - - uid: 1829 + - uid: 2053 components: - pos: 7.5,34.5 parent: 2 type: Transform - - uid: 1830 + - uid: 2054 components: - pos: 16.5,29.5 parent: 2 type: Transform - - uid: 1831 + - uid: 2055 components: - pos: 17.5,29.5 parent: 2 type: Transform - - uid: 1832 + - uid: 2056 components: - pos: 18.5,29.5 parent: 2 type: Transform - - uid: 1833 + - uid: 2057 components: - pos: 19.5,29.5 parent: 2 type: Transform - - uid: 1834 + - uid: 2058 components: - pos: 20.5,29.5 parent: 2 type: Transform - - uid: 1835 + - uid: 2059 components: - pos: 22.5,29.5 parent: 2 type: Transform - - uid: 1836 + - uid: 2060 components: - pos: 23.5,29.5 parent: 2 type: Transform - - uid: 1837 + - uid: 2061 components: - pos: 24.5,29.5 parent: 2 type: Transform - - uid: 1838 + - uid: 2062 components: - pos: 23.5,31.5 parent: 2 type: Transform - - uid: 1839 + - uid: 2063 components: - pos: 23.5,32.5 parent: 2 type: Transform - - uid: 1840 + - uid: 2064 components: - pos: 19.5,30.5 parent: 2 type: Transform - - uid: 1841 + - uid: 2065 components: - pos: 19.5,31.5 parent: 2 type: Transform - - uid: 1842 + - uid: 2066 components: - pos: 19.5,32.5 parent: 2 type: Transform - - uid: 1843 + - uid: 2067 components: - pos: 7.5,29.5 parent: 2 type: Transform - - uid: 1844 + - uid: 2068 components: - pos: 7.5,30.5 parent: 2 type: Transform - - uid: 1845 + - uid: 2069 components: - pos: 7.5,31.5 parent: 2 type: Transform - - uid: 1846 + - uid: 2070 components: - pos: 7.5,32.5 parent: 2 type: Transform - - uid: 1847 + - uid: 2071 components: - pos: 10.5,18.5 parent: 2 type: Transform - - uid: 1848 + - uid: 2072 components: - pos: 10.5,19.5 parent: 2 type: Transform - - uid: 1849 + - uid: 2073 components: - pos: 10.5,20.5 parent: 2 type: Transform - - uid: 1850 + - uid: 2074 components: - pos: 8.5,20.5 parent: 2 type: Transform - - uid: 1851 + - uid: 2075 components: - pos: 9.5,20.5 parent: 2 type: Transform - - uid: 1852 + - uid: 2076 components: - pos: 7.5,20.5 parent: 2 type: Transform - - uid: 1853 + - uid: 2077 components: - pos: 9.5,18.5 parent: 2 type: Transform - - uid: 1854 + - uid: 2078 components: - pos: 10.5,17.5 parent: 2 type: Transform - - uid: 1855 + - uid: 2079 components: - pos: 10.5,16.5 parent: 2 type: Transform - - uid: 1856 + - uid: 2080 components: - pos: 10.5,15.5 parent: 2 type: Transform - - uid: 1857 + - uid: 2081 components: - pos: 10.5,14.5 parent: 2 type: Transform - - uid: 1858 + - uid: 2082 components: - pos: 10.5,13.5 parent: 2 type: Transform - - uid: 1859 + - uid: 2083 components: - pos: 13.5,13.5 parent: 2 type: Transform - - uid: 1860 + - uid: 2084 components: - pos: 14.5,13.5 parent: 2 type: Transform - - uid: 1861 + - uid: 2085 components: - pos: 15.5,13.5 parent: 2 type: Transform - - uid: 1862 + - uid: 2086 components: - pos: 15.5,14.5 parent: 2 type: Transform - - uid: 1863 + - uid: 2087 components: - pos: 15.5,15.5 parent: 2 type: Transform - - uid: 1864 + - uid: 2088 components: - pos: 15.5,16.5 parent: 2 type: Transform - - uid: 1865 + - uid: 2089 components: - pos: 15.5,17.5 parent: 2 type: Transform - - uid: 1866 + - uid: 2090 components: - pos: 16.5,17.5 parent: 2 type: Transform - - uid: 1867 + - uid: 2091 components: - pos: 17.5,17.5 parent: 2 type: Transform - - uid: 1868 + - uid: 2092 components: - pos: 18.5,17.5 parent: 2 type: Transform - - uid: 1869 + - uid: 2093 components: - pos: 11.5,17.5 parent: 2 type: Transform - - uid: 1870 + - uid: 2094 components: - pos: 12.5,17.5 parent: 2 type: Transform - - uid: 1871 + - uid: 2095 components: - pos: 9.5,13.5 parent: 2 type: Transform - - uid: 1872 + - uid: 2096 components: - pos: 5.5,13.5 parent: 2 type: Transform - - uid: 1873 + - uid: 2097 components: - pos: 4.5,13.5 parent: 2 type: Transform - - uid: 1874 + - uid: 2098 components: - pos: 3.5,7.5 parent: 2 type: Transform - - uid: 1875 + - uid: 2099 components: - pos: 2.5,7.5 parent: 2 type: Transform - - uid: 1876 + - uid: 2100 components: - pos: 1.5,7.5 parent: 2 type: Transform - - uid: 1877 + - uid: 2101 components: - pos: 1.5,8.5 parent: 2 type: Transform - - uid: 1878 + - uid: 2102 components: - pos: 1.5,9.5 parent: 2 type: Transform - - uid: 1879 + - uid: 2103 components: - pos: 1.5,10.5 parent: 2 type: Transform - - uid: 1880 + - uid: 2104 components: - pos: 1.5,11.5 parent: 2 type: Transform - - uid: 1881 + - uid: 2105 components: - pos: -10.5,14.5 parent: 2 type: Transform - - uid: 1882 + - uid: 2106 components: - pos: -10.5,13.5 parent: 2 type: Transform - - uid: 1883 + - uid: 2107 components: - pos: -9.5,13.5 parent: 2 type: Transform - - uid: 1884 + - uid: 2108 components: - pos: -8.5,13.5 parent: 2 type: Transform - - uid: 1885 + - uid: 2109 components: - pos: -7.5,13.5 parent: 2 type: Transform - - uid: 1886 + - uid: 2110 components: - pos: -6.5,13.5 parent: 2 type: Transform - - uid: 1887 + - uid: 2111 components: - pos: -5.5,13.5 parent: 2 type: Transform - - uid: 1888 + - uid: 2112 components: - pos: -1.5,13.5 parent: 2 type: Transform - - uid: 1889 + - uid: 2113 components: - pos: -11.5,13.5 parent: 2 type: Transform - - uid: 1890 + - uid: 2114 components: - pos: -12.5,13.5 parent: 2 type: Transform - - uid: 1891 + - uid: 2115 components: - pos: -12.5,12.5 parent: 2 type: Transform - - uid: 1892 + - uid: 2116 components: - pos: -12.5,11.5 parent: 2 type: Transform - - uid: 1893 + - uid: 2117 components: - pos: -12.5,10.5 parent: 2 type: Transform - - uid: 1894 + - uid: 2118 components: - pos: -12.5,9.5 parent: 2 type: Transform - - uid: 1895 + - uid: 2119 components: - pos: -12.5,8.5 parent: 2 type: Transform - - uid: 1896 + - uid: 2120 components: - pos: -21.5,25.5 parent: 2 type: Transform - - uid: 1897 + - uid: 2121 components: - pos: 1.5,29.5 parent: 2 type: Transform - - uid: 1898 + - uid: 2122 components: - pos: -10.5,26.5 parent: 2 type: Transform - - uid: 1899 + - uid: 2123 components: - pos: -10.5,27.5 parent: 2 type: Transform - - uid: 1900 + - uid: 2124 components: - pos: -10.5,28.5 parent: 2 type: Transform - - uid: 1901 + - uid: 2125 components: - pos: -11.5,26.5 parent: 2 type: Transform - - uid: 1902 + - uid: 2126 components: - pos: -12.5,26.5 parent: 2 type: Transform - - uid: 1903 + - uid: 2127 components: - pos: 18.5,-1.5 parent: 2 type: Transform - - uid: 1904 + - uid: 2128 components: - pos: -8.5,40.5 parent: 2 type: Transform - - uid: 1905 + - uid: 2129 components: - pos: 9.5,23.5 parent: 2 type: Transform - - uid: 1906 + - uid: 2130 components: - pos: 2.5,9.5 parent: 2 type: Transform - - uid: 1907 + - uid: 2131 components: - pos: 3.5,9.5 parent: 2 type: Transform - - uid: 1908 + - uid: 2132 components: - pos: 4.5,9.5 parent: 2 type: Transform - - uid: 1909 + - uid: 2133 components: - pos: 5.5,9.5 parent: 2 type: Transform - - uid: 1910 + - uid: 2134 components: - pos: 6.5,9.5 parent: 2 type: Transform - - uid: 1911 + - uid: 2135 components: - pos: 7.5,9.5 parent: 2 type: Transform - - uid: 1912 + - uid: 2136 components: - pos: 8.5,9.5 parent: 2 type: Transform - - uid: 1913 + - uid: 2137 components: - pos: -23.5,24.5 parent: 2 type: Transform - - uid: 1914 + - uid: 2138 components: - pos: -27.5,-3.5 parent: 2 type: Transform - - uid: 1915 + - uid: 2139 components: - pos: 19.5,33.5 parent: 2 type: Transform - - uid: 1916 + - uid: 2140 components: - pos: 19.5,34.5 parent: 2 type: Transform - - uid: 1917 + - uid: 2141 components: - pos: 19.5,35.5 parent: 2 type: Transform - - uid: 1918 + - uid: 2142 components: - pos: -22.5,12.5 parent: 2 type: Transform - - uid: 1919 + - uid: 2143 components: - pos: -23.5,12.5 parent: 2 type: Transform - - uid: 1920 + - uid: 2144 components: - pos: 31.5,28.5 parent: 2 type: Transform - - uid: 1921 + - uid: 2145 components: - pos: -11.5,31.5 parent: 2 type: Transform - - uid: 1922 + - uid: 2146 components: - pos: -10.5,31.5 parent: 2 type: Transform - - uid: 1923 + - uid: 2147 components: - pos: -20.5,24.5 parent: 2 type: Transform - - uid: 1924 + - uid: 2148 components: - pos: -15.5,24.5 parent: 2 type: Transform - - uid: 1925 + - uid: 2149 components: - pos: -14.5,24.5 parent: 2 type: Transform - - uid: 1926 + - uid: 2150 components: - pos: -14.5,23.5 parent: 2 type: Transform - - uid: 1927 + - uid: 2151 components: - pos: -19.5,24.5 parent: 2 type: Transform - - uid: 1928 + - uid: 2152 components: - pos: 1.5,25.5 parent: 2 type: Transform - - uid: 1929 + - uid: 2153 components: - pos: -20.5,28.5 parent: 2 type: Transform - - uid: 1930 + - uid: 2154 components: - pos: 30.5,28.5 parent: 2 type: Transform - - uid: 1931 + - uid: 2155 components: - pos: -14.5,22.5 parent: 2 type: Transform - - uid: 1932 + - uid: 2156 components: - pos: 21.5,11.5 parent: 2 type: Transform - - uid: 1933 + - uid: 2157 components: - pos: 21.5,12.5 parent: 2 type: Transform - - uid: 1934 + - uid: 2158 components: - pos: 21.5,13.5 parent: 2 type: Transform - - uid: 1935 + - uid: 2159 components: - pos: 20.5,13.5 parent: 2 type: Transform - - uid: 1936 + - uid: 2160 components: - pos: 19.5,13.5 parent: 2 type: Transform - - uid: 1937 + - uid: 2161 components: - pos: 10.5,32.5 parent: 2 type: Transform - - uid: 1938 + - uid: 2162 components: - pos: 9.5,32.5 parent: 2 type: Transform - - uid: 1939 + - uid: 2163 components: - pos: 3.5,29.5 parent: 2 type: Transform - - uid: 1940 + - uid: 2164 components: - pos: 20.5,-5.5 parent: 2 type: Transform - - uid: 1941 + - uid: 2165 components: - pos: 2.5,29.5 parent: 2 type: Transform - - uid: 1942 + - uid: 2166 components: - pos: 27.5,28.5 parent: 2 type: Transform - - uid: 1943 + - uid: 2167 components: - pos: 28.5,28.5 parent: 2 type: Transform - - uid: 1944 + - uid: 2168 components: - pos: -0.5,-24.5 parent: 2 type: Transform - - uid: 1945 + - uid: 2169 components: - pos: 0.5,-24.5 parent: 2 type: Transform - - uid: 1946 + - uid: 2170 components: - pos: -0.5,-20.5 parent: 2 type: Transform - - uid: 1947 + - uid: 2171 components: - pos: 0.5,-20.5 parent: 2 type: Transform - - uid: 1948 + - uid: 2172 components: - pos: 1.5,-20.5 parent: 2 type: Transform - - uid: 1949 + - uid: 2173 components: - pos: 1.5,-24.5 parent: 2 type: Transform - - uid: 1950 + - uid: 2174 components: - pos: -8.5,-18.5 parent: 2 type: Transform - - uid: 1951 + - uid: 2175 components: - pos: 14.5,-25.5 parent: 2 type: Transform - - uid: 1952 + - uid: 2176 components: - pos: 17.5,30.5 parent: 2 type: Transform - - uid: 1953 + - uid: 2177 components: - pos: 13.5,-22.5 parent: 2 type: Transform - - uid: 1954 + - uid: 2178 components: - pos: 13.5,-21.5 parent: 2 type: Transform - - uid: 1955 + - uid: 2179 components: - pos: 21.5,20.5 parent: 2 type: Transform - - uid: 1956 + - uid: 2180 components: - pos: -6.5,20.5 parent: 2 type: Transform - - uid: 1957 + - uid: 2181 components: - pos: 22.5,-19.5 parent: 2 type: Transform - - uid: 1958 + - uid: 2182 components: - pos: 23.5,-19.5 parent: 2 type: Transform - - uid: 1959 + - uid: 2183 components: - pos: 24.5,-19.5 parent: 2 type: Transform - - uid: 1960 + - uid: 2184 components: - pos: 25.5,-19.5 parent: 2 type: Transform - - uid: 1961 + - uid: 2185 components: - pos: 24.5,-20.5 parent: 2 type: Transform - - uid: 1962 + - uid: 2186 components: - pos: 24.5,-21.5 parent: 2 type: Transform - - uid: 1963 + - uid: 2187 components: - pos: 24.5,-22.5 parent: 2 type: Transform - - uid: 1964 + - uid: 2188 components: - pos: 13.5,-16.5 parent: 2 type: Transform - - uid: 1965 + - uid: 2189 components: - pos: 12.5,-16.5 parent: 2 type: Transform - - uid: 1966 + - uid: 2190 components: - pos: 14.5,-16.5 parent: 2 type: Transform - - uid: 1967 + - uid: 2191 components: - pos: 15.5,-16.5 parent: 2 type: Transform - - uid: 1968 + - uid: 2192 components: - pos: 16.5,-16.5 parent: 2 type: Transform - - uid: 1969 + - uid: 2193 components: - pos: 17.5,-16.5 parent: 2 type: Transform - - uid: 1970 + - uid: 2194 components: - pos: 18.5,-16.5 parent: 2 type: Transform - - uid: 1971 + - uid: 2195 components: - pos: 19.5,-16.5 parent: 2 type: Transform - - uid: 1972 + - uid: 2196 components: - pos: 19.5,-15.5 parent: 2 type: Transform - - uid: 1973 + - uid: 2197 components: - pos: 19.5,-14.5 parent: 2 type: Transform - - uid: 1974 + - uid: 2198 components: - pos: 18.5,-14.5 parent: 2 type: Transform - - uid: 1975 + - uid: 2199 components: - pos: -29.5,-7.5 parent: 2 type: Transform - - uid: 1976 + - uid: 2200 components: - pos: 20.5,35.5 parent: 2 type: Transform - - uid: 1977 + - uid: 2201 components: - pos: 21.5,35.5 parent: 2 type: Transform - - uid: 1978 + - uid: 2202 components: - pos: 21.5,35.5 parent: 2 type: Transform - - uid: 1979 + - uid: 2203 components: - pos: 22.5,35.5 parent: 2 type: Transform - - uid: 1980 + - uid: 2204 components: - pos: 23.5,35.5 parent: 2 type: Transform - - uid: 1981 + - uid: 2205 components: - pos: 24.5,35.5 parent: 2 type: Transform - - uid: 1982 + - uid: 2206 components: - pos: 3.5,28.5 parent: 2 type: Transform - - uid: 1983 + - uid: 2207 components: - pos: 23.5,36.5 parent: 2 type: Transform - - uid: 1984 + - uid: 2208 components: - pos: 21.5,36.5 parent: 2 type: Transform - - uid: 1985 + - uid: 2209 components: - pos: -25.5,-37.5 parent: 2 type: Transform - - uid: 1986 + - uid: 2210 components: - pos: -1.5,14.5 parent: 2 type: Transform - - uid: 1987 + - uid: 2211 components: - pos: -1.5,15.5 parent: 2 type: Transform - - uid: 1988 + - uid: 2212 components: - pos: -1.5,15.5 parent: 2 type: Transform - - uid: 1989 + - uid: 2213 components: - pos: -1.5,16.5 parent: 2 type: Transform - - uid: 1990 + - uid: 2214 components: - pos: -1.5,16.5 parent: 2 type: Transform - - uid: 1991 + - uid: 2215 components: - pos: -0.5,16.5 parent: 2 type: Transform - - uid: 1992 + - uid: 2216 components: - pos: 2.5,16.5 parent: 2 type: Transform - - uid: 1993 + - uid: 2217 components: - pos: 1.5,16.5 parent: 2 type: Transform - - uid: 1994 + - uid: 2218 components: - pos: 0.5,16.5 parent: 2 type: Transform - - uid: 1995 + - uid: 2219 components: - pos: 3.5,13.5 parent: 2 type: Transform - - uid: 1996 + - uid: 2220 components: - pos: 2.5,13.5 parent: 2 type: Transform - - uid: 1997 + - uid: 2221 components: - pos: 2.5,14.5 parent: 2 type: Transform - - uid: 1998 + - uid: 2222 components: - pos: 3.5,6.5 parent: 2 type: Transform - - uid: 1999 + - uid: 2223 components: - pos: 3.5,5.5 parent: 2 type: Transform - - uid: 2000 + - uid: 2224 components: - pos: 3.5,4.5 parent: 2 type: Transform - - uid: 2001 + - uid: 2225 components: - pos: 3.5,3.5 parent: 2 type: Transform - - uid: 2002 + - uid: 2226 components: - pos: 3.5,2.5 parent: 2 type: Transform - - uid: 2003 + - uid: 2227 components: - pos: 3.5,1.5 parent: 2 type: Transform - - uid: 2004 + - uid: 2228 components: - pos: 11.5,35.5 parent: 2 type: Transform - - uid: 2005 + - uid: 2229 components: - pos: 16.5,18.5 parent: 2 type: Transform - - uid: 2006 + - uid: 2230 components: - pos: -29.5,0.5 parent: 2 type: Transform - - uid: 2007 + - uid: 2231 components: - pos: 7.5,-21.5 parent: 2 type: Transform - - uid: 2008 + - uid: 2232 components: - pos: 7.5,-18.5 parent: 2 type: Transform - - uid: 2009 + - uid: 2233 components: - pos: -17.5,24.5 parent: 2 type: Transform - - uid: 2010 + - uid: 2234 components: - pos: -16.5,24.5 parent: 2 type: Transform - - uid: 2011 + - uid: 2235 components: - pos: -18.5,24.5 parent: 2 type: Transform - - uid: 2012 + - uid: 2236 components: - pos: 1.5,26.5 parent: 2 type: Transform - - uid: 2013 + - uid: 2237 components: - pos: 20.5,21.5 parent: 2 type: Transform - - uid: 2014 + - uid: 2238 components: - pos: 24.5,20.5 parent: 2 type: Transform - - uid: 2015 + - uid: 2239 components: - pos: -0.5,-7.5 parent: 2 type: Transform - - uid: 2016 + - uid: 2240 components: - pos: -0.5,-8.5 parent: 2 type: Transform - - uid: 2017 + - uid: 2241 components: - pos: -1.5,-8.5 parent: 2 type: Transform - - uid: 2018 + - uid: 2242 components: - pos: 0.5,-8.5 parent: 2 type: Transform - - uid: 2019 + - uid: 2243 components: - pos: 12.5,37.5 parent: 2 type: Transform - - uid: 2020 + - uid: 2244 components: - pos: 7.5,-8.5 parent: 2 type: Transform - - uid: 2021 + - uid: 2245 components: - pos: 8.5,-8.5 parent: 2 type: Transform - - uid: 2022 + - uid: 2246 components: - pos: 9.5,-8.5 parent: 2 type: Transform - - uid: 2023 + - uid: 2247 components: - pos: 12.5,38.5 parent: 2 type: Transform - - uid: 2024 + - uid: 2248 components: - pos: 5.5,-23.5 parent: 2 type: Transform - - uid: 2025 + - uid: 2249 components: - pos: 5.5,-24.5 parent: 2 type: Transform - - uid: 2026 + - uid: 2250 components: - pos: 5.5,-25.5 parent: 2 type: Transform - - uid: 2027 + - uid: 2251 components: - pos: 5.5,-26.5 parent: 2 type: Transform - - uid: 2028 + - uid: 2252 components: - pos: 5.5,-27.5 parent: 2 type: Transform - - uid: 2029 + - uid: 2253 components: - pos: 6.5,-27.5 parent: 2 type: Transform - - uid: 2030 + - uid: 2254 components: - pos: 7.5,-27.5 parent: 2 type: Transform - - uid: 2031 + - uid: 2255 components: - pos: -31.5,28.5 parent: 2 type: Transform - - uid: 2032 + - uid: 2256 components: - pos: 4.5,35.5 parent: 2 type: Transform - - uid: 2033 + - uid: 2257 components: - pos: 14.5,35.5 parent: 2 type: Transform - - uid: 2034 + - uid: 2258 components: - pos: 13.5,35.5 parent: 2 type: Transform - - uid: 2035 + - uid: 2259 components: - pos: 6.5,35.5 parent: 2 type: Transform - - uid: 2036 + - uid: 2260 components: - pos: -36.5,1.5 parent: 2 type: Transform - - uid: 2037 + - uid: 2261 components: - pos: -32.5,-1.5 parent: 2 type: Transform - - uid: 2038 + - uid: 2262 components: - pos: 24.5,21.5 parent: 2 type: Transform - - uid: 2039 + - uid: 2263 components: - pos: 24.5,22.5 parent: 2 type: Transform - - uid: 2040 + - uid: 2264 components: - pos: -19.5,8.5 parent: 2 type: Transform - - uid: 2041 + - uid: 2265 components: - pos: -20.5,8.5 parent: 2 type: Transform - - uid: 2042 + - uid: 2266 components: - pos: -21.5,8.5 parent: 2 type: Transform - - uid: 2043 + - uid: 2267 components: - pos: -22.5,8.5 parent: 2 type: Transform - - uid: 2044 + - uid: 2268 components: - pos: -21.5,7.5 parent: 2 type: Transform - - uid: 2045 + - uid: 2269 components: - pos: -21.5,6.5 parent: 2 type: Transform - - uid: 2046 + - uid: 2270 components: - pos: -21.5,4.5 parent: 2 type: Transform - - uid: 2047 + - uid: 2271 components: - pos: -22.5,4.5 parent: 2 type: Transform - - uid: 2048 + - uid: 2272 components: - pos: -20.5,4.5 parent: 2 type: Transform - - uid: 2049 + - uid: 2273 components: - pos: 24.5,23.5 parent: 2 type: Transform - - uid: 2050 + - uid: 2274 components: - pos: 24.5,24.5 parent: 2 type: Transform - - uid: 2051 + - uid: 2275 components: - pos: -18.5,-7.5 parent: 2 type: Transform - - uid: 2052 + - uid: 2276 components: - pos: -19.5,-7.5 parent: 2 type: Transform - - uid: 2053 + - uid: 2277 components: - pos: -20.5,-7.5 parent: 2 type: Transform - - uid: 2054 + - uid: 2278 components: - pos: -16.5,-9.5 parent: 2 type: Transform - - uid: 2055 + - uid: 2279 components: - pos: 24.5,25.5 parent: 2 type: Transform - - uid: 2056 + - uid: 2280 components: - pos: -22.5,-0.5 parent: 2 type: Transform - - uid: 2057 + - uid: 2281 components: - pos: -23.5,-0.5 parent: 2 type: Transform - - uid: 2058 + - uid: 2282 components: - pos: -24.5,-0.5 parent: 2 type: Transform - - uid: 2059 + - uid: 2283 components: - pos: -24.5,1.5 parent: 2 type: Transform - - uid: 2060 + - uid: 2284 components: - pos: -24.5,0.5 parent: 2 type: Transform - - uid: 2061 + - uid: 2285 components: - pos: -24.5,-1.5 parent: 2 type: Transform - - uid: 2062 + - uid: 2286 components: - pos: -24.5,-2.5 parent: 2 type: Transform - - uid: 2063 + - uid: 2287 components: - pos: -24.5,-3.5 parent: 2 type: Transform - - uid: 2064 + - uid: 2288 components: - pos: -24.5,-4.5 parent: 2 type: Transform - - uid: 2065 + - uid: 2289 components: - pos: -24.5,-5.5 parent: 2 type: Transform - - uid: 2066 + - uid: 2290 components: - pos: -24.5,-6.5 parent: 2 type: Transform - - uid: 2067 + - uid: 2291 components: - pos: -24.5,-7.5 parent: 2 type: Transform - - uid: 2068 + - uid: 2292 components: - pos: -24.5,-8.5 parent: 2 type: Transform - - uid: 2069 + - uid: 2293 components: - pos: -29.5,-1.5 parent: 2 type: Transform - - uid: 2070 + - uid: 2294 components: - pos: -22.5,-3.5 parent: 2 type: Transform - - uid: 2071 + - uid: 2295 components: - pos: -21.5,-3.5 parent: 2 type: Transform - - uid: 2072 + - uid: 2296 components: - pos: -20.5,-3.5 parent: 2 type: Transform - - uid: 2073 + - uid: 2297 components: - pos: -16.5,-2.5 parent: 2 type: Transform - - uid: 2074 + - uid: 2298 components: - pos: -16.5,-1.5 parent: 2 type: Transform - - uid: 2075 + - uid: 2299 components: - pos: -16.5,-0.5 parent: 2 type: Transform - - uid: 2076 + - uid: 2300 components: - pos: -16.5,0.5 parent: 2 type: Transform - - uid: 2077 + - uid: 2301 components: - pos: -32.5,-5.5 parent: 2 type: Transform - - uid: 2078 + - uid: 2302 components: - pos: 12.5,35.5 parent: 2 type: Transform - - uid: 2079 + - uid: 2303 components: - pos: 23.5,1.5 parent: 2 type: Transform - - uid: 2080 + - uid: 2304 components: - pos: 12.5,36.5 parent: 2 type: Transform - - uid: 2081 + - uid: 2305 components: - pos: -4.5,45.5 parent: 2 type: Transform - - uid: 2082 + - uid: 2306 components: - pos: -4.5,45.5 parent: 2 type: Transform - - uid: 2083 + - uid: 2307 components: - pos: 23.5,20.5 parent: 2 type: Transform - - uid: 2084 + - uid: 2308 components: - pos: 19.5,17.5 parent: 2 type: Transform - - uid: 2085 + - uid: 2309 components: - pos: 20.5,17.5 parent: 2 type: Transform - - uid: 2086 + - uid: 2310 components: - pos: 21.5,17.5 parent: 2 type: Transform - - uid: 2087 + - uid: 2311 components: - pos: 22.5,17.5 parent: 2 type: Transform - - uid: 2088 + - uid: 2312 components: - pos: 23.5,17.5 parent: 2 type: Transform - - uid: 2089 + - uid: 2313 components: - pos: 24.5,17.5 parent: 2 type: Transform - - uid: 2090 + - uid: 2314 components: - pos: 25.5,17.5 parent: 2 type: Transform - - uid: 2091 + - uid: 2315 components: - pos: 26.5,17.5 parent: 2 type: Transform - - uid: 2092 + - uid: 2316 components: - pos: 27.5,17.5 parent: 2 type: Transform - - uid: 2093 + - uid: 2317 components: - pos: 28.5,17.5 parent: 2 type: Transform - - uid: 2094 + - uid: 2318 components: - pos: 29.5,17.5 parent: 2 type: Transform - - uid: 2095 + - uid: 2319 components: - pos: 30.5,17.5 parent: 2 type: Transform - - uid: 2096 + - uid: 2320 components: - pos: 31.5,17.5 parent: 2 type: Transform - - uid: 2097 + - uid: 2321 components: - pos: 32.5,16.5 parent: 2 type: Transform - - uid: 2098 + - uid: 2322 components: - pos: 33.5,16.5 parent: 2 type: Transform - - uid: 2099 + - uid: 2323 components: - pos: 34.5,16.5 parent: 2 type: Transform - - uid: 2100 + - uid: 2324 components: - pos: 35.5,16.5 parent: 2 type: Transform - - uid: 2101 + - uid: 2325 components: - pos: 36.5,16.5 parent: 2 type: Transform - - uid: 2102 + - uid: 2326 components: - pos: 0.5,17.5 parent: 2 type: Transform - - uid: 2103 + - uid: 2327 components: - pos: 0.5,18.5 parent: 2 type: Transform - - uid: 2104 + - uid: 2328 components: - pos: 2.5,15.5 parent: 2 type: Transform - - uid: 2105 + - uid: 2329 components: - pos: 22.5,20.5 parent: 2 type: Transform - - uid: 2106 + - uid: 2330 components: - pos: -1.5,31.5 parent: 2 type: Transform - - uid: 2107 + - uid: 2331 components: - pos: 37.5,16.5 parent: 2 type: Transform - - uid: 2108 + - uid: 2332 components: - pos: -8.5,31.5 parent: 2 type: Transform - - uid: 2109 + - uid: 2333 components: - pos: -6.5,40.5 parent: 2 type: Transform - - uid: 2110 + - uid: 2334 components: - pos: -7.5,39.5 parent: 2 type: Transform - - uid: 2111 + - uid: 2335 components: - pos: -7.5,31.5 parent: 2 type: Transform - - uid: 2112 + - uid: 2336 components: - pos: -7.5,43.5 parent: 2 type: Transform - - uid: 2113 + - uid: 2337 components: - pos: -6.5,41.5 parent: 2 type: Transform - - uid: 2114 + - uid: 2338 components: - pos: -37.5,1.5 parent: 2 type: Transform - - uid: 2115 + - uid: 2339 components: - pos: -21.5,-14.5 parent: 2 type: Transform - - uid: 2116 + - uid: 2340 components: - pos: -20.5,-14.5 parent: 2 type: Transform - - uid: 2117 + - uid: 2341 components: - pos: -19.5,-14.5 parent: 2 type: Transform - - uid: 2118 + - uid: 2342 components: - pos: -18.5,-14.5 parent: 2 type: Transform - - uid: 2119 + - uid: 2343 components: - pos: -18.5,-13.5 parent: 2 type: Transform - - uid: 2120 + - uid: 2344 components: - pos: -18.5,-12.5 parent: 2 type: Transform - - uid: 2121 + - uid: 2345 components: - pos: -21.5,-15.5 parent: 2 type: Transform - - uid: 2122 + - uid: 2346 components: - pos: -22.5,-15.5 parent: 2 type: Transform - - uid: 2123 + - uid: 2347 components: - pos: -23.5,-15.5 parent: 2 type: Transform - - uid: 2124 + - uid: 2348 components: - pos: -24.5,-15.5 parent: 2 type: Transform - - uid: 2125 + - uid: 2349 components: - pos: -24.5,-16.5 parent: 2 type: Transform - - uid: 2126 + - uid: 2350 components: - pos: -24.5,-17.5 parent: 2 type: Transform - - uid: 2127 + - uid: 2351 components: - pos: -24.5,-18.5 parent: 2 type: Transform - - uid: 2128 + - uid: 2352 components: - pos: -24.5,-19.5 parent: 2 type: Transform - - uid: 2129 + - uid: 2353 components: - pos: -24.5,-20.5 parent: 2 type: Transform - - uid: 2130 + - uid: 2354 components: - pos: -24.5,-21.5 parent: 2 type: Transform - - uid: 2131 + - uid: 2355 components: - pos: -24.5,-22.5 parent: 2 type: Transform - - uid: 2132 + - uid: 2356 components: - pos: -24.5,-23.5 parent: 2 type: Transform - - uid: 2133 + - uid: 2357 components: - pos: -24.5,-24.5 parent: 2 type: Transform - - uid: 2134 + - uid: 2358 components: - pos: -25.5,-24.5 parent: 2 type: Transform - - uid: 2135 + - uid: 2359 components: - pos: -26.5,-24.5 parent: 2 type: Transform - - uid: 2136 + - uid: 2360 components: - pos: -27.5,-24.5 parent: 2 type: Transform - - uid: 2137 + - uid: 2361 components: - pos: -28.5,-24.5 parent: 2 type: Transform - - uid: 2138 + - uid: 2362 components: - pos: -23.5,-23.5 parent: 2 type: Transform - - uid: 2139 + - uid: 2363 components: - pos: -22.5,-23.5 parent: 2 type: Transform - - uid: 2140 + - uid: 2364 components: - pos: -21.5,-23.5 parent: 2 type: Transform - - uid: 2141 + - uid: 2365 components: - pos: -20.5,-23.5 parent: 2 type: Transform - - uid: 2142 + - uid: 2366 components: - pos: -19.5,-23.5 parent: 2 type: Transform - - uid: 2143 + - uid: 2367 components: - pos: -25.5,-18.5 parent: 2 type: Transform - - uid: 2144 + - uid: 2368 components: - pos: -26.5,-18.5 parent: 2 type: Transform - - uid: 2145 + - uid: 2369 components: - pos: -27.5,-18.5 parent: 2 type: Transform - - uid: 2146 + - uid: 2370 components: - pos: -28.5,-18.5 parent: 2 type: Transform - - uid: 2147 + - uid: 2371 components: - pos: -28.5,-19.5 parent: 2 type: Transform - - uid: 2148 + - uid: 2372 components: - pos: -23.5,-18.5 parent: 2 type: Transform - - uid: 2149 + - uid: 2373 components: - pos: -22.5,-18.5 parent: 2 type: Transform - - uid: 2150 + - uid: 2374 components: - pos: -21.5,-18.5 parent: 2 type: Transform - - uid: 2151 + - uid: 2375 components: - pos: -20.5,-18.5 parent: 2 type: Transform - - uid: 2152 + - uid: 2376 components: - pos: -19.5,-18.5 parent: 2 type: Transform - - uid: 2153 + - uid: 2377 components: - pos: -19.5,-19.5 parent: 2 type: Transform - - uid: 2154 + - uid: 2378 components: - pos: -25.5,-15.5 parent: 2 type: Transform - - uid: 2155 + - uid: 2379 components: - pos: -26.5,-15.5 parent: 2 type: Transform - - uid: 2156 + - uid: 2380 components: - pos: -27.5,-15.5 parent: 2 type: Transform - - uid: 2157 + - uid: 2381 components: - pos: -28.5,-15.5 parent: 2 type: Transform - - uid: 2158 + - uid: 2382 components: - pos: -24.5,-25.5 parent: 2 type: Transform - - uid: 2159 + - uid: 2383 components: - pos: -24.5,-26.5 parent: 2 type: Transform - - uid: 2160 + - uid: 2384 components: - pos: -24.5,-27.5 parent: 2 type: Transform - - uid: 2161 + - uid: 2385 components: - pos: -24.5,-28.5 parent: 2 type: Transform - - uid: 2162 + - uid: 2386 components: - pos: -25.5,-28.5 parent: 2 type: Transform - - uid: 2163 + - uid: 2387 components: - pos: -26.5,-28.5 parent: 2 type: Transform - - uid: 2164 + - uid: 2388 components: - pos: -27.5,-28.5 parent: 2 type: Transform - - uid: 2165 + - uid: 2389 components: - pos: -28.5,-28.5 parent: 2 type: Transform - - uid: 2166 + - uid: 2390 components: - pos: -30.5,28.5 parent: 2 type: Transform - - uid: 2167 + - uid: 2391 components: - pos: -20.5,29.5 parent: 2 type: Transform - - uid: 2168 + - uid: 2392 components: - pos: -20.5,30.5 parent: 2 type: Transform - - uid: 2169 + - uid: 2393 components: - pos: -24.5,2.5 parent: 2 type: Transform - - uid: 2170 + - uid: 2394 components: - pos: -24.5,3.5 parent: 2 type: Transform - - uid: 2171 + - uid: 2395 components: - pos: -25.5,3.5 parent: 2 type: Transform - - uid: 2172 + - uid: 2396 components: - pos: -26.5,3.5 parent: 2 type: Transform - - uid: 2173 + - uid: 2397 components: - pos: -26.5,4.5 parent: 2 type: Transform - - uid: 2174 + - uid: 2398 components: - pos: -26.5,5.5 parent: 2 type: Transform - - uid: 2175 + - uid: 2399 components: - pos: -26.5,6.5 parent: 2 type: Transform - - uid: 2176 + - uid: 2400 components: - pos: -26.5,7.5 parent: 2 type: Transform - - uid: 2177 + - uid: 2401 components: - pos: -26.5,8.5 parent: 2 type: Transform - - uid: 2178 + - uid: 2402 components: - pos: -26.5,9.5 parent: 2 type: Transform - - uid: 2179 + - uid: 2403 components: - pos: -26.5,10.5 parent: 2 type: Transform - - uid: 2180 + - uid: 2404 components: - pos: -26.5,11.5 parent: 2 type: Transform - - uid: 2181 + - uid: 2405 components: - pos: -26.5,12.5 parent: 2 type: Transform - - uid: 2182 + - uid: 2406 components: - pos: -26.5,13.5 parent: 2 type: Transform - - uid: 2183 + - uid: 2407 components: - pos: -26.5,14.5 parent: 2 type: Transform - - uid: 2184 + - uid: 2408 components: - pos: -26.5,15.5 parent: 2 type: Transform - - uid: 2185 + - uid: 2409 components: - pos: -26.5,16.5 parent: 2 type: Transform - - uid: 2186 + - uid: 2410 components: - pos: -26.5,17.5 parent: 2 type: Transform - - uid: 2187 + - uid: 2411 components: - pos: -26.5,18.5 parent: 2 type: Transform - - uid: 2188 + - uid: 2412 components: - pos: -26.5,19.5 parent: 2 type: Transform - - uid: 2189 + - uid: 2413 components: - pos: -26.5,20.5 parent: 2 type: Transform - - uid: 2190 + - uid: 2414 components: - pos: 25.5,1.5 parent: 2 type: Transform - - uid: 2191 + - uid: 2415 components: - pos: 37.5,15.5 parent: 2 type: Transform - - uid: 2192 + - uid: 2416 components: - pos: 38.5,15.5 parent: 2 type: Transform - - uid: 2193 + - uid: 2417 components: - pos: 39.5,15.5 parent: 2 type: Transform - - uid: 2194 + - uid: 2418 components: - pos: 40.5,15.5 parent: 2 type: Transform - - uid: 2195 + - uid: 2419 components: - pos: 11.5,11.5 parent: 2 type: Transform - - uid: 2196 + - uid: 2420 components: - pos: 11.5,10.5 parent: 2 type: Transform - - uid: 2197 + - uid: 2421 components: - pos: 11.5,9.5 parent: 2 type: Transform - - uid: 2198 + - uid: 2422 components: - pos: 12.5,9.5 parent: 2 type: Transform - - uid: 2199 + - uid: 2423 components: - pos: 13.5,9.5 parent: 2 type: Transform - - uid: 2200 + - uid: 2424 components: - pos: 15.5,3.5 parent: 2 type: Transform - - uid: 2201 + - uid: 2425 components: - pos: 15.5,4.5 parent: 2 type: Transform - - uid: 2202 + - uid: 2426 components: - pos: 15.5,5.5 parent: 2 type: Transform - - uid: 2203 + - uid: 2427 components: - pos: 15.5,6.5 parent: 2 type: Transform - - uid: 2204 + - uid: 2428 components: - pos: 16.5,6.5 parent: 2 type: Transform - - uid: 2205 + - uid: 2429 components: - pos: 31.5,16.5 parent: 2 type: Transform - - uid: 2206 + - uid: 2430 components: - pos: 31.5,15.5 parent: 2 type: Transform - - uid: 2207 + - uid: 2431 components: - pos: 31.5,14.5 parent: 2 type: Transform - - uid: 2208 + - uid: 2432 components: - pos: 31.5,13.5 parent: 2 type: Transform - - uid: 2209 + - uid: 2433 components: - pos: 31.5,12.5 parent: 2 type: Transform - - uid: 2210 + - uid: 2434 components: - pos: 31.5,11.5 parent: 2 type: Transform - - uid: 2211 + - uid: 2435 components: - pos: 31.5,10.5 parent: 2 type: Transform - - uid: 2212 + - uid: 2436 components: - pos: 14.5,9.5 parent: 2 type: Transform - - uid: 2213 + - uid: 2437 components: - pos: 15.5,9.5 parent: 2 type: Transform - - uid: 2214 + - uid: 2438 components: - pos: 16.5,9.5 parent: 2 type: Transform - - uid: 2215 + - uid: 2439 components: - pos: 16.5,10.5 parent: 2 type: Transform - - uid: 2216 + - uid: 2440 components: - pos: 18.5,10.5 parent: 2 type: Transform - - uid: 2217 + - uid: 2441 components: - pos: 19.5,10.5 parent: 2 type: Transform - - uid: 2218 + - uid: 2442 components: - pos: 20.5,10.5 parent: 2 type: Transform - - uid: 2219 + - uid: 2443 components: - pos: 21.5,10.5 parent: 2 type: Transform - - uid: 2220 + - uid: 2444 components: - pos: 22.5,10.5 parent: 2 type: Transform - - uid: 2221 + - uid: 2445 components: - pos: 23.5,10.5 parent: 2 type: Transform - - uid: 2222 + - uid: 2446 components: - pos: 24.5,10.5 parent: 2 type: Transform - - uid: 2223 + - uid: 2447 components: - pos: 30.5,10.5 parent: 2 type: Transform - - uid: 2224 + - uid: 2448 components: - pos: 29.5,10.5 parent: 2 type: Transform - - uid: 2225 + - uid: 2449 components: - pos: 28.5,10.5 parent: 2 type: Transform - - uid: 2226 + - uid: 2450 components: - pos: 26.5,18.5 parent: 2 type: Transform - - uid: 2227 + - uid: 2451 components: - pos: -25.5,-38.5 parent: 2 type: Transform - - uid: 2228 + - uid: 2452 components: - pos: 41.5,15.5 parent: 2 type: Transform - - uid: 2229 + - uid: 2453 components: - pos: -18.5,1.5 parent: 2 type: Transform - - uid: 2230 + - uid: 2454 components: - pos: -16.5,1.5 parent: 2 type: Transform - - uid: 2231 + - uid: 2455 components: - pos: -3.5,45.5 parent: 2 type: Transform - - uid: 2232 + - uid: 2456 components: - pos: -12.5,31.5 parent: 2 type: Transform - - uid: 2233 + - uid: 2457 components: - pos: -13.5,31.5 parent: 2 type: Transform - - uid: 2234 + - uid: 2458 components: - pos: 20.5,-16.5 parent: 2 type: Transform - - uid: 2235 + - uid: 2459 components: - pos: 21.5,-16.5 parent: 2 type: Transform - - uid: 2236 + - uid: 2460 components: - pos: 22.5,-16.5 parent: 2 type: Transform - - uid: 2237 + - uid: 2461 components: - pos: 23.5,-16.5 parent: 2 type: Transform - - uid: 2238 + - uid: 2462 components: - pos: 12.5,-24.5 parent: 2 type: Transform - - uid: 2239 + - uid: 2463 components: - pos: 13.5,-24.5 parent: 2 type: Transform - - uid: 2240 + - uid: 2464 components: - pos: -15.5,-7.5 parent: 2 type: Transform - - uid: 2241 + - uid: 2465 components: - pos: 30.5,27.5 parent: 2 type: Transform - - uid: 2242 + - uid: 2466 components: - pos: 30.5,26.5 parent: 2 type: Transform - - uid: 2243 + - uid: 2467 components: - pos: -13.5,32.5 parent: 2 type: Transform - - uid: 2244 + - uid: 2468 components: - pos: -14.5,32.5 parent: 2 type: Transform - - uid: 2245 + - uid: 2469 components: - pos: -15.5,32.5 parent: 2 type: Transform - - uid: 2246 + - uid: 2470 components: - pos: -16.5,32.5 parent: 2 type: Transform - - uid: 2247 + - uid: 2471 components: - pos: -16.5,33.5 parent: 2 type: Transform - - uid: 2248 + - uid: 2472 components: - pos: -16.5,34.5 parent: 2 type: Transform - - uid: 2249 + - uid: 2473 components: - pos: -16.5,35.5 parent: 2 type: Transform - - uid: 2250 + - uid: 2474 components: - pos: -16.5,36.5 parent: 2 type: Transform - - uid: 2251 + - uid: 2475 components: - pos: -15.5,36.5 parent: 2 type: Transform - - uid: 2252 + - uid: 2476 components: - pos: -14.5,36.5 parent: 2 type: Transform - - uid: 2253 + - uid: 2477 components: - pos: -13.5,36.5 parent: 2 type: Transform - - uid: 2254 + - uid: 2478 components: - pos: 30.5,25.5 parent: 2 type: Transform - - uid: 2255 + - uid: 2479 components: - pos: 29.5,25.5 parent: 2 type: Transform - - uid: 2256 + - uid: 2480 components: - pos: 29.5,24.5 parent: 2 type: Transform - - uid: 2257 + - uid: 2481 components: - pos: 29.5,23.5 parent: 2 type: Transform - - uid: 2258 + - uid: 2482 components: - pos: 29.5,22.5 parent: 2 type: Transform - - uid: 2259 + - uid: 2483 components: - pos: 29.5,21.5 parent: 2 type: Transform - - uid: 2260 + - uid: 2484 components: - pos: 30.5,21.5 parent: 2 type: Transform - - uid: 2261 + - uid: 2485 components: - pos: 31.5,21.5 parent: 2 type: Transform - - uid: 2262 + - uid: 2486 components: - pos: 32.5,21.5 parent: 2 type: Transform - - uid: 2263 + - uid: 2487 components: - pos: 20.5,18.5 parent: 2 type: Transform - - uid: 2264 + - uid: 2488 components: - pos: 20.5,20.5 parent: 2 type: Transform - - uid: 2265 + - uid: 2489 components: - pos: 20.5,19.5 parent: 2 type: Transform - - uid: 2266 + - uid: 2490 components: - pos: 33.5,21.5 parent: 2 type: Transform - - uid: 2267 + - uid: 2491 components: - pos: 34.5,21.5 parent: 2 type: Transform - - uid: 2268 + - uid: 2492 components: - pos: 35.5,21.5 parent: 2 type: Transform - - uid: 2269 + - uid: 2493 components: - pos: 36.5,21.5 parent: 2 type: Transform - - uid: 2270 + - uid: 2494 components: - pos: 36.5,22.5 parent: 2 type: Transform - - uid: 2271 + - uid: 2495 components: - pos: 36.5,23.5 parent: 2 type: Transform - - uid: 2272 + - uid: 2496 components: - pos: 36.5,24.5 parent: 2 type: Transform - - uid: 2273 + - uid: 2497 components: - pos: 36.5,25.5 parent: 2 type: Transform - - uid: 2274 + - uid: 2498 components: - pos: -3.5,-4.5 parent: 2 type: Transform - - uid: 2275 + - uid: 2499 components: - pos: -6.5,42.5 parent: 2 type: Transform - - uid: 2276 + - uid: 2500 components: - pos: -6.5,43.5 parent: 2 type: Transform - - uid: 2277 + - uid: 2501 components: - pos: -5.5,43.5 parent: 2 type: Transform - - uid: 2278 + - uid: 2502 components: - pos: -9.5,43.5 parent: 2 type: Transform - - uid: 2279 + - uid: 2503 components: - pos: -8.5,43.5 parent: 2 type: Transform - - uid: 2280 + - uid: 2504 components: - pos: -8.5,45.5 parent: 2 type: Transform - - uid: 2281 + - uid: 2505 components: - pos: -5.5,45.5 parent: 2 type: Transform - - uid: 2282 + - uid: 2506 components: - pos: -7.5,40.5 parent: 2 type: Transform - - uid: 2283 + - uid: 2507 components: - pos: -6.5,45.5 parent: 2 type: Transform - - uid: 2284 + - uid: 2508 components: - pos: -9.5,45.5 parent: 2 type: Transform - - uid: 2285 + - uid: 2509 components: - pos: -30.5,29.5 parent: 2 type: Transform - - uid: 2286 + - uid: 2510 components: - pos: -30.5,30.5 parent: 2 type: Transform - - uid: 2287 + - uid: 2511 components: - pos: -30.5,31.5 parent: 2 type: Transform - - uid: 2288 + - uid: 2512 components: - pos: -30.5,32.5 parent: 2 type: Transform - - uid: 2289 + - uid: 2513 components: - pos: -31.5,32.5 parent: 2 type: Transform - - uid: 2290 + - uid: 2514 components: - pos: -32.5,32.5 parent: 2 type: Transform - - uid: 2291 + - uid: 2515 components: - pos: -33.5,32.5 parent: 2 type: Transform - - uid: 2292 + - uid: 2516 components: - pos: -34.5,32.5 parent: 2 type: Transform - - uid: 2293 + - uid: 2517 components: - pos: -32.5,33.5 parent: 2 type: Transform - - uid: 2294 + - uid: 2518 components: - pos: -32.5,34.5 parent: 2 type: Transform - - uid: 2295 + - uid: 2519 components: - pos: -33.5,31.5 parent: 2 type: Transform - - uid: 2296 + - uid: 2520 components: - pos: -33.5,30.5 parent: 2 type: Transform - - uid: 2297 + - uid: 2521 components: - pos: -33.5,29.5 parent: 2 type: Transform - - uid: 2298 + - uid: 2522 components: - pos: -35.5,29.5 parent: 2 type: Transform - - uid: 2299 + - uid: 2523 components: - pos: -34.5,29.5 parent: 2 type: Transform - - uid: 2300 + - uid: 2524 components: - pos: -31.5,34.5 parent: 2 type: Transform - - uid: 2301 + - uid: 2525 components: - pos: -30.5,34.5 parent: 2 type: Transform - - uid: 2302 + - uid: 2526 components: - pos: -31.5,27.5 parent: 2 type: Transform - - uid: 2303 + - uid: 2527 components: - pos: -31.5,26.5 parent: 2 type: Transform - - uid: 2304 + - uid: 2528 components: - pos: -31.5,25.5 parent: 2 type: Transform - - uid: 2305 + - uid: 2529 components: - pos: -31.5,24.5 parent: 2 type: Transform - - uid: 2306 + - uid: 2530 components: - pos: -31.5,23.5 parent: 2 type: Transform - - uid: 2307 + - uid: 2531 components: - pos: -31.5,22.5 parent: 2 type: Transform - - uid: 2308 + - uid: 2532 components: - pos: -30.5,22.5 parent: 2 type: Transform - - uid: 2309 + - uid: 2533 components: - pos: -9.5,40.5 parent: 2 type: Transform - - uid: 2310 + - uid: 2534 components: - pos: -5.5,40.5 parent: 2 type: Transform - - uid: 2311 + - uid: 2535 components: - pos: -8.5,30.5 parent: 2 type: Transform - - uid: 2312 + - uid: 2536 components: - pos: -7.5,32.5 parent: 2 type: Transform - - uid: 2313 + - uid: 2537 components: - pos: -7.5,33.5 parent: 2 type: Transform - - uid: 2314 + - uid: 2538 components: - pos: -7.5,34.5 parent: 2 type: Transform - - uid: 2315 + - uid: 2539 components: - pos: -7.5,35.5 parent: 2 type: Transform - - uid: 2316 + - uid: 2540 components: - pos: -8.5,35.5 parent: 2 type: Transform - - uid: 2317 + - uid: 2541 components: - pos: -6.5,35.5 parent: 2 type: Transform - - uid: 2318 + - uid: 2542 components: - pos: -0.5,30.5 parent: 2 type: Transform - - uid: 2319 + - uid: 2543 components: - pos: 0.5,24.5 parent: 2 type: Transform - - uid: 2320 + - uid: 2544 components: - pos: -6.5,30.5 parent: 2 type: Transform - - uid: 2321 + - uid: 2545 components: - pos: -6.5,29.5 parent: 2 type: Transform - - uid: 2322 + - uid: 2546 components: - pos: -6.5,28.5 parent: 2 type: Transform - - uid: 2323 + - uid: 2547 components: - pos: -6.5,27.5 parent: 2 type: Transform - - uid: 2324 + - uid: 2548 components: - pos: -1.5,25.5 parent: 2 type: Transform - - uid: 2325 + - uid: 2549 components: - pos: -6.5,26.5 parent: 2 type: Transform - - uid: 2326 + - uid: 2550 components: - pos: -5.5,26.5 parent: 2 type: Transform - - uid: 2327 + - uid: 2551 components: - pos: -5.5,29.5 parent: 2 type: Transform - - uid: 2328 + - uid: 2552 components: - pos: -1.5,26.5 parent: 2 type: Transform - - uid: 2329 + - uid: 2553 components: - pos: -1.5,27.5 parent: 2 type: Transform - - uid: 2330 + - uid: 2554 components: - pos: -1.5,28.5 parent: 2 type: Transform - - uid: 2331 + - uid: 2555 components: - pos: -1.5,29.5 parent: 2 type: Transform - - uid: 2332 + - uid: 2556 components: - pos: -1.5,30.5 parent: 2 type: Transform - - uid: 2333 + - uid: 2557 components: - pos: -0.5,32.5 parent: 2 type: Transform - - uid: 2334 + - uid: 2558 components: - pos: -0.5,33.5 parent: 2 type: Transform - - uid: 2335 + - uid: 2559 components: - pos: -0.5,35.5 parent: 2 type: Transform - - uid: 2336 + - uid: 2560 components: - pos: -0.5,36.5 parent: 2 type: Transform - - uid: 2337 + - uid: 2561 components: - pos: -0.5,34.5 parent: 2 type: Transform - - uid: 2338 + - uid: 2562 components: - pos: -4.5,40.5 parent: 2 type: Transform - - uid: 2339 + - uid: 2563 components: - pos: -3.5,40.5 parent: 2 type: Transform - - uid: 2340 + - uid: 2564 components: - pos: -2.5,40.5 parent: 2 type: Transform - - uid: 2341 + - uid: 2565 components: - pos: -1.5,40.5 parent: 2 type: Transform - - uid: 2342 + - uid: 2566 components: - pos: -0.5,40.5 parent: 2 type: Transform - - uid: 2343 + - uid: 2567 components: - pos: -4.5,22.5 parent: 2 type: Transform - - uid: 2344 + - uid: 2568 components: - pos: -5.5,22.5 parent: 2 type: Transform - - uid: 2345 + - uid: 2569 components: - pos: -6.5,22.5 parent: 2 type: Transform - - uid: 2346 + - uid: 2570 components: - pos: -6.5,21.5 parent: 2 type: Transform - - uid: 2347 + - uid: 2571 components: - pos: -7.5,22.5 parent: 2 type: Transform - - uid: 2348 + - uid: 2572 components: - pos: -8.5,22.5 parent: 2 type: Transform - - uid: 2349 + - uid: 2573 components: - pos: -9.5,22.5 parent: 2 type: Transform - - uid: 2350 + - uid: 2574 components: - pos: -9.5,23.5 parent: 2 type: Transform - - uid: 2351 + - uid: 2575 components: - pos: -10.5,23.5 parent: 2 type: Transform - - uid: 2352 + - uid: 2576 components: - pos: -11.5,23.5 parent: 2 type: Transform - - uid: 2353 + - uid: 2577 components: - pos: -11.5,24.5 parent: 2 type: Transform - - uid: 2354 + - uid: 2578 components: - pos: -7.5,20.5 parent: 2 type: Transform - - uid: 2355 + - uid: 2579 components: - pos: -8.5,20.5 parent: 2 type: Transform - - uid: 2356 + - uid: 2580 components: - pos: -3.5,22.5 parent: 2 type: Transform - - uid: 2357 + - uid: 2581 components: - pos: 0.5,30.5 parent: 2 type: Transform - - uid: 2358 + - uid: 2582 components: - pos: -1.5,32.5 parent: 2 type: Transform - - uid: 2359 + - uid: 2583 components: - pos: 1.5,27.5 parent: 2 type: Transform - - uid: 2360 + - uid: 2584 components: - pos: -32.5,-8.5 parent: 2 type: Transform - - uid: 2361 + - uid: 2585 components: - pos: -31.5,-8.5 parent: 2 type: Transform - - uid: 2362 + - uid: 2586 components: - pos: -34.5,-6.5 parent: 2 type: Transform - - uid: 2363 + - uid: 2587 components: - pos: -29.5,-3.5 parent: 2 type: Transform - - uid: 2364 + - uid: 2588 components: - pos: -31.5,-0.5 parent: 2 type: Transform - - uid: 2365 + - uid: 2589 components: - pos: -32.5,-6.5 parent: 2 type: Transform - - uid: 2366 + - uid: 2590 components: - pos: -34.5,-0.5 parent: 2 type: Transform - - uid: 2367 + - uid: 2591 components: - pos: -32.5,-0.5 parent: 2 type: Transform - - uid: 2368 + - uid: 2592 components: - pos: -34.5,-8.5 parent: 2 type: Transform - - uid: 2369 + - uid: 2593 components: - pos: -33.5,-8.5 parent: 2 type: Transform - - uid: 2370 + - uid: 2594 components: - pos: -35.5,-8.5 parent: 2 type: Transform - - uid: 2371 + - uid: 2595 components: - pos: -35.5,-6.5 parent: 2 type: Transform - - uid: 2372 + - uid: 2596 components: - pos: -31.5,-6.5 parent: 2 type: Transform - - uid: 2373 + - uid: 2597 components: - pos: -33.5,-0.5 parent: 2 type: Transform - - uid: 2374 + - uid: 2598 components: - pos: -33.5,-6.5 parent: 2 type: Transform - - uid: 2375 + - uid: 2599 components: - pos: -35.5,-0.5 parent: 2 type: Transform - - uid: 2376 + - uid: 2600 components: - pos: -31.5,1.5 parent: 2 type: Transform - - uid: 2377 + - uid: 2601 components: - pos: -32.5,1.5 parent: 2 type: Transform - - uid: 2378 + - uid: 2602 components: - pos: -33.5,1.5 parent: 2 type: Transform - - uid: 2379 + - uid: 2603 components: - pos: -34.5,1.5 parent: 2 type: Transform - - uid: 2380 + - uid: 2604 components: - pos: -35.5,1.5 parent: 2 type: Transform - - uid: 2381 + - uid: 2605 components: - pos: 21.5,-1.5 parent: 2 type: Transform - - uid: 2382 + - uid: 2606 components: - pos: 20.5,-2.5 parent: 2 type: Transform - - uid: 2383 + - uid: 2607 components: - pos: 20.5,-4.5 parent: 2 type: Transform - - uid: 2384 + - uid: 2608 components: - pos: 20.5,-6.5 parent: 2 type: Transform - - uid: 2385 + - uid: 2609 components: - pos: 20.5,-7.5 parent: 2 type: Transform - - uid: 2386 + - uid: 2610 components: - pos: 20.5,-8.5 parent: 2 type: Transform - - uid: 2387 + - uid: 2611 components: - pos: 15.5,-1.5 parent: 2 type: Transform - - uid: 2388 + - uid: 2612 components: - pos: 28.5,4.5 parent: 2 type: Transform - - uid: 2389 + - uid: 2613 components: - pos: 28.5,5.5 parent: 2 type: Transform - - uid: 2390 + - uid: 2614 components: - pos: 28.5,6.5 parent: 2 type: Transform - - uid: 2391 + - uid: 2615 components: - pos: 28.5,7.5 parent: 2 type: Transform - - uid: 2392 + - uid: 2616 components: - pos: 26.5,7.5 parent: 2 type: Transform - - uid: 2393 + - uid: 2617 components: - pos: 27.5,7.5 parent: 2 type: Transform - - uid: 2394 + - uid: 2618 components: - pos: -38.5,1.5 parent: 2 type: Transform - - uid: 2395 + - uid: 2619 components: - pos: -39.5,1.5 parent: 2 type: Transform - - uid: 2396 + - uid: 2620 components: - pos: -40.5,1.5 parent: 2 type: Transform - - uid: 2397 + - uid: 2621 components: - pos: -41.5,1.5 parent: 2 type: Transform - - uid: 2398 + - uid: 2622 components: - pos: -27.5,7.5 parent: 2 type: Transform - - uid: 2399 + - uid: 2623 components: - pos: -28.5,7.5 parent: 2 type: Transform - - uid: 2400 + - uid: 2624 components: - pos: -29.5,7.5 parent: 2 type: Transform - - uid: 2401 + - uid: 2625 components: - pos: -30.5,7.5 parent: 2 type: Transform - - uid: 2402 + - uid: 2626 components: - pos: -31.5,7.5 parent: 2 type: Transform - - uid: 2403 + - uid: 2627 components: - pos: -27.5,14.5 parent: 2 type: Transform - - uid: 2404 + - uid: 2628 components: - pos: -28.5,14.5 parent: 2 type: Transform - - uid: 2405 + - uid: 2629 components: - pos: -29.5,14.5 parent: 2 type: Transform - - uid: 2406 + - uid: 2630 components: - pos: -30.5,14.5 parent: 2 type: Transform - - uid: 2407 + - uid: 2631 components: - pos: -31.5,14.5 parent: 2 type: Transform - - uid: 2408 + - uid: 2632 components: - pos: -42.5,1.5 parent: 2 type: Transform - - uid: 2409 + - uid: 2633 components: - pos: -36.5,-0.5 parent: 2 type: Transform - - uid: 2410 + - uid: 2634 components: - pos: -37.5,-0.5 parent: 2 type: Transform - - uid: 2411 + - uid: 2635 components: - pos: -38.5,-0.5 parent: 2 type: Transform - - uid: 2412 + - uid: 2636 components: - pos: -39.5,-0.5 parent: 2 type: Transform - - uid: 2413 + - uid: 2637 components: - pos: -40.5,-0.5 parent: 2 type: Transform - - uid: 2414 + - uid: 2638 components: - pos: -41.5,-0.5 parent: 2 type: Transform - - uid: 2415 + - uid: 2639 components: - pos: -42.5,-0.5 parent: 2 type: Transform - - uid: 2416 + - uid: 2640 components: - pos: -36.5,-6.5 parent: 2 type: Transform - - uid: 2417 + - uid: 2641 components: - pos: -37.5,-6.5 parent: 2 type: Transform - - uid: 2418 + - uid: 2642 components: - pos: -38.5,-6.5 parent: 2 type: Transform - - uid: 2419 + - uid: 2643 components: - pos: -39.5,-6.5 parent: 2 type: Transform - - uid: 2420 + - uid: 2644 components: - pos: -40.5,-6.5 parent: 2 type: Transform - - uid: 2421 + - uid: 2645 components: - pos: -41.5,-6.5 parent: 2 type: Transform - - uid: 2422 + - uid: 2646 components: - pos: -42.5,-6.5 parent: 2 type: Transform - - uid: 2423 + - uid: 2647 components: - pos: -36.5,-8.5 parent: 2 type: Transform - - uid: 2424 + - uid: 2648 components: - pos: -37.5,-8.5 parent: 2 type: Transform - - uid: 2425 + - uid: 2649 components: - pos: -38.5,-8.5 parent: 2 type: Transform - - uid: 2426 + - uid: 2650 components: - pos: -39.5,-8.5 parent: 2 type: Transform - - uid: 2427 + - uid: 2651 components: - pos: -40.5,-8.5 parent: 2 type: Transform - - uid: 2428 + - uid: 2652 components: - pos: -41.5,-8.5 parent: 2 type: Transform - - uid: 2429 + - uid: 2653 components: - pos: -42.5,-8.5 parent: 2 type: Transform - - uid: 2430 + - uid: 2654 components: - pos: -25.5,-39.5 parent: 2 type: Transform - - uid: 2431 + - uid: 2655 components: - pos: -25.5,-40.5 parent: 2 type: Transform - - uid: 2432 + - uid: 2656 components: - pos: -25.5,-36.5 parent: 2 type: Transform - - uid: 2433 + - uid: 2657 components: - pos: -18.5,-23.5 parent: 2 type: Transform - - uid: 2434 + - uid: 2658 components: - pos: -18.5,-24.5 parent: 2 type: Transform - - uid: 2435 + - uid: 2659 components: - pos: -18.5,-25.5 parent: 2 type: Transform - - uid: 2436 + - uid: 2660 components: - pos: -18.5,-26.5 parent: 2 type: Transform - - uid: 2437 + - uid: 2661 components: - pos: -18.5,-27.5 parent: 2 type: Transform - - uid: 2438 + - uid: 2662 components: - pos: -18.5,-28.5 parent: 2 type: Transform - - uid: 2439 + - uid: 2663 components: - pos: -18.5,-29.5 parent: 2 type: Transform - - uid: 2440 + - uid: 2664 components: - pos: -18.5,-30.5 parent: 2 type: Transform - - uid: 2441 + - uid: 2665 components: - pos: -18.5,-31.5 parent: 2 type: Transform - - uid: 2442 + - uid: 2666 components: - pos: -18.5,-32.5 parent: 2 type: Transform - - uid: 2443 + - uid: 2667 components: - pos: -18.5,-33.5 parent: 2 type: Transform - - uid: 2444 + - uid: 2668 components: - pos: -18.5,-34.5 parent: 2 type: Transform - - uid: 2445 + - uid: 2669 components: - pos: -18.5,-35.5 parent: 2 type: Transform - - uid: 2446 + - uid: 2670 components: - pos: -18.5,-36.5 parent: 2 type: Transform - - uid: 2447 + - uid: 2671 components: - pos: -18.5,-37.5 parent: 2 type: Transform - - uid: 2448 + - uid: 2672 components: - pos: -18.5,-38.5 parent: 2 type: Transform - - uid: 2449 + - uid: 2673 components: - pos: -18.5,-39.5 parent: 2 type: Transform - - uid: 2450 + - uid: 2674 components: - pos: -18.5,-40.5 parent: 2 type: Transform - - uid: 2451 + - uid: 2675 components: - pos: -18.5,-41.5 parent: 2 type: Transform - - uid: 2452 + - uid: 2676 components: - pos: -18.5,-42.5 parent: 2 type: Transform - - uid: 2453 + - uid: 2677 components: - pos: -17.5,-41.5 parent: 2 type: Transform - - uid: 2454 + - uid: 2678 components: - pos: -16.5,-41.5 parent: 2 type: Transform - - uid: 2455 + - uid: 2679 components: - pos: -15.5,-41.5 parent: 2 type: Transform - - uid: 2456 + - uid: 2680 components: - pos: -14.5,-41.5 parent: 2 type: Transform - - uid: 2457 + - uid: 2681 components: - pos: -13.5,-41.5 parent: 2 type: Transform - - uid: 2458 + - uid: 2682 components: - pos: -12.5,-41.5 parent: 2 type: Transform - - uid: 2459 + - uid: 2683 components: - pos: -19.5,-30.5 parent: 2 type: Transform - - uid: 2460 + - uid: 2684 components: - pos: -19.5,-30.5 parent: 2 type: Transform - - uid: 2461 + - uid: 2685 components: - pos: -20.5,-30.5 parent: 2 type: Transform - - uid: 2462 + - uid: 2686 components: - pos: -21.5,-30.5 parent: 2 type: Transform - - uid: 2463 + - uid: 2687 components: - pos: -20.5,-42.5 parent: 2 type: Transform - - uid: 2464 + - uid: 2688 components: - pos: -21.5,-42.5 parent: 2 type: Transform - - uid: 2465 + - uid: 2689 components: - pos: -22.5,-42.5 parent: 2 type: Transform - - uid: 2466 + - uid: 2690 components: - pos: -23.5,-42.5 parent: 2 type: Transform - - uid: 2467 + - uid: 2691 components: - pos: -24.5,-42.5 parent: 2 type: Transform - - uid: 2468 + - uid: 2692 components: - pos: -21.5,-43.5 parent: 2 type: Transform - - uid: 2469 + - uid: 2693 components: - pos: -19.5,-42.5 parent: 2 type: Transform - - uid: 2470 + - uid: 2694 components: - pos: -25.5,-42.5 parent: 2 type: Transform - - uid: 2471 + - uid: 2695 components: - pos: -25.5,-41.5 parent: 2 type: Transform - - uid: 2472 + - uid: 2696 components: - pos: -26.5,-42.5 parent: 2 type: Transform - - uid: 2473 + - uid: 2697 components: - pos: -27.5,-42.5 parent: 2 type: Transform - - uid: 2474 + - uid: 2698 components: - pos: -28.5,-42.5 parent: 2 type: Transform - - uid: 2475 + - uid: 2699 components: - pos: -29.5,-42.5 parent: 2 type: Transform - - uid: 2476 + - uid: 2700 components: - pos: -30.5,-42.5 parent: 2 type: Transform - - uid: 2477 + - uid: 2701 components: - pos: -31.5,-42.5 parent: 2 type: Transform - - uid: 2478 + - uid: 2702 components: - pos: -32.5,-42.5 parent: 2 type: Transform - - uid: 2479 + - uid: 2703 components: - pos: -33.5,-42.5 parent: 2 type: Transform - - uid: 2480 + - uid: 2704 components: - pos: -25.5,-35.5 parent: 2 type: Transform - - uid: 2481 + - uid: 2705 components: - pos: -25.5,-34.5 parent: 2 type: Transform - - uid: 2482 + - uid: 2706 components: - pos: -25.5,-33.5 parent: 2 type: Transform - - uid: 2483 + - uid: 2707 components: - pos: -25.5,-32.5 parent: 2 type: Transform - - uid: 2484 + - uid: 2708 components: - pos: -25.5,-31.5 parent: 2 type: Transform - - uid: 2485 + - uid: 2709 components: - pos: -25.5,-30.5 parent: 2 type: Transform - - uid: 2486 + - uid: 2710 components: - pos: -26.5,-30.5 parent: 2 type: Transform - - uid: 2487 + - uid: 2711 components: - pos: -27.5,-30.5 parent: 2 type: Transform - - uid: 2488 + - uid: 2712 components: - pos: -28.5,-30.5 parent: 2 type: Transform - - uid: 2489 + - uid: 2713 components: - pos: -29.5,-30.5 parent: 2 type: Transform - - uid: 2490 + - uid: 2714 components: - pos: -30.5,-30.5 parent: 2 type: Transform - - uid: 2491 + - uid: 2715 components: - pos: -31.5,-30.5 parent: 2 type: Transform - - uid: 2492 + - uid: 2716 components: - pos: 5.5,35.5 parent: 2 type: Transform - - uid: 2493 + - uid: 2717 components: - pos: 8.5,38.5 parent: 2 type: Transform - - uid: 2494 + - uid: 2718 components: - pos: 22.5,-1.5 parent: 2 type: Transform - - uid: 2495 + - uid: 2719 components: - pos: 12.5,39.5 parent: 2 type: Transform - - uid: 2496 + - uid: 2720 components: - pos: 11.5,38.5 parent: 2 type: Transform - - uid: 2497 + - uid: 2721 components: - pos: 13.5,-1.5 parent: 2 type: Transform - - uid: 2498 + - uid: 2722 components: - pos: 10.5,-1.5 parent: 2 type: Transform - - uid: 2499 + - uid: 2723 components: - pos: 9.5,-1.5 parent: 2 type: Transform - - uid: 2500 + - uid: 2724 components: - pos: 12.5,-1.5 parent: 2 type: Transform - - uid: 2501 + - uid: 2725 components: - pos: 4.5,32.5 parent: 2 type: Transform - - uid: 2502 + - uid: 2726 components: - pos: 20.5,-3.5 parent: 2 type: Transform - - uid: 2503 + - uid: 2727 components: - pos: 20.5,-1.5 parent: 2 type: Transform - - uid: 2504 + - uid: 2728 components: - pos: 19.5,-1.5 parent: 2 type: Transform - - uid: 2505 + - uid: 2729 components: - pos: 17.5,-1.5 parent: 2 type: Transform - - uid: 2506 + - uid: 2730 components: - pos: 16.5,-1.5 parent: 2 type: Transform - - uid: 2507 + - uid: 2731 components: - pos: 22.5,1.5 parent: 2 type: Transform - - uid: 2508 + - uid: 2732 components: - pos: 27.5,-3.5 parent: 2 type: Transform - - uid: 2509 + - uid: 2733 components: - pos: 28.5,0.5 parent: 2 type: Transform - - uid: 2510 + - uid: 2734 components: - pos: 27.5,-2.5 parent: 2 type: Transform - - uid: 2511 + - uid: 2735 components: - pos: 27.5,-1.5 parent: 2 type: Transform - - uid: 2512 + - uid: 2736 components: - pos: 27.5,2.5 parent: 2 type: Transform - - uid: 2513 + - uid: 2737 components: - pos: 27.5,1.5 parent: 2 type: Transform - - uid: 2514 + - uid: 2738 components: - pos: 24.5,1.5 parent: 2 type: Transform - - uid: 2515 + - uid: 2739 components: - pos: 7.5,23.5 parent: 2 type: Transform - - uid: 2516 + - uid: 2740 components: - pos: 3.5,32.5 parent: 2 type: Transform - - uid: 2517 + - uid: 2741 components: - pos: 8.5,35.5 parent: 2 type: Transform - - uid: 2518 + - uid: 2742 components: - pos: 9.5,35.5 parent: 2 type: Transform - - uid: 2519 + - uid: 2743 components: - pos: 10.5,38.5 parent: 2 type: Transform - - uid: 2520 + - uid: 2744 components: - pos: 27.5,0.5 parent: 2 type: Transform - - uid: 2521 + - uid: 2745 components: - pos: 11.5,35.5 parent: 2 type: Transform - - uid: 2522 + - uid: 2746 components: - pos: 10.5,35.5 parent: 2 type: Transform - - uid: 2523 + - uid: 2747 components: - pos: 6.5,32.5 parent: 2 type: Transform - - uid: 2524 + - uid: 2748 components: - pos: 13.5,30.5 parent: 2 type: Transform - - uid: 2525 + - uid: 2749 components: - pos: 13.5,33.5 parent: 2 type: Transform - - uid: 2526 + - uid: 2750 components: - pos: 14.5,29.5 parent: 2 type: Transform - - uid: 2527 + - uid: 2751 components: - pos: 13.5,29.5 parent: 2 type: Transform - - uid: 2528 + - uid: 2752 components: - pos: 13.5,32.5 parent: 2 type: Transform - - uid: 2529 + - uid: 2753 components: - pos: 13.5,31.5 parent: 2 type: Transform - - uid: 2530 + - uid: 2754 components: - pos: 11.5,-1.5 parent: 2 type: Transform - - uid: 2531 + - uid: 2755 components: - pos: 21.5,29.5 parent: 2 type: Transform - - uid: 2532 + - uid: 2756 components: - pos: 23.5,30.5 parent: 2 type: Transform - - uid: 2533 + - uid: 2757 components: - pos: 27.5,-4.5 parent: 2 type: Transform - - uid: 2534 + - uid: 2758 components: - pos: 32.5,0.5 parent: 2 type: Transform - - uid: 2535 + - uid: 2759 components: - pos: 31.5,-6.5 parent: 2 type: Transform - - uid: 2536 + - uid: 2760 components: - pos: 19.5,1.5 parent: 2 type: Transform - - uid: 2537 + - uid: 2761 components: - pos: 21.5,1.5 parent: 2 type: Transform - - uid: 2538 + - uid: 2762 components: - pos: 27.5,-5.5 parent: 2 type: Transform - - uid: 2539 + - uid: 2763 components: - pos: 28.5,-6.5 parent: 2 type: Transform - - uid: 2540 + - uid: 2764 components: - pos: 5.5,-1.5 parent: 2 type: Transform - - uid: 2541 + - uid: 2765 components: - pos: 8.5,-1.5 parent: 2 type: Transform - - uid: 2542 + - uid: 2766 components: - pos: 23.5,-2.5 parent: 2 type: Transform - - uid: 2543 + - uid: 2767 components: - pos: 16.5,1.5 parent: 2 type: Transform - - uid: 2544 + - uid: 2768 components: - pos: 22.5,-2.5 parent: 2 type: Transform - - uid: 2545 + - uid: 2769 components: - pos: 24.5,-2.5 parent: 2 type: Transform - - uid: 2546 + - uid: 2770 components: - pos: 27.5,-0.5 parent: 2 type: Transform - - uid: 2547 + - uid: 2771 components: - pos: 27.5,3.5 parent: 2 type: Transform - - uid: 2548 + - uid: 2772 components: - pos: 29.5,0.5 parent: 2 type: Transform - - uid: 2549 + - uid: 2773 components: - pos: 11.5,0.5 parent: 2 type: Transform - - uid: 2550 + - uid: 2774 components: - pos: 17.5,0.5 parent: 2 type: Transform - - uid: 2551 + - uid: 2775 components: - pos: 30.5,-6.5 parent: 2 type: Transform - - uid: 2552 + - uid: 2776 components: - pos: 17.5,1.5 parent: 2 type: Transform - - uid: 2553 + - uid: 2777 components: - pos: 18.5,1.5 parent: 2 type: Transform - - uid: 2554 + - uid: 2778 components: - pos: 17.5,-0.5 parent: 2 type: Transform - - uid: 2555 + - uid: 2779 components: - pos: 20.5,1.5 parent: 2 type: Transform - - uid: 2556 + - uid: 2780 components: - pos: 29.5,-6.5 parent: 2 type: Transform - - uid: 2557 + - uid: 2781 components: - pos: 6.5,-1.5 parent: 2 type: Transform - - uid: 2558 + - uid: 2782 components: - pos: 7.5,-1.5 parent: 2 type: Transform - - uid: 2559 + - uid: 2783 components: - pos: 27.5,-6.5 parent: 2 type: Transform - - uid: 2560 + - uid: 2784 components: - pos: 4.5,-1.5 parent: 2 type: Transform - - uid: 2561 + - uid: 2785 components: - pos: 7.5,21.5 parent: 2 type: Transform - - uid: 2562 + - uid: 2786 components: - pos: 7.5,24.5 parent: 2 type: Transform - - uid: 2563 + - uid: 2787 components: - pos: 30.5,0.5 parent: 2 type: Transform - - uid: 2564 + - uid: 2788 components: - pos: 31.5,0.5 parent: 2 type: Transform - - uid: 2565 + - uid: 2789 components: - pos: 26.5,1.5 parent: 2 type: Transform - - uid: 2566 + - uid: 2790 components: - pos: 7.5,22.5 parent: 2 type: Transform - - uid: 2567 + - uid: 2791 components: - pos: 28.5,3.5 parent: 2 type: Transform - - uid: 2568 + - uid: 2792 components: - pos: 15.5,2.5 parent: 2 type: Transform - - uid: 2569 + - uid: 2793 components: - pos: 15.5,1.5 parent: 2 type: Transform - - uid: 2570 + - uid: 2794 components: - pos: 11.5,1.5 parent: 2 type: Transform - - uid: 2571 + - uid: 2795 components: - pos: 7.5,-0.5 parent: 2 type: Transform - - uid: 2572 + - uid: 2796 components: - pos: 7.5,0.5 parent: 2 type: Transform - - uid: 2573 + - uid: 2797 components: - pos: 14.5,-1.5 parent: 2 type: Transform - - uid: 2574 + - uid: 2798 components: - pos: 7.5,2.5 parent: 2 type: Transform - - uid: 2575 + - uid: 2799 components: - pos: 8.5,2.5 parent: 2 type: Transform - - uid: 2576 + - uid: 2800 components: - pos: 7.5,1.5 parent: 2 type: Transform - - uid: 2577 + - uid: 2801 components: - pos: 7.5,36.5 parent: 2 type: Transform - - uid: 2578 + - uid: 2802 components: - pos: 4.5,37.5 parent: 2 type: Transform - - uid: 2579 + - uid: 2803 components: - pos: 4.5,38.5 parent: 2 type: Transform - - uid: 2580 + - uid: 2804 components: - pos: 4.5,39.5 parent: 2 type: Transform - - uid: 2581 + - uid: 2805 components: - pos: 4.5,36.5 parent: 2 type: Transform - - uid: 2582 + - uid: 2806 components: - pos: 31.5,-7.5 parent: 2 type: Transform - - uid: 2583 + - uid: 2807 components: - pos: 31.5,-8.5 parent: 2 type: Transform - - uid: 2584 + - uid: 2808 components: - pos: 31.5,-9.5 parent: 2 type: Transform - - uid: 2585 + - uid: 2809 components: - pos: 31.5,-10.5 parent: 2 type: Transform - - uid: 2586 + - uid: 2810 components: - pos: 31.5,-11.5 parent: 2 type: Transform - - uid: 2587 + - uid: 2811 components: - pos: 31.5,-12.5 parent: 2 type: Transform - - uid: 2588 + - uid: 2812 components: - pos: 31.5,-13.5 parent: 2 type: Transform - - uid: 2589 + - uid: 2813 components: - pos: 32.5,-13.5 parent: 2 type: Transform - - uid: 2590 + - uid: 2814 components: - pos: 33.5,-13.5 parent: 2 type: Transform - - uid: 2591 + - uid: 2815 components: - pos: 34.5,-13.5 parent: 2 type: Transform - - uid: 2592 + - uid: 2816 components: - pos: 35.5,-13.5 parent: 2 type: Transform - - uid: 2593 + - uid: 2817 components: - pos: 36.5,-13.5 parent: 2 type: Transform - - uid: 2594 + - uid: 2818 components: - pos: 37.5,-13.5 parent: 2 type: Transform - - uid: 2595 + - uid: 2819 components: - pos: 38.5,-13.5 parent: 2 type: Transform - - uid: 2596 + - uid: 2820 components: - pos: 39.5,-13.5 parent: 2 type: Transform - - uid: 2597 + - uid: 2821 components: - pos: 40.5,-13.5 parent: 2 type: Transform - - uid: 2598 + - uid: 2822 components: - pos: 41.5,-13.5 parent: 2 type: Transform - - uid: 2599 + - uid: 2823 components: - pos: 42.5,-13.5 parent: 2 type: Transform - - uid: 2600 + - uid: 2824 components: - pos: 43.5,-13.5 parent: 2 type: Transform - - uid: 2601 + - uid: 2825 components: - pos: 43.5,-14.5 parent: 2 type: Transform - - uid: 2602 + - uid: 2826 components: - pos: 43.5,-15.5 parent: 2 type: Transform - - uid: 2603 + - uid: 2827 components: - pos: 43.5,-16.5 parent: 2 type: Transform - - uid: 2604 + - uid: 2828 components: - pos: 44.5,-16.5 parent: 2 type: Transform - - uid: 2605 + - uid: 2829 components: - pos: 43.5,-12.5 parent: 2 type: Transform - - uid: 2606 + - uid: 2830 components: - pos: 43.5,-10.5 parent: 2 type: Transform - - uid: 2607 + - uid: 2831 components: - pos: 43.5,-9.5 parent: 2 type: Transform - - uid: 2608 + - uid: 2832 components: - pos: -9.5,-3.5 parent: 2 type: Transform - - uid: 2609 + - uid: 2833 components: - pos: -9.5,-4.5 parent: 2 type: Transform - - uid: 2610 + - uid: 2834 components: - pos: -9.5,-5.5 parent: 2 type: Transform - - uid: 2611 + - uid: 2835 components: - pos: -9.5,-6.5 parent: 2 type: Transform - - uid: 2612 + - uid: 2836 components: - pos: -9.5,-7.5 parent: 2 type: Transform - proto: CableApcStack entities: - - uid: 2613 + - uid: 2837 components: - pos: -0.01737088,40.47986 parent: 2 type: Transform - - uid: 2614 + - uid: 2838 components: - pos: 0.034712493,40.604946 parent: 2 type: Transform - - uid: 2615 + - uid: 2839 components: - pos: 0.07637912,40.709187 parent: 2 type: Transform - - uid: 2616 + - uid: 2840 components: - pos: -29.552666,24.502825 parent: 2 type: Transform - - uid: 2617 + - uid: 2841 components: - pos: -4.4155755,36.47351 parent: 2 type: Transform - proto: CableApcStack1 entities: - - uid: 2618 + - uid: 2842 components: - rot: 1.5707963267948966 rad pos: 24.5,-6.5 parent: 2 type: Transform - - uid: 2619 + - uid: 2843 components: - rot: 1.5707963267948966 rad pos: 24.5,-7.5 parent: 2 type: Transform - - uid: 2620 + - uid: 2844 components: - rot: 1.5707963267948966 rad pos: 24.5,-8.5 parent: 2 type: Transform - - uid: 2621 + - uid: 2845 components: - pos: 20.5,6.5 parent: 2 type: Transform - - uid: 2622 + - uid: 2846 components: - pos: 21.5,6.5 parent: 2 type: Transform - - uid: 2623 + - uid: 2847 components: - pos: 22.5,6.5 parent: 2 type: Transform - - uid: 2624 + - uid: 2848 components: - pos: 23.5,6.5 parent: 2 type: Transform - - uid: 2625 + - uid: 2849 components: - pos: 23.5,7.5 parent: 2 type: Transform - - uid: 2626 + - uid: 2850 components: - pos: 24.5,7.5 parent: 2 type: Transform - - uid: 2627 + - uid: 2851 components: - pos: 25.5,7.5 parent: 2 type: Transform - proto: CableHV entities: - - uid: 2628 + - uid: 2852 components: - pos: 7.5,29.5 parent: 2 type: Transform - - uid: 2629 + - uid: 2853 components: - pos: 7.5,26.5 parent: 2 type: Transform - - uid: 2630 + - uid: 2854 components: - pos: 7.5,27.5 parent: 2 type: Transform - - uid: 2631 + - uid: 2855 components: - pos: 7.5,30.5 parent: 2 type: Transform - - uid: 2632 + - uid: 2856 components: - pos: 7.5,28.5 parent: 2 type: Transform - - uid: 2633 + - uid: 2857 components: - pos: 7.5,25.5 parent: 2 type: Transform - - uid: 2634 + - uid: 2858 components: - pos: -2.5,-15.5 parent: 2 type: Transform - - uid: 2635 + - uid: 2859 components: - pos: -1.5,-15.5 parent: 2 type: Transform - - uid: 2636 + - uid: 2860 components: - pos: -0.5,-15.5 parent: 2 type: Transform - - uid: 2637 + - uid: 2861 components: - pos: 0.5,-15.5 parent: 2 type: Transform - - uid: 2638 + - uid: 2862 components: - pos: 1.5,-15.5 parent: 2 type: Transform - - uid: 2639 + - uid: 2863 components: - pos: 2.5,-15.5 parent: 2 type: Transform - - uid: 2640 + - uid: 2864 components: - pos: 3.5,-15.5 parent: 2 type: Transform - - uid: 2641 + - uid: 2865 components: - pos: 3.5,-14.5 parent: 2 type: Transform - - uid: 2642 + - uid: 2866 components: - pos: -21.5,32.5 parent: 2 type: Transform - - uid: 2643 + - uid: 2867 components: - pos: -7.5,5.5 parent: 2 type: Transform - - uid: 2644 + - uid: 2868 components: - pos: 6.5,-8.5 parent: 2 type: Transform - - uid: 2645 + - uid: 2869 components: - pos: 9.5,-8.5 parent: 2 type: Transform - - uid: 2646 + - uid: 2870 components: - pos: 7.5,-8.5 parent: 2 type: Transform - - uid: 2647 + - uid: 2871 components: - pos: 8.5,-8.5 parent: 2 type: Transform - - uid: 2648 + - uid: 2872 components: - pos: 5.5,-8.5 parent: 2 type: Transform - - uid: 2649 + - uid: 2873 components: - pos: 4.5,-8.5 parent: 2 type: Transform - - uid: 2650 + - uid: 2874 components: - pos: 11.5,-8.5 parent: 2 type: Transform - - uid: 2651 + - uid: 2875 components: - pos: -21.5,31.5 parent: 2 type: Transform - - uid: 2652 + - uid: 2876 components: - pos: 10.5,-8.5 parent: 2 type: Transform - - uid: 2653 + - uid: 2877 components: - pos: 20.5,-11.5 parent: 2 type: Transform - - uid: 2654 + - uid: 2878 components: - pos: 20.5,-10.5 parent: 2 type: Transform - - uid: 2655 + - uid: 2879 components: - pos: 14.5,-10.5 parent: 2 type: Transform - - uid: 2656 + - uid: 2880 components: - pos: 14.5,-8.5 parent: 2 type: Transform - - uid: 2657 + - uid: 2881 components: - pos: 12.5,-8.5 parent: 2 type: Transform - - uid: 2658 + - uid: 2882 components: - pos: 17.5,-10.5 parent: 2 type: Transform - - uid: 2659 + - uid: 2883 components: - pos: 15.5,-10.5 parent: 2 type: Transform - - uid: 2660 + - uid: 2884 components: - pos: 14.5,-9.5 parent: 2 type: Transform - - uid: 2661 + - uid: 2885 components: - pos: 13.5,-8.5 parent: 2 type: Transform - - uid: 2662 + - uid: 2886 components: - pos: -21.5,24.5 parent: 2 type: Transform - - uid: 2663 + - uid: 2887 components: - pos: 22.5,-18.5 parent: 2 type: Transform - - uid: 2664 + - uid: 2888 components: - pos: 3.5,-13.5 parent: 2 type: Transform - - uid: 2665 + - uid: 2889 components: - pos: 3.5,-12.5 parent: 2 type: Transform - - uid: 2666 + - uid: 2890 components: - pos: 3.5,-11.5 parent: 2 type: Transform - - uid: 2667 + - uid: 2891 components: - pos: 3.5,-10.5 parent: 2 type: Transform - - uid: 2668 + - uid: 2892 components: - pos: 3.5,-9.5 parent: 2 type: Transform - - uid: 2669 + - uid: 2893 components: - pos: 3.5,-8.5 parent: 2 type: Transform - - uid: 2670 + - uid: 2894 components: - pos: 3.5,-7.5 parent: 2 type: Transform - - uid: 2671 + - uid: 2895 components: - pos: 3.5,-6.5 parent: 2 type: Transform - - uid: 2672 + - uid: 2896 components: - pos: 3.5,-5.5 parent: 2 type: Transform - - uid: 2673 + - uid: 2897 components: - pos: 3.5,-4.5 parent: 2 type: Transform - - uid: 2674 + - uid: 2898 components: - pos: 3.5,-3.5 parent: 2 type: Transform - - uid: 2675 + - uid: 2899 components: - pos: 3.5,-2.5 parent: 2 type: Transform - - uid: 2676 + - uid: 2900 components: - pos: 3.5,-1.5 parent: 2 type: Transform - - uid: 2677 + - uid: 2901 components: - pos: 3.5,-0.5 parent: 2 type: Transform - - uid: 2678 + - uid: 2902 components: - pos: 3.5,0.5 parent: 2 type: Transform - - uid: 2679 + - uid: 2903 components: - pos: 3.5,1.5 parent: 2 type: Transform - - uid: 2680 + - uid: 2904 components: - pos: 3.5,2.5 parent: 2 type: Transform - - uid: 2681 + - uid: 2905 components: - pos: 3.5,3.5 parent: 2 type: Transform - - uid: 2682 + - uid: 2906 components: - pos: 13.5,13.5 parent: 2 type: Transform - - uid: 2683 + - uid: 2907 components: - pos: 16.5,15.5 parent: 2 type: Transform - - uid: 2684 + - uid: 2908 components: - pos: -20.5,50.5 parent: 2 type: Transform - - uid: 2685 + - uid: 2909 components: - pos: 12.5,13.5 parent: 2 type: Transform - - uid: 2686 + - uid: 2910 components: - pos: 11.5,13.5 parent: 2 type: Transform - - uid: 2687 + - uid: 2911 components: - pos: 10.5,13.5 parent: 2 type: Transform - - uid: 2688 + - uid: 2912 components: - pos: 9.5,13.5 parent: 2 type: Transform - - uid: 2689 + - uid: 2913 components: - pos: 8.5,13.5 parent: 2 type: Transform - - uid: 2690 + - uid: 2914 components: - pos: 7.5,13.5 parent: 2 type: Transform - - uid: 2691 + - uid: 2915 components: - pos: 6.5,13.5 parent: 2 type: Transform - - uid: 2692 + - uid: 2916 components: - pos: 5.5,13.5 parent: 2 type: Transform - - uid: 2693 + - uid: 2917 components: - pos: 4.5,13.5 parent: 2 type: Transform - - uid: 2694 + - uid: 2918 components: - pos: 3.5,13.5 parent: 2 type: Transform - - uid: 2695 + - uid: 2919 components: - pos: 2.5,13.5 parent: 2 type: Transform - - uid: 2696 + - uid: 2920 components: - pos: 1.5,13.5 parent: 2 type: Transform - - uid: 2697 + - uid: 2921 components: - pos: 0.5,13.5 parent: 2 type: Transform - - uid: 2698 + - uid: 2922 components: - pos: -0.5,13.5 parent: 2 type: Transform - - uid: 2699 + - uid: 2923 components: - pos: -1.5,13.5 parent: 2 type: Transform - - uid: 2700 + - uid: 2924 components: - pos: -2.5,13.5 parent: 2 type: Transform - - uid: 2701 + - uid: 2925 components: - pos: -3.5,13.5 parent: 2 type: Transform - - uid: 2702 + - uid: 2926 components: - pos: -4.5,13.5 parent: 2 type: Transform - - uid: 2703 + - uid: 2927 components: - pos: -5.5,13.5 parent: 2 type: Transform - - uid: 2704 + - uid: 2928 components: - pos: -6.5,13.5 parent: 2 type: Transform - - uid: 2705 + - uid: 2929 components: - pos: -7.5,13.5 parent: 2 type: Transform - - uid: 2706 + - uid: 2930 components: - pos: -8.5,13.5 parent: 2 type: Transform - - uid: 2707 + - uid: 2931 components: - pos: -9.5,13.5 parent: 2 type: Transform - - uid: 2708 + - uid: 2932 components: - pos: -10.5,13.5 parent: 2 type: Transform - - uid: 2709 + - uid: 2933 components: - pos: -11.5,13.5 parent: 2 type: Transform - - uid: 2710 + - uid: 2934 components: - pos: -12.5,13.5 parent: 2 type: Transform - - uid: 2711 + - uid: 2935 components: - pos: -12.5,14.5 parent: 2 type: Transform - - uid: 2712 + - uid: 2936 components: - pos: -12.5,15.5 parent: 2 type: Transform - - uid: 2713 + - uid: 2937 components: - pos: -12.5,16.5 parent: 2 type: Transform - - uid: 2714 + - uid: 2938 components: - pos: -12.5,17.5 parent: 2 type: Transform - - uid: 2715 + - uid: 2939 components: - pos: -12.5,18.5 parent: 2 type: Transform - - uid: 2716 + - uid: 2940 components: - pos: 19.5,-10.5 parent: 2 type: Transform - - uid: 2717 + - uid: 2941 components: - pos: -4.5,-15.5 parent: 2 type: Transform - - uid: 2718 + - uid: 2942 components: - pos: -4.5,-14.5 parent: 2 type: Transform - - uid: 2719 + - uid: 2943 components: - pos: -4.5,-13.5 parent: 2 type: Transform - - uid: 2720 + - uid: 2944 components: - pos: -4.5,-12.5 parent: 2 type: Transform - - uid: 2721 + - uid: 2945 components: - pos: -3.5,-15.5 parent: 2 type: Transform - - uid: 2722 + - uid: 2946 components: - pos: -4.5,-11.5 parent: 2 type: Transform - - uid: 2723 + - uid: 2947 components: - pos: 24.5,24.5 parent: 2 type: Transform - - uid: 2724 + - uid: 2948 components: - pos: 24.5,21.5 parent: 2 type: Transform - - uid: 2725 + - uid: 2949 components: - pos: 22.5,20.5 parent: 2 type: Transform - - uid: 2726 + - uid: 2950 components: - pos: 19.5,20.5 parent: 2 type: Transform - - uid: 2727 + - uid: 2951 components: - pos: 15.5,18.5 parent: 2 type: Transform - - uid: 2728 + - uid: 2952 components: - pos: 15.5,19.5 parent: 2 type: Transform - - uid: 2729 + - uid: 2953 components: - pos: 14.5,19.5 parent: 2 type: Transform - - uid: 2730 + - uid: 2954 components: - pos: 14.5,18.5 parent: 2 type: Transform - - uid: 2731 + - uid: 2955 components: - pos: 13.5,18.5 parent: 2 type: Transform - - uid: 2732 + - uid: 2956 components: - pos: 13.5,19.5 parent: 2 type: Transform - - uid: 2733 + - uid: 2957 components: - pos: -1.5,-16.5 parent: 2 type: Transform - - uid: 2734 + - uid: 2958 components: - pos: -1.5,-17.5 parent: 2 type: Transform - - uid: 2735 + - uid: 2959 components: - pos: -1.5,-18.5 parent: 2 type: Transform - - uid: 2736 + - uid: 2960 components: - pos: -1.5,-19.5 parent: 2 type: Transform - - uid: 2737 + - uid: 2961 components: - pos: -1.5,-20.5 parent: 2 type: Transform - - uid: 2738 + - uid: 2962 components: - pos: -1.5,-21.5 parent: 2 type: Transform - - uid: 2739 + - uid: 2963 components: - pos: -1.5,-22.5 parent: 2 type: Transform - - uid: 2740 + - uid: 2964 components: - pos: -1.5,-23.5 parent: 2 type: Transform - - uid: 2741 + - uid: 2965 components: - pos: -1.5,-24.5 parent: 2 type: Transform - - uid: 2742 + - uid: 2966 components: - pos: -1.5,-25.5 parent: 2 type: Transform - - uid: 2743 + - uid: 2967 components: - pos: -1.5,-26.5 parent: 2 type: Transform - - uid: 2744 + - uid: 2968 components: - pos: -1.5,-27.5 parent: 2 type: Transform - - uid: 2745 + - uid: 2969 components: - pos: -0.5,-27.5 parent: 2 type: Transform - - uid: 2746 + - uid: 2970 components: - pos: 0.5,-27.5 parent: 2 type: Transform - - uid: 2747 + - uid: 2971 components: - pos: 1.5,-27.5 parent: 2 type: Transform - - uid: 2748 + - uid: 2972 components: - pos: 2.5,-27.5 parent: 2 type: Transform - - uid: 2749 + - uid: 2973 components: - pos: -12.5,12.5 parent: 2 type: Transform - - uid: 2750 + - uid: 2974 components: - pos: -12.5,11.5 parent: 2 type: Transform - - uid: 2751 + - uid: 2975 components: - pos: -12.5,10.5 parent: 2 type: Transform - - uid: 2752 + - uid: 2976 components: - pos: -12.5,9.5 parent: 2 type: Transform - - uid: 2753 + - uid: 2977 components: - pos: -12.5,8.5 parent: 2 type: Transform - - uid: 2754 + - uid: 2978 components: - pos: -12.5,7.5 parent: 2 type: Transform - - uid: 2755 + - uid: 2979 components: - pos: -12.5,6.5 parent: 2 type: Transform - - uid: 2756 + - uid: 2980 components: - pos: -12.5,5.5 parent: 2 type: Transform - - uid: 2757 + - uid: 2981 components: - pos: -11.5,5.5 parent: 2 type: Transform - - uid: 2758 + - uid: 2982 components: - pos: -10.5,5.5 parent: 2 type: Transform - - uid: 2759 + - uid: 2983 components: - pos: -9.5,5.5 parent: 2 type: Transform - - uid: 2760 + - uid: 2984 components: - pos: -9.5,4.5 parent: 2 type: Transform - - uid: 2761 + - uid: 2985 components: - pos: -8.5,4.5 parent: 2 type: Transform - - uid: 2762 + - uid: 2986 components: - pos: -7.5,4.5 parent: 2 type: Transform - - uid: 2763 + - uid: 2987 components: - pos: 2.5,11.5 parent: 2 type: Transform - - uid: 2764 + - uid: 2988 components: - pos: 2.5,9.5 parent: 2 type: Transform - - uid: 2765 + - uid: 2989 components: - pos: 2.5,7.5 parent: 2 type: Transform - - uid: 2766 + - uid: 2990 components: - pos: 16.5,17.5 parent: 2 type: Transform - - uid: 2767 + - uid: 2991 components: - pos: 2.5,12.5 parent: 2 type: Transform - - uid: 2768 + - uid: 2992 components: - pos: 2.5,10.5 parent: 2 type: Transform - - uid: 2769 + - uid: 2993 components: - pos: 2.5,8.5 parent: 2 type: Transform - - uid: 2770 + - uid: 2994 components: - pos: 18.5,17.5 parent: 2 type: Transform - - uid: 2771 + - uid: 2995 components: - pos: 17.5,17.5 parent: 2 type: Transform - - uid: 2772 + - uid: 2996 components: - pos: 15.5,17.5 parent: 2 type: Transform - - uid: 2773 + - uid: 2997 components: - pos: 15.5,16.5 parent: 2 type: Transform - - uid: 2774 + - uid: 2998 components: - pos: 15.5,15.5 parent: 2 type: Transform - - uid: 2775 + - uid: 2999 components: - pos: 15.5,14.5 parent: 2 type: Transform - - uid: 2776 + - uid: 3000 components: - pos: 2.5,6.5 parent: 2 type: Transform - - uid: 2777 + - uid: 3001 components: - pos: 2.5,5.5 parent: 2 type: Transform - - uid: 2778 + - uid: 3002 components: - pos: 2.5,4.5 parent: 2 type: Transform - - uid: 2779 + - uid: 3003 components: - pos: 3.5,4.5 parent: 2 type: Transform - - uid: 2780 + - uid: 3004 components: - pos: 22.5,-12.5 parent: 2 type: Transform - - uid: 2781 + - uid: 3005 components: - pos: 14.5,13.5 parent: 2 type: Transform - - uid: 2782 + - uid: 3006 components: - pos: -21.5,25.5 parent: 2 type: Transform - - uid: 2783 + - uid: 3007 components: - pos: -14.5,24.5 parent: 2 type: Transform - - uid: 2784 + - uid: 3008 components: - pos: -21.5,26.5 parent: 2 type: Transform - - uid: 2785 + - uid: 3009 components: - pos: -20.5,30.5 parent: 2 type: Transform - - uid: 2786 + - uid: 3010 components: - pos: -18.5,24.5 parent: 2 type: Transform - - uid: 2787 + - uid: 3011 components: - pos: -19.5,24.5 parent: 2 type: Transform - - uid: 2788 + - uid: 3012 components: - pos: 1.5,29.5 parent: 2 type: Transform - - uid: 2789 + - uid: 3013 components: - pos: -16.5,24.5 parent: 2 type: Transform - - uid: 2790 + - uid: 3014 components: - pos: -14.5,63.5 parent: 2 type: Transform - - uid: 2791 + - uid: 3015 components: - pos: -20.5,61.5 parent: 2 type: Transform - - uid: 2792 + - uid: 3016 components: - pos: -20.5,63.5 parent: 2 type: Transform - - uid: 2793 + - uid: 3017 components: - pos: -20.5,62.5 parent: 2 type: Transform - - uid: 2794 + - uid: 3018 components: - pos: -21.5,60.5 parent: 2 type: Transform - - uid: 2795 + - uid: 3019 components: - pos: -20.5,60.5 parent: 2 type: Transform - - uid: 2796 + - uid: 3020 components: - pos: -20.5,41.5 parent: 2 type: Transform - - uid: 2797 + - uid: 3021 components: - pos: -20.5,47.5 parent: 2 type: Transform - - uid: 2798 + - uid: 3022 components: - pos: -20.5,45.5 parent: 2 type: Transform - - uid: 2799 + - uid: 3023 components: - pos: -22.5,56.5 parent: 2 type: Transform - - uid: 2800 + - uid: 3024 components: - pos: -23.5,53.5 parent: 2 type: Transform - - uid: 2801 + - uid: 3025 components: - pos: -26.5,54.5 parent: 2 type: Transform - - uid: 2802 + - uid: 3026 components: - pos: -22.5,60.5 parent: 2 type: Transform - - uid: 2803 + - uid: 3027 components: - pos: -22.5,63.5 parent: 2 type: Transform - - uid: 2804 + - uid: 3028 components: - pos: -26.5,61.5 parent: 2 type: Transform - - uid: 2805 + - uid: 3029 components: - pos: -26.5,63.5 parent: 2 type: Transform - - uid: 2806 + - uid: 3030 components: - pos: -18.5,54.5 parent: 2 type: Transform - - uid: 2807 + - uid: 3031 components: - pos: -20.5,43.5 parent: 2 type: Transform - - uid: 2808 + - uid: 3032 components: - pos: -21.5,53.5 parent: 2 type: Transform - - uid: 2809 + - uid: 3033 components: - pos: -26.5,56.5 parent: 2 type: Transform - - uid: 2810 + - uid: 3034 components: - pos: -20.5,57.5 parent: 2 type: Transform - - uid: 2811 + - uid: 3035 components: - pos: -16.5,60.5 parent: 2 type: Transform - - uid: 2812 + - uid: 3036 components: - pos: -24.5,61.5 parent: 2 type: Transform - - uid: 2813 + - uid: 3037 components: - pos: -14.5,55.5 parent: 2 type: Transform - - uid: 2814 + - uid: 3038 components: - pos: -26.5,62.5 parent: 2 type: Transform - - uid: 2815 + - uid: 3039 components: - pos: -17.5,53.5 parent: 2 type: Transform - - uid: 2816 + - uid: 3040 components: - pos: -16.5,56.5 parent: 2 type: Transform - - uid: 2817 + - uid: 3041 components: - pos: -20.5,49.5 parent: 2 type: Transform - - uid: 2818 + - uid: 3042 components: - pos: -16.5,63.5 parent: 2 type: Transform - - uid: 2819 + - uid: 3043 components: - pos: -19.5,60.5 parent: 2 type: Transform - - uid: 2820 + - uid: 3044 components: - pos: -25.5,60.5 parent: 2 type: Transform - - uid: 2821 + - uid: 3045 components: - pos: -16.5,62.5 parent: 2 type: Transform - - uid: 2822 + - uid: 3046 components: - pos: -23.5,60.5 parent: 2 type: Transform - - uid: 2823 + - uid: 3047 components: - pos: -21.5,27.5 parent: 2 type: Transform - - uid: 2824 + - uid: 3048 components: - pos: -22.5,24.5 parent: 2 type: Transform - - uid: 2825 + - uid: 3049 components: - pos: -20.5,59.5 parent: 2 type: Transform - - uid: 2826 + - uid: 3050 components: - pos: -20.5,64.5 parent: 2 type: Transform - - uid: 2827 + - uid: 3051 components: - pos: -14.5,53.5 parent: 2 type: Transform - - uid: 2828 + - uid: 3052 components: - pos: -24.5,60.5 parent: 2 type: Transform - - uid: 2829 + - uid: 3053 components: - pos: -26.5,60.5 parent: 2 type: Transform - - uid: 2830 + - uid: 3054 components: - pos: -20.5,55.5 parent: 2 type: Transform - - uid: 2831 + - uid: 3055 components: - pos: -20.5,41.5 parent: 2 type: Transform - - uid: 2832 + - uid: 3056 components: - pos: -18.5,62.5 parent: 2 type: Transform - - uid: 2833 + - uid: 3057 components: - pos: -24.5,53.5 parent: 2 type: Transform - - uid: 2834 + - uid: 3058 components: - pos: -24.5,54.5 parent: 2 type: Transform - - uid: 2835 + - uid: 3059 components: - pos: -24.5,55.5 parent: 2 type: Transform - - uid: 2836 + - uid: 3060 components: - pos: -21.5,30.5 parent: 2 type: Transform - - uid: 2837 + - uid: 3061 components: - pos: -24.5,56.5 parent: 2 type: Transform - - uid: 2838 + - uid: 3062 components: - pos: -20.5,40.5 parent: 2 type: Transform - - uid: 2839 + - uid: 3063 components: - pos: -20.5,39.5 parent: 2 type: Transform - - uid: 2840 + - uid: 3064 components: - pos: -20.5,38.5 parent: 2 type: Transform - - uid: 2841 + - uid: 3065 components: - pos: -20.5,37.5 parent: 2 type: Transform - - uid: 2842 + - uid: 3066 components: - pos: -20.5,36.5 parent: 2 type: Transform - - uid: 2843 + - uid: 3067 components: - pos: -20.5,35.5 parent: 2 type: Transform - - uid: 2844 + - uid: 3068 components: - pos: -20.5,29.5 parent: 2 type: Transform - - uid: 2845 + - uid: 3069 components: - pos: -16.5,61.5 parent: 2 type: Transform - - uid: 2846 + - uid: 3070 components: - pos: -18.5,60.5 parent: 2 type: Transform - - uid: 2847 + - uid: 3071 components: - pos: -20.5,56.5 parent: 2 type: Transform - - uid: 2848 + - uid: 3072 components: - pos: -22.5,55.5 parent: 2 type: Transform - - uid: 2849 + - uid: 3073 components: - pos: -15.5,60.5 parent: 2 type: Transform - - uid: 2850 + - uid: 3074 components: - pos: -22.5,53.5 parent: 2 type: Transform - - uid: 2851 + - uid: 3075 components: - pos: -28.5,53.5 parent: 2 type: Transform - - uid: 2852 + - uid: 3076 components: - pos: -22.5,54.5 parent: 2 type: Transform - - uid: 2853 + - uid: 3077 components: - pos: -18.5,61.5 parent: 2 type: Transform - - uid: 2854 + - uid: 3078 components: - pos: -20.5,48.5 parent: 2 type: Transform - - uid: 2855 + - uid: 3079 components: - pos: -18.5,63.5 parent: 2 type: Transform - - uid: 2856 + - uid: 3080 components: - pos: -20.5,42.5 parent: 2 type: Transform - - uid: 2857 + - uid: 3081 components: - pos: -28.5,60.5 parent: 2 type: Transform - - uid: 2858 + - uid: 3082 components: - pos: -17.5,60.5 parent: 2 type: Transform - - uid: 2859 + - uid: 3083 components: - pos: -24.5,62.5 parent: 2 type: Transform - - uid: 2860 + - uid: 3084 components: - pos: -27.5,60.5 parent: 2 type: Transform - - uid: 2861 + - uid: 3085 components: - pos: -15.5,53.5 parent: 2 type: Transform - - uid: 2862 + - uid: 3086 components: - pos: -18.5,56.5 parent: 2 type: Transform - - uid: 2863 + - uid: 3087 components: - pos: -13.5,53.5 parent: 2 type: Transform - - uid: 2864 + - uid: 3088 components: - pos: -13.5,60.5 parent: 2 type: Transform - - uid: 2865 + - uid: 3089 components: - pos: -18.5,53.5 parent: 2 type: Transform - - uid: 2866 + - uid: 3090 components: - pos: -22.5,62.5 parent: 2 type: Transform - - uid: 2867 + - uid: 3091 components: - pos: -20.5,46.5 parent: 2 type: Transform - - uid: 2868 + - uid: 3092 components: - pos: -20.5,58.5 parent: 2 type: Transform - - uid: 2869 + - uid: 3093 components: - pos: -27.5,53.5 parent: 2 type: Transform - - uid: 2870 + - uid: 3094 components: - pos: -12.5,60.5 parent: 2 type: Transform - - uid: 2871 + - uid: 3095 components: - pos: -25.5,53.5 parent: 2 type: Transform - - uid: 2872 + - uid: 3096 components: - pos: -20.5,44.5 parent: 2 type: Transform - - uid: 2873 + - uid: 3097 components: - pos: -14.5,21.5 parent: 2 type: Transform - - uid: 2874 + - uid: 3098 components: - pos: -14.5,20.5 parent: 2 type: Transform - - uid: 2875 + - uid: 3099 components: - pos: -13.5,20.5 parent: 2 type: Transform - - uid: 2876 + - uid: 3100 components: - pos: -12.5,20.5 parent: 2 type: Transform - - uid: 2877 + - uid: 3101 components: - pos: -14.5,22.5 parent: 2 type: Transform - - uid: 2878 + - uid: 3102 components: - pos: -12.5,19.5 parent: 2 type: Transform - - uid: 2879 + - uid: 3103 components: - pos: -14.5,23.5 parent: 2 type: Transform - - uid: 2880 + - uid: 3104 components: - pos: 48.5,24.5 parent: 2 type: Transform - - uid: 2881 + - uid: 3105 components: - pos: 44.5,24.5 parent: 2 type: Transform - - uid: 2882 + - uid: 3106 components: - pos: 44.5,25.5 parent: 2 type: Transform - - uid: 2883 + - uid: 3107 components: - pos: 45.5,22.5 parent: 2 type: Transform - - uid: 2884 + - uid: 3108 components: - pos: 20.5,20.5 parent: 2 type: Transform - - uid: 2885 + - uid: 3109 components: - pos: 18.5,20.5 parent: 2 type: Transform - - uid: 2886 + - uid: 3110 components: - pos: -20.5,24.5 parent: 2 type: Transform - - uid: 2887 + - uid: 3111 components: - pos: -14.5,27.5 parent: 2 type: Transform - - uid: 2888 + - uid: 3112 components: - pos: -14.5,28.5 parent: 2 type: Transform - - uid: 2889 + - uid: 3113 components: - pos: 15.5,13.5 parent: 2 type: Transform - - uid: 2890 + - uid: 3114 components: - pos: 16.5,13.5 parent: 2 type: Transform - - uid: 2891 + - uid: 3115 components: - pos: 13.5,12.5 parent: 2 type: Transform - - uid: 2892 + - uid: 3116 components: - pos: 17.5,13.5 parent: 2 type: Transform - - uid: 2893 + - uid: 3117 components: - pos: 18.5,13.5 parent: 2 type: Transform - - uid: 2894 + - uid: 3118 components: - pos: 19.5,13.5 parent: 2 type: Transform - - uid: 2895 + - uid: 3119 components: - pos: 20.5,13.5 parent: 2 type: Transform - - uid: 2896 + - uid: 3120 components: - pos: 20.5,14.5 parent: 2 type: Transform - - uid: 2897 + - uid: 3121 components: - pos: -14.5,26.5 parent: 2 type: Transform - - uid: 2898 + - uid: 3122 components: - pos: -0.5,-25.5 parent: 2 type: Transform - - uid: 2899 + - uid: 3123 components: - pos: 0.5,-25.5 parent: 2 type: Transform - - uid: 2900 + - uid: 3124 components: - pos: 2.5,-28.5 parent: 2 type: Transform - - uid: 2901 + - uid: 3125 components: - pos: 2.5,-29.5 parent: 2 type: Transform - - uid: 2902 + - uid: 3126 components: - pos: 1.5,-29.5 parent: 2 type: Transform - - uid: 2903 + - uid: 3127 components: - pos: 1.5,-30.5 parent: 2 type: Transform - - uid: 2904 + - uid: 3128 components: - pos: 0.5,-30.5 parent: 2 type: Transform - - uid: 2905 + - uid: 3129 components: - pos: -0.5,-30.5 parent: 2 type: Transform - - uid: 2906 + - uid: 3130 components: - pos: -1.5,-30.5 parent: 2 type: Transform - - uid: 2907 + - uid: 3131 components: - pos: -2.5,-30.5 parent: 2 type: Transform - - uid: 2908 + - uid: 3132 components: - pos: -2.5,-29.5 parent: 2 type: Transform - - uid: 2909 + - uid: 3133 components: - pos: -3.5,-29.5 parent: 2 type: Transform - - uid: 2910 + - uid: 3134 components: - pos: 18.5,-10.5 parent: 2 type: Transform - - uid: 2911 + - uid: 3135 components: - pos: 16.5,-10.5 parent: 2 type: Transform - - uid: 2912 + - uid: 3136 components: - pos: -20.5,27.5 parent: 2 type: Transform - - uid: 2913 + - uid: 3137 components: - pos: 21.5,-11.5 parent: 2 type: Transform - - uid: 2914 + - uid: 3138 components: - pos: 22.5,-11.5 parent: 2 type: Transform - - uid: 2915 + - uid: 3139 components: - pos: -14.5,25.5 parent: 2 type: Transform - - uid: 2916 + - uid: 3140 components: - pos: -15.5,24.5 parent: 2 type: Transform - - uid: 2917 + - uid: 3141 components: - pos: -17.5,24.5 parent: 2 type: Transform - - uid: 2918 + - uid: 3142 components: - pos: 17.5,20.5 parent: 2 type: Transform - - uid: 2919 + - uid: 3143 components: - pos: 16.5,20.5 parent: 2 type: Transform - - uid: 2920 + - uid: 3144 components: - pos: 15.5,20.5 parent: 2 type: Transform - - uid: 2921 + - uid: 3145 components: - pos: 14.5,20.5 parent: 2 type: Transform - - uid: 2922 + - uid: 3146 components: - pos: -14.5,-0.5 parent: 2 type: Transform - - uid: 2923 + - uid: 3147 components: - pos: -14.5,1.5 parent: 2 type: Transform - - uid: 2924 + - uid: 3148 components: - pos: -15.5,-0.5 parent: 2 type: Transform - - uid: 2925 + - uid: 3149 components: - pos: -16.5,-0.5 parent: 2 type: Transform - - uid: 2926 + - uid: 3150 components: - pos: -15.5,1.5 parent: 2 type: Transform - - uid: 2927 + - uid: 3151 components: - pos: -16.5,0.5 parent: 2 type: Transform - - uid: 2928 + - uid: 3152 components: - pos: -16.5,1.5 parent: 2 type: Transform - - uid: 2929 + - uid: 3153 components: - pos: -13.5,-0.5 parent: 2 type: Transform - - uid: 2930 + - uid: 3154 components: - pos: -12.5,-0.5 parent: 2 type: Transform - - uid: 2931 + - uid: 3155 components: - pos: -12.5,0.5 parent: 2 type: Transform - - uid: 2932 + - uid: 3156 components: - pos: -12.5,1.5 parent: 2 type: Transform - - uid: 2933 + - uid: 3157 components: - pos: -12.5,2.5 parent: 2 type: Transform - - uid: 2934 + - uid: 3158 components: - pos: -12.5,3.5 parent: 2 type: Transform - - uid: 2935 + - uid: 3159 components: - pos: -12.5,4.5 parent: 2 type: Transform - - uid: 2936 + - uid: 3160 components: - pos: 23.5,20.5 parent: 2 type: Transform - - uid: 2937 + - uid: 3161 components: - pos: 13.5,20.5 parent: 2 type: Transform - - uid: 2938 + - uid: 3162 components: - pos: -14.5,61.5 parent: 2 type: Transform - - uid: 2939 + - uid: 3163 components: - pos: 36.5,14.5 parent: 2 type: Transform - - uid: 2940 + - uid: 3164 components: - pos: 37.5,14.5 parent: 2 type: Transform - - uid: 2941 + - uid: 3165 components: - pos: 37.5,15.5 parent: 2 type: Transform - - uid: 2942 + - uid: 3166 components: - pos: 37.5,16.5 parent: 2 type: Transform - - uid: 2943 + - uid: 3167 components: - pos: 37.5,17.5 parent: 2 type: Transform - - uid: 2944 + - uid: 3168 components: - pos: 36.5,17.5 parent: 2 type: Transform - - uid: 2945 + - uid: 3169 components: - pos: 35.5,17.5 parent: 2 type: Transform - - uid: 2946 + - uid: 3170 components: - pos: 35.5,16.5 parent: 2 type: Transform - - uid: 2947 + - uid: 3171 components: - pos: 34.5,16.5 parent: 2 type: Transform - - uid: 2948 + - uid: 3172 components: - pos: 33.5,16.5 parent: 2 type: Transform - - uid: 2949 + - uid: 3173 components: - pos: 32.5,16.5 parent: 2 type: Transform - - uid: 2950 + - uid: 3174 components: - pos: 31.5,16.5 parent: 2 type: Transform - - uid: 2951 + - uid: 3175 components: - pos: 31.5,17.5 parent: 2 type: Transform - - uid: 2952 + - uid: 3176 components: - pos: 30.5,17.5 parent: 2 type: Transform - - uid: 2953 + - uid: 3177 components: - pos: 29.5,17.5 parent: 2 type: Transform - - uid: 2954 + - uid: 3178 components: - pos: 28.5,17.5 parent: 2 type: Transform - - uid: 2955 + - uid: 3179 components: - pos: 27.5,17.5 parent: 2 type: Transform - - uid: 2956 + - uid: 3180 components: - pos: 26.5,17.5 parent: 2 type: Transform - - uid: 2957 + - uid: 3181 components: - pos: 25.5,17.5 parent: 2 type: Transform - - uid: 2958 + - uid: 3182 components: - pos: 24.5,17.5 parent: 2 type: Transform - - uid: 2959 + - uid: 3183 components: - pos: 23.5,17.5 parent: 2 type: Transform - - uid: 2960 + - uid: 3184 components: - pos: 22.5,17.5 parent: 2 type: Transform - - uid: 2961 + - uid: 3185 components: - pos: 21.5,17.5 parent: 2 type: Transform - - uid: 2962 + - uid: 3186 components: - pos: 20.5,17.5 parent: 2 type: Transform - - uid: 2963 + - uid: 3187 components: - pos: 19.5,17.5 parent: 2 type: Transform - - uid: 2964 + - uid: 3188 components: - pos: 24.5,22.5 parent: 2 type: Transform - - uid: 2965 + - uid: 3189 components: - pos: 59.5,23.5 parent: 2 type: Transform - - uid: 2966 + - uid: 3190 components: - pos: 58.5,23.5 parent: 2 type: Transform - - uid: 2967 + - uid: 3191 components: - pos: 57.5,23.5 parent: 2 type: Transform - - uid: 2968 + - uid: 3192 components: - pos: 56.5,23.5 parent: 2 type: Transform - - uid: 2969 + - uid: 3193 components: - pos: 56.5,24.5 parent: 2 type: Transform - - uid: 2970 + - uid: 3194 components: - pos: 56.5,25.5 parent: 2 type: Transform - - uid: 2971 + - uid: 3195 components: - pos: 56.5,26.5 parent: 2 type: Transform - - uid: 2972 + - uid: 3196 components: - pos: 56.5,27.5 parent: 2 type: Transform - - uid: 2973 + - uid: 3197 components: - pos: 56.5,28.5 parent: 2 type: Transform - - uid: 2974 + - uid: 3198 components: - pos: 56.5,29.5 parent: 2 type: Transform - - uid: 2975 + - uid: 3199 components: - pos: 56.5,30.5 parent: 2 type: Transform - - uid: 2976 + - uid: 3200 components: - pos: 55.5,23.5 parent: 2 type: Transform - - uid: 2977 + - uid: 3201 components: - pos: 54.5,23.5 parent: 2 type: Transform - - uid: 2978 + - uid: 3202 components: - pos: 53.5,23.5 parent: 2 type: Transform - - uid: 2979 + - uid: 3203 components: - pos: 52.5,23.5 parent: 2 type: Transform - - uid: 2980 + - uid: 3204 components: - pos: 51.5,23.5 parent: 2 type: Transform - - uid: 2981 + - uid: 3205 components: - pos: 50.5,23.5 parent: 2 type: Transform - - uid: 2982 + - uid: 3206 components: - pos: 49.5,23.5 parent: 2 type: Transform - - uid: 2983 + - uid: 3207 components: - pos: 48.5,23.5 parent: 2 type: Transform - - uid: 2984 + - uid: 3208 components: - pos: 47.5,23.5 parent: 2 type: Transform - - uid: 2985 + - uid: 3209 components: - pos: 46.5,23.5 parent: 2 type: Transform - - uid: 2986 + - uid: 3210 components: - pos: 45.5,23.5 parent: 2 type: Transform - - uid: 2987 + - uid: 3211 components: - pos: 44.5,23.5 parent: 2 type: Transform - - uid: 2988 + - uid: 3212 components: - pos: 43.5,23.5 parent: 2 type: Transform - - uid: 2989 + - uid: 3213 components: - pos: 45.5,19.5 parent: 2 type: Transform - - uid: 2990 + - uid: 3214 components: - pos: 45.5,18.5 parent: 2 type: Transform - - uid: 2991 + - uid: 3215 components: - pos: 45.5,17.5 parent: 2 type: Transform - - uid: 2992 + - uid: 3216 components: - pos: 45.5,16.5 parent: 2 type: Transform - - uid: 2993 + - uid: 3217 components: - pos: 44.5,16.5 parent: 2 type: Transform - - uid: 2994 + - uid: 3218 components: - pos: 43.5,16.5 parent: 2 type: Transform - - uid: 2995 + - uid: 3219 components: - pos: 42.5,16.5 parent: 2 type: Transform - - uid: 2996 + - uid: 3220 components: - pos: 41.5,16.5 parent: 2 type: Transform - - uid: 2997 + - uid: 3221 components: - pos: 41.5,15.5 parent: 2 type: Transform - - uid: 2998 + - uid: 3222 components: - pos: 40.5,15.5 parent: 2 type: Transform - - uid: 2999 + - uid: 3223 components: - pos: 39.5,15.5 parent: 2 type: Transform - - uid: 3000 + - uid: 3224 components: - pos: 38.5,15.5 parent: 2 type: Transform - - uid: 3001 + - uid: 3225 components: - pos: 44.5,26.5 parent: 2 type: Transform - - uid: 3002 + - uid: 3226 components: - pos: 44.5,27.5 parent: 2 type: Transform - - uid: 3003 + - uid: 3227 components: - pos: 44.5,28.5 parent: 2 type: Transform - - uid: 3004 + - uid: 3228 components: - pos: 44.5,29.5 parent: 2 type: Transform - - uid: 3005 + - uid: 3229 components: - pos: 44.5,30.5 parent: 2 type: Transform - - uid: 3006 + - uid: 3230 components: - pos: 48.5,25.5 parent: 2 type: Transform - - uid: 3007 + - uid: 3231 components: - pos: 48.5,26.5 parent: 2 type: Transform - - uid: 3008 + - uid: 3232 components: - pos: 48.5,27.5 parent: 2 type: Transform - - uid: 3009 + - uid: 3233 components: - pos: 48.5,28.5 parent: 2 type: Transform - - uid: 3010 + - uid: 3234 components: - pos: 48.5,29.5 parent: 2 type: Transform - - uid: 3011 + - uid: 3235 components: - pos: 48.5,30.5 parent: 2 type: Transform - - uid: 3012 + - uid: 3236 components: - pos: 52.5,24.5 parent: 2 type: Transform - - uid: 3013 + - uid: 3237 components: - pos: 52.5,25.5 parent: 2 type: Transform - - uid: 3014 + - uid: 3238 components: - pos: 52.5,26.5 parent: 2 type: Transform - - uid: 3015 + - uid: 3239 components: - pos: 52.5,27.5 parent: 2 type: Transform - - uid: 3016 + - uid: 3240 components: - pos: 52.5,28.5 parent: 2 type: Transform - - uid: 3017 + - uid: 3241 components: - pos: 52.5,29.5 parent: 2 type: Transform - - uid: 3018 + - uid: 3242 components: - pos: 52.5,30.5 parent: 2 type: Transform - - uid: 3019 + - uid: 3243 components: - pos: 53.5,25.5 parent: 2 type: Transform - - uid: 3020 + - uid: 3244 components: - pos: 51.5,25.5 parent: 2 type: Transform - - uid: 3021 + - uid: 3245 components: - pos: 53.5,27.5 parent: 2 type: Transform - - uid: 3022 + - uid: 3246 components: - pos: 51.5,27.5 parent: 2 type: Transform - - uid: 3023 + - uid: 3247 components: - pos: 51.5,29.5 parent: 2 type: Transform - - uid: 3024 + - uid: 3248 components: - pos: 53.5,29.5 parent: 2 type: Transform - - uid: 3025 + - uid: 3249 components: - pos: 52.5,31.5 parent: 2 type: Transform - - uid: 3026 + - uid: 3250 components: - pos: 48.5,31.5 parent: 2 type: Transform - - uid: 3027 + - uid: 3251 components: - pos: 49.5,29.5 parent: 2 type: Transform - - uid: 3028 + - uid: 3252 components: - pos: 47.5,29.5 parent: 2 type: Transform - - uid: 3029 + - uid: 3253 components: - pos: 47.5,27.5 parent: 2 type: Transform - - uid: 3030 + - uid: 3254 components: - pos: 49.5,27.5 parent: 2 type: Transform - - uid: 3031 + - uid: 3255 components: - pos: 49.5,25.5 parent: 2 type: Transform - - uid: 3032 + - uid: 3256 components: - pos: 47.5,25.5 parent: 2 type: Transform - - uid: 3033 + - uid: 3257 components: - pos: 45.5,25.5 parent: 2 type: Transform - - uid: 3034 + - uid: 3258 components: - pos: 43.5,25.5 parent: 2 type: Transform - - uid: 3035 + - uid: 3259 components: - pos: 43.5,27.5 parent: 2 type: Transform - - uid: 3036 + - uid: 3260 components: - pos: 45.5,27.5 parent: 2 type: Transform - - uid: 3037 + - uid: 3261 components: - pos: 43.5,29.5 parent: 2 type: Transform - - uid: 3038 + - uid: 3262 components: - pos: 45.5,29.5 parent: 2 type: Transform - - uid: 3039 + - uid: 3263 components: - pos: 44.5,31.5 parent: 2 type: Transform - - uid: 3040 + - uid: 3264 components: - pos: 55.5,27.5 parent: 2 type: Transform - - uid: 3041 + - uid: 3265 components: - pos: 55.5,25.5 parent: 2 type: Transform - - uid: 3042 + - uid: 3266 components: - pos: 57.5,25.5 parent: 2 type: Transform - - uid: 3043 + - uid: 3267 components: - pos: 57.5,27.5 parent: 2 type: Transform - - uid: 3044 + - uid: 3268 components: - pos: 57.5,29.5 parent: 2 type: Transform - - uid: 3045 + - uid: 3269 components: - pos: 55.5,29.5 parent: 2 type: Transform - - uid: 3046 + - uid: 3270 components: - pos: 56.5,31.5 parent: 2 type: Transform - - uid: 3047 + - uid: 3271 components: - pos: -14.5,62.5 parent: 2 type: Transform - - uid: 3048 + - uid: 3272 components: - pos: -14.5,60.5 parent: 2 type: Transform - - uid: 3049 + - uid: 3273 components: - pos: -20.5,54.5 parent: 2 type: Transform - - uid: 3050 + - uid: 3274 components: - pos: -26.5,53.5 parent: 2 type: Transform - - uid: 3051 + - uid: 3275 components: - pos: -12.5,53.5 parent: 2 type: Transform - - uid: 3052 + - uid: 3276 components: - pos: -26.5,55.5 parent: 2 type: Transform - - uid: 3053 + - uid: 3277 components: - pos: -22.5,61.5 parent: 2 type: Transform - - uid: 3054 + - uid: 3278 components: - pos: -18.5,55.5 parent: 2 type: Transform - - uid: 3055 + - uid: 3279 components: - pos: -16.5,54.5 parent: 2 type: Transform - - uid: 3056 + - uid: 3280 components: - pos: -16.5,55.5 parent: 2 type: Transform - - uid: 3057 + - uid: 3281 components: - pos: -19.5,53.5 parent: 2 type: Transform - - uid: 3058 + - uid: 3282 components: - pos: -16.5,53.5 parent: 2 type: Transform - - uid: 3059 + - uid: 3283 components: - pos: -14.5,54.5 parent: 2 type: Transform - - uid: 3060 + - uid: 3284 components: - pos: -14.5,56.5 parent: 2 type: Transform - - uid: 3061 + - uid: 3285 components: - pos: -24.5,63.5 parent: 2 type: Transform - - uid: 3062 + - uid: 3286 components: - pos: 24.5,25.5 parent: 2 type: Transform - - uid: 3063 + - uid: 3287 components: - pos: 21.5,20.5 parent: 2 type: Transform - - uid: 3064 + - uid: 3288 components: - pos: 24.5,23.5 parent: 2 type: Transform - - uid: 3065 + - uid: 3289 components: - pos: 24.5,20.5 parent: 2 type: Transform - - uid: 3066 + - uid: 3290 components: - pos: -29.5,27.5 parent: 2 type: Transform - - uid: 3067 + - uid: 3291 components: - pos: -29.5,26.5 parent: 2 type: Transform - - uid: 3068 + - uid: 3292 components: - pos: -29.5,25.5 parent: 2 type: Transform - - uid: 3069 + - uid: 3293 components: - pos: -20.5,28.5 parent: 2 type: Transform - - uid: 3070 + - uid: 3294 components: - pos: 2.5,29.5 parent: 2 type: Transform - - uid: 3071 + - uid: 3295 components: - pos: -20.5,52.5 parent: 2 type: Transform - - uid: 3072 + - uid: 3296 components: - pos: -20.5,53.5 parent: 2 type: Transform - - uid: 3073 + - uid: 3297 components: - pos: 3.5,29.5 parent: 2 type: Transform - - uid: 3074 + - uid: 3298 components: - pos: -20.5,51.5 parent: 2 type: Transform - - uid: 3075 + - uid: 3299 components: - pos: 3.5,28.5 parent: 2 type: Transform - - uid: 3076 + - uid: 3300 components: - pos: 1.5,28.5 parent: 2 type: Transform - - uid: 3077 + - uid: 3301 components: - pos: 22.5,-13.5 parent: 2 type: Transform - - uid: 3078 + - uid: 3302 components: - pos: 22.5,-14.5 parent: 2 type: Transform - - uid: 3079 + - uid: 3303 components: - pos: 22.5,-15.5 parent: 2 type: Transform - - uid: 3080 + - uid: 3304 components: - pos: 22.5,-16.5 parent: 2 type: Transform - - uid: 3081 + - uid: 3305 components: - pos: 23.5,-16.5 parent: 2 type: Transform - - uid: 3082 + - uid: 3306 components: - pos: 24.5,-16.5 parent: 2 type: Transform - - uid: 3083 + - uid: 3307 components: - pos: 25.5,-16.5 parent: 2 type: Transform - - uid: 3084 + - uid: 3308 components: - pos: 25.5,-15.5 parent: 2 type: Transform - - uid: 3085 + - uid: 3309 components: - pos: 26.5,-15.5 parent: 2 type: Transform - - uid: 3086 + - uid: 3310 components: - pos: 26.5,-16.5 parent: 2 type: Transform - - uid: 3087 + - uid: 3311 components: - pos: 26.5,-17.5 parent: 2 type: Transform - - uid: 3088 + - uid: 3312 components: - pos: 25.5,-17.5 parent: 2 type: Transform - - uid: 3089 + - uid: 3313 components: - pos: 7.5,24.5 parent: 2 type: Transform - - uid: 3090 + - uid: 3314 components: - pos: 7.5,23.5 parent: 2 type: Transform - - uid: 3091 + - uid: 3315 components: - pos: 7.5,33.5 parent: 2 type: Transform - - uid: 3092 + - uid: 3316 components: - pos: 7.5,31.5 parent: 2 type: Transform - - uid: 3093 + - uid: 3317 components: - pos: 7.5,20.5 parent: 2 type: Transform - - uid: 3094 + - uid: 3318 components: - pos: 10.5,20.5 parent: 2 type: Transform - - uid: 3095 + - uid: 3319 components: - pos: 11.5,20.5 parent: 2 type: Transform - - uid: 3096 + - uid: 3320 components: - pos: 9.5,20.5 parent: 2 type: Transform - - uid: 3097 + - uid: 3321 components: - pos: 7.5,22.5 parent: 2 type: Transform - - uid: 3098 + - uid: 3322 components: - pos: 8.5,20.5 parent: 2 type: Transform - - uid: 3099 + - uid: 3323 components: - pos: 7.5,21.5 parent: 2 type: Transform - - uid: 3100 + - uid: 3324 components: - pos: 12.5,20.5 parent: 2 type: Transform - - uid: 3101 + - uid: 3325 components: - pos: 7.5,32.5 parent: 2 type: Transform - proto: CableHVStack entities: - - uid: 3102 + - uid: 3326 components: - pos: 0.6388791,40.625793 parent: 2 type: Transform - - uid: 3103 + - uid: 3327 components: - pos: 0.5659625,40.45901 parent: 2 type: Transform - - uid: 3104 + - uid: 3328 components: - pos: 0.74304587,40.68834 parent: 2 type: Transform - - uid: 3105 + - uid: 3329 components: - pos: -29.460981,24.892977 parent: 2 type: Transform - - uid: 3106 + - uid: 3330 components: - pos: 35.399845,14.705568 parent: 2 type: Transform - - uid: 3107 + - uid: 3331 components: - pos: 35.54568,14.528362 parent: 2 type: Transform - - uid: 3108 + - uid: 3332 components: - pos: -24.336763,28.719553 parent: 2 type: Transform - - uid: 3109 + - uid: 3333 components: - pos: -24.25343,28.438108 parent: 2 type: Transform - - uid: 3110 + - uid: 3334 components: - pos: -4.2951384,36.23426 parent: 2 type: Transform - proto: CableMV entities: - - uid: 3111 + - uid: 3335 components: - pos: 7.5,28.5 parent: 2 type: Transform - - uid: 3112 + - uid: 3336 components: - pos: 21.5,-1.5 parent: 2 type: Transform - - uid: 3113 + - uid: 3337 components: - pos: -15.5,-12.5 parent: 2 type: Transform - - uid: 3114 + - uid: 3338 components: - pos: -9.5,-7.5 parent: 2 type: Transform - - uid: 3115 + - uid: 3339 components: - pos: -9.5,-5.5 parent: 2 type: Transform - - uid: 3116 + - uid: 3340 components: - pos: -9.5,-6.5 parent: 2 type: Transform - - uid: 3117 + - uid: 3341 components: - pos: -9.5,-4.5 parent: 2 type: Transform - - uid: 3118 + - uid: 3342 components: - pos: -12.5,18.5 parent: 2 type: Transform - - uid: 3119 + - uid: 3343 components: - pos: -12.5,17.5 parent: 2 type: Transform - - uid: 3120 + - uid: 3344 components: - pos: -12.5,16.5 parent: 2 type: Transform - - uid: 3121 + - uid: 3345 components: - pos: -7.5,18.5 parent: 2 type: Transform - - uid: 3122 + - uid: 3346 components: - pos: -12.5,15.5 parent: 2 type: Transform - - uid: 3123 + - uid: 3347 components: - pos: -12.5,14.5 parent: 2 type: Transform - - uid: 3124 + - uid: 3348 components: - pos: -12.5,13.5 parent: 2 type: Transform - - uid: 3125 + - uid: 3349 components: - pos: -16.5,8.5 parent: 2 type: Transform - - uid: 3126 + - uid: 3350 components: - pos: -17.5,8.5 parent: 2 type: Transform - - uid: 3127 + - uid: 3351 components: - pos: -18.5,8.5 parent: 2 type: Transform - - uid: 3128 + - uid: 3352 components: - pos: -18.5,9.5 parent: 2 type: Transform - - uid: 3129 + - uid: 3353 components: - pos: -18.5,10.5 parent: 2 type: Transform - - uid: 3130 + - uid: 3354 components: - pos: -18.5,11.5 parent: 2 type: Transform - - uid: 3131 + - uid: 3355 components: - pos: -17.5,11.5 parent: 2 type: Transform - - uid: 3132 + - uid: 3356 components: - pos: -8.5,7.5 parent: 2 type: Transform - - uid: 3133 + - uid: 3357 components: - pos: -8.5,-3.5 parent: 2 type: Transform - - uid: 3134 + - uid: 3358 components: - pos: -7.5,-3.5 parent: 2 type: Transform - - uid: 3135 + - uid: 3359 components: - pos: -6.5,-3.5 parent: 2 type: Transform - - uid: 3136 + - uid: 3360 components: - pos: -5.5,-3.5 parent: 2 type: Transform - - uid: 3137 + - uid: 3361 components: - pos: -4.5,-3.5 parent: 2 type: Transform - - uid: 3138 + - uid: 3362 components: - pos: -4.5,-2.5 parent: 2 type: Transform - - uid: 3139 + - uid: 3363 components: - pos: -4.5,-1.5 parent: 2 type: Transform - - uid: 3140 + - uid: 3364 components: - pos: -4.5,-0.5 parent: 2 type: Transform - - uid: 3141 + - uid: 3365 components: - pos: -4.5,0.5 parent: 2 type: Transform - - uid: 3142 + - uid: 3366 components: - pos: -4.5,1.5 parent: 2 type: Transform - - uid: 3143 + - uid: 3367 components: - pos: -3.5,1.5 parent: 2 type: Transform - - uid: 3144 + - uid: 3368 components: - pos: -2.5,1.5 parent: 2 type: Transform - - uid: 3145 + - uid: 3369 components: - pos: -1.5,1.5 parent: 2 type: Transform - - uid: 3146 + - uid: 3370 components: - pos: -0.5,1.5 parent: 2 type: Transform - - uid: 3147 + - uid: 3371 components: - pos: 0.5,1.5 parent: 2 type: Transform - - uid: 3148 + - uid: 3372 components: - pos: 0.5,2.5 parent: 2 type: Transform - - uid: 3149 + - uid: 3373 components: - pos: -11.5,-2.5 parent: 2 type: Transform - - uid: 3150 + - uid: 3374 components: - pos: -11.5,-3.5 parent: 2 type: Transform - - uid: 3151 + - uid: 3375 components: - pos: -10.5,-3.5 parent: 2 type: Transform - - uid: 3152 + - uid: 3376 components: - pos: -9.5,-3.5 parent: 2 type: Transform - - uid: 3153 + - uid: 3377 components: - pos: -9.5,-2.5 parent: 2 type: Transform - - uid: 3154 + - uid: 3378 components: - pos: -9.5,-1.5 parent: 2 type: Transform - - uid: 3155 + - uid: 3379 components: - pos: -9.5,-0.5 parent: 2 type: Transform - - uid: 3156 + - uid: 3380 components: - pos: -9.5,0.5 parent: 2 type: Transform - - uid: 3157 + - uid: 3381 components: - pos: -9.5,1.5 parent: 2 type: Transform - - uid: 3158 + - uid: 3382 components: - pos: -9.5,2.5 parent: 2 type: Transform - - uid: 3159 + - uid: 3383 components: - pos: -9.5,3.5 parent: 2 type: Transform - - uid: 3160 + - uid: 3384 components: - pos: -9.5,7.5 parent: 2 type: Transform - - uid: 3161 + - uid: 3385 components: - pos: -9.5,6.5 parent: 2 type: Transform - - uid: 3162 + - uid: 3386 components: - pos: -9.5,5.5 parent: 2 type: Transform - - uid: 3163 + - uid: 3387 components: - pos: -9.5,4.5 parent: 2 type: Transform - - uid: 3164 + - uid: 3388 components: - pos: -8.5,4.5 parent: 2 type: Transform - - uid: 3165 + - uid: 3389 components: - pos: -7.5,4.5 parent: 2 type: Transform - - uid: 3166 + - uid: 3390 components: - pos: -13.5,-1.5 parent: 2 type: Transform - - uid: 3167 + - uid: 3391 components: - pos: -12.5,-1.5 parent: 2 type: Transform - - uid: 3168 + - uid: 3392 components: - pos: -11.5,-1.5 parent: 2 type: Transform - - uid: 3169 + - uid: 3393 components: - pos: -7.5,5.5 parent: 2 type: Transform - - uid: 3170 + - uid: 3394 components: - pos: -14.5,-12.5 parent: 2 type: Transform - - uid: 3171 + - uid: 3395 components: - pos: -13.5,-12.5 parent: 2 type: Transform - - uid: 3172 + - uid: 3396 components: - pos: -12.5,-12.5 parent: 2 type: Transform - - uid: 3173 + - uid: 3397 components: - pos: -12.5,-13.5 parent: 2 type: Transform - - uid: 3174 + - uid: 3398 components: - pos: -12.5,-14.5 parent: 2 type: Transform - - uid: 3175 + - uid: 3399 components: - pos: -12.5,-15.5 parent: 2 type: Transform - - uid: 3176 + - uid: 3400 components: - pos: -11.5,-15.5 parent: 2 type: Transform - - uid: 3177 + - uid: 3401 components: - pos: -10.5,-15.5 parent: 2 type: Transform - - uid: 3178 + - uid: 3402 components: - pos: -9.5,-15.5 parent: 2 type: Transform - - uid: 3179 + - uid: 3403 components: - pos: -8.5,-15.5 parent: 2 type: Transform - - uid: 3180 + - uid: 3404 components: - pos: 15.5,-10.5 parent: 2 type: Transform - - uid: 3181 + - uid: 3405 components: - pos: -7.5,-15.5 parent: 2 type: Transform - - uid: 3182 + - uid: 3406 components: - pos: -6.5,-15.5 parent: 2 type: Transform - - uid: 3183 + - uid: 3407 components: - pos: 12.5,-8.5 parent: 2 type: Transform - - uid: 3184 + - uid: 3408 components: - pos: -5.5,-15.5 parent: 2 type: Transform - - uid: 3185 + - uid: 3409 components: - pos: 10.5,-12.5 parent: 2 type: Transform - - uid: 3186 + - uid: 3410 components: - pos: 17.5,-10.5 parent: 2 type: Transform - - uid: 3187 + - uid: 3411 components: - pos: 12.5,-11.5 parent: 2 type: Transform - - uid: 3188 + - uid: 3412 components: - pos: 21.5,-11.5 parent: 2 type: Transform - - uid: 3189 + - uid: 3413 components: - pos: 8.5,-8.5 parent: 2 type: Transform - - uid: 3190 + - uid: 3414 components: - pos: 18.5,-10.5 parent: 2 type: Transform - - uid: 3191 + - uid: 3415 components: - pos: 7.5,-8.5 parent: 2 type: Transform - - uid: 3192 + - uid: 3416 components: - pos: 4.5,-12.5 parent: 2 type: Transform - - uid: 3193 + - uid: 3417 components: - pos: 20.5,-10.5 parent: 2 type: Transform - - uid: 3194 + - uid: 3418 components: - pos: 14.5,-10.5 parent: 2 type: Transform - - uid: 3195 + - uid: 3419 components: - pos: 20.5,-11.5 parent: 2 type: Transform - - uid: 3196 + - uid: 3420 components: - pos: 22.5,-12.5 parent: 2 type: Transform - - uid: 3197 + - uid: 3421 components: - pos: 14.5,-9.5 parent: 2 type: Transform - - uid: 3198 + - uid: 3422 components: - pos: 14.5,-11.5 parent: 2 type: Transform - - uid: 3199 + - uid: 3423 components: - pos: 13.5,-8.5 parent: 2 type: Transform - - uid: 3200 + - uid: 3424 components: - pos: 9.5,-8.5 parent: 2 type: Transform - - uid: 3201 + - uid: 3425 components: - pos: 10.5,-8.5 parent: 2 type: Transform - - uid: 3202 + - uid: 3426 components: - pos: 13.5,-11.5 parent: 2 type: Transform - - uid: 3203 + - uid: 3427 components: - pos: 7.5,-7.5 parent: 2 type: Transform - - uid: 3204 + - uid: 3428 components: - pos: 22.5,-11.5 parent: 2 type: Transform - - uid: 3205 + - uid: 3429 components: - pos: 14.5,-8.5 parent: 2 type: Transform - - uid: 3206 + - uid: 3430 components: - pos: 19.5,-10.5 parent: 2 type: Transform - - uid: 3207 + - uid: 3431 components: - pos: 16.5,-10.5 parent: 2 type: Transform - - uid: 3208 + - uid: 3432 components: - pos: -9.5,-8.5 parent: 2 type: Transform - - uid: 3209 + - uid: 3433 components: - pos: -8.5,-8.5 parent: 2 type: Transform - - uid: 3210 + - uid: 3434 components: - pos: -7.5,-8.5 parent: 2 type: Transform - - uid: 3211 + - uid: 3435 components: - pos: -6.5,-8.5 parent: 2 type: Transform - - uid: 3212 + - uid: 3436 components: - pos: -5.5,-8.5 parent: 2 type: Transform - - uid: 3213 + - uid: 3437 components: - pos: -5.5,-9.5 parent: 2 type: Transform - - uid: 3214 + - uid: 3438 components: - pos: -5.5,-10.5 parent: 2 type: Transform - - uid: 3215 + - uid: 3439 components: - pos: -6.5,44.5 parent: 2 type: Transform - - uid: 3216 + - uid: 3440 components: - pos: 4.5,-13.5 parent: 2 type: Transform - - uid: 3217 + - uid: 3441 components: - pos: 4.5,-14.5 parent: 2 type: Transform - - uid: 3218 + - uid: 3442 components: - pos: -1.5,-18.5 parent: 2 type: Transform - - uid: 3219 + - uid: 3443 components: - pos: -0.5,-18.5 parent: 2 type: Transform - - uid: 3220 + - uid: 3444 components: - pos: 0.5,-18.5 parent: 2 type: Transform - - uid: 3221 + - uid: 3445 components: - pos: 1.5,-18.5 parent: 2 type: Transform - - uid: 3222 + - uid: 3446 components: - pos: 7.5,21.5 parent: 2 type: Transform - - uid: 3223 + - uid: 3447 components: - pos: 8.5,21.5 parent: 2 type: Transform - - uid: 3224 + - uid: 3448 components: - pos: 9.5,21.5 parent: 2 type: Transform - - uid: 3225 + - uid: 3449 components: - pos: 10.5,21.5 parent: 2 type: Transform - - uid: 3226 + - uid: 3450 components: - pos: -5.5,21.5 parent: 2 type: Transform - - uid: 3227 + - uid: 3451 components: - pos: -6.5,18.5 parent: 2 type: Transform - - uid: 3228 + - uid: 3452 components: - pos: -5.5,20.5 parent: 2 type: Transform - - uid: 3229 + - uid: 3453 components: - pos: -6.5,19.5 parent: 2 type: Transform - - uid: 3230 + - uid: 3454 components: - pos: -6.5,20.5 parent: 2 type: Transform - - uid: 3231 + - uid: 3455 components: - pos: 2.5,-18.5 parent: 2 type: Transform - - uid: 3232 + - uid: 3456 components: - pos: 3.5,-18.5 parent: 2 type: Transform - - uid: 3233 + - uid: 3457 components: - pos: 4.5,-18.5 parent: 2 type: Transform - - uid: 3234 + - uid: 3458 components: - pos: 4.5,-17.5 parent: 2 type: Transform - - uid: 3235 + - uid: 3459 components: - pos: 4.5,-16.5 parent: 2 type: Transform - - uid: 3236 + - uid: 3460 components: - pos: 4.5,-15.5 parent: 2 type: Transform - - uid: 3237 + - uid: 3461 components: - pos: 3.5,-15.5 parent: 2 type: Transform - - uid: 3238 + - uid: 3462 components: - pos: 2.5,-15.5 parent: 2 type: Transform - - uid: 3239 + - uid: 3463 components: - pos: 1.5,-15.5 parent: 2 type: Transform - - uid: 3240 + - uid: 3464 components: - pos: 0.5,-15.5 parent: 2 type: Transform - - uid: 3241 + - uid: 3465 components: - pos: -0.5,-15.5 parent: 2 type: Transform - - uid: 3242 + - uid: 3466 components: - pos: -1.5,-15.5 parent: 2 type: Transform - - uid: 3243 + - uid: 3467 components: - pos: -2.5,-15.5 parent: 2 type: Transform - - uid: 3244 + - uid: 3468 components: - pos: -3.5,-15.5 parent: 2 type: Transform - - uid: 3245 + - uid: 3469 components: - pos: -4.5,-15.5 parent: 2 type: Transform - - uid: 3246 + - uid: 3470 components: - pos: -4.5,-14.5 parent: 2 type: Transform - - uid: 3247 + - uid: 3471 components: - pos: -4.5,-13.5 parent: 2 type: Transform - - uid: 3248 + - uid: 3472 components: - pos: -4.5,-12.5 parent: 2 type: Transform - - uid: 3249 + - uid: 3473 components: - pos: -4.5,-11.5 parent: 2 type: Transform - - uid: 3250 + - uid: 3474 components: - pos: 16.5,15.5 parent: 2 type: Transform - - uid: 3251 + - uid: 3475 components: - pos: 11.5,13.5 parent: 2 type: Transform - - uid: 3252 + - uid: 3476 components: - pos: 10.5,13.5 parent: 2 type: Transform - - uid: 3253 + - uid: 3477 components: - pos: 9.5,13.5 parent: 2 type: Transform - - uid: 3254 + - uid: 3478 components: - pos: 8.5,13.5 parent: 2 type: Transform - - uid: 3255 + - uid: 3479 components: - pos: 7.5,13.5 parent: 2 type: Transform - - uid: 3256 + - uid: 3480 components: - pos: 6.5,13.5 parent: 2 type: Transform - - uid: 3257 + - uid: 3481 components: - pos: 5.5,13.5 parent: 2 type: Transform - - uid: 3258 + - uid: 3482 components: - pos: 11.5,14.5 parent: 2 type: Transform - - uid: 3259 + - uid: 3483 components: - pos: 11.5,15.5 parent: 2 type: Transform - - uid: 3260 + - uid: 3484 components: - pos: 11.5,16.5 parent: 2 type: Transform - - uid: 3261 + - uid: 3485 components: - pos: 11.5,17.5 parent: 2 type: Transform - - uid: 3262 + - uid: 3486 components: - pos: 11.5,18.5 parent: 2 type: Transform - - uid: 3263 + - uid: 3487 components: - pos: 11.5,19.5 parent: 2 type: Transform - - uid: 3264 + - uid: 3488 components: - pos: 11.5,20.5 parent: 2 type: Transform - - uid: 3265 + - uid: 3489 components: - pos: 11.5,21.5 parent: 2 type: Transform - - uid: 3266 + - uid: 3490 components: - pos: 4.5,13.5 parent: 2 type: Transform - - uid: 3267 + - uid: 3491 components: - pos: 3.5,13.5 parent: 2 type: Transform - - uid: 3268 + - uid: 3492 components: - pos: 2.5,13.5 parent: 2 type: Transform - - uid: 3269 + - uid: 3493 components: - pos: 2.5,12.5 parent: 2 type: Transform - - uid: 3270 + - uid: 3494 components: - pos: 2.5,11.5 parent: 2 type: Transform - - uid: 3271 + - uid: 3495 components: - pos: 2.5,10.5 parent: 2 type: Transform - - uid: 3272 + - uid: 3496 components: - pos: 2.5,9.5 parent: 2 type: Transform - - uid: 3273 + - uid: 3497 components: - pos: 2.5,8.5 parent: 2 type: Transform - - uid: 3274 + - uid: 3498 components: - pos: 2.5,7.5 parent: 2 type: Transform - - uid: 3275 + - uid: 3499 components: - pos: 10.5,18.5 parent: 2 type: Transform - - uid: 3276 + - uid: 3500 components: - pos: 9.5,18.5 parent: 2 type: Transform - - uid: 3277 + - uid: 3501 components: - pos: 20.5,-9.5 parent: 2 type: Transform - - uid: 3278 + - uid: 3502 components: - pos: 20.5,-8.5 parent: 2 type: Transform - - uid: 3279 + - uid: 3503 components: - pos: -14.5,25.5 parent: 2 type: Transform - - uid: 3280 + - uid: 3504 components: - pos: 20.5,-7.5 parent: 2 type: Transform - - uid: 3281 + - uid: 3505 components: - pos: 0.5,30.5 parent: 2 type: Transform - - uid: 3282 + - uid: 3506 components: - pos: 2.5,-10.5 parent: 2 type: Transform - - uid: 3283 + - uid: 3507 components: - pos: 3.5,-10.5 parent: 2 type: Transform - - uid: 3284 + - uid: 3508 components: - pos: 4.5,-10.5 parent: 2 type: Transform - - uid: 3285 + - uid: 3509 components: - pos: 4.5,-11.5 parent: 2 type: Transform - - uid: 3286 + - uid: 3510 components: - pos: -1.5,-19.5 parent: 2 type: Transform - - uid: 3287 + - uid: 3511 components: - pos: -1.5,-20.5 parent: 2 type: Transform - - uid: 3288 + - uid: 3512 components: - pos: -2.5,-20.5 parent: 2 type: Transform - - uid: 3289 + - uid: 3513 components: - pos: -3.5,-20.5 parent: 2 type: Transform - - uid: 3290 + - uid: 3514 components: - pos: -4.5,-20.5 parent: 2 type: Transform - - uid: 3291 + - uid: 3515 components: - pos: -1.5,-17.5 parent: 2 type: Transform - - uid: 3292 + - uid: 3516 components: - pos: -1.5,-16.5 parent: 2 type: Transform - - uid: 3293 + - uid: 3517 components: - pos: -14.5,24.5 parent: 2 type: Transform - - uid: 3294 + - uid: 3518 components: - pos: -14.5,26.5 parent: 2 type: Transform - - uid: 3295 + - uid: 3519 components: - pos: 10.5,-13.5 parent: 2 type: Transform - - uid: 3296 + - uid: 3520 components: - pos: 10.5,-14.5 parent: 2 type: Transform - - uid: 3297 + - uid: 3521 components: - pos: 10.5,-15.5 parent: 2 type: Transform - - uid: 3298 + - uid: 3522 components: - pos: 11.5,-15.5 parent: 2 type: Transform - - uid: 3299 + - uid: 3523 components: - pos: 12.5,-15.5 parent: 2 type: Transform - - uid: 3300 + - uid: 3524 components: - pos: 10.5,-16.5 parent: 2 type: Transform - - uid: 3301 + - uid: 3525 components: - pos: 10.5,-17.5 parent: 2 type: Transform - - uid: 3302 + - uid: 3526 components: - pos: 10.5,-18.5 parent: 2 type: Transform - - uid: 3303 + - uid: 3527 components: - pos: 10.5,-19.5 parent: 2 type: Transform - - uid: 3304 + - uid: 3528 components: - pos: 11.5,-19.5 parent: 2 type: Transform - - uid: 3305 + - uid: 3529 components: - pos: 12.5,-19.5 parent: 2 type: Transform - - uid: 3306 + - uid: 3530 components: - pos: 13.5,-19.5 parent: 2 type: Transform - - uid: 3307 + - uid: 3531 components: - pos: 14.5,-19.5 parent: 2 type: Transform - - uid: 3308 + - uid: 3532 components: - pos: 15.5,-19.5 parent: 2 type: Transform - - uid: 3309 + - uid: 3533 components: - pos: 16.5,-19.5 parent: 2 type: Transform - - uid: 3310 + - uid: 3534 components: - pos: 17.5,-19.5 parent: 2 type: Transform - - uid: 3311 + - uid: 3535 components: - pos: 18.5,-19.5 parent: 2 type: Transform - - uid: 3312 + - uid: 3536 components: - pos: 19.5,-19.5 parent: 2 type: Transform - - uid: 3313 + - uid: 3537 components: - pos: 20.5,-19.5 parent: 2 type: Transform - - uid: 3314 + - uid: 3538 components: - pos: 21.5,-19.5 parent: 2 type: Transform - - uid: 3315 + - uid: 3539 components: - pos: -12.5,19.5 parent: 2 type: Transform - - uid: 3316 + - uid: 3540 components: - pos: -12.5,20.5 parent: 2 type: Transform - - uid: 3317 + - uid: 3541 components: - pos: -12.5,21.5 parent: 2 type: Transform - - uid: 3318 + - uid: 3542 components: - pos: -11.5,13.5 parent: 2 type: Transform - - uid: 3319 + - uid: 3543 components: - pos: -10.5,13.5 parent: 2 type: Transform - - uid: 3320 + - uid: 3544 components: - pos: -10.5,14.5 parent: 2 type: Transform - - uid: 3321 + - uid: 3545 components: - pos: 12.5,21.5 parent: 2 type: Transform - - uid: 3322 + - uid: 3546 components: - pos: 13.5,21.5 parent: 2 type: Transform - - uid: 3323 + - uid: 3547 components: - pos: 14.5,21.5 parent: 2 type: Transform - - uid: 3324 + - uid: 3548 components: - pos: 15.5,21.5 parent: 2 type: Transform - - uid: 3325 + - uid: 3549 components: - pos: 16.5,21.5 parent: 2 type: Transform - - uid: 3326 + - uid: 3550 components: - pos: 16.5,22.5 parent: 2 type: Transform - - uid: 3327 + - uid: 3551 components: - pos: 16.5,23.5 parent: 2 type: Transform - - uid: 3328 + - uid: 3552 components: - pos: 16.5,24.5 parent: 2 type: Transform - - uid: 3329 + - uid: 3553 components: - pos: 17.5,24.5 parent: 2 type: Transform - - uid: 3330 + - uid: 3554 components: - pos: 18.5,24.5 parent: 2 type: Transform - - uid: 3331 + - uid: 3555 components: - pos: 1.5,29.5 parent: 2 type: Transform - - uid: 3332 + - uid: 3556 components: - pos: 3.5,7.5 parent: 2 type: Transform - - uid: 3333 + - uid: 3557 components: - pos: -9.5,18.5 parent: 2 type: Transform - - uid: 3334 + - uid: 3558 components: - pos: -8.5,18.5 parent: 2 type: Transform - - uid: 3335 + - uid: 3559 components: - pos: -11.5,18.5 parent: 2 type: Transform - - uid: 3336 + - uid: 3560 components: - pos: -4.5,45.5 parent: 2 type: Transform - - uid: 3337 + - uid: 3561 components: - pos: -10.5,18.5 parent: 2 type: Transform - - uid: 3338 + - uid: 3562 components: - pos: 9.5,22.5 parent: 2 type: Transform - - uid: 3339 + - uid: 3563 components: - pos: 7.5,25.5 parent: 2 type: Transform - - uid: 3340 + - uid: 3564 components: - pos: 7.5,22.5 parent: 2 type: Transform - - uid: 3341 + - uid: 3565 components: - pos: 11.5,-8.5 parent: 2 type: Transform - - uid: 3342 + - uid: 3566 components: - pos: -14.5,27.5 parent: 2 type: Transform - - uid: 3343 + - uid: 3567 components: - pos: -14.5,28.5 parent: 2 type: Transform - - uid: 3344 + - uid: 3568 components: - pos: -5.5,31.5 parent: 2 type: Transform - - uid: 3345 + - uid: 3569 components: - pos: -8.5,31.5 parent: 2 type: Transform - - uid: 3346 + - uid: 3570 components: - pos: -8.5,30.5 parent: 2 type: Transform - - uid: 3347 + - uid: 3571 components: - pos: -6.5,31.5 parent: 2 type: Transform - - uid: 3348 + - uid: 3572 components: - pos: 15.5,13.5 parent: 2 type: Transform - - uid: 3349 + - uid: 3573 components: - pos: 16.5,13.5 parent: 2 type: Transform - - uid: 3350 + - uid: 3574 components: - pos: 17.5,13.5 parent: 2 type: Transform - - uid: 3351 + - uid: 3575 components: - pos: 18.5,13.5 parent: 2 type: Transform - - uid: 3352 + - uid: 3576 components: - pos: 19.5,13.5 parent: 2 type: Transform - - uid: 3353 + - uid: 3577 components: - pos: 20.5,13.5 parent: 2 type: Transform - - uid: 3354 + - uid: 3578 components: - pos: 21.5,13.5 parent: 2 type: Transform - - uid: 3355 + - uid: 3579 components: - pos: 21.5,12.5 parent: 2 type: Transform - - uid: 3356 + - uid: 3580 components: - pos: 21.5,11.5 parent: 2 type: Transform - - uid: 3357 + - uid: 3581 components: - pos: 7.5,23.5 parent: 2 type: Transform - - uid: 3358 + - uid: 3582 components: - pos: 7.5,24.5 parent: 2 type: Transform - - uid: 3359 + - uid: 3583 components: - pos: -6.5,43.5 parent: 2 type: Transform - - uid: 3360 + - uid: 3584 components: - pos: -6.5,40.5 parent: 2 type: Transform - - uid: 3361 + - uid: 3585 components: - pos: 1.5,28.5 parent: 2 type: Transform - - uid: 3362 + - uid: 3586 components: - pos: 11.5,-11.5 parent: 2 type: Transform - - uid: 3363 + - uid: 3587 components: - pos: 10.5,-11.5 parent: 2 type: Transform - - uid: 3364 + - uid: 3588 components: - pos: -5.5,22.5 parent: 2 type: Transform - - uid: 3365 + - uid: 3589 components: - pos: -5.5,23.5 parent: 2 type: Transform - - uid: 3366 + - uid: 3590 components: - pos: 17.5,25.5 parent: 2 type: Transform - - uid: 3367 + - uid: 3591 components: - pos: 17.5,26.5 parent: 2 type: Transform - - uid: 3368 + - uid: 3592 components: - pos: 17.5,27.5 parent: 2 type: Transform - - uid: 3369 + - uid: 3593 components: - pos: 17.5,28.5 parent: 2 type: Transform - - uid: 3370 + - uid: 3594 components: - pos: 16.5,28.5 parent: 2 type: Transform - - uid: 3371 + - uid: 3595 components: - pos: 15.5,28.5 parent: 2 type: Transform - - uid: 3372 + - uid: 3596 components: - pos: 14.5,28.5 parent: 2 type: Transform - - uid: 3373 + - uid: 3597 components: - pos: 13.5,28.5 parent: 2 type: Transform - - uid: 3374 + - uid: 3598 components: - pos: 7.5,26.5 parent: 2 type: Transform - - uid: 3375 + - uid: 3599 components: - pos: 7.5,27.5 parent: 2 type: Transform - - uid: 3376 + - uid: 3600 components: - pos: -6.5,39.5 parent: 2 type: Transform - - uid: 3377 + - uid: 3601 components: - pos: -18.5,-6.5 parent: 2 type: Transform - - uid: 3378 + - uid: 3602 components: - pos: -17.5,-3.5 parent: 2 type: Transform - - uid: 3379 + - uid: 3603 components: - pos: -18.5,-4.5 parent: 2 type: Transform - - uid: 3380 + - uid: 3604 components: - pos: -6.5,41.5 parent: 2 type: Transform - - uid: 3381 + - uid: 3605 components: - pos: -18.5,-5.5 parent: 2 type: Transform - - uid: 3382 + - uid: 3606 components: - pos: -22.5,-0.5 parent: 2 type: Transform - - uid: 3383 + - uid: 3607 components: - pos: -22.5,-1.5 parent: 2 type: Transform - - uid: 3384 + - uid: 3608 components: - pos: -22.5,-2.5 parent: 2 type: Transform - - uid: 3385 + - uid: 3609 components: - pos: -22.5,-3.5 parent: 2 type: Transform - - uid: 3386 + - uid: 3610 components: - pos: -21.5,-3.5 parent: 2 type: Transform - - uid: 3387 + - uid: 3611 components: - pos: -20.5,-3.5 parent: 2 type: Transform - - uid: 3388 + - uid: 3612 components: - pos: -19.5,-3.5 parent: 2 type: Transform - - uid: 3389 + - uid: 3613 components: - pos: -18.5,-3.5 parent: 2 type: Transform - - uid: 3390 + - uid: 3614 components: - pos: -16.5,-3.5 parent: 2 type: Transform - - uid: 3391 + - uid: 3615 components: - pos: -16.5,-2.5 parent: 2 type: Transform - - uid: 3392 + - uid: 3616 components: - pos: -16.5,-1.5 parent: 2 type: Transform - - uid: 3393 + - uid: 3617 components: - pos: -16.5,-0.5 parent: 2 type: Transform - - uid: 3394 + - uid: 3618 components: - pos: -16.5,0.5 parent: 2 type: Transform - - uid: 3395 + - uid: 3619 components: - pos: -16.5,1.5 parent: 2 type: Transform - - uid: 3396 + - uid: 3620 components: - pos: -15.5,1.5 parent: 2 type: Transform - - uid: 3397 + - uid: 3621 components: - pos: -14.5,1.5 parent: 2 type: Transform - - uid: 3398 + - uid: 3622 components: - pos: -16.5,2.5 parent: 2 type: Transform - - uid: 3399 + - uid: 3623 components: - pos: -16.5,3.5 parent: 2 type: Transform - - uid: 3400 + - uid: 3624 components: - pos: -16.5,4.5 parent: 2 type: Transform - - uid: 3401 + - uid: 3625 components: - pos: -16.5,5.5 parent: 2 type: Transform - - uid: 3402 + - uid: 3626 components: - pos: -16.5,6.5 parent: 2 type: Transform - - uid: 3403 + - uid: 3627 components: - pos: -16.5,7.5 parent: 2 type: Transform - - uid: 3404 + - uid: 3628 components: - pos: -6.5,42.5 parent: 2 type: Transform - - uid: 3405 + - uid: 3629 components: - pos: -5.5,45.5 parent: 2 type: Transform - - uid: 3406 + - uid: 3630 components: - pos: -6.5,45.5 parent: 2 type: Transform - - uid: 3407 + - uid: 3631 components: - pos: 15.5,14.5 parent: 2 type: Transform - - uid: 3408 + - uid: 3632 components: - pos: 15.5,15.5 parent: 2 type: Transform - - uid: 3409 + - uid: 3633 components: - pos: 15.5,16.5 parent: 2 type: Transform - - uid: 3410 + - uid: 3634 components: - pos: 15.5,17.5 parent: 2 type: Transform - - uid: 3411 + - uid: 3635 components: - pos: 16.5,17.5 parent: 2 type: Transform - - uid: 3412 + - uid: 3636 components: - pos: 16.5,18.5 parent: 2 type: Transform - - uid: 3413 + - uid: 3637 components: - pos: 16.5,19.5 parent: 2 type: Transform - - uid: 3414 + - uid: 3638 components: - pos: 14.5,17.5 parent: 2 type: Transform - - uid: 3415 + - uid: 3639 components: - pos: 13.5,17.5 parent: 2 type: Transform - - uid: 3416 + - uid: 3640 components: - pos: 12.5,17.5 parent: 2 type: Transform - - uid: 3417 + - uid: 3641 components: - pos: 2.5,14.5 parent: 2 type: Transform - - uid: 3418 + - uid: 3642 components: - pos: 2.5,15.5 parent: 2 type: Transform - - uid: 3419 + - uid: 3643 components: - pos: 2.5,16.5 parent: 2 type: Transform - - uid: 3420 + - uid: 3644 components: - pos: 1.5,16.5 parent: 2 type: Transform - - uid: 3421 + - uid: 3645 components: - pos: 0.5,16.5 parent: 2 type: Transform - - uid: 3422 + - uid: 3646 components: - pos: 0.5,17.5 parent: 2 type: Transform - - uid: 3423 + - uid: 3647 components: - pos: 0.5,18.5 parent: 2 type: Transform - - uid: 3424 + - uid: 3648 components: - pos: -0.5,30.5 parent: 2 type: Transform - - uid: 3425 + - uid: 3649 components: - pos: -14.5,23.5 parent: 2 type: Transform - - uid: 3426 + - uid: 3650 components: - pos: -16.5,-12.5 parent: 2 type: Transform - - uid: 3427 + - uid: 3651 components: - pos: -17.5,-12.5 parent: 2 type: Transform - - uid: 3428 + - uid: 3652 components: - pos: -18.5,-12.5 parent: 2 type: Transform - - uid: 3429 + - uid: 3653 components: - pos: -19.5,-12.5 parent: 2 type: Transform - - uid: 3430 + - uid: 3654 components: - pos: -19.5,-13.5 parent: 2 type: Transform - - uid: 3431 + - uid: 3655 components: - pos: -19.5,-14.5 parent: 2 type: Transform - - uid: 3432 + - uid: 3656 components: - pos: -20.5,-14.5 parent: 2 type: Transform - - uid: 3433 + - uid: 3657 components: - pos: -21.5,-14.5 parent: 2 type: Transform - - uid: 3434 + - uid: 3658 components: - pos: -14.5,22.5 parent: 2 type: Transform - - uid: 3435 + - uid: 3659 components: - pos: -14.5,21.5 parent: 2 type: Transform - - uid: 3436 + - uid: 3660 components: - pos: -14.5,20.5 parent: 2 type: Transform - - uid: 3437 + - uid: 3661 components: - pos: -13.5,20.5 parent: 2 type: Transform - - uid: 3438 + - uid: 3662 components: - pos: -3.5,45.5 parent: 2 type: Transform - - uid: 3439 + - uid: 3663 components: - pos: -5.5,24.5 parent: 2 type: Transform - - uid: 3440 + - uid: 3664 components: - pos: 2.5,29.5 parent: 2 type: Transform - - uid: 3441 + - uid: 3665 components: - pos: -18.5,-7.5 parent: 2 type: Transform - - uid: 3442 + - uid: 3666 components: - pos: -17.5,-7.5 parent: 2 type: Transform - - uid: 3443 + - uid: 3667 components: - pos: -16.5,-7.5 parent: 2 type: Transform - - uid: 3444 + - uid: 3668 components: - pos: -16.5,-8.5 parent: 2 type: Transform - - uid: 3445 + - uid: 3669 components: - pos: -16.5,-9.5 parent: 2 type: Transform - - uid: 3446 + - uid: 3670 components: - pos: -30.5,28.5 parent: 2 type: Transform - - uid: 3447 + - uid: 3671 components: - pos: -30.5,29.5 parent: 2 type: Transform - - uid: 3448 + - uid: 3672 components: - pos: -29.5,29.5 parent: 2 type: Transform - - uid: 3449 + - uid: 3673 components: - pos: -28.5,29.5 parent: 2 type: Transform - - uid: 3450 + - uid: 3674 components: - pos: -27.5,29.5 parent: 2 type: Transform - - uid: 3451 + - uid: 3675 components: - pos: -27.5,28.5 parent: 2 type: Transform - - uid: 3452 + - uid: 3676 components: - pos: -27.5,27.5 parent: 2 type: Transform - - uid: 3453 + - uid: 3677 components: - pos: -27.5,26.5 parent: 2 type: Transform - - uid: 3454 + - uid: 3678 components: - pos: -27.5,25.5 parent: 2 type: Transform - - uid: 3455 + - uid: 3679 components: - pos: -7.5,39.5 parent: 2 type: Transform - - uid: 3456 + - uid: 3680 components: - pos: -7.5,38.5 parent: 2 type: Transform - - uid: 3457 + - uid: 3681 components: - pos: -7.5,37.5 parent: 2 type: Transform - - uid: 3458 + - uid: 3682 components: - pos: -7.5,36.5 parent: 2 type: Transform - - uid: 3459 + - uid: 3683 components: - pos: -7.5,35.5 parent: 2 type: Transform - - uid: 3460 + - uid: 3684 components: - pos: -7.5,34.5 parent: 2 type: Transform - - uid: 3461 + - uid: 3685 components: - pos: -7.5,33.5 parent: 2 type: Transform - - uid: 3462 + - uid: 3686 components: - pos: -7.5,32.5 parent: 2 type: Transform - - uid: 3463 + - uid: 3687 components: - pos: -7.5,31.5 parent: 2 type: Transform - - uid: 3464 + - uid: 3688 components: - pos: 3.5,29.5 parent: 2 type: Transform - - uid: 3465 + - uid: 3689 components: - pos: 3.5,28.5 parent: 2 type: Transform - - uid: 3466 + - uid: 3690 components: - pos: -4.5,22.5 parent: 2 type: Transform - - uid: 3467 + - uid: 3691 components: - pos: -3.5,22.5 parent: 2 type: Transform - - uid: 3468 + - uid: 3692 components: - pos: -4.5,24.5 parent: 2 type: Transform - - uid: 3469 + - uid: 3693 components: - pos: -3.5,24.5 parent: 2 type: Transform - - uid: 3470 + - uid: 3694 components: - pos: -2.5,24.5 parent: 2 type: Transform - - uid: 3471 + - uid: 3695 components: - pos: -1.5,24.5 parent: 2 type: Transform - - uid: 3472 + - uid: 3696 components: - pos: -1.5,25.5 parent: 2 type: Transform - - uid: 3473 + - uid: 3697 components: - pos: -1.5,26.5 parent: 2 type: Transform - - uid: 3474 + - uid: 3698 components: - pos: -1.5,27.5 parent: 2 type: Transform - - uid: 3475 + - uid: 3699 components: - pos: -1.5,28.5 parent: 2 type: Transform - - uid: 3476 + - uid: 3700 components: - pos: -1.5,29.5 parent: 2 type: Transform - - uid: 3477 + - uid: 3701 components: - pos: -1.5,30.5 parent: 2 type: Transform - - uid: 3478 + - uid: 3702 components: - pos: -1.5,31.5 parent: 2 type: Transform - - uid: 3479 + - uid: 3703 components: - pos: -2.5,31.5 parent: 2 type: Transform - - uid: 3480 + - uid: 3704 components: - pos: -3.5,31.5 parent: 2 type: Transform - - uid: 3481 + - uid: 3705 components: - pos: -4.5,31.5 parent: 2 type: Transform - - uid: 3482 + - uid: 3706 components: - pos: 20.5,-5.5 parent: 2 type: Transform - - uid: 3483 + - uid: 3707 components: - pos: 20.5,-6.5 parent: 2 type: Transform - - uid: 3484 + - uid: 3708 components: - pos: 5.5,29.5 parent: 2 type: Transform - - uid: 3485 + - uid: 3709 components: - pos: 20.5,-2.5 parent: 2 type: Transform - - uid: 3486 + - uid: 3710 components: - pos: 20.5,-1.5 parent: 2 type: Transform - - uid: 3487 + - uid: 3711 components: - pos: 4.5,29.5 parent: 2 type: Transform - - uid: 3488 + - uid: 3712 components: - pos: 6.5,29.5 parent: 2 type: Transform - - uid: 3489 + - uid: 3713 components: - pos: 20.5,-4.5 parent: 2 type: Transform - - uid: 3490 + - uid: 3714 components: - pos: 7.5,29.5 parent: 2 type: Transform - - uid: 3491 + - uid: 3715 components: - pos: 20.5,-3.5 parent: 2 type: Transform - proto: CableMVStack entities: - - uid: 3492 + - uid: 3716 components: - pos: 0.43054587,40.730034 parent: 2 type: Transform - - uid: 3493 + - uid: 3717 components: - pos: 0.3784625,40.625793 parent: 2 type: Transform - - uid: 3494 + - uid: 3718 components: - pos: 0.30554587,40.500706 parent: 2 type: Transform - - uid: 3495 + - uid: 3719 components: - pos: -29.500584,24.721727 parent: 2 type: Transform - - uid: 3496 + - uid: 3720 components: - pos: -4.363492,36.379696 parent: 2 type: Transform - proto: CableTerminal entities: - - uid: 3497 + - uid: 3721 components: - pos: 14.5,20.5 parent: 2 type: Transform - - uid: 3498 + - uid: 3722 components: - pos: 15.5,20.5 parent: 2 type: Transform - - uid: 3499 + - uid: 3723 components: - pos: 13.5,20.5 parent: 2 type: Transform - - uid: 3500 + - uid: 3724 components: - pos: -20.5,28.5 parent: 2 type: Transform - - uid: 3501 + - uid: 3725 components: - rot: -1.5707963267948966 rad pos: 37.5,17.5 @@ -23348,20 +24463,20 @@ entities: type: Transform - proto: CandyBowl entities: - - uid: 3502 + - uid: 3726 components: - pos: -15.615145,10.495199 parent: 2 type: Transform - proto: Carpet entities: - - uid: 3503 + - uid: 3727 components: - rot: -1.5707963267948966 rad pos: 25.5,-20.5 parent: 2 type: Transform - - uid: 3504 + - uid: 3728 components: - rot: -1.5707963267948966 rad pos: 24.5,-20.5 @@ -23369,137 +24484,137 @@ entities: type: Transform - proto: CarpetBlack entities: - - uid: 3505 + - uid: 3729 components: - pos: -27.5,-23.5 parent: 2 type: Transform - - uid: 3506 + - uid: 3730 components: - pos: -27.5,-24.5 parent: 2 type: Transform - - uid: 3507 + - uid: 3731 components: - pos: -28.5,-24.5 parent: 2 type: Transform - - uid: 3508 + - uid: 3732 components: - pos: -26.5,-23.5 parent: 2 type: Transform - - uid: 3509 + - uid: 3733 components: - pos: -28.5,-23.5 parent: 2 type: Transform - - uid: 3510 + - uid: 3734 components: - pos: -12.5,-31.5 parent: 2 type: Transform - - uid: 3511 + - uid: 3735 components: - pos: -12.5,-30.5 parent: 2 type: Transform - - uid: 3512 + - uid: 3736 components: - pos: -12.5,-29.5 parent: 2 type: Transform - - uid: 3513 + - uid: 3737 components: - pos: -11.5,-31.5 parent: 2 type: Transform - - uid: 3514 + - uid: 3738 components: - pos: -11.5,-30.5 parent: 2 type: Transform - - uid: 3515 + - uid: 3739 components: - pos: -11.5,-29.5 parent: 2 type: Transform - - uid: 3516 + - uid: 3740 components: - pos: -9.5,-11.5 parent: 2 type: Transform - - uid: 3517 + - uid: 3741 components: - pos: -8.5,-11.5 parent: 2 type: Transform - - uid: 3518 + - uid: 3742 components: - pos: -7.5,-11.5 parent: 2 type: Transform - - uid: 3519 + - uid: 3743 components: - pos: 17.5,-6.5 parent: 2 type: Transform - - uid: 3520 + - uid: 3744 components: - pos: 17.5,-5.5 parent: 2 type: Transform - - uid: 3521 + - uid: 3745 components: - pos: -26.5,-24.5 parent: 2 type: Transform - proto: CarpetBlue entities: - - uid: 3522 + - uid: 3746 components: - pos: 12.5,-5.5 parent: 2 type: Transform - - uid: 3523 + - uid: 3747 components: - pos: 11.5,-5.5 parent: 2 type: Transform - - uid: 3524 + - uid: 3748 components: - pos: -23.5,21.5 parent: 2 type: Transform - - uid: 3525 + - uid: 3749 components: - pos: -22.5,21.5 parent: 2 type: Transform - - uid: 3526 + - uid: 3750 components: - pos: -21.5,21.5 parent: 2 type: Transform - - uid: 3527 + - uid: 3751 components: - rot: -1.5707963267948966 rad pos: 6.5,-5.5 parent: 2 type: Transform - - uid: 3528 + - uid: 3752 components: - rot: -1.5707963267948966 rad pos: 6.5,-4.5 parent: 2 type: Transform - - uid: 3529 + - uid: 3753 components: - rot: -1.5707963267948966 rad pos: 7.5,-5.5 parent: 2 type: Transform - - uid: 3530 + - uid: 3754 components: - rot: -1.5707963267948966 rad pos: 7.5,-4.5 @@ -23507,2985 +24622,2985 @@ entities: type: Transform - proto: CarpetChapel entities: - - uid: 3531 + - uid: 3755 components: - pos: -9.5,16.5 parent: 2 type: Transform - - uid: 3532 + - uid: 3756 components: - rot: 1.5707963267948966 rad pos: -4.5,16.5 parent: 2 type: Transform - - uid: 3533 + - uid: 3757 components: - rot: -1.5707963267948966 rad pos: -9.5,17.5 parent: 2 type: Transform - - uid: 3534 + - uid: 3758 components: - rot: 1.5707963267948966 rad pos: -8.5,16.5 parent: 2 type: Transform - - uid: 3535 + - uid: 3759 components: - rot: 3.141592653589793 rad pos: -8.5,17.5 parent: 2 type: Transform - - uid: 3536 + - uid: 3760 components: - rot: 3.141592653589793 rad pos: -4.5,17.5 parent: 2 type: Transform - - uid: 3537 + - uid: 3761 components: - rot: -1.5707963267948966 rad pos: -5.5,17.5 parent: 2 type: Transform - - uid: 3538 + - uid: 3762 components: - pos: -5.5,16.5 parent: 2 type: Transform - proto: CarpetGreen entities: - - uid: 3539 + - uid: 3763 components: - pos: -28.5,-19.5 parent: 2 type: Transform - - uid: 3540 + - uid: 3764 components: - pos: -27.5,-19.5 parent: 2 type: Transform - - uid: 3541 + - uid: 3765 components: - pos: -27.5,-20.5 parent: 2 type: Transform - - uid: 3542 + - uid: 3766 components: - pos: -28.5,-20.5 parent: 2 type: Transform - proto: CarpetOrange entities: - - uid: 3543 + - uid: 3767 components: - pos: 24.5,13.5 parent: 2 type: Transform - - uid: 3544 + - uid: 3768 components: - pos: 23.5,13.5 parent: 2 type: Transform - - uid: 3545 + - uid: 3769 components: - pos: 26.5,13.5 parent: 2 type: Transform - - uid: 3546 + - uid: 3770 components: - pos: 25.5,13.5 parent: 2 type: Transform - proto: CarpetSBlue entities: - - uid: 3547 + - uid: 3771 components: - pos: -25.5,-27.5 parent: 2 type: Transform - - uid: 3548 + - uid: 3772 components: - pos: -24.5,-26.5 parent: 2 type: Transform - - uid: 3549 + - uid: 3773 components: - pos: -25.5,-26.5 parent: 2 type: Transform - - uid: 3550 + - uid: 3774 components: - pos: -23.5,-27.5 parent: 2 type: Transform - - uid: 3551 + - uid: 3775 components: - pos: -24.5,-27.5 parent: 2 type: Transform - - uid: 3552 + - uid: 3776 components: - pos: -23.5,-26.5 parent: 2 type: Transform - proto: Catwalk entities: - - uid: 3553 + - uid: 3777 components: - rot: 1.5707963267948966 rad pos: 31.5,-13.5 parent: 2 type: Transform - - uid: 3554 + - uid: 3778 components: - rot: 1.5707963267948966 rad pos: 30.5,-12.5 parent: 2 type: Transform - - uid: 3555 + - uid: 3779 components: - rot: 1.5707963267948966 rad pos: 32.5,-12.5 parent: 2 type: Transform - - uid: 3556 + - uid: 3780 components: - rot: 1.5707963267948966 rad pos: 31.5,-12.5 parent: 2 type: Transform - - uid: 3557 + - uid: 3781 components: - rot: 1.5707963267948966 rad pos: 31.5,-8.5 parent: 2 type: Transform - - uid: 3558 + - uid: 3782 components: - rot: 1.5707963267948966 rad pos: 31.5,-9.5 parent: 2 type: Transform - - uid: 3559 + - uid: 3783 components: - rot: 1.5707963267948966 rad pos: 31.5,-11.5 parent: 2 type: Transform - - uid: 3560 + - uid: 3784 components: - rot: 1.5707963267948966 rad pos: 30.5,-8.5 parent: 2 type: Transform - - uid: 3561 + - uid: 3785 components: - rot: 1.5707963267948966 rad pos: 31.5,-10.5 parent: 2 type: Transform - - uid: 3562 + - uid: 3786 components: - rot: -1.5707963267948966 rad pos: -17.5,-24.5 parent: 2 type: Transform - - uid: 3563 + - uid: 3787 components: - rot: 3.141592653589793 rad pos: 11.5,32.5 parent: 2 type: Transform - - uid: 3564 + - uid: 3788 components: - rot: 3.141592653589793 rad pos: 11.5,33.5 parent: 2 type: Transform - - uid: 3565 + - uid: 3789 components: - pos: -2.5,-15.5 parent: 2 type: Transform - - uid: 3566 + - uid: 3790 components: - pos: -6.5,-15.5 parent: 2 type: Transform - - uid: 3567 + - uid: 3791 components: - pos: -3.5,-15.5 parent: 2 type: Transform - - uid: 3568 + - uid: 3792 components: - pos: -4.5,-15.5 parent: 2 type: Transform - - uid: 3569 + - uid: 3793 components: - pos: -8.5,-15.5 parent: 2 type: Transform - - uid: 3570 + - uid: 3794 components: - pos: -7.5,-14.5 parent: 2 type: Transform - - uid: 3571 + - uid: 3795 components: - pos: -7.5,-15.5 parent: 2 type: Transform - - uid: 3572 + - uid: 3796 components: - pos: -9.5,-15.5 parent: 2 type: Transform - - uid: 3573 + - uid: 3797 components: - pos: -17.5,1.5 parent: 2 type: Transform - - uid: 3574 + - uid: 3798 components: - pos: -18.5,1.5 parent: 2 type: Transform - - uid: 3575 + - uid: 3799 components: - pos: -16.5,0.5 parent: 2 type: Transform - - uid: 3576 + - uid: 3800 components: - pos: -15.5,24.5 parent: 2 type: Transform - - uid: 3577 + - uid: 3801 components: - pos: -14.5,24.5 parent: 2 type: Transform - - uid: 3578 + - uid: 3802 components: - pos: -15.5,-0.5 parent: 2 type: Transform - - uid: 3579 + - uid: 3803 components: - pos: -16.5,1.5 parent: 2 type: Transform - - uid: 3580 + - uid: 3804 components: - pos: -19.5,24.5 parent: 2 type: Transform - - uid: 3581 + - uid: 3805 components: - pos: -9.5,6.5 parent: 2 type: Transform - - uid: 3582 + - uid: 3806 components: - pos: -20.5,1.5 parent: 2 type: Transform - - uid: 3583 + - uid: 3807 components: - pos: -19.5,1.5 parent: 2 type: Transform - - uid: 3584 + - uid: 3808 components: - pos: -21.5,1.5 parent: 2 type: Transform - - uid: 3585 + - uid: 3809 components: - pos: -14.5,-0.5 parent: 2 type: Transform - - uid: 3586 + - uid: 3810 components: - pos: -14.5,25.5 parent: 2 type: Transform - - uid: 3587 + - uid: 3811 components: - pos: -9.5,1.5 parent: 2 type: Transform - - uid: 3588 + - uid: 3812 components: - pos: -9.5,4.5 parent: 2 type: Transform - - uid: 3589 + - uid: 3813 components: - pos: 7.5,23.5 parent: 2 type: Transform - - uid: 3590 + - uid: 3814 components: - pos: -16.5,-0.5 parent: 2 type: Transform - - uid: 3591 + - uid: 3815 components: - pos: -9.5,5.5 parent: 2 type: Transform - - uid: 3592 + - uid: 3816 components: - pos: -9.5,3.5 parent: 2 type: Transform - - uid: 3593 + - uid: 3817 components: - pos: -9.5,2.5 parent: 2 type: Transform - - uid: 3594 + - uid: 3818 components: - pos: -9.5,0.5 parent: 2 type: Transform - - uid: 3595 + - uid: 3819 components: - pos: -5.5,-15.5 parent: 2 type: Transform - - uid: 3596 + - uid: 3820 components: - pos: -1.5,-15.5 parent: 2 type: Transform - - uid: 3597 + - uid: 3821 components: - pos: -0.5,-15.5 parent: 2 type: Transform - - uid: 3598 + - uid: 3822 components: - pos: 0.5,-15.5 parent: 2 type: Transform - - uid: 3599 + - uid: 3823 components: - pos: 1.5,-15.5 parent: 2 type: Transform - - uid: 3600 + - uid: 3824 components: - pos: 7.5,26.5 parent: 2 type: Transform - - uid: 3601 + - uid: 3825 components: - pos: -20.5,61.5 parent: 2 type: Transform - - uid: 3602 + - uid: 3826 components: - pos: -20.5,63.5 parent: 2 type: Transform - - uid: 3603 + - uid: 3827 components: - pos: -15.5,53.5 parent: 2 type: Transform - - uid: 3604 + - uid: 3828 components: - pos: -16.5,53.5 parent: 2 type: Transform - - uid: 3605 + - uid: 3829 components: - pos: -23.5,53.5 parent: 2 type: Transform - - uid: 3606 + - uid: 3830 components: - pos: -22.5,53.5 parent: 2 type: Transform - - uid: 3607 + - uid: 3831 components: - pos: -25.5,53.5 parent: 2 type: Transform - - uid: 3608 + - uid: 3832 components: - pos: -26.5,53.5 parent: 2 type: Transform - - uid: 3609 + - uid: 3833 components: - pos: -21.5,60.5 parent: 2 type: Transform - - uid: 3610 + - uid: 3834 components: - pos: -26.5,60.5 parent: 2 type: Transform - - uid: 3611 + - uid: 3835 components: - pos: 7.5,25.5 parent: 2 type: Transform - - uid: 3612 + - uid: 3836 components: - pos: 7.5,24.5 parent: 2 type: Transform - - uid: 3613 + - uid: 3837 components: - rot: 3.141592653589793 rad pos: 10.5,23.5 parent: 2 type: Transform - - uid: 3614 + - uid: 3838 components: - pos: -23.5,60.5 parent: 2 type: Transform - - uid: 3615 + - uid: 3839 components: - pos: 24.5,20.5 parent: 2 type: Transform - - uid: 3616 + - uid: 3840 components: - pos: 24.5,24.5 parent: 2 type: Transform - - uid: 3617 + - uid: 3841 components: - pos: 16.5,-10.5 parent: 2 type: Transform - - uid: 3618 + - uid: 3842 components: - pos: 14.5,-10.5 parent: 2 type: Transform - - uid: 3619 + - uid: 3843 components: - pos: 14.5,-8.5 parent: 2 type: Transform - - uid: 3620 + - uid: 3844 components: - pos: 12.5,-8.5 parent: 2 type: Transform - - uid: 3621 + - uid: 3845 components: - pos: 9.5,-8.5 parent: 2 type: Transform - - uid: 3622 + - uid: 3846 components: - pos: 8.5,-8.5 parent: 2 type: Transform - - uid: 3623 + - uid: 3847 components: - pos: 7.5,-8.5 parent: 2 type: Transform - - uid: 3624 + - uid: 3848 components: - pos: 20.5,-10.5 parent: 2 type: Transform - - uid: 3625 + - uid: 3849 components: - pos: 10.5,-8.5 parent: 2 type: Transform - - uid: 3626 + - uid: 3850 components: - pos: 13.5,-8.5 parent: 2 type: Transform - - uid: 3627 + - uid: 3851 components: - pos: 14.5,-9.5 parent: 2 type: Transform - - uid: 3628 + - uid: 3852 components: - pos: 15.5,-10.5 parent: 2 type: Transform - - uid: 3629 + - uid: 3853 components: - pos: 17.5,-10.5 parent: 2 type: Transform - - uid: 3630 + - uid: 3854 components: - pos: 19.5,-10.5 parent: 2 type: Transform - - uid: 3631 + - uid: 3855 components: - rot: 3.141592653589793 rad pos: 9.5,23.5 parent: 2 type: Transform - - uid: 3632 + - uid: 3856 components: - pos: -27.5,53.5 parent: 2 type: Transform - - uid: 3633 + - uid: 3857 components: - pos: 11.5,-8.5 parent: 2 type: Transform - - uid: 3634 + - uid: 3858 components: - pos: 20.5,-11.5 parent: 2 type: Transform - - uid: 3635 + - uid: 3859 components: - pos: -21.5,53.5 parent: 2 type: Transform - - uid: 3636 + - uid: 3860 components: - pos: -20.5,41.5 parent: 2 type: Transform - - uid: 3637 + - uid: 3861 components: - pos: -20.5,40.5 parent: 2 type: Transform - - uid: 3638 + - uid: 3862 components: - pos: -20.5,39.5 parent: 2 type: Transform - - uid: 3639 + - uid: 3863 components: - pos: -20.5,38.5 parent: 2 type: Transform - - uid: 3640 + - uid: 3864 components: - pos: -20.5,37.5 parent: 2 type: Transform - - uid: 3641 + - uid: 3865 components: - pos: -20.5,36.5 parent: 2 type: Transform - - uid: 3642 + - uid: 3866 components: - pos: -20.5,35.5 parent: 2 type: Transform - - uid: 3643 + - uid: 3867 components: - pos: -18.5,24.5 parent: 2 type: Transform - - uid: 3644 + - uid: 3868 components: - pos: 43.5,23.5 parent: 2 type: Transform - - uid: 3645 + - uid: 3869 components: - pos: 44.5,23.5 parent: 2 type: Transform - - uid: 3646 + - uid: 3870 components: - pos: -12.5,15.5 parent: 2 type: Transform - - uid: 3647 + - uid: 3871 components: - pos: -12.5,16.5 parent: 2 type: Transform - - uid: 3648 + - uid: 3872 components: - pos: -12.5,17.5 parent: 2 type: Transform - - uid: 3649 + - uid: 3873 components: - pos: -12.5,18.5 parent: 2 type: Transform - - uid: 3650 + - uid: 3874 components: - pos: -12.5,20.5 parent: 2 type: Transform - - uid: 3651 + - uid: 3875 components: - pos: -13.5,20.5 parent: 2 type: Transform - - uid: 3652 + - uid: 3876 components: - pos: -18.5,53.5 parent: 2 type: Transform - - uid: 3653 + - uid: 3877 components: - pos: -24.5,53.5 parent: 2 type: Transform - - uid: 3654 + - uid: 3878 components: - pos: -27.5,60.5 parent: 2 type: Transform - - uid: 3655 + - uid: 3879 components: - pos: 13.5,16.5 parent: 2 type: Transform - - uid: 3656 + - uid: 3880 components: - pos: -20.5,56.5 parent: 2 type: Transform - - uid: 3657 + - uid: 3881 components: - pos: 3.5,29.5 parent: 2 type: Transform - - uid: 3658 + - uid: 3882 components: - pos: 14.5,16.5 parent: 2 type: Transform - - uid: 3659 + - uid: 3883 components: - pos: -12.5,19.5 parent: 2 type: Transform - - uid: 3660 + - uid: 3884 components: - pos: 15.5,16.5 parent: 2 type: Transform - - uid: 3661 + - uid: 3885 components: - pos: 15.5,17.5 parent: 2 type: Transform - - uid: 3662 + - uid: 3886 components: - pos: -24.5,60.5 parent: 2 type: Transform - - uid: 3663 + - uid: 3887 components: - pos: 19.5,27.5 parent: 2 type: Transform - - uid: 3664 + - uid: 3888 components: - pos: 19.5,26.5 parent: 2 type: Transform - - uid: 3665 + - uid: 3889 components: - pos: 19.5,25.5 parent: 2 type: Transform - - uid: 3666 + - uid: 3890 components: - pos: 18.5,25.5 parent: 2 type: Transform - - uid: 3667 + - uid: 3891 components: - pos: 17.5,23.5 parent: 2 type: Transform - - uid: 3668 + - uid: 3892 components: - pos: 17.5,24.5 parent: 2 type: Transform - - uid: 3669 + - uid: 3893 components: - pos: 17.5,25.5 parent: 2 type: Transform - - uid: 3670 + - uid: 3894 components: - pos: -20.5,62.5 parent: 2 type: Transform - - uid: 3671 + - uid: 3895 components: - pos: 10.5,15.5 parent: 2 type: Transform - - uid: 3672 + - uid: 3896 components: - pos: 18.5,13.5 parent: 2 type: Transform - - uid: 3673 + - uid: 3897 components: - pos: 19.5,13.5 parent: 2 type: Transform - - uid: 3674 + - uid: 3898 components: - pos: 20.5,13.5 parent: 2 type: Transform - - uid: 3675 + - uid: 3899 components: - pos: 19.5,10.5 parent: 2 type: Transform - - uid: 3676 + - uid: 3900 components: - pos: 17.5,10.5 parent: 2 type: Transform - - uid: 3677 + - uid: 3901 components: - pos: 18.5,10.5 parent: 2 type: Transform - - uid: 3678 + - uid: 3902 components: - pos: 21.5,10.5 parent: 2 type: Transform - - uid: 3679 + - uid: 3903 components: - pos: 20.5,10.5 parent: 2 type: Transform - - uid: 3680 + - uid: 3904 components: - pos: 25.5,17.5 parent: 2 type: Transform - - uid: 3681 + - uid: 3905 components: - pos: -25.5,60.5 parent: 2 type: Transform - - uid: 3682 + - uid: 3906 components: - pos: -19.5,53.5 parent: 2 type: Transform - - uid: 3683 + - uid: 3907 components: - pos: -17.5,53.5 parent: 2 type: Transform - - uid: 3684 + - uid: 3908 components: - pos: -20.5,57.5 parent: 2 type: Transform - - uid: 3685 + - uid: 3909 components: - pos: -11.5,18.5 parent: 2 type: Transform - - uid: 3686 + - uid: 3910 components: - pos: -29.5,32.5 parent: 2 type: Transform - - uid: 3687 + - uid: 3911 components: - pos: -29.5,33.5 parent: 2 type: Transform - - uid: 3688 + - uid: 3912 components: - pos: -29.5,31.5 parent: 2 type: Transform - - uid: 3689 + - uid: 3913 components: - pos: -29.5,30.5 parent: 2 type: Transform - - uid: 3690 + - uid: 3914 components: - pos: -14.5,20.5 parent: 2 type: Transform - - uid: 3691 + - uid: 3915 components: - pos: -14.5,21.5 parent: 2 type: Transform - - uid: 3692 + - uid: 3916 components: - pos: -15.5,60.5 parent: 2 type: Transform - - uid: 3693 + - uid: 3917 components: - pos: -14.5,22.5 parent: 2 type: Transform - - uid: 3694 + - uid: 3918 components: - pos: -14.5,23.5 parent: 2 type: Transform - - uid: 3695 + - uid: 3919 components: - pos: 24.5,23.5 parent: 2 type: Transform - - uid: 3696 + - uid: 3920 components: - pos: -18.5,-29.5 parent: 2 type: Transform - - uid: 3697 + - uid: 3921 components: - pos: -18.5,-26.5 parent: 2 type: Transform - - uid: 3698 + - uid: 3922 components: - pos: -18.5,-30.5 parent: 2 type: Transform - - uid: 3699 + - uid: 3923 components: - pos: -17.5,-40.5 parent: 2 type: Transform - - uid: 3700 + - uid: 3924 components: - pos: -17.5,-39.5 parent: 2 type: Transform - - uid: 3701 + - uid: 3925 components: - pos: -18.5,-31.5 parent: 2 type: Transform - - uid: 3702 + - uid: 3926 components: - pos: -18.5,-28.5 parent: 2 type: Transform - - uid: 3703 + - uid: 3927 components: - pos: -18.5,-27.5 parent: 2 type: Transform - - uid: 3704 + - uid: 3928 components: - pos: -17.5,-33.5 parent: 2 type: Transform - - uid: 3705 + - uid: 3929 components: - pos: -17.5,-34.5 parent: 2 type: Transform - - uid: 3706 + - uid: 3930 components: - pos: -17.5,-36.5 parent: 2 type: Transform - - uid: 3707 + - uid: 3931 components: - pos: -17.5,-35.5 parent: 2 type: Transform - - uid: 3708 + - uid: 3932 components: - pos: -17.5,-38.5 parent: 2 type: Transform - - uid: 3709 + - uid: 3933 components: - pos: 24.5,17.5 parent: 2 type: Transform - - uid: 3710 + - uid: 3934 components: - pos: 26.5,17.5 parent: 2 type: Transform - - uid: 3711 + - uid: 3935 components: - pos: 27.5,17.5 parent: 2 type: Transform - - uid: 3712 + - uid: 3936 components: - pos: 28.5,17.5 parent: 2 type: Transform - - uid: 3713 + - uid: 3937 components: - pos: 29.5,17.5 parent: 2 type: Transform - - uid: 3714 + - uid: 3938 components: - pos: 30.5,17.5 parent: 2 type: Transform - - uid: 3715 + - uid: 3939 components: - pos: 31.5,17.5 parent: 2 type: Transform - - uid: 3716 + - uid: 3940 components: - pos: 31.5,16.5 parent: 2 type: Transform - - uid: 3717 + - uid: 3941 components: - pos: 32.5,16.5 parent: 2 type: Transform - - uid: 3718 + - uid: 3942 components: - pos: 33.5,16.5 parent: 2 type: Transform - - uid: 3719 + - uid: 3943 components: - pos: 31.5,15.5 parent: 2 type: Transform - - uid: 3720 + - uid: 3944 components: - pos: 31.5,14.5 parent: 2 type: Transform - - uid: 3721 + - uid: 3945 components: - pos: 31.5,13.5 parent: 2 type: Transform - - uid: 3722 + - uid: 3946 components: - pos: 31.5,12.5 parent: 2 type: Transform - - uid: 3723 + - uid: 3947 components: - pos: 31.5,11.5 parent: 2 type: Transform - - uid: 3724 + - uid: 3948 components: - pos: 31.5,10.5 parent: 2 type: Transform - - uid: 3725 + - uid: 3949 components: - pos: 29.5,10.5 parent: 2 type: Transform - - uid: 3726 + - uid: 3950 components: - pos: 27.5,10.5 parent: 2 type: Transform - - uid: 3727 + - uid: 3951 components: - pos: 25.5,10.5 parent: 2 type: Transform - - uid: 3728 + - uid: 3952 components: - pos: 23.5,10.5 parent: 2 type: Transform - - uid: 3729 + - uid: 3953 components: - pos: 22.5,20.5 parent: 2 type: Transform - - uid: 3730 + - uid: 3954 components: - pos: -17.5,-37.5 parent: 2 type: Transform - - uid: 3731 + - uid: 3955 components: - pos: 16.5,10.5 parent: 2 type: Transform - - uid: 3732 + - uid: 3956 components: - pos: 16.5,9.5 parent: 2 type: Transform - - uid: 3733 + - uid: 3957 components: - pos: 16.5,8.5 parent: 2 type: Transform - - uid: 3734 + - uid: 3958 components: - pos: 16.5,7.5 parent: 2 type: Transform - - uid: 3735 + - uid: 3959 components: - pos: 16.5,6.5 parent: 2 type: Transform - - uid: 3736 + - uid: 3960 components: - pos: 15.5,6.5 parent: 2 type: Transform - - uid: 3737 + - uid: 3961 components: - pos: 15.5,5.5 parent: 2 type: Transform - - uid: 3738 + - uid: 3962 components: - pos: 15.5,4.5 parent: 2 type: Transform - - uid: 3739 + - uid: 3963 components: - pos: -18.5,-32.5 parent: 2 type: Transform - - uid: 3740 + - uid: 3964 components: - pos: 45.5,23.5 parent: 2 type: Transform - - uid: 3741 + - uid: 3965 components: - pos: 46.5,23.5 parent: 2 type: Transform - - uid: 3742 + - uid: 3966 components: - pos: 47.5,23.5 parent: 2 type: Transform - - uid: 3743 + - uid: 3967 components: - pos: 48.5,23.5 parent: 2 type: Transform - - uid: 3744 + - uid: 3968 components: - pos: 49.5,23.5 parent: 2 type: Transform - - uid: 3745 + - uid: 3969 components: - pos: 50.5,23.5 parent: 2 type: Transform - - uid: 3746 + - uid: 3970 components: - pos: 51.5,23.5 parent: 2 type: Transform - - uid: 3747 + - uid: 3971 components: - pos: 52.5,23.5 parent: 2 type: Transform - - uid: 3748 + - uid: 3972 components: - pos: 53.5,23.5 parent: 2 type: Transform - - uid: 3749 + - uid: 3973 components: - pos: 54.5,23.5 parent: 2 type: Transform - - uid: 3750 + - uid: 3974 components: - pos: 55.5,23.5 parent: 2 type: Transform - - uid: 3751 + - uid: 3975 components: - pos: 56.5,23.5 parent: 2 type: Transform - - uid: 3752 + - uid: 3976 components: - pos: 57.5,23.5 parent: 2 type: Transform - - uid: 3753 + - uid: 3977 components: - pos: 58.5,23.5 parent: 2 type: Transform - - uid: 3754 + - uid: 3978 components: - pos: 56.5,24.5 parent: 2 type: Transform - - uid: 3755 + - uid: 3979 components: - pos: 56.5,25.5 parent: 2 type: Transform - - uid: 3756 + - uid: 3980 components: - pos: 56.5,26.5 parent: 2 type: Transform - - uid: 3757 + - uid: 3981 components: - pos: 56.5,27.5 parent: 2 type: Transform - - uid: 3758 + - uid: 3982 components: - pos: 56.5,28.5 parent: 2 type: Transform - - uid: 3759 + - uid: 3983 components: - pos: 56.5,29.5 parent: 2 type: Transform - - uid: 3760 + - uid: 3984 components: - pos: 56.5,30.5 parent: 2 type: Transform - - uid: 3761 + - uid: 3985 components: - pos: 52.5,24.5 parent: 2 type: Transform - - uid: 3762 + - uid: 3986 components: - pos: 52.5,25.5 parent: 2 type: Transform - - uid: 3763 + - uid: 3987 components: - pos: 52.5,26.5 parent: 2 type: Transform - - uid: 3764 + - uid: 3988 components: - pos: 52.5,27.5 parent: 2 type: Transform - - uid: 3765 + - uid: 3989 components: - pos: 52.5,28.5 parent: 2 type: Transform - - uid: 3766 + - uid: 3990 components: - pos: 52.5,29.5 parent: 2 type: Transform - - uid: 3767 + - uid: 3991 components: - pos: 52.5,30.5 parent: 2 type: Transform - - uid: 3768 + - uid: 3992 components: - pos: 48.5,24.5 parent: 2 type: Transform - - uid: 3769 + - uid: 3993 components: - pos: 48.5,25.5 parent: 2 type: Transform - - uid: 3770 + - uid: 3994 components: - pos: 48.5,26.5 parent: 2 type: Transform - - uid: 3771 + - uid: 3995 components: - pos: 48.5,27.5 parent: 2 type: Transform - - uid: 3772 + - uid: 3996 components: - pos: 48.5,28.5 parent: 2 type: Transform - - uid: 3773 + - uid: 3997 components: - pos: 48.5,29.5 parent: 2 type: Transform - - uid: 3774 + - uid: 3998 components: - pos: 48.5,30.5 parent: 2 type: Transform - - uid: 3775 + - uid: 3999 components: - pos: 44.5,24.5 parent: 2 type: Transform - - uid: 3776 + - uid: 4000 components: - pos: 44.5,25.5 parent: 2 type: Transform - - uid: 3777 + - uid: 4001 components: - pos: 44.5,26.5 parent: 2 type: Transform - - uid: 3778 + - uid: 4002 components: - pos: 44.5,27.5 parent: 2 type: Transform - - uid: 3779 + - uid: 4003 components: - pos: 44.5,28.5 parent: 2 type: Transform - - uid: 3780 + - uid: 4004 components: - pos: 44.5,29.5 parent: 2 type: Transform - - uid: 3781 + - uid: 4005 components: - pos: 44.5,30.5 parent: 2 type: Transform - - uid: 3782 + - uid: 4006 components: - pos: 45.5,22.5 parent: 2 type: Transform - - uid: 3783 + - uid: 4007 components: - pos: 45.5,19.5 parent: 2 type: Transform - - uid: 3784 + - uid: 4008 components: - pos: 45.5,18.5 parent: 2 type: Transform - - uid: 3785 + - uid: 4009 components: - pos: 45.5,17.5 parent: 2 type: Transform - - uid: 3786 + - uid: 4010 components: - pos: 45.5,16.5 parent: 2 type: Transform - - uid: 3787 + - uid: 4011 components: - pos: 44.5,16.5 parent: 2 type: Transform - - uid: 3788 + - uid: 4012 components: - pos: 43.5,16.5 parent: 2 type: Transform - - uid: 3789 + - uid: 4013 components: - pos: 42.5,16.5 parent: 2 type: Transform - - uid: 3790 + - uid: 4014 components: - pos: 41.5,16.5 parent: 2 type: Transform - - uid: 3791 + - uid: 4015 components: - pos: 41.5,15.5 parent: 2 type: Transform - - uid: 3792 + - uid: 4016 components: - pos: 40.5,15.5 parent: 2 type: Transform - - uid: 3793 + - uid: 4017 components: - pos: 39.5,15.5 parent: 2 type: Transform - - uid: 3794 + - uid: 4018 components: - pos: 38.5,15.5 parent: 2 type: Transform - - uid: 3795 + - uid: 4019 components: - pos: -20.5,42.5 parent: 2 type: Transform - - uid: 3796 + - uid: 4020 components: - pos: -20.5,43.5 parent: 2 type: Transform - - uid: 3797 + - uid: 4021 components: - pos: -20.5,44.5 parent: 2 type: Transform - - uid: 3798 + - uid: 4022 components: - pos: -20.5,45.5 parent: 2 type: Transform - - uid: 3799 + - uid: 4023 components: - pos: -20.5,46.5 parent: 2 type: Transform - - uid: 3800 + - uid: 4024 components: - pos: -20.5,47.5 parent: 2 type: Transform - - uid: 3801 + - uid: 4025 components: - pos: -20.5,48.5 parent: 2 type: Transform - - uid: 3802 + - uid: 4026 components: - pos: -20.5,49.5 parent: 2 type: Transform - - uid: 3803 + - uid: 4027 components: - pos: -13.5,60.5 parent: 2 type: Transform - - uid: 3804 + - uid: 4028 components: - pos: 24.5,25.5 parent: 2 type: Transform - - uid: 3805 + - uid: 4029 components: - pos: 23.5,20.5 parent: 2 type: Transform - - uid: 3806 + - uid: 4030 components: - pos: -14.5,60.5 parent: 2 type: Transform - - uid: 3807 + - uid: 4031 components: - pos: -14.5,53.5 parent: 2 type: Transform - - uid: 3808 + - uid: 4032 components: - pos: -18.5,60.5 parent: 2 type: Transform - - uid: 3809 + - uid: 4033 components: - pos: -20.5,53.5 parent: 2 type: Transform - - uid: 3810 + - uid: 4034 components: - pos: -20.5,51.5 parent: 2 type: Transform - - uid: 3811 + - uid: 4035 components: - pos: -20.5,50.5 parent: 2 type: Transform - - uid: 3812 + - uid: 4036 components: - pos: -20.5,54.5 parent: 2 type: Transform - - uid: 3813 + - uid: 4037 components: - pos: -20.5,58.5 parent: 2 type: Transform - - uid: 3814 + - uid: 4038 components: - pos: -20.5,52.5 parent: 2 type: Transform - - uid: 3815 + - uid: 4039 components: - pos: -13.5,53.5 parent: 2 type: Transform - - uid: 3816 + - uid: 4040 components: - rot: 1.5707963267948966 rad pos: 13.5,18.5 parent: 2 type: Transform - - uid: 3817 + - uid: 4041 components: - pos: -26.5,23.5 parent: 2 type: Transform - - uid: 3818 + - uid: 4042 components: - pos: -26.5,22.5 parent: 2 type: Transform - - uid: 3819 + - uid: 4043 components: - pos: -26.5,21.5 parent: 2 type: Transform - - uid: 3820 + - uid: 4044 components: - pos: -26.5,20.5 parent: 2 type: Transform - - uid: 3821 + - uid: 4045 components: - rot: 1.5707963267948966 rad pos: 14.5,18.5 parent: 2 type: Transform - - uid: 3822 + - uid: 4046 components: - rot: 3.141592653589793 rad pos: -23.5,24.5 parent: 2 type: Transform - - uid: 3823 + - uid: 4047 components: - rot: 3.141592653589793 rad pos: -22.5,24.5 parent: 2 type: Transform - - uid: 3824 + - uid: 4048 components: - rot: 3.141592653589793 rad pos: -21.5,24.5 parent: 2 type: Transform - - uid: 3825 + - uid: 4049 components: - rot: 3.141592653589793 rad pos: -20.5,24.5 parent: 2 type: Transform - - uid: 3826 + - uid: 4050 components: - rot: 3.141592653589793 rad pos: -16.5,24.5 parent: 2 type: Transform - - uid: 3827 + - uid: 4051 components: - rot: 3.141592653589793 rad pos: -17.5,24.5 parent: 2 type: Transform - - uid: 3828 + - uid: 4052 components: - rot: 1.5707963267948966 rad pos: 15.5,18.5 parent: 2 type: Transform - - uid: 3829 + - uid: 4053 components: - pos: 10.5,20.5 parent: 2 type: Transform - - uid: 3830 + - uid: 4054 components: - pos: -18.5,-33.5 parent: 2 type: Transform - - uid: 3831 + - uid: 4055 components: - pos: -18.5,-38.5 parent: 2 type: Transform - - uid: 3832 + - uid: 4056 components: - pos: 11.5,20.5 parent: 2 type: Transform - - uid: 3833 + - uid: 4057 components: - pos: 12.5,20.5 parent: 2 type: Transform - - uid: 3834 + - uid: 4058 components: - pos: -18.5,-35.5 parent: 2 type: Transform - - uid: 3835 + - uid: 4059 components: - pos: 13.5,20.5 parent: 2 type: Transform - - uid: 3836 + - uid: 4060 components: - pos: 14.5,20.5 parent: 2 type: Transform - - uid: 3837 + - uid: 4061 components: - pos: 15.5,20.5 parent: 2 type: Transform - - uid: 3838 + - uid: 4062 components: - pos: 16.5,20.5 parent: 2 type: Transform - - uid: 3839 + - uid: 4063 components: - pos: 17.5,20.5 parent: 2 type: Transform - - uid: 3840 + - uid: 4064 components: - pos: -17.5,60.5 parent: 2 type: Transform - - uid: 3841 + - uid: 4065 components: - pos: -20.5,55.5 parent: 2 type: Transform - - uid: 3842 + - uid: 4066 components: - pos: -18.5,-40.5 parent: 2 type: Transform - - uid: 3843 + - uid: 4067 components: - pos: -18.5,-37.5 parent: 2 type: Transform - - uid: 3844 + - uid: 4068 components: - pos: -22.5,60.5 parent: 2 type: Transform - - uid: 3845 + - uid: 4069 components: - pos: -20.5,59.5 parent: 2 type: Transform - - uid: 3846 + - uid: 4070 components: - pos: -20.5,60.5 parent: 2 type: Transform - - uid: 3847 + - uid: 4071 components: - pos: -19.5,60.5 parent: 2 type: Transform - - uid: 3848 + - uid: 4072 components: - rot: 3.141592653589793 rad pos: 6.5,28.5 parent: 2 type: Transform - - uid: 3849 + - uid: 4073 components: - pos: 5.5,29.5 parent: 2 type: Transform - - uid: 3850 + - uid: 4074 components: - rot: 3.141592653589793 rad pos: 5.5,28.5 parent: 2 type: Transform - - uid: 3851 + - uid: 4075 components: - pos: -18.5,-39.5 parent: 2 type: Transform - - uid: 3852 + - uid: 4076 components: - pos: -18.5,-36.5 parent: 2 type: Transform - - uid: 3853 + - uid: 4077 components: - pos: -18.5,-34.5 parent: 2 type: Transform - - uid: 3854 + - uid: 4078 components: - pos: -20.5,-42.5 parent: 2 type: Transform - - uid: 3855 + - uid: 4079 components: - pos: -20.5,-41.5 parent: 2 type: Transform - - uid: 3856 + - uid: 4080 components: - pos: -19.5,-42.5 parent: 2 type: Transform - - uid: 3857 + - uid: 4081 components: - pos: -24.5,-35.5 parent: 2 type: Transform - - uid: 3858 + - uid: 4082 components: - pos: -24.5,-36.5 parent: 2 type: Transform - - uid: 3859 + - uid: 4083 components: - pos: -24.5,-37.5 parent: 2 type: Transform - - uid: 3860 + - uid: 4084 components: - pos: -25.5,-36.5 parent: 2 type: Transform - - uid: 3861 + - uid: 4085 components: - pos: -25.5,-35.5 parent: 2 type: Transform - - uid: 3862 + - uid: 4086 components: - pos: -24.5,-38.5 parent: 2 type: Transform - - uid: 3863 + - uid: 4087 components: - pos: -24.5,-39.5 parent: 2 type: Transform - - uid: 3864 + - uid: 4088 components: - pos: -24.5,-42.5 parent: 2 type: Transform - - uid: 3865 + - uid: 4089 components: - pos: -24.5,-40.5 parent: 2 type: Transform - - uid: 3866 + - uid: 4090 components: - pos: -25.5,-32.5 parent: 2 type: Transform - - uid: 3867 + - uid: 4091 components: - pos: -24.5,-41.5 parent: 2 type: Transform - - uid: 3868 + - uid: 4092 components: - pos: -26.5,-41.5 parent: 2 type: Transform - - uid: 3869 + - uid: 4093 components: - pos: -28.5,-41.5 parent: 2 type: Transform - - uid: 3870 + - uid: 4094 components: - pos: -30.5,-41.5 parent: 2 type: Transform - - uid: 3871 + - uid: 4095 components: - pos: -26.5,-42.5 parent: 2 type: Transform - - uid: 3872 + - uid: 4096 components: - pos: -27.5,-42.5 parent: 2 type: Transform - - uid: 3873 + - uid: 4097 components: - pos: -12.5,39.5 parent: 2 type: Transform - - uid: 3874 + - uid: 4098 components: - pos: -13.5,39.5 parent: 2 type: Transform - - uid: 3875 + - uid: 4099 components: - pos: -14.5,39.5 parent: 2 type: Transform - - uid: 3876 + - uid: 4100 components: - pos: 1.5,29.5 parent: 2 type: Transform - - uid: 3877 + - uid: 4101 components: - pos: 2.5,29.5 parent: 2 type: Transform - - uid: 3878 + - uid: 4102 components: - pos: 31.5,21.5 parent: 2 type: Transform - - uid: 3879 + - uid: 4103 components: - pos: 32.5,21.5 parent: 2 type: Transform - - uid: 3880 + - uid: 4104 components: - pos: 33.5,21.5 parent: 2 type: Transform - - uid: 3881 + - uid: 4105 components: - pos: 36.5,22.5 parent: 2 type: Transform - - uid: 3882 + - uid: 4106 components: - pos: -27.5,-41.5 parent: 2 type: Transform - - uid: 3883 + - uid: 4107 components: - pos: -25.5,-33.5 parent: 2 type: Transform - - uid: 3884 + - uid: 4108 components: - pos: -25.5,-34.5 parent: 2 type: Transform - - uid: 3885 + - uid: 4109 components: - pos: 36.5,23.5 parent: 2 type: Transform - - uid: 3886 + - uid: 4110 components: - pos: 16.5,23.5 parent: 2 type: Transform - - uid: 3887 + - uid: 4111 components: - pos: 16.5,24.5 parent: 2 type: Transform - - uid: 3888 + - uid: 4112 components: - pos: 16.5,25.5 parent: 2 type: Transform - - uid: 3889 + - uid: 4113 components: - pos: 16.5,26.5 parent: 2 type: Transform - - uid: 3890 + - uid: 4114 components: - pos: 16.5,27.5 parent: 2 type: Transform - - uid: 3891 + - uid: 4115 components: - pos: -29.5,34.5 parent: 2 type: Transform - - uid: 3892 + - uid: 4116 components: - pos: -29.5,35.5 parent: 2 type: Transform - - uid: 3893 + - uid: 4117 components: - pos: -31.5,26.5 parent: 2 type: Transform - - uid: 3894 + - uid: 4118 components: - pos: -31.5,27.5 parent: 2 type: Transform - - uid: 3895 + - uid: 4119 components: - pos: -31.5,25.5 parent: 2 type: Transform - - uid: 3896 + - uid: 4120 components: - pos: -31.5,24.5 parent: 2 type: Transform - - uid: 3897 + - uid: 4121 components: - pos: -31.5,23.5 parent: 2 type: Transform - - uid: 3898 + - uid: 4122 components: - pos: -31.5,22.5 parent: 2 type: Transform - - uid: 3899 + - uid: 4123 components: - pos: -30.5,22.5 parent: 2 type: Transform - - uid: 3900 + - uid: 4124 components: - pos: -29.5,22.5 parent: 2 type: Transform - - uid: 3901 + - uid: 4125 components: - pos: 36.5,24.5 parent: 2 type: Transform - - uid: 3902 + - uid: 4126 components: - pos: -16.5,60.5 parent: 2 type: Transform - - uid: 3903 + - uid: 4127 components: - pos: 36.5,25.5 parent: 2 type: Transform - - uid: 3904 + - uid: 4128 components: - pos: 29.5,19.5 parent: 2 type: Transform - - uid: 3905 + - uid: 4129 components: - pos: 29.5,21.5 parent: 2 type: Transform - - uid: 3906 + - uid: 4130 components: - pos: 29.5,22.5 parent: 2 type: Transform - - uid: 3907 + - uid: 4131 components: - pos: 29.5,23.5 parent: 2 type: Transform - - uid: 3908 + - uid: 4132 components: - pos: 29.5,24.5 parent: 2 type: Transform - - uid: 3909 + - uid: 4133 components: - pos: 29.5,25.5 parent: 2 type: Transform - - uid: 3910 + - uid: 4134 components: - pos: 30.5,25.5 parent: 2 type: Transform - - uid: 3911 + - uid: 4135 components: - pos: 30.5,26.5 parent: 2 type: Transform - - uid: 3912 + - uid: 4136 components: - rot: 1.5707963267948966 rad pos: 20.5,-7.5 parent: 2 type: Transform - - uid: 3913 + - uid: 4137 components: - rot: 1.5707963267948966 rad pos: 20.5,-6.5 parent: 2 type: Transform - - uid: 3914 + - uid: 4138 components: - rot: 1.5707963267948966 rad pos: 20.5,-5.5 parent: 2 type: Transform - - uid: 3915 + - uid: 4139 components: - rot: 1.5707963267948966 rad pos: 21.5,-5.5 parent: 2 type: Transform - - uid: 3916 + - uid: 4140 components: - rot: 1.5707963267948966 rad pos: 22.5,-5.5 parent: 2 type: Transform - - uid: 3917 + - uid: 4141 components: - rot: 1.5707963267948966 rad pos: 23.5,-5.5 parent: 2 type: Transform - - uid: 3918 + - uid: 4142 components: - rot: 1.5707963267948966 rad pos: 24.5,-5.5 parent: 2 type: Transform - - uid: 3919 + - uid: 4143 components: - rot: 1.5707963267948966 rad pos: 28.5,5.5 parent: 2 type: Transform - - uid: 3920 + - uid: 4144 components: - rot: 1.5707963267948966 rad pos: 28.5,6.5 parent: 2 type: Transform - - uid: 3921 + - uid: 4145 components: - rot: 1.5707963267948966 rad pos: 28.5,7.5 parent: 2 type: Transform - - uid: 3922 + - uid: 4146 components: - rot: 1.5707963267948966 rad pos: 28.5,8.5 parent: 2 type: Transform - - uid: 3923 + - uid: 4147 components: - pos: -25.5,-38.5 parent: 2 type: Transform - - uid: 3924 + - uid: 4148 components: - pos: -25.5,-42.5 parent: 2 type: Transform - - uid: 3925 + - uid: 4149 components: - pos: -25.5,-41.5 parent: 2 type: Transform - - uid: 3926 + - uid: 4150 components: - pos: -25.5,-40.5 parent: 2 type: Transform - - uid: 3927 + - uid: 4151 components: - pos: -25.5,-39.5 parent: 2 type: Transform - - uid: 3928 + - uid: 4152 components: - pos: -25.5,-37.5 parent: 2 type: Transform - - uid: 3929 + - uid: 4153 components: - pos: -15.5,-41.5 parent: 2 type: Transform - - uid: 3930 + - uid: 4154 components: - pos: -14.5,-42.5 parent: 2 type: Transform - - uid: 3931 + - uid: 4155 components: - pos: -17.5,-41.5 parent: 2 type: Transform - - uid: 3932 + - uid: 4156 components: - pos: -15.5,-42.5 parent: 2 type: Transform - - uid: 3933 + - uid: 4157 components: - pos: -17.5,-30.5 parent: 2 type: Transform - - uid: 3934 + - uid: 4158 components: - pos: -17.5,-32.5 parent: 2 type: Transform - - uid: 3935 + - uid: 4159 components: - pos: -17.5,-31.5 parent: 2 type: Transform - - uid: 3936 + - uid: 4160 components: - pos: -17.5,-29.5 parent: 2 type: Transform - - uid: 3937 + - uid: 4161 components: - pos: -17.5,-28.5 parent: 2 type: Transform - - uid: 3938 + - uid: 4162 components: - pos: -16.5,-41.5 parent: 2 type: Transform - - uid: 3939 + - uid: 4163 components: - pos: -16.5,-42.5 parent: 2 type: Transform - - uid: 3940 + - uid: 4164 components: - pos: -20.5,-29.5 parent: 2 type: Transform - - uid: 3941 + - uid: 4165 components: - pos: -11.5,-42.5 parent: 2 type: Transform - - uid: 3942 + - uid: 4166 components: - pos: -10.5,-42.5 parent: 2 type: Transform - - uid: 3943 + - uid: 4167 components: - pos: -21.5,-30.5 parent: 2 type: Transform - - uid: 3944 + - uid: 4168 components: - pos: -19.5,-29.5 parent: 2 type: Transform - - uid: 3945 + - uid: 4169 components: - pos: -21.5,-42.5 parent: 2 type: Transform - - uid: 3946 + - uid: 4170 components: - pos: -21.5,-41.5 parent: 2 type: Transform - - uid: 3947 + - uid: 4171 components: - pos: -22.5,-41.5 parent: 2 type: Transform - - uid: 3948 + - uid: 4172 components: - pos: -24.5,-33.5 parent: 2 type: Transform - - uid: 3949 + - uid: 4173 components: - pos: -23.5,-42.5 parent: 2 type: Transform - - uid: 3950 + - uid: 4174 components: - pos: -24.5,-32.5 parent: 2 type: Transform - - uid: 3951 + - uid: 4175 components: - pos: -23.5,-41.5 parent: 2 type: Transform - - uid: 3952 + - uid: 4176 components: - pos: -22.5,-42.5 parent: 2 type: Transform - - uid: 3953 + - uid: 4177 components: - pos: -24.5,-34.5 parent: 2 type: Transform - - uid: 3954 + - uid: 4178 components: - pos: -17.5,-42.5 parent: 2 type: Transform - - uid: 3955 + - uid: 4179 components: - pos: -19.5,-30.5 parent: 2 type: Transform - - uid: 3956 + - uid: 4180 components: - pos: -11.5,-41.5 parent: 2 type: Transform - - uid: 3957 + - uid: 4181 components: - pos: -10.5,-41.5 parent: 2 type: Transform - - uid: 3958 + - uid: 4182 components: - pos: -17.5,-26.5 parent: 2 type: Transform - - uid: 3959 + - uid: 4183 components: - pos: -14.5,-41.5 parent: 2 type: Transform - - uid: 3960 + - uid: 4184 components: - pos: -20.5,-30.5 parent: 2 type: Transform - - uid: 3961 + - uid: 4185 components: - pos: -21.5,-29.5 parent: 2 type: Transform - - uid: 3962 + - uid: 4186 components: - pos: -17.5,-27.5 parent: 2 type: Transform - - uid: 3963 + - uid: 4187 components: - pos: -12.5,-42.5 parent: 2 type: Transform - - uid: 3964 + - uid: 4188 components: - pos: -18.5,-41.5 parent: 2 type: Transform - - uid: 3965 + - uid: 4189 components: - pos: -13.5,-42.5 parent: 2 type: Transform - - uid: 3966 + - uid: 4190 components: - pos: -13.5,-41.5 parent: 2 type: Transform - - uid: 3967 + - uid: 4191 components: - pos: -12.5,-41.5 parent: 2 type: Transform - - uid: 3968 + - uid: 4192 components: - pos: -18.5,-42.5 parent: 2 type: Transform - - uid: 3969 + - uid: 4193 components: - pos: -19.5,-41.5 parent: 2 type: Transform - - uid: 3970 + - uid: 4194 components: - pos: -29.5,-42.5 parent: 2 type: Transform - - uid: 3971 + - uid: 4195 components: - pos: -29.5,-41.5 parent: 2 type: Transform - - uid: 3972 + - uid: 4196 components: - pos: -31.5,-42.5 parent: 2 type: Transform - - uid: 3973 + - uid: 4197 components: - pos: -30.5,-42.5 parent: 2 type: Transform - - uid: 3974 + - uid: 4198 components: - pos: -28.5,-42.5 parent: 2 type: Transform - - uid: 3975 + - uid: 4199 components: - pos: -31.5,-41.5 parent: 2 type: Transform - - uid: 3976 + - uid: 4200 components: - pos: -32.5,-42.5 parent: 2 type: Transform - - uid: 3977 + - uid: 4201 components: - pos: -32.5,-41.5 parent: 2 type: Transform - - uid: 3978 + - uid: 4202 components: - rot: -1.5707963267948966 rad pos: -21.5,-23.5 parent: 2 type: Transform - - uid: 3979 + - uid: 4203 components: - rot: -1.5707963267948966 rad pos: -19.5,-24.5 parent: 2 type: Transform - - uid: 3980 + - uid: 4204 components: - rot: -1.5707963267948966 rad pos: -18.5,-24.5 parent: 2 type: Transform - - uid: 3981 + - uid: 4205 components: - rot: -1.5707963267948966 rad pos: -20.5,-23.5 parent: 2 type: Transform - - uid: 3982 + - uid: 4206 components: - rot: -1.5707963267948966 rad pos: -18.5,-23.5 parent: 2 type: Transform - - uid: 3983 + - uid: 4207 components: - rot: -1.5707963267948966 rad pos: -19.5,-23.5 parent: 2 type: Transform - - uid: 3984 + - uid: 4208 components: - rot: -1.5707963267948966 rad pos: -21.5,-24.5 parent: 2 type: Transform - - uid: 3985 + - uid: 4209 components: - rot: -1.5707963267948966 rad pos: -17.5,-23.5 parent: 2 type: Transform - - uid: 3986 + - uid: 4210 components: - rot: -1.5707963267948966 rad pos: -20.5,-24.5 parent: 2 type: Transform - - uid: 3987 + - uid: 4211 components: - rot: 1.5707963267948966 rad pos: 33.5,-12.5 parent: 2 type: Transform - - uid: 3988 + - uid: 4212 components: - rot: 3.141592653589793 rad pos: 12.5,30.5 parent: 2 type: Transform - - uid: 3989 + - uid: 4213 components: - rot: 3.141592653589793 rad pos: 12.5,31.5 parent: 2 type: Transform - - uid: 3990 + - uid: 4214 components: - rot: 1.5707963267948966 rad pos: 32.5,-3.5 parent: 2 type: Transform - - uid: 3991 + - uid: 4215 components: - pos: 27.5,-5.5 parent: 2 type: Transform - - uid: 3992 + - uid: 4216 components: - pos: 28.5,-5.5 parent: 2 type: Transform - - uid: 3993 + - uid: 4217 components: - pos: 28.5,-6.5 parent: 2 type: Transform - - uid: 3994 + - uid: 4218 components: - pos: 28.5,-7.5 parent: 2 type: Transform - - uid: 3995 + - uid: 4219 components: - pos: 29.5,-5.5 parent: 2 type: Transform - - uid: 3996 + - uid: 4220 components: - pos: 29.5,-7.5 parent: 2 type: Transform - - uid: 3997 + - uid: 4221 components: - pos: 30.5,-7.5 parent: 2 type: Transform - - uid: 3998 + - uid: 4222 components: - pos: 31.5,-7.5 parent: 2 type: Transform - - uid: 3999 + - uid: 4223 components: - pos: 30.5,-5.5 parent: 2 type: Transform - - uid: 4000 + - uid: 4224 components: - pos: 31.5,-5.5 parent: 2 type: Transform - - uid: 4001 + - uid: 4225 components: - rot: 1.5707963267948966 rad pos: 30.5,-9.5 parent: 2 type: Transform - - uid: 4002 + - uid: 4226 components: - pos: 30.5,-4.5 parent: 2 type: Transform - - uid: 4003 + - uid: 4227 components: - pos: 30.5,-3.5 parent: 2 type: Transform - - uid: 4004 + - uid: 4228 components: - pos: 31.5,-4.5 parent: 2 type: Transform - - uid: 4005 + - uid: 4229 components: - pos: 31.5,-3.5 parent: 2 type: Transform - - uid: 4006 + - uid: 4230 components: - pos: 31.5,-6.5 parent: 2 type: Transform - - uid: 4007 + - uid: 4231 components: - pos: 30.5,-6.5 parent: 2 type: Transform - - uid: 4008 + - uid: 4232 components: - rot: 1.5707963267948966 rad pos: 30.5,-10.5 parent: 2 type: Transform - - uid: 4009 + - uid: 4233 components: - rot: 1.5707963267948966 rad pos: 30.5,-11.5 parent: 2 type: Transform - - uid: 4010 + - uid: 4234 components: - rot: 1.5707963267948966 rad pos: 34.5,-12.5 parent: 2 type: Transform - - uid: 4011 + - uid: 4235 components: - rot: 1.5707963267948966 rad pos: 35.5,-12.5 parent: 2 type: Transform - - uid: 4012 + - uid: 4236 components: - rot: 1.5707963267948966 rad pos: 36.5,-12.5 parent: 2 type: Transform - - uid: 4013 + - uid: 4237 components: - rot: 1.5707963267948966 rad pos: 37.5,-12.5 parent: 2 type: Transform - - uid: 4014 + - uid: 4238 components: - rot: 1.5707963267948966 rad pos: 38.5,-12.5 parent: 2 type: Transform - - uid: 4015 + - uid: 4239 components: - rot: 1.5707963267948966 rad pos: 39.5,-12.5 parent: 2 type: Transform - - uid: 4016 + - uid: 4240 components: - rot: 1.5707963267948966 rad pos: 40.5,-12.5 parent: 2 type: Transform - - uid: 4017 + - uid: 4241 components: - rot: 1.5707963267948966 rad pos: 40.5,-13.5 parent: 2 type: Transform - - uid: 4018 + - uid: 4242 components: - rot: 1.5707963267948966 rad pos: 39.5,-13.5 parent: 2 type: Transform - - uid: 4019 + - uid: 4243 components: - rot: 1.5707963267948966 rad pos: 38.5,-13.5 parent: 2 type: Transform - - uid: 4020 + - uid: 4244 components: - rot: 1.5707963267948966 rad pos: 37.5,-13.5 parent: 2 type: Transform - - uid: 4021 + - uid: 4245 components: - rot: 1.5707963267948966 rad pos: 36.5,-13.5 parent: 2 type: Transform - - uid: 4022 + - uid: 4246 components: - rot: 1.5707963267948966 rad pos: 35.5,-13.5 parent: 2 type: Transform - - uid: 4023 + - uid: 4247 components: - rot: 1.5707963267948966 rad pos: 34.5,-13.5 parent: 2 type: Transform - - uid: 4024 + - uid: 4248 components: - rot: 1.5707963267948966 rad pos: 33.5,-13.5 parent: 2 type: Transform - - uid: 4025 + - uid: 4249 components: - rot: 1.5707963267948966 rad pos: 32.5,-13.5 parent: 2 type: Transform - - uid: 4026 + - uid: 4250 components: - rot: 1.5707963267948966 rad pos: 41.5,-12.5 parent: 2 type: Transform - - uid: 4027 + - uid: 4251 components: - rot: 1.5707963267948966 rad pos: 41.5,-13.5 parent: 2 type: Transform - - uid: 4028 + - uid: 4252 components: - rot: 1.5707963267948966 rad pos: 42.5,-12.5 parent: 2 type: Transform - - uid: 4029 + - uid: 4253 components: - rot: 1.5707963267948966 rad pos: 42.5,-13.5 parent: 2 type: Transform - - uid: 4030 + - uid: 4254 components: - rot: 1.5707963267948966 rad pos: 43.5,-12.5 parent: 2 type: Transform - - uid: 4031 + - uid: 4255 components: - rot: 1.5707963267948966 rad pos: 43.5,-13.5 parent: 2 type: Transform - - uid: 4032 + - uid: 4256 components: - rot: 1.5707963267948966 rad pos: 41.5,-15.5 parent: 2 type: Transform - - uid: 4033 + - uid: 4257 components: - rot: 1.5707963267948966 rad pos: 43.5,-11.5 parent: 2 type: Transform - - uid: 4034 + - uid: 4258 components: - rot: 1.5707963267948966 rad pos: 43.5,-10.5 parent: 2 type: Transform - - uid: 4035 + - uid: 4259 components: - rot: 1.5707963267948966 rad pos: 42.5,-11.5 parent: 2 type: Transform - - uid: 4036 + - uid: 4260 components: - rot: 1.5707963267948966 rad pos: 42.5,-10.5 parent: 2 type: Transform - - uid: 4037 + - uid: 4261 components: - rot: 1.5707963267948966 rad pos: 42.5,-9.5 parent: 2 type: Transform - - uid: 4038 + - uid: 4262 components: - rot: 1.5707963267948966 rad pos: 42.5,-14.5 parent: 2 type: Transform - - uid: 4039 + - uid: 4263 components: - rot: 1.5707963267948966 rad pos: 42.5,-15.5 parent: 2 type: Transform - - uid: 4040 + - uid: 4264 components: - rot: 1.5707963267948966 rad pos: 42.5,-16.5 parent: 2 type: Transform - - uid: 4041 + - uid: 4265 components: - rot: 1.5707963267948966 rad pos: 42.5,-17.5 parent: 2 type: Transform - - uid: 4042 + - uid: 4266 components: - rot: 1.5707963267948966 rad pos: 42.5,-18.5 parent: 2 type: Transform - - uid: 4043 + - uid: 4267 components: - rot: 1.5707963267948966 rad pos: 43.5,-14.5 parent: 2 type: Transform - - uid: 4044 + - uid: 4268 components: - rot: 1.5707963267948966 rad pos: 43.5,-15.5 parent: 2 type: Transform - - uid: 4045 + - uid: 4269 components: - rot: 1.5707963267948966 rad pos: 43.5,-16.5 parent: 2 type: Transform - - uid: 4046 + - uid: 4270 components: - rot: 1.5707963267948966 rad pos: 43.5,-17.5 parent: 2 type: Transform - - uid: 4047 + - uid: 4271 components: - rot: 1.5707963267948966 rad pos: 43.5,-18.5 parent: 2 type: Transform - - uid: 4048 + - uid: 4272 components: - rot: 1.5707963267948966 rad pos: 43.5,-9.5 parent: 2 type: Transform - - uid: 4049 + - uid: 4273 components: - pos: 44.5,-9.5 parent: 2 type: Transform - - uid: 4050 + - uid: 4274 components: - pos: 44.5,-10.5 parent: 2 type: Transform - - uid: 4051 + - uid: 4275 components: - pos: 44.5,-11.5 parent: 2 type: Transform - - uid: 4052 + - uid: 4276 components: - pos: 44.5,-12.5 parent: 2 type: Transform - - uid: 4053 + - uid: 4277 components: - rot: 1.5707963267948966 rad pos: 32.5,-4.5 parent: 2 type: Transform - - uid: 4054 + - uid: 4278 components: - rot: 3.141592653589793 rad pos: 30.5,-13.5 parent: 2 type: Transform - - uid: 4055 + - uid: 4279 components: - pos: 10.5,28.5 parent: 2 type: Transform - proto: Chair entities: - - uid: 4056 + - uid: 4280 components: - rot: 3.141592653589793 rad pos: -17.5,17.5 parent: 2 type: Transform - - uid: 4057 + - uid: 4281 components: - rot: 3.141592653589793 rad pos: -18.5,17.5 parent: 2 type: Transform - - uid: 4058 + - uid: 4282 components: - rot: 1.5707963267948966 rad pos: 2.5,1.5 parent: 2 type: Transform - - uid: 4059 + - uid: 4283 components: - rot: 1.5707963267948966 rad pos: 2.5,2.5 parent: 2 type: Transform - - uid: 4060 + - uid: 4284 components: - pos: 13.5,-16.5 parent: 2 type: Transform - - uid: 4061 + - uid: 4285 components: - rot: 3.141592653589793 rad pos: -16.5,-8.5 parent: 2 type: Transform - - uid: 4062 + - uid: 4286 components: - rot: 3.141592653589793 rad pos: -14.5,-8.5 parent: 2 type: Transform - - uid: 4063 + - uid: 4287 components: - rot: 3.141592653589793 rad pos: -28.5,-1.5 parent: 2 type: Transform - - uid: 4064 + - uid: 4288 components: - rot: 3.141592653589793 rad pos: 4.5,-29.5 parent: 2 type: Transform - - uid: 4065 + - uid: 4289 components: - pos: 11.5,-24.5 parent: 2 type: Transform - - uid: 4066 + - uid: 4290 components: - rot: 1.5707963267948966 rad pos: 18.5,-18.5 parent: 2 type: Transform - - uid: 4067 + - uid: 4291 components: - rot: 1.5707963267948966 rad pos: 18.5,-19.5 parent: 2 type: Transform - - uid: 4068 + - uid: 4292 components: - pos: 31.5,29.5 parent: 2 type: Transform - - uid: 4069 + - uid: 4293 components: - pos: 13.5,-26.5 parent: 2 type: Transform - - uid: 4070 + - uid: 4294 components: - rot: 3.141592653589793 rad pos: 13.5,-28.5 parent: 2 type: Transform - - uid: 4071 + - uid: 4295 components: - pos: -30.5,-5.5 parent: 2 type: Transform - - uid: 4072 + - uid: 4296 components: - pos: -28.5,1.5 parent: 2 type: Transform - - uid: 4073 + - uid: 4297 components: - pos: 36.5,15.5 parent: 2 type: Transform - - uid: 4074 + - uid: 4298 components: - rot: 3.141592653589793 rad pos: -25.5,-21.5 parent: 2 type: Transform - - uid: 4075 + - uid: 4299 components: - rot: 3.141592653589793 rad pos: -30.5,-1.5 parent: 2 type: Transform - - uid: 4076 + - uid: 4300 components: - rot: 1.5707963267948966 rad pos: 18.5,14.5 parent: 2 type: Transform - - uid: 4077 + - uid: 4301 components: - rot: 1.5707963267948966 rad pos: 18.5,13.5 parent: 2 type: Transform - - uid: 4078 + - uid: 4302 components: - pos: -28.5,-2.5 parent: 2 type: Transform - - uid: 4079 + - uid: 4303 components: - pos: -29.5,-2.5 parent: 2 type: Transform - - uid: 4080 + - uid: 4304 components: - rot: 3.141592653589793 rad pos: -29.5,-4.5 parent: 2 type: Transform - - uid: 4081 + - uid: 4305 components: - rot: 3.141592653589793 rad pos: -28.5,-4.5 parent: 2 type: Transform - - uid: 4082 + - uid: 4306 components: - rot: 3.141592653589793 rad pos: -26.5,-8.5 parent: 2 type: Transform - - uid: 4083 + - uid: 4307 components: - rot: 3.141592653589793 rad pos: -28.5,-8.5 parent: 2 type: Transform - - uid: 4084 + - uid: 4308 components: - pos: -28.5,-5.5 parent: 2 type: Transform - - uid: 4085 + - uid: 4309 components: - pos: -25.5,-19.5 parent: 2 type: Transform - - uid: 4086 + - uid: 4310 components: - rot: -1.5707963267948966 rad pos: -24.5,3.5 parent: 2 type: Transform - - uid: 4087 + - uid: 4311 components: - rot: -1.5707963267948966 rad pos: -25.5,14.5 parent: 2 type: Transform - - uid: 4088 + - uid: 4312 components: - rot: -1.5707963267948966 rad pos: -25.5,12.5 parent: 2 type: Transform - - uid: 4089 + - uid: 4313 components: - rot: -1.5707963267948966 rad pos: -24.5,5.5 parent: 2 type: Transform - - uid: 4090 + - uid: 4314 components: - pos: 33.5,14.5 parent: 2 type: Transform - - uid: 4091 + - uid: 4315 components: - rot: 1.5707963267948966 rad pos: 10.5,-25.5 parent: 2 type: Transform - - uid: 4092 + - uid: 4316 components: - pos: -8.5,35.5 parent: 2 type: Transform - - uid: 4093 + - uid: 4317 components: - rot: 3.141592653589793 rad pos: -8.5,33.5 parent: 2 type: Transform - - uid: 4094 + - uid: 4318 components: - pos: -6.5,35.5 parent: 2 type: Transform - - uid: 4095 + - uid: 4319 components: - rot: 3.141592653589793 rad pos: -6.5,33.5 parent: 2 type: Transform - - uid: 4096 + - uid: 4320 components: - rot: 1.5707963267948966 rad pos: 17.5,-2.5 parent: 2 type: Transform - - uid: 4097 + - uid: 4321 components: - rot: 1.5707963267948966 rad pos: 18.5,16.5 parent: 2 type: Transform - - uid: 4098 + - uid: 4322 components: - rot: 1.5707963267948966 rad pos: -20.5,-19.5 parent: 2 type: Transform - - uid: 4099 + - uid: 4323 components: - rot: 1.5707963267948966 rad pos: -20.5,-20.5 @@ -26493,31 +27608,31 @@ entities: type: Transform - proto: ChairFolding entities: - - uid: 4100 + - uid: 4324 components: - rot: 1.5707963267948966 rad pos: 0.5,-1.5 parent: 2 type: Transform - - uid: 4101 + - uid: 4325 components: - rot: 3.141592653589793 rad pos: -33.5,31.5 parent: 2 type: Transform - - uid: 4102 + - uid: 4326 components: - rot: 3.141592653589793 rad pos: -32.5,31.5 parent: 2 type: Transform - - uid: 4103 + - uid: 4327 components: - rot: -1.5707963267948966 rad pos: -31.5,32.5 parent: 2 type: Transform - - uid: 4104 + - uid: 4328 components: - rot: -1.5707963267948966 rad pos: -31.5,33.5 @@ -26525,137 +27640,137 @@ entities: type: Transform - proto: ChairOfficeDark entities: - - uid: 4105 + - uid: 4329 components: - rot: 1.5707963267948966 rad pos: 17.5,-5.5 parent: 2 type: Transform - - uid: 4106 + - uid: 4330 components: - rot: -1.5707963267948966 rad pos: 1.5,-23.5 parent: 2 type: Transform - - uid: 4107 + - uid: 4331 components: - rot: 1.5707963267948966 rad pos: -2.5,-21.5 parent: 2 type: Transform - - uid: 4108 + - uid: 4332 components: - rot: 1.5707963267948966 rad pos: -2.5,-23.5 parent: 2 type: Transform - - uid: 4109 + - uid: 4333 components: - rot: -1.5707963267948966 rad pos: 1.5,-21.5 parent: 2 type: Transform - - uid: 4110 + - uid: 4334 components: - pos: 8.5,-25.5 parent: 2 type: Transform - - uid: 4111 + - uid: 4335 components: - pos: 7.5,-25.5 parent: 2 type: Transform - - uid: 4112 + - uid: 4336 components: - rot: -1.5707963267948966 rad pos: 20.5,-19.5 parent: 2 type: Transform - - uid: 4113 + - uid: 4337 components: - pos: 9.5,-20.5 parent: 2 type: Transform - - uid: 4114 + - uid: 4338 components: - pos: 5.5,-25.5 parent: 2 type: Transform - - uid: 4115 + - uid: 4339 components: - rot: -1.5707963267948966 rad pos: 20.5,13.5 parent: 2 type: Transform - - uid: 4116 + - uid: 4340 components: - rot: 3.141592653589793 rad pos: 8.5,-14.5 parent: 2 type: Transform - - uid: 4117 + - uid: 4341 components: - rot: -1.5707963267948966 rad pos: 6.5,-4.5 parent: 2 type: Transform - - uid: 4118 + - uid: 4342 components: - pos: 4.5,-25.5 parent: 2 type: Transform - - uid: 4119 + - uid: 4343 components: - rot: -1.5707963267948966 rad pos: -19.5,-6.5 parent: 2 type: Transform - - uid: 4120 + - uid: 4344 components: - rot: -1.5707963267948966 rad pos: -28.5,-24.5 parent: 2 type: Transform - - uid: 4121 + - uid: 4345 components: - rot: 3.141592653589793 rad pos: -24.5,-28.5 parent: 2 type: Transform - - uid: 4122 + - uid: 4346 components: - pos: -24.5,-26.5 parent: 2 type: Transform - - uid: 4123 + - uid: 4347 components: - rot: -1.5707963267948966 rad pos: 30.5,29.5 parent: 2 type: Transform - - uid: 4124 + - uid: 4348 components: - rot: -1.5707963267948966 rad pos: 13.5,13.5 parent: 2 type: Transform - - uid: 4125 + - uid: 4349 components: - pos: -5.5,26.5 parent: 2 type: Transform - - uid: 4126 + - uid: 4350 components: - rot: -1.5707963267948966 rad pos: 11.5,-0.5 parent: 2 type: Transform - - uid: 4127 + - uid: 4351 components: - pos: 24.5,13.5 parent: 2 type: Transform - - uid: 4128 + - uid: 4352 components: - rot: 3.141592653589793 rad pos: 31.5,-4.5 @@ -26663,218 +27778,218 @@ entities: type: Transform - proto: ChairOfficeLight entities: - - uid: 4129 + - uid: 4353 components: - pos: -18.5,19.5 parent: 2 type: Transform - - uid: 4130 + - uid: 4354 components: - rot: 1.5707963267948966 rad pos: -15.5,12.5 parent: 2 type: Transform - - uid: 4131 + - uid: 4355 components: - rot: 1.5707963267948966 rad pos: -2.5,-22.5 parent: 2 type: Transform - - uid: 4132 + - uid: 4356 components: - rot: -1.5707963267948966 rad pos: 1.5,-22.5 parent: 2 type: Transform - - uid: 4133 + - uid: 4357 components: - pos: -23.5,21.5 parent: 2 type: Transform - - uid: 4134 + - uid: 4358 components: - pos: -0.5,-20.5 parent: 2 type: Transform - proto: ChairWood entities: - - uid: 4135 + - uid: 4359 components: - pos: -14.5,-14.5 parent: 2 type: Transform - - uid: 4136 + - uid: 4360 components: - rot: -1.5707963267948966 rad pos: -5.5,-1.5 parent: 2 type: Transform - - uid: 4137 + - uid: 4361 components: - rot: -1.5707963267948966 rad pos: -1.5,-2.5 parent: 2 type: Transform - - uid: 4138 + - uid: 4362 components: - rot: -1.5707963267948966 rad pos: -5.5,-2.5 parent: 2 type: Transform - - uid: 4139 + - uid: 4363 components: - rot: 1.5707963267948966 rad pos: -3.5,-2.5 parent: 2 type: Transform - - uid: 4140 + - uid: 4364 components: - rot: 1.5707963267948966 rad pos: -7.5,-2.5 parent: 2 type: Transform - - uid: 4141 + - uid: 4365 components: - rot: -1.5707963267948966 rad pos: 11.5,-27.5 parent: 2 type: Transform - - uid: 4142 + - uid: 4366 components: - rot: -1.5707963267948966 rad pos: 10.5,-27.5 parent: 2 type: Transform - - uid: 4143 + - uid: 4367 components: - rot: -1.5707963267948966 rad pos: 10.5,-28.5 parent: 2 type: Transform - - uid: 4144 + - uid: 4368 components: - rot: -1.5707963267948966 rad pos: 11.5,-28.5 parent: 2 type: Transform - - uid: 4145 + - uid: 4369 components: - rot: -1.5707963267948966 rad pos: 10.5,-29.5 parent: 2 type: Transform - - uid: 4146 + - uid: 4370 components: - rot: 3.141592653589793 rad pos: 27.5,-11.5 parent: 2 type: Transform - - uid: 4147 + - uid: 4371 components: - rot: -1.5707963267948966 rad pos: 11.5,-29.5 parent: 2 type: Transform - - uid: 4148 + - uid: 4372 components: - pos: 27.5,-9.5 parent: 2 type: Transform - - uid: 4149 + - uid: 4373 components: - rot: 3.141592653589793 rad pos: -8.5,21.5 parent: 2 type: Transform - - uid: 4150 + - uid: 4374 components: - rot: 1.5707963267948966 rad pos: -7.5,-1.5 parent: 2 type: Transform - - uid: 4151 + - uid: 4375 components: - rot: 3.141592653589793 rad pos: -8.5,20.5 parent: 2 type: Transform - - uid: 4152 + - uid: 4376 components: - rot: 3.141592653589793 rad pos: -9.5,21.5 parent: 2 type: Transform - - uid: 4153 + - uid: 4377 components: - rot: 3.141592653589793 rad pos: -19.5,-14.5 parent: 2 type: Transform - - uid: 4154 + - uid: 4378 components: - rot: 1.5707963267948966 rad pos: -20.5,-12.5 parent: 2 type: Transform - - uid: 4155 + - uid: 4379 components: - pos: -18.5,-11.5 parent: 2 type: Transform - - uid: 4156 + - uid: 4380 components: - rot: -1.5707963267948966 rad pos: -17.5,-13.5 parent: 2 type: Transform - - uid: 4157 + - uid: 4381 components: - rot: 3.141592653589793 rad pos: -9.5,20.5 parent: 2 type: Transform - - uid: 4158 + - uid: 4382 components: - pos: 38.5,26.5 parent: 2 type: Transform - - uid: 4159 + - uid: 4383 components: - rot: 3.141592653589793 rad pos: 38.5,24.5 parent: 2 type: Transform - - uid: 4160 + - uid: 4384 components: - rot: -1.5707963267948966 rad pos: 32.5,20.5 parent: 2 type: Transform - - uid: 4161 + - uid: 4385 components: - rot: 3.141592653589793 rad pos: -5.5,21.5 parent: 2 type: Transform - - uid: 4162 + - uid: 4386 components: - rot: 3.141592653589793 rad pos: -5.5,20.5 parent: 2 type: Transform - - uid: 4163 + - uid: 4387 components: - rot: 3.141592653589793 rad pos: -4.5,21.5 parent: 2 type: Transform - - uid: 4164 + - uid: 4388 components: - rot: 3.141592653589793 rad pos: -4.5,20.5 parent: 2 type: Transform - - uid: 4165 + - uid: 4389 components: - rot: 1.5707963267948966 rad pos: -15.5,-15.5 @@ -26882,45 +27997,50 @@ entities: type: Transform - proto: chem_master entities: - - uid: 4166 + - uid: 4390 components: - pos: -14.5,13.5 parent: 2 type: Transform + - uid: 4391 + components: + - pos: -2.5,10.5 + parent: 2 + type: Transform - proto: ChemDispenser entities: - - uid: 4167 + - uid: 4392 components: - pos: -14.5,12.5 parent: 2 type: Transform - proto: ChemistryHotplate entities: - - uid: 4168 + - uid: 4393 components: - pos: -7.5,31.5 parent: 2 type: Transform - - uid: 4169 + - uid: 4394 components: - pos: -16.5,12.5 parent: 2 type: Transform - proto: ChessBoard entities: - - uid: 4170 + - uid: 4395 components: - pos: 1.5024004,4.570645 parent: 2 type: Transform - - uid: 4171 + - uid: 4396 components: - pos: -6.4991946,34.571983 parent: 2 type: Transform - proto: ChurchOrganInstrument entities: - - uid: 4172 + - uid: 4397 components: - rot: 1.5707963267948966 rad pos: -10.5,22.5 @@ -26928,269 +28048,269 @@ entities: type: Transform - proto: CigarCase entities: - - uid: 4173 + - uid: 4398 components: - pos: 26.35321,-21.272463 parent: 2 type: Transform - proto: CigarGoldCase entities: - - uid: 4174 + - uid: 4399 components: - pos: -13.629543,-30.506866 parent: 2 type: Transform - proto: CigPackGreen entities: - - uid: 4175 + - uid: 4400 components: - pos: -28.33635,-18.319086 parent: 2 type: Transform - proto: CircuitImprinter entities: - - uid: 4176 + - uid: 4401 components: - pos: -7.5,27.5 parent: 2 type: Transform - proto: CloningPod entities: - - uid: 4177 + - uid: 4402 components: - pos: -23.5,14.5 parent: 2 type: Transform - proto: ClosetBombFilled entities: - - uid: 4178 + - uid: 4403 components: - pos: 10.5,-10.5 parent: 2 type: Transform - proto: ClosetChefFilled entities: - - uid: 4179 + - uid: 4404 components: - pos: -6.5,0.5 parent: 2 type: Transform - proto: ClosetEmergencyFilledRandom entities: - - uid: 4180 + - uid: 4405 components: - pos: 18.5,8.5 parent: 2 type: Transform - - uid: 4181 + - uid: 4406 components: - pos: -25.5,22.5 parent: 2 type: Transform - - uid: 4182 + - uid: 4407 components: - pos: -13.5,16.5 parent: 2 type: Transform - - uid: 4183 + - uid: 4408 components: - pos: -17.5,33.5 parent: 2 type: Transform - - uid: 4184 + - uid: 4409 components: - pos: 28.5,25.5 parent: 2 type: Transform - - uid: 4185 + - uid: 4410 components: - pos: 27.5,3.5 parent: 2 type: Transform - - uid: 4186 + - uid: 4411 components: - pos: 16.5,-9.5 parent: 2 type: Transform - proto: ClosetFireFilled entities: - - uid: 4187 + - uid: 4412 components: - pos: 18.5,9.5 parent: 2 type: Transform - - uid: 4188 + - uid: 4413 components: - pos: -13.5,17.5 parent: 2 type: Transform - - uid: 4189 + - uid: 4414 components: - pos: -25.5,23.5 parent: 2 type: Transform - - uid: 4190 + - uid: 4415 components: - pos: -17.5,32.5 parent: 2 type: Transform - - uid: 4191 + - uid: 4416 components: - pos: 28.5,23.5 parent: 2 type: Transform - - uid: 4192 + - uid: 4417 components: - pos: 21.5,-7.5 parent: 2 type: Transform - proto: ClosetL3JanitorFilled entities: - - uid: 4193 + - uid: 4418 components: - pos: 5.5,8.5 parent: 2 type: Transform - proto: ClosetL3ScienceFilled entities: - - uid: 4194 + - uid: 4419 components: - pos: -17.5,35.5 parent: 2 type: Transform - proto: ClosetMaintenanceFilledRandom entities: - - uid: 4195 + - uid: 4420 components: - pos: -19.5,-0.5 parent: 2 type: Transform - - uid: 4196 + - uid: 4421 components: - pos: 15.5,-11.5 parent: 2 type: Transform - - uid: 4197 + - uid: 4422 components: - pos: -8.5,-14.5 parent: 2 type: Transform - - uid: 4198 + - uid: 4423 components: - pos: -26.5,30.5 parent: 2 type: Transform - - uid: 4199 + - uid: 4424 components: - pos: -11.5,20.5 parent: 2 type: Transform - - uid: 4200 + - uid: 4425 components: - pos: 28.5,26.5 parent: 2 type: Transform - - uid: 4201 + - uid: 4426 components: - pos: 25.5,-7.5 parent: 2 type: Transform - - uid: 4202 + - uid: 4427 components: - pos: 21.5,4.5 parent: 2 type: Transform - proto: ClosetRadiationSuitFilled entities: - - uid: 4203 + - uid: 4428 components: - pos: -17.5,34.5 parent: 2 type: Transform - proto: ClosetToolFilled entities: - - uid: 4204 + - uid: 4429 components: - pos: 12.5,10.5 parent: 2 type: Transform - proto: ClosetWall entities: - - uid: 4205 + - uid: 4430 components: - pos: 1.5,30.5 parent: 2 type: Transform - proto: ClosetWallEmergencyFilledRandom entities: - - uid: 4206 + - uid: 4431 components: - rot: 3.141592653589793 rad pos: -4.5,-16.5 parent: 2 type: Transform - - uid: 4207 + - uid: 4432 components: - rot: 3.141592653589793 rad pos: -29.5,-9.5 parent: 2 type: Transform - - uid: 4208 + - uid: 4433 components: - rot: -1.5707963267948966 rad pos: -10.5,3.5 parent: 2 type: Transform - - uid: 4209 + - uid: 4434 components: - rot: -1.5707963267948966 rad pos: -10.5,-13.5 parent: 2 type: Transform - - uid: 4210 + - uid: 4435 components: - rot: 1.5707963267948966 rad pos: -4.5,-22.5 parent: 2 type: Transform - - uid: 4211 + - uid: 4436 components: - pos: -24.5,6.5 parent: 2 type: Transform - proto: ClosetWallFireFilledRandom entities: - - uid: 4212 + - uid: 4437 components: - rot: 3.141592653589793 rad pos: -5.5,-16.5 parent: 2 type: Transform - - uid: 4213 + - uid: 4438 components: - rot: -1.5707963267948966 rad pos: -10.5,2.5 parent: 2 type: Transform - - uid: 4214 + - uid: 4439 components: - rot: 1.5707963267948966 rad pos: -31.5,0.5 parent: 2 type: Transform - - uid: 4215 + - uid: 4440 components: - rot: 1.5707963267948966 rad pos: -31.5,-7.5 parent: 2 type: Transform - - uid: 4216 + - uid: 4441 components: - rot: -1.5707963267948966 rad pos: -10.5,-12.5 parent: 2 type: Transform - - uid: 4217 + - uid: 4442 components: - rot: 1.5707963267948966 rad pos: -4.5,-21.5 @@ -27198,653 +28318,662 @@ entities: type: Transform - proto: ClosetWallMaintenanceFilledRandom entities: - - uid: 4218 + - uid: 4443 components: - pos: -26.5,-22.5 parent: 2 type: Transform - proto: ClothingBackpackClown entities: - - uid: 4219 + - uid: 4444 components: - pos: 0.69071966,-13.577608 parent: 2 type: Transform - proto: ClothingBackpackDuffelSurgeryFilled entities: - - uid: 4220 + - uid: 4445 components: - pos: -23.221302,20.61573 parent: 2 type: Transform - - uid: 4221 + - uid: 4446 components: - pos: 0.5588009,22.572884 parent: 2 type: Transform - proto: ClothingBeltChampion entities: - - uid: 4222 + - uid: 4447 components: - pos: -14.40449,-19.44704 parent: 2 type: Transform - proto: ClothingBeltUtility entities: - - uid: 4223 + - uid: 4448 components: - pos: -2.4277606,15.502716 parent: 2 type: Transform - proto: ClothingBeltUtilityFilled entities: - - uid: 4224 + - uid: 4449 components: - pos: 2.3916261,17.509975 parent: 2 type: Transform - - uid: 4225 + - uid: 4450 components: - pos: -15.421325,16.620773 parent: 2 type: Transform - - uid: 4226 + - uid: 4451 components: - pos: -14.610425,30.690672 parent: 2 type: Transform - - uid: 4227 + - uid: 4452 components: - pos: -0.5427289,25.937965 parent: 2 type: Transform - - uid: 4228 + - uid: 4453 components: - - pos: -0.48457637,19.561972 + - pos: -0.44392976,22.589764 parent: 2 type: Transform - proto: ClothingEyesEyepatch entities: - - uid: 4229 + - uid: 4454 components: - pos: 24.334232,-13.25629 parent: 2 type: Transform - proto: ClothingEyesGlasses entities: - - uid: 4230 + - uid: 4455 components: - pos: -2.4097528,36.78708 parent: 2 type: Transform - proto: ClothingEyesGlassesMeson entities: - - uid: 4231 + - uid: 4456 components: - - pos: -0.64522135,19.342968 + - pos: -0.6523021,22.355389 parent: 2 type: Transform - proto: ClothingEyesGlassesSunglasses entities: - - uid: 4232 + - uid: 4457 components: - pos: 52.646976,30.11999 parent: 2 type: Transform - - uid: 4233 + - uid: 4458 components: - pos: 48.428226,24.838737 parent: 2 type: Transform - proto: ClothingEyesHudMedical entities: - - uid: 4234 + - uid: 4459 components: - pos: -21.450468,22.783903 parent: 2 type: Transform - proto: ClothingEyesHudSecurity entities: - - uid: 4235 + - uid: 4460 components: - - pos: 13.071597,-17.533405 + - pos: 23.70889,-17.523159 parent: 2 type: Transform - - uid: 4236 + - uid: 4461 components: - - pos: 23.64327,-17.583406 + - pos: 23.33389,-17.445034 parent: 2 type: Transform - - uid: 4237 + - uid: 4462 components: - - pos: 22.64327,-17.56256 + - pos: 13.071597,-17.533405 parent: 2 type: Transform - - uid: 4238 + - uid: 4463 components: - pos: 13.029931,-17.38747 parent: 2 type: Transform - proto: ClothingHandsDispelGloves entities: - - uid: 4239 + - uid: 4464 components: - pos: -25.600224,-20.338589 parent: 2 type: Transform - proto: ClothingHandsGlovesBoxingBlue entities: - - uid: 4240 + - uid: 4465 components: - pos: -31.50839,35.403908 parent: 2 type: Transform - proto: ClothingHandsGlovesBoxingGreen entities: - - uid: 4241 + - uid: 4466 components: - pos: -8.711445,-12.3150425 parent: 2 type: Transform - proto: ClothingHandsGlovesBoxingRed entities: - - uid: 4242 + - uid: 4467 components: - pos: -8.35207,-12.5962925 parent: 2 type: Transform - - uid: 4243 + - uid: 4468 components: - pos: -35.466724,31.474096 parent: 2 type: Transform - proto: ClothingHandsGlovesColorGreen entities: - - uid: 4244 + - uid: 4469 components: - pos: -29.476974,-18.506586 parent: 2 type: Transform - proto: ClothingHandsGlovesColorLightBrown entities: - - uid: 4245 + - uid: 4470 components: - pos: -4.3118644,-12.713078 parent: 2 type: Transform - proto: ClothingHandsGlovesColorYellow entities: - - uid: 4246 + - uid: 4471 components: - pos: 17.295452,-9.467656 parent: 2 type: Transform - proto: ClothingHandsGlovesColorYellowBudget entities: - - uid: 4247 + - uid: 4472 components: - pos: 2.8290062,17.500422 parent: 2 type: Transform - proto: ClothingHandsGlovesFingerless entities: - - uid: 4248 + - uid: 4473 components: - pos: -29.260265,-23.823717 parent: 2 type: Transform - - uid: 4249 + - uid: 4474 components: - pos: -27.480875,-16.481936 parent: 2 type: Transform - proto: ClothingHeadHatBeret entities: - - uid: 4250 + - uid: 4475 components: - pos: -29.706646,-24.212168 parent: 2 type: Transform - proto: ClothingHeadHatCone entities: - - uid: 4251 + - uid: 4476 components: - pos: -25.50438,-41.453415 parent: 2 type: Transform - - uid: 4252 + - uid: 4477 components: - pos: -24.426254,-41.28154 parent: 2 type: Transform - - uid: 4253 + - uid: 4478 components: - pos: -19.50629,-42.67721 parent: 2 type: Transform - - uid: 4254 + - uid: 4479 components: - pos: -20.03754,-41.33346 parent: 2 type: Transform - - uid: 4255 + - uid: 4480 components: - pos: -32.85447,-41.491417 parent: 2 type: Transform - - uid: 4256 + - uid: 4481 components: - pos: -30.745094,-43.913292 parent: 2 type: Transform - proto: ClothingHeadHatCorpsoftFlipped entities: - - uid: 4257 + - uid: 4482 components: - pos: -27.301373,-2.295784 parent: 2 type: Transform - proto: ClothingHeadHatFedoraBrown entities: - - uid: 4258 + - uid: 4483 components: - pos: -25.692308,-9.171927 parent: 2 type: Transform - proto: ClothingHeadHatGreensoftFlipped entities: - - uid: 4259 + - uid: 4484 components: - pos: -29.695724,-18.194086 parent: 2 type: Transform - proto: ClothingHeadHatHairflower entities: - - uid: 4260 + - uid: 4485 components: - pos: -14.827011,-19.222872 parent: 2 type: Transform - proto: ClothingHeadHatPirate entities: - - uid: 4261 + - uid: 4486 components: - pos: 24.637403,-13.204012 parent: 2 type: Transform - - uid: 4262 + - uid: 4487 components: - pos: 23.573605,4.814475 parent: 2 type: Transform - proto: ClothingHeadHatTophat entities: - - uid: 4263 + - uid: 4488 components: - pos: 35.446514,19.713148 parent: 2 type: Transform - proto: ClothingHeadHatUshanka entities: - - uid: 4264 + - uid: 4489 components: - pos: -33.466724,29.74373 parent: 2 type: Transform - - uid: 4265 + - uid: 4490 components: - pos: -33.247974,29.410164 parent: 2 type: Transform - proto: ClothingHeadHatWelding entities: - - uid: 4266 + - uid: 4491 components: - pos: 1.5363789,17.735477 parent: 2 type: Transform - - uid: 4267 + - uid: 4492 components: - pos: 8.275637,15.379625 parent: 2 type: Transform - - uid: 4268 + - uid: 4493 components: - pos: 8.724939,15.379625 parent: 2 type: Transform - proto: ClothingHeadHatWeldingMaskFlame entities: - - uid: 4269 + - uid: 4494 components: - pos: 13.770772,16.593826 parent: 2 type: Transform - - uid: 4270 + - uid: 4495 components: - pos: -3.376274,-14.352352 parent: 2 type: Transform - proto: ClothingHeadHatWeldingMaskFlameBlue entities: - - uid: 4271 + - uid: 4496 components: - pos: -27.515535,23.424908 parent: 2 type: Transform - proto: ClothingHeadHatWeldingMaskPainted entities: - - uid: 4272 + - uid: 4497 components: - pos: 19.758677,-11.577044 parent: 2 type: Transform - proto: ClothingHeadHatWizardFake entities: - - uid: 4273 + - uid: 4498 components: - pos: 26.30502,-29.291243 parent: 2 type: Transform - proto: ClothingHeadHatXmasCrown entities: - - uid: 4274 + - uid: 4499 components: - pos: -27.501709,-16.169218 parent: 2 type: Transform - proto: ClothingHeadHelmetTemplar entities: - - uid: 4275 + - uid: 4500 components: - pos: 17.67073,-9.498999 parent: 2 type: Transform - proto: ClothingHeadMailCarrier entities: - - uid: 4276 + - uid: 4501 components: - pos: 13.358376,5.9282403 parent: 2 type: Transform - proto: ClothingMaskClown entities: - - uid: 4277 + - uid: 4502 components: - pos: -33.491077,29.602762 parent: 2 type: Transform - proto: ClothingNeckMantleCap entities: - - uid: 4278 + - uid: 4503 components: - pos: -5.6337886,-29.214727 parent: 2 type: Transform - proto: ClothingNeckMantleCE entities: - - uid: 4279 + - uid: 4504 components: - pos: 24.641357,15.73859 parent: 2 type: Transform - proto: ClothingNeckMantleCMO entities: - - uid: 4280 + - uid: 4505 components: - pos: -21.585884,22.669239 parent: 2 type: Transform - proto: ClothingNeckMantleHOS entities: - - uid: 4281 + - uid: 4506 components: - pos: 26.404356,-19.232502 parent: 2 type: Transform - proto: ClothingNeckMantleMystagogue entities: - - uid: 4282 + - uid: 4507 components: - pos: -2.6285028,36.755806 parent: 2 type: Transform +- proto: ClothingNeckMantleQM + entities: + - uid: 4508 + components: + - pos: 18.569431,-5.025442 + parent: 2 + type: Transform - proto: ClothingNeckScarfStripedBlue entities: - - uid: 4283 + - uid: 4509 components: - pos: 24.385212,-9.313576 parent: 2 type: Transform - - uid: 4284 + - uid: 4510 components: - pos: 26.555025,-30.512697 parent: 2 type: Transform - - uid: 4285 + - uid: 4511 components: - pos: 35.678852,14.59115 parent: 2 type: Transform - proto: ClothingNeckScarfStripedGreen entities: - - uid: 4286 + - uid: 4512 components: - pos: 7.629384,-26.33031 parent: 2 type: Transform - - uid: 4287 + - uid: 4513 components: - pos: -6.766395,-2.4450836 parent: 2 type: Transform - proto: ClothingNeckScarfStripedRed entities: - - uid: 4288 + - uid: 4514 components: - pos: -15.468121,-8.270935 parent: 2 type: Transform - - uid: 4289 + - uid: 4515 components: - pos: -14.872714,19.93544 parent: 2 type: Transform - proto: ClothingNeckScarfStripedZebra entities: - - uid: 4290 + - uid: 4516 components: - pos: -0.48609942,-11.638247 parent: 2 type: Transform - proto: ClothingNeckStethoscope entities: - - uid: 4291 + - uid: 4517 components: - pos: -14.5,4.5 parent: 2 type: Transform - proto: ClothingOuterCoatBomber entities: - - uid: 4292 + - uid: 4518 components: - pos: -6.278481,-14.723167 parent: 2 type: Transform - - uid: 4293 + - uid: 4519 components: - pos: -33.36874,-8.605465 parent: 2 type: Transform - proto: ClothingOuterCoatJensen entities: - - uid: 4294 + - uid: 4520 components: - pos: -25.379808,-9.390677 parent: 2 type: Transform - proto: ClothingOuterCoatPirate entities: - - uid: 4295 + - uid: 4521 components: - pos: 24.418653,-13.547762 parent: 2 type: Transform - - uid: 4296 + - uid: 4522 components: - pos: 23.58402,4.449639 parent: 2 type: Transform -- proto: ClothingOuterHardsuitSecurity +- proto: ClothingOuterHardsuitCombatOfficer entities: - - uid: 4297 + - uid: 4524 components: - - pos: 22.5,-17.5 + - pos: 23.288805,-17.384716 parent: 2 type: Transform - - uid: 4298 +- proto: ClothingOuterHardsuitCombatRiot + entities: + - uid: 4523 components: - - pos: 23.5,-17.5 + - pos: 23.75764,-17.494669 parent: 2 type: Transform - proto: ClothingOuterWinterCap entities: - - uid: 4299 + - uid: 4525 components: - pos: -5.3994136,-29.449102 parent: 2 type: Transform - proto: ClothingOuterWinterCoat entities: - - uid: 4300 + - uid: 4526 components: - pos: -7.5336595,1.4666128 parent: 2 type: Transform - proto: ClothingOuterWizardFake entities: - - uid: 4301 + - uid: 4527 components: - pos: 26.30502,-29.838118 parent: 2 type: Transform - proto: ClothingShoesBootsJack entities: - - uid: 4302 + - uid: 4528 components: - pos: -17.425669,-23.340431 parent: 2 type: Transform - proto: ClothingShoesBootsMag entities: - - uid: 4303 + - uid: 4529 components: - pos: -1.5,-9.5 parent: 2 type: Transform - - uid: 4304 + - uid: 4530 components: - pos: -1.5,-9.5 parent: 2 type: Transform - proto: ClothingShoesBootsPerformer entities: - - uid: 4305 + - uid: 4531 components: - pos: -1.4384303,-11.3991585 parent: 2 type: Transform - proto: ClothingShoesBootsWork entities: - - uid: 4306 + - uid: 4532 components: - pos: -6.2900386,-28.427248 parent: 2 type: Transform - proto: ClothingShoesWizardFake entities: - - uid: 4307 + - uid: 4533 components: - pos: 25.863398,-29.718887 parent: 2 type: Transform - proto: ClothingUnderSocksBee entities: - - uid: 4308 + - uid: 4534 components: - pos: 11.586774,23.307724 parent: 2 type: Transform - - uid: 4309 + - uid: 4535 components: - pos: 15.562459,-9.539251 parent: 2 type: Transform - proto: ClothingUnderSocksCoder entities: - - uid: 4310 + - uid: 4536 components: - pos: 1.257832,28.771326 parent: 2 type: Transform - proto: ClothingUniformJumpskirtBartender entities: - - uid: 4311 + - uid: 4537 components: - pos: 35.686096,19.379583 parent: 2 type: Transform - proto: ClothingUniformJumpskirtPerformer entities: - - uid: 4312 + - uid: 4538 components: - pos: -1.448847,-11.315767 parent: 2 type: Transform - proto: ClothingUniformJumpsuitBartender entities: - - uid: 4313 + - uid: 4539 components: - pos: 35.86318,19.515095 parent: 2 type: Transform - proto: ClothingUniformMailCarrier entities: - - uid: 4314 + - uid: 4540 components: - pos: 13.337543,5.5008597 parent: 2 type: Transform - proto: Cobweb1 entities: - - uid: 4315 + - uid: 4541 components: - pos: 20.5,8.5 parent: 2 type: Transform - - uid: 4316 + - uid: 4542 components: - pos: 15.5,7.5 parent: 2 type: Transform - - uid: 4317 + - uid: 4543 components: - pos: -33.5,27.5 parent: 2 type: Transform - - uid: 4318 + - uid: 4544 components: - rot: -1.5707963267948966 rad pos: 25.5,-5.5 parent: 2 type: Transform - - uid: 4319 + - uid: 4545 components: - rot: -1.5707963267948966 rad pos: 27.5,-9.5 parent: 2 type: Transform - - uid: 4320 + - uid: 4546 components: - rot: -1.5707963267948966 rad pos: -2.5,-14.5 @@ -27852,38 +28981,38 @@ entities: type: Transform - proto: Cobweb2 entities: - - uid: 4321 + - uid: 4547 components: - pos: -25.5,20.5 parent: 2 type: Transform - - uid: 4322 + - uid: 4548 components: - pos: -29.5,35.5 parent: 2 type: Transform - - uid: 4323 + - uid: 4549 components: - rot: 3.141592653589793 rad pos: -20.5,-0.5 parent: 2 type: Transform - - uid: 4324 + - uid: 4550 components: - pos: 28.5,8.5 parent: 2 type: Transform - - uid: 4325 + - uid: 4551 components: - pos: 14.5,-8.5 parent: 2 type: Transform - - uid: 4326 + - uid: 4552 components: - pos: -13.5,24.5 parent: 2 type: Transform - - uid: 4327 + - uid: 4553 components: - rot: -1.5707963267948966 rad pos: 17.5,4.5 @@ -27891,75 +29020,75 @@ entities: type: Transform - proto: ComfyChair entities: - - uid: 4328 + - uid: 4554 components: - rot: 3.141592653589793 rad pos: 1.5,3.5 parent: 2 type: Transform - - uid: 4329 + - uid: 4555 components: - pos: 1.5,5.5 parent: 2 type: Transform - - uid: 4330 + - uid: 4556 components: - pos: -5.5,-22.5 parent: 2 type: Transform - - uid: 4331 + - uid: 4557 components: - pos: -6.5,-22.5 parent: 2 type: Transform - - uid: 4332 + - uid: 4558 components: - rot: 3.141592653589793 rad pos: -6.5,-24.5 parent: 2 type: Transform - - uid: 4333 + - uid: 4559 components: - rot: 3.141592653589793 rad pos: 6.5,-29.5 parent: 2 type: Transform - - uid: 4334 + - uid: 4560 components: - rot: -1.5707963267948966 rad pos: 26.5,-20.5 parent: 2 type: Transform - - uid: 4335 + - uid: 4561 components: - rot: 3.141592653589793 rad pos: 25.5,-21.5 parent: 2 type: Transform - - uid: 4336 + - uid: 4562 components: - rot: -1.5707963267948966 rad pos: -13.5,-29.5 parent: 2 type: Transform - - uid: 4337 + - uid: 4563 components: - rot: -1.5707963267948966 rad pos: -13.5,-31.5 parent: 2 type: Transform - - uid: 4338 + - uid: 4564 components: - pos: 25.5,-30.5 parent: 2 type: Transform - - uid: 4339 + - uid: 4565 components: - rot: 1.5707963267948966 rad pos: -12.5,27.5 parent: 2 type: Transform - - uid: 4340 + - uid: 4566 components: - rot: -1.5707963267948966 rad pos: -18.5,-20.5 @@ -27967,7 +29096,7 @@ entities: type: Transform - proto: ComputerAlert entities: - - uid: 4341 + - uid: 4567 components: - rot: 1.5707963267948966 rad pos: 13.5,15.5 @@ -27975,26 +29104,26 @@ entities: type: Transform - proto: ComputerAnalysisConsole entities: - - uid: 4342 + - uid: 4568 components: - pos: -13.5,33.5 parent: 2 type: Transform - proto: ComputerCargoBounty entities: - - uid: 4343 + - uid: 4569 components: - pos: 11.5,0.5 parent: 2 type: Transform - proto: ComputerCargoOrders entities: - - uid: 4344 + - uid: 4570 components: - pos: 17.5,-4.5 parent: 2 type: Transform - - uid: 4345 + - uid: 4571 components: - rot: -1.5707963267948966 rad pos: 12.5,-0.5 @@ -28002,7 +29131,7 @@ entities: type: Transform - proto: ComputerCargoShuttle entities: - - uid: 4346 + - uid: 4572 components: - rot: 3.141592653589793 rad pos: 15.5,-2.5 @@ -28010,7 +29139,7 @@ entities: type: Transform - proto: ComputerCloningConsole entities: - - uid: 4347 + - uid: 4573 components: - rot: 1.5707963267948966 rad pos: -23.5,13.5 @@ -28018,13 +29147,13 @@ entities: type: Transform - proto: ComputerComms entities: - - uid: 4348 + - uid: 4574 components: - rot: -1.5707963267948966 rad pos: -5.5,-25.5 parent: 2 type: Transform - - uid: 4349 + - uid: 4575 components: - rot: 3.141592653589793 rad pos: -0.5,-29.5 @@ -28032,44 +29161,44 @@ entities: type: Transform - proto: ComputerCrewMonitoring entities: - - uid: 4350 + - uid: 4576 components: - rot: 1.5707963267948966 rad pos: -3.5,-26.5 parent: 2 type: Transform - - uid: 4351 + - uid: 4577 components: - rot: 3.141592653589793 rad pos: -22.5,7.5 parent: 2 type: Transform - - uid: 4352 + - uid: 4578 components: - pos: -20.5,22.5 parent: 2 type: Transform - proto: ComputerCriminalRecords entities: - - uid: 4353 + - uid: 4579 components: - rot: 1.5707963267948966 rad pos: -2.5,-28.5 parent: 2 type: Transform - - uid: 4354 + - uid: 4580 components: - rot: 1.5707963267948966 rad pos: -20.5,-6.5 parent: 2 type: Transform - - uid: 4355 + - uid: 4581 components: - rot: 1.5707963267948966 rad pos: 7.5,-14.5 parent: 2 type: Transform - - uid: 4356 + - uid: 4582 components: - rot: 3.141592653589793 rad pos: 13.5,-14.5 @@ -28077,47 +29206,47 @@ entities: type: Transform - proto: ComputerId entities: - - uid: 4357 + - uid: 4583 components: - rot: -1.5707963267948966 rad pos: -17.5,19.5 parent: 2 type: Transform - - uid: 4358 + - uid: 4584 components: - pos: 20.5,-18.5 parent: 2 type: Transform - - uid: 4359 + - uid: 4585 components: - rot: -1.5707963267948966 rad pos: 1.5,-28.5 parent: 2 type: Transform - - uid: 4360 + - uid: 4586 components: - rot: -1.5707963267948966 rad pos: -5.5,-24.5 parent: 2 type: Transform - - uid: 4361 + - uid: 4587 components: - rot: 3.141592653589793 rad pos: 6.5,-5.5 parent: 2 type: Transform - - uid: 4362 + - uid: 4588 components: - rot: -1.5707963267948966 rad pos: 18.5,-6.5 parent: 2 type: Transform - - uid: 4363 + - uid: 4589 components: - pos: -0.5,37.5 parent: 2 type: Transform - - uid: 4364 + - uid: 4590 components: - rot: 3.141592653589793 rad pos: 23.5,12.5 @@ -28125,7 +29254,7 @@ entities: type: Transform - proto: ComputerMedicalRecords entities: - - uid: 4365 + - uid: 4591 components: - rot: 1.5707963267948966 rad pos: -3.5,-27.5 @@ -28133,24 +29262,24 @@ entities: type: Transform - proto: ComputerPowerMonitoring entities: - - uid: 4366 + - uid: 4592 components: - rot: -1.5707963267948966 rad pos: 2.5,-27.5 parent: 2 type: Transform - - uid: 4367 + - uid: 4593 components: - pos: 20.5,14.5 parent: 2 type: Transform - - uid: 4368 + - uid: 4594 components: - rot: 3.141592653589793 rad pos: 13.5,12.5 parent: 2 type: Transform - - uid: 4369 + - uid: 4595 components: - rot: 3.141592653589793 rad pos: 37.5,14.5 @@ -28158,18 +29287,18 @@ entities: type: Transform - proto: ComputerRadar entities: - - uid: 4370 + - uid: 4596 components: - rot: -1.5707963267948966 rad pos: 2.5,-26.5 parent: 2 type: Transform - - uid: 4371 + - uid: 4597 components: - pos: -35.5,-27.5 parent: 2 type: Transform - - uid: 4372 + - uid: 4598 components: - rot: 1.5707963267948966 rad pos: 42.5,-10.5 @@ -28177,20 +29306,20 @@ entities: type: Transform - proto: ComputerResearchAndDevelopment entities: - - uid: 4373 + - uid: 4599 components: - rot: -1.5707963267948966 rad pos: -0.5,27.5 parent: 2 type: Transform - - uid: 4374 + - uid: 4600 components: - pos: -12.5,33.5 parent: 2 type: Transform - proto: ComputerShuttleCargo entities: - - uid: 4375 + - uid: 4601 components: - rot: -1.5707963267948966 rad pos: 28.5,0.5 @@ -28198,19 +29327,19 @@ entities: type: Transform - proto: ComputerShuttleSalvage entities: - - uid: 4376 + - uid: 4602 components: - pos: 30.5,-3.5 parent: 2 type: Transform - proto: ComputerSolarControl entities: - - uid: 4377 + - uid: 4603 components: - pos: -22.5,28.5 parent: 2 type: Transform - - uid: 4378 + - uid: 4604 components: - rot: 3.141592653589793 rad pos: 36.5,14.5 @@ -28218,12 +29347,12 @@ entities: type: Transform - proto: ComputerStationRecords entities: - - uid: 4379 + - uid: 4605 components: - pos: -18.5,-19.5 parent: 2 type: Transform - - uid: 4380 + - uid: 4606 components: - rot: 3.141592653589793 rad pos: 0.5,-29.5 @@ -28231,23 +29360,27 @@ entities: type: Transform - proto: ComputerSurveillanceCameraMonitor entities: - - uid: 4381 + - uid: 4607 components: - rot: 3.141592653589793 rad pos: -1.5,-29.5 parent: 2 type: Transform -- proto: ComputerSurveillanceWirelessCameraMonitor - entities: - - uid: 4382 + - uid: 4608 components: - rot: 3.141592653589793 rad pos: 15.5,-17.5 parent: 2 type: Transform + - uid: 4609 + components: + - rot: 1.5707963267948966 rad + pos: -19.5,-21.5 + parent: 2 + type: Transform - proto: ComputerTechnologyDiskTerminal entities: - - uid: 4383 + - uid: 4610 components: - rot: 1.5707963267948966 rad pos: -7.5,29.5 @@ -28255,253 +29388,248 @@ entities: type: Transform - proto: ComputerTelevision entities: - - uid: 4384 + - uid: 4611 components: - pos: -29.5,-15.5 parent: 2 type: Transform - - uid: 4385 + - uid: 4612 components: - pos: -29.5,-22.5 parent: 2 type: Transform - - uid: 4386 + - uid: 4613 components: - pos: 13.5,-29.5 parent: 2 type: Transform - - uid: 4387 - components: - - pos: -19.5,-21.5 - parent: 2 - type: Transform - proto: ConveyorBelt entities: - - uid: 4388 + - uid: 4614 components: - rot: 1.5707963267948966 rad pos: 27.5,2.5 parent: 2 type: Transform - links: - - 9159 + - 9388 type: DeviceLinkSink - - uid: 4389 + - uid: 4615 components: - rot: 1.5707963267948966 rad pos: 11.5,-2.5 parent: 2 type: Transform - links: - - 9158 + - 9387 type: DeviceLinkSink - - uid: 4390 + - uid: 4616 components: - rot: 1.5707963267948966 rad pos: 32.5,2.5 parent: 2 type: Transform - - uid: 4391 + - uid: 4617 components: - rot: 1.5707963267948966 rad pos: 11.5,8.5 parent: 2 type: Transform - links: - - 9157 + - 9386 type: DeviceLinkSink - - uid: 4392 + - uid: 4618 components: - rot: 1.5707963267948966 rad pos: 10.5,8.5 parent: 2 type: Transform - links: - - 9157 + - 9386 type: DeviceLinkSink - - uid: 4393 + - uid: 4619 components: - rot: 1.5707963267948966 rad pos: 13.5,8.5 parent: 2 type: Transform - links: - - 9157 + - 9386 type: DeviceLinkSink - - uid: 4394 + - uid: 4620 components: - rot: 1.5707963267948966 rad pos: 21.5,2.5 parent: 2 type: Transform - links: - - 9159 + - 9388 type: DeviceLinkSink - - uid: 4395 + - uid: 4621 components: - rot: 1.5707963267948966 rad pos: 31.5,2.5 parent: 2 type: Transform - links: - - 9159 + - 9388 type: DeviceLinkSink - - uid: 4396 + - uid: 4622 components: - rot: 1.5707963267948966 rad pos: 23.5,2.5 parent: 2 type: Transform - links: - - 9159 + - 9388 type: DeviceLinkSink - - uid: 4397 + - uid: 4623 components: - rot: 1.5707963267948966 rad pos: 24.5,2.5 parent: 2 type: Transform - links: - - 9159 + - 9388 type: DeviceLinkSink - - uid: 4398 + - uid: 4624 components: - rot: 1.5707963267948966 rad pos: 32.5,-1.5 parent: 2 type: Transform - links: - - 9159 + - 9388 type: DeviceLinkSink - - uid: 4399 + - uid: 4625 components: - rot: 1.5707963267948966 rad pos: 30.5,-1.5 parent: 2 type: Transform - links: - - 9159 + - 9388 type: DeviceLinkSink - - uid: 4400 + - uid: 4626 components: - rot: 1.5707963267948966 rad pos: 31.5,-1.5 parent: 2 type: Transform - links: - - 9159 + - 9388 type: DeviceLinkSink - - uid: 4401 + - uid: 4627 components: - rot: 1.5707963267948966 rad pos: 28.5,-1.5 parent: 2 type: Transform - links: - - 9159 + - 9388 type: DeviceLinkSink - - uid: 4402 + - uid: 4628 components: - rot: 1.5707963267948966 rad pos: 29.5,-1.5 parent: 2 type: Transform - links: - - 9159 + - 9388 type: DeviceLinkSink - - uid: 4403 + - uid: 4629 components: - rot: 1.5707963267948966 rad pos: 29.5,2.5 parent: 2 type: Transform - links: - - 9159 + - 9388 type: DeviceLinkSink - - uid: 4404 + - uid: 4630 components: - rot: 1.5707963267948966 rad pos: 30.5,2.5 parent: 2 type: Transform - links: - - 9159 + - 9388 type: DeviceLinkSink - - uid: 4405 + - uid: 4631 components: - rot: 1.5707963267948966 rad pos: 32.5,2.5 parent: 2 type: Transform - links: - - 9159 + - 9388 type: DeviceLinkSink - - uid: 4406 + - uid: 4632 components: - rot: 1.5707963267948966 rad pos: 26.5,2.5 parent: 2 type: Transform - links: - - 9159 + - 9388 type: DeviceLinkSink - - uid: 4407 + - uid: 4633 components: - rot: 1.5707963267948966 rad pos: 20.5,2.5 parent: 2 type: Transform - links: - - 9159 + - 9388 type: DeviceLinkSink - - uid: 4408 + - uid: 4634 components: - rot: 1.5707963267948966 rad pos: 28.5,2.5 parent: 2 type: Transform - links: - - 9159 + - 9388 type: DeviceLinkSink - - uid: 4409 + - uid: 4635 components: - rot: 1.5707963267948966 rad pos: 10.5,-2.5 parent: 2 type: Transform - links: - - 9158 + - 9387 type: DeviceLinkSink - - uid: 4410 + - uid: 4636 components: - rot: 1.5707963267948966 rad pos: 9.5,-2.5 parent: 2 type: Transform - links: - - 9158 + - 9387 type: DeviceLinkSink - - uid: 4411 + - uid: 4637 components: - rot: 1.5707963267948966 rad pos: 22.5,2.5 parent: 2 type: Transform - links: - - 9159 + - 9388 type: DeviceLinkSink - - uid: 4412 + - uid: 4638 components: - rot: 1.5707963267948966 rad pos: 25.5,2.5 parent: 2 type: Transform - links: - - 9159 + - 9388 type: DeviceLinkSink - proto: CrateArtifactContainer entities: - - uid: 4413 + - uid: 4639 components: - pos: -17.5,36.5 parent: 2 @@ -28526,19 +29654,19 @@ entities: type: EntityStorage - proto: CrateEmptySpawner entities: - - uid: 4414 + - uid: 4640 components: - pos: 18.5,2.5 parent: 2 type: Transform - - uid: 4415 + - uid: 4641 components: - pos: 27.5,-7.5 parent: 2 type: Transform - proto: CrateEngineeringAMEJar entities: - - uid: 4416 + - uid: 4642 components: - pos: 23.5,21.5 parent: 2 @@ -28563,7 +29691,7 @@ entities: type: EntityStorage - proto: CrateEngineeringAMEShielding entities: - - uid: 4417 + - uid: 4643 components: - pos: 21.5,25.5 parent: 2 @@ -28586,7 +29714,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 4418 + - uid: 4644 components: - pos: 21.5,26.5 parent: 2 @@ -28611,7 +29739,7 @@ entities: type: EntityStorage - proto: CrateEngineeringCableBulk entities: - - uid: 4419 + - uid: 4645 components: - pos: 22.5,16.5 parent: 2 @@ -28634,58 +29762,58 @@ entities: - 0 - 0 type: EntityStorage - - uid: 4420 + - uid: 4646 components: - pos: -33.5,-40.5 parent: 2 type: Transform - proto: CrateFilledSpawner entities: - - uid: 4421 + - uid: 4647 components: - pos: 16.5,1.5 parent: 2 type: Transform - - uid: 4422 + - uid: 4648 components: - pos: 34.5,-20.5 parent: 2 type: Transform - - uid: 4423 + - uid: 4649 components: - pos: 19.5,42.5 parent: 2 type: Transform - - uid: 4424 + - uid: 4650 components: - pos: 18.5,1.5 parent: 2 type: Transform - - uid: 4425 + - uid: 4651 components: - pos: 19.5,2.5 parent: 2 type: Transform - - uid: 4426 + - uid: 4652 components: - pos: 27.5,-6.5 parent: 2 type: Transform - proto: CrateInternals entities: - - uid: 4427 + - uid: 4653 components: - pos: -20.5,-43.5 parent: 2 type: Transform - - uid: 4428 + - uid: 4654 components: - pos: -21.5,-29.5 parent: 2 type: Transform - proto: CrateNPCCow entities: - - uid: 4429 + - uid: 4655 components: - pos: 0.5,1.5 parent: 2 @@ -28710,14 +29838,21 @@ entities: type: EntityStorage - proto: CrateNPCHamlet entities: - - uid: 4430 + - uid: 4656 components: - pos: 2.5,-17.5 parent: 2 type: Transform +- proto: CrateSecurityRiot + entities: + - uid: 4657 + components: + - pos: 24.5,-17.5 + parent: 2 + type: Transform - proto: Crematorium entities: - - uid: 4431 + - uid: 4658 components: - rot: -1.5707963267948966 rad pos: 5.5,20.5 @@ -28725,86 +29860,86 @@ entities: type: Transform - proto: CrewMonitoringServer entities: - - uid: 4432 + - uid: 4659 components: - pos: -7.5,44.5 parent: 2 type: Transform - proto: CrowbarRed entities: - - uid: 4433 + - uid: 4660 components: - pos: -14.522984,31.67019 parent: 2 type: Transform - - uid: 4434 + - uid: 4661 components: - pos: 15.440716,-9.488413 parent: 2 type: Transform - - uid: 4435 + - uid: 4662 components: - pos: 2.5627413,-28.456787 parent: 2 type: Transform - - uid: 4436 + - uid: 4663 components: - pos: -29.30733,-24.230965 parent: 2 type: Transform - - uid: 4437 + - uid: 4664 components: - pos: -19.081656,1.3935633 parent: 2 type: Transform - - uid: 4438 + - uid: 4665 components: - pos: 7.6322618,-5.291768 parent: 2 type: Transform - - uid: 4439 + - uid: 4666 components: - pos: -31.5,22.5 parent: 2 type: Transform - - uid: 4440 + - uid: 4667 components: - pos: -26.5,27.5 parent: 2 type: Transform - proto: CyberPen entities: - - uid: 4441 + - uid: 4668 components: - pos: -31.483238,-25.444899 parent: 2 type: Transform - proto: d6Dice entities: - - uid: 4442 + - uid: 4669 components: - pos: 33.44027,25.27352 parent: 2 type: Transform - - uid: 4443 + - uid: 4670 components: - pos: 33.700687,25.481997 parent: 2 type: Transform - - uid: 4444 + - uid: 4671 components: - pos: 33.80485,25.2214 parent: 2 type: Transform - proto: DefibrillatorCabinetFilled entities: - - uid: 4445 + - uid: 4672 components: - rot: -1.5707963267948966 rad pos: -20.5,7.5 parent: 2 type: Transform - - uid: 4446 + - uid: 4673 components: - rot: 1.5707963267948966 rad pos: -20.5,16.5 @@ -28812,349 +29947,349 @@ entities: type: Transform - proto: DeployableBarrier entities: - - uid: 4447 + - uid: 4674 components: - pos: 7.5,-10.5 parent: 2 type: Transform - - uid: 4448 + - uid: 4675 components: - pos: 8.5,-10.5 parent: 2 type: Transform - proto: DeskBell entities: - - uid: 4449 + - uid: 4676 components: - pos: 10.5,-1.5 parent: 2 type: Transform - proto: DiceBag entities: - - uid: 4450 + - uid: 4677 components: - pos: -19.277187,-12.446125 parent: 2 type: Transform - proto: DiseaseDiagnoser entities: - - uid: 4451 + - uid: 4678 components: - pos: -19.5,4.5 parent: 2 type: Transform - proto: DisposalBend entities: - - uid: 4452 + - uid: 4679 components: - rot: 1.5707963267948966 rad pos: -20.5,-14.5 parent: 2 type: Transform - - uid: 4453 + - uid: 4680 components: - pos: -26.5,3.5 parent: 2 type: Transform - - uid: 4454 + - uid: 4681 components: - rot: -1.5707963267948966 rad pos: 11.5,12.5 parent: 2 type: Transform - - uid: 4455 + - uid: 4682 components: - rot: 1.5707963267948966 rad pos: 11.5,20.5 parent: 2 type: Transform - - uid: 4456 + - uid: 4683 components: - rot: -1.5707963267948966 rad pos: 17.5,20.5 parent: 2 type: Transform - - uid: 4457 + - uid: 4684 components: - rot: 3.141592653589793 rad pos: 2.5,0.5 parent: 2 type: Transform - - uid: 4458 + - uid: 4685 components: - pos: 3.5,0.5 parent: 2 type: Transform - - uid: 4459 + - uid: 4686 components: - rot: 3.141592653589793 rad pos: 3.5,-12.5 parent: 2 type: Transform - - uid: 4460 + - uid: 4687 components: - rot: -1.5707963267948966 rad pos: 4.5,-18.5 parent: 2 type: Transform - - uid: 4461 + - uid: 4688 components: - rot: 1.5707963267948966 rad pos: -6.5,-18.5 parent: 2 type: Transform - - uid: 4462 + - uid: 4689 components: - rot: 1.5707963267948966 rad pos: -15.5,-11.5 parent: 2 type: Transform - - uid: 4463 + - uid: 4690 components: - rot: 1.5707963267948966 rad pos: -2.5,0.5 parent: 2 type: Transform - - uid: 4464 + - uid: 4691 components: - rot: -1.5707963267948966 rad pos: -2.5,-2.5 parent: 2 type: Transform - - uid: 4465 + - uid: 4692 components: - rot: -1.5707963267948966 rad pos: -6.5,-8.5 parent: 2 type: Transform - - uid: 4466 + - uid: 4693 components: - rot: -1.5707963267948966 rad pos: -4.5,9.5 parent: 2 type: Transform - - uid: 4467 + - uid: 4694 components: - rot: 1.5707963267948966 rad pos: -11.5,12.5 parent: 2 type: Transform - - uid: 4468 + - uid: 4695 components: - rot: 3.141592653589793 rad pos: -29.5,30.5 parent: 2 type: Transform - - uid: 4469 + - uid: 4696 components: - rot: 3.141592653589793 rad pos: 10.5,-21.5 parent: 2 type: Transform - - uid: 4470 + - uid: 4697 components: - pos: 10.5,-12.5 parent: 2 type: Transform - - uid: 4471 + - uid: 4698 components: - rot: 1.5707963267948966 rad pos: -27.5,-3.5 parent: 2 type: Transform - - uid: 4472 + - uid: 4699 components: - rot: 3.141592653589793 rad pos: 7.5,6.5 parent: 2 type: Transform - - uid: 4473 + - uid: 4700 components: - pos: 10.5,6.5 parent: 2 type: Transform - - uid: 4474 + - uid: 4701 components: - rot: 3.141592653589793 rad pos: -11.5,-21.5 parent: 2 type: Transform - - uid: 4475 + - uid: 4702 components: - rot: 1.5707963267948966 rad pos: -27.5,11.5 parent: 2 type: Transform - - uid: 4476 + - uid: 4703 components: - rot: 3.141592653589793 rad pos: -27.5,3.5 parent: 2 type: Transform - - uid: 4477 + - uid: 4704 components: - rot: 1.5707963267948966 rad pos: -18.5,16.5 parent: 2 type: Transform - - uid: 4478 + - uid: 4705 components: - pos: 17.5,-19.5 parent: 2 type: Transform - - uid: 4479 + - uid: 4706 components: - rot: -1.5707963267948966 rad pos: 21.5,13.5 parent: 2 type: Transform - - uid: 4480 + - uid: 4707 components: - rot: -1.5707963267948966 rad pos: -15.5,-12.5 parent: 2 type: Transform - - uid: 4481 + - uid: 4708 components: - rot: 1.5707963267948966 rad pos: -16.5,-12.5 parent: 2 type: Transform - - uid: 4482 + - uid: 4709 components: - rot: -1.5707963267948966 rad pos: -0.5,28.5 parent: 2 type: Transform - - uid: 4483 + - uid: 4710 components: - rot: 1.5707963267948966 rad pos: -6.5,33.5 parent: 2 type: Transform - - uid: 4484 + - uid: 4711 components: - rot: 1.5707963267948966 rad pos: -0.5,29.5 parent: 2 type: Transform - - uid: 4485 + - uid: 4712 components: - pos: 3.5,29.5 parent: 2 type: Transform - - uid: 4486 + - uid: 4713 components: - rot: 3.141592653589793 rad pos: 3.5,26.5 parent: 2 type: Transform - - uid: 4487 + - uid: 4714 components: - pos: 17.5,27.5 parent: 2 type: Transform - - uid: 4488 + - uid: 4715 components: - pos: -20.5,-18.5 parent: 2 type: Transform - - uid: 4489 + - uid: 4716 components: - rot: -1.5707963267948966 rad pos: -20.5,-15.5 parent: 2 type: Transform - - uid: 4490 + - uid: 4717 components: - rot: 3.141592653589793 rad pos: -22.5,-18.5 parent: 2 type: Transform - - uid: 4491 + - uid: 4718 components: - rot: 1.5707963267948966 rad pos: -22.5,-15.5 parent: 2 type: Transform - - uid: 4492 + - uid: 4719 components: - pos: 11.5,2.5 parent: 2 type: Transform - - uid: 4493 + - uid: 4720 components: - rot: 3.141592653589793 rad pos: 11.5,1.5 parent: 2 type: Transform - - uid: 4494 + - uid: 4721 components: - pos: 13.5,1.5 parent: 2 type: Transform - - uid: 4495 + - uid: 4722 components: - rot: 3.141592653589793 rad pos: 13.5,0.5 parent: 2 type: Transform - - uid: 4496 + - uid: 4723 components: - rot: 3.141592653589793 rad pos: 27.5,-3.5 parent: 2 type: Transform - - uid: 4497 + - uid: 4724 components: - pos: 27.5,0.5 parent: 2 type: Transform - proto: DisposalJunction entities: - - uid: 4498 + - uid: 4725 components: - rot: 3.141592653589793 rad pos: -11.5,-2.5 parent: 2 type: Transform - - uid: 4499 + - uid: 4726 components: - rot: 3.141592653589793 rad pos: 2.5,6.5 parent: 2 type: Transform - - uid: 4500 + - uid: 4727 components: - rot: 3.141592653589793 rad pos: 2.5,2.5 parent: 2 type: Transform - - uid: 4501 + - uid: 4728 components: - rot: 1.5707963267948966 rad pos: -3.5,-18.5 parent: 2 type: Transform - - uid: 4502 + - uid: 4729 components: - rot: 3.141592653589793 rad pos: -6.5,-5.5 parent: 2 type: Transform - - uid: 4503 + - uid: 4730 components: - rot: 3.141592653589793 rad pos: -11.5,9.5 parent: 2 type: Transform - - uid: 4504 + - uid: 4731 components: - rot: 3.141592653589793 rad pos: 10.5,-19.5 parent: 2 type: Transform - - uid: 4505 + - uid: 4732 components: - rot: -1.5707963267948966 rad pos: -2.5,28.5 @@ -29162,94 +30297,94 @@ entities: type: Transform - proto: DisposalJunctionFlipped entities: - - uid: 4506 + - uid: 4733 components: - rot: 3.141592653589793 rad pos: -11.5,-3.5 parent: 2 type: Transform - - uid: 4507 + - uid: 4734 components: - pos: 11.5,16.5 parent: 2 type: Transform - - uid: 4508 + - uid: 4735 components: - rot: -1.5707963267948966 rad pos: 4.5,-12.5 parent: 2 type: Transform - - uid: 4509 + - uid: 4736 components: - rot: 1.5707963267948966 rad pos: 0.5,-18.5 parent: 2 type: Transform - - uid: 4510 + - uid: 4737 components: - rot: 3.141592653589793 rad pos: -11.5,-11.5 parent: 2 type: Transform - - uid: 4511 + - uid: 4738 components: - rot: -1.5707963267948966 rad pos: -6.5,-2.5 parent: 2 type: Transform - - uid: 4512 + - uid: 4739 components: - rot: 3.141592653589793 rad pos: -11.5,8.5 parent: 2 type: Transform - - uid: 4513 + - uid: 4740 components: - rot: 1.5707963267948966 rad pos: -6.5,12.5 parent: 2 type: Transform - - uid: 4514 + - uid: 4741 components: - rot: 1.5707963267948966 rad pos: -4.5,12.5 parent: 2 type: Transform - - uid: 4515 + - uid: 4742 components: - rot: 1.5707963267948966 rad pos: -26.5,-3.5 parent: 2 type: Transform - - uid: 4516 + - uid: 4743 components: - pos: 11.5,13.5 parent: 2 type: Transform - - uid: 4517 + - uid: 4744 components: - rot: 3.141592653589793 rad pos: -16.5,-14.5 parent: 2 type: Transform - - uid: 4518 + - uid: 4745 components: - pos: -6.5,28.5 parent: 2 type: Transform - - uid: 4519 + - uid: 4746 components: - rot: -1.5707963267948966 rad pos: 6.5,2.5 parent: 2 type: Transform - - uid: 4520 + - uid: 4747 components: - rot: -1.5707963267948966 rad pos: 17.5,0.5 parent: 2 type: Transform - - uid: 4521 + - uid: 4748 components: - rot: 1.5707963267948966 rad pos: -14.5,-11.5 @@ -29257,1695 +30392,1695 @@ entities: type: Transform - proto: DisposalMachineFrame entities: - - uid: 4522 + - uid: 4749 components: - pos: -29.5,35.5 parent: 2 type: Transform - proto: DisposalPipe entities: - - uid: 4523 + - uid: 4750 components: - rot: -1.5707963267948966 rad pos: -18.5,-14.5 parent: 2 type: Transform - - uid: 4524 + - uid: 4751 components: - rot: 1.5707963267948966 rad pos: -19.5,-14.5 parent: 2 type: Transform - - uid: 4525 + - uid: 4752 components: - rot: 1.5707963267948966 rad pos: 3.5,2.5 parent: 2 type: Transform - - uid: 4526 + - uid: 4753 components: - rot: 1.5707963267948966 rad pos: 4.5,2.5 parent: 2 type: Transform - - uid: 4527 + - uid: 4754 components: - rot: 1.5707963267948966 rad pos: -12.5,-3.5 parent: 2 type: Transform - - uid: 4528 + - uid: 4755 components: - rot: 1.5707963267948966 rad pos: -13.5,-3.5 parent: 2 type: Transform - - uid: 4529 + - uid: 4756 components: - rot: -1.5707963267948966 rad pos: -14.5,-3.5 parent: 2 type: Transform - - uid: 4530 + - uid: 4757 components: - rot: 3.141592653589793 rad pos: -11.5,-4.5 parent: 2 type: Transform - - uid: 4531 + - uid: 4758 components: - rot: 1.5707963267948966 rad pos: 4.5,8.5 parent: 2 type: Transform - - uid: 4532 + - uid: 4759 components: - rot: 1.5707963267948966 rad pos: 3.5,8.5 parent: 2 type: Transform - - uid: 4533 + - uid: 4760 components: - rot: 1.5707963267948966 rad pos: 8.5,8.5 parent: 2 type: Transform - - uid: 4534 + - uid: 4761 components: - rot: 1.5707963267948966 rad pos: 9.5,8.5 parent: 2 type: Transform - - uid: 4535 + - uid: 4762 components: - rot: 1.5707963267948966 rad pos: 5.5,8.5 parent: 2 type: Transform - - uid: 4536 + - uid: 4763 components: - rot: 1.5707963267948966 rad pos: 6.5,8.5 parent: 2 type: Transform - - uid: 4537 + - uid: 4764 components: - rot: -1.5707963267948966 rad pos: -2.5,12.5 parent: 2 type: Transform - - uid: 4538 + - uid: 4765 components: - rot: -1.5707963267948966 rad pos: 1.5,12.5 parent: 2 type: Transform - - uid: 4539 + - uid: 4766 components: - rot: -1.5707963267948966 rad pos: 0.5,12.5 parent: 2 type: Transform - - uid: 4540 + - uid: 4767 components: - rot: -1.5707963267948966 rad pos: -0.5,12.5 parent: 2 type: Transform - - uid: 4541 + - uid: 4768 components: - rot: -1.5707963267948966 rad pos: -1.5,12.5 parent: 2 type: Transform - - uid: 4542 + - uid: 4769 components: - rot: -1.5707963267948966 rad pos: 3.5,12.5 parent: 2 type: Transform - - uid: 4543 + - uid: 4770 components: - rot: -1.5707963267948966 rad pos: 4.5,12.5 parent: 2 type: Transform - - uid: 4544 + - uid: 4771 components: - rot: -1.5707963267948966 rad pos: 5.5,12.5 parent: 2 type: Transform - - uid: 4545 + - uid: 4772 components: - rot: -1.5707963267948966 rad pos: 6.5,12.5 parent: 2 type: Transform - - uid: 4546 + - uid: 4773 components: - rot: -1.5707963267948966 rad pos: 7.5,12.5 parent: 2 type: Transform - - uid: 4547 + - uid: 4774 components: - rot: -1.5707963267948966 rad pos: 8.5,12.5 parent: 2 type: Transform - - uid: 4548 + - uid: 4775 components: - rot: -1.5707963267948966 rad pos: 9.5,12.5 parent: 2 type: Transform - - uid: 4549 + - uid: 4776 components: - rot: -1.5707963267948966 rad pos: 10.5,12.5 parent: 2 type: Transform - - uid: 4550 + - uid: 4777 components: - rot: 3.141592653589793 rad pos: 11.5,14.5 parent: 2 type: Transform - - uid: 4551 + - uid: 4778 components: - rot: 3.141592653589793 rad pos: 11.5,15.5 parent: 2 type: Transform - - uid: 4552 + - uid: 4779 components: - pos: 11.5,17.5 parent: 2 type: Transform - - uid: 4553 + - uid: 4780 components: - pos: 11.5,18.5 parent: 2 type: Transform - - uid: 4554 + - uid: 4781 components: - pos: 11.5,19.5 parent: 2 type: Transform - - uid: 4555 + - uid: 4782 components: - rot: 1.5707963267948966 rad pos: 12.5,20.5 parent: 2 type: Transform - - uid: 4556 + - uid: 4783 components: - rot: 1.5707963267948966 rad pos: 13.5,20.5 parent: 2 type: Transform - - uid: 4557 + - uid: 4784 components: - rot: 1.5707963267948966 rad pos: 14.5,20.5 parent: 2 type: Transform - - uid: 4558 + - uid: 4785 components: - rot: 1.5707963267948966 rad pos: 15.5,20.5 parent: 2 type: Transform - - uid: 4559 + - uid: 4786 components: - rot: 1.5707963267948966 rad pos: 16.5,20.5 parent: 2 type: Transform - - uid: 4560 + - uid: 4787 components: - rot: 3.141592653589793 rad pos: 17.5,21.5 parent: 2 type: Transform - - uid: 4561 + - uid: 4788 components: - rot: 3.141592653589793 rad pos: 17.5,22.5 parent: 2 type: Transform - - uid: 4562 + - uid: 4789 components: - rot: 3.141592653589793 rad pos: 17.5,23.5 parent: 2 type: Transform - - uid: 4563 + - uid: 4790 components: - rot: 3.141592653589793 rad pos: 17.5,24.5 parent: 2 type: Transform - - uid: 4564 + - uid: 4791 components: - rot: 3.141592653589793 rad pos: 17.5,25.5 parent: 2 type: Transform - - uid: 4565 + - uid: 4792 components: - rot: 3.141592653589793 rad pos: 17.5,26.5 parent: 2 type: Transform - - uid: 4566 + - uid: 4793 components: - rot: -1.5707963267948966 rad pos: 16.5,27.5 parent: 2 type: Transform - - uid: 4567 + - uid: 4794 components: - rot: -1.5707963267948966 rad pos: 15.5,27.5 parent: 2 type: Transform - - uid: 4568 + - uid: 4795 components: - rot: -1.5707963267948966 rad pos: 14.5,27.5 parent: 2 type: Transform - - uid: 4569 + - uid: 4796 components: - pos: 2.5,11.5 parent: 2 type: Transform - - uid: 4570 + - uid: 4797 components: - pos: 2.5,10.5 parent: 2 type: Transform - - uid: 4571 + - uid: 4798 components: - pos: 2.5,9.5 parent: 2 type: Transform - - uid: 4572 + - uid: 4799 components: - pos: 2.5,7.5 parent: 2 type: Transform - - uid: 4573 + - uid: 4800 components: - rot: -1.5707963267948966 rad pos: 3.5,6.5 parent: 2 type: Transform - - uid: 4574 + - uid: 4801 components: - rot: 3.141592653589793 rad pos: 2.5,5.5 parent: 2 type: Transform - - uid: 4575 + - uid: 4802 components: - rot: 3.141592653589793 rad pos: 2.5,4.5 parent: 2 type: Transform - - uid: 4576 + - uid: 4803 components: - rot: 3.141592653589793 rad pos: 2.5,3.5 parent: 2 type: Transform - - uid: 4577 + - uid: 4804 components: - rot: 3.141592653589793 rad pos: 2.5,1.5 parent: 2 type: Transform - - uid: 4578 + - uid: 4805 components: - pos: 3.5,-0.5 parent: 2 type: Transform - - uid: 4579 + - uid: 4806 components: - pos: 3.5,-1.5 parent: 2 type: Transform - - uid: 4580 + - uid: 4807 components: - pos: 3.5,-2.5 parent: 2 type: Transform - - uid: 4581 + - uid: 4808 components: - pos: 3.5,-3.5 parent: 2 type: Transform - - uid: 4582 + - uid: 4809 components: - pos: 3.5,-4.5 parent: 2 type: Transform - - uid: 4583 + - uid: 4810 components: - pos: 3.5,-5.5 parent: 2 type: Transform - - uid: 4584 + - uid: 4811 components: - pos: 3.5,-6.5 parent: 2 type: Transform - - uid: 4585 + - uid: 4812 components: - pos: 3.5,-7.5 parent: 2 type: Transform - - uid: 4586 + - uid: 4813 components: - pos: 3.5,-8.5 parent: 2 type: Transform - - uid: 4587 + - uid: 4814 components: - pos: 3.5,-9.5 parent: 2 type: Transform - - uid: 4588 + - uid: 4815 components: - pos: 3.5,-10.5 parent: 2 type: Transform - - uid: 4589 + - uid: 4816 components: - pos: 3.5,-11.5 parent: 2 type: Transform - - uid: 4590 + - uid: 4817 components: - rot: 3.141592653589793 rad pos: 4.5,-13.5 parent: 2 type: Transform - - uid: 4591 + - uid: 4818 components: - rot: 3.141592653589793 rad pos: 4.5,-14.5 parent: 2 type: Transform - - uid: 4592 + - uid: 4819 components: - rot: 3.141592653589793 rad pos: 4.5,-15.5 parent: 2 type: Transform - - uid: 4593 + - uid: 4820 components: - rot: 3.141592653589793 rad pos: 4.5,-16.5 parent: 2 type: Transform - - uid: 4594 + - uid: 4821 components: - pos: 4.5,-17.5 parent: 2 type: Transform - - uid: 4595 + - uid: 4822 components: - rot: 1.5707963267948966 rad pos: 3.5,-18.5 parent: 2 type: Transform - - uid: 4596 + - uid: 4823 components: - rot: 1.5707963267948966 rad pos: 2.5,-18.5 parent: 2 type: Transform - - uid: 4597 + - uid: 4824 components: - rot: 3.141592653589793 rad pos: -6.5,-25.5 parent: 2 type: Transform - - uid: 4598 + - uid: 4825 components: - rot: 3.141592653589793 rad pos: -6.5,-24.5 parent: 2 type: Transform - - uid: 4599 + - uid: 4826 components: - rot: 3.141592653589793 rad pos: -6.5,-23.5 parent: 2 type: Transform - - uid: 4600 + - uid: 4827 components: - rot: 3.141592653589793 rad pos: -6.5,-22.5 parent: 2 type: Transform - - uid: 4601 + - uid: 4828 components: - rot: 3.141592653589793 rad pos: -6.5,-21.5 parent: 2 type: Transform - - uid: 4602 + - uid: 4829 components: - rot: 3.141592653589793 rad pos: -6.5,-20.5 parent: 2 type: Transform - - uid: 4603 + - uid: 4830 components: - rot: 3.141592653589793 rad pos: -6.5,-19.5 parent: 2 type: Transform - - uid: 4604 + - uid: 4831 components: - rot: 1.5707963267948966 rad pos: -5.5,-18.5 parent: 2 type: Transform - - uid: 4605 + - uid: 4832 components: - rot: 1.5707963267948966 rad pos: -4.5,-18.5 parent: 2 type: Transform - - uid: 4606 + - uid: 4833 components: - rot: 1.5707963267948966 rad pos: -2.5,-18.5 parent: 2 type: Transform - - uid: 4607 + - uid: 4834 components: - rot: 1.5707963267948966 rad pos: -1.5,-18.5 parent: 2 type: Transform - - uid: 4608 + - uid: 4835 components: - rot: 1.5707963267948966 rad pos: -0.5,-18.5 parent: 2 type: Transform - - uid: 4609 + - uid: 4836 components: - rot: 1.5707963267948966 rad pos: 1.5,-18.5 parent: 2 type: Transform - - uid: 4610 + - uid: 4837 components: - rot: 3.141592653589793 rad pos: -11.5,-5.5 parent: 2 type: Transform - - uid: 4611 + - uid: 4838 components: - rot: 3.141592653589793 rad pos: -11.5,-6.5 parent: 2 type: Transform - - uid: 4612 + - uid: 4839 components: - rot: 3.141592653589793 rad pos: -11.5,-7.5 parent: 2 type: Transform - - uid: 4613 + - uid: 4840 components: - rot: 3.141592653589793 rad pos: -11.5,-8.5 parent: 2 type: Transform - - uid: 4614 + - uid: 4841 components: - rot: 3.141592653589793 rad pos: -11.5,-9.5 parent: 2 type: Transform - - uid: 4615 + - uid: 4842 components: - rot: 3.141592653589793 rad pos: -11.5,-10.5 parent: 2 type: Transform - - uid: 4616 + - uid: 4843 components: - rot: 3.141592653589793 rad pos: -11.5,-12.5 parent: 2 type: Transform - - uid: 4617 + - uid: 4844 components: - rot: 1.5707963267948966 rad pos: -12.5,-11.5 parent: 2 type: Transform - - uid: 4618 + - uid: 4845 components: - rot: 1.5707963267948966 rad pos: -13.5,-11.5 parent: 2 type: Transform - - uid: 4619 + - uid: 4846 components: - rot: -1.5707963267948966 rad pos: -10.5,-2.5 parent: 2 type: Transform - - uid: 4620 + - uid: 4847 components: - rot: -1.5707963267948966 rad pos: -9.5,-2.5 parent: 2 type: Transform - - uid: 4621 + - uid: 4848 components: - rot: -1.5707963267948966 rad pos: -8.5,-2.5 parent: 2 type: Transform - - uid: 4622 + - uid: 4849 components: - rot: -1.5707963267948966 rad pos: -7.5,-2.5 parent: 2 type: Transform - - uid: 4623 + - uid: 4850 components: - rot: -1.5707963267948966 rad pos: -0.5,0.5 parent: 2 type: Transform - - uid: 4624 + - uid: 4851 components: - rot: -1.5707963267948966 rad pos: -1.5,0.5 parent: 2 type: Transform - - uid: 4625 + - uid: 4852 components: - pos: -2.5,-0.5 parent: 2 type: Transform - - uid: 4626 + - uid: 4853 components: - pos: -2.5,-1.5 parent: 2 type: Transform - - uid: 4627 + - uid: 4854 components: - rot: 1.5707963267948966 rad pos: -5.5,-2.5 parent: 2 type: Transform - - uid: 4628 + - uid: 4855 components: - rot: 1.5707963267948966 rad pos: -4.5,-2.5 parent: 2 type: Transform - - uid: 4629 + - uid: 4856 components: - rot: 1.5707963267948966 rad pos: -3.5,-2.5 parent: 2 type: Transform - - uid: 4630 + - uid: 4857 components: - pos: -6.5,-3.5 parent: 2 type: Transform - - uid: 4631 + - uid: 4858 components: - pos: -6.5,-4.5 parent: 2 type: Transform - - uid: 4632 + - uid: 4859 components: - pos: -6.5,-6.5 parent: 2 type: Transform - - uid: 4633 + - uid: 4860 components: - pos: -6.5,-7.5 parent: 2 type: Transform - - uid: 4634 + - uid: 4861 components: - rot: 1.5707963267948966 rad pos: -8.5,-8.5 parent: 2 type: Transform - - uid: 4635 + - uid: 4862 components: - rot: 1.5707963267948966 rad pos: -7.5,-8.5 parent: 2 type: Transform - - uid: 4636 + - uid: 4863 components: - rot: 1.5707963267948966 rad pos: -17.5,8.5 parent: 2 type: Transform - - uid: 4637 + - uid: 4864 components: - rot: 1.5707963267948966 rad pos: -16.5,8.5 parent: 2 type: Transform - - uid: 4638 + - uid: 4865 components: - rot: 1.5707963267948966 rad pos: -15.5,8.5 parent: 2 type: Transform - - uid: 4639 + - uid: 4866 components: - rot: 1.5707963267948966 rad pos: -14.5,8.5 parent: 2 type: Transform - - uid: 4640 + - uid: 4867 components: - rot: 1.5707963267948966 rad pos: -13.5,8.5 parent: 2 type: Transform - - uid: 4641 + - uid: 4868 components: - pos: -11.5,-1.5 parent: 2 type: Transform - - uid: 4642 + - uid: 4869 components: - pos: -11.5,-0.5 parent: 2 type: Transform - - uid: 4643 + - uid: 4870 components: - pos: -11.5,0.5 parent: 2 type: Transform - - uid: 4644 + - uid: 4871 components: - pos: -11.5,1.5 parent: 2 type: Transform - - uid: 4645 + - uid: 4872 components: - pos: -11.5,2.5 parent: 2 type: Transform - - uid: 4646 + - uid: 4873 components: - pos: -11.5,3.5 parent: 2 type: Transform - - uid: 4647 + - uid: 4874 components: - pos: -11.5,4.5 parent: 2 type: Transform - - uid: 4648 + - uid: 4875 components: - pos: -11.5,5.5 parent: 2 type: Transform - - uid: 4649 + - uid: 4876 components: - pos: -11.5,6.5 parent: 2 type: Transform - - uid: 4650 + - uid: 4877 components: - pos: -11.5,7.5 parent: 2 type: Transform - - uid: 4651 + - uid: 4878 components: - rot: 1.5707963267948966 rad pos: -12.5,8.5 parent: 2 type: Transform - - uid: 4652 + - uid: 4879 components: - rot: 1.5707963267948966 rad pos: -10.5,9.5 parent: 2 type: Transform - - uid: 4653 + - uid: 4880 components: - rot: 1.5707963267948966 rad pos: -9.5,9.5 parent: 2 type: Transform - - uid: 4654 + - uid: 4881 components: - rot: 1.5707963267948966 rad pos: -8.5,9.5 parent: 2 type: Transform - - uid: 4655 + - uid: 4882 components: - rot: 1.5707963267948966 rad pos: -7.5,9.5 parent: 2 type: Transform - - uid: 4656 + - uid: 4883 components: - rot: 1.5707963267948966 rad pos: -6.5,9.5 parent: 2 type: Transform - - uid: 4657 + - uid: 4884 components: - rot: 1.5707963267948966 rad pos: -5.5,9.5 parent: 2 type: Transform - - uid: 4658 + - uid: 4885 components: - pos: -4.5,13.5 parent: 2 type: Transform - - uid: 4659 + - uid: 4886 components: - pos: -11.5,11.5 parent: 2 type: Transform - - uid: 4660 + - uid: 4887 components: - pos: -11.5,10.5 parent: 2 type: Transform - - uid: 4661 + - uid: 4888 components: - rot: -1.5707963267948966 rad pos: -10.5,12.5 parent: 2 type: Transform - - uid: 4662 + - uid: 4889 components: - rot: -1.5707963267948966 rad pos: -9.5,12.5 parent: 2 type: Transform - - uid: 4663 + - uid: 4890 components: - rot: -1.5707963267948966 rad pos: -8.5,12.5 parent: 2 type: Transform - - uid: 4664 + - uid: 4891 components: - rot: -1.5707963267948966 rad pos: -7.5,12.5 parent: 2 type: Transform - - uid: 4665 + - uid: 4892 components: - rot: -1.5707963267948966 rad pos: -5.5,12.5 parent: 2 type: Transform - - uid: 4666 + - uid: 4893 components: - rot: -1.5707963267948966 rad pos: -3.5,12.5 parent: 2 type: Transform - - uid: 4667 + - uid: 4894 components: - pos: -29.5,34.5 parent: 2 type: Transform - - uid: 4668 + - uid: 4895 components: - pos: -29.5,33.5 parent: 2 type: Transform - - uid: 4669 + - uid: 4896 components: - pos: -29.5,32.5 parent: 2 type: Transform - - uid: 4670 + - uid: 4897 components: - pos: -29.5,31.5 parent: 2 type: Transform - - uid: 4671 + - uid: 4898 components: - rot: 1.5707963267948966 rad pos: -28.5,30.5 parent: 2 type: Transform - - uid: 4672 + - uid: 4899 components: - pos: -27.5,27.5 parent: 2 type: Transform - - uid: 4673 + - uid: 4900 components: - pos: -27.5,26.5 parent: 2 type: Transform - - uid: 4674 + - uid: 4901 components: - rot: 3.141592653589793 rad pos: -18.5,15.5 parent: 2 type: Transform - - uid: 4675 + - uid: 4902 components: - rot: 1.5707963267948966 rad pos: 5.5,-12.5 parent: 2 type: Transform - - uid: 4676 + - uid: 4903 components: - rot: 1.5707963267948966 rad pos: 6.5,-12.5 parent: 2 type: Transform - - uid: 4677 + - uid: 4904 components: - rot: 1.5707963267948966 rad pos: 7.5,-12.5 parent: 2 type: Transform - - uid: 4678 + - uid: 4905 components: - rot: 1.5707963267948966 rad pos: 8.5,-12.5 parent: 2 type: Transform - - uid: 4679 + - uid: 4906 components: - rot: 3.141592653589793 rad pos: 10.5,-13.5 parent: 2 type: Transform - - uid: 4680 + - uid: 4907 components: - rot: 3.141592653589793 rad pos: 10.5,-14.5 parent: 2 type: Transform - - uid: 4681 + - uid: 4908 components: - rot: 3.141592653589793 rad pos: 10.5,-18.5 parent: 2 type: Transform - - uid: 4682 + - uid: 4909 components: - rot: 3.141592653589793 rad pos: 10.5,-15.5 parent: 2 type: Transform - - uid: 4683 + - uid: 4910 components: - rot: 3.141592653589793 rad pos: 10.5,-20.5 parent: 2 type: Transform - - uid: 4684 + - uid: 4911 components: - rot: 3.141592653589793 rad pos: 10.5,-17.5 parent: 2 type: Transform - - uid: 4685 + - uid: 4912 components: - rot: -1.5707963267948966 rad pos: 11.5,-21.5 parent: 2 type: Transform - - uid: 4686 + - uid: 4913 components: - rot: 1.5707963267948966 rad pos: 9.5,-12.5 parent: 2 type: Transform - - uid: 4687 + - uid: 4914 components: - rot: 3.141592653589793 rad pos: 10.5,-16.5 parent: 2 type: Transform - - uid: 4688 + - uid: 4915 components: - rot: 1.5707963267948966 rad pos: -22.5,-3.5 parent: 2 type: Transform - - uid: 4689 + - uid: 4916 components: - rot: 1.5707963267948966 rad pos: -24.5,-3.5 parent: 2 type: Transform - - uid: 4690 + - uid: 4917 components: - rot: 1.5707963267948966 rad pos: -21.5,-3.5 parent: 2 type: Transform - - uid: 4691 + - uid: 4918 components: - rot: 1.5707963267948966 rad pos: -20.5,-3.5 parent: 2 type: Transform - - uid: 4692 + - uid: 4919 components: - rot: 1.5707963267948966 rad pos: -19.5,-3.5 parent: 2 type: Transform - - uid: 4693 + - uid: 4920 components: - rot: 1.5707963267948966 rad pos: -18.5,-3.5 parent: 2 type: Transform - - uid: 4694 + - uid: 4921 components: - rot: 1.5707963267948966 rad pos: -17.5,-3.5 parent: 2 type: Transform - - uid: 4695 + - uid: 4922 components: - rot: 1.5707963267948966 rad pos: -16.5,-3.5 parent: 2 type: Transform - - uid: 4696 + - uid: 4923 components: - rot: 1.5707963267948966 rad pos: -15.5,-3.5 parent: 2 type: Transform - - uid: 4697 + - uid: 4924 components: - rot: 1.5707963267948966 rad pos: -25.5,-3.5 parent: 2 type: Transform - - uid: 4698 + - uid: 4925 components: - rot: 1.5707963267948966 rad pos: -23.5,-3.5 parent: 2 type: Transform - - uid: 4699 + - uid: 4926 components: - pos: -27.5,7.5 parent: 2 type: Transform - - uid: 4700 + - uid: 4927 components: - rot: 3.141592653589793 rad pos: 7.5,7.5 parent: 2 type: Transform - - uid: 4701 + - uid: 4928 components: - rot: 1.5707963267948966 rad pos: 8.5,6.5 parent: 2 type: Transform - - uid: 4702 + - uid: 4929 components: - rot: 1.5707963267948966 rad pos: 9.5,6.5 parent: 2 type: Transform - - uid: 4703 + - uid: 4930 components: - pos: 10.5,5.5 parent: 2 type: Transform - - uid: 4704 + - uid: 4931 components: - rot: 3.141592653589793 rad pos: -11.5,-20.5 parent: 2 type: Transform - - uid: 4705 + - uid: 4932 components: - rot: 3.141592653589793 rad pos: -11.5,-19.5 parent: 2 type: Transform - - uid: 4706 + - uid: 4933 components: - rot: 3.141592653589793 rad pos: -11.5,-18.5 parent: 2 type: Transform - - uid: 4707 + - uid: 4934 components: - rot: 3.141592653589793 rad pos: -11.5,-17.5 parent: 2 type: Transform - - uid: 4708 + - uid: 4935 components: - rot: 3.141592653589793 rad pos: -11.5,-16.5 parent: 2 type: Transform - - uid: 4709 + - uid: 4936 components: - rot: 3.141592653589793 rad pos: -11.5,-15.5 parent: 2 type: Transform - - uid: 4710 + - uid: 4937 components: - rot: 3.141592653589793 rad pos: -11.5,-14.5 parent: 2 type: Transform - - uid: 4711 + - uid: 4938 components: - rot: 3.141592653589793 rad pos: -11.5,-13.5 parent: 2 type: Transform - - uid: 4712 + - uid: 4939 components: - pos: -27.5,10.5 parent: 2 type: Transform - - uid: 4713 + - uid: 4940 components: - rot: 3.141592653589793 rad pos: -18.5,14.5 parent: 2 type: Transform - - uid: 4714 + - uid: 4941 components: - pos: -27.5,8.5 parent: 2 type: Transform - - uid: 4715 + - uid: 4942 components: - pos: -27.5,5.5 parent: 2 type: Transform - - uid: 4716 + - uid: 4943 components: - pos: -26.5,-2.5 parent: 2 type: Transform - - uid: 4717 + - uid: 4944 components: - pos: -27.5,4.5 parent: 2 type: Transform - - uid: 4718 + - uid: 4945 components: - rot: 3.141592653589793 rad pos: -18.5,13.5 parent: 2 type: Transform - - uid: 4719 + - uid: 4946 components: - rot: 3.141592653589793 rad pos: -18.5,12.5 parent: 2 type: Transform - - uid: 4720 + - uid: 4947 components: - rot: 3.141592653589793 rad pos: -18.5,11.5 parent: 2 type: Transform - - uid: 4721 + - uid: 4948 components: - rot: 3.141592653589793 rad pos: -18.5,10.5 parent: 2 type: Transform - - uid: 4722 + - uid: 4949 components: - rot: 3.141592653589793 rad pos: -18.5,9.5 parent: 2 type: Transform - - uid: 4723 + - uid: 4950 components: - pos: -6.5,20.5 parent: 2 type: Transform - - uid: 4724 + - uid: 4951 components: - pos: -6.5,19.5 parent: 2 type: Transform - - uid: 4725 + - uid: 4952 components: - pos: -6.5,18.5 parent: 2 type: Transform - - uid: 4726 + - uid: 4953 components: - pos: -6.5,17.5 parent: 2 type: Transform - - uid: 4727 + - uid: 4954 components: - pos: -6.5,16.5 parent: 2 type: Transform - - uid: 4728 + - uid: 4955 components: - pos: -6.5,15.5 parent: 2 type: Transform - - uid: 4729 + - uid: 4956 components: - pos: -6.5,14.5 parent: 2 type: Transform - - uid: 4730 + - uid: 4957 components: - pos: -6.5,13.5 parent: 2 type: Transform - - uid: 4731 + - uid: 4958 components: - rot: -1.5707963267948966 rad pos: 20.5,13.5 parent: 2 type: Transform - - uid: 4732 + - uid: 4959 components: - rot: -1.5707963267948966 rad pos: 19.5,13.5 parent: 2 type: Transform - - uid: 4733 + - uid: 4960 components: - rot: -1.5707963267948966 rad pos: 18.5,13.5 parent: 2 type: Transform - - uid: 4734 + - uid: 4961 components: - rot: -1.5707963267948966 rad pos: 17.5,13.5 parent: 2 type: Transform - - uid: 4735 + - uid: 4962 components: - rot: -1.5707963267948966 rad pos: 16.5,13.5 parent: 2 type: Transform - - uid: 4736 + - uid: 4963 components: - rot: -1.5707963267948966 rad pos: 15.5,13.5 parent: 2 type: Transform - - uid: 4737 + - uid: 4964 components: - rot: -1.5707963267948966 rad pos: 14.5,13.5 parent: 2 type: Transform - - uid: 4738 + - uid: 4965 components: - rot: -1.5707963267948966 rad pos: 13.5,13.5 parent: 2 type: Transform - - uid: 4739 + - uid: 4966 components: - rot: -1.5707963267948966 rad pos: 12.5,13.5 parent: 2 type: Transform - - uid: 4740 + - uid: 4967 components: - rot: -1.5707963267948966 rad pos: 16.5,-19.5 parent: 2 type: Transform - - uid: 4741 + - uid: 4968 components: - rot: -1.5707963267948966 rad pos: 15.5,-19.5 parent: 2 type: Transform - - uid: 4742 + - uid: 4969 components: - rot: -1.5707963267948966 rad pos: 14.5,-19.5 parent: 2 type: Transform - - uid: 4743 + - uid: 4970 components: - rot: -1.5707963267948966 rad pos: 13.5,-19.5 parent: 2 type: Transform - - uid: 4744 + - uid: 4971 components: - rot: -1.5707963267948966 rad pos: 12.5,-19.5 parent: 2 type: Transform - - uid: 4745 + - uid: 4972 components: - rot: -1.5707963267948966 rad pos: 11.5,-19.5 parent: 2 type: Transform - - uid: 4746 + - uid: 4973 components: - rot: -1.5707963267948966 rad pos: -21.5,-15.5 parent: 2 type: Transform - - uid: 4747 + - uid: 4974 components: - pos: -26.5,-1.5 parent: 2 type: Transform - - uid: 4748 + - uid: 4975 components: - pos: -27.5,6.5 parent: 2 type: Transform - - uid: 4749 + - uid: 4976 components: - pos: -3.5,-19.5 parent: 2 type: Transform - - uid: 4750 + - uid: 4977 components: - pos: -3.5,-20.5 parent: 2 type: Transform - - uid: 4751 + - uid: 4978 components: - pos: -3.5,-21.5 parent: 2 type: Transform - - uid: 4752 + - uid: 4979 components: - pos: -3.5,-22.5 parent: 2 type: Transform - - uid: 4753 + - uid: 4980 components: - pos: -3.5,-23.5 parent: 2 type: Transform - - uid: 4754 + - uid: 4981 components: - pos: -16.5,-13.5 parent: 2 type: Transform - - uid: 4755 + - uid: 4982 components: - pos: -27.5,9.5 parent: 2 type: Transform - - uid: 4756 + - uid: 4983 components: - rot: 1.5707963267948966 rad pos: -17.5,-14.5 parent: 2 type: Transform - - uid: 4757 + - uid: 4984 components: - rot: 1.5707963267948966 rad pos: -5.5,-5.5 parent: 2 type: Transform - - uid: 4758 + - uid: 4985 components: - rot: 1.5707963267948966 rad pos: -4.5,-5.5 parent: 2 type: Transform - - uid: 4759 + - uid: 4986 components: - rot: 3.141592653589793 rad pos: -6.5,32.5 parent: 2 type: Transform - - uid: 4760 + - uid: 4987 components: - rot: 3.141592653589793 rad pos: -6.5,31.5 parent: 2 type: Transform - - uid: 4761 + - uid: 4988 components: - rot: 3.141592653589793 rad pos: -6.5,30.5 parent: 2 type: Transform - - uid: 4762 + - uid: 4989 components: - rot: 3.141592653589793 rad pos: -6.5,29.5 parent: 2 type: Transform - - uid: 4763 + - uid: 4990 components: - rot: 3.141592653589793 rad pos: -6.5,27.5 parent: 2 type: Transform - - uid: 4764 + - uid: 4991 components: - rot: 3.141592653589793 rad pos: -6.5,26.5 parent: 2 type: Transform - - uid: 4765 + - uid: 4992 components: - rot: 3.141592653589793 rad pos: -6.5,25.5 parent: 2 type: Transform - - uid: 4766 + - uid: 4993 components: - rot: 3.141592653589793 rad pos: -6.5,24.5 parent: 2 type: Transform - - uid: 4767 + - uid: 4994 components: - rot: 3.141592653589793 rad pos: -6.5,23.5 parent: 2 type: Transform - - uid: 4768 + - uid: 4995 components: - rot: 3.141592653589793 rad pos: -6.5,22.5 parent: 2 type: Transform - - uid: 4769 + - uid: 4996 components: - rot: 3.141592653589793 rad pos: -6.5,21.5 parent: 2 type: Transform - - uid: 4770 + - uid: 4997 components: - rot: -1.5707963267948966 rad pos: -5.5,28.5 parent: 2 type: Transform - - uid: 4771 + - uid: 4998 components: - rot: -1.5707963267948966 rad pos: -4.5,28.5 parent: 2 type: Transform - - uid: 4772 + - uid: 4999 components: - rot: -1.5707963267948966 rad pos: -3.5,28.5 parent: 2 type: Transform - - uid: 4773 + - uid: 5000 components: - rot: -1.5707963267948966 rad pos: -5.5,33.5 parent: 2 type: Transform - - uid: 4774 + - uid: 5001 components: - rot: 3.141592653589793 rad pos: 3.5,27.5 parent: 2 type: Transform - - uid: 4775 + - uid: 5002 components: - rot: 3.141592653589793 rad pos: 3.5,28.5 parent: 2 type: Transform - - uid: 4776 + - uid: 5003 components: - rot: 1.5707963267948966 rad pos: 2.5,29.5 parent: 2 type: Transform - - uid: 4777 + - uid: 5004 components: - rot: 1.5707963267948966 rad pos: 1.5,29.5 parent: 2 type: Transform - - uid: 4778 + - uid: 5005 components: - rot: 1.5707963267948966 rad pos: 0.5,29.5 parent: 2 type: Transform - - uid: 4779 + - uid: 5006 components: - rot: 1.5707963267948966 rad pos: -1.5,28.5 parent: 2 type: Transform - - uid: 4780 + - uid: 5007 components: - pos: -26.5,-0.5 parent: 2 type: Transform - - uid: 4781 + - uid: 5008 components: - pos: -26.5,0.5 parent: 2 type: Transform - - uid: 4782 + - uid: 5009 components: - pos: -26.5,1.5 parent: 2 type: Transform - - uid: 4783 + - uid: 5010 components: - pos: -26.5,2.5 parent: 2 type: Transform - - uid: 4784 + - uid: 5011 components: - pos: -20.5,-20.5 parent: 2 type: Transform - - uid: 4785 + - uid: 5012 components: - pos: -20.5,-19.5 parent: 2 type: Transform - - uid: 4786 + - uid: 5013 components: - rot: -1.5707963267948966 rad pos: 5.5,2.5 parent: 2 type: Transform - - uid: 4787 + - uid: 5014 components: - rot: -1.5707963267948966 rad pos: 7.5,2.5 parent: 2 type: Transform - - uid: 4788 + - uid: 5015 components: - rot: 1.5707963267948966 rad pos: -21.5,-18.5 parent: 2 type: Transform - - uid: 4789 + - uid: 5016 components: - rot: 3.141592653589793 rad pos: -22.5,-16.5 parent: 2 type: Transform - - uid: 4790 + - uid: 5017 components: - rot: 3.141592653589793 rad pos: -22.5,-17.5 parent: 2 type: Transform - - uid: 4791 + - uid: 5018 components: - rot: 3.141592653589793 rad pos: 6.5,1.5 parent: 2 type: Transform - - uid: 4792 + - uid: 5019 components: - rot: 3.141592653589793 rad pos: 6.5,0.5 parent: 2 type: Transform - - uid: 4793 + - uid: 5020 components: - rot: 3.141592653589793 rad pos: 6.5,-0.5 parent: 2 type: Transform - - uid: 4794 + - uid: 5021 components: - rot: 3.141592653589793 rad pos: 6.5,-1.5 parent: 2 type: Transform - - uid: 4795 + - uid: 5022 components: - rot: -1.5707963267948966 rad pos: 8.5,2.5 parent: 2 type: Transform - - uid: 4796 + - uid: 5023 components: - rot: -1.5707963267948966 rad pos: 9.5,2.5 parent: 2 type: Transform - - uid: 4797 + - uid: 5024 components: - rot: -1.5707963267948966 rad pos: 10.5,2.5 parent: 2 type: Transform - - uid: 4798 + - uid: 5025 components: - rot: 1.5707963267948966 rad pos: 12.5,1.5 parent: 2 type: Transform - - uid: 4799 + - uid: 5026 components: - rot: 1.5707963267948966 rad pos: 14.5,0.5 parent: 2 type: Transform - - uid: 4800 + - uid: 5027 components: - rot: 1.5707963267948966 rad pos: 15.5,0.5 parent: 2 type: Transform - - uid: 4801 + - uid: 5028 components: - rot: 1.5707963267948966 rad pos: 16.5,0.5 parent: 2 type: Transform - - uid: 4802 + - uid: 5029 components: - rot: 1.5707963267948966 rad pos: 18.5,0.5 parent: 2 type: Transform - - uid: 4803 + - uid: 5030 components: - rot: 1.5707963267948966 rad pos: 19.5,0.5 parent: 2 type: Transform - - uid: 4804 + - uid: 5031 components: - rot: 1.5707963267948966 rad pos: 20.5,0.5 parent: 2 type: Transform - - uid: 4805 + - uid: 5032 components: - rot: 1.5707963267948966 rad pos: 21.5,0.5 parent: 2 type: Transform - - uid: 4806 + - uid: 5033 components: - rot: 1.5707963267948966 rad pos: 22.5,0.5 parent: 2 type: Transform - - uid: 4807 + - uid: 5034 components: - rot: 1.5707963267948966 rad pos: 23.5,0.5 parent: 2 type: Transform - - uid: 4808 + - uid: 5035 components: - rot: 1.5707963267948966 rad pos: 24.5,0.5 parent: 2 type: Transform - - uid: 4809 + - uid: 5036 components: - rot: 1.5707963267948966 rad pos: 25.5,0.5 parent: 2 type: Transform - - uid: 4810 + - uid: 5037 components: - rot: 1.5707963267948966 rad pos: 26.5,0.5 parent: 2 type: Transform - - uid: 4811 + - uid: 5038 components: - pos: 27.5,-2.5 parent: 2 type: Transform - - uid: 4812 + - uid: 5039 components: - pos: 27.5,-1.5 parent: 2 type: Transform - - uid: 4813 + - uid: 5040 components: - pos: 27.5,-0.5 parent: 2 type: Transform - proto: DisposalPipeBroken entities: - - uid: 4814 + - uid: 5041 components: - rot: -1.5707963267948966 rad pos: -27.5,30.5 parent: 2 type: Transform - - uid: 4815 + - uid: 5042 components: - pos: -27.5,28.5 parent: 2 type: Transform - - uid: 4816 + - uid: 5043 components: - rot: 3.141592653589793 rad pos: -27.5,25.5 @@ -30953,7 +32088,7 @@ entities: type: Transform - proto: DisposalRouter entities: - - uid: 4817 + - uid: 5044 components: - rot: 1.5707963267948966 rad pos: 7.5,8.5 @@ -30964,311 +32099,311 @@ entities: type: DisposalRouter - proto: DisposalTrunk entities: - - uid: 4818 + - uid: 5045 components: - rot: -1.5707963267948966 rad pos: 0.5,0.5 parent: 2 type: Transform - - uid: 4819 + - uid: 5046 components: - rot: 3.141592653589793 rad pos: -18.5,7.5 parent: 2 type: Transform - - uid: 4820 + - uid: 5047 components: - pos: 21.5,14.5 parent: 2 type: Transform - - uid: 4821 + - uid: 5048 components: - rot: -1.5707963267948966 rad pos: 12.5,16.5 parent: 2 type: Transform - - uid: 4822 + - uid: 5049 components: - rot: 1.5707963267948966 rad pos: 13.5,27.5 parent: 2 type: Transform - - uid: 4823 + - uid: 5050 components: - rot: -1.5707963267948966 rad pos: 4.5,6.5 parent: 2 type: Transform - - uid: 4824 + - uid: 5051 components: - rot: 3.141592653589793 rad pos: -6.5,-26.5 parent: 2 type: Transform - - uid: 4825 + - uid: 5052 components: - pos: 0.5,-17.5 parent: 2 type: Transform - - uid: 4826 + - uid: 5053 components: - rot: 1.5707963267948966 rad pos: -9.5,-8.5 parent: 2 type: Transform - - uid: 4827 + - uid: 5054 components: - pos: -4.5,10.5 parent: 2 type: Transform - - uid: 4828 + - uid: 5055 components: - pos: -29.5,35.5 parent: 2 type: Transform - - uid: 4829 + - uid: 5056 components: - rot: -1.5707963267948966 rad pos: -17.5,16.5 parent: 2 type: Transform - - uid: 4830 + - uid: 5057 components: - rot: -1.5707963267948966 rad pos: 12.5,-21.5 parent: 2 type: Transform - - uid: 4831 + - uid: 5058 components: - rot: 3.141592653589793 rad pos: -27.5,-4.5 parent: 2 type: Transform - - uid: 4832 + - uid: 5059 components: - rot: 3.141592653589793 rad pos: 10.5,4.5 parent: 2 type: Transform - - uid: 4833 + - uid: 5060 components: - rot: -1.5707963267948966 rad pos: -10.5,-21.5 parent: 2 type: Transform - - uid: 4834 + - uid: 5061 components: - rot: -1.5707963267948966 rad pos: 10.5,8.5 parent: 2 type: Transform - - uid: 4835 + - uid: 5062 components: - rot: -1.5707963267948966 rad pos: -26.5,11.5 parent: 2 type: Transform - - uid: 4836 + - uid: 5063 components: - pos: -4.5,14.5 parent: 2 type: Transform - - uid: 4837 + - uid: 5064 components: - rot: 3.141592653589793 rad pos: 17.5,-20.5 parent: 2 type: Transform - - uid: 4838 + - uid: 5065 components: - rot: 3.141592653589793 rad pos: -3.5,-24.5 parent: 2 type: Transform - - uid: 4839 + - uid: 5066 components: - rot: 3.141592653589793 rad pos: -16.5,-15.5 parent: 2 type: Transform - - uid: 4840 + - uid: 5067 components: - rot: -1.5707963267948966 rad pos: -3.5,-5.5 parent: 2 type: Transform - - uid: 4841 + - uid: 5068 components: - rot: -1.5707963267948966 rad pos: -4.5,33.5 parent: 2 type: Transform - - uid: 4842 + - uid: 5069 components: - pos: -2.5,29.5 parent: 2 type: Transform - - uid: 4843 + - uid: 5070 components: - rot: -1.5707963267948966 rad pos: 4.5,26.5 parent: 2 type: Transform - - uid: 4844 + - uid: 5071 components: - rot: 3.141592653589793 rad pos: -20.5,-21.5 parent: 2 type: Transform - - uid: 4845 + - uid: 5072 components: - rot: 3.141592653589793 rad pos: 6.5,-2.5 parent: 2 type: Transform - - uid: 4846 + - uid: 5073 components: - rot: 3.141592653589793 rad pos: 17.5,-0.5 parent: 2 type: Transform - - uid: 4847 + - uid: 5074 components: - rot: -1.5707963267948966 rad pos: 28.5,-3.5 parent: 2 type: Transform - - uid: 4848 + - uid: 5075 components: - pos: -14.5,-10.5 parent: 2 type: Transform - proto: DisposalUnit entities: - - uid: 4849 + - uid: 5076 components: - pos: -14.5,-10.5 parent: 2 type: Transform - - uid: 4850 + - uid: 5077 components: - pos: -10.5,-21.5 parent: 2 type: Transform - - uid: 4851 + - uid: 5078 components: - pos: 0.5,0.5 parent: 2 type: Transform - - uid: 4852 + - uid: 5079 components: - pos: -18.5,7.5 parent: 2 type: Transform - - uid: 4853 + - uid: 5080 components: - pos: 12.5,16.5 parent: 2 type: Transform - - uid: 4854 + - uid: 5081 components: - pos: 13.5,27.5 parent: 2 type: Transform - - uid: 4855 + - uid: 5082 components: - pos: 4.5,6.5 parent: 2 type: Transform - - uid: 4856 + - uid: 5083 components: - pos: -6.5,-26.5 parent: 2 type: Transform - - uid: 4857 + - uid: 5084 components: - pos: 0.5,-17.5 parent: 2 type: Transform - - uid: 4858 + - uid: 5085 components: - pos: -3.5,-5.5 parent: 2 type: Transform - - uid: 4859 + - uid: 5086 components: - pos: -9.5,-8.5 parent: 2 type: Transform - - uid: 4860 + - uid: 5087 components: - pos: -4.5,10.5 parent: 2 type: Transform - - uid: 4861 + - uid: 5088 components: - pos: 12.5,-21.5 parent: 2 type: Transform - - uid: 4862 + - uid: 5089 components: - pos: -27.5,-4.5 parent: 2 type: Transform - - uid: 4863 + - uid: 5090 components: - pos: -26.5,11.5 parent: 2 type: Transform - - uid: 4864 + - uid: 5091 components: - pos: -4.5,14.5 parent: 2 type: Transform - - uid: 4865 + - uid: 5092 components: - pos: -2.5,29.5 parent: 2 type: Transform - - uid: 4866 + - uid: 5093 components: - pos: 4.5,26.5 parent: 2 type: Transform - - uid: 4867 + - uid: 5094 components: - pos: -20.5,-21.5 parent: 2 type: Transform - - uid: 4868 + - uid: 5095 components: - pos: 28.5,-3.5 parent: 2 type: Transform - - uid: 4869 + - uid: 5096 components: - pos: 6.5,-2.5 parent: 2 type: Transform - - uid: 4870 + - uid: 5097 components: - pos: 17.5,-0.5 parent: 2 type: Transform - proto: DisposalYJunction entities: - - uid: 4871 + - uid: 5098 components: - rot: 1.5707963267948966 rad pos: -18.5,8.5 parent: 2 type: Transform - - uid: 4872 + - uid: 5099 components: - pos: 2.5,12.5 parent: 2 type: Transform - - uid: 4873 + - uid: 5100 components: - rot: 1.5707963267948966 rad pos: 2.5,8.5 @@ -31276,276 +32411,276 @@ entities: type: Transform - proto: DogBed entities: - - uid: 4874 + - uid: 5101 components: - pos: -21.5,20.5 parent: 2 type: Transform - - uid: 4875 + - uid: 5102 components: - pos: 8.5,-5.5 parent: 2 type: Transform - - uid: 4876 + - uid: 5103 components: - pos: 11.5,-4.5 parent: 2 type: Transform - - uid: 4877 + - uid: 5104 components: - name: cat bed type: MetaData - pos: -17.5,-15.5 parent: 2 type: Transform - - uid: 4878 + - uid: 5105 components: - pos: -9.5,-30.5 parent: 2 type: Transform - - uid: 4879 + - uid: 5106 components: - pos: 17.5,-7.5 parent: 2 type: Transform - - uid: 4880 + - uid: 5107 components: - pos: 24.5,-19.5 parent: 2 type: Transform - proto: DonkpocketBoxSpawner entities: - - uid: 4881 + - uid: 5108 components: - pos: 9.5,-21.5 parent: 2 type: Transform - - uid: 4882 + - uid: 5109 components: - pos: 8.5,-21.5 parent: 2 type: Transform - proto: DoubleEmergencyOxygenTankFilled entities: - - uid: 4883 + - uid: 5110 components: - pos: -29.311012,-24.540293 parent: 2 type: Transform - proto: Dresser entities: - - uid: 4884 + - uid: 5111 components: - pos: 24.5,15.5 parent: 2 type: Transform - - uid: 4885 + - uid: 5112 components: - pos: -9.5,-10.5 parent: 2 type: Transform - - uid: 4886 + - uid: 5113 components: - pos: 26.5,-19.5 parent: 2 type: Transform - - uid: 4887 + - uid: 5114 components: - pos: -21.5,22.5 parent: 2 type: Transform - - uid: 4888 + - uid: 5115 components: - pos: -2.5,36.5 parent: 2 type: Transform - proto: DrinkBeerBottleFull entities: - - uid: 4889 + - uid: 5116 components: - pos: 11.555712,23.922733 parent: 2 type: Transform - proto: DrinkBottleWhiskey entities: - - uid: 4890 + - uid: 5117 components: - rot: -1.5707963267948966 rad pos: -17.290344,-18.79433 parent: 2 type: Transform - - uid: 4891 + - uid: 5118 components: - pos: -17.83732,-18.364643 parent: 2 type: Transform - proto: DrinkDemonsBlood entities: - - uid: 4892 + - uid: 5119 components: - pos: -29.72905,-27.15858 parent: 2 type: Transform - proto: DrinkFlask entities: - - uid: 4893 + - uid: 5120 components: - pos: -12.793941,-28.380444 parent: 2 type: Transform - proto: DrinkGlass entities: - - uid: 4894 + - uid: 5121 components: - pos: 36.52614,21.733345 parent: 2 type: Transform - - uid: 4895 + - uid: 5122 components: - pos: 36.828224,21.754192 parent: 2 type: Transform - - uid: 4896 + - uid: 5123 components: - pos: 36.71364,21.514442 parent: 2 type: Transform - proto: DrinkGoldenCup entities: - - uid: 4897 + - uid: 5124 components: - pos: -15.592636,-19.488497 parent: 2 type: Transform - proto: DrinkGoldschlagerBottleFull entities: - - uid: 4898 + - uid: 5125 components: - pos: -15.32155,-19.76688 parent: 2 type: Transform - proto: DrinkGrapeCan entities: - - uid: 4899 + - uid: 5126 components: - pos: -27.170668,-26.892956 parent: 2 type: Transform - proto: DrinkIcedGreenTeaGlass entities: - - uid: 4900 + - uid: 5127 components: - pos: -28.5551,-18.490961 parent: 2 type: Transform - proto: DrinkLean entities: - - uid: 4901 + - uid: 5128 components: - pos: -8.3452635,50.461243 parent: 2 type: Transform - proto: DrinkMugGreen entities: - - uid: 4902 + - uid: 5129 components: - pos: -28.258224,-18.569086 parent: 2 type: Transform - proto: DrinkMugRainbow entities: - - uid: 4903 + - uid: 5130 components: - pos: 7.2878385,-24.341206 parent: 2 type: Transform - proto: DrinkShaker entities: - - uid: 4904 + - uid: 5131 components: - pos: 35.296974,19.39839 parent: 2 type: Transform - proto: DrinkShotGlass entities: - - uid: 4905 + - uid: 5132 components: - pos: -19.634531,-20.524155 parent: 2 type: Transform - - uid: 4906 + - uid: 5133 components: - pos: -15.340631,-8.242823 parent: 2 type: Transform - - uid: 4907 + - uid: 5134 components: - pos: -15.173964,-8.565964 parent: 2 type: Transform - - uid: 4908 + - uid: 5135 components: - pos: -19.282902,-20.406967 parent: 2 type: Transform - proto: DrinkVodkaBottleFull entities: - - uid: 4909 + - uid: 5136 components: - pos: -15.705214,-8.36791 parent: 2 type: Transform - - uid: 4910 + - uid: 5137 components: - pos: -33.827953,29.496984 parent: 2 type: Transform - proto: DrinkWaterCup entities: - - uid: 4911 + - uid: 5138 components: - pos: 7.704505,-24.278662 parent: 2 type: Transform - - uid: 4912 + - uid: 5139 components: - pos: 7.517005,-24.403748 parent: 2 type: Transform - - uid: 4913 + - uid: 5140 components: - pos: 7.735755,-24.518412 parent: 2 type: Transform - proto: DrinkWhiskeyBottleFull entities: - - uid: 4914 + - uid: 5141 components: - pos: -19.614996,-19.742905 parent: 2 type: Transform - proto: DrinkWineBottleFull entities: - - uid: 4915 + - uid: 5142 components: - pos: -4.2686324,18.777903 parent: 2 type: Transform - proto: DrinkWineGlass entities: - - uid: 4916 + - uid: 5143 components: - pos: -4.654049,18.71536 parent: 2 type: Transform - proto: EmergencyLight entities: - - uid: 4917 + - uid: 5144 components: - pos: -19.5,-18.5 parent: 2 type: Transform - - uid: 4918 + - uid: 5145 components: - pos: 6.5,17.5 parent: 2 @@ -31553,7 +32688,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 4919 + - uid: 5146 components: - rot: -1.5707963267948966 rad pos: 26.5,24.5 @@ -31562,7 +32697,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 4920 + - uid: 5147 components: - pos: -18.5,1.5 parent: 2 @@ -31570,7 +32705,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 4921 + - uid: 5148 components: - pos: -19.5,-2.5 parent: 2 @@ -31578,7 +32713,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 4922 + - uid: 5149 components: - rot: -1.5707963267948966 rad pos: -9.5,3.5 @@ -31587,7 +32722,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 4923 + - uid: 5150 components: - pos: -17.5,9.5 parent: 2 @@ -31595,7 +32730,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 4924 + - uid: 5151 components: - rot: 3.141592653589793 rad pos: -0.5,12.5 @@ -31604,7 +32739,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 4925 + - uid: 5152 components: - rot: 3.141592653589793 rad pos: -3.5,7.5 @@ -31613,7 +32748,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 4926 + - uid: 5153 components: - rot: 3.141592653589793 rad pos: -3.5,-5.5 @@ -31622,7 +32757,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 4927 + - uid: 5154 components: - rot: 1.5707963267948966 rad pos: 3.5,-11.5 @@ -31631,7 +32766,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 4928 + - uid: 5155 components: - rot: 3.141592653589793 rad pos: -3.5,-15.5 @@ -31640,7 +32775,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 4929 + - uid: 5156 components: - rot: -1.5707963267948966 rad pos: -5.5,-25.5 @@ -31649,7 +32784,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 4930 + - uid: 5157 components: - rot: 3.141592653589793 rad pos: -0.5,-24.5 @@ -31658,7 +32793,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 4931 + - uid: 5158 components: - rot: -1.5707963267948966 rad pos: -11.5,-12.5 @@ -31667,7 +32802,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 4932 + - uid: 5159 components: - rot: 1.5707963267948966 rad pos: -32.5,-3.5 @@ -31676,7 +32811,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 4933 + - uid: 5160 components: - rot: 1.5707963267948966 rad pos: 10.5,18.5 @@ -31685,7 +32820,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 4934 + - uid: 5161 components: - pos: 13.5,-16.5 parent: 2 @@ -31693,7 +32828,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 4935 + - uid: 5162 components: - rot: 1.5707963267948966 rad pos: -25.5,-19.5 @@ -31702,7 +32837,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 4936 + - uid: 5163 components: - rot: 3.141592653589793 rad pos: 21.5,-16.5 @@ -31711,7 +32846,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 4937 + - uid: 5164 components: - rot: -1.5707963267948966 rad pos: -42.5,-3.5 @@ -31720,7 +32855,7 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 4938 + - uid: 5165 components: - pos: -27.5,14.5 parent: 2 @@ -31728,103 +32863,103 @@ entities: - enabled: True type: PointLight - type: ActiveEmergencyLight - - uid: 4939 + - uid: 5166 components: - rot: 1.5707963267948966 rad pos: 27.5,-1.5 parent: 2 type: Transform - - uid: 4940 + - uid: 5167 components: - pos: 14.5,0.5 parent: 2 type: Transform - - uid: 4941 + - uid: 5168 components: - pos: 6.5,35.5 parent: 2 type: Transform - proto: EmergencyRollerBed entities: - - uid: 4942 + - uid: 5169 components: - pos: -17.5,7.5 parent: 2 type: Transform - proto: ExosuitFabricator entities: - - uid: 4943 + - uid: 5170 components: - - pos: -0.5,22.5 + - pos: -0.5,19.5 parent: 2 type: Transform - proto: ExtinguisherCabinetFilled entities: - - uid: 4944 + - uid: 5171 components: - rot: 3.141592653589793 rad pos: -21.5,-6.5 parent: 2 type: Transform - - uid: 4945 + - uid: 5172 components: - rot: -1.5707963267948966 rad pos: -10.5,-14.5 parent: 2 type: Transform - - uid: 4946 + - uid: 5173 components: - pos: -10.5,4.5 parent: 2 type: Transform - - uid: 4947 + - uid: 5174 components: - pos: -0.5,11.5 parent: 2 type: Transform - - uid: 4948 + - uid: 5175 components: - pos: 2.5,-0.5 parent: 2 type: Transform - - uid: 4949 + - uid: 5176 components: - pos: 6.5,-16.5 parent: 2 type: Transform - - uid: 4950 + - uid: 5177 components: - pos: -5.5,0.5 parent: 2 type: Transform - - uid: 4951 + - uid: 5178 components: - rot: 1.5707963267948966 rad pos: -4.5,-23.5 parent: 2 type: Transform - - uid: 4952 + - uid: 5179 components: - pos: -15.5,34.5 parent: 2 type: Transform - proto: FaxMachineBase entities: - - uid: 4953 + - uid: 5180 components: - pos: -0.5,26.5 parent: 2 type: Transform - name: Epistemics type: FaxMachine - - uid: 4954 + - uid: 5181 components: - pos: -29.5,-26.5 parent: 2 type: Transform - name: Lawyers Office type: FaxMachine - - uid: 4955 + - uid: 5182 components: - pos: -0.5,-26.5 parent: 2 @@ -31832,49 +32967,49 @@ entities: - destinationAddress: Bridge name: Bridge type: FaxMachine - - uid: 4956 + - uid: 5183 components: - pos: 15.5,-18.5 parent: 2 type: Transform - name: Security type: FaxMachine - - uid: 4957 + - uid: 5184 components: - pos: -19.5,14.5 parent: 2 type: Transform - name: Medbay type: FaxMachine - - uid: 4958 + - uid: 5185 components: - pos: 16.5,14.5 parent: 2 type: Transform - name: Engineering type: FaxMachine - - uid: 4959 + - uid: 5186 components: - pos: -2.5,-11.5 parent: 2 type: Transform - name: Theater room type: FaxMachine - - uid: 4960 + - uid: 5187 components: - pos: 12.5,0.5 parent: 2 type: Transform - name: Cargo type: FaxMachine - - uid: 4961 + - uid: 5188 components: - pos: 16.5,-6.5 parent: 2 type: Transform - name: LO type: FaxMachine - - uid: 4962 + - uid: 5189 components: - pos: 32.5,-3.5 parent: 2 @@ -31883,14 +33018,14 @@ entities: type: FaxMachine - proto: FaxMachineCaptain entities: - - uid: 4963 + - uid: 5190 components: - pos: -7.5,-26.5 parent: 2 type: Transform - proto: FenceMetalCorner entities: - - uid: 4964 + - uid: 5191 components: - rot: -1.5707963267948966 rad pos: 29.5,-15.5 @@ -31898,7 +33033,7 @@ entities: type: Transform - proto: FenceMetalGate entities: - - uid: 4965 + - uid: 5192 components: - rot: 3.141592653589793 rad pos: 35.5,-15.5 @@ -31906,79 +33041,79 @@ entities: type: Transform - proto: FenceMetalStraight entities: - - uid: 4966 + - uid: 5193 components: - rot: 3.141592653589793 rad pos: 29.5,-13.5 parent: 2 type: Transform - - uid: 4967 + - uid: 5194 components: - rot: 3.141592653589793 rad pos: 29.5,-14.5 parent: 2 type: Transform - - uid: 4968 + - uid: 5195 components: - rot: -1.5707963267948966 rad pos: 30.5,-15.5 parent: 2 type: Transform - - uid: 4969 + - uid: 5196 components: - rot: -1.5707963267948966 rad pos: 31.5,-15.5 parent: 2 type: Transform - - uid: 4970 + - uid: 5197 components: - rot: -1.5707963267948966 rad pos: 32.5,-15.5 parent: 2 type: Transform - - uid: 4971 + - uid: 5198 components: - rot: -1.5707963267948966 rad pos: 33.5,-15.5 parent: 2 type: Transform - - uid: 4972 + - uid: 5199 components: - rot: -1.5707963267948966 rad pos: 34.5,-15.5 parent: 2 type: Transform - - uid: 4973 + - uid: 5200 components: - rot: -1.5707963267948966 rad pos: 36.5,-15.5 parent: 2 type: Transform - - uid: 4974 + - uid: 5201 components: - rot: -1.5707963267948966 rad pos: 37.5,-15.5 parent: 2 type: Transform - - uid: 4975 + - uid: 5202 components: - rot: 3.141592653589793 rad pos: 29.5,-11.5 parent: 2 type: Transform - - uid: 4976 + - uid: 5203 components: - rot: 3.141592653589793 rad pos: 29.5,-10.5 parent: 2 type: Transform - - uid: 4977 + - uid: 5204 components: - rot: 3.141592653589793 rad pos: 29.5,-9.5 parent: 2 type: Transform - - uid: 4978 + - uid: 5205 components: - rot: 3.141592653589793 rad pos: 29.5,-12.5 @@ -31986,65 +33121,65 @@ entities: type: Transform - proto: FigureSpawner entities: - - uid: 4979 + - uid: 5206 components: - pos: -18.5,-13.5 parent: 2 type: Transform - proto: filingCabinet entities: - - uid: 4980 + - uid: 5207 components: - pos: 13.5,6.5 parent: 2 type: Transform - - uid: 4981 + - uid: 5208 components: - pos: 12.5,6.5 parent: 2 type: Transform - - uid: 4982 + - uid: 5209 components: - pos: -22.5,-27.5 parent: 2 type: Transform - proto: filingCabinetDrawer entities: - - uid: 4983 + - uid: 5210 components: - pos: -19.5,22.5 parent: 2 type: Transform - - uid: 4984 + - uid: 5211 components: - pos: -5.5,-26.5 parent: 2 type: Transform - proto: filingCabinetRandom entities: - - uid: 4985 + - uid: 5212 components: - pos: -4.5,29.5 parent: 2 type: Transform - proto: FireAlarm entities: - - uid: 4986 + - uid: 5213 components: - rot: 3.141592653589793 rad pos: 3.5,11.5 parent: 2 type: Transform - devices: - - 5103 - - 5102 - - 5099 - - 5100 - - 5052 - - 5051 + - 5331 + - 5330 + - 5327 + - 5328 + - 5280 + - 5279 - 293 type: DeviceList - - uid: 4987 + - uid: 5214 components: - rot: -1.5707963267948966 rad pos: -21.5,-1.5 @@ -32052,55 +33187,55 @@ entities: type: Transform - devices: - 299 - - 5170 - - 5171 - - 5172 - - 5183 - - 5201 - - 5173 - - 5174 - - 5175 + - 5398 + - 5399 + - 5400 + - 5411 + - 5429 + - 5401 + - 5402 + - 5403 type: DeviceList - - uid: 4988 + - uid: 5215 components: - pos: 8.5,11.5 parent: 2 type: Transform - devices: - - 5069 - - 5053 + - 5297 + - 5281 - 263 type: DeviceList - - uid: 4989 + - uid: 5216 components: - rot: 3.141592653589793 rad pos: 13.5,-3.5 parent: 2 type: Transform - ShutdownSubscribers: - - 5096 + - 5324 type: DeviceNetwork - devices: - - 5210 - - 5211 - - 5209 - - 5058 - - 5212 - - 5214 - - 5096 + - 5438 + - 5439 + - 5437 + - 5286 + - 5440 + - 5442 + - 5324 type: DeviceList - - uid: 4990 + - uid: 5217 components: - rot: 1.5707963267948966 rad pos: -10.5,20.5 parent: 2 type: Transform - devices: - - 5065 - - 5097 + - 5293 + - 5325 - 254 type: DeviceList - - uid: 4991 + - uid: 5218 components: - rot: 3.141592653589793 rad pos: -17.5,2.5 @@ -32108,33 +33243,33 @@ entities: type: Transform - devices: - 287 - - 5167 - - 5087 - - 5088 + - 5395 + - 5315 + - 5316 type: DeviceList - - uid: 4992 + - uid: 5219 components: - pos: -8.5,-16.5 parent: 2 type: Transform - devices: - - 5126 - - 5127 + - 5354 + - 5355 - 274 - - 5112 + - 5340 type: DeviceList - - uid: 4993 + - uid: 5220 components: - rot: 1.5707963267948966 rad pos: -9.5,-25.5 parent: 2 type: Transform - devices: - - 5111 + - 5339 - 275 - - 5112 + - 5340 type: DeviceList - - uid: 4994 + - uid: 5221 components: - rot: -1.5707963267948966 rad pos: -7.5,-29.5 @@ -32142,36 +33277,36 @@ entities: type: Transform - devices: - 257 - - 5111 + - 5339 type: DeviceList - - uid: 4995 + - uid: 5222 components: - rot: 3.141592653589793 rad pos: -2.5,-29.5 parent: 2 type: Transform - devices: - - 5109 - - 5110 + - 5337 + - 5338 - 276 type: DeviceList - - uid: 4996 + - uid: 5223 components: - rot: 3.141592653589793 rad pos: -7.5,30.5 parent: 2 type: Transform - devices: - - 6647 - - 6764 - - 5064 - - 5114 - - 5113 - - 5067 - - 5071 - - 5072 + - 6875 + - 6992 + - 5292 + - 5342 + - 5341 + - 5295 + - 5299 + - 5300 type: DeviceList - - uid: 4997 + - uid: 5224 components: - rot: 1.5707963267948966 rad pos: 3.5,-25.5 @@ -32179,10 +33314,10 @@ entities: type: Transform - devices: - 258 - - 5066 - - 5098 + - 5294 + - 5326 type: DeviceList - - uid: 4998 + - uid: 5225 components: - rot: -1.5707963267948966 rad pos: 16.5,-22.5 @@ -32190,11 +33325,11 @@ entities: type: Transform - devices: - 295 - - 5121 - - 5160 - - 5122 + - 5349 + - 5388 + - 5350 type: DeviceList - - uid: 4999 + - uid: 5226 components: - rot: -1.5707963267948966 rad pos: 16.5,-25.5 @@ -32202,279 +33337,279 @@ entities: type: Transform - devices: - 280 - - 5121 - - 5160 + - 5349 + - 5388 type: DeviceList - - uid: 5000 + - uid: 5227 components: - pos: 23.5,-18.5 parent: 2 type: Transform - devices: - - 5131 + - 5359 - 259 type: DeviceList - - uid: 5001 + - uid: 5228 components: - rot: 3.141592653589793 rad pos: 17.5,-21.5 parent: 2 type: Transform - devices: - - 5130 - - 5131 + - 5358 + - 5359 - 260 type: DeviceList - - uid: 5002 + - uid: 5229 components: - pos: 14.5,-15.5 parent: 2 type: Transform - devices: - 283 - - 5129 - - 5049 + - 5357 + - 5277 type: DeviceList - - uid: 5003 + - uid: 5230 components: - rot: 1.5707963267948966 rad pos: 16.5,-14.5 parent: 2 type: Transform - devices: - - 5132 - - 5129 + - 5360 + - 5357 - 282 type: DeviceList - - uid: 5004 + - uid: 5231 components: - rot: 3.141592653589793 rad pos: 8.5,-16.5 parent: 2 type: Transform - devices: - - 5141 - - 5139 - - 5140 + - 5369 + - 5367 + - 5368 - 262 - - 5138 + - 5366 type: DeviceList - - uid: 5005 + - uid: 5232 components: - pos: -4.5,11.5 parent: 2 type: Transform - devices: - - 5054 - - 5193 + - 5282 + - 5421 - 285 - - 5150 - - 5151 - - 5152 + - 5378 + - 5379 + - 5380 type: DeviceList - - uid: 5006 + - uid: 5233 components: - rot: 1.5707963267948966 rad pos: 12.5,15.5 parent: 2 type: Transform - devices: - - 5177 - - 5178 + - 5405 + - 5406 - 294 - - 5154 - - 5158 - - 5159 - - 5153 - - 5176 - - 5196 - - 5200 + - 5382 + - 5386 + - 5387 + - 5381 + - 5404 + - 5424 + - 5428 type: DeviceList - - uid: 5007 + - uid: 5234 components: - rot: -1.5707963267948966 rad pos: 0.5,4.5 parent: 2 type: Transform - devices: - - 5193 - - 5054 - - 5145 - - 5082 - - 5083 - - 5084 + - 5421 + - 5282 + - 5373 + - 5310 + - 5311 + - 5312 - 284 type: DeviceList - - uid: 5008 + - uid: 5235 components: - pos: -18.5,23.5 parent: 2 type: Transform - devices: - 268 - - 5092 + - 5320 type: DeviceList - - uid: 5009 + - uid: 5236 components: - rot: 1.5707963267948966 rad pos: -20.5,17.5 parent: 2 type: Transform - devices: - - 5092 - - 5149 + - 5320 + - 5377 - 269 type: DeviceList - - uid: 5010 + - uid: 5237 components: - rot: 3.141592653589793 rad pos: -9.5,11.5 parent: 2 type: Transform - devices: - - 5104 - - 5101 - - 5097 - - 5065 + - 5332 + - 5329 + - 5325 + - 5293 - 292 - - 5102 - - 5103 + - 5330 + - 5331 type: DeviceList - - uid: 5011 + - uid: 5238 components: - pos: -16.5,15.5 parent: 2 type: Transform - devices: - - 5147 - - 5123 - - 5148 + - 5375 + - 5351 + - 5376 - 291 type: DeviceList - - uid: 5012 + - uid: 5239 components: - pos: -21.5,19.5 parent: 2 type: Transform - devices: - - 5120 + - 5348 - 270 type: DeviceList - - uid: 5013 + - uid: 5240 components: - rot: 3.141592653589793 rad pos: -21.5,11.5 parent: 2 type: Transform - devices: - - 5120 - - 5091 + - 5348 + - 5319 - 290 type: DeviceList - - uid: 5014 + - uid: 5241 components: - pos: 13.5,11.5 parent: 2 type: Transform - devices: - 296 - - 5157 - - 5053 + - 5385 + - 5281 type: DeviceList - - uid: 5015 + - uid: 5242 components: - pos: -14.5,-9.5 parent: 2 type: Transform - devices: - 272 - - 5163 - - 5162 + - 5391 + - 5390 type: DeviceList - - uid: 5016 + - uid: 5243 components: - pos: -2.5,-16.5 parent: 2 type: Transform - devices: - - 5127 + - 5355 - 277 - - 5128 - - 5109 - - 5110 + - 5356 + - 5337 + - 5338 type: DeviceList - - uid: 5017 + - uid: 5244 components: - rot: 1.5707963267948966 rad pos: 2.5,-11.5 parent: 2 type: Transform - devices: - - 5118 - - 5119 - - 5156 + - 5346 + - 5347 + - 5384 - 279 - - 5135 - - 5134 - - 5117 - - 5116 - - 5141 - - 5189 + - 5363 + - 5362 + - 5345 + - 5344 + - 5369 + - 5417 type: DeviceList - - uid: 5018 + - uid: 5245 components: - rot: 3.141592653589793 rad pos: 13.5,-20.5 parent: 2 type: Transform - devices: - - 5122 - - 5130 - - 5049 - - 5137 - - 5136 - - 5138 - - 5133 - - 5098 + - 5350 + - 5358 + - 5277 + - 5365 + - 5364 + - 5366 + - 5361 + - 5326 - 304 type: DeviceList - - uid: 5019 + - uid: 5246 components: - rot: -1.5707963267948966 rad pos: 7.5,-19.5 parent: 2 type: Transform - devices: - - 5128 - - 5116 - - 5117 + - 5356 + - 5344 + - 5345 - 278 - - 5066 + - 5294 type: DeviceList - - uid: 5020 + - uid: 5247 components: - pos: -5.5,-0.5 parent: 2 type: Transform - devices: - - 5145 - - 5144 - - 5082 - - 5083 - - 5084 - - 5073 - - 5074 - - 5075 - - 5081 - - 5080 - - 5079 - - 5146 - - 5078 - - 5077 - - 5076 + - 5373 + - 5372 + - 5310 + - 5311 + - 5312 + - 5301 + - 5302 + - 5303 + - 5309 + - 5308 + - 5307 + - 5374 + - 5306 + - 5305 + - 5304 - 265 type: DeviceList - - uid: 5021 + - uid: 5248 components: - rot: -1.5707963267948966 rad pos: -10.5,7.5 @@ -32482,138 +33617,138 @@ entities: type: Transform - devices: - 281 - - 5101 - - 5104 - - 5105 - - 5106 - - 5085 - - 5086 - - 5185 + - 5329 + - 5332 + - 5333 + - 5334 + - 5313 + - 5314 + - 5413 type: DeviceList - - uid: 5022 + - uid: 5249 components: - rot: 3.141592653589793 rad pos: -18.5,6.5 parent: 2 type: Transform - devices: - - 5085 - - 5086 - - 5148 - - 5147 + - 5313 + - 5314 + - 5376 + - 5375 - 288 - - 5087 - - 5088 - - 5089 - - 5090 + - 5315 + - 5316 + - 5317 + - 5318 type: DeviceList - - uid: 5023 + - uid: 5250 components: - rot: 1.5707963267948966 rad pos: -13.5,-16.5 parent: 2 type: Transform - devices: - - 5107 - - 5108 + - 5335 + - 5336 - 271 - - 5126 - - 5164 + - 5354 + - 5392 type: DeviceList - - uid: 5024 + - uid: 5251 components: - rot: 1.5707963267948966 rad pos: -20.5,12.5 parent: 2 type: Transform - devices: - - 5149 - - 5123 - - 5091 - - 5089 - - 5090 + - 5377 + - 5351 + - 5319 + - 5317 + - 5318 - 289 type: DeviceList - - uid: 5025 + - uid: 5252 components: - pos: -20.5,6.5 parent: 2 type: Transform - devices: - - 5165 + - 5393 - 297 - - 5167 + - 5395 type: DeviceList - - uid: 5026 + - uid: 5253 components: - pos: -23.5,11.5 parent: 2 type: Transform - devices: - - 5166 - - 5165 + - 5394 + - 5393 - 253 type: DeviceList - - uid: 5027 + - uid: 5254 components: - pos: -14.5,-5.5 parent: 2 type: Transform - devices: - - 5168 - - 5169 + - 5396 + - 5397 - 298 - - 5059 - - 5183 + - 5287 + - 5411 type: DeviceList - - uid: 5028 + - uid: 5255 components: - rot: -1.5707963267948966 rad pos: 4.5,15.5 parent: 2 type: Transform - devices: - - 5052 - - 5051 + - 5280 + - 5279 - 300 type: DeviceList - - uid: 5029 + - uid: 5256 components: - pos: -25.5,-14.5 parent: 2 type: Transform - devices: - - 5191 - - 5190 + - 5419 + - 5418 - 302 - - 5143 - - 5070 + - 5371 + - 5298 type: DeviceList - - uid: 5030 + - uid: 5257 components: - pos: -17.5,-10.5 parent: 2 type: Transform - devices: - - 5191 - - 5190 + - 5419 + - 5418 - 272 - - 5163 - - 5162 + - 5391 + - 5390 type: DeviceList - - uid: 5031 + - uid: 5258 components: - pos: 9.5,-3.5 parent: 2 type: Transform - devices: - - 5060 - - 5043 - - 5044 - - 5192 + - 5288 + - 5271 + - 5272 + - 5420 - 303 type: DeviceList - - uid: 5032 + - uid: 5259 components: - pos: -3.5,-13.5 parent: 2 @@ -32621,38 +33756,38 @@ entities: - devices: - 305 type: DeviceList - - uid: 5033 + - uid: 5260 components: - rot: 1.5707963267948966 rad pos: 1.5,0.5 parent: 2 type: Transform - devices: - - 5099 - - 5100 - - 5069 - - 5194 - - 5060 - - 5043 - - 5119 - - 5118 - - 5075 - - 5074 - - 5073 + - 5327 + - 5328 + - 5297 + - 5422 + - 5288 + - 5271 + - 5347 + - 5346 + - 5303 + - 5302 + - 5301 - 256 type: DeviceList - - uid: 5034 + - uid: 5261 components: - rot: 3.141592653589793 rad pos: 19.5,24.5 parent: 2 type: Transform - devices: - - 5177 - - 5178 + - 5405 + - 5406 - 266 type: DeviceList - - uid: 5035 + - uid: 5262 components: - rot: -1.5707963267948966 rad pos: 6.5,20.5 @@ -32660,25 +33795,25 @@ entities: type: Transform - devices: - 307 - - 5195 + - 5423 type: DeviceList - - uid: 5036 + - uid: 5263 components: - rot: 1.5707963267948966 rad pos: -3.5,30.5 parent: 2 type: Transform - devices: - - 5071 - - 5125 - - 5115 - - 5068 - - 5195 - - 6736 - - 5072 + - 5299 + - 5353 + - 5343 + - 5296 + - 5423 + - 6964 + - 5300 - 255 type: DeviceList - - uid: 5037 + - uid: 5264 components: - rot: 3.141592653589793 rad pos: -27.5,2.5 @@ -32686,10 +33821,10 @@ entities: type: Transform - devices: - 299 - - 5124 - - 5155 + - 5352 + - 5383 type: DeviceList - - uid: 5038 + - uid: 5265 components: - pos: 8.5,27.5 parent: 2 @@ -32698,12 +33833,12 @@ entities: - 59 type: DeviceNetwork - devices: - - 5047 - - 5046 - - 5202 + - 5275 + - 5274 + - 5430 - 59 type: DeviceList - - uid: 5039 + - uid: 5266 components: - rot: 3.141592653589793 rad pos: -2.5,18.5 @@ -32713,14 +33848,14 @@ entities: - 60 type: DeviceNetwork - devices: - - 5203 - - 5204 - - 5205 - - 5206 - - 5048 + - 5431 + - 5432 + - 5433 + - 5434 + - 5276 - 60 type: DeviceList - - uid: 5040 + - uid: 5267 components: - rot: 1.5707963267948966 rad pos: 26.5,-0.5 @@ -32728,62 +33863,68 @@ entities: type: Transform - devices: - 61 - - 5213 - - 5212 + - 5441 + - 5440 type: DeviceList - - uid: 5041 + - uid: 5268 components: - rot: -1.5707963267948966 rad pos: 10.5,1.5 parent: 2 type: Transform - ShutdownSubscribers: - - 5096 + - 5324 type: DeviceNetwork - devices: - - 5208 - - 5207 - - 5142 - - 5096 + - 5436 + - 5435 + - 5370 + - 5324 type: DeviceList - proto: FireAxeCabinetFilled entities: - - uid: 5042 + - uid: 5269 components: - pos: 30.5,30.5 parent: 2 type: Transform + - uid: 5270 + components: + - rot: 3.141592653589793 rad + pos: 2.5,-25.5 + parent: 2 + type: Transform - proto: Firelock entities: - - uid: 5043 + - uid: 5271 components: - pos: 5.5,-6.5 parent: 2 type: Transform - - uid: 5044 + - uid: 5272 components: - pos: 8.5,-7.5 parent: 2 type: Transform - - uid: 5045 + - uid: 5273 components: - rot: -1.5707963267948966 rad pos: 0.5,-6.5 parent: 2 type: Transform - - uid: 5046 + - uid: 5274 components: - rot: 3.141592653589793 rad pos: 12.5,30.5 parent: 2 type: Transform - - uid: 5047 + - uid: 5275 components: - rot: 3.141592653589793 rad pos: 12.5,31.5 parent: 2 type: Transform - - uid: 5048 + - uid: 5276 components: - rot: 3.141592653589793 rad pos: 1.5,20.5 @@ -32794,7 +33935,7 @@ entities: type: DeviceNetwork - proto: FirelockEdge entities: - - uid: 5049 + - uid: 5277 components: - rot: -1.5707963267948966 rad pos: 12.5,-16.5 @@ -32802,785 +33943,785 @@ entities: type: Transform - proto: FirelockFrame entities: - - uid: 5050 + - uid: 5278 components: - pos: -28.5,29.5 parent: 2 type: Transform - proto: FirelockGlass entities: - - uid: 5051 + - uid: 5279 components: - pos: 2.5,14.5 parent: 2 type: Transform - - uid: 5052 + - uid: 5280 components: - pos: -1.5,14.5 parent: 2 type: Transform - - uid: 5053 + - uid: 5281 components: - pos: 9.5,10.5 parent: 2 type: Transform - - uid: 5054 + - uid: 5282 components: - pos: -2.5,6.5 parent: 2 type: Transform - - uid: 5055 + - uid: 5283 components: - pos: -14.5,-3.5 parent: 2 type: Transform - - uid: 5056 + - uid: 5284 components: - pos: -14.5,-2.5 parent: 2 type: Transform - - uid: 5057 + - uid: 5285 components: - pos: -14.5,-4.5 parent: 2 type: Transform - - uid: 5058 + - uid: 5286 components: - rot: 3.141592653589793 rad pos: 11.5,3.5 parent: 2 type: Transform - - uid: 5059 + - uid: 5287 components: - pos: -13.5,-7.5 parent: 2 type: Transform - - uid: 5060 + - uid: 5288 components: - pos: 5.5,-4.5 parent: 2 type: Transform - - uid: 5061 + - uid: 5289 components: - rot: 1.5707963267948966 rad pos: 28.5,20.5 parent: 2 type: Transform - - uid: 5062 + - uid: 5290 components: - pos: 28.5,28.5 parent: 2 type: Transform - - uid: 5063 + - uid: 5291 components: - pos: 18.5,-9.5 parent: 2 type: Transform - - uid: 5064 + - uid: 5292 components: - pos: -7.5,37.5 parent: 2 type: Transform - - uid: 5065 + - uid: 5293 components: - pos: -6.5,15.5 parent: 2 type: Transform - - uid: 5066 + - uid: 5294 components: - pos: 5.5,-23.5 parent: 2 type: Transform - - uid: 5067 + - uid: 5295 components: - pos: -5.5,30.5 parent: 2 type: Transform - - uid: 5068 + - uid: 5296 components: - pos: -3.5,24.5 parent: 2 type: Transform - - uid: 5069 + - uid: 5297 components: - pos: 3.5,10.5 parent: 2 type: Transform - - uid: 5070 + - uid: 5298 components: - pos: -23.5,-22.5 parent: 2 type: Transform - - uid: 5071 + - uid: 5299 components: - pos: -3.5,31.5 parent: 2 type: Transform - - uid: 5072 + - uid: 5300 components: - pos: -3.5,32.5 parent: 2 type: Transform - - uid: 5073 + - uid: 5301 components: - pos: 2.5,-2.5 parent: 2 type: Transform - - uid: 5074 + - uid: 5302 components: - pos: 2.5,-3.5 parent: 2 type: Transform - - uid: 5075 + - uid: 5303 components: - pos: 2.5,-4.5 parent: 2 type: Transform - - uid: 5076 + - uid: 5304 components: - pos: -10.5,-2.5 parent: 2 type: Transform - - uid: 5077 + - uid: 5305 components: - pos: -10.5,-3.5 parent: 2 type: Transform - - uid: 5078 + - uid: 5306 components: - pos: -10.5,-4.5 parent: 2 type: Transform - - uid: 5079 + - uid: 5307 components: - pos: -7.5,-6.5 parent: 2 type: Transform - - uid: 5080 + - uid: 5308 components: - pos: -6.5,-6.5 parent: 2 type: Transform - - uid: 5081 + - uid: 5309 components: - pos: -5.5,-6.5 parent: 2 type: Transform - - uid: 5082 + - uid: 5310 components: - pos: -2.5,-0.5 parent: 2 type: Transform - - uid: 5083 + - uid: 5311 components: - pos: -1.5,-0.5 parent: 2 type: Transform - - uid: 5084 + - uid: 5312 components: - pos: -0.5,-0.5 parent: 2 type: Transform - - uid: 5085 + - uid: 5313 components: - pos: -14.5,8.5 parent: 2 type: Transform - - uid: 5086 + - uid: 5314 components: - pos: -14.5,9.5 parent: 2 type: Transform - - uid: 5087 + - uid: 5315 components: - pos: -16.5,6.5 parent: 2 type: Transform - - uid: 5088 + - uid: 5316 components: - pos: -15.5,6.5 parent: 2 type: Transform - - uid: 5089 + - uid: 5317 components: - pos: -19.5,10.5 parent: 2 type: Transform - - uid: 5090 + - uid: 5318 components: - pos: -18.5,10.5 parent: 2 type: Transform - - uid: 5091 + - uid: 5319 components: - pos: -20.5,13.5 parent: 2 type: Transform - - uid: 5092 + - uid: 5320 components: - pos: -19.5,20.5 parent: 2 type: Transform - - uid: 5093 + - uid: 5321 components: - rot: 1.5707963267948966 rad pos: 29.5,20.5 parent: 2 type: Transform - - uid: 5094 + - uid: 5322 components: - pos: -8.5,41.5 parent: 2 type: Transform - - uid: 5095 + - uid: 5323 components: - pos: -6.5,41.5 parent: 2 type: Transform - - uid: 5096 + - uid: 5324 components: - pos: 9.5,6.5 parent: 2 type: Transform - ShutdownSubscribers: - - 5041 - - 4989 + - 5268 + - 5216 type: DeviceNetwork - - uid: 5097 + - uid: 5325 components: - pos: -7.5,15.5 parent: 2 type: Transform - - uid: 5098 + - uid: 5326 components: - pos: 10.5,-23.5 parent: 2 type: Transform - - uid: 5099 + - uid: 5327 components: - pos: 1.5,11.5 parent: 2 type: Transform - - uid: 5100 + - uid: 5328 components: - pos: 2.5,11.5 parent: 2 type: Transform - - uid: 5101 + - uid: 5329 components: - pos: -12.5,11.5 parent: 2 type: Transform - - uid: 5102 + - uid: 5330 components: - pos: -3.5,13.5 parent: 2 type: Transform - - uid: 5103 + - uid: 5331 components: - pos: -3.5,12.5 parent: 2 type: Transform - - uid: 5104 + - uid: 5332 components: - pos: -11.5,11.5 parent: 2 type: Transform - - uid: 5105 + - uid: 5333 components: - pos: -12.5,1.5 parent: 2 type: Transform - - uid: 5106 + - uid: 5334 components: - pos: -11.5,1.5 parent: 2 type: Transform - - uid: 5107 + - uid: 5335 components: - pos: -12.5,-8.5 parent: 2 type: Transform - - uid: 5108 + - uid: 5336 components: - pos: -11.5,-8.5 parent: 2 type: Transform - - uid: 5109 + - uid: 5337 components: - pos: -2.5,-25.5 parent: 2 type: Transform - - uid: 5110 + - uid: 5338 components: - pos: 1.5,-25.5 parent: 2 type: Transform - - uid: 5111 + - uid: 5339 components: - pos: -8.5,-27.5 parent: 2 type: Transform - - uid: 5112 + - uid: 5340 components: - pos: -6.5,-20.5 parent: 2 type: Transform - - uid: 5113 + - uid: 5341 components: - pos: -6.5,30.5 parent: 2 type: Transform - - uid: 5114 + - uid: 5342 components: - pos: -11.5,31.5 parent: 2 type: Transform - - uid: 5115 + - uid: 5343 components: - pos: -3.5,27.5 parent: 2 type: Transform - - uid: 5116 + - uid: 5344 components: - pos: 4.5,-16.5 parent: 2 type: Transform - - uid: 5117 + - uid: 5345 components: - pos: 5.5,-16.5 parent: 2 type: Transform - - uid: 5118 + - uid: 5346 components: - pos: 3.5,-7.5 parent: 2 type: Transform - - uid: 5119 + - uid: 5347 components: - pos: 4.5,-7.5 parent: 2 type: Transform - - uid: 5120 + - uid: 5348 components: - pos: -22.5,15.5 parent: 2 type: Transform - - uid: 5121 + - uid: 5349 components: - pos: 14.5,-23.5 parent: 2 type: Transform - - uid: 5122 + - uid: 5350 components: - pos: 14.5,-20.5 parent: 2 type: Transform - - uid: 5123 + - uid: 5351 components: - pos: -17.5,13.5 parent: 2 type: Transform - - uid: 5124 + - uid: 5352 components: - pos: -26.5,2.5 parent: 2 type: Transform - - uid: 5125 + - uid: 5353 components: - pos: -3.5,28.5 parent: 2 type: Transform - - uid: 5126 + - uid: 5354 components: - pos: -9.5,-18.5 parent: 2 type: Transform - - uid: 5127 + - uid: 5355 components: - pos: -4.5,-18.5 parent: 2 type: Transform - - uid: 5128 + - uid: 5356 components: - pos: 3.5,-18.5 parent: 2 type: Transform - - uid: 5129 + - uid: 5357 components: - pos: 16.5,-16.5 parent: 2 type: Transform - - uid: 5130 + - uid: 5358 components: - pos: 16.5,-19.5 parent: 2 type: Transform - - uid: 5131 + - uid: 5359 components: - pos: 21.5,-20.5 parent: 2 type: Transform - - uid: 5132 + - uid: 5360 components: - pos: 16.5,-13.5 parent: 2 type: Transform - - uid: 5133 + - uid: 5361 components: - pos: 12.5,-13.5 parent: 2 type: Transform - - uid: 5134 + - uid: 5362 components: - pos: 6.5,-12.5 parent: 2 type: Transform - - uid: 5135 + - uid: 5363 components: - pos: 6.5,-11.5 parent: 2 type: Transform - - uid: 5136 + - uid: 5364 components: - pos: 9.5,-11.5 parent: 2 type: Transform - - uid: 5137 + - uid: 5365 components: - pos: 9.5,-12.5 parent: 2 type: Transform - - uid: 5138 + - uid: 5366 components: - pos: 9.5,-15.5 parent: 2 type: Transform - - uid: 5139 + - uid: 5367 components: - pos: 7.5,-13.5 parent: 2 type: Transform - - uid: 5140 + - uid: 5368 components: - pos: 8.5,-13.5 parent: 2 type: Transform - - uid: 5141 + - uid: 5369 components: - pos: 6.5,-15.5 parent: 2 type: Transform - - uid: 5142 + - uid: 5370 components: - pos: 8.5,3.5 parent: 2 type: Transform - - uid: 5143 + - uid: 5371 components: - pos: -24.5,-22.5 parent: 2 type: Transform - - uid: 5144 + - uid: 5372 components: - rot: 3.141592653589793 rad pos: -9.5,-0.5 parent: 2 type: Transform - - uid: 5145 + - uid: 5373 components: - rot: 3.141592653589793 rad pos: -4.5,-0.5 parent: 2 type: Transform - - uid: 5146 + - uid: 5374 components: - rot: 3.141592653589793 rad pos: -9.5,-6.5 parent: 2 type: Transform - - uid: 5147 + - uid: 5375 components: - pos: -16.5,10.5 parent: 2 type: Transform - - uid: 5148 + - uid: 5376 components: - pos: -15.5,10.5 parent: 2 type: Transform - - uid: 5149 + - uid: 5377 components: - pos: -18.5,15.5 parent: 2 type: Transform - - uid: 5150 + - uid: 5378 components: - pos: -10.5,8.5 parent: 2 type: Transform - - uid: 5151 + - uid: 5379 components: - pos: -10.5,9.5 parent: 2 type: Transform - - uid: 5152 + - uid: 5380 components: - pos: -10.5,10.5 parent: 2 type: Transform - - uid: 5153 + - uid: 5381 components: - pos: 17.5,13.5 parent: 2 type: Transform - - uid: 5154 + - uid: 5382 components: - pos: 9.5,16.5 parent: 2 type: Transform - - uid: 5155 + - uid: 5383 components: - pos: -25.5,2.5 parent: 2 type: Transform - - uid: 5156 + - uid: 5384 components: - pos: 2.5,-12.5 parent: 2 type: Transform - - uid: 5157 + - uid: 5385 components: - pos: 11.5,11.5 parent: 2 type: Transform - - uid: 5158 + - uid: 5386 components: - pos: 10.5,14.5 parent: 2 type: Transform - - uid: 5159 + - uid: 5387 components: - pos: 11.5,14.5 parent: 2 type: Transform - - uid: 5160 + - uid: 5388 components: - pos: 15.5,-23.5 parent: 2 type: Transform - - uid: 5161 + - uid: 5389 components: - pos: -8.5,-31.5 parent: 2 type: Transform - - uid: 5162 + - uid: 5390 components: - pos: -13.5,-12.5 parent: 2 type: Transform - - uid: 5163 + - uid: 5391 components: - pos: -13.5,-11.5 parent: 2 type: Transform - - uid: 5164 + - uid: 5392 components: - pos: -13.5,-20.5 parent: 2 type: Transform - - uid: 5165 + - uid: 5393 components: - pos: -21.5,6.5 parent: 2 type: Transform - - uid: 5166 + - uid: 5394 components: - pos: -20.5,8.5 parent: 2 type: Transform - - uid: 5167 + - uid: 5395 components: - pos: -18.5,5.5 parent: 2 type: Transform - - uid: 5168 + - uid: 5396 components: - pos: -19.5,-5.5 parent: 2 type: Transform - - uid: 5169 + - uid: 5397 components: - pos: -18.5,-5.5 parent: 2 type: Transform - - uid: 5170 + - uid: 5398 components: - pos: -21.5,-2.5 parent: 2 type: Transform - - uid: 5171 + - uid: 5399 components: - pos: -21.5,-3.5 parent: 2 type: Transform - - uid: 5172 + - uid: 5400 components: - pos: -21.5,-4.5 parent: 2 type: Transform - - uid: 5173 + - uid: 5401 components: - rot: -1.5707963267948966 rad pos: -31.5,1.5 parent: 2 type: Transform - - uid: 5174 + - uid: 5402 components: - rot: -1.5707963267948966 rad pos: -31.5,-0.5 parent: 2 type: Transform - - uid: 5175 + - uid: 5403 components: - rot: -1.5707963267948966 rad pos: -31.5,-6.5 parent: 2 type: Transform - - uid: 5176 + - uid: 5404 components: - pos: 7.5,22.5 parent: 2 type: Transform - - uid: 5177 + - uid: 5405 components: - pos: 16.5,22.5 parent: 2 type: Transform - - uid: 5178 + - uid: 5406 components: - pos: 17.5,22.5 parent: 2 type: Transform - - uid: 5179 + - uid: 5407 components: - rot: -1.5707963267948966 rad pos: -27.5,26.5 parent: 2 type: Transform - - uid: 5180 + - uid: 5408 components: - rot: -1.5707963267948966 rad pos: -26.5,26.5 parent: 2 type: Transform - - uid: 5181 + - uid: 5409 components: - pos: -24.5,25.5 parent: 2 type: Transform - - uid: 5182 + - uid: 5410 components: - pos: -24.5,24.5 parent: 2 type: Transform - - uid: 5183 + - uid: 5411 components: - pos: -21.5,-7.5 parent: 2 type: Transform - - uid: 5184 + - uid: 5412 components: - pos: -9.5,7.5 parent: 2 type: Transform - - uid: 5185 + - uid: 5413 components: - pos: -10.5,5.5 parent: 2 type: Transform - - uid: 5186 + - uid: 5414 components: - pos: 30.5,10.5 parent: 2 type: Transform - - uid: 5187 + - uid: 5415 components: - pos: 22.5,13.5 parent: 2 type: Transform - - uid: 5188 + - uid: 5416 components: - pos: 22.5,10.5 parent: 2 type: Transform - - uid: 5189 + - uid: 5417 components: - pos: 6.5,-8.5 parent: 2 type: Transform - - uid: 5190 + - uid: 5418 components: - pos: -21.5,-15.5 parent: 2 type: Transform - - uid: 5191 + - uid: 5419 components: - pos: -21.5,-16.5 parent: 2 type: Transform - - uid: 5192 + - uid: 5420 components: - pos: 10.5,-5.5 parent: 2 type: Transform - - uid: 5193 + - uid: 5421 components: - pos: -4.5,6.5 parent: 2 type: Transform - - uid: 5194 + - uid: 5422 components: - pos: 5.5,5.5 parent: 2 type: Transform - - uid: 5195 + - uid: 5423 components: - pos: 4.5,22.5 parent: 2 type: Transform - - uid: 5196 + - uid: 5424 components: - pos: 20.5,19.5 parent: 2 type: Transform - - uid: 5197 + - uid: 5425 components: - pos: 18.5,-10.5 parent: 2 type: Transform - - uid: 5198 + - uid: 5426 components: - pos: -31.5,28.5 parent: 2 type: Transform - - uid: 5199 + - uid: 5427 components: - pos: -28.5,22.5 parent: 2 type: Transform - - uid: 5200 + - uid: 5428 components: - pos: 22.5,19.5 parent: 2 type: Transform - - uid: 5201 + - uid: 5429 components: - rot: -1.5707963267948966 rad pos: -31.5,-8.5 parent: 2 type: Transform - - uid: 5202 + - uid: 5430 components: - rot: 1.5707963267948966 rad pos: 7.5,27.5 @@ -33589,68 +34730,68 @@ entities: - ShutdownSubscribers: - 59 type: DeviceNetwork - - uid: 5203 + - uid: 5431 components: - rot: 3.141592653589793 rad pos: -2.5,23.5 parent: 2 type: Transform - - uid: 5204 + - uid: 5432 components: - rot: 3.141592653589793 rad pos: -3.5,21.5 parent: 2 type: Transform - - uid: 5205 + - uid: 5433 components: - rot: 3.141592653589793 rad pos: -3.5,20.5 parent: 2 type: Transform - - uid: 5206 + - uid: 5434 components: - rot: 3.141592653589793 rad pos: -3.5,19.5 parent: 2 type: Transform - - uid: 5207 + - uid: 5435 components: - pos: 5.5,-0.5 parent: 2 type: Transform - - uid: 5208 + - uid: 5436 components: - pos: 5.5,0.5 parent: 2 type: Transform - - uid: 5209 + - uid: 5437 components: - pos: 10.5,2.5 parent: 2 type: Transform - - uid: 5210 + - uid: 5438 components: - pos: 10.5,-1.5 parent: 2 type: Transform - - uid: 5211 + - uid: 5439 components: - pos: 10.5,-0.5 parent: 2 type: Transform - - uid: 5212 + - uid: 5440 components: - rot: 1.5707963267948966 rad pos: 21.5,1.5 parent: 2 type: Transform - - uid: 5213 + - uid: 5441 components: - rot: 1.5707963267948966 rad pos: 22.5,-0.5 parent: 2 type: Transform - - uid: 5214 + - uid: 5442 components: - rot: 1.5707963267948966 rad pos: 16.5,-3.5 @@ -33658,60 +34799,60 @@ entities: type: Transform - proto: Fireplace entities: - - uid: 5215 + - uid: 5443 components: - pos: -11.5,-28.5 parent: 2 type: Transform - - uid: 5216 + - uid: 5444 components: - pos: -11.5,28.5 parent: 2 type: Transform - proto: Flare entities: - - uid: 5217 + - uid: 5445 components: - pos: -29.394146,-23.743418 parent: 2 type: Transform - - uid: 5218 + - uid: 5446 components: - pos: -29.534771,-23.665293 parent: 2 type: Transform - proto: FlashlightLantern entities: - - uid: 5219 + - uid: 5447 components: - pos: 14.399824,10.864872 parent: 2 type: Transform - - uid: 5220 + - uid: 5448 components: - pos: 14.44149,10.541731 parent: 2 type: Transform - proto: Floodlight entities: - - uid: 5221 + - uid: 5449 components: - pos: -33.34161,-43.27175 parent: 2 type: Transform - - uid: 5222 + - uid: 5450 components: - pos: -26.398449,-43.441235 parent: 2 type: Transform - - uid: 5223 + - uid: 5451 components: - pos: -19.495539,-31.577072 parent: 2 type: Transform - proto: FloodlightBroken entities: - - uid: 5224 + - uid: 5452 components: - rot: -1.5707963267948966 rad pos: -35.52113,-39.202206 @@ -33719,21 +34860,21 @@ entities: type: Transform - proto: FloorDrain entities: - - uid: 5225 + - uid: 5453 components: - pos: -6.5,1.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 5226 + - uid: 5454 components: - pos: 29.5,12.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 5227 + - uid: 5455 components: - rot: 3.141592653589793 rad pos: 6.5,9.5 @@ -33741,7 +34882,7 @@ entities: type: Transform - fixtures: {} type: Fixtures - - uid: 5228 + - uid: 5456 components: - rot: 3.141592653589793 rad pos: 14.5,-4.5 @@ -33749,14 +34890,14 @@ entities: type: Transform - fixtures: {} type: Fixtures - - uid: 5229 + - uid: 5457 components: - pos: -7.5,-32.5 parent: 2 type: Transform - fixtures: {} type: Fixtures - - uid: 5230 + - uid: 5458 components: - pos: 23.5,-23.5 parent: 2 @@ -33765,413 +34906,413 @@ entities: type: Fixtures - proto: FloorLavaEntity entities: - - uid: 5231 + - uid: 5459 components: - pos: -34.5,-33.5 parent: 2 type: Transform - - uid: 5232 + - uid: 5460 components: - pos: -29.5,-33.5 parent: 2 type: Transform - - uid: 5233 + - uid: 5461 components: - pos: -33.5,-33.5 parent: 2 type: Transform - - uid: 5234 + - uid: 5462 components: - pos: -34.5,-34.5 parent: 2 type: Transform - - uid: 5235 + - uid: 5463 components: - pos: -34.5,-35.5 parent: 2 type: Transform - - uid: 5236 + - uid: 5464 components: - pos: -30.5,-33.5 parent: 2 type: Transform - - uid: 5237 + - uid: 5465 components: - pos: -30.5,-34.5 parent: 2 type: Transform - - uid: 5238 + - uid: 5466 components: - pos: -28.5,-33.5 parent: 2 type: Transform - - uid: 5239 + - uid: 5467 components: - pos: -26.5,-34.5 parent: 2 type: Transform - - uid: 5240 + - uid: 5468 components: - pos: -26.5,-35.5 parent: 2 type: Transform - - uid: 5241 + - uid: 5469 components: - pos: -26.5,-36.5 parent: 2 type: Transform - - uid: 5242 + - uid: 5470 components: - pos: -28.5,-36.5 parent: 2 type: Transform - - uid: 5243 + - uid: 5471 components: - pos: -26.5,-36.5 parent: 2 type: Transform - - uid: 5244 + - uid: 5472 components: - pos: -27.5,-36.5 parent: 2 type: Transform - - uid: 5245 + - uid: 5473 components: - pos: -24.5,-36.5 parent: 2 type: Transform - - uid: 5246 + - uid: 5474 components: - pos: -25.5,-36.5 parent: 2 type: Transform - - uid: 5247 + - uid: 5475 components: - pos: 30.5,46.5 parent: 2 type: Transform - - uid: 5248 + - uid: 5476 components: - pos: 31.5,45.5 parent: 2 type: Transform - - uid: 5249 + - uid: 5477 components: - pos: 30.5,45.5 parent: 2 type: Transform - - uid: 5250 + - uid: 5478 components: - pos: 33.5,44.5 parent: 2 type: Transform - - uid: 5251 + - uid: 5479 components: - pos: 32.5,44.5 parent: 2 type: Transform - - uid: 5252 + - uid: 5480 components: - pos: 32.5,43.5 parent: 2 type: Transform - - uid: 5253 + - uid: 5481 components: - pos: 33.5,46.5 parent: 2 type: Transform - - uid: 5254 + - uid: 5482 components: - pos: 32.5,46.5 parent: 2 type: Transform - - uid: 5255 + - uid: 5483 components: - pos: -29.5,-35.5 parent: 2 type: Transform - - uid: 5256 + - uid: 5484 components: - pos: -29.5,-34.5 parent: 2 type: Transform - - uid: 5257 + - uid: 5485 components: - pos: -29.5,-32.5 parent: 2 type: Transform - - uid: 5258 + - uid: 5486 components: - pos: -29.5,-34.5 parent: 2 type: Transform - - uid: 5259 + - uid: 5487 components: - pos: -31.5,-32.5 parent: 2 type: Transform - - uid: 5260 + - uid: 5488 components: - pos: -32.5,-33.5 parent: 2 type: Transform - - uid: 5261 + - uid: 5489 components: - pos: -33.5,-35.5 parent: 2 type: Transform - - uid: 5262 + - uid: 5490 components: - pos: -33.5,-34.5 parent: 2 type: Transform - - uid: 5263 + - uid: 5491 components: - pos: -26.5,-37.5 parent: 2 type: Transform - - uid: 5264 + - uid: 5492 components: - pos: -26.5,-38.5 parent: 2 type: Transform - - uid: 5265 + - uid: 5493 components: - pos: -27.5,-37.5 parent: 2 type: Transform - - uid: 5266 + - uid: 5494 components: - pos: -27.5,-35.5 parent: 2 type: Transform - - uid: 5267 + - uid: 5495 components: - pos: -25.5,-35.5 parent: 2 type: Transform - - uid: 5268 + - uid: 5496 components: - pos: -25.5,-37.5 parent: 2 type: Transform - - uid: 5269 + - uid: 5497 components: - pos: -28.5,-37.5 parent: 2 type: Transform - - uid: 5270 + - uid: 5498 components: - pos: -27.5,-38.5 parent: 2 type: Transform - - uid: 5271 + - uid: 5499 components: - pos: -25.5,-38.5 parent: 2 type: Transform - - uid: 5272 + - uid: 5500 components: - pos: -25.5,-37.5 parent: 2 type: Transform - - uid: 5273 + - uid: 5501 components: - pos: -24.5,-37.5 parent: 2 type: Transform - - uid: 5274 + - uid: 5502 components: - pos: -24.5,-35.5 parent: 2 type: Transform - - uid: 5275 + - uid: 5503 components: - pos: -25.5,-34.5 parent: 2 type: Transform - - uid: 5276 + - uid: 5504 components: - pos: -27.5,-34.5 parent: 2 type: Transform - - uid: 5277 + - uid: 5505 components: - pos: -28.5,-35.5 parent: 2 type: Transform - - uid: 5278 + - uid: 5506 components: - pos: -28.5,-38.5 parent: 2 type: Transform - - uid: 5279 + - uid: 5507 components: - pos: -28.5,-34.5 parent: 2 type: Transform - - uid: 5280 + - uid: 5508 components: - pos: -29.5,-35.5 parent: 2 type: Transform - - uid: 5281 + - uid: 5509 components: - pos: -29.5,-36.5 parent: 2 type: Transform - - uid: 5282 + - uid: 5510 components: - pos: -29.5,-37.5 parent: 2 type: Transform - - uid: 5283 + - uid: 5511 components: - pos: -27.5,-33.5 parent: 2 type: Transform - - uid: 5284 + - uid: 5512 components: - pos: -26.5,-33.5 parent: 2 type: Transform - - uid: 5285 + - uid: 5513 components: - pos: -25.5,-33.5 parent: 2 type: Transform - - uid: 5286 + - uid: 5514 components: - pos: -24.5,-34.5 parent: 2 type: Transform - - uid: 5287 + - uid: 5515 components: - pos: -23.5,-35.5 parent: 2 type: Transform - - uid: 5288 + - uid: 5516 components: - pos: -23.5,-36.5 parent: 2 type: Transform - - uid: 5289 + - uid: 5517 components: - pos: -23.5,-37.5 parent: 2 type: Transform - - uid: 5290 + - uid: 5518 components: - pos: -24.5,-38.5 parent: 2 type: Transform - - uid: 5291 + - uid: 5519 components: - pos: -25.5,-39.5 parent: 2 type: Transform - - uid: 5292 + - uid: 5520 components: - pos: -26.5,-39.5 parent: 2 type: Transform - - uid: 5293 + - uid: 5521 components: - pos: -27.5,-39.5 parent: 2 type: Transform - - uid: 5294 + - uid: 5522 components: - pos: -30.5,-32.5 parent: 2 type: Transform - - uid: 5295 + - uid: 5523 components: - pos: -32.5,-35.5 parent: 2 type: Transform - - uid: 5296 + - uid: 5524 components: - pos: -31.5,-35.5 parent: 2 type: Transform - - uid: 5297 + - uid: 5525 components: - pos: -31.5,-33.5 parent: 2 type: Transform - - uid: 5298 + - uid: 5526 components: - pos: -32.5,-34.5 parent: 2 type: Transform - - uid: 5299 + - uid: 5527 components: - pos: -31.5,-34.5 parent: 2 type: Transform - - uid: 5300 + - uid: 5528 components: - pos: -30.5,-35.5 parent: 2 type: Transform - proto: FloorTileItemDirty entities: - - uid: 5301 + - uid: 5529 components: - pos: -31.243633,35.59478 parent: 2 type: Transform - - uid: 5302 + - uid: 5530 components: - pos: -31.306133,34.719173 parent: 2 type: Transform - - uid: 5303 + - uid: 5531 components: - pos: -30.212383,35.54266 parent: 2 type: Transform - - uid: 5304 + - uid: 5532 components: - pos: -30.306133,29.684427 parent: 2 type: Transform - - uid: 5305 + - uid: 5533 components: - pos: -30.743633,30.633001 parent: 2 type: Transform - - uid: 5306 + - uid: 5534 components: - pos: -30.3478,34.510693 parent: 2 type: Transform - proto: FloorTileItemWood entities: - - uid: 5307 + - uid: 5535 components: - pos: 24.5,-9.5 parent: 2 type: Transform - - uid: 5308 + - uid: 5536 components: - pos: 24.5,-11.5 parent: 2 type: Transform - - uid: 5309 + - uid: 5537 components: - pos: 26.5,-11.5 parent: 2 type: Transform - - uid: 5310 + - uid: 5538 components: - pos: 25.5,-11.5 parent: 2 type: Transform - proto: FloraRockSolid03 entities: - - uid: 5311 + - uid: 5539 components: - desc: Mr. Pebble welcomes you to the station. name: Mr. Pebble @@ -34181,67 +35322,67 @@ entities: type: Transform - proto: FoodBanana entities: - - uid: 5312 + - uid: 5540 components: - pos: 0.74280304,-13.150227 parent: 2 type: Transform - - uid: 5313 + - uid: 5541 components: - pos: 0.77405304,-13.296162 parent: 2 type: Transform - - uid: 5314 + - uid: 5542 components: - pos: 0.6386363,-13.431673 parent: 2 type: Transform - proto: FoodBoxPizzaFilled entities: - - uid: 5315 + - uid: 5543 components: - pos: 18.499884,-2.4750767 parent: 2 type: Transform - proto: FoodBurgerBig entities: - - uid: 5316 + - uid: 5544 components: - pos: -10.579243,-34.84249 parent: 2 type: Transform - proto: FoodCondimentBottleBBQ entities: - - uid: 5317 + - uid: 5545 components: - pos: -6.422942,-1.7258348 parent: 2 type: Transform - proto: FoodLollipop entities: - - uid: 5318 + - uid: 5546 components: - pos: -16.461855,10.520372 parent: 2 type: Transform - - uid: 5319 + - uid: 5547 components: - pos: -14.887274,14.543169 parent: 2 type: Transform - - uid: 5320 + - uid: 5548 components: - pos: -23.069107,20.758572 parent: 2 type: Transform - - uid: 5321 + - uid: 5549 components: - pos: -22.850357,20.727322 parent: 2 type: Transform - proto: FoodMealNachosCheesy entities: - - uid: 5322 + - uid: 5550 components: - desc: The delicious combination of nachos and melting cheese. Perfect for a date. type: MetaData @@ -34250,87 +35391,87 @@ entities: type: Transform - proto: FoodPieBaklava entities: - - uid: 5323 + - uid: 5551 components: - pos: -27.867994,-35.865368 parent: 2 type: Transform - proto: FoodPieBananaCream entities: - - uid: 5324 + - uid: 5552 components: - pos: 0.3261363,-13.139803 parent: 2 type: Transform - - uid: 5325 + - uid: 5553 components: - pos: 0.2948863,-13.275314 parent: 2 type: Transform - - uid: 5326 + - uid: 5554 components: - pos: 0.34696966,-13.442097 parent: 2 type: Transform - proto: FoodPieXeno entities: - - uid: 5327 + - uid: 5555 components: - pos: 23.902102,41.45766 parent: 2 type: Transform - proto: FoodPizzaCorncob entities: - - uid: 5328 + - uid: 5556 components: - pos: -1.3486013,-0.32308888 parent: 2 type: Transform - proto: FoodPizzaCorncobSlice entities: - - uid: 5329 + - uid: 5557 components: - pos: -1.9840181,-0.5107192 parent: 2 type: Transform - proto: FoodTartCoco entities: - - uid: 5330 + - uid: 5558 components: - pos: 32.130154,45.206635 parent: 2 type: Transform - proto: Fork entities: - - uid: 5331 + - uid: 5559 components: - pos: -2.5,-2.5 parent: 2 type: Transform - proto: GasMinerNitrogen entities: - - uid: 5332 + - uid: 5560 components: - pos: 23.5,39.5 parent: 2 type: Transform - proto: GasMinerOxygen entities: - - uid: 5333 + - uid: 5561 components: - pos: 21.5,39.5 parent: 2 type: Transform - proto: GasMinerPlasma entities: - - uid: 5334 + - uid: 5562 components: - pos: 25.5,39.5 parent: 2 type: Transform - proto: GasMixerFlipped entities: - - uid: 5335 + - uid: 5563 components: - rot: 3.141592653589793 rad pos: 20.5,30.5 @@ -34338,7 +35479,7 @@ entities: type: Transform - color: '#02FFD0FF' type: AtmosPipeColor - - uid: 5336 + - uid: 5564 components: - rot: 3.141592653589793 rad pos: 9.5,29.5 @@ -34346,54 +35487,54 @@ entities: type: Transform - proto: GasOutletInjector entities: - - uid: 5337 + - uid: 5565 components: - pos: 7.5,37.5 parent: 2 type: Transform - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 5338 + - uid: 5566 components: - pos: 25.5,37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5339 + - uid: 5567 components: - pos: 21.5,37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5340 + - uid: 5568 components: - pos: 23.5,37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5341 + - uid: 5569 components: - pos: 15.5,35.5 parent: 2 type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 5342 + - uid: 5570 components: - pos: 27.5,37.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5343 + - uid: 5571 components: - pos: -14.5,35.5 parent: 2 type: Transform - - uid: 5344 + - uid: 5572 components: - pos: 10.5,37.5 parent: 2 @@ -34402,7 +35543,7 @@ entities: type: AtmosPipeColor - proto: GasPassiveGate entities: - - uid: 5345 + - uid: 5573 components: - rot: 3.141592653589793 rad pos: 10.5,38.5 @@ -34412,13 +35553,13 @@ entities: type: AtmosPipeColor - proto: GasPassiveVent entities: - - uid: 5346 + - uid: 5574 components: - rot: -1.5707963267948966 rad pos: 31.5,32.5 parent: 2 type: Transform - - uid: 5347 + - uid: 5575 components: - rot: 1.5707963267948966 rad pos: 7.5,38.5 @@ -34426,7 +35567,7 @@ entities: type: Transform - color: '#FF5900FF' type: AtmosPipeColor - - uid: 5348 + - uid: 5576 components: - rot: 1.5707963267948966 rad pos: 7.5,39.5 @@ -34434,33 +35575,33 @@ entities: type: Transform - color: '#FF5900FF' type: AtmosPipeColor - - uid: 5349 + - uid: 5577 components: - pos: 19.5,35.5 parent: 2 type: Transform - color: '#B600FFFF' type: AtmosPipeColor - - uid: 5350 + - uid: 5578 components: - rot: 1.5707963267948966 rad pos: -7.5,2.5 parent: 2 type: Transform - - uid: 5351 + - uid: 5579 components: - rot: 1.5707963267948966 rad pos: -7.5,0.5 parent: 2 type: Transform - - uid: 5352 + - uid: 5580 components: - pos: 28.5,37.5 parent: 2 type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 5353 + - uid: 5581 components: - rot: 1.5707963267948966 rad pos: 25.5,38.5 @@ -34468,7 +35609,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 5354 + - uid: 5582 components: - rot: -1.5707963267948966 rad pos: 21.5,38.5 @@ -34476,7 +35617,7 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - uid: 5355 + - uid: 5583 components: - rot: -1.5707963267948966 rad pos: 23.5,38.5 @@ -34484,21 +35625,21 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - uid: 5356 + - uid: 5584 components: - pos: 14.5,35.5 parent: 2 type: Transform - color: '#826003FF' type: AtmosPipeColor - - uid: 5357 + - uid: 5585 components: - pos: -12.5,35.5 parent: 2 type: Transform - proto: GasPipeBend entities: - - uid: 5358 + - uid: 5586 components: - rot: -1.5707963267948966 rad pos: 22.5,30.5 @@ -34506,7 +35647,7 @@ entities: type: Transform - color: '#02FFD0FF' type: AtmosPipeColor - - uid: 5359 + - uid: 5587 components: - rot: -1.5707963267948966 rad pos: 20.5,29.5 @@ -34514,7 +35655,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5360 + - uid: 5588 components: - rot: 3.141592653589793 rad pos: 3.5,31.5 @@ -34522,14 +35663,14 @@ entities: type: Transform - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 5361 + - uid: 5589 components: - pos: 8.5,39.5 parent: 2 type: Transform - color: '#FF5900FF' type: AtmosPipeColor - - uid: 5362 + - uid: 5590 components: - rot: 1.5707963267948966 rad pos: 9.5,39.5 @@ -34537,7 +35678,7 @@ entities: type: Transform - color: '#FF5400FF' type: AtmosPipeColor - - uid: 5363 + - uid: 5591 components: - rot: -1.5707963267948966 rad pos: 10.5,37.5 @@ -34545,35 +35686,35 @@ entities: type: Transform - color: '#FF5900FF' type: AtmosPipeColor - - uid: 5364 + - uid: 5592 components: - pos: 10.5,39.5 parent: 2 type: Transform - color: '#FF5400FF' type: AtmosPipeColor - - uid: 5365 + - uid: 5593 components: - pos: 11.5,2.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5366 + - uid: 5594 components: - pos: 13.5,1.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5367 + - uid: 5595 components: - pos: 0.5,-6.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5368 + - uid: 5596 components: - rot: 3.141592653589793 rad pos: -1.5,-7.5 @@ -34581,7 +35722,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5369 + - uid: 5597 components: - rot: 3.141592653589793 rad pos: -0.5,-6.5 @@ -34589,38 +35730,38 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5370 + - uid: 5598 components: - pos: -14.5,-6.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5371 + - uid: 5599 components: - rot: -1.5707963267948966 rad pos: -6.5,0.5 parent: 2 type: Transform - - uid: 5372 + - uid: 5600 components: - pos: -6.5,2.5 parent: 2 type: Transform - - uid: 5373 + - uid: 5601 components: - rot: -1.5707963267948966 rad pos: -4.5,1.5 parent: 2 type: Transform - - uid: 5374 + - uid: 5602 components: - pos: 17.5,-13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5375 + - uid: 5603 components: - rot: -1.5707963267948966 rad pos: -5.5,45.5 @@ -34628,14 +35769,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5376 + - uid: 5604 components: - pos: 15.5,-25.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5377 + - uid: 5605 components: - rot: 3.141592653589793 rad pos: 13.5,-27.5 @@ -34643,14 +35784,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5378 + - uid: 5606 components: - pos: 26.5,38.5 parent: 2 type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 5379 + - uid: 5607 components: - rot: -1.5707963267948966 rad pos: 16.5,21.5 @@ -34658,7 +35799,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5380 + - uid: 5608 components: - rot: 1.5707963267948966 rad pos: -20.5,-11.5 @@ -34666,7 +35807,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5381 + - uid: 5609 components: - rot: 1.5707963267948966 rad pos: 22.5,38.5 @@ -34674,7 +35815,7 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - uid: 5382 + - uid: 5610 components: - rot: 1.5707963267948966 rad pos: 20.5,38.5 @@ -34682,7 +35823,7 @@ entities: type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - uid: 5383 + - uid: 5611 components: - rot: 1.5707963267948966 rad pos: 3.5,39.5 @@ -34690,7 +35831,7 @@ entities: type: Transform - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 5384 + - uid: 5612 components: - rot: 3.141592653589793 rad pos: 11.5,-18.5 @@ -34698,7 +35839,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5385 + - uid: 5613 components: - rot: -1.5707963267948966 rad pos: 19.5,25.5 @@ -34706,7 +35847,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5386 + - uid: 5614 components: - rot: 1.5707963267948966 rad pos: 17.5,25.5 @@ -34714,7 +35855,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5387 + - uid: 5615 components: - rot: -1.5707963267948966 rad pos: 17.5,20.5 @@ -34722,7 +35863,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5388 + - uid: 5616 components: - rot: 3.141592653589793 rad pos: 10.5,-19.5 @@ -34730,14 +35871,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5389 + - uid: 5617 components: - pos: 13.5,-25.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5390 + - uid: 5618 components: - rot: 3.141592653589793 rad pos: 14.5,-25.5 @@ -34745,14 +35886,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5391 + - uid: 5619 components: - pos: -16.5,-0.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5392 + - uid: 5620 components: - rot: 3.141592653589793 rad pos: -18.5,9.5 @@ -34760,7 +35901,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5393 + - uid: 5621 components: - rot: -1.5707963267948966 rad pos: -17.5,17.5 @@ -34768,7 +35909,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5394 + - uid: 5622 components: - rot: 3.141592653589793 rad pos: -21.5,13.5 @@ -34776,7 +35917,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5395 + - uid: 5623 components: - rot: 1.5707963267948966 rad pos: -12.5,13.5 @@ -34784,7 +35925,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5396 + - uid: 5624 components: - rot: 1.5707963267948966 rad pos: -11.5,12.5 @@ -34792,7 +35933,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5397 + - uid: 5625 components: - rot: 3.141592653589793 rad pos: 1.5,5.5 @@ -34800,7 +35941,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5398 + - uid: 5626 components: - rot: 3.141592653589793 rad pos: 2.5,6.5 @@ -34808,21 +35949,21 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5399 + - uid: 5627 components: - pos: 4.5,6.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5400 + - uid: 5628 components: - pos: 3.5,5.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5401 + - uid: 5629 components: - rot: -1.5707963267948966 rad pos: -2.5,0.5 @@ -34830,7 +35971,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5402 + - uid: 5630 components: - rot: 3.141592653589793 rad pos: 0.5,-12.5 @@ -34838,7 +35979,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5403 + - uid: 5631 components: - rot: -1.5707963267948966 rad pos: -8.5,-28.5 @@ -34846,7 +35987,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5404 + - uid: 5632 components: - rot: -1.5707963267948966 rad pos: -6.5,-24.5 @@ -34854,7 +35995,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5405 + - uid: 5633 components: - rot: 3.141592653589793 rad pos: 4.5,-14.5 @@ -34862,7 +36003,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5406 + - uid: 5634 components: - rot: 3.141592653589793 rad pos: 3.5,-15.5 @@ -34870,21 +36011,21 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5407 + - uid: 5635 components: - pos: 4.5,-15.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5408 + - uid: 5636 components: - pos: 5.5,-14.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5409 + - uid: 5637 components: - rot: 3.141592653589793 rad pos: -11.5,-18.5 @@ -34892,7 +36033,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5410 + - uid: 5638 components: - rot: 3.141592653589793 rad pos: -2.5,-26.5 @@ -34900,7 +36041,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5411 + - uid: 5639 components: - rot: -1.5707963267948966 rad pos: 1.5,-26.5 @@ -34908,7 +36049,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5412 + - uid: 5640 components: - rot: 1.5707963267948966 rad pos: -7.5,-24.5 @@ -34916,14 +36057,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5413 + - uid: 5641 components: - pos: 11.5,-11.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5414 + - uid: 5642 components: - rot: -1.5707963267948966 rad pos: -7.5,-29.5 @@ -34931,7 +36072,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5415 + - uid: 5643 components: - rot: -1.5707963267948966 rad pos: 0.5,31.5 @@ -34939,7 +36080,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5416 + - uid: 5644 components: - rot: 1.5707963267948966 rad pos: -6.5,19.5 @@ -34947,7 +36088,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5417 + - uid: 5645 components: - rot: 3.141592653589793 rad pos: -12.5,-19.5 @@ -34955,7 +36096,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5418 + - uid: 5646 components: - rot: -1.5707963267948966 rad pos: 15.5,16.5 @@ -34963,7 +36104,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5419 + - uid: 5647 components: - rot: 3.141592653589793 rad pos: -10.5,23.5 @@ -34971,14 +36112,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5420 + - uid: 5648 components: - pos: 23.5,-20.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5421 + - uid: 5649 components: - rot: 3.141592653589793 rad pos: 19.5,-20.5 @@ -34986,14 +36127,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5422 + - uid: 5650 components: - pos: 19.5,-19.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5423 + - uid: 5651 components: - rot: -1.5707963267948966 rad pos: 4.5,19.5 @@ -35001,7 +36142,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5424 + - uid: 5652 components: - rot: 1.5707963267948966 rad pos: 10.5,21.5 @@ -35009,7 +36150,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5425 + - uid: 5653 components: - rot: 3.141592653589793 rad pos: -9.5,45.5 @@ -35017,7 +36158,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5426 + - uid: 5654 components: - rot: -1.5707963267948966 rad pos: -17.5,-15.5 @@ -35025,14 +36166,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5427 + - uid: 5655 components: - pos: 10.5,-12.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5428 + - uid: 5656 components: - rot: 3.141592653589793 rad pos: -22.5,4.5 @@ -35040,7 +36181,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5429 + - uid: 5657 components: - rot: 3.141592653589793 rad pos: -21.5,5.5 @@ -35048,7 +36189,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5430 + - uid: 5658 components: - rot: 3.141592653589793 rad pos: -9.5,24.5 @@ -35056,7 +36197,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5431 + - uid: 5659 components: - rot: 3.141592653589793 rad pos: 17.5,-14.5 @@ -35064,7 +36205,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5432 + - uid: 5660 components: - rot: 1.5707963267948966 rad pos: -5.5,27.5 @@ -35072,14 +36213,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5433 + - uid: 5661 components: - pos: -8.5,45.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5434 + - uid: 5662 components: - rot: 1.5707963267948966 rad pos: -17.5,-12.5 @@ -35087,14 +36228,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5435 + - uid: 5663 components: - pos: 6.5,10.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5436 + - uid: 5664 components: - rot: 3.141592653589793 rad pos: 11.5,10.5 @@ -35102,7 +36243,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5437 + - uid: 5665 components: - rot: 1.5707963267948966 rad pos: -8.5,-23.5 @@ -35110,7 +36251,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5438 + - uid: 5666 components: - rot: 3.141592653589793 rad pos: 15.5,26.5 @@ -35118,7 +36259,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5439 + - uid: 5667 components: - rot: 3.141592653589793 rad pos: 15.5,24.5 @@ -35126,14 +36267,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5440 + - uid: 5668 components: - pos: 20.5,-18.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5441 + - uid: 5669 components: - rot: -1.5707963267948966 rad pos: -7.5,-23.5 @@ -35141,14 +36282,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5442 + - uid: 5670 components: - pos: -21.5,7.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5443 + - uid: 5671 components: - rot: 1.5707963267948966 rad pos: -20.5,-7.5 @@ -35156,7 +36297,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5444 + - uid: 5672 components: - rot: 1.5707963267948966 rad pos: -19.5,-6.5 @@ -35164,14 +36305,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5445 + - uid: 5673 components: - pos: 31.5,17.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5446 + - uid: 5674 components: - rot: -1.5707963267948966 rad pos: 31.5,10.5 @@ -35179,7 +36320,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5447 + - uid: 5675 components: - rot: 1.5707963267948966 rad pos: 17.5,10.5 @@ -35187,14 +36328,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5448 + - uid: 5676 components: - pos: 2.5,15.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5449 + - uid: 5677 components: - rot: 1.5707963267948966 rad pos: -1.5,16.5 @@ -35202,7 +36343,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5450 + - uid: 5678 components: - rot: 1.5707963267948966 rad pos: -6.5,45.5 @@ -35210,7 +36351,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5451 + - uid: 5679 components: - rot: -1.5707963267948966 rad pos: -0.5,32.5 @@ -35218,7 +36359,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5452 + - uid: 5680 components: - rot: 1.5707963267948966 rad pos: -19.5,-15.5 @@ -35226,7 +36367,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5453 + - uid: 5681 components: - rot: -1.5707963267948966 rad pos: -19.5,-16.5 @@ -35234,7 +36375,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5454 + - uid: 5682 components: - rot: -1.5707963267948966 rad pos: -20.5,-15.5 @@ -35242,7 +36383,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5455 + - uid: 5683 components: - rot: 3.141592653589793 rad pos: -14.5,32.5 @@ -35250,18 +36391,18 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5456 + - uid: 5684 components: - rot: 3.141592653589793 rad pos: -14.5,34.5 parent: 2 type: Transform - - uid: 5457 + - uid: 5685 components: - pos: -13.5,34.5 parent: 2 type: Transform - - uid: 5458 + - uid: 5686 components: - rot: 3.141592653589793 rad pos: -1.5,25.5 @@ -35269,7 +36410,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5459 + - uid: 5687 components: - rot: 3.141592653589793 rad pos: -1.5,25.5 @@ -35277,7 +36418,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5460 + - uid: 5688 components: - rot: -1.5707963267948966 rad pos: 5.5,25.5 @@ -35285,39 +36426,39 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5461 + - uid: 5689 components: - pos: 5.5,24.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5462 + - uid: 5690 components: - rot: 1.5707963267948966 rad pos: 1.5,29.5 parent: 2 type: Transform - - uid: 5463 + - uid: 5691 components: - pos: 3.5,29.5 parent: 2 type: Transform - - uid: 5464 + - uid: 5692 components: - pos: -27.5,6.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5465 + - uid: 5693 components: - pos: -26.5,11.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5466 + - uid: 5694 components: - rot: 3.141592653589793 rad pos: -26.5,5.5 @@ -35325,7 +36466,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5467 + - uid: 5695 components: - rot: 3.141592653589793 rad pos: -27.5,4.5 @@ -35333,7 +36474,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5468 + - uid: 5696 components: - rot: 3.141592653589793 rad pos: -26.5,-2.5 @@ -35341,7 +36482,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5469 + - uid: 5697 components: - rot: 3.141592653589793 rad pos: -25.5,-4.5 @@ -35349,21 +36490,21 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5470 + - uid: 5698 components: - pos: -25.5,5.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5471 + - uid: 5699 components: - pos: -26.5,4.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5472 + - uid: 5700 components: - rot: 3.141592653589793 rad pos: 11.5,1.5 @@ -35371,7 +36512,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5473 + - uid: 5701 components: - rot: -1.5707963267948966 rad pos: 20.5,-0.5 @@ -35379,7 +36520,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5474 + - uid: 5702 components: - rot: 1.5707963267948966 rad pos: 20.5,1.5 @@ -35387,7 +36528,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5475 + - uid: 5703 components: - rot: -1.5707963267948966 rad pos: 7.5,34.5 @@ -35395,7 +36536,7 @@ entities: type: Transform - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 5476 + - uid: 5704 components: - rot: -1.5707963267948966 rad pos: 6.5,0.5 @@ -35403,14 +36544,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5477 + - uid: 5705 components: - pos: 14.5,30.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5478 + - uid: 5706 components: - rot: 3.141592653589793 rad pos: 14.5,28.5 @@ -35418,7 +36559,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5479 + - uid: 5707 components: - pos: 5.5,39.5 parent: 2 @@ -35427,182 +36568,182 @@ entities: type: AtmosPipeColor - proto: GasPipeFourway entities: - - uid: 5480 + - uid: 5708 components: - pos: 3.5,-12.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5481 + - uid: 5709 components: - pos: 4.5,-11.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5482 + - uid: 5710 components: - pos: -2.5,32.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5483 + - uid: 5711 components: - pos: -16.5,-2.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5484 + - uid: 5712 components: - pos: -11.5,-4.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5485 + - uid: 5713 components: - pos: -12.5,-2.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5486 + - uid: 5714 components: - pos: 16.5,26.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5487 + - uid: 5715 components: - pos: 11.5,-17.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5488 + - uid: 5716 components: - pos: -11.5,9.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5489 + - uid: 5717 components: - pos: -12.5,8.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5490 + - uid: 5718 components: - pos: -19.5,13.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5491 + - uid: 5719 components: - pos: -18.5,12.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5492 + - uid: 5720 components: - pos: -1.5,-4.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5493 + - uid: 5721 components: - pos: -24.5,-2.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5494 + - uid: 5722 components: - pos: -23.5,-4.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5495 + - uid: 5723 components: - pos: -1.5,31.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5496 + - uid: 5724 components: - pos: -23.5,-18.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5497 + - uid: 5725 components: - pos: -24.5,-19.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5498 + - uid: 5726 components: - pos: -23.5,-23.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5499 + - uid: 5727 components: - pos: -24.5,-24.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5500 + - uid: 5728 components: - pos: 4.5,-4.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5501 + - uid: 5729 components: - pos: 8.5,31.5 parent: 2 type: Transform - color: '#FF5900FF' type: AtmosPipeColor - - uid: 5502 + - uid: 5730 components: - pos: 4.5,0.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5503 + - uid: 5731 components: - pos: 6.5,31.5 parent: 2 type: Transform - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 5504 + - uid: 5732 components: - pos: 7.5,-0.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5505 + - uid: 5733 components: - pos: 10.5,16.5 parent: 2 @@ -35611,7 +36752,7 @@ entities: type: AtmosPipeColor - proto: GasPipeStraight entities: - - uid: 5506 + - uid: 5734 components: - rot: -1.5707963267948966 rad pos: 21.5,30.5 @@ -35619,7 +36760,7 @@ entities: type: Transform - color: '#02FFD0FF' type: AtmosPipeColor - - uid: 5507 + - uid: 5735 components: - rot: -1.5707963267948966 rad pos: 19.5,29.5 @@ -35627,7 +36768,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5508 + - uid: 5736 components: - rot: 3.141592653589793 rad pos: 22.5,31.5 @@ -35635,7 +36776,7 @@ entities: type: Transform - color: '#02FFD0FF' type: AtmosPipeColor - - uid: 5509 + - uid: 5737 components: - rot: 3.141592653589793 rad pos: 22.5,32.5 @@ -35643,7 +36784,7 @@ entities: type: Transform - color: '#02FFD0FF' type: AtmosPipeColor - - uid: 5510 + - uid: 5738 components: - rot: 3.141592653589793 rad pos: 20.5,31.5 @@ -35651,7 +36792,7 @@ entities: type: Transform - color: '#02FFD0FF' type: AtmosPipeColor - - uid: 5511 + - uid: 5739 components: - rot: -1.5707963267948966 rad pos: 9.5,16.5 @@ -35659,7 +36800,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5512 + - uid: 5740 components: - rot: -1.5707963267948966 rad pos: 12.5,29.5 @@ -35667,7 +36808,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5513 + - uid: 5741 components: - rot: 1.5707963267948966 rad pos: 22.5,0.5 @@ -35675,14 +36816,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5514 + - uid: 5742 components: - pos: 24.5,-0.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5515 + - uid: 5743 components: - rot: 3.141592653589793 rad pos: 6.5,1.5 @@ -35690,7 +36831,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5516 + - uid: 5744 components: - rot: 1.5707963267948966 rad pos: 11.5,31.5 @@ -35698,7 +36839,7 @@ entities: type: Transform - color: '#FF5900FF' type: AtmosPipeColor - - uid: 5517 + - uid: 5745 components: - rot: 1.5707963267948966 rad pos: 16.5,-0.5 @@ -35706,7 +36847,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5518 + - uid: 5746 components: - rot: 3.141592653589793 rad pos: 7.5,1.5 @@ -35714,7 +36855,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5519 + - uid: 5747 components: - rot: -1.5707963267948966 rad pos: 8.5,-6.5 @@ -35722,7 +36863,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5520 + - uid: 5748 components: - rot: 3.141592653589793 rad pos: 7.5,36.5 @@ -35730,14 +36871,14 @@ entities: type: Transform - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 5521 + - uid: 5749 components: - pos: 9.5,36.5 parent: 2 type: Transform - color: '#FF5900FF' type: AtmosPipeColor - - uid: 5522 + - uid: 5750 components: - rot: 1.5707963267948966 rad pos: 12.5,31.5 @@ -35745,14 +36886,14 @@ entities: type: Transform - color: '#FF5900FF' type: AtmosPipeColor - - uid: 5523 + - uid: 5751 components: - pos: 8.5,37.5 parent: 2 type: Transform - color: '#FF5900FF' type: AtmosPipeColor - - uid: 5524 + - uid: 5752 components: - rot: 3.141592653589793 rad pos: 7.5,0.5 @@ -35760,7 +36901,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5525 + - uid: 5753 components: - rot: -1.5707963267948966 rad pos: 11.5,-0.5 @@ -35768,7 +36909,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5526 + - uid: 5754 components: - rot: -1.5707963267948966 rad pos: 12.5,-0.5 @@ -35776,7 +36917,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5527 + - uid: 5755 components: - rot: -1.5707963267948966 rad pos: 13.5,-0.5 @@ -35784,7 +36925,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5528 + - uid: 5756 components: - rot: -1.5707963267948966 rad pos: 14.5,-0.5 @@ -35792,7 +36933,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5529 + - uid: 5757 components: - rot: -1.5707963267948966 rad pos: 23.5,0.5 @@ -35800,7 +36941,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5530 + - uid: 5758 components: - rot: 3.141592653589793 rad pos: 16.5,-3.5 @@ -35808,7 +36949,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5531 + - uid: 5759 components: - rot: 1.5707963267948966 rad pos: 21.5,0.5 @@ -35816,7 +36957,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5532 + - uid: 5760 components: - rot: 3.141592653589793 rad pos: 16.5,-0.5 @@ -35824,7 +36965,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5533 + - uid: 5761 components: - rot: 3.141592653589793 rad pos: 16.5,-1.5 @@ -35832,7 +36973,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5534 + - uid: 5762 components: - rot: 3.141592653589793 rad pos: 3.5,36.5 @@ -35840,14 +36981,14 @@ entities: type: Transform - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 5535 + - uid: 5763 components: - pos: 3.5,34.5 parent: 2 type: Transform - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 5536 + - uid: 5764 components: - rot: 3.141592653589793 rad pos: 19.5,31.5 @@ -35855,14 +36996,14 @@ entities: type: Transform - color: '#B600FFFF' type: AtmosPipeColor - - uid: 5537 + - uid: 5765 components: - pos: -20.5,-14.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5538 + - uid: 5766 components: - rot: -1.5707963267948966 rad pos: -6.5,24.5 @@ -35870,14 +37011,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5539 + - uid: 5767 components: - pos: -7.5,21.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5540 + - uid: 5768 components: - rot: 1.5707963267948966 rad pos: -17.5,-11.5 @@ -35885,35 +37026,35 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5541 + - uid: 5769 components: - pos: 1.5,11.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5542 + - uid: 5770 components: - pos: 25.5,36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5543 + - uid: 5771 components: - pos: 25.5,35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5544 + - uid: 5772 components: - pos: 25.5,34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5545 + - uid: 5773 components: - rot: -1.5707963267948966 rad pos: -8.5,24.5 @@ -35921,48 +37062,48 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5546 + - uid: 5774 components: - pos: 11.5,17.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5547 + - uid: 5775 components: - pos: -11.5,-6.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5548 + - uid: 5776 components: - pos: -11.5,-0.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5549 + - uid: 5777 components: - pos: -12.5,0.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5550 + - uid: 5778 components: - pos: -12.5,-7.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5551 + - uid: 5779 components: - rot: -1.5707963267948966 rad pos: -5.5,1.5 parent: 2 type: Transform - - uid: 5552 + - uid: 5780 components: - rot: -1.5707963267948966 rad pos: -18.5,5.5 @@ -35970,7 +37111,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5553 + - uid: 5781 components: - rot: -1.5707963267948966 rad pos: -15.5,-2.5 @@ -35978,7 +37119,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5554 + - uid: 5782 components: - rot: -1.5707963267948966 rad pos: -13.5,-4.5 @@ -35986,7 +37127,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5555 + - uid: 5783 components: - rot: -1.5707963267948966 rad pos: -17.5,5.5 @@ -35994,7 +37135,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5556 + - uid: 5784 components: - rot: 3.141592653589793 rad pos: -19.5,-8.5 @@ -36002,7 +37143,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5557 + - uid: 5785 components: - rot: -1.5707963267948966 rad pos: -19.5,5.5 @@ -36010,7 +37151,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5558 + - uid: 5786 components: - rot: -1.5707963267948966 rad pos: -13.5,-2.5 @@ -36018,7 +37159,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5559 + - uid: 5787 components: - rot: -1.5707963267948966 rad pos: -14.5,-2.5 @@ -36026,7 +37167,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5560 + - uid: 5788 components: - rot: -1.5707963267948966 rad pos: 2.5,25.5 @@ -36034,7 +37175,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5561 + - uid: 5789 components: - rot: 1.5707963267948966 rad pos: -23.5,8.5 @@ -36042,14 +37183,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5562 + - uid: 5790 components: - pos: -2.5,29.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5563 + - uid: 5791 components: - rot: 3.141592653589793 rad pos: 27.5,35.5 @@ -36057,14 +37198,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5564 + - uid: 5792 components: - pos: 10.5,18.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5565 + - uid: 5793 components: - rot: 3.141592653589793 rad pos: 14.5,29.5 @@ -36072,7 +37213,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5566 + - uid: 5794 components: - rot: 3.141592653589793 rad pos: -23.5,-24.5 @@ -36080,7 +37221,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5567 + - uid: 5795 components: - rot: 1.5707963267948966 rad pos: -19.5,-11.5 @@ -36088,7 +37229,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5568 + - uid: 5796 components: - rot: -1.5707963267948966 rad pos: 3.5,-11.5 @@ -36096,14 +37237,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5569 + - uid: 5797 components: - pos: -1.5,-6.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5570 + - uid: 5798 components: - rot: 3.141592653589793 rad pos: -17.5,-8.5 @@ -36111,7 +37252,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5571 + - uid: 5799 components: - rot: 3.141592653589793 rad pos: -23.5,-26.5 @@ -36119,7 +37260,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5572 + - uid: 5800 components: - rot: -1.5707963267948966 rad pos: -24.5,-27.5 @@ -36127,7 +37268,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5573 + - uid: 5801 components: - rot: -1.5707963267948966 rad pos: 3.5,19.5 @@ -36135,14 +37276,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5574 + - uid: 5802 components: - pos: 4.5,-22.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5575 + - uid: 5803 components: - rot: -1.5707963267948966 rad pos: 14.5,29.5 @@ -36150,14 +37291,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5576 + - uid: 5804 components: - pos: -7.5,22.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5577 + - uid: 5805 components: - rot: -1.5707963267948966 rad pos: -5.5,24.5 @@ -36165,7 +37306,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5578 + - uid: 5806 components: - rot: 1.5707963267948966 rad pos: -3.5,31.5 @@ -36173,35 +37314,35 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5579 + - uid: 5807 components: - pos: -7.5,19.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5580 + - uid: 5808 components: - pos: -2.5,30.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5581 + - uid: 5809 components: - pos: 26.5,37.5 parent: 2 type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 5582 + - uid: 5810 components: - pos: 26.5,36.5 parent: 2 type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 5583 + - uid: 5811 components: - rot: 1.5707963267948966 rad pos: -4.5,20.5 @@ -36209,14 +37350,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5584 + - uid: 5812 components: - pos: 15.5,-26.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5585 + - uid: 5813 components: - rot: 3.141592653589793 rad pos: 13.5,-26.5 @@ -36224,7 +37365,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5586 + - uid: 5814 components: - rot: 3.141592653589793 rad pos: 12.5,-24.5 @@ -36232,7 +37373,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5587 + - uid: 5815 components: - rot: 1.5707963267948966 rad pos: 15.5,28.5 @@ -36240,21 +37381,21 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5588 + - uid: 5816 components: - pos: 17.5,22.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5589 + - uid: 5817 components: - pos: 16.5,23.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5590 + - uid: 5818 components: - rot: 3.141592653589793 rad pos: 27.5,36.5 @@ -36262,7 +37403,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5591 + - uid: 5819 components: - rot: 1.5707963267948966 rad pos: 16.5,20.5 @@ -36270,7 +37411,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5592 + - uid: 5820 components: - rot: 1.5707963267948966 rad pos: -3.5,19.5 @@ -36278,7 +37419,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5593 + - uid: 5821 components: - rot: 1.5707963267948966 rad pos: -2.5,20.5 @@ -36286,7 +37427,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5594 + - uid: 5822 components: - rot: 1.5707963267948966 rad pos: -1.5,19.5 @@ -36294,14 +37435,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5595 + - uid: 5823 components: - pos: 26.5,35.5 parent: 2 type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 5596 + - uid: 5824 components: - rot: 1.5707963267948966 rad pos: -5.5,20.5 @@ -36309,14 +37450,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5597 + - uid: 5825 components: - pos: 26.5,34.5 parent: 2 type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 5598 + - uid: 5826 components: - rot: -1.5707963267948966 rad pos: -10.5,32.5 @@ -36324,49 +37465,49 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5599 + - uid: 5827 components: - pos: 21.5,36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5600 + - uid: 5828 components: - pos: 21.5,35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5601 + - uid: 5829 components: - pos: 21.5,34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5602 + - uid: 5830 components: - pos: 23.5,36.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5603 + - uid: 5831 components: - pos: 23.5,35.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5604 + - uid: 5832 components: - pos: 23.5,34.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5605 + - uid: 5833 components: - rot: -1.5707963267948966 rad pos: 3.5,24.5 @@ -36374,7 +37515,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5606 + - uid: 5834 components: - rot: 1.5707963267948966 rad pos: 2.5,19.5 @@ -36382,7 +37523,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5607 + - uid: 5835 components: - rot: -1.5707963267948966 rad pos: 1.5,25.5 @@ -36390,7 +37531,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5608 + - uid: 5836 components: - rot: -1.5707963267948966 rad pos: 12.5,18.5 @@ -36398,7 +37539,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5609 + - uid: 5837 components: - rot: -1.5707963267948966 rad pos: 13.5,18.5 @@ -36406,21 +37547,21 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5610 + - uid: 5838 components: - pos: -2.5,31.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5611 + - uid: 5839 components: - pos: 3.5,-8.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5612 + - uid: 5840 components: - rot: 3.141592653589793 rad pos: 1.5,6.5 @@ -36428,7 +37569,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5613 + - uid: 5841 components: - rot: -1.5707963267948966 rad pos: 0.5,-2.5 @@ -36436,7 +37577,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5614 + - uid: 5842 components: - rot: -1.5707963267948966 rad pos: -9.5,-4.5 @@ -36444,7 +37585,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5615 + - uid: 5843 components: - rot: 1.5707963267948966 rad pos: 16.5,28.5 @@ -36452,7 +37593,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5616 + - uid: 5844 components: - rot: 1.5707963267948966 rad pos: -16.5,-11.5 @@ -36460,7 +37601,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5617 + - uid: 5845 components: - rot: -1.5707963267948966 rad pos: -18.5,-15.5 @@ -36468,63 +37609,63 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5618 + - uid: 5846 components: - pos: 20.5,37.5 parent: 2 type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - uid: 5619 + - uid: 5847 components: - pos: 20.5,36.5 parent: 2 type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - uid: 5620 + - uid: 5848 components: - pos: 20.5,35.5 parent: 2 type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - uid: 5621 + - uid: 5849 components: - pos: 20.5,34.5 parent: 2 type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - uid: 5622 + - uid: 5850 components: - pos: 22.5,37.5 parent: 2 type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - uid: 5623 + - uid: 5851 components: - pos: 22.5,36.5 parent: 2 type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - uid: 5624 + - uid: 5852 components: - pos: 22.5,35.5 parent: 2 type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - uid: 5625 + - uid: 5853 components: - pos: 22.5,34.5 parent: 2 type: Transform - color: '#03FCD3FF' type: AtmosPipeColor - - uid: 5626 + - uid: 5854 components: - rot: 1.5707963267948966 rad pos: -16.5,-12.5 @@ -36532,7 +37673,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5627 + - uid: 5855 components: - rot: 3.141592653589793 rad pos: -6.5,37.5 @@ -36540,7 +37681,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5628 + - uid: 5856 components: - rot: 3.141592653589793 rad pos: 5.5,36.5 @@ -36548,28 +37689,28 @@ entities: type: Transform - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 5629 + - uid: 5857 components: - pos: 15.5,34.5 parent: 2 type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 5630 + - uid: 5858 components: - pos: 14.5,34.5 parent: 2 type: Transform - color: '#826003FF' type: AtmosPipeColor - - uid: 5631 + - uid: 5859 components: - pos: 19.5,34.5 parent: 2 type: Transform - color: '#B600FFFF' type: AtmosPipeColor - - uid: 5632 + - uid: 5860 components: - rot: 3.141592653589793 rad pos: 19.5,29.5 @@ -36577,14 +37718,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5633 + - uid: 5861 components: - pos: 19.5,27.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5634 + - uid: 5862 components: - rot: 3.141592653589793 rad pos: 27.5,34.5 @@ -36592,7 +37733,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 5635 + - uid: 5863 components: - rot: 1.5707963267948966 rad pos: 17.5,29.5 @@ -36600,35 +37741,35 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5636 + - uid: 5864 components: - pos: 16.5,28.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5637 + - uid: 5865 components: - pos: 16.5,27.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5638 + - uid: 5866 components: - pos: 16.5,25.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5639 + - uid: 5867 components: - pos: 16.5,22.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5640 + - uid: 5868 components: - rot: 1.5707963267948966 rad pos: 18.5,25.5 @@ -36636,28 +37777,28 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5641 + - uid: 5869 components: - pos: 17.5,24.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5642 + - uid: 5870 components: - pos: 17.5,23.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5643 + - uid: 5871 components: - pos: 17.5,21.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5644 + - uid: 5872 components: - rot: -1.5707963267948966 rad pos: 15.5,20.5 @@ -36665,7 +37806,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5645 + - uid: 5873 components: - rot: -1.5707963267948966 rad pos: 14.5,20.5 @@ -36673,7 +37814,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5646 + - uid: 5874 components: - rot: -1.5707963267948966 rad pos: 13.5,20.5 @@ -36681,7 +37822,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5647 + - uid: 5875 components: - rot: -1.5707963267948966 rad pos: 12.5,20.5 @@ -36689,7 +37830,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5648 + - uid: 5876 components: - rot: -1.5707963267948966 rad pos: 15.5,21.5 @@ -36697,7 +37838,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5649 + - uid: 5877 components: - rot: -1.5707963267948966 rad pos: 14.5,21.5 @@ -36705,7 +37846,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5650 + - uid: 5878 components: - rot: -1.5707963267948966 rad pos: 13.5,21.5 @@ -36713,7 +37854,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5651 + - uid: 5879 components: - rot: -1.5707963267948966 rad pos: 12.5,21.5 @@ -36721,7 +37862,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5652 + - uid: 5880 components: - rot: -1.5707963267948966 rad pos: 11.5,21.5 @@ -36729,28 +37870,28 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5653 + - uid: 5881 components: - pos: 11.5,-13.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5654 + - uid: 5882 components: - pos: 10.5,20.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5655 + - uid: 5883 components: - pos: 10.5,19.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5656 + - uid: 5884 components: - rot: 3.141592653589793 rad pos: 10.5,-17.5 @@ -36758,56 +37899,56 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5657 + - uid: 5885 components: - pos: 10.5,17.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5658 + - uid: 5886 components: - pos: 10.5,15.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5659 + - uid: 5887 components: - pos: 10.5,14.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5660 + - uid: 5888 components: - pos: 11.5,19.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5661 + - uid: 5889 components: - pos: 11.5,16.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5662 + - uid: 5890 components: - pos: 11.5,14.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5663 + - uid: 5891 components: - pos: 11.5,13.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5664 + - uid: 5892 components: - rot: -1.5707963267948966 rad pos: 10.5,12.5 @@ -36815,7 +37956,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5665 + - uid: 5893 components: - rot: -1.5707963267948966 rad pos: 9.5,12.5 @@ -36823,7 +37964,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5666 + - uid: 5894 components: - rot: -1.5707963267948966 rad pos: 8.5,12.5 @@ -36831,7 +37972,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5667 + - uid: 5895 components: - rot: -1.5707963267948966 rad pos: 7.5,12.5 @@ -36839,7 +37980,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5668 + - uid: 5896 components: - rot: -1.5707963267948966 rad pos: 6.5,12.5 @@ -36847,7 +37988,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5669 + - uid: 5897 components: - rot: -1.5707963267948966 rad pos: 5.5,12.5 @@ -36855,7 +37996,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5670 + - uid: 5898 components: - rot: -1.5707963267948966 rad pos: 3.5,12.5 @@ -36863,7 +38004,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5671 + - uid: 5899 components: - rot: -1.5707963267948966 rad pos: 9.5,13.5 @@ -36871,7 +38012,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5672 + - uid: 5900 components: - rot: -1.5707963267948966 rad pos: 8.5,13.5 @@ -36879,7 +38020,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5673 + - uid: 5901 components: - rot: -1.5707963267948966 rad pos: 7.5,13.5 @@ -36887,7 +38028,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5674 + - uid: 5902 components: - rot: -1.5707963267948966 rad pos: 6.5,13.5 @@ -36895,7 +38036,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5675 + - uid: 5903 components: - rot: -1.5707963267948966 rad pos: 1.5,-4.5 @@ -36903,7 +38044,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5676 + - uid: 5904 components: - rot: -1.5707963267948966 rad pos: 4.5,13.5 @@ -36911,7 +38052,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5677 + - uid: 5905 components: - rot: -1.5707963267948966 rad pos: 3.5,13.5 @@ -36919,49 +38060,49 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5678 + - uid: 5906 components: - pos: 1.5,10.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5679 + - uid: 5907 components: - pos: 1.5,9.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5680 + - uid: 5908 components: - pos: 1.5,7.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5681 + - uid: 5909 components: - pos: 2.5,11.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5682 + - uid: 5910 components: - pos: 2.5,9.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5683 + - uid: 5911 components: - pos: 2.5,8.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5684 + - uid: 5912 components: - rot: -1.5707963267948966 rad pos: -8.5,-2.5 @@ -36969,168 +38110,168 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5685 + - uid: 5913 components: - pos: 3.5,4.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5686 + - uid: 5914 components: - pos: 3.5,3.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5687 + - uid: 5915 components: - pos: 3.5,2.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5688 + - uid: 5916 components: - pos: 3.5,0.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5689 + - uid: 5917 components: - pos: 3.5,-1.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5690 + - uid: 5918 components: - pos: 3.5,-3.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5691 + - uid: 5919 components: - pos: 3.5,-4.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5692 + - uid: 5920 components: - pos: 3.5,-5.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5693 + - uid: 5921 components: - pos: 3.5,-7.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5694 + - uid: 5922 components: - pos: 4.5,-9.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5695 + - uid: 5923 components: - pos: 3.5,-10.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5696 + - uid: 5924 components: - pos: 4.5,4.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5697 + - uid: 5925 components: - pos: 4.5,3.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5698 + - uid: 5926 components: - pos: 4.5,2.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5699 + - uid: 5927 components: - pos: 4.5,1.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5700 + - uid: 5928 components: - pos: 4.5,-0.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5701 + - uid: 5929 components: - pos: 4.5,-1.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5702 + - uid: 5930 components: - pos: 4.5,-2.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5703 + - uid: 5931 components: - pos: 4.5,-3.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5704 + - uid: 5932 components: - pos: 4.5,-5.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5705 + - uid: 5933 components: - pos: 4.5,-6.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5706 + - uid: 5934 components: - pos: 4.5,-7.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5707 + - uid: 5935 components: - pos: 4.5,-8.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5708 + - uid: 5936 components: - rot: -1.5707963267948966 rad pos: 0.5,13.5 @@ -37138,7 +38279,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5709 + - uid: 5937 components: - rot: -1.5707963267948966 rad pos: 0.5,12.5 @@ -37146,7 +38287,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5710 + - uid: 5938 components: - rot: -1.5707963267948966 rad pos: -0.5,13.5 @@ -37154,7 +38295,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5711 + - uid: 5939 components: - rot: -1.5707963267948966 rad pos: -0.5,12.5 @@ -37162,7 +38303,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5712 + - uid: 5940 components: - rot: -1.5707963267948966 rad pos: -1.5,13.5 @@ -37170,7 +38311,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5713 + - uid: 5941 components: - rot: -1.5707963267948966 rad pos: -2.5,13.5 @@ -37178,7 +38319,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5714 + - uid: 5942 components: - rot: -1.5707963267948966 rad pos: -2.5,12.5 @@ -37186,7 +38327,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5715 + - uid: 5943 components: - rot: -1.5707963267948966 rad pos: -3.5,13.5 @@ -37194,7 +38335,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5716 + - uid: 5944 components: - rot: -1.5707963267948966 rad pos: -3.5,12.5 @@ -37202,7 +38343,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5717 + - uid: 5945 components: - rot: -1.5707963267948966 rad pos: -4.5,12.5 @@ -37210,7 +38351,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5718 + - uid: 5946 components: - rot: -1.5707963267948966 rad pos: -5.5,13.5 @@ -37218,7 +38359,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5719 + - uid: 5947 components: - rot: -1.5707963267948966 rad pos: -4.5,13.5 @@ -37226,7 +38367,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5720 + - uid: 5948 components: - rot: -1.5707963267948966 rad pos: -6.5,13.5 @@ -37234,7 +38375,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5721 + - uid: 5949 components: - rot: -1.5707963267948966 rad pos: -8.5,13.5 @@ -37242,7 +38383,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5722 + - uid: 5950 components: - rot: -1.5707963267948966 rad pos: -8.5,12.5 @@ -37250,7 +38391,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5723 + - uid: 5951 components: - rot: -1.5707963267948966 rad pos: -9.5,12.5 @@ -37258,7 +38399,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5724 + - uid: 5952 components: - rot: -1.5707963267948966 rad pos: -10.5,13.5 @@ -37266,7 +38407,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5725 + - uid: 5953 components: - rot: -1.5707963267948966 rad pos: -10.5,12.5 @@ -37274,7 +38415,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5726 + - uid: 5954 components: - rot: 3.141592653589793 rad pos: -12.5,11.5 @@ -37282,7 +38423,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5727 + - uid: 5955 components: - rot: 3.141592653589793 rad pos: -12.5,10.5 @@ -37290,7 +38431,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5728 + - uid: 5956 components: - rot: 3.141592653589793 rad pos: -12.5,9.5 @@ -37298,7 +38439,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5729 + - uid: 5957 components: - rot: 3.141592653589793 rad pos: -12.5,7.5 @@ -37306,7 +38447,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5730 + - uid: 5958 components: - rot: 3.141592653589793 rad pos: -12.5,5.5 @@ -37314,7 +38455,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5731 + - uid: 5959 components: - rot: 3.141592653589793 rad pos: -12.5,4.5 @@ -37322,7 +38463,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5732 + - uid: 5960 components: - rot: 3.141592653589793 rad pos: -12.5,2.5 @@ -37330,7 +38471,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5733 + - uid: 5961 components: - rot: 3.141592653589793 rad pos: -12.5,1.5 @@ -37338,7 +38479,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5734 + - uid: 5962 components: - rot: 3.141592653589793 rad pos: -12.5,-0.5 @@ -37346,7 +38487,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5735 + - uid: 5963 components: - rot: 3.141592653589793 rad pos: -12.5,-1.5 @@ -37354,7 +38495,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5736 + - uid: 5964 components: - rot: 3.141592653589793 rad pos: -12.5,-3.5 @@ -37362,7 +38503,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5737 + - uid: 5965 components: - rot: 3.141592653589793 rad pos: -12.5,-4.5 @@ -37370,7 +38511,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5738 + - uid: 5966 components: - rot: 3.141592653589793 rad pos: -12.5,-5.5 @@ -37378,7 +38519,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5739 + - uid: 5967 components: - rot: 3.141592653589793 rad pos: -12.5,-6.5 @@ -37386,7 +38527,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5740 + - uid: 5968 components: - rot: 3.141592653589793 rad pos: -12.5,-8.5 @@ -37394,7 +38535,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5741 + - uid: 5969 components: - rot: 3.141592653589793 rad pos: -12.5,-10.5 @@ -37402,7 +38543,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5742 + - uid: 5970 components: - rot: 3.141592653589793 rad pos: -12.5,-12.5 @@ -37410,7 +38551,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5743 + - uid: 5971 components: - rot: 3.141592653589793 rad pos: -12.5,-13.5 @@ -37418,7 +38559,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5744 + - uid: 5972 components: - rot: 3.141592653589793 rad pos: -12.5,-14.5 @@ -37426,7 +38567,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5745 + - uid: 5973 components: - rot: 3.141592653589793 rad pos: -12.5,-15.5 @@ -37434,7 +38575,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5746 + - uid: 5974 components: - rot: 3.141592653589793 rad pos: -12.5,-16.5 @@ -37442,7 +38583,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5747 + - uid: 5975 components: - rot: 3.141592653589793 rad pos: -11.5,11.5 @@ -37450,7 +38591,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5748 + - uid: 5976 components: - rot: 3.141592653589793 rad pos: -11.5,10.5 @@ -37458,7 +38599,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5749 + - uid: 5977 components: - rot: 3.141592653589793 rad pos: -11.5,8.5 @@ -37466,7 +38607,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5750 + - uid: 5978 components: - rot: 3.141592653589793 rad pos: -11.5,6.5 @@ -37474,7 +38615,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5751 + - uid: 5979 components: - rot: 3.141592653589793 rad pos: -11.5,5.5 @@ -37482,7 +38623,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5752 + - uid: 5980 components: - rot: 3.141592653589793 rad pos: -11.5,4.5 @@ -37490,7 +38631,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5753 + - uid: 5981 components: - rot: 3.141592653589793 rad pos: -11.5,3.5 @@ -37498,7 +38639,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5754 + - uid: 5982 components: - rot: 3.141592653589793 rad pos: -11.5,1.5 @@ -37506,7 +38647,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5755 + - uid: 5983 components: - rot: 3.141592653589793 rad pos: -11.5,0.5 @@ -37514,7 +38655,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5756 + - uid: 5984 components: - rot: -1.5707963267948966 rad pos: -12.5,-4.5 @@ -37522,7 +38663,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5757 + - uid: 5985 components: - rot: 3.141592653589793 rad pos: -11.5,-1.5 @@ -37530,7 +38671,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5758 + - uid: 5986 components: - rot: 3.141592653589793 rad pos: -11.5,-2.5 @@ -37538,7 +38679,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5759 + - uid: 5987 components: - rot: 3.141592653589793 rad pos: -11.5,-3.5 @@ -37546,7 +38687,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5760 + - uid: 5988 components: - rot: -1.5707963267948966 rad pos: -14.5,-4.5 @@ -37554,7 +38695,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5761 + - uid: 5989 components: - rot: 3.141592653589793 rad pos: -11.5,-5.5 @@ -37562,7 +38703,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5762 + - uid: 5990 components: - rot: 3.141592653589793 rad pos: -11.5,-7.5 @@ -37570,7 +38711,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5763 + - uid: 5991 components: - rot: 3.141592653589793 rad pos: -11.5,-8.5 @@ -37578,7 +38719,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5764 + - uid: 5992 components: - rot: 3.141592653589793 rad pos: -11.5,-9.5 @@ -37586,7 +38727,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5765 + - uid: 5993 components: - rot: 3.141592653589793 rad pos: -11.5,-11.5 @@ -37594,7 +38735,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5766 + - uid: 5994 components: - rot: 3.141592653589793 rad pos: -11.5,-13.5 @@ -37602,7 +38743,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5767 + - uid: 5995 components: - rot: 3.141592653589793 rad pos: -11.5,-14.5 @@ -37610,7 +38751,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5768 + - uid: 5996 components: - rot: 3.141592653589793 rad pos: -11.5,-15.5 @@ -37618,7 +38759,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5769 + - uid: 5997 components: - rot: 3.141592653589793 rad pos: -11.5,-16.5 @@ -37626,14 +38767,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5770 + - uid: 5998 components: - pos: -14.5,-7.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5771 + - uid: 5999 components: - rot: -1.5707963267948966 rad pos: -7.5,-21.5 @@ -37641,14 +38782,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5772 + - uid: 6000 components: - pos: -15.5,-5.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5773 + - uid: 6001 components: - rot: 3.141592653589793 rad pos: -16.5,-6.5 @@ -37656,7 +38797,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5774 + - uid: 6002 components: - rot: 3.141592653589793 rad pos: -16.5,-5.5 @@ -37664,7 +38805,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5775 + - uid: 6003 components: - rot: 3.141592653589793 rad pos: -16.5,-4.5 @@ -37672,7 +38813,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5776 + - uid: 6004 components: - rot: 3.141592653589793 rad pos: -16.5,-3.5 @@ -37680,7 +38821,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5777 + - uid: 6005 components: - rot: 3.141592653589793 rad pos: -16.5,-1.5 @@ -37688,7 +38829,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5778 + - uid: 6006 components: - rot: -1.5707963267948966 rad pos: -12.5,9.5 @@ -37696,7 +38837,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5779 + - uid: 6007 components: - rot: -1.5707963267948966 rad pos: -13.5,9.5 @@ -37704,7 +38845,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5780 + - uid: 6008 components: - rot: -1.5707963267948966 rad pos: -14.5,9.5 @@ -37712,7 +38853,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5781 + - uid: 6009 components: - rot: -1.5707963267948966 rad pos: -15.5,9.5 @@ -37720,7 +38861,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5782 + - uid: 6010 components: - rot: -1.5707963267948966 rad pos: -17.5,9.5 @@ -37728,7 +38869,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5783 + - uid: 6011 components: - rot: -1.5707963267948966 rad pos: -13.5,8.5 @@ -37736,7 +38877,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5784 + - uid: 6012 components: - rot: -1.5707963267948966 rad pos: -14.5,8.5 @@ -37744,7 +38885,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5785 + - uid: 6013 components: - rot: -1.5707963267948966 rad pos: -16.5,8.5 @@ -37752,7 +38893,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5786 + - uid: 6014 components: - rot: -1.5707963267948966 rad pos: -17.5,8.5 @@ -37760,7 +38901,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5787 + - uid: 6015 components: - rot: -1.5707963267948966 rad pos: -18.5,8.5 @@ -37768,7 +38909,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5788 + - uid: 6016 components: - rot: 3.141592653589793 rad pos: -19.5,9.5 @@ -37776,7 +38917,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5789 + - uid: 6017 components: - rot: 3.141592653589793 rad pos: -19.5,10.5 @@ -37784,7 +38925,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5790 + - uid: 6018 components: - rot: 3.141592653589793 rad pos: -19.5,11.5 @@ -37792,7 +38933,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5791 + - uid: 6019 components: - rot: 3.141592653589793 rad pos: -18.5,10.5 @@ -37800,63 +38941,63 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5792 + - uid: 6020 components: - pos: -18.5,13.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5793 + - uid: 6021 components: - pos: -18.5,14.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5794 + - uid: 6022 components: - pos: -18.5,15.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5795 + - uid: 6023 components: - pos: -18.5,16.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5796 + - uid: 6024 components: - pos: -19.5,17.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5797 + - uid: 6025 components: - pos: -19.5,16.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5798 + - uid: 6026 components: - pos: -19.5,15.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5799 + - uid: 6027 components: - pos: -19.5,12.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5800 + - uid: 6028 components: - rot: -1.5707963267948966 rad pos: -17.5,12.5 @@ -37864,7 +39005,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5801 + - uid: 6029 components: - rot: -1.5707963267948966 rad pos: -16.5,12.5 @@ -37872,7 +39013,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5802 + - uid: 6030 components: - rot: -1.5707963267948966 rad pos: -18.5,13.5 @@ -37880,7 +39021,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5803 + - uid: 6031 components: - rot: -1.5707963267948966 rad pos: -17.5,13.5 @@ -37888,7 +39029,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5804 + - uid: 6032 components: - rot: -1.5707963267948966 rad pos: -16.5,13.5 @@ -37896,7 +39037,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5805 + - uid: 6033 components: - rot: -1.5707963267948966 rad pos: -19.5,12.5 @@ -37904,7 +39045,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5806 + - uid: 6034 components: - rot: -1.5707963267948966 rad pos: -20.5,12.5 @@ -37912,7 +39053,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5807 + - uid: 6035 components: - rot: -1.5707963267948966 rad pos: -21.5,12.5 @@ -37920,7 +39061,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5808 + - uid: 6036 components: - rot: -1.5707963267948966 rad pos: -20.5,13.5 @@ -37928,7 +39069,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5809 + - uid: 6037 components: - rot: 3.141592653589793 rad pos: -22.5,13.5 @@ -37936,7 +39077,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5810 + - uid: 6038 components: - rot: 3.141592653589793 rad pos: -22.5,14.5 @@ -37944,7 +39085,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5811 + - uid: 6039 components: - rot: 3.141592653589793 rad pos: -22.5,15.5 @@ -37952,7 +39093,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5812 + - uid: 6040 components: - rot: 3.141592653589793 rad pos: -21.5,15.5 @@ -37960,7 +39101,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5813 + - uid: 6041 components: - rot: 1.5707963267948966 rad pos: -22.5,14.5 @@ -37968,7 +39109,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5814 + - uid: 6042 components: - rot: 1.5707963267948966 rad pos: -11.5,13.5 @@ -37976,14 +39117,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5815 + - uid: 6043 components: - pos: -12.5,12.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5816 + - uid: 6044 components: - rot: 3.141592653589793 rad pos: 1.5,12.5 @@ -37991,7 +39132,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5817 + - uid: 6045 components: - rot: 1.5707963267948966 rad pos: 1.5,12.5 @@ -37999,7 +39140,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5818 + - uid: 6046 components: - rot: 1.5707963267948966 rad pos: 3.5,6.5 @@ -38007,7 +39148,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5819 + - uid: 6047 components: - rot: 1.5707963267948966 rad pos: 2.5,5.5 @@ -38015,14 +39156,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5820 + - uid: 6048 components: - pos: 4.5,5.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5821 + - uid: 6049 components: - rot: 1.5707963267948966 rad pos: 4.5,-0.5 @@ -38030,7 +39171,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5822 + - uid: 6050 components: - rot: 3.141592653589793 rad pos: 6.5,3.5 @@ -38038,7 +39179,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5823 + - uid: 6051 components: - rot: 3.141592653589793 rad pos: 7.5,3.5 @@ -38046,7 +39187,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5824 + - uid: 6052 components: - rot: -1.5707963267948966 rad pos: 2.5,-2.5 @@ -38054,7 +39195,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5825 + - uid: 6053 components: - rot: -1.5707963267948966 rad pos: 1.5,-2.5 @@ -38062,7 +39203,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5826 + - uid: 6054 components: - rot: -1.5707963267948966 rad pos: 3.5,-4.5 @@ -38070,7 +39211,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5827 + - uid: 6055 components: - rot: -1.5707963267948966 rad pos: 2.5,-4.5 @@ -38078,7 +39219,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5828 + - uid: 6056 components: - rot: 1.5707963267948966 rad pos: 13.5,-18.5 @@ -38086,7 +39227,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5829 + - uid: 6057 components: - rot: -1.5707963267948966 rad pos: 0.5,-4.5 @@ -38094,7 +39235,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5830 + - uid: 6058 components: - rot: 1.5707963267948966 rad pos: -11.5,-2.5 @@ -38102,7 +39243,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5831 + - uid: 6059 components: - rot: 1.5707963267948966 rad pos: -10.5,-2.5 @@ -38110,7 +39251,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5832 + - uid: 6060 components: - rot: 1.5707963267948966 rad pos: -9.5,-2.5 @@ -38118,7 +39259,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5833 + - uid: 6061 components: - rot: 1.5707963267948966 rad pos: -7.5,-2.5 @@ -38126,7 +39267,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5834 + - uid: 6062 components: - rot: 1.5707963267948966 rad pos: -10.5,-4.5 @@ -38134,7 +39275,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5835 + - uid: 6063 components: - rot: 1.5707963267948966 rad pos: -8.5,-4.5 @@ -38142,7 +39283,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5836 + - uid: 6064 components: - rot: 1.5707963267948966 rad pos: -7.5,-4.5 @@ -38150,7 +39291,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5837 + - uid: 6065 components: - rot: 1.5707963267948966 rad pos: -6.5,-4.5 @@ -38158,7 +39299,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5838 + - uid: 6066 components: - rot: 1.5707963267948966 rad pos: -10.5,9.5 @@ -38166,7 +39307,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5839 + - uid: 6067 components: - rot: 1.5707963267948966 rad pos: -9.5,9.5 @@ -38174,7 +39315,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5840 + - uid: 6068 components: - rot: 1.5707963267948966 rad pos: -8.5,9.5 @@ -38182,7 +39323,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5841 + - uid: 6069 components: - rot: 1.5707963267948966 rad pos: -11.5,8.5 @@ -38190,7 +39331,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5842 + - uid: 6070 components: - rot: 1.5707963267948966 rad pos: -10.5,8.5 @@ -38198,7 +39339,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5843 + - uid: 6071 components: - rot: 1.5707963267948966 rad pos: -9.5,8.5 @@ -38206,7 +39347,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5844 + - uid: 6072 components: - rot: 1.5707963267948966 rad pos: -8.5,8.5 @@ -38214,7 +39355,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5845 + - uid: 6073 components: - rot: 3.141592653589793 rad pos: -2.5,1.5 @@ -38222,7 +39363,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5846 + - uid: 6074 components: - rot: 1.5707963267948966 rad pos: -3.5,0.5 @@ -38230,7 +39371,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5847 + - uid: 6075 components: - rot: 1.5707963267948966 rad pos: -5.5,0.5 @@ -38238,63 +39379,63 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5848 + - uid: 6076 components: - pos: -4.5,-0.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5849 + - uid: 6077 components: - pos: -4.5,-1.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5850 + - uid: 6078 components: - pos: -1.5,-3.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5851 + - uid: 6079 components: - pos: -1.5,-2.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5852 + - uid: 6080 components: - pos: -1.5,-1.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5853 + - uid: 6081 components: - pos: -1.5,-0.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5854 + - uid: 6082 components: - pos: -1.5,0.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5855 + - uid: 6083 components: - pos: -1.5,1.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5856 + - uid: 6084 components: - rot: -1.5707963267948966 rad pos: -0.5,-4.5 @@ -38302,7 +39443,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5857 + - uid: 6085 components: - rot: -1.5707963267948966 rad pos: -2.5,-4.5 @@ -38310,7 +39451,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5858 + - uid: 6086 components: - rot: -1.5707963267948966 rad pos: -4.5,-4.5 @@ -38318,7 +39459,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5859 + - uid: 6087 components: - rot: 3.141592653589793 rad pos: -0.5,-5.5 @@ -38326,7 +39467,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5860 + - uid: 6088 components: - rot: -1.5707963267948966 rad pos: -1.5,-2.5 @@ -38334,7 +39475,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5861 + - uid: 6089 components: - rot: -1.5707963267948966 rad pos: -2.5,-2.5 @@ -38342,7 +39483,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5862 + - uid: 6090 components: - rot: -1.5707963267948966 rad pos: -3.5,-2.5 @@ -38350,7 +39491,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5863 + - uid: 6091 components: - rot: 3.141592653589793 rad pos: -0.5,-3.5 @@ -38358,7 +39499,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5864 + - uid: 6092 components: - rot: 3.141592653589793 rad pos: -0.5,-4.5 @@ -38366,63 +39507,63 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5865 + - uid: 6093 components: - pos: -6.5,-3.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5866 + - uid: 6094 components: - pos: -6.5,-4.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5867 + - uid: 6095 components: - pos: -6.5,-5.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5868 + - uid: 6096 components: - pos: -6.5,-6.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5869 + - uid: 6097 components: - pos: -6.5,-7.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5870 + - uid: 6098 components: - pos: -5.5,-5.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5871 + - uid: 6099 components: - pos: -5.5,-6.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5872 + - uid: 6100 components: - pos: -5.5,-7.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5873 + - uid: 6101 components: - rot: 3.141592653589793 rad pos: -7.5,-25.5 @@ -38430,7 +39571,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5874 + - uid: 6102 components: - rot: 3.141592653589793 rad pos: -16.5,8.5 @@ -38438,7 +39579,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5875 + - uid: 6103 components: - rot: 3.141592653589793 rad pos: -16.5,6.5 @@ -38446,7 +39587,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5876 + - uid: 6104 components: - rot: 3.141592653589793 rad pos: -15.5,6.5 @@ -38454,7 +39595,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5877 + - uid: 6105 components: - rot: 3.141592653589793 rad pos: -15.5,5.5 @@ -38462,7 +39603,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5878 + - uid: 6106 components: - rot: 3.141592653589793 rad pos: -6.5,-23.5 @@ -38470,7 +39611,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5879 + - uid: 6107 components: - rot: -1.5707963267948966 rad pos: 15.5,29.5 @@ -38478,7 +39619,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5880 + - uid: 6108 components: - rot: -1.5707963267948966 rad pos: -12.5,-12.5 @@ -38486,7 +39627,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5881 + - uid: 6109 components: - rot: -1.5707963267948966 rad pos: -13.5,-12.5 @@ -38494,7 +39635,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5882 + - uid: 6110 components: - rot: -1.5707963267948966 rad pos: -14.5,-12.5 @@ -38502,7 +39643,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5883 + - uid: 6111 components: - rot: -1.5707963267948966 rad pos: -13.5,-11.5 @@ -38510,7 +39651,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5884 + - uid: 6112 components: - rot: -1.5707963267948966 rad pos: -14.5,-11.5 @@ -38518,28 +39659,28 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5885 + - uid: 6113 components: - pos: 3.5,-11.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5886 + - uid: 6114 components: - pos: 4.5,-12.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5887 + - uid: 6115 components: - pos: 4.5,-13.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5888 + - uid: 6116 components: - rot: 3.141592653589793 rad pos: 3.5,-13.5 @@ -38547,7 +39688,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5889 + - uid: 6117 components: - rot: 3.141592653589793 rad pos: 3.5,-14.5 @@ -38555,49 +39696,49 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5890 + - uid: 6118 components: - pos: 4.5,-16.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5891 + - uid: 6119 components: - pos: 5.5,-15.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5892 + - uid: 6120 components: - pos: 5.5,-16.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5893 + - uid: 6121 components: - pos: 5.5,-17.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5894 + - uid: 6122 components: - pos: 4.5,-17.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5895 + - uid: 6123 components: - pos: 4.5,-18.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5896 + - uid: 6124 components: - rot: 3.141592653589793 rad pos: 5.5,-19.5 @@ -38605,7 +39746,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5897 + - uid: 6125 components: - rot: 1.5707963267948966 rad pos: 3.5,-19.5 @@ -38613,7 +39754,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5898 + - uid: 6126 components: - rot: 1.5707963267948966 rad pos: 2.5,-19.5 @@ -38621,7 +39762,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5899 + - uid: 6127 components: - rot: 1.5707963267948966 rad pos: 1.5,-19.5 @@ -38629,7 +39770,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5900 + - uid: 6128 components: - rot: 1.5707963267948966 rad pos: 4.5,-18.5 @@ -38637,7 +39778,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5901 + - uid: 6129 components: - rot: 1.5707963267948966 rad pos: 3.5,-18.5 @@ -38645,7 +39786,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5902 + - uid: 6130 components: - rot: 1.5707963267948966 rad pos: 2.5,-18.5 @@ -38653,7 +39794,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5903 + - uid: 6131 components: - rot: 1.5707963267948966 rad pos: 0.5,-18.5 @@ -38661,7 +39802,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5904 + - uid: 6132 components: - rot: 1.5707963267948966 rad pos: -0.5,-18.5 @@ -38669,7 +39810,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5905 + - uid: 6133 components: - rot: 1.5707963267948966 rad pos: -1.5,-18.5 @@ -38677,7 +39818,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5906 + - uid: 6134 components: - rot: 1.5707963267948966 rad pos: -2.5,-18.5 @@ -38685,7 +39826,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5907 + - uid: 6135 components: - rot: 1.5707963267948966 rad pos: -3.5,-18.5 @@ -38693,7 +39834,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5908 + - uid: 6136 components: - rot: 1.5707963267948966 rad pos: -4.5,-18.5 @@ -38701,7 +39842,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5909 + - uid: 6137 components: - rot: 1.5707963267948966 rad pos: -7.5,-18.5 @@ -38709,7 +39850,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5910 + - uid: 6138 components: - rot: 1.5707963267948966 rad pos: -8.5,-18.5 @@ -38717,7 +39858,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5911 + - uid: 6139 components: - rot: 1.5707963267948966 rad pos: -9.5,-18.5 @@ -38725,7 +39866,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5912 + - uid: 6140 components: - rot: 1.5707963267948966 rad pos: 0.5,-19.5 @@ -38733,7 +39874,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5913 + - uid: 6141 components: - rot: 1.5707963267948966 rad pos: -0.5,-19.5 @@ -38741,7 +39882,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5914 + - uid: 6142 components: - rot: 1.5707963267948966 rad pos: -1.5,-19.5 @@ -38749,7 +39890,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5915 + - uid: 6143 components: - rot: 1.5707963267948966 rad pos: -3.5,-19.5 @@ -38757,7 +39898,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5916 + - uid: 6144 components: - rot: 1.5707963267948966 rad pos: -4.5,-19.5 @@ -38765,7 +39906,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5917 + - uid: 6145 components: - rot: 1.5707963267948966 rad pos: -5.5,-19.5 @@ -38773,7 +39914,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5918 + - uid: 6146 components: - rot: 1.5707963267948966 rad pos: -6.5,-19.5 @@ -38781,7 +39922,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5919 + - uid: 6147 components: - rot: 1.5707963267948966 rad pos: -9.5,-19.5 @@ -38789,7 +39930,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5920 + - uid: 6148 components: - rot: 1.5707963267948966 rad pos: -11.5,-19.5 @@ -38797,7 +39938,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5921 + - uid: 6149 components: - rot: 3.141592653589793 rad pos: -12.5,-18.5 @@ -38805,7 +39946,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5922 + - uid: 6150 components: - rot: 3.141592653589793 rad pos: -12.5,-17.5 @@ -38813,7 +39954,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5923 + - uid: 6151 components: - rot: 3.141592653589793 rad pos: -11.5,-17.5 @@ -38821,21 +39962,21 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5924 + - uid: 6152 components: - pos: -2.5,-20.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5925 + - uid: 6153 components: - pos: -2.5,-21.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5926 + - uid: 6154 components: - rot: 3.141592653589793 rad pos: 1.5,-19.5 @@ -38843,7 +39984,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5927 + - uid: 6155 components: - rot: 3.141592653589793 rad pos: 1.5,-20.5 @@ -38851,7 +39992,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5928 + - uid: 6156 components: - rot: 3.141592653589793 rad pos: 1.5,-21.5 @@ -38859,7 +40000,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5929 + - uid: 6157 components: - rot: 3.141592653589793 rad pos: 1.5,-23.5 @@ -38867,7 +40008,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5930 + - uid: 6158 components: - rot: 3.141592653589793 rad pos: 1.5,-24.5 @@ -38875,7 +40016,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5931 + - uid: 6159 components: - rot: 3.141592653589793 rad pos: 1.5,-25.5 @@ -38883,7 +40024,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5932 + - uid: 6160 components: - rot: 3.141592653589793 rad pos: -2.5,-23.5 @@ -38891,7 +40032,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5933 + - uid: 6161 components: - rot: 3.141592653589793 rad pos: -2.5,-24.5 @@ -38899,7 +40040,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5934 + - uid: 6162 components: - rot: 3.141592653589793 rad pos: -2.5,-25.5 @@ -38907,42 +40048,42 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5935 + - uid: 6163 components: - pos: -6.5,-19.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5936 + - uid: 6164 components: - pos: -6.5,-20.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5937 + - uid: 6165 components: - pos: -6.5,-22.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5938 + - uid: 6166 components: - pos: -7.5,-20.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5939 + - uid: 6167 components: - pos: -7.5,-21.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5940 + - uid: 6168 components: - rot: 1.5707963267948966 rad pos: 5.5,-11.5 @@ -38950,7 +40091,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5941 + - uid: 6169 components: - rot: 3.141592653589793 rad pos: -8.5,-24.5 @@ -38958,7 +40099,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5942 + - uid: 6170 components: - rot: 3.141592653589793 rad pos: -8.5,-25.5 @@ -38966,7 +40107,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5943 + - uid: 6171 components: - rot: 1.5707963267948966 rad pos: 4.5,-12.5 @@ -38974,7 +40115,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5944 + - uid: 6172 components: - rot: 1.5707963267948966 rad pos: 5.5,-12.5 @@ -38982,7 +40123,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5945 + - uid: 6173 components: - rot: 1.5707963267948966 rad pos: 6.5,-12.5 @@ -38990,7 +40131,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5946 + - uid: 6174 components: - rot: 1.5707963267948966 rad pos: 7.5,-12.5 @@ -38998,7 +40139,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5947 + - uid: 6175 components: - rot: 1.5707963267948966 rad pos: 9.5,-12.5 @@ -39006,7 +40147,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5948 + - uid: 6176 components: - rot: 1.5707963267948966 rad pos: 6.5,-11.5 @@ -39014,7 +40155,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5949 + - uid: 6177 components: - rot: 1.5707963267948966 rad pos: 8.5,-11.5 @@ -39022,7 +40163,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5950 + - uid: 6178 components: - rot: 1.5707963267948966 rad pos: 9.5,-11.5 @@ -39030,7 +40171,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5951 + - uid: 6179 components: - rot: -1.5707963267948966 rad pos: 10.5,-11.5 @@ -39038,7 +40179,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5952 + - uid: 6180 components: - rot: 3.141592653589793 rad pos: 11.5,-12.5 @@ -39046,7 +40187,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5953 + - uid: 6181 components: - rot: 3.141592653589793 rad pos: -8.5,-26.5 @@ -39054,7 +40195,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5954 + - uid: 6182 components: - rot: 3.141592653589793 rad pos: 11.5,-15.5 @@ -39062,7 +40203,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5955 + - uid: 6183 components: - rot: 3.141592653589793 rad pos: 10.5,-13.5 @@ -39070,7 +40211,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5956 + - uid: 6184 components: - rot: 3.141592653589793 rad pos: 10.5,-14.5 @@ -39078,7 +40219,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5957 + - uid: 6185 components: - rot: 3.141592653589793 rad pos: -8.5,-27.5 @@ -39086,7 +40227,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5958 + - uid: 6186 components: - rot: 3.141592653589793 rad pos: 11.5,-16.5 @@ -39094,7 +40235,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5959 + - uid: 6187 components: - rot: 1.5707963267948966 rad pos: 11.5,-19.5 @@ -39102,7 +40243,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5960 + - uid: 6188 components: - rot: 1.5707963267948966 rad pos: 13.5,-19.5 @@ -39110,7 +40251,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5961 + - uid: 6189 components: - rot: 1.5707963267948966 rad pos: 14.5,-19.5 @@ -39118,7 +40259,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5962 + - uid: 6190 components: - rot: 1.5707963267948966 rad pos: 15.5,-19.5 @@ -39126,7 +40267,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5963 + - uid: 6191 components: - rot: 1.5707963267948966 rad pos: 16.5,-19.5 @@ -39134,7 +40275,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5964 + - uid: 6192 components: - rot: 1.5707963267948966 rad pos: 17.5,-19.5 @@ -39142,7 +40283,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5965 + - uid: 6193 components: - rot: 3.141592653589793 rad pos: -7.5,-26.5 @@ -39150,7 +40291,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5966 + - uid: 6194 components: - rot: 1.5707963267948966 rad pos: 12.5,-18.5 @@ -39158,7 +40299,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5967 + - uid: 6195 components: - rot: 1.5707963267948966 rad pos: 15.5,-18.5 @@ -39166,7 +40307,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5968 + - uid: 6196 components: - rot: 1.5707963267948966 rad pos: 16.5,-18.5 @@ -39174,7 +40315,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5969 + - uid: 6197 components: - rot: 1.5707963267948966 rad pos: 17.5,-18.5 @@ -39182,7 +40323,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5970 + - uid: 6198 components: - rot: 3.141592653589793 rad pos: -7.5,-27.5 @@ -39190,7 +40331,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5971 + - uid: 6199 components: - rot: 1.5707963267948966 rad pos: 11.5,-16.5 @@ -39198,7 +40339,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5972 + - uid: 6200 components: - rot: 1.5707963267948966 rad pos: 12.5,-16.5 @@ -39206,7 +40347,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5973 + - uid: 6201 components: - rot: 1.5707963267948966 rad pos: 14.5,-16.5 @@ -39214,7 +40355,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5974 + - uid: 6202 components: - rot: 1.5707963267948966 rad pos: 15.5,-16.5 @@ -39222,7 +40363,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5975 + - uid: 6203 components: - rot: 1.5707963267948966 rad pos: 16.5,-16.5 @@ -39230,7 +40371,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5976 + - uid: 6204 components: - rot: 1.5707963267948966 rad pos: 17.5,-16.5 @@ -39238,7 +40379,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5977 + - uid: 6205 components: - rot: 1.5707963267948966 rad pos: 12.5,-17.5 @@ -39246,7 +40387,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5978 + - uid: 6206 components: - rot: 1.5707963267948966 rad pos: 13.5,-17.5 @@ -39254,21 +40395,21 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5979 + - uid: 6207 components: - pos: 14.5,-19.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5980 + - uid: 6208 components: - pos: 14.5,-20.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5981 + - uid: 6209 components: - rot: 1.5707963267948966 rad pos: 14.5,-22.5 @@ -39276,21 +40417,21 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5982 + - uid: 6210 components: - pos: 14.5,-22.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5983 + - uid: 6211 components: - pos: 14.5,-23.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5984 + - uid: 6212 components: - rot: 1.5707963267948966 rad pos: 13.5,-22.5 @@ -39298,28 +40439,28 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5985 + - uid: 6213 components: - pos: 12.5,-21.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5986 + - uid: 6214 components: - pos: 12.5,-20.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5987 + - uid: 6215 components: - pos: 12.5,-23.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5988 + - uid: 6216 components: - rot: 3.141592653589793 rad pos: -7.5,-28.5 @@ -39327,7 +40468,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5989 + - uid: 6217 components: - rot: -1.5707963267948966 rad pos: -8.5,-29.5 @@ -39335,7 +40476,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5990 + - uid: 6218 components: - rot: -1.5707963267948966 rad pos: 5.5,10.5 @@ -39343,7 +40484,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5991 + - uid: 6219 components: - rot: 1.5707963267948966 rad pos: 2.5,8.5 @@ -39351,7 +40492,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5992 + - uid: 6220 components: - rot: 1.5707963267948966 rad pos: 3.5,8.5 @@ -39359,7 +40500,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5993 + - uid: 6221 components: - rot: 1.5707963267948966 rad pos: 3.5,10.5 @@ -39367,7 +40508,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5994 + - uid: 6222 components: - rot: -1.5707963267948966 rad pos: -5.5,12.5 @@ -39375,49 +40516,49 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5995 + - uid: 6223 components: - pos: -6.5,17.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5996 + - uid: 6224 components: - pos: -6.5,15.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5997 + - uid: 6225 components: - pos: -6.5,16.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 5998 + - uid: 6226 components: - pos: -7.5,15.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 5999 + - uid: 6227 components: - pos: -7.5,16.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6000 + - uid: 6228 components: - pos: -7.5,17.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6001 + - uid: 6229 components: - rot: -1.5707963267948966 rad pos: -4.5,24.5 @@ -39425,7 +40566,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6002 + - uid: 6230 components: - rot: 1.5707963267948966 rad pos: -3.5,20.5 @@ -39433,7 +40574,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6003 + - uid: 6231 components: - rot: -1.5707963267948966 rad pos: -0.5,20.5 @@ -39441,7 +40582,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6004 + - uid: 6232 components: - rot: -1.5707963267948966 rad pos: -6.5,20.5 @@ -39449,7 +40590,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6005 + - uid: 6233 components: - rot: 3.141592653589793 rad pos: -2.5,25.5 @@ -39457,7 +40598,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6006 + - uid: 6234 components: - rot: -1.5707963267948966 rad pos: -5.5,32.5 @@ -39465,7 +40606,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6007 + - uid: 6235 components: - rot: -1.5707963267948966 rad pos: -6.5,32.5 @@ -39473,7 +40614,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6008 + - uid: 6236 components: - rot: 1.5707963267948966 rad pos: -0.5,19.5 @@ -39481,7 +40622,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6009 + - uid: 6237 components: - rot: 1.5707963267948966 rad pos: 0.5,19.5 @@ -39489,14 +40630,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6010 + - uid: 6238 components: - pos: -7.5,14.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6011 + - uid: 6239 components: - rot: -1.5707963267948966 rad pos: -3.5,27.5 @@ -39504,14 +40645,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6012 + - uid: 6240 components: - pos: -5.5,20.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6013 + - uid: 6241 components: - rot: -1.5707963267948966 rad pos: -7.5,31.5 @@ -39519,7 +40660,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6014 + - uid: 6242 components: - rot: 1.5707963267948966 rad pos: 1.5,19.5 @@ -39527,7 +40668,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6015 + - uid: 6243 components: - rot: 3.141592653589793 rad pos: -8.5,-18.5 @@ -39535,7 +40676,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6016 + - uid: 6244 components: - rot: -1.5707963267948966 rad pos: -3.5,24.5 @@ -39543,7 +40684,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6017 + - uid: 6245 components: - rot: 3.141592653589793 rad pos: -18.5,-8.5 @@ -39551,7 +40692,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6018 + - uid: 6246 components: - rot: -1.5707963267948966 rad pos: 21.5,-19.5 @@ -39559,7 +40700,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6019 + - uid: 6247 components: - rot: 1.5707963267948966 rad pos: 22.5,-20.5 @@ -39567,7 +40708,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6020 + - uid: 6248 components: - rot: 1.5707963267948966 rad pos: 21.5,-20.5 @@ -39575,7 +40716,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6021 + - uid: 6249 components: - rot: 1.5707963267948966 rad pos: 20.5,-20.5 @@ -39583,7 +40724,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6022 + - uid: 6250 components: - rot: -1.5707963267948966 rad pos: 2.5,20.5 @@ -39591,7 +40732,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6023 + - uid: 6251 components: - rot: 1.5707963267948966 rad pos: 1.5,20.5 @@ -39599,7 +40740,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6024 + - uid: 6252 components: - rot: 1.5707963267948966 rad pos: 0.5,20.5 @@ -39607,7 +40748,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6025 + - uid: 6253 components: - rot: 1.5707963267948966 rad pos: -3.5,20.5 @@ -39615,7 +40756,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6026 + - uid: 6254 components: - rot: -1.5707963267948966 rad pos: -7.5,23.5 @@ -39623,14 +40764,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6027 + - uid: 6255 components: - pos: -6.5,13.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6028 + - uid: 6256 components: - rot: 3.141592653589793 rad pos: -5.5,24.5 @@ -39638,7 +40779,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6029 + - uid: 6257 components: - rot: 3.141592653589793 rad pos: -5.5,25.5 @@ -39646,7 +40787,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6030 + - uid: 6258 components: - rot: 3.141592653589793 rad pos: -5.5,26.5 @@ -39654,28 +40795,28 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6031 + - uid: 6259 components: - pos: -1.5,26.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6032 + - uid: 6260 components: - pos: -1.5,29.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6033 + - uid: 6261 components: - pos: -1.5,30.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6034 + - uid: 6262 components: - rot: -1.5707963267948966 rad pos: -3.5,32.5 @@ -39683,7 +40824,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6035 + - uid: 6263 components: - rot: -1.5707963267948966 rad pos: -4.5,32.5 @@ -39691,14 +40832,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6036 + - uid: 6264 components: - pos: -6.5,14.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6037 + - uid: 6265 components: - rot: -1.5707963267948966 rad pos: -8.5,23.5 @@ -39706,14 +40847,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6038 + - uid: 6266 components: - pos: -20.5,-12.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6039 + - uid: 6267 components: - rot: -1.5707963267948966 rad pos: 10.5,5.5 @@ -39721,7 +40862,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6040 + - uid: 6268 components: - rot: 1.5707963267948966 rad pos: -18.5,-11.5 @@ -39729,14 +40870,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6041 + - uid: 6269 components: - pos: -2.5,28.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6042 + - uid: 6270 components: - rot: 1.5707963267948966 rad pos: 9.5,-15.5 @@ -39744,7 +40885,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6043 + - uid: 6271 components: - rot: 1.5707963267948966 rad pos: 8.5,-15.5 @@ -39752,7 +40893,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6044 + - uid: 6272 components: - rot: 1.5707963267948966 rad pos: 10.5,-14.5 @@ -39760,7 +40901,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6045 + - uid: 6273 components: - rot: 1.5707963267948966 rad pos: 9.5,-14.5 @@ -39768,7 +40909,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6046 + - uid: 6274 components: - rot: 3.141592653589793 rad pos: 6.5,9.5 @@ -39776,7 +40917,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6047 + - uid: 6275 components: - rot: 3.141592653589793 rad pos: -6.5,43.5 @@ -39784,7 +40925,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6048 + - uid: 6276 components: - rot: 3.141592653589793 rad pos: -5.5,21.5 @@ -39792,21 +40933,21 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6049 + - uid: 6277 components: - pos: -20.5,-13.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6050 + - uid: 6278 components: - pos: 6.5,4.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6051 + - uid: 6279 components: - rot: 1.5707963267948966 rad pos: -2.5,27.5 @@ -39814,14 +40955,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6052 + - uid: 6280 components: - pos: 7.5,5.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6053 + - uid: 6281 components: - rot: 1.5707963267948966 rad pos: 9.5,4.5 @@ -39829,7 +40970,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6054 + - uid: 6282 components: - rot: 1.5707963267948966 rad pos: 8.5,4.5 @@ -39837,7 +40978,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6055 + - uid: 6283 components: - rot: -1.5707963267948966 rad pos: 11.5,5.5 @@ -39845,7 +40986,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6056 + - uid: 6284 components: - rot: 3.141592653589793 rad pos: 2.5,7.5 @@ -39853,7 +40994,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6057 + - uid: 6285 components: - rot: 1.5707963267948966 rad pos: 14.5,16.5 @@ -39861,7 +41002,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6058 + - uid: 6286 components: - rot: 1.5707963267948966 rad pos: 13.5,16.5 @@ -39869,7 +41010,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6059 + - uid: 6287 components: - rot: 1.5707963267948966 rad pos: 12.5,16.5 @@ -39877,7 +41018,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6060 + - uid: 6288 components: - rot: 1.5707963267948966 rad pos: 11.5,16.5 @@ -39885,7 +41026,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6061 + - uid: 6289 components: - rot: 1.5707963267948966 rad pos: 16.5,-13.5 @@ -39893,7 +41034,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 6062 + - uid: 6290 components: - rot: 1.5707963267948966 rad pos: 15.5,-13.5 @@ -39901,7 +41042,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 6063 + - uid: 6291 components: - rot: 1.5707963267948966 rad pos: 9.5,5.5 @@ -39909,7 +41050,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6064 + - uid: 6292 components: - rot: 1.5707963267948966 rad pos: 8.5,5.5 @@ -39917,7 +41058,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6065 + - uid: 6293 components: - rot: 3.141592653589793 rad pos: -23.5,-25.5 @@ -39925,7 +41066,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6066 + - uid: 6294 components: - rot: 1.5707963267948966 rad pos: -4.5,19.5 @@ -39933,7 +41074,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6067 + - uid: 6295 components: - rot: 1.5707963267948966 rad pos: 7.5,5.5 @@ -39941,7 +41082,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6068 + - uid: 6296 components: - rot: -1.5707963267948966 rad pos: 1.5,-12.5 @@ -39949,7 +41090,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6069 + - uid: 6297 components: - rot: -1.5707963267948966 rad pos: 2.5,-12.5 @@ -39957,7 +41098,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6070 + - uid: 6298 components: - rot: -1.5707963267948966 rad pos: 2.5,-11.5 @@ -39965,7 +41106,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6071 + - uid: 6299 components: - rot: -1.5707963267948966 rad pos: -6.5,23.5 @@ -39973,7 +41114,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6072 + - uid: 6300 components: - rot: 1.5707963267948966 rad pos: 13.5,-24.5 @@ -39981,14 +41122,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6073 + - uid: 6301 components: - pos: 5.5,-20.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6074 + - uid: 6302 components: - rot: -1.5707963267948966 rad pos: -4.5,27.5 @@ -39996,14 +41137,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6075 + - uid: 6303 components: - pos: -1.5,-5.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6076 + - uid: 6304 components: - rot: 1.5707963267948966 rad pos: 0.5,25.5 @@ -40011,7 +41152,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6077 + - uid: 6305 components: - rot: -1.5707963267948966 rad pos: -4.5,31.5 @@ -40019,77 +41160,77 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6078 + - uid: 6306 components: - pos: -10.5,25.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6079 + - uid: 6307 components: - pos: -1.5,28.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6080 + - uid: 6308 components: - pos: -9.5,25.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6081 + - uid: 6309 components: - pos: -18.5,18.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6082 + - uid: 6310 components: - pos: -18.5,19.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6083 + - uid: 6311 components: - pos: -18.5,20.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6084 + - uid: 6312 components: - pos: -18.5,21.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6085 + - uid: 6313 components: - pos: -19.5,19.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6086 + - uid: 6314 components: - pos: -19.5,20.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6087 + - uid: 6315 components: - pos: -19.5,21.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6088 + - uid: 6316 components: - rot: -1.5707963267948966 rad pos: 10.5,4.5 @@ -40097,7 +41238,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6089 + - uid: 6317 components: - rot: 3.141592653589793 rad pos: -20.5,-8.5 @@ -40105,7 +41246,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6090 + - uid: 6318 components: - rot: -1.5707963267948966 rad pos: -5.5,31.5 @@ -40113,7 +41254,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6091 + - uid: 6319 components: - rot: -1.5707963267948966 rad pos: -9.5,32.5 @@ -40121,14 +41262,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6092 + - uid: 6320 components: - pos: -6.5,34.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6093 + - uid: 6321 components: - rot: -1.5707963267948966 rad pos: -7.5,32.5 @@ -40136,7 +41277,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6094 + - uid: 6322 components: - rot: -1.5707963267948966 rad pos: 13.5,-13.5 @@ -40144,7 +41285,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 6095 + - uid: 6323 components: - rot: 3.141592653589793 rad pos: 11.5,11.5 @@ -40152,7 +41293,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6096 + - uid: 6324 components: - rot: 3.141592653589793 rad pos: 10.5,12.5 @@ -40160,7 +41301,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6097 + - uid: 6325 components: - rot: 3.141592653589793 rad pos: 10.5,11.5 @@ -40168,7 +41309,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6098 + - uid: 6326 components: - rot: 3.141592653589793 rad pos: 10.5,10.5 @@ -40176,49 +41317,49 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6099 + - uid: 6327 components: - pos: 4.5,-20.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6100 + - uid: 6328 components: - pos: 4.5,-23.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6101 + - uid: 6329 components: - pos: 4.5,-24.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6102 + - uid: 6330 components: - pos: 5.5,-22.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6103 + - uid: 6331 components: - pos: 5.5,-23.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6104 + - uid: 6332 components: - pos: 5.5,-24.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6105 + - uid: 6333 components: - rot: 3.141592653589793 rad pos: -6.5,35.5 @@ -40226,7 +41367,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6106 + - uid: 6334 components: - rot: 3.141592653589793 rad pos: -8.5,41.5 @@ -40234,7 +41375,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6107 + - uid: 6335 components: - rot: -1.5707963267948966 rad pos: 12.5,-13.5 @@ -40242,7 +41383,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 6108 + - uid: 6336 components: - rot: -1.5707963267948966 rad pos: 4.5,10.5 @@ -40250,7 +41391,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6109 + - uid: 6337 components: - rot: 1.5707963267948966 rad pos: 8.5,-14.5 @@ -40258,7 +41399,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6110 + - uid: 6338 components: - rot: 1.5707963267948966 rad pos: 19.5,-18.5 @@ -40266,7 +41407,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6111 + - uid: 6339 components: - rot: -1.5707963267948966 rad pos: 18.5,-18.5 @@ -40274,7 +41415,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6112 + - uid: 6340 components: - rot: -1.5707963267948966 rad pos: 8.5,-12.5 @@ -40282,7 +41423,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6113 + - uid: 6341 components: - rot: -1.5707963267948966 rad pos: 7.5,-11.5 @@ -40290,21 +41431,21 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6114 + - uid: 6342 components: - pos: -12.5,3.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6115 + - uid: 6343 components: - pos: -11.5,2.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6116 + - uid: 6344 components: - rot: -1.5707963267948966 rad pos: -20.5,8.5 @@ -40312,7 +41453,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6117 + - uid: 6345 components: - rot: -1.5707963267948966 rad pos: -21.5,8.5 @@ -40320,35 +41461,35 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6118 + - uid: 6346 components: - pos: -22.5,5.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6119 + - uid: 6347 components: - pos: -22.5,6.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6120 + - uid: 6348 components: - pos: -22.5,7.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6121 + - uid: 6349 components: - pos: -21.5,6.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6122 + - uid: 6350 components: - rot: -1.5707963267948966 rad pos: -22.5,7.5 @@ -40356,7 +41497,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6123 + - uid: 6351 components: - rot: -1.5707963267948966 rad pos: -25.5,-26.5 @@ -40364,7 +41505,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6124 + - uid: 6352 components: - rot: -1.5707963267948966 rad pos: -17.5,-7.5 @@ -40372,7 +41513,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6125 + - uid: 6353 components: - rot: 3.141592653589793 rad pos: -19.5,-7.5 @@ -40380,7 +41521,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6126 + - uid: 6354 components: - rot: -1.5707963267948966 rad pos: -19.5,-7.5 @@ -40388,7 +41529,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6127 + - uid: 6355 components: - rot: 3.141592653589793 rad pos: -17.5,-7.5 @@ -40396,7 +41537,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6128 + - uid: 6356 components: - rot: 1.5707963267948966 rad pos: -18.5,-6.5 @@ -40404,7 +41545,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6129 + - uid: 6357 components: - rot: 1.5707963267948966 rad pos: -16.5,-6.5 @@ -40412,7 +41553,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6130 + - uid: 6358 components: - rot: 3.141592653589793 rad pos: -24.5,0.5 @@ -40420,7 +41561,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6131 + - uid: 6359 components: - rot: 3.141592653589793 rad pos: -23.5,-0.5 @@ -40428,7 +41569,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6132 + - uid: 6360 components: - rot: 3.141592653589793 rad pos: -24.5,-7.5 @@ -40436,7 +41577,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6133 + - uid: 6361 components: - rot: 3.141592653589793 rad pos: -23.5,0.5 @@ -40444,7 +41585,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6134 + - uid: 6362 components: - rot: 3.141592653589793 rad pos: -23.5,-8.5 @@ -40452,7 +41593,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6135 + - uid: 6363 components: - rot: 3.141592653589793 rad pos: -24.5,-8.5 @@ -40460,49 +41601,49 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6136 + - uid: 6364 components: - pos: -23.5,-1.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6137 + - uid: 6365 components: - pos: -23.5,-2.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6138 + - uid: 6366 components: - pos: -23.5,-7.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6139 + - uid: 6367 components: - pos: -23.5,-6.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6140 + - uid: 6368 components: - pos: -23.5,-5.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6141 + - uid: 6369 components: - pos: -23.5,-3.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6142 + - uid: 6370 components: - rot: -1.5707963267948966 rad pos: -22.5,-4.5 @@ -40510,7 +41651,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6143 + - uid: 6371 components: - rot: -1.5707963267948966 rad pos: -21.5,-4.5 @@ -40518,7 +41659,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6144 + - uid: 6372 components: - rot: -1.5707963267948966 rad pos: -20.5,-4.5 @@ -40526,7 +41667,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6145 + - uid: 6373 components: - rot: -1.5707963267948966 rad pos: -19.5,-4.5 @@ -40534,7 +41675,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6146 + - uid: 6374 components: - rot: -1.5707963267948966 rad pos: -17.5,-4.5 @@ -40542,7 +41683,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6147 + - uid: 6375 components: - rot: -1.5707963267948966 rad pos: -16.5,-4.5 @@ -40550,7 +41691,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6148 + - uid: 6376 components: - rot: -1.5707963267948966 rad pos: -17.5,-2.5 @@ -40558,7 +41699,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6149 + - uid: 6377 components: - rot: -1.5707963267948966 rad pos: -18.5,-2.5 @@ -40566,7 +41707,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6150 + - uid: 6378 components: - rot: -1.5707963267948966 rad pos: -19.5,-2.5 @@ -40574,7 +41715,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6151 + - uid: 6379 components: - rot: -1.5707963267948966 rad pos: -21.5,-2.5 @@ -40582,7 +41723,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6152 + - uid: 6380 components: - rot: -1.5707963267948966 rad pos: -22.5,-2.5 @@ -40590,7 +41731,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6153 + - uid: 6381 components: - rot: -1.5707963267948966 rad pos: -23.5,-2.5 @@ -40598,49 +41739,49 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6154 + - uid: 6382 components: - pos: -24.5,-6.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6155 + - uid: 6383 components: - pos: -24.5,-5.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6156 + - uid: 6384 components: - pos: -24.5,-4.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6157 + - uid: 6385 components: - pos: -24.5,-3.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6158 + - uid: 6386 components: - pos: -24.5,-1.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6159 + - uid: 6387 components: - pos: -24.5,-0.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6160 + - uid: 6388 components: - rot: -1.5707963267948966 rad pos: -26.5,-26.5 @@ -40648,7 +41789,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6161 + - uid: 6389 components: - rot: 3.141592653589793 rad pos: -5.5,22.5 @@ -40656,7 +41797,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6162 + - uid: 6390 components: - rot: 1.5707963267948966 rad pos: 16.5,17.5 @@ -40664,7 +41805,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6163 + - uid: 6391 components: - rot: 1.5707963267948966 rad pos: 17.5,17.5 @@ -40672,7 +41813,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6164 + - uid: 6392 components: - rot: 1.5707963267948966 rad pos: 18.5,17.5 @@ -40680,7 +41821,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6165 + - uid: 6393 components: - rot: 1.5707963267948966 rad pos: 19.5,17.5 @@ -40688,7 +41829,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6166 + - uid: 6394 components: - rot: 1.5707963267948966 rad pos: 20.5,17.5 @@ -40696,7 +41837,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6167 + - uid: 6395 components: - rot: 1.5707963267948966 rad pos: 21.5,17.5 @@ -40704,7 +41845,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6168 + - uid: 6396 components: - rot: 1.5707963267948966 rad pos: 22.5,17.5 @@ -40712,7 +41853,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6169 + - uid: 6397 components: - rot: 1.5707963267948966 rad pos: 23.5,17.5 @@ -40720,7 +41861,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6170 + - uid: 6398 components: - rot: 1.5707963267948966 rad pos: 25.5,17.5 @@ -40728,7 +41869,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6171 + - uid: 6399 components: - rot: 1.5707963267948966 rad pos: 26.5,17.5 @@ -40736,7 +41877,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6172 + - uid: 6400 components: - rot: 1.5707963267948966 rad pos: 27.5,17.5 @@ -40744,7 +41885,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6173 + - uid: 6401 components: - rot: 1.5707963267948966 rad pos: 28.5,17.5 @@ -40752,7 +41893,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6174 + - uid: 6402 components: - rot: 1.5707963267948966 rad pos: 29.5,17.5 @@ -40760,7 +41901,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6175 + - uid: 6403 components: - rot: -1.5707963267948966 rad pos: 30.5,17.5 @@ -40768,7 +41909,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6176 + - uid: 6404 components: - rot: 3.141592653589793 rad pos: 31.5,16.5 @@ -40776,7 +41917,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6177 + - uid: 6405 components: - rot: 3.141592653589793 rad pos: 31.5,15.5 @@ -40784,7 +41925,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6178 + - uid: 6406 components: - rot: 3.141592653589793 rad pos: 31.5,13.5 @@ -40792,7 +41933,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6179 + - uid: 6407 components: - rot: 3.141592653589793 rad pos: 31.5,12.5 @@ -40800,7 +41941,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6180 + - uid: 6408 components: - rot: 3.141592653589793 rad pos: 31.5,11.5 @@ -40808,7 +41949,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6181 + - uid: 6409 components: - rot: -1.5707963267948966 rad pos: 30.5,10.5 @@ -40816,7 +41957,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6182 + - uid: 6410 components: - rot: -1.5707963267948966 rad pos: 29.5,10.5 @@ -40824,7 +41965,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6183 + - uid: 6411 components: - rot: -1.5707963267948966 rad pos: 28.5,10.5 @@ -40832,7 +41973,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6184 + - uid: 6412 components: - rot: -1.5707963267948966 rad pos: 27.5,10.5 @@ -40840,7 +41981,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6185 + - uid: 6413 components: - rot: -1.5707963267948966 rad pos: 26.5,10.5 @@ -40848,7 +41989,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6186 + - uid: 6414 components: - rot: -1.5707963267948966 rad pos: 25.5,10.5 @@ -40856,7 +41997,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6187 + - uid: 6415 components: - rot: -1.5707963267948966 rad pos: 24.5,10.5 @@ -40864,7 +42005,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6188 + - uid: 6416 components: - rot: -1.5707963267948966 rad pos: 23.5,10.5 @@ -40872,7 +42013,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6189 + - uid: 6417 components: - rot: -1.5707963267948966 rad pos: 22.5,10.5 @@ -40880,7 +42021,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6190 + - uid: 6418 components: - rot: -1.5707963267948966 rad pos: 21.5,10.5 @@ -40888,7 +42029,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6191 + - uid: 6419 components: - rot: -1.5707963267948966 rad pos: 20.5,10.5 @@ -40896,7 +42037,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6192 + - uid: 6420 components: - rot: -1.5707963267948966 rad pos: 19.5,10.5 @@ -40904,7 +42045,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6193 + - uid: 6421 components: - rot: -1.5707963267948966 rad pos: 18.5,10.5 @@ -40912,7 +42053,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6194 + - uid: 6422 components: - rot: 1.5707963267948966 rad pos: -0.5,16.5 @@ -40920,7 +42061,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6195 + - uid: 6423 components: - rot: 1.5707963267948966 rad pos: 1.5,15.5 @@ -40928,35 +42069,35 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6196 + - uid: 6424 components: - pos: -1.5,15.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6197 + - uid: 6425 components: - pos: -1.5,14.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6198 + - uid: 6426 components: - pos: -1.5,13.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6199 + - uid: 6427 components: - pos: 2.5,14.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6200 + - uid: 6428 components: - rot: 3.141592653589793 rad pos: -8.5,35.5 @@ -40964,7 +42105,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6201 + - uid: 6429 components: - rot: 3.141592653589793 rad pos: -6.5,42.5 @@ -40972,7 +42113,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6202 + - uid: 6430 components: - rot: 3.141592653589793 rad pos: -8.5,42.5 @@ -40980,21 +42121,21 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6203 + - uid: 6431 components: - pos: -2.5,26.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6204 + - uid: 6432 components: - pos: -2.5,27.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6205 + - uid: 6433 components: - rot: 3.141592653589793 rad pos: -8.5,43.5 @@ -41002,7 +42143,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6206 + - uid: 6434 components: - rot: 3.141592653589793 rad pos: -8.5,44.5 @@ -41010,7 +42151,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6207 + - uid: 6435 components: - rot: 3.141592653589793 rad pos: -6.5,44.5 @@ -41018,7 +42159,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6208 + - uid: 6436 components: - rot: 3.141592653589793 rad pos: -6.5,41.5 @@ -41026,7 +42167,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6209 + - uid: 6437 components: - rot: 3.141592653589793 rad pos: 0.5,32.5 @@ -41034,7 +42175,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6210 + - uid: 6438 components: - rot: 3.141592653589793 rad pos: 0.5,34.5 @@ -41042,7 +42183,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6211 + - uid: 6439 components: - rot: 3.141592653589793 rad pos: -6.5,40.5 @@ -41050,7 +42191,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6212 + - uid: 6440 components: - rot: 3.141592653589793 rad pos: -6.5,38.5 @@ -41058,7 +42199,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6213 + - uid: 6441 components: - rot: 3.141592653589793 rad pos: -8.5,38.5 @@ -41066,7 +42207,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6214 + - uid: 6442 components: - rot: 3.141592653589793 rad pos: -0.5,34.5 @@ -41074,7 +42215,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6215 + - uid: 6443 components: - rot: 3.141592653589793 rad pos: 0.5,33.5 @@ -41082,7 +42223,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6216 + - uid: 6444 components: - rot: 1.5707963267948966 rad pos: -2.5,31.5 @@ -41090,7 +42231,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6217 + - uid: 6445 components: - rot: 3.141592653589793 rad pos: -0.5,33.5 @@ -41098,14 +42239,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6218 + - uid: 6446 components: - pos: -8.5,34.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6219 + - uid: 6447 components: - rot: 1.5707963267948966 rad pos: -0.5,31.5 @@ -41113,7 +42254,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6220 + - uid: 6448 components: - rot: 1.5707963267948966 rad pos: -1.5,32.5 @@ -41121,7 +42262,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6221 + - uid: 6449 components: - rot: -1.5707963267948966 rad pos: -21.5,-15.5 @@ -41129,7 +42270,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6222 + - uid: 6450 components: - rot: -1.5707963267948966 rad pos: -22.5,-15.5 @@ -41137,7 +42278,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6223 + - uid: 6451 components: - rot: -1.5707963267948966 rad pos: -23.5,-15.5 @@ -41145,7 +42286,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6224 + - uid: 6452 components: - rot: -1.5707963267948966 rad pos: -25.5,-15.5 @@ -41153,7 +42294,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6225 + - uid: 6453 components: - rot: -1.5707963267948966 rad pos: -26.5,-15.5 @@ -41161,7 +42302,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6226 + - uid: 6454 components: - rot: -1.5707963267948966 rad pos: -27.5,-15.5 @@ -41169,7 +42310,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6227 + - uid: 6455 components: - rot: -1.5707963267948966 rad pos: -20.5,-16.5 @@ -41177,7 +42318,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6228 + - uid: 6456 components: - rot: -1.5707963267948966 rad pos: -21.5,-16.5 @@ -41185,7 +42326,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6229 + - uid: 6457 components: - rot: -1.5707963267948966 rad pos: -22.5,-16.5 @@ -41193,7 +42334,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6230 + - uid: 6458 components: - rot: -1.5707963267948966 rad pos: -24.5,-16.5 @@ -41201,7 +42342,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6231 + - uid: 6459 components: - rot: -1.5707963267948966 rad pos: -25.5,-16.5 @@ -41209,7 +42350,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6232 + - uid: 6460 components: - rot: -1.5707963267948966 rad pos: -26.5,-16.5 @@ -41217,7 +42358,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6233 + - uid: 6461 components: - rot: -1.5707963267948966 rad pos: -27.5,-16.5 @@ -41225,7 +42366,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6234 + - uid: 6462 components: - rot: -1.5707963267948966 rad pos: -28.5,-16.5 @@ -41233,7 +42374,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6235 + - uid: 6463 components: - rot: 3.141592653589793 rad pos: -8.5,40.5 @@ -41241,7 +42382,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6236 + - uid: 6464 components: - rot: 3.141592653589793 rad pos: -24.5,-16.5 @@ -41249,7 +42390,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6237 + - uid: 6465 components: - rot: 1.5707963267948966 rad pos: -22.5,-18.5 @@ -41257,7 +42398,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6238 + - uid: 6466 components: - rot: 1.5707963267948966 rad pos: -21.5,-18.5 @@ -41265,7 +42406,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6239 + - uid: 6467 components: - rot: 1.5707963267948966 rad pos: -20.5,-18.5 @@ -41273,7 +42414,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6240 + - uid: 6468 components: - rot: 1.5707963267948966 rad pos: -24.5,-18.5 @@ -41281,7 +42422,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6241 + - uid: 6469 components: - rot: 1.5707963267948966 rad pos: -25.5,-18.5 @@ -41289,7 +42430,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6242 + - uid: 6470 components: - rot: 1.5707963267948966 rad pos: -26.5,-18.5 @@ -41297,7 +42438,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6243 + - uid: 6471 components: - rot: 1.5707963267948966 rad pos: -27.5,-18.5 @@ -41305,7 +42446,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6244 + - uid: 6472 components: - rot: 1.5707963267948966 rad pos: -23.5,-19.5 @@ -41313,7 +42454,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6245 + - uid: 6473 components: - rot: 1.5707963267948966 rad pos: -22.5,-19.5 @@ -41321,7 +42462,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6246 + - uid: 6474 components: - rot: 1.5707963267948966 rad pos: -25.5,-19.5 @@ -41329,7 +42470,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6247 + - uid: 6475 components: - rot: 1.5707963267948966 rad pos: -26.5,-19.5 @@ -41337,7 +42478,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6248 + - uid: 6476 components: - rot: 1.5707963267948966 rad pos: -27.5,-19.5 @@ -41345,7 +42486,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6249 + - uid: 6477 components: - rot: 1.5707963267948966 rad pos: -28.5,-19.5 @@ -41353,63 +42494,63 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6250 + - uid: 6478 components: - pos: -24.5,-20.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6251 + - uid: 6479 components: - pos: -24.5,-21.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6252 + - uid: 6480 components: - pos: -24.5,-22.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6253 + - uid: 6481 components: - pos: -24.5,-23.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6254 + - uid: 6482 components: - pos: -23.5,-19.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6255 + - uid: 6483 components: - pos: -23.5,-20.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6256 + - uid: 6484 components: - pos: -23.5,-21.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6257 + - uid: 6485 components: - pos: -23.5,-22.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6258 + - uid: 6486 components: - rot: -1.5707963267948966 rad pos: -22.5,-23.5 @@ -41417,7 +42558,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6259 + - uid: 6487 components: - rot: -1.5707963267948966 rad pos: -21.5,-23.5 @@ -41425,7 +42566,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6260 + - uid: 6488 components: - rot: -1.5707963267948966 rad pos: -20.5,-23.5 @@ -41433,7 +42574,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6261 + - uid: 6489 components: - rot: 3.141592653589793 rad pos: -24.5,-18.5 @@ -41441,7 +42582,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6262 + - uid: 6490 components: - rot: 3.141592653589793 rad pos: -24.5,-25.5 @@ -41449,7 +42590,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6263 + - uid: 6491 components: - rot: 3.141592653589793 rad pos: -24.5,-27.5 @@ -41457,7 +42598,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6264 + - uid: 6492 components: - rot: -1.5707963267948966 rad pos: -25.5,-27.5 @@ -41465,7 +42606,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6265 + - uid: 6493 components: - rot: -1.5707963267948966 rad pos: -26.5,-27.5 @@ -41473,7 +42614,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6266 + - uid: 6494 components: - rot: -1.5707963267948966 rad pos: -27.5,-27.5 @@ -41481,7 +42622,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6267 + - uid: 6495 components: - rot: -1.5707963267948966 rad pos: -25.5,-24.5 @@ -41489,7 +42630,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6268 + - uid: 6496 components: - rot: -1.5707963267948966 rad pos: -26.5,-24.5 @@ -41497,7 +42638,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6269 + - uid: 6497 components: - rot: -1.5707963267948966 rad pos: -27.5,-24.5 @@ -41505,7 +42646,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6270 + - uid: 6498 components: - rot: -1.5707963267948966 rad pos: -28.5,-24.5 @@ -41513,7 +42654,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6271 + - uid: 6499 components: - rot: -1.5707963267948966 rad pos: -24.5,-23.5 @@ -41521,7 +42662,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6272 + - uid: 6500 components: - rot: -1.5707963267948966 rad pos: -25.5,-23.5 @@ -41529,7 +42670,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6273 + - uid: 6501 components: - rot: -1.5707963267948966 rad pos: -26.5,-23.5 @@ -41537,7 +42678,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6274 + - uid: 6502 components: - rot: -1.5707963267948966 rad pos: -27.5,-23.5 @@ -41545,7 +42686,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6275 + - uid: 6503 components: - rot: -1.5707963267948966 rad pos: -28.5,-23.5 @@ -41553,7 +42694,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6276 + - uid: 6504 components: - rot: -1.5707963267948966 rad pos: -23.5,-24.5 @@ -41561,7 +42702,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6277 + - uid: 6505 components: - rot: -1.5707963267948966 rad pos: -22.5,-24.5 @@ -41569,7 +42710,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6278 + - uid: 6506 components: - rot: -1.5707963267948966 rad pos: -21.5,-24.5 @@ -41577,28 +42718,28 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6279 + - uid: 6507 components: - pos: -17.5,-14.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6280 + - uid: 6508 components: - pos: -17.5,-13.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6281 + - uid: 6509 components: - pos: -7.5,23.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6282 + - uid: 6510 components: - rot: 1.5707963267948966 rad pos: -13.5,31.5 @@ -41606,7 +42747,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6283 + - uid: 6511 components: - rot: 1.5707963267948966 rad pos: 10.5,-6.5 @@ -41614,7 +42755,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6284 + - uid: 6512 components: - rot: 1.5707963267948966 rad pos: 9.5,-6.5 @@ -41622,7 +42763,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6285 + - uid: 6513 components: - rot: 1.5707963267948966 rad pos: 6.5,-6.5 @@ -41630,7 +42771,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6286 + - uid: 6514 components: - rot: 1.5707963267948966 rad pos: 5.5,-6.5 @@ -41638,7 +42779,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6287 + - uid: 6515 components: - rot: 1.5707963267948966 rad pos: 4.5,-6.5 @@ -41646,7 +42787,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6288 + - uid: 6516 components: - rot: 1.5707963267948966 rad pos: 11.5,-6.5 @@ -41654,7 +42795,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6289 + - uid: 6517 components: - rot: 1.5707963267948966 rad pos: 5.5,-4.5 @@ -41662,7 +42803,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6290 + - uid: 6518 components: - rot: 1.5707963267948966 rad pos: 6.5,-4.5 @@ -41670,7 +42811,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6291 + - uid: 6519 components: - rot: 1.5707963267948966 rad pos: 7.5,-4.5 @@ -41678,7 +42819,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6292 + - uid: 6520 components: - rot: 1.5707963267948966 rad pos: 9.5,-4.5 @@ -41686,7 +42827,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6293 + - uid: 6521 components: - rot: 1.5707963267948966 rad pos: 10.5,-4.5 @@ -41694,7 +42835,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6294 + - uid: 6522 components: - rot: 1.5707963267948966 rad pos: 11.5,-4.5 @@ -41702,14 +42843,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6295 + - uid: 6523 components: - pos: -0.5,35.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6296 + - uid: 6524 components: - rot: -1.5707963267948966 rad pos: -11.5,32.5 @@ -41717,7 +42858,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6297 + - uid: 6525 components: - rot: 3.141592653589793 rad pos: -8.5,37.5 @@ -41725,7 +42866,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6298 + - uid: 6526 components: - rot: -1.5707963267948966 rad pos: -12.5,32.5 @@ -41733,7 +42874,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6299 + - uid: 6527 components: - rot: -1.5707963267948966 rad pos: -8.5,31.5 @@ -41741,7 +42882,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6300 + - uid: 6528 components: - rot: -1.5707963267948966 rad pos: -9.5,31.5 @@ -41749,7 +42890,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6301 + - uid: 6529 components: - rot: -1.5707963267948966 rad pos: -10.5,31.5 @@ -41757,7 +42898,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6302 + - uid: 6530 components: - rot: -1.5707963267948966 rad pos: -11.5,31.5 @@ -41765,7 +42906,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6303 + - uid: 6531 components: - rot: -1.5707963267948966 rad pos: -12.5,31.5 @@ -41773,7 +42914,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6304 + - uid: 6532 components: - rot: -1.5707963267948966 rad pos: -13.5,32.5 @@ -41781,7 +42922,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6305 + - uid: 6533 components: - rot: 1.5707963267948966 rad pos: 12.5,-24.5 @@ -41789,32 +42930,32 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6306 + - uid: 6534 components: - pos: -13.5,32.5 parent: 2 type: Transform - - uid: 6307 + - uid: 6535 components: - pos: -13.5,33.5 parent: 2 type: Transform - - uid: 6308 + - uid: 6536 components: - pos: -12.5,32.5 parent: 2 type: Transform - - uid: 6309 + - uid: 6537 components: - pos: -12.5,33.5 parent: 2 type: Transform - - uid: 6310 + - uid: 6538 components: - pos: -12.5,34.5 parent: 2 type: Transform - - uid: 6311 + - uid: 6539 components: - rot: -1.5707963267948966 rad pos: -0.5,25.5 @@ -41822,7 +42963,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6312 + - uid: 6540 components: - rot: 1.5707963267948966 rad pos: 4.5,25.5 @@ -41830,7 +42971,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6313 + - uid: 6541 components: - rot: -1.5707963267948966 rad pos: 4.5,24.5 @@ -41838,7 +42979,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6314 + - uid: 6542 components: - rot: 1.5707963267948966 rad pos: 3.5,25.5 @@ -41846,7 +42987,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6315 + - uid: 6543 components: - rot: -1.5707963267948966 rad pos: 14.5,18.5 @@ -41854,7 +42995,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6316 + - uid: 6544 components: - rot: -1.5707963267948966 rad pos: 15.5,18.5 @@ -41862,7 +43003,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6317 + - uid: 6545 components: - rot: -1.5707963267948966 rad pos: 16.5,18.5 @@ -41870,7 +43011,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6318 + - uid: 6546 components: - rot: -1.5707963267948966 rad pos: 17.5,18.5 @@ -41878,7 +43019,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6319 + - uid: 6547 components: - rot: -1.5707963267948966 rad pos: 18.5,18.5 @@ -41886,14 +43027,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6320 + - uid: 6548 components: - pos: -10.5,24.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6321 + - uid: 6549 components: - rot: -1.5707963267948966 rad pos: -9.5,23.5 @@ -41901,14 +43042,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6322 + - uid: 6550 components: - pos: -1.5,32.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6323 + - uid: 6551 components: - rot: 3.141592653589793 rad pos: 28.5,36.5 @@ -41916,7 +43057,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 6324 + - uid: 6552 components: - rot: 3.141592653589793 rad pos: 28.5,35.5 @@ -41924,7 +43065,7 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 6325 + - uid: 6553 components: - rot: 3.141592653589793 rad pos: 28.5,34.5 @@ -41932,28 +43073,28 @@ entities: type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 6326 + - uid: 6554 components: - pos: 0.5,35.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6327 + - uid: 6555 components: - pos: -0.5,36.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6328 + - uid: 6556 components: - pos: 0.5,36.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6329 + - uid: 6557 components: - rot: 3.141592653589793 rad pos: -8.5,33.5 @@ -41961,7 +43102,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6330 + - uid: 6558 components: - rot: 3.141592653589793 rad pos: -6.5,32.5 @@ -41969,7 +43110,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6331 + - uid: 6559 components: - rot: 3.141592653589793 rad pos: -6.5,33.5 @@ -41977,13 +43118,13 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6332 + - uid: 6560 components: - rot: -1.5707963267948966 rad pos: 2.5,29.5 parent: 2 type: Transform - - uid: 6333 + - uid: 6561 components: - rot: -1.5707963267948966 rad pos: 1.5,24.5 @@ -41991,7 +43132,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6334 + - uid: 6562 components: - rot: -1.5707963267948966 rad pos: 2.5,24.5 @@ -41999,7 +43140,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6335 + - uid: 6563 components: - rot: -1.5707963267948966 rad pos: -1.5,24.5 @@ -42007,7 +43148,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6336 + - uid: 6564 components: - rot: -1.5707963267948966 rad pos: -0.5,24.5 @@ -42015,7 +43156,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6337 + - uid: 6565 components: - rot: -1.5707963267948966 rad pos: 0.5,24.5 @@ -42023,7 +43164,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6338 + - uid: 6566 components: - rot: -1.5707963267948966 rad pos: -24.5,-4.5 @@ -42031,7 +43172,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6339 + - uid: 6567 components: - rot: -1.5707963267948966 rad pos: -25.5,-2.5 @@ -42039,7 +43180,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6340 + - uid: 6568 components: - rot: 3.141592653589793 rad pos: -25.5,-3.5 @@ -42047,7 +43188,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6341 + - uid: 6569 components: - rot: 3.141592653589793 rad pos: -25.5,-2.5 @@ -42055,7 +43196,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6342 + - uid: 6570 components: - rot: 3.141592653589793 rad pos: -25.5,-1.5 @@ -42063,7 +43204,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6343 + - uid: 6571 components: - rot: 3.141592653589793 rad pos: -25.5,-0.5 @@ -42071,7 +43212,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6344 + - uid: 6572 components: - rot: 3.141592653589793 rad pos: -25.5,0.5 @@ -42079,7 +43220,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6345 + - uid: 6573 components: - rot: 3.141592653589793 rad pos: -25.5,1.5 @@ -42087,7 +43228,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6346 + - uid: 6574 components: - rot: 3.141592653589793 rad pos: -25.5,2.5 @@ -42095,7 +43236,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6347 + - uid: 6575 components: - rot: 3.141592653589793 rad pos: -25.5,3.5 @@ -42103,7 +43244,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6348 + - uid: 6576 components: - rot: 3.141592653589793 rad pos: -25.5,4.5 @@ -42111,7 +43252,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6349 + - uid: 6577 components: - rot: 3.141592653589793 rad pos: -26.5,-1.5 @@ -42119,7 +43260,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6350 + - uid: 6578 components: - rot: 3.141592653589793 rad pos: -26.5,-0.5 @@ -42127,7 +43268,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6351 + - uid: 6579 components: - rot: 3.141592653589793 rad pos: -26.5,0.5 @@ -42135,7 +43276,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6352 + - uid: 6580 components: - rot: 3.141592653589793 rad pos: -26.5,1.5 @@ -42143,7 +43284,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6353 + - uid: 6581 components: - rot: 3.141592653589793 rad pos: -26.5,2.5 @@ -42151,7 +43292,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6354 + - uid: 6582 components: - rot: 3.141592653589793 rad pos: -26.5,3.5 @@ -42159,7 +43300,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6355 + - uid: 6583 components: - rot: 3.141592653589793 rad pos: -27.5,5.5 @@ -42167,7 +43308,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6356 + - uid: 6584 components: - rot: 3.141592653589793 rad pos: -26.5,6.5 @@ -42175,7 +43316,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6357 + - uid: 6585 components: - rot: 3.141592653589793 rad pos: -26.5,7.5 @@ -42183,7 +43324,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6358 + - uid: 6586 components: - rot: 3.141592653589793 rad pos: -26.5,8.5 @@ -42191,7 +43332,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6359 + - uid: 6587 components: - rot: 3.141592653589793 rad pos: -26.5,9.5 @@ -42199,7 +43340,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6360 + - uid: 6588 components: - rot: 3.141592653589793 rad pos: -26.5,10.5 @@ -42207,7 +43348,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6361 + - uid: 6589 components: - rot: 1.5707963267948966 rad pos: -27.5,11.5 @@ -42215,13 +43356,13 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6362 + - uid: 6590 components: - rot: 1.5707963267948966 rad pos: 30.5,32.5 parent: 2 type: Transform - - uid: 6363 + - uid: 6591 components: - rot: 3.141592653589793 rad pos: 3.5,32.5 @@ -42229,7 +43370,7 @@ entities: type: Transform - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 6364 + - uid: 6592 components: - rot: 1.5707963267948966 rad pos: 5.5,0.5 @@ -42237,7 +43378,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6365 + - uid: 6593 components: - rot: 1.5707963267948966 rad pos: 15.5,0.5 @@ -42245,7 +43386,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6366 + - uid: 6594 components: - rot: -1.5707963267948966 rad pos: 22.5,1.5 @@ -42253,7 +43394,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6367 + - uid: 6595 components: - rot: 3.141592653589793 rad pos: 23.5,-0.5 @@ -42261,7 +43402,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6368 + - uid: 6596 components: - rot: 3.141592653589793 rad pos: 16.5,-2.5 @@ -42269,7 +43410,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6369 + - uid: 6597 components: - rot: 1.5707963267948966 rad pos: 6.5,-0.5 @@ -42277,7 +43418,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6370 + - uid: 6598 components: - rot: -1.5707963267948966 rad pos: 9.5,-0.5 @@ -42285,7 +43426,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6371 + - uid: 6599 components: - rot: -1.5707963267948966 rad pos: 8.5,-0.5 @@ -42293,7 +43434,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6372 + - uid: 6600 components: - rot: 1.5707963267948966 rad pos: 5.5,-0.5 @@ -42301,7 +43442,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6373 + - uid: 6601 components: - rot: 1.5707963267948966 rad pos: 14.5,0.5 @@ -42309,7 +43450,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6374 + - uid: 6602 components: - rot: 3.141592653589793 rad pos: 7.5,2.5 @@ -42317,14 +43458,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6375 + - uid: 6603 components: - pos: 8.5,36.5 parent: 2 type: Transform - color: '#FF5900FF' type: AtmosPipeColor - - uid: 6376 + - uid: 6604 components: - rot: -1.5707963267948966 rad pos: 10.5,-0.5 @@ -42332,7 +43473,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6377 + - uid: 6605 components: - rot: 3.141592653589793 rad pos: 20.5,0.5 @@ -42340,7 +43481,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6378 + - uid: 6606 components: - rot: -1.5707963267948966 rad pos: 21.5,1.5 @@ -42348,7 +43489,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6379 + - uid: 6607 components: - rot: -1.5707963267948966 rad pos: 7.5,2.5 @@ -42356,7 +43497,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6380 + - uid: 6608 components: - rot: -1.5707963267948966 rad pos: 8.5,2.5 @@ -42364,7 +43505,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6381 + - uid: 6609 components: - rot: 3.141592653589793 rad pos: 17.5,-1.5 @@ -42372,7 +43513,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6382 + - uid: 6610 components: - rot: 3.141592653589793 rad pos: 17.5,-2.5 @@ -42380,7 +43521,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6383 + - uid: 6611 components: - rot: 3.141592653589793 rad pos: 17.5,-3.5 @@ -42388,7 +43529,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6384 + - uid: 6612 components: - rot: 3.141592653589793 rad pos: 17.5,-4.5 @@ -42396,7 +43537,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6385 + - uid: 6613 components: - rot: 3.141592653589793 rad pos: 23.5,0.5 @@ -42404,7 +43545,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6386 + - uid: 6614 components: - rot: 1.5707963267948966 rad pos: 18.5,-0.5 @@ -42412,7 +43553,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6387 + - uid: 6615 components: - rot: 1.5707963267948966 rad pos: 19.5,-0.5 @@ -42420,7 +43561,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6388 + - uid: 6616 components: - rot: -1.5707963267948966 rad pos: 10.5,2.5 @@ -42428,7 +43569,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6389 + - uid: 6617 components: - rot: 1.5707963267948966 rad pos: 19.5,0.5 @@ -42436,7 +43577,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6390 + - uid: 6618 components: - rot: 1.5707963267948966 rad pos: 17.5,0.5 @@ -42444,7 +43585,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6391 + - uid: 6619 components: - rot: 1.5707963267948966 rad pos: 20.5,0.5 @@ -42452,7 +43593,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6392 + - uid: 6620 components: - rot: -1.5707963267948966 rad pos: -21.5,-19.5 @@ -42460,7 +43601,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6393 + - uid: 6621 components: - rot: 1.5707963267948966 rad pos: 12.5,1.5 @@ -42468,7 +43609,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6394 + - uid: 6622 components: - rot: 1.5707963267948966 rad pos: 18.5,0.5 @@ -42476,7 +43617,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6395 + - uid: 6623 components: - rot: 1.5707963267948966 rad pos: 13.5,30.5 @@ -42484,7 +43625,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6396 + - uid: 6624 components: - rot: -1.5707963267948966 rad pos: 13.5,29.5 @@ -42492,7 +43633,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6397 + - uid: 6625 components: - rot: 1.5707963267948966 rad pos: 12.5,30.5 @@ -42500,7 +43641,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6398 + - uid: 6626 components: - rot: 1.5707963267948966 rad pos: 11.5,30.5 @@ -42508,7 +43649,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6399 + - uid: 6627 components: - rot: 1.5707963267948966 rad pos: 10.5,15.5 @@ -42516,7 +43657,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6400 + - uid: 6628 components: - rot: 1.5707963267948966 rad pos: 9.5,15.5 @@ -42524,7 +43665,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6401 + - uid: 6629 components: - rot: 1.5707963267948966 rad pos: 8.5,15.5 @@ -42532,7 +43673,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6402 + - uid: 6630 components: - rot: 3.141592653589793 rad pos: 10.5,36.5 @@ -42540,7 +43681,7 @@ entities: type: Transform - color: '#7A5D04FF' type: AtmosPipeColor - - uid: 6403 + - uid: 6631 components: - rot: 3.141592653589793 rad pos: 19.5,32.5 @@ -42548,14 +43689,14 @@ entities: type: Transform - color: '#B600FFFF' type: AtmosPipeColor - - uid: 6404 + - uid: 6632 components: - pos: 9.5,35.5 parent: 2 type: Transform - color: '#FF5900FF' type: AtmosPipeColor - - uid: 6405 + - uid: 6633 components: - rot: 3.141592653589793 rad pos: 20.5,32.5 @@ -42565,14 +43706,14 @@ entities: type: AtmosPipeColor - proto: GasPipeTJunction entities: - - uid: 6406 + - uid: 6634 components: - pos: 16.5,29.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6407 + - uid: 6635 components: - rot: 3.141592653589793 rad pos: 14.5,31.5 @@ -42580,21 +43721,21 @@ entities: type: Transform - color: '#826003FF' type: AtmosPipeColor - - uid: 6408 + - uid: 6636 components: - pos: 18.5,28.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6409 + - uid: 6637 components: - pos: 17.5,28.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6410 + - uid: 6638 components: - rot: -1.5707963267948966 rad pos: 11.5,15.5 @@ -42602,7 +43743,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6411 + - uid: 6639 components: - rot: 1.5707963267948966 rad pos: 8.5,34.5 @@ -42610,28 +43751,28 @@ entities: type: Transform - color: '#FF5900FF' type: AtmosPipeColor - - uid: 6412 + - uid: 6640 components: - pos: 24.5,0.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6413 + - uid: 6641 components: - pos: 17.5,-0.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6414 + - uid: 6642 components: - pos: 15.5,-0.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6415 + - uid: 6643 components: - rot: 1.5707963267948966 rad pos: 9.5,37.5 @@ -42639,7 +43780,7 @@ entities: type: Transform - color: '#FF5900FF' type: AtmosPipeColor - - uid: 6416 + - uid: 6644 components: - rot: -1.5707963267948966 rad pos: 8.5,38.5 @@ -42647,7 +43788,7 @@ entities: type: Transform - color: '#FF5900FF' type: AtmosPipeColor - - uid: 6417 + - uid: 6645 components: - rot: 1.5707963267948966 rad pos: 3.5,38.5 @@ -42655,7 +43796,7 @@ entities: type: Transform - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 6418 + - uid: 6646 components: - rot: 1.5707963267948966 rad pos: 3.5,37.5 @@ -42663,7 +43804,7 @@ entities: type: Transform - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 6419 + - uid: 6647 components: - rot: -1.5707963267948966 rad pos: 5.5,38.5 @@ -42671,7 +43812,7 @@ entities: type: Transform - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 6420 + - uid: 6648 components: - rot: -1.5707963267948966 rad pos: 5.5,37.5 @@ -42679,7 +43820,7 @@ entities: type: Transform - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 6421 + - uid: 6649 components: - rot: 3.141592653589793 rad pos: 15.5,31.5 @@ -42687,14 +43828,14 @@ entities: type: Transform - color: '#826003FF' type: AtmosPipeColor - - uid: 6422 + - uid: 6650 components: - pos: 6.5,34.5 parent: 2 type: Transform - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 6423 + - uid: 6651 components: - rot: -1.5707963267948966 rad pos: -8.5,36.5 @@ -42702,14 +43843,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6424 + - uid: 6652 components: - pos: -7.5,24.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6425 + - uid: 6653 components: - rot: -1.5707963267948966 rad pos: -5.5,23.5 @@ -42717,7 +43858,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6426 + - uid: 6654 components: - rot: -1.5707963267948966 rad pos: -16.5,5.5 @@ -42725,7 +43866,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6427 + - uid: 6655 components: - rot: 3.141592653589793 rad pos: -19.5,8.5 @@ -42733,7 +43874,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6428 + - uid: 6656 components: - rot: 3.141592653589793 rad pos: -15.5,-6.5 @@ -42741,7 +43882,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6429 + - uid: 6657 components: - rot: -1.5707963267948966 rad pos: -16.5,-7.5 @@ -42749,7 +43890,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6430 + - uid: 6658 components: - rot: -1.5707963267948966 rad pos: 14.5,-24.5 @@ -42757,27 +43898,27 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6431 + - uid: 6659 components: - rot: 1.5707963267948966 rad pos: -6.5,1.5 parent: 2 type: Transform - - uid: 6432 + - uid: 6660 components: - pos: -20.5,5.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6433 + - uid: 6661 components: - pos: 5.5,13.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6434 + - uid: 6662 components: - rot: 3.141592653589793 rad pos: 4.5,12.5 @@ -42785,7 +43926,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6435 + - uid: 6663 components: - rot: -1.5707963267948966 rad pos: -23.5,-27.5 @@ -42793,7 +43934,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6436 + - uid: 6664 components: - rot: -1.5707963267948966 rad pos: 4.5,-10.5 @@ -42801,14 +43942,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6437 + - uid: 6665 components: - pos: -1.5,20.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6438 + - uid: 6666 components: - rot: -1.5707963267948966 rad pos: 11.5,12.5 @@ -42816,7 +43957,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6439 + - uid: 6667 components: - rot: -1.5707963267948966 rad pos: 10.5,13.5 @@ -42824,7 +43965,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6440 + - uid: 6668 components: - rot: 3.141592653589793 rad pos: 12.5,-25.5 @@ -42832,14 +43973,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6441 + - uid: 6669 components: - pos: 12.5,-19.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6442 + - uid: 6670 components: - rot: 1.5707963267948966 rad pos: 11.5,18.5 @@ -42847,7 +43988,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6443 + - uid: 6671 components: - rot: 3.141592653589793 rad pos: -5.5,19.5 @@ -42855,7 +43996,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6444 + - uid: 6672 components: - rot: -1.5707963267948966 rad pos: -24.5,-26.5 @@ -42863,7 +44004,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6445 + - uid: 6673 components: - rot: -1.5707963267948966 rad pos: 19.5,28.5 @@ -42871,7 +44012,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6446 + - uid: 6674 components: - rot: 3.141592653589793 rad pos: -3.5,-4.5 @@ -42879,14 +44020,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6447 + - uid: 6675 components: - pos: -5.5,-2.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6448 + - uid: 6676 components: - rot: 1.5707963267948966 rad pos: 10.5,-18.5 @@ -42894,7 +44035,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6449 + - uid: 6677 components: - rot: 1.5707963267948966 rad pos: 1.5,8.5 @@ -42902,7 +44043,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6450 + - uid: 6678 components: - rot: 1.5707963267948966 rad pos: 2.5,10.5 @@ -42910,7 +44051,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6451 + - uid: 6679 components: - rot: 1.5707963267948966 rad pos: 3.5,-0.5 @@ -42918,7 +44059,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6452 + - uid: 6680 components: - rot: 1.5707963267948966 rad pos: 3.5,-9.5 @@ -42926,7 +44067,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6453 + - uid: 6681 components: - rot: -1.5707963267948966 rad pos: 3.5,-2.5 @@ -42934,7 +44075,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6454 + - uid: 6682 components: - rot: 3.141592653589793 rad pos: 2.5,13.5 @@ -42942,7 +44083,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6455 + - uid: 6683 components: - rot: 3.141592653589793 rad pos: -6.5,12.5 @@ -42950,14 +44091,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6456 + - uid: 6684 components: - pos: -9.5,13.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6457 + - uid: 6685 components: - rot: 3.141592653589793 rad pos: -7.5,12.5 @@ -42965,7 +44106,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6458 + - uid: 6686 components: - rot: 1.5707963267948966 rad pos: -12.5,-9.5 @@ -42973,7 +44114,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6459 + - uid: 6687 components: - rot: -1.5707963267948966 rad pos: -11.5,-10.5 @@ -42981,28 +44122,28 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6460 + - uid: 6688 components: - pos: -15.5,-4.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6461 + - uid: 6689 components: - pos: -16.5,9.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6462 + - uid: 6690 components: - pos: -15.5,8.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6463 + - uid: 6691 components: - rot: 3.141592653589793 rad pos: -22.5,12.5 @@ -43010,7 +44151,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6464 + - uid: 6692 components: - rot: -1.5707963267948966 rad pos: -21.5,14.5 @@ -43018,21 +44159,21 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6465 + - uid: 6693 components: - pos: 2.5,12.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6466 + - uid: 6694 components: - pos: 1.5,13.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6467 + - uid: 6695 components: - rot: 3.141592653589793 rad pos: -1.5,12.5 @@ -43040,14 +44181,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6468 + - uid: 6696 components: - pos: -6.5,-2.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6469 + - uid: 6697 components: - rot: 3.141592653589793 rad pos: -4.5,-2.5 @@ -43055,28 +44196,28 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6470 + - uid: 6698 components: - pos: -4.5,0.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6471 + - uid: 6699 components: - pos: -5.5,-4.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6472 + - uid: 6700 components: - pos: -0.5,-2.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6473 + - uid: 6701 components: - rot: -1.5707963267948966 rad pos: -15.5,7.5 @@ -43084,7 +44225,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6474 + - uid: 6702 components: - rot: -1.5707963267948966 rad pos: -16.5,7.5 @@ -43092,7 +44233,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6475 + - uid: 6703 components: - rot: -1.5707963267948966 rad pos: -12.5,-11.5 @@ -43100,7 +44241,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6476 + - uid: 6704 components: - rot: -1.5707963267948966 rad pos: -11.5,-12.5 @@ -43108,7 +44249,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6477 + - uid: 6705 components: - rot: 3.141592653589793 rad pos: -15.5,-11.5 @@ -43116,14 +44257,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6478 + - uid: 6706 components: - pos: -15.5,-12.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6479 + - uid: 6707 components: - rot: -1.5707963267948966 rad pos: 5.5,-18.5 @@ -43131,7 +44272,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6480 + - uid: 6708 components: - rot: -1.5707963267948966 rad pos: 4.5,-19.5 @@ -43139,14 +44280,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6481 + - uid: 6709 components: - pos: -2.5,-19.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6482 + - uid: 6710 components: - rot: 3.141592653589793 rad pos: -8.5,-19.5 @@ -43154,35 +44295,35 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6483 + - uid: 6711 components: - pos: -7.5,-19.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6484 + - uid: 6712 components: - pos: -10.5,-19.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6485 + - uid: 6713 components: - pos: 1.5,-18.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6486 + - uid: 6714 components: - pos: -6.5,-18.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6487 + - uid: 6715 components: - rot: 3.141592653589793 rad pos: -5.5,-18.5 @@ -43190,7 +44331,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6488 + - uid: 6716 components: - rot: 3.141592653589793 rad pos: -10.5,-18.5 @@ -43198,7 +44339,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6489 + - uid: 6717 components: - rot: 1.5707963267948966 rad pos: -2.5,-22.5 @@ -43206,7 +44347,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6490 + - uid: 6718 components: - rot: -1.5707963267948966 rad pos: 1.5,-22.5 @@ -43214,7 +44355,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6491 + - uid: 6719 components: - rot: 1.5707963267948966 rad pos: 10.5,-16.5 @@ -43222,28 +44363,28 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6492 + - uid: 6720 components: - pos: 14.5,-18.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6493 + - uid: 6721 components: - pos: 13.5,-16.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6494 + - uid: 6722 components: - pos: 15.5,17.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6495 + - uid: 6723 components: - rot: 1.5707963267948966 rad pos: 14.5,-21.5 @@ -43251,7 +44392,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6496 + - uid: 6724 components: - rot: 1.5707963267948966 rad pos: 12.5,-22.5 @@ -43259,7 +44400,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6497 + - uid: 6725 components: - rot: 3.141592653589793 rad pos: -7.5,13.5 @@ -43267,7 +44408,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6498 + - uid: 6726 components: - rot: -1.5707963267948966 rad pos: -7.5,18.5 @@ -43275,7 +44416,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6499 + - uid: 6727 components: - rot: 3.141592653589793 rad pos: -6.5,31.5 @@ -43283,14 +44424,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6500 + - uid: 6728 components: - pos: 18.5,-19.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6501 + - uid: 6729 components: - rot: 1.5707963267948966 rad pos: -7.5,20.5 @@ -43298,7 +44439,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6502 + - uid: 6730 components: - rot: -1.5707963267948966 rad pos: -1.5,27.5 @@ -43306,7 +44447,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6503 + - uid: 6731 components: - rot: 1.5707963267948966 rad pos: 5.5,34.5 @@ -43314,7 +44455,7 @@ entities: type: Transform - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 6504 + - uid: 6732 components: - rot: 1.5707963267948966 rad pos: -6.5,39.5 @@ -43322,7 +44463,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6505 + - uid: 6733 components: - rot: 1.5707963267948966 rad pos: 3.5,1.5 @@ -43330,7 +44471,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6506 + - uid: 6734 components: - rot: 1.5707963267948966 rad pos: 6.5,5.5 @@ -43338,7 +44479,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6507 + - uid: 6735 components: - rot: 1.5707963267948966 rad pos: 5.5,-21.5 @@ -43346,7 +44487,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6508 + - uid: 6736 components: - rot: -1.5707963267948966 rad pos: 19.5,26.5 @@ -43354,7 +44495,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6509 + - uid: 6737 components: - rot: 1.5707963267948966 rad pos: -6.5,18.5 @@ -43362,7 +44503,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6510 + - uid: 6738 components: - rot: 3.141592653589793 rad pos: -2.5,19.5 @@ -43370,7 +44511,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6511 + - uid: 6739 components: - rot: -1.5707963267948966 rad pos: 16.5,24.5 @@ -43378,7 +44519,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6512 + - uid: 6740 components: - rot: 1.5707963267948966 rad pos: 4.5,-21.5 @@ -43386,7 +44527,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6513 + - uid: 6741 components: - rot: 1.5707963267948966 rad pos: 7.5,4.5 @@ -43394,21 +44535,21 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6514 + - uid: 6742 components: - pos: 14.5,-13.5 parent: 2 type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 6515 + - uid: 6743 components: - pos: 11.5,20.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6516 + - uid: 6744 components: - rot: 1.5707963267948966 rad pos: 20.5,-19.5 @@ -43416,7 +44557,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6517 + - uid: 6745 components: - rot: -1.5707963267948966 rad pos: 10.5,-15.5 @@ -43424,7 +44565,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6518 + - uid: 6746 components: - rot: -1.5707963267948966 rad pos: 11.5,-14.5 @@ -43432,7 +44573,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6519 + - uid: 6747 components: - rot: -1.5707963267948966 rad pos: -7.5,-22.5 @@ -43440,7 +44581,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6520 + - uid: 6748 components: - rot: -1.5707963267948966 rad pos: -6.5,-21.5 @@ -43448,7 +44589,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6521 + - uid: 6749 components: - rot: 1.5707963267948966 rad pos: -19.5,14.5 @@ -43456,7 +44597,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6522 + - uid: 6750 components: - rot: 1.5707963267948966 rad pos: -18.5,17.5 @@ -43464,7 +44605,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6523 + - uid: 6751 components: - rot: 1.5707963267948966 rad pos: -19.5,18.5 @@ -43472,7 +44613,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6524 + - uid: 6752 components: - rot: -1.5707963267948966 rad pos: -18.5,11.5 @@ -43480,7 +44621,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6525 + - uid: 6753 components: - rot: 1.5707963267948966 rad pos: -12.5,6.5 @@ -43488,7 +44629,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6526 + - uid: 6754 components: - rot: -1.5707963267948966 rad pos: -11.5,7.5 @@ -43496,35 +44637,35 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6527 + - uid: 6755 components: - pos: -22.5,8.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6528 + - uid: 6756 components: - pos: -18.5,-7.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6529 + - uid: 6757 components: - pos: -17.5,-6.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6530 + - uid: 6758 components: - pos: -20.5,-2.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6531 + - uid: 6759 components: - rot: 3.141592653589793 rad pos: -18.5,-4.5 @@ -43532,7 +44673,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6532 + - uid: 6760 components: - rot: 3.141592653589793 rad pos: 24.5,17.5 @@ -43540,7 +44681,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6533 + - uid: 6761 components: - rot: 1.5707963267948966 rad pos: 31.5,14.5 @@ -43548,7 +44689,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6534 + - uid: 6762 components: - rot: 1.5707963267948966 rad pos: -6.5,36.5 @@ -43556,7 +44697,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6535 + - uid: 6763 components: - rot: 3.141592653589793 rad pos: -8.5,32.5 @@ -43564,7 +44705,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6536 + - uid: 6764 components: - rot: -1.5707963267948966 rad pos: -8.5,39.5 @@ -43572,21 +44713,21 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6537 + - uid: 6765 components: - pos: -23.5,-16.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6538 + - uid: 6766 components: - pos: -24.5,-15.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6539 + - uid: 6767 components: - rot: 1.5707963267948966 rad pos: -23.5,-17.5 @@ -43594,7 +44735,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6540 + - uid: 6768 components: - rot: -1.5707963267948966 rad pos: -24.5,-17.5 @@ -43602,14 +44743,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6541 + - uid: 6769 components: - pos: 8.5,-4.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6542 + - uid: 6770 components: - rot: 3.141592653589793 rad pos: 7.5,-6.5 @@ -43617,7 +44758,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6543 + - uid: 6771 components: - rot: 1.5707963267948966 rad pos: 3.5,-6.5 @@ -43625,7 +44766,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6544 + - uid: 6772 components: - rot: 3.141592653589793 rad pos: -2.5,24.5 @@ -43633,7 +44774,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6545 + - uid: 6773 components: - rot: 1.5707963267948966 rad pos: 9.5,32.5 @@ -43641,7 +44782,7 @@ entities: type: Transform - color: '#FF5900FF' type: AtmosPipeColor - - uid: 6546 + - uid: 6774 components: - rot: 3.141592653589793 rad pos: 5.5,31.5 @@ -43649,7 +44790,7 @@ entities: type: Transform - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 6547 + - uid: 6775 components: - rot: -1.5707963267948966 rad pos: 9.5,34.5 @@ -43657,14 +44798,14 @@ entities: type: Transform - color: '#FF5900FF' type: AtmosPipeColor - - uid: 6548 + - uid: 6776 components: - pos: 23.5,1.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6549 + - uid: 6777 components: - rot: 3.141592653589793 rad pos: 9.5,31.5 @@ -43672,7 +44813,7 @@ entities: type: Transform - color: '#FF5900FF' type: AtmosPipeColor - - uid: 6550 + - uid: 6778 components: - rot: -1.5707963267948966 rad pos: 5.5,32.5 @@ -43680,14 +44821,14 @@ entities: type: Transform - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 6551 + - uid: 6779 components: - pos: 9.5,2.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6552 + - uid: 6780 components: - rot: 1.5707963267948966 rad pos: 6.5,2.5 @@ -43695,7 +44836,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6553 + - uid: 6781 components: - rot: 1.5707963267948966 rad pos: 13.5,0.5 @@ -43703,7 +44844,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6554 + - uid: 6782 components: - pos: 16.5,0.5 parent: 2 @@ -43712,24 +44853,24 @@ entities: type: AtmosPipeColor - proto: GasPort entities: - - uid: 6555 + - uid: 6783 components: - pos: 9.5,30.5 parent: 2 type: Transform - - uid: 6556 + - uid: 6784 components: - rot: -1.5707963267948966 rad pos: 10.5,29.5 parent: 2 type: Transform - - uid: 6557 + - uid: 6785 components: - rot: 3.141592653589793 rad pos: 9.5,28.5 parent: 2 type: Transform - - uid: 6558 + - uid: 6786 components: - rot: -1.5707963267948966 rad pos: 10.5,32.5 @@ -43737,7 +44878,7 @@ entities: type: Transform - color: '#FF5900FF' type: AtmosPipeColor - - uid: 6559 + - uid: 6787 components: - rot: 1.5707963267948966 rad pos: 4.5,32.5 @@ -43745,19 +44886,19 @@ entities: type: Transform - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 6560 + - uid: 6788 components: - rot: 3.141592653589793 rad pos: 8.5,29.5 parent: 2 type: Transform - - uid: 6561 + - uid: 6789 components: - rot: 3.141592653589793 rad pos: 6.5,29.5 parent: 2 type: Transform - - uid: 6562 + - uid: 6790 components: - rot: 3.141592653589793 rad pos: 18.5,27.5 @@ -43765,7 +44906,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6563 + - uid: 6791 components: - rot: 3.141592653589793 rad pos: 17.5,27.5 @@ -43773,19 +44914,19 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6564 + - uid: 6792 components: - rot: 3.141592653589793 rad pos: -12.5,30.5 parent: 2 type: Transform - - uid: 6565 + - uid: 6793 components: - rot: 3.141592653589793 rad pos: -13.5,30.5 parent: 2 type: Transform - - uid: 6566 + - uid: 6794 components: - rot: 3.141592653589793 rad pos: 10.5,34.5 @@ -43795,19 +44936,19 @@ entities: type: AtmosPipeColor - proto: GasPressurePump entities: - - uid: 6567 + - uid: 6795 components: - rot: 3.141592653589793 rad pos: 27.5,33.5 parent: 2 type: Transform - - uid: 6568 + - uid: 6796 components: - rot: 3.141592653589793 rad pos: 21.5,33.5 parent: 2 type: Transform - - uid: 6569 + - uid: 6797 components: - rot: -1.5707963267948966 rad pos: 18.5,29.5 @@ -43815,7 +44956,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6570 + - uid: 6798 components: - rot: 3.141592653589793 rad pos: 8.5,30.5 @@ -43823,36 +44964,36 @@ entities: type: Transform - color: '#FF5900FF' type: AtmosPipeColor - - uid: 6571 + - uid: 6799 components: - rot: 3.141592653589793 rad pos: 25.5,33.5 parent: 2 type: Transform - - uid: 6572 + - uid: 6800 components: - pos: 26.5,33.5 parent: 2 type: Transform - - uid: 6573 + - uid: 6801 components: - rot: 3.141592653589793 rad pos: 23.5,33.5 parent: 2 type: Transform - - uid: 6574 + - uid: 6802 components: - pos: 28.5,33.5 parent: 2 type: Transform - - uid: 6575 + - uid: 6803 components: - pos: 14.5,33.5 parent: 2 type: Transform - color: '#826003FF' type: AtmosPipeColor - - uid: 6576 + - uid: 6804 components: - rot: 3.141592653589793 rad pos: 19.5,30.5 @@ -43860,7 +45001,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6577 + - uid: 6805 components: - rot: 3.141592653589793 rad pos: 6.5,30.5 @@ -43868,21 +45009,21 @@ entities: type: Transform - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 6578 + - uid: 6806 components: - pos: 22.5,33.5 parent: 2 type: Transform - color: '#02FFD0FF' type: AtmosPipeColor - - uid: 6579 + - uid: 6807 components: - pos: 20.5,33.5 parent: 2 type: Transform - color: '#02FFD0FF' type: AtmosPipeColor - - uid: 6580 + - uid: 6808 components: - rot: 3.141592653589793 rad pos: 15.5,33.5 @@ -43890,18 +45031,18 @@ entities: type: Transform - color: '#826003FF' type: AtmosPipeColor - - uid: 6581 + - uid: 6809 components: - rot: 3.141592653589793 rad pos: -13.5,31.5 parent: 2 type: Transform - - uid: 6582 + - uid: 6810 components: - pos: -12.5,31.5 parent: 2 type: Transform - - uid: 6583 + - uid: 6811 components: - rot: -1.5707963267948966 rad pos: 13.5,31.5 @@ -43911,24 +45052,24 @@ entities: type: AtmosPipeColor - proto: GasThermoMachineFreezer entities: - - uid: 6584 + - uid: 6812 components: - pos: -4.5,2.5 parent: 2 type: Transform - - uid: 6585 + - uid: 6813 components: - pos: 15.5,25.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6586 + - uid: 6814 components: - pos: 17.5,33.5 parent: 2 type: Transform - - uid: 6587 + - uid: 6815 components: - rot: -1.5707963267948966 rad pos: 11.5,29.5 @@ -43936,21 +45077,21 @@ entities: type: Transform - proto: GasThermoMachineHeater entities: - - uid: 6588 + - uid: 6816 components: - pos: 18.5,33.5 parent: 2 type: Transform - color: '#947507FF' type: AtmosPipeColor - - uid: 6589 + - uid: 6817 components: - pos: 15.5,27.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6590 + - uid: 6818 components: - rot: -1.5707963267948966 rad pos: 11.5,28.5 @@ -43958,7 +45099,7 @@ entities: type: Transform - proto: GasValve entities: - - uid: 6591 + - uid: 6819 components: - rot: 3.141592653589793 rad pos: 14.5,32.5 @@ -43968,7 +45109,7 @@ entities: type: GasValve - color: '#826003FF' type: AtmosPipeColor - - uid: 6592 + - uid: 6820 components: - rot: 3.141592653589793 rad pos: 15.5,32.5 @@ -43978,7 +45119,7 @@ entities: type: GasValve - color: '#826003FF' type: AtmosPipeColor - - uid: 6593 + - uid: 6821 components: - rot: -1.5707963267948966 rad pos: 10.5,31.5 @@ -43988,7 +45129,7 @@ entities: type: GasValve - color: '#FF5900FF' type: AtmosPipeColor - - uid: 6594 + - uid: 6822 components: - rot: 3.141592653589793 rad pos: 10.5,35.5 @@ -43998,7 +45139,7 @@ entities: type: GasValve - color: '#7A5D04FF' type: AtmosPipeColor - - uid: 6595 + - uid: 6823 components: - pos: 8.5,35.5 parent: 2 @@ -44007,14 +45148,14 @@ entities: type: GasValve - color: '#FF5900FF' type: AtmosPipeColor - - uid: 6596 + - uid: 6824 components: - pos: 19.5,33.5 parent: 2 type: Transform - color: '#B600FFFF' type: AtmosPipeColor - - uid: 6597 + - uid: 6825 components: - rot: 1.5707963267948966 rad pos: 4.5,31.5 @@ -44024,7 +45165,7 @@ entities: type: GasValve - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 6598 + - uid: 6826 components: - pos: 3.5,33.5 parent: 2 @@ -44033,13 +45174,13 @@ entities: type: GasValve - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 6599 + - uid: 6827 components: - rot: 1.5707963267948966 rad pos: 7.5,31.5 parent: 2 type: Transform - - uid: 6600 + - uid: 6828 components: - pos: 5.5,33.5 parent: 2 @@ -44048,7 +45189,7 @@ entities: type: GasValve - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 6601 + - uid: 6829 components: - pos: 9.5,33.5 parent: 2 @@ -44057,13 +45198,13 @@ entities: type: GasValve - color: '#FF5900FF' type: AtmosPipeColor - - uid: 6602 + - uid: 6830 components: - rot: -1.5707963267948966 rad pos: 29.5,32.5 parent: 2 type: Transform - - uid: 6603 + - uid: 6831 components: - rot: 3.141592653589793 rad pos: 7.5,35.5 @@ -44075,7 +45216,7 @@ entities: type: AtmosPipeColor - proto: GasVentPump entities: - - uid: 6604 + - uid: 6832 components: - rot: 3.141592653589793 rad pos: 15.5,-1.5 @@ -44083,7 +45224,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6605 + - uid: 6833 components: - rot: 1.5707963267948966 rad pos: -17.5,-0.5 @@ -44091,7 +45232,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6606 + - uid: 6834 components: - rot: 3.141592653589793 rad pos: -24.5,-9.5 @@ -44099,7 +45240,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6607 + - uid: 6835 components: - rot: 3.141592653589793 rad pos: -1.5,19.5 @@ -44107,7 +45248,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6608 + - uid: 6836 components: - rot: -1.5707963267948966 rad pos: 17.5,26.5 @@ -44115,7 +45256,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6609 + - uid: 6837 components: - rot: 3.141592653589793 rad pos: -18.5,-9.5 @@ -44123,7 +45264,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6610 + - uid: 6838 components: - rot: -1.5707963267948966 rad pos: 11.5,4.5 @@ -44131,7 +45272,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6611 + - uid: 6839 components: - rot: -1.5707963267948966 rad pos: 14.5,-27.5 @@ -44139,7 +45280,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6612 + - uid: 6840 components: - rot: 3.141592653589793 rad pos: -5.5,-3.5 @@ -44147,7 +45288,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6613 + - uid: 6841 components: - rot: -1.5707963267948966 rad pos: 4.5,1.5 @@ -44155,7 +45296,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6614 + - uid: 6842 components: - rot: 3.141592653589793 rad pos: 0.5,-7.5 @@ -44163,7 +45304,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6615 + - uid: 6843 components: - rot: 1.5707963267948966 rad pos: -6.5,0.5 @@ -44171,14 +45312,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6616 + - uid: 6844 components: - pos: -2.5,2.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6617 + - uid: 6845 components: - rot: -1.5707963267948966 rad pos: -7.5,8.5 @@ -44186,7 +45327,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6618 + - uid: 6846 components: - rot: 3.141592653589793 rad pos: -16.5,-8.5 @@ -44194,7 +45335,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6619 + - uid: 6847 components: - rot: 3.141592653589793 rad pos: -6.5,-8.5 @@ -44202,7 +45343,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6620 + - uid: 6848 components: - rot: -1.5707963267948966 rad pos: -15.5,13.5 @@ -44210,7 +45351,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6621 + - uid: 6849 components: - rot: 3.141592653589793 rad pos: -15.5,4.5 @@ -44218,7 +45359,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6622 + - uid: 6850 components: - rot: 1.5707963267948966 rad pos: -16.5,7.5 @@ -44226,7 +45367,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6623 + - uid: 6851 components: - rot: 1.5707963267948966 rad pos: -23.5,14.5 @@ -44234,14 +45375,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6624 + - uid: 6852 components: - pos: -21.5,16.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6625 + - uid: 6853 components: - rot: -1.5707963267948966 rad pos: -18.5,18.5 @@ -44249,21 +45390,21 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6626 + - uid: 6854 components: - pos: -15.5,-10.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6627 + - uid: 6855 components: - pos: 0.5,-11.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6628 + - uid: 6856 components: - rot: 1.5707963267948966 rad pos: -8.5,-22.5 @@ -44271,7 +45412,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6629 + - uid: 6857 components: - rot: 3.141592653589793 rad pos: 13.5,-17.5 @@ -44279,7 +45420,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6630 + - uid: 6858 components: - rot: -1.5707963267948966 rad pos: 18.5,-16.5 @@ -44287,7 +45428,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6631 + - uid: 6859 components: - rot: -1.5707963267948966 rad pos: 15.5,-22.5 @@ -44298,7 +45439,7 @@ entities: type: DeviceNetwork - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6632 + - uid: 6860 components: - rot: -1.5707963267948966 rad pos: -1.5,-22.5 @@ -44306,7 +45447,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6633 + - uid: 6861 components: - rot: -1.5707963267948966 rad pos: -1.5,-26.5 @@ -44314,7 +45455,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6634 + - uid: 6862 components: - rot: 1.5707963267948966 rad pos: -9.5,-28.5 @@ -44322,7 +45463,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6635 + - uid: 6863 components: - rot: 3.141592653589793 rad pos: -10.5,-20.5 @@ -44330,7 +45471,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6636 + - uid: 6864 components: - rot: -1.5707963267948966 rad pos: 4.5,8.5 @@ -44338,7 +45479,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6637 + - uid: 6865 components: - rot: -1.5707963267948966 rad pos: -11.5,-9.5 @@ -44346,7 +45487,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6638 + - uid: 6866 components: - rot: 3.141592653589793 rad pos: -9.5,12.5 @@ -44354,21 +45495,21 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6639 + - uid: 6867 components: - pos: -8.5,-17.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6640 + - uid: 6868 components: - pos: -9.5,46.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6641 + - uid: 6869 components: - rot: 3.141592653589793 rad pos: -20.5,-9.5 @@ -44376,7 +45517,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6642 + - uid: 6870 components: - rot: 3.141592653589793 rad pos: 18.5,-20.5 @@ -44384,7 +45525,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6643 + - uid: 6871 components: - rot: 3.141592653589793 rad pos: 23.5,-21.5 @@ -44392,7 +45533,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6644 + - uid: 6872 components: - rot: 1.5707963267948966 rad pos: -24.5,8.5 @@ -44400,7 +45541,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6645 + - uid: 6873 components: - rot: 1.5707963267948966 rad pos: -9.5,39.5 @@ -44408,14 +45549,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6646 + - uid: 6874 components: - pos: -2.5,33.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6647 + - uid: 6875 components: - rot: 1.5707963267948966 rad pos: -9.5,36.5 @@ -44423,7 +45564,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6648 + - uid: 6876 components: - rot: 3.141592653589793 rad pos: 5.5,12.5 @@ -44431,7 +45572,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6649 + - uid: 6877 components: - pos: -9.5,26.5 parent: 2 @@ -44441,21 +45582,21 @@ entities: type: DeviceNetwork - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6650 + - uid: 6878 components: - pos: -19.5,22.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6651 + - uid: 6879 components: - pos: -24.5,1.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6652 + - uid: 6880 components: - rot: -1.5707963267948966 rad pos: -18.5,14.5 @@ -44463,7 +45604,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6653 + - uid: 6881 components: - rot: -1.5707963267948966 rad pos: 3.5,20.5 @@ -44471,7 +45612,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6654 + - uid: 6882 components: - rot: 1.5707963267948966 rad pos: -8.5,18.5 @@ -44479,7 +45620,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6655 + - uid: 6883 components: - rot: -1.5707963267948966 rad pos: -11.5,6.5 @@ -44487,14 +45628,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6656 + - uid: 6884 components: - pos: 7.5,6.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6657 + - uid: 6885 components: - rot: 3.141592653589793 rad pos: 10.5,9.5 @@ -44502,7 +45643,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6658 + - uid: 6886 components: - rot: -1.5707963267948966 rad pos: 4.5,-9.5 @@ -44510,7 +45651,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6659 + - uid: 6887 components: - rot: 3.141592653589793 rad pos: 4.5,-25.5 @@ -44518,7 +45659,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6660 + - uid: 6888 components: - rot: -1.5707963267948966 rad pos: 5.5,-21.5 @@ -44526,7 +45667,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6661 + - uid: 6889 components: - rot: 1.5707963267948966 rad pos: 7.5,-15.5 @@ -44534,7 +45675,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6662 + - uid: 6890 components: - rot: 1.5707963267948966 rad pos: 14.5,17.5 @@ -44542,7 +45683,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6663 + - uid: 6891 components: - rot: -1.5707963267948966 rad pos: -21.5,4.5 @@ -44550,7 +45691,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6664 + - uid: 6892 components: - rot: 3.141592653589793 rad pos: -20.5,-3.5 @@ -44558,7 +45699,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6665 + - uid: 6893 components: - rot: 3.141592653589793 rad pos: 17.5,9.5 @@ -44566,7 +45707,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6666 + - uid: 6894 components: - rot: -1.5707963267948966 rad pos: 32.5,14.5 @@ -44574,14 +45715,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6667 + - uid: 6895 components: - pos: 24.5,18.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6668 + - uid: 6896 components: - rot: 1.5707963267948966 rad pos: 0.5,15.5 @@ -44589,7 +45730,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6669 + - uid: 6897 components: - rot: 3.141592653589793 rad pos: -24.5,-28.5 @@ -44597,7 +45738,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6670 + - uid: 6898 components: - rot: 1.5707963267948966 rad pos: -25.5,-17.5 @@ -44605,7 +45746,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6671 + - uid: 6899 components: - rot: 1.5707963267948966 rad pos: -28.5,-15.5 @@ -44613,7 +45754,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6672 + - uid: 6900 components: - rot: -1.5707963267948966 rad pos: -20.5,-19.5 @@ -44621,7 +45762,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6673 + - uid: 6901 components: - rot: 1.5707963267948966 rad pos: -29.5,-19.5 @@ -44629,7 +45770,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6674 + - uid: 6902 components: - rot: 1.5707963267948966 rad pos: -27.5,-26.5 @@ -44637,7 +45778,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6675 + - uid: 6903 components: - rot: -1.5707963267948966 rad pos: -20.5,-24.5 @@ -44645,7 +45786,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6676 + - uid: 6904 components: - rot: 1.5707963267948966 rad pos: -29.5,-24.5 @@ -44653,14 +45794,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6677 + - uid: 6905 components: - pos: 7.5,-5.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6678 + - uid: 6906 components: - rot: -1.5707963267948966 rad pos: 12.5,-6.5 @@ -44668,7 +45809,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6679 + - uid: 6907 components: - rot: -1.5707963267948966 rad pos: 11.5,-18.5 @@ -44676,14 +45817,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6680 + - uid: 6908 components: - pos: -14.5,33.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6681 + - uid: 6909 components: - rot: 1.5707963267948966 rad pos: 11.5,-25.5 @@ -44691,14 +45832,14 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6682 + - uid: 6910 components: - pos: -0.5,37.5 parent: 2 type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6683 + - uid: 6911 components: - rot: 3.141592653589793 rad pos: 5.5,23.5 @@ -44706,7 +45847,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6684 + - uid: 6912 components: - rot: 1.5707963267948966 rad pos: -28.5,6.5 @@ -44714,7 +45855,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6685 + - uid: 6913 components: - rot: 3.141592653589793 rad pos: 7.5,-1.5 @@ -44722,7 +45863,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6686 + - uid: 6914 components: - rot: 3.141592653589793 rad pos: 23.5,-1.5 @@ -44730,7 +45871,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6687 + - uid: 6915 components: - rot: -1.5707963267948966 rad pos: 24.5,1.5 @@ -44738,7 +45879,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6688 + - uid: 6916 components: - rot: 3.141592653589793 rad pos: 17.5,-5.5 @@ -44746,7 +45887,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6689 + - uid: 6917 components: - rot: 1.5707963267948966 rad pos: 11.5,29.5 @@ -44754,7 +45895,7 @@ entities: type: Transform - color: '#0335FCFF' type: AtmosPipeColor - - uid: 6690 + - uid: 6918 components: - rot: 1.5707963267948966 rad pos: 8.5,16.5 @@ -44764,7 +45905,7 @@ entities: type: AtmosPipeColor - proto: GasVentScrubber entities: - - uid: 6691 + - uid: 6919 components: - rot: 3.141592653589793 rad pos: 9.5,1.5 @@ -44772,7 +45913,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6692 + - uid: 6920 components: - rot: -1.5707963267948966 rad pos: 25.5,0.5 @@ -44780,7 +45921,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6693 + - uid: 6921 components: - rot: 3.141592653589793 rad pos: 24.5,-1.5 @@ -44788,7 +45929,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6694 + - uid: 6922 components: - rot: 3.141592653589793 rad pos: 13.5,-0.5 @@ -44796,7 +45937,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6695 + - uid: 6923 components: - rot: 3.141592653589793 rad pos: 16.5,-4.5 @@ -44804,7 +45945,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6696 + - uid: 6924 components: - rot: 1.5707963267948966 rad pos: 1.5,-11.5 @@ -44812,14 +45953,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6697 + - uid: 6925 components: - pos: -23.5,1.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6698 + - uid: 6926 components: - rot: 1.5707963267948966 rad pos: 18.5,26.5 @@ -44827,14 +45968,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6699 + - uid: 6927 components: - pos: 4.5,20.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6700 + - uid: 6928 components: - rot: -1.5707963267948966 rad pos: -0.5,-7.5 @@ -44842,7 +45983,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6701 + - uid: 6929 components: - rot: 1.5707963267948966 rad pos: 3.5,-10.5 @@ -44850,7 +45991,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6702 + - uid: 6930 components: - rot: 3.141592653589793 rad pos: 15.5,-27.5 @@ -44858,14 +45999,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6703 + - uid: 6931 components: - pos: -2.5,20.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6704 + - uid: 6932 components: - rot: -1.5707963267948966 rad pos: 12.5,5.5 @@ -44873,7 +46014,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6705 + - uid: 6933 components: - rot: 1.5707963267948966 rad pos: 3.5,0.5 @@ -44881,21 +46022,21 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6706 + - uid: 6934 components: - pos: -3.5,-3.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6707 + - uid: 6935 components: - pos: -22.5,16.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6708 + - uid: 6936 components: - rot: 1.5707963267948966 rad pos: -23.5,12.5 @@ -44903,7 +46044,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6709 + - uid: 6937 components: - rot: -1.5707963267948966 rad pos: -15.5,12.5 @@ -44911,14 +46052,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6710 + - uid: 6938 components: - pos: -17.5,18.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6711 + - uid: 6939 components: - rot: 1.5707963267948966 rad pos: -17.5,7.5 @@ -44926,7 +46067,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6712 + - uid: 6940 components: - rot: 3.141592653589793 rad pos: -16.5,4.5 @@ -44934,7 +46075,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6713 + - uid: 6941 components: - rot: -1.5707963267948966 rad pos: -7.5,9.5 @@ -44942,14 +46083,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6714 + - uid: 6942 components: - pos: -1.5,2.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6715 + - uid: 6943 components: - rot: 3.141592653589793 rad pos: -5.5,-8.5 @@ -44957,7 +46098,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6716 + - uid: 6944 components: - rot: 3.141592653589793 rad pos: -14.5,-8.5 @@ -44965,7 +46106,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6717 + - uid: 6945 components: - rot: 3.141592653589793 rad pos: -15.5,-13.5 @@ -44973,7 +46114,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6718 + - uid: 6946 components: - rot: 1.5707963267948966 rad pos: -8.5,-21.5 @@ -44981,14 +46122,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6719 + - uid: 6947 components: - pos: -10.5,-17.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6720 + - uid: 6948 components: - rot: 1.5707963267948966 rad pos: 0.5,-22.5 @@ -44996,7 +46137,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6721 + - uid: 6949 components: - rot: 1.5707963267948966 rad pos: 0.5,-26.5 @@ -45004,7 +46145,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6722 + - uid: 6950 components: - rot: -1.5707963267948966 rad pos: 14.5,-17.5 @@ -45012,7 +46153,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6723 + - uid: 6951 components: - rot: -1.5707963267948966 rad pos: 15.5,-21.5 @@ -45023,7 +46164,7 @@ entities: type: DeviceNetwork - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6724 + - uid: 6952 components: - rot: 1.5707963267948966 rad pos: -9.5,-29.5 @@ -45031,7 +46172,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6725 + - uid: 6953 components: - rot: 1.5707963267948966 rad pos: -12.5,-10.5 @@ -45039,21 +46180,21 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6726 + - uid: 6954 components: - pos: -7.5,13.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6727 + - uid: 6955 components: - pos: -5.5,-17.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6728 + - uid: 6956 components: - rot: 3.141592653589793 rad pos: -19.5,-9.5 @@ -45061,7 +46202,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6729 + - uid: 6957 components: - rot: 3.141592653589793 rad pos: -17.5,-9.5 @@ -45069,7 +46210,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6730 + - uid: 6958 components: - rot: 3.141592653589793 rad pos: 20.5,-20.5 @@ -45077,7 +46218,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6731 + - uid: 6959 components: - rot: -1.5707963267948966 rad pos: 22.5,-19.5 @@ -45085,7 +46226,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6732 + - uid: 6960 components: - rot: 1.5707963267948966 rad pos: 10.5,20.5 @@ -45093,7 +46234,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6733 + - uid: 6961 components: - rot: 3.141592653589793 rad pos: 6.5,8.5 @@ -45101,7 +46242,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6734 + - uid: 6962 components: - rot: 3.141592653589793 rad pos: 14.5,-14.5 @@ -45109,7 +46250,7 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 6735 + - uid: 6963 components: - rot: -1.5707963267948966 rad pos: 18.5,-14.5 @@ -45117,14 +46258,14 @@ entities: type: Transform - color: '#990000FF' type: AtmosPipeColor - - uid: 6736 + - uid: 6964 components: - pos: -1.5,33.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6737 + - uid: 6965 components: - pos: -10.5,26.5 parent: 2 @@ -45134,7 +46275,7 @@ entities: type: DeviceNetwork - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6738 + - uid: 6966 components: - rot: -1.5707963267948966 rad pos: -5.5,18.5 @@ -45142,21 +46283,21 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6739 + - uid: 6967 components: - pos: 4.5,13.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6740 + - uid: 6968 components: - pos: -18.5,22.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6741 + - uid: 6969 components: - rot: 3.141592653589793 rad pos: -23.5,-9.5 @@ -45164,7 +46305,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6742 + - uid: 6970 components: - rot: 1.5707963267948966 rad pos: -19.5,11.5 @@ -45172,7 +46313,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6743 + - uid: 6971 components: - rot: 1.5707963267948966 rad pos: -12.5,7.5 @@ -45180,14 +46321,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6744 + - uid: 6972 components: - pos: 6.5,6.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6745 + - uid: 6973 components: - rot: 1.5707963267948966 rad pos: 7.5,-14.5 @@ -45195,7 +46336,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6746 + - uid: 6974 components: - rot: -1.5707963267948966 rad pos: 12.5,10.5 @@ -45203,7 +46344,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6747 + - uid: 6975 components: - rot: 3.141592653589793 rad pos: 5.5,-25.5 @@ -45211,7 +46352,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6748 + - uid: 6976 components: - rot: 1.5707963267948966 rad pos: -23.5,7.5 @@ -45219,7 +46360,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6749 + - uid: 6977 components: - rot: 3.141592653589793 rad pos: -20.5,4.5 @@ -45227,14 +46368,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6750 + - uid: 6978 components: - pos: -18.5,-3.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6751 + - uid: 6979 components: - rot: -1.5707963267948966 rad pos: 0.5,16.5 @@ -45242,14 +46383,14 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6752 + - uid: 6980 components: - pos: -5.5,46.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6753 + - uid: 6981 components: - rot: 1.5707963267948966 rad pos: -28.5,-27.5 @@ -45257,7 +46398,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6754 + - uid: 6982 components: - rot: 3.141592653589793 rad pos: -23.5,-28.5 @@ -45265,7 +46406,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6755 + - uid: 6983 components: - rot: -1.5707963267948966 rad pos: -19.5,-23.5 @@ -45273,7 +46414,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6756 + - uid: 6984 components: - rot: -1.5707963267948966 rad pos: -19.5,-18.5 @@ -45281,7 +46422,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6757 + - uid: 6985 components: - rot: -1.5707963267948966 rad pos: -22.5,-17.5 @@ -45289,7 +46430,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6758 + - uid: 6986 components: - rot: 1.5707963267948966 rad pos: -28.5,-18.5 @@ -45297,7 +46438,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6759 + - uid: 6987 components: - rot: 1.5707963267948966 rad pos: -29.5,-16.5 @@ -45305,7 +46446,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6760 + - uid: 6988 components: - rot: 1.5707963267948966 rad pos: -29.5,-23.5 @@ -45313,7 +46454,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6761 + - uid: 6989 components: - rot: 1.5707963267948966 rad pos: -14.5,31.5 @@ -45321,7 +46462,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6762 + - uid: 6990 components: - rot: -1.5707963267948966 rad pos: 12.5,-4.5 @@ -45329,7 +46470,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6763 + - uid: 6991 components: - rot: 3.141592653589793 rad pos: 8.5,-5.5 @@ -45337,7 +46478,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6764 + - uid: 6992 components: - rot: -1.5707963267948966 rad pos: -5.5,36.5 @@ -45345,7 +46486,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6765 + - uid: 6993 components: - rot: 1.5707963267948966 rad pos: 10.5,-17.5 @@ -45353,7 +46494,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6766 + - uid: 6994 components: - rot: 1.5707963267948966 rad pos: 11.5,-24.5 @@ -45361,7 +46502,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6767 + - uid: 6995 components: - rot: -1.5707963267948966 rad pos: 6.5,-21.5 @@ -45369,7 +46510,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6768 + - uid: 6996 components: - rot: -1.5707963267948966 rad pos: 19.5,18.5 @@ -45377,7 +46518,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6769 + - uid: 6997 components: - rot: -1.5707963267948966 rad pos: -5.5,39.5 @@ -45385,21 +46526,21 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6770 + - uid: 6998 components: - pos: 0.5,37.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6771 + - uid: 6999 components: - pos: 5.5,26.5 parent: 2 type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6772 + - uid: 7000 components: - rot: 1.5707963267948966 rad pos: -28.5,11.5 @@ -45407,7 +46548,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6773 + - uid: 7001 components: - rot: 1.5707963267948966 rad pos: 10.5,30.5 @@ -45415,7 +46556,7 @@ entities: type: Transform - color: '#FF1212FF' type: AtmosPipeColor - - uid: 6774 + - uid: 7002 components: - rot: 1.5707963267948966 rad pos: 7.5,15.5 @@ -45425,7 +46566,7 @@ entities: type: AtmosPipeColor - proto: GasVolumePump entities: - - uid: 6775 + - uid: 7003 components: - rot: 3.141592653589793 rad pos: 5.5,35.5 @@ -45433,21 +46574,21 @@ entities: type: Transform - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 6776 + - uid: 7004 components: - pos: 3.5,35.5 parent: 2 type: Transform - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 6777 + - uid: 7005 components: - pos: 8.5,32.5 parent: 2 type: Transform - color: '#FF5900FF' type: AtmosPipeColor - - uid: 6778 + - uid: 7006 components: - rot: 3.141592653589793 rad pos: 6.5,32.5 @@ -45457,36 +46598,36 @@ entities: type: AtmosPipeColor - proto: GeneratorBasic entities: - - uid: 6779 + - uid: 7007 components: - pos: -1.5,43.5 parent: 2 type: Transform - proto: Girder entities: - - uid: 6780 + - uid: 7008 components: - pos: 22.5,7.5 parent: 2 type: Transform - - uid: 6781 + - uid: 7009 components: - pos: 18.5,6.5 parent: 2 type: Transform - - uid: 6782 + - uid: 7010 components: - pos: 31.5,25.5 parent: 2 type: Transform - - uid: 6783 + - uid: 7011 components: - pos: 16.5,4.5 parent: 2 type: Transform - proto: GlimmerProber entities: - - uid: 6784 + - uid: 7012 components: - pos: -9.5,38.5 parent: 2 @@ -45496,2725 +46637,2725 @@ entities: type: PointLight - proto: GoldOre1 entities: - - uid: 6785 + - uid: 7013 components: - pos: 24.913431,-13.565109 parent: 2 type: Transform - - uid: 6786 + - uid: 7014 components: - pos: 24.79885,-13.784012 parent: 2 type: Transform - proto: GravityGenerator entities: - - uid: 6787 + - uid: 7015 components: - pos: 10.5,25.5 parent: 2 type: Transform - proto: Grille entities: - - uid: 6788 + - uid: 7016 components: - pos: -28.5,17.5 parent: 2 type: Transform - - uid: 6789 + - uid: 7017 components: - pos: 8.5,-3.5 parent: 2 type: Transform - - uid: 6790 + - uid: 7018 components: - pos: 31.5,3.5 parent: 2 type: Transform - - uid: 6791 + - uid: 7019 components: - pos: 21.5,0.5 parent: 2 type: Transform - - uid: 6792 + - uid: 7020 components: - pos: 12.5,29.5 parent: 2 type: Transform - - uid: 6793 + - uid: 7021 components: - pos: 30.5,-2.5 parent: 2 type: Transform - - uid: 6794 + - uid: 7022 components: - pos: 30.5,3.5 parent: 2 type: Transform - - uid: 6795 + - uid: 7023 components: - pos: 8.5,36.5 parent: 2 type: Transform - - uid: 6796 + - uid: 7024 components: - pos: 9.5,36.5 parent: 2 type: Transform - - uid: 6797 + - uid: 7025 components: - pos: 26.5,-2.5 parent: 2 type: Transform - - uid: 6798 + - uid: 7026 components: - pos: 29.5,0.5 parent: 2 type: Transform - - uid: 6799 + - uid: 7027 components: - pos: 23.5,-0.5 parent: 2 type: Transform - - uid: 6800 + - uid: 7028 components: - pos: 25.5,-0.5 parent: 2 type: Transform - - uid: 6801 + - uid: 7029 components: - pos: 6.5,14.5 parent: 2 type: Transform - - uid: 6802 + - uid: 7030 components: - pos: 5.5,1.5 parent: 2 type: Transform - - uid: 6803 + - uid: 7031 components: - pos: 3.5,36.5 parent: 2 type: Transform - - uid: 6804 + - uid: 7032 components: - pos: 12.5,32.5 parent: 2 type: Transform - - uid: 6805 + - uid: 7033 components: - pos: 10.5,0.5 parent: 2 type: Transform - - uid: 6806 + - uid: 7034 components: - pos: -10.5,-7.5 parent: 2 type: Transform - - uid: 6807 + - uid: 7035 components: - pos: 0.5,8.5 parent: 2 type: Transform - - uid: 6808 + - uid: 7036 components: - pos: 0.5,9.5 parent: 2 type: Transform - - uid: 6809 + - uid: 7037 components: - pos: -19.5,15.5 parent: 2 type: Transform - - uid: 6810 + - uid: 7038 components: - pos: -20.5,14.5 parent: 2 type: Transform - - uid: 6811 + - uid: 7039 components: - pos: -14.5,7.5 parent: 2 type: Transform - - uid: 6812 + - uid: 7040 components: - pos: -17.5,10.5 parent: 2 type: Transform - - uid: 6813 + - uid: 7041 components: - pos: -17.5,12.5 parent: 2 type: Transform - - uid: 6814 + - uid: 7042 components: - pos: -13.5,13.5 parent: 2 type: Transform - - uid: 6815 + - uid: 7043 components: - pos: -13.5,-6.5 parent: 2 type: Transform - - uid: 6816 + - uid: 7044 components: - pos: -13.5,5.5 parent: 2 type: Transform - - uid: 6817 + - uid: 7045 components: - pos: -13.5,12.5 parent: 2 type: Transform - - uid: 6818 + - uid: 7046 components: - pos: -13.5,4.5 parent: 2 type: Transform - - uid: 6819 + - uid: 7047 components: - pos: -13.5,3.5 parent: 2 type: Transform - - uid: 6820 + - uid: 7048 components: - pos: 2.5,-5.5 parent: 2 type: Transform - - uid: 6821 + - uid: 7049 components: - pos: 2.5,-1.5 parent: 2 type: Transform - - uid: 6822 + - uid: 7050 components: - pos: -10.5,-5.5 parent: 2 type: Transform - - uid: 6823 + - uid: 7051 components: - pos: -10.5,-1.5 parent: 2 type: Transform - - uid: 6824 + - uid: 7052 components: - pos: -6.5,11.5 parent: 2 type: Transform - - uid: 6825 + - uid: 7053 components: - pos: -7.5,11.5 parent: 2 type: Transform - - uid: 6826 + - uid: 7054 components: - pos: -3.5,11.5 parent: 2 type: Transform - - uid: 6827 + - uid: 7055 components: - pos: -2.5,11.5 parent: 2 type: Transform - - uid: 6828 + - uid: 7056 components: - pos: -23.5,-10.5 parent: 2 type: Transform - - uid: 6829 + - uid: 7057 components: - pos: -24.5,-10.5 parent: 2 type: Transform - - uid: 6830 + - uid: 7058 components: - pos: -0.5,6.5 parent: 2 type: Transform - - uid: 6831 + - uid: 7059 components: - pos: -3.5,6.5 parent: 2 type: Transform - - uid: 6832 + - uid: 7060 components: - pos: -1.5,6.5 parent: 2 type: Transform - - uid: 6833 + - uid: 7061 components: - pos: -3.5,-0.5 parent: 2 type: Transform - - uid: 6834 + - uid: 7062 components: - pos: 17.5,14.5 parent: 2 type: Transform - - uid: 6835 + - uid: 7063 components: - pos: -20.5,-5.5 parent: 2 type: Transform - - uid: 6836 + - uid: 7064 components: - pos: -25.5,9.5 parent: 2 type: Transform - - uid: 6837 + - uid: 7065 components: - pos: -25.5,8.5 parent: 2 type: Transform - - uid: 6838 + - uid: 7066 components: - pos: 5.5,-5.5 parent: 2 type: Transform - - uid: 6839 + - uid: 7067 components: - pos: -16.5,-5.5 parent: 2 type: Transform - - uid: 6840 + - uid: 7068 components: - pos: 7.5,3.5 parent: 2 type: Transform - - uid: 6841 + - uid: 7069 components: - pos: 6.5,3.5 parent: 2 type: Transform - - uid: 6842 + - uid: 7070 components: - pos: 7.5,-30.5 parent: 2 type: Transform - - uid: 6843 + - uid: 7071 components: - pos: 6.5,-30.5 parent: 2 type: Transform - - uid: 6844 + - uid: 7072 components: - pos: 25.5,36.5 parent: 2 type: Transform - - uid: 6845 + - uid: 7073 components: - pos: 28.5,29.5 parent: 2 type: Transform - - uid: 6846 + - uid: 7074 components: - pos: -20.5,9.5 parent: 2 type: Transform - - uid: 6847 + - uid: 7075 components: - pos: 6.5,-3.5 parent: 2 type: Transform - - uid: 6848 + - uid: 7076 components: - pos: -14.5,10.5 parent: 2 type: Transform - - uid: 6849 + - uid: 7077 components: - pos: 25.5,34.5 parent: 2 type: Transform - - uid: 6850 + - uid: 7078 components: - pos: 25.5,-15.5 parent: 2 type: Transform - - uid: 6851 + - uid: 7079 components: - pos: -13.5,-13.5 parent: 2 type: Transform - - uid: 6852 + - uid: 7080 components: - pos: -13.5,-10.5 parent: 2 type: Transform - - uid: 6853 + - uid: 7081 components: - pos: 10.5,-30.5 parent: 2 type: Transform - - uid: 6854 + - uid: 7082 components: - pos: -9.5,-19.5 parent: 2 type: Transform - - uid: 6855 + - uid: 7083 components: - pos: -9.5,-17.5 parent: 2 type: Transform - - uid: 6856 + - uid: 7084 components: - pos: -4.5,-17.5 parent: 2 type: Transform - - uid: 6857 + - uid: 7085 components: - pos: -4.5,-19.5 parent: 2 type: Transform - - uid: 6858 + - uid: 7086 components: - pos: 6.5,-14.5 parent: 2 type: Transform - - uid: 6859 + - uid: 7087 components: - pos: 7.5,-17.5 parent: 2 type: Transform - - uid: 6860 + - uid: 7088 components: - pos: 7.5,-20.5 parent: 2 type: Transform - - uid: 6861 + - uid: 7089 components: - pos: 3.5,-17.5 parent: 2 type: Transform - - uid: 6862 + - uid: 7090 components: - pos: 3.5,-19.5 parent: 2 type: Transform - - uid: 6863 + - uid: 7091 components: - pos: 3.5,-21.5 parent: 2 type: Transform - - uid: 6864 + - uid: 7092 components: - pos: 3.5,-22.5 parent: 2 type: Transform - - uid: 6865 + - uid: 7093 components: - pos: -7.5,-20.5 parent: 2 type: Transform - - uid: 6866 + - uid: 7094 components: - pos: -9.5,-23.5 parent: 2 type: Transform - - uid: 6867 + - uid: 7095 components: - pos: -9.5,-24.5 parent: 2 type: Transform - - uid: 6868 + - uid: 7096 components: - pos: -3.5,-29.5 parent: 2 type: Transform - - uid: 6869 + - uid: 7097 components: - pos: -2.5,-30.5 parent: 2 type: Transform - - uid: 6870 + - uid: 7098 components: - pos: -1.5,-30.5 parent: 2 type: Transform - - uid: 6871 + - uid: 7099 components: - pos: -0.5,-30.5 parent: 2 type: Transform - - uid: 6872 + - uid: 7100 components: - pos: 0.5,-30.5 parent: 2 type: Transform - - uid: 6873 + - uid: 7101 components: - pos: 1.5,-30.5 parent: 2 type: Transform - - uid: 6874 + - uid: 7102 components: - pos: 2.5,-29.5 parent: 2 type: Transform - - uid: 6875 + - uid: 7103 components: - pos: 13.5,-22.5 parent: 2 type: Transform - - uid: 6876 + - uid: 7104 components: - pos: 13.5,-21.5 parent: 2 type: Transform - - uid: 6877 + - uid: 7105 components: - pos: 20.5,-21.5 parent: 2 type: Transform - - uid: 6878 + - uid: 7106 components: - pos: 19.5,-21.5 parent: 2 type: Transform - - uid: 6879 + - uid: 7107 components: - pos: 27.5,-20.5 parent: 2 type: Transform - - uid: 6880 + - uid: 7108 components: - pos: -12.5,-22.5 parent: 2 type: Transform - - uid: 6881 + - uid: 7109 components: - pos: -11.5,-22.5 parent: 2 type: Transform - - uid: 6882 + - uid: 7110 components: - pos: -10.5,-22.5 parent: 2 type: Transform - - uid: 6883 + - uid: 7111 components: - pos: -8.5,-6.5 parent: 2 type: Transform - - uid: 6884 + - uid: 7112 components: - pos: -31.5,56.5 parent: 2 type: Transform - - uid: 6885 + - uid: 7113 components: - pos: 8.5,26.5 parent: 2 type: Transform - - uid: 6886 + - uid: 7114 components: - pos: 8.5,23.5 parent: 2 type: Transform - - uid: 6887 + - uid: 7115 components: - pos: 8.5,25.5 parent: 2 type: Transform - - uid: 6888 + - uid: 7116 components: - pos: 8.5,24.5 parent: 2 type: Transform - - uid: 6889 + - uid: 7117 components: - pos: -31.5,58.5 parent: 2 type: Transform - - uid: 6890 + - uid: 7118 components: - pos: -16.5,67.5 parent: 2 type: Transform - - uid: 6891 + - uid: 7119 components: - pos: -10.5,67.5 parent: 2 type: Transform - - uid: 6892 + - uid: 7120 components: - pos: -31.5,59.5 parent: 2 type: Transform - - uid: 6893 + - uid: 7121 components: - pos: -31.5,60.5 parent: 2 type: Transform - - uid: 6894 + - uid: 7122 components: - pos: -31.5,57.5 parent: 2 type: Transform - - uid: 6895 + - uid: 7123 components: - pos: -31.5,61.5 parent: 2 type: Transform - - uid: 6896 + - uid: 7124 components: - pos: 27.5,36.5 parent: 2 type: Transform - - uid: 6897 + - uid: 7125 components: - pos: -30.5,-9.5 parent: 2 type: Transform - - uid: 6898 + - uid: 7126 components: - pos: 9.5,17.5 parent: 2 type: Transform - - uid: 6899 + - uid: 7127 components: - pos: 7.5,-3.5 parent: 2 type: Transform - - uid: 6900 + - uid: 7128 components: - pos: 4.5,7.5 parent: 2 type: Transform - - uid: 6901 + - uid: 7129 components: - pos: 15.5,-31.5 parent: 2 type: Transform - - uid: 6902 + - uid: 7130 components: - pos: 17.5,-31.5 parent: 2 type: Transform - - uid: 6903 + - uid: 7131 components: - pos: 28.5,-10.5 parent: 2 type: Transform - - uid: 6904 + - uid: 7132 components: - pos: 27.5,-12.5 parent: 2 type: Transform - - uid: 6905 + - uid: 7133 components: - pos: -32.5,-1.5 parent: 2 type: Transform - - uid: 6906 + - uid: 7134 components: - pos: -32.5,-9.5 parent: 2 type: Transform - - uid: 6907 + - uid: 7135 components: - pos: 27.5,-8.5 parent: 2 type: Transform - - uid: 6908 + - uid: 7136 components: - pos: 28.5,-9.5 parent: 2 type: Transform - - uid: 6909 + - uid: 7137 components: - pos: 19.5,-24.5 parent: 2 type: Transform - - uid: 6910 + - uid: 7138 components: - pos: 19.5,-30.5 parent: 2 type: Transform - - uid: 6911 + - uid: 7139 components: - pos: 18.5,-31.5 parent: 2 type: Transform - - uid: 6912 + - uid: 7140 components: - pos: -32.5,-5.5 parent: 2 type: Transform - - uid: 6913 + - uid: 7141 components: - pos: 26.5,-12.5 parent: 2 type: Transform - - uid: 6914 + - uid: 7142 components: - pos: 28.5,-11.5 parent: 2 type: Transform - - uid: 6915 + - uid: 7143 components: - pos: 24.5,27.5 parent: 2 type: Transform - - uid: 6916 + - uid: 7144 components: - pos: 16.5,-31.5 parent: 2 type: Transform - - uid: 6917 + - uid: 7145 components: - pos: 14.5,-30.5 parent: 2 type: Transform - - uid: 6918 + - uid: 7146 components: - pos: 4.5,-23.5 parent: 2 type: Transform - - uid: 6919 + - uid: 7147 components: - pos: 21.5,20.5 parent: 2 type: Transform - - uid: 6920 + - uid: 7148 components: - pos: 18.5,20.5 parent: 2 type: Transform - - uid: 6921 + - uid: 7149 components: - pos: 26.5,34.5 parent: 2 type: Transform - - uid: 6922 + - uid: 7150 components: - pos: -6.5,25.5 parent: 2 type: Transform - - uid: 6923 + - uid: 7151 components: - pos: 25.5,27.5 parent: 2 type: Transform - - uid: 6924 + - uid: 7152 components: - pos: 13.5,23.5 parent: 2 type: Transform - - uid: 6925 + - uid: 7153 components: - pos: 13.5,24.5 parent: 2 type: Transform - - uid: 6926 + - uid: 7154 components: - pos: 20.5,15.5 parent: 2 type: Transform - - uid: 6927 + - uid: 7155 components: - pos: 15.5,22.5 parent: 2 type: Transform - - uid: 6928 + - uid: 7156 components: - pos: 14.5,22.5 parent: 2 type: Transform - - uid: 6929 + - uid: 7157 components: - pos: 0.5,25.5 parent: 2 type: Transform - - uid: 6930 + - uid: 7158 components: - pos: 19.5,15.5 parent: 2 type: Transform - - uid: 6931 + - uid: 7159 components: - pos: -20.5,67.5 parent: 2 type: Transform - - uid: 6932 + - uid: 7160 components: - pos: -19.5,67.5 parent: 2 type: Transform - - uid: 6933 + - uid: 7161 components: - pos: -18.5,67.5 parent: 2 type: Transform - - uid: 6934 + - uid: 7162 components: - pos: -17.5,67.5 parent: 2 type: Transform - - uid: 6935 + - uid: 7163 components: - pos: -21.5,67.5 parent: 2 type: Transform - - uid: 6936 + - uid: 7164 components: - pos: -29.5,67.5 parent: 2 type: Transform - - uid: 6937 + - uid: 7165 components: - pos: -9.5,67.5 parent: 2 type: Transform - - uid: 6938 + - uid: 7166 components: - pos: 41.5,17.5 parent: 2 type: Transform - - uid: 6939 + - uid: 7167 components: - pos: 41.5,14.5 parent: 2 type: Transform - - uid: 6940 + - uid: 7168 components: - pos: 39.5,14.5 parent: 2 type: Transform - - uid: 6941 + - uid: 7169 components: - pos: -9.5,65.5 parent: 2 type: Transform - - uid: 6942 + - uid: 7170 components: - pos: 39.5,17.5 parent: 2 type: Transform - - uid: 6943 + - uid: 7171 components: - pos: 40.5,17.5 parent: 2 type: Transform - - uid: 6944 + - uid: 7172 components: - pos: -9.5,64.5 parent: 2 type: Transform - - uid: 6945 + - uid: 7173 components: - pos: 40.5,14.5 parent: 2 type: Transform - - uid: 6946 + - uid: 7174 components: - pos: -9.5,66.5 parent: 2 type: Transform - - uid: 6947 + - uid: 7175 components: - pos: -9.5,57.5 parent: 2 type: Transform - - uid: 6948 + - uid: 7176 components: - pos: -25.5,67.5 parent: 2 type: Transform - - uid: 6949 + - uid: 7177 components: - pos: -31.5,67.5 parent: 2 type: Transform - - uid: 6950 + - uid: 7178 components: - pos: 14.5,34.5 parent: 2 type: Transform - - uid: 6951 + - uid: 7179 components: - pos: 15.5,34.5 parent: 2 type: Transform - - uid: 6952 + - uid: 7180 components: - pos: 16.5,35.5 parent: 2 type: Transform - - uid: 6953 + - uid: 7181 components: - pos: 16.5,36.5 parent: 2 type: Transform - - uid: 6954 + - uid: 7182 components: - pos: 16.5,37.5 parent: 2 type: Transform - - uid: 6955 + - uid: 7183 components: - pos: 19.5,34.5 parent: 2 type: Transform - - uid: 6956 + - uid: 7184 components: - pos: 20.5,34.5 parent: 2 type: Transform - - uid: 6957 + - uid: 7185 components: - pos: 21.5,34.5 parent: 2 type: Transform - - uid: 6958 + - uid: 7186 components: - pos: 22.5,34.5 parent: 2 type: Transform - - uid: 6959 + - uid: 7187 components: - pos: 23.5,34.5 parent: 2 type: Transform - - uid: 6960 + - uid: 7188 components: - pos: 24.5,34.5 parent: 2 type: Transform - - uid: 6961 + - uid: 7189 components: - pos: 23.5,36.5 parent: 2 type: Transform - - uid: 6962 + - uid: 7190 components: - pos: 21.5,36.5 parent: 2 type: Transform - - uid: 6963 + - uid: 7191 components: - pos: -3.5,26.5 parent: 2 type: Transform - - uid: 6964 + - uid: 7192 components: - pos: -3.5,29.5 parent: 2 type: Transform - - uid: 6965 + - uid: 7193 components: - pos: -3.5,33.5 parent: 2 type: Transform - - uid: 6966 + - uid: 7194 components: - pos: 12.5,14.5 parent: 2 type: Transform - - uid: 6967 + - uid: 7195 components: - pos: 12.5,12.5 parent: 2 type: Transform - - uid: 6968 + - uid: 7196 components: - pos: -13.5,-32.5 parent: 2 type: Transform - - uid: 6969 + - uid: 7197 components: - pos: -14.5,-31.5 parent: 2 type: Transform - - uid: 6970 + - uid: 7198 components: - pos: -14.5,-30.5 parent: 2 type: Transform - - uid: 6971 + - uid: 7199 components: - pos: -14.5,-29.5 parent: 2 type: Transform - - uid: 6972 + - uid: 7200 components: - pos: -13.5,-28.5 parent: 2 type: Transform - - uid: 6973 + - uid: 7201 components: - pos: 30.5,22.5 parent: 2 type: Transform - - uid: 6974 + - uid: 7202 components: - pos: 16.5,-18.5 parent: 2 type: Transform - - uid: 6975 + - uid: 7203 components: - pos: 22.5,27.5 parent: 2 type: Transform - - uid: 6976 + - uid: 7204 components: - pos: -6.5,37.5 parent: 2 type: Transform - - uid: 6977 + - uid: 7205 components: - pos: -1.5,38.5 parent: 2 type: Transform - - uid: 6978 + - uid: 7206 components: - pos: 11.5,-30.5 parent: 2 type: Transform - - uid: 6979 + - uid: 7207 components: - pos: 6.5,-23.5 parent: 2 type: Transform - - uid: 6980 + - uid: 7208 components: - pos: 22.5,12.5 parent: 2 type: Transform - - uid: 6981 + - uid: 7209 components: - pos: -1.5,-25.5 parent: 2 type: Transform - - uid: 6982 + - uid: 7210 components: - pos: -0.5,-25.5 parent: 2 type: Transform - - uid: 6983 + - uid: 7211 components: - pos: 0.5,-25.5 parent: 2 type: Transform - - uid: 6984 + - uid: 7212 components: - pos: 9.5,-30.5 parent: 2 type: Transform - - uid: 6985 + - uid: 7213 components: - pos: 31.5,19.5 parent: 2 type: Transform - - uid: 6986 + - uid: 7214 components: - pos: 32.5,19.5 parent: 2 type: Transform - - uid: 6987 + - uid: 7215 components: - pos: 25.5,-16.5 parent: 2 type: Transform - - uid: 6988 + - uid: 7216 components: - pos: 18.5,-17.5 parent: 2 type: Transform - - uid: 6989 + - uid: 7217 components: - pos: 19.5,-17.5 parent: 2 type: Transform - - uid: 6990 + - uid: 7218 components: - pos: -5.5,15.5 parent: 2 type: Transform - - uid: 6991 + - uid: 7219 components: - pos: 25.5,-17.5 parent: 2 type: Transform - - uid: 6992 + - uid: 7220 components: - pos: -8.5,15.5 parent: 2 type: Transform - - uid: 6993 + - uid: 7221 components: - pos: 17.5,12.5 parent: 2 type: Transform - - uid: 6994 + - uid: 7222 components: - pos: 5.5,-30.5 parent: 2 type: Transform - - uid: 6995 + - uid: 7223 components: - pos: 7.5,-18.5 parent: 2 type: Transform - - uid: 6996 + - uid: 7224 components: - pos: 7.5,-21.5 parent: 2 type: Transform - - uid: 6997 + - uid: 7225 components: - pos: -25.5,30.5 parent: 2 type: Transform - - uid: 6998 + - uid: 7226 components: - pos: -36.5,31.5 parent: 2 type: Transform - - uid: 6999 + - uid: 7227 components: - pos: -36.5,33.5 parent: 2 type: Transform - - uid: 7000 + - uid: 7228 components: - pos: -34.5,25.5 parent: 2 type: Transform - - uid: 7001 + - uid: 7229 components: - pos: -36.5,30.5 parent: 2 type: Transform - - uid: 7002 + - uid: 7230 components: - pos: -34.5,26.5 parent: 2 type: Transform - - uid: 7003 + - uid: 7231 components: - pos: 18.5,21.5 parent: 2 type: Transform - - uid: 7004 + - uid: 7232 components: - pos: -23.5,29.5 parent: 2 type: Transform - - uid: 7005 + - uid: 7233 components: - pos: -28.5,-9.5 parent: 2 type: Transform - - uid: 7006 + - uid: 7234 components: - pos: -27.5,-9.5 parent: 2 type: Transform - - uid: 7007 + - uid: 7235 components: - pos: -0.5,38.5 parent: 2 type: Transform - - uid: 7008 + - uid: 7236 components: - pos: -22.5,6.5 parent: 2 type: Transform - - uid: 7009 + - uid: 7237 components: - pos: -18.5,4.5 parent: 2 type: Transform - - uid: 7010 + - uid: 7238 components: - pos: -21.5,-8.5 parent: 2 type: Transform - - uid: 7011 + - uid: 7239 components: - pos: -34.5,-9.5 parent: 2 type: Transform - - uid: 7012 + - uid: 7240 components: - pos: -30.5,-24.5 parent: 2 type: Transform - - uid: 7013 + - uid: 7241 components: - pos: -30.5,-23.5 parent: 2 type: Transform - - uid: 7014 + - uid: 7242 components: - pos: -30.5,-19.5 parent: 2 type: Transform - - uid: 7015 + - uid: 7243 components: - pos: -30.5,-18.5 parent: 2 type: Transform - - uid: 7016 + - uid: 7244 components: - pos: -30.5,-16.5 parent: 2 type: Transform - - uid: 7017 + - uid: 7245 components: - pos: -30.5,-15.5 parent: 2 type: Transform - - uid: 7018 + - uid: 7246 components: - pos: -21.5,-13.5 parent: 2 type: Transform - - uid: 7019 + - uid: 7247 components: - pos: -21.5,-12.5 parent: 2 type: Transform - - uid: 7020 + - uid: 7248 components: - pos: -21.5,-11.5 parent: 2 type: Transform - - uid: 7021 + - uid: 7249 components: - pos: -23.5,-14.5 parent: 2 type: Transform - - uid: 7022 + - uid: 7250 components: - pos: -24.5,-14.5 parent: 2 type: Transform - - uid: 7023 + - uid: 7251 components: - pos: -24.5,-25.5 parent: 2 type: Transform - - uid: 7024 + - uid: 7252 components: - pos: -15.5,-16.5 parent: 2 type: Transform - - uid: 7025 + - uid: 7253 components: - pos: -14.5,-16.5 parent: 2 type: Transform - - uid: 7026 + - uid: 7254 components: - pos: -2.5,14.5 parent: 2 type: Transform - - uid: 7027 + - uid: 7255 components: - pos: -0.5,14.5 parent: 2 type: Transform - - uid: 7028 + - uid: 7256 components: - pos: 1.5,14.5 parent: 2 type: Transform - - uid: 7029 + - uid: 7257 components: - pos: 3.5,14.5 parent: 2 type: Transform - - uid: 7030 + - uid: 7258 components: - pos: -30.5,67.5 parent: 2 type: Transform - - uid: 7031 + - uid: 7259 components: - pos: -31.5,66.5 parent: 2 type: Transform - - uid: 7032 + - uid: 7260 components: - pos: -24.5,67.5 parent: 2 type: Transform - - uid: 7033 + - uid: 7261 components: - pos: -27.5,67.5 parent: 2 type: Transform - - uid: 7034 + - uid: 7262 components: - pos: -26.5,67.5 parent: 2 type: Transform - - uid: 7035 + - uid: 7263 components: - pos: -31.5,65.5 parent: 2 type: Transform - - uid: 7036 + - uid: 7264 components: - pos: -15.5,67.5 parent: 2 type: Transform - - uid: 7037 + - uid: 7265 components: - pos: -12.5,67.5 parent: 2 type: Transform - - uid: 7038 + - uid: 7266 components: - pos: -11.5,67.5 parent: 2 type: Transform - - uid: 7039 + - uid: 7267 components: - pos: 33.5,29.5 parent: 2 type: Transform - - uid: 7040 + - uid: 7268 components: - pos: 33.5,28.5 parent: 2 type: Transform - - uid: 7041 + - uid: 7269 components: - pos: -8.5,37.5 parent: 2 type: Transform - - uid: 7042 + - uid: 7270 components: - pos: -9.5,41.5 parent: 2 type: Transform - - uid: 7043 + - uid: 7271 components: - pos: -24.5,29.5 parent: 2 type: Transform - - uid: 7044 + - uid: 7272 components: - pos: 24.5,-31.5 parent: 2 type: Transform - - uid: 7045 + - uid: 7273 components: - pos: 25.5,-31.5 parent: 2 type: Transform - - uid: 7046 + - uid: 7274 components: - pos: 26.5,-31.5 parent: 2 type: Transform - - uid: 7047 + - uid: 7275 components: - pos: -9.5,62.5 parent: 2 type: Transform - - uid: 7048 + - uid: 7276 components: - pos: 39.5,23.5 parent: 2 type: Transform - - uid: 7049 + - uid: 7277 components: - pos: 39.5,24.5 parent: 2 type: Transform - - uid: 7050 + - uid: 7278 components: - pos: 39.5,25.5 parent: 2 type: Transform - - uid: 7051 + - uid: 7279 components: - pos: 37.5,27.5 parent: 2 type: Transform - - uid: 7052 + - uid: 7280 components: - pos: 36.5,27.5 parent: 2 type: Transform - - uid: 7053 + - uid: 7281 components: - pos: 35.5,27.5 parent: 2 type: Transform - - uid: 7054 + - uid: 7282 components: - pos: 41.5,39.5 parent: 2 type: Transform - - uid: 7055 + - uid: 7283 components: - pos: 42.5,39.5 parent: 2 type: Transform - - uid: 7056 + - uid: 7284 components: - pos: 43.5,39.5 parent: 2 type: Transform - - uid: 7057 + - uid: 7285 components: - pos: 45.5,39.5 parent: 2 type: Transform - - uid: 7058 + - uid: 7286 components: - pos: 46.5,39.5 parent: 2 type: Transform - - uid: 7059 + - uid: 7287 components: - pos: 47.5,39.5 parent: 2 type: Transform - - uid: 7060 + - uid: 7288 components: - pos: 48.5,39.5 parent: 2 type: Transform - - uid: 7061 + - uid: 7289 components: - pos: 49.5,39.5 parent: 2 type: Transform - - uid: 7062 + - uid: 7290 components: - pos: 53.5,39.5 parent: 2 type: Transform - - uid: 7063 + - uid: 7291 components: - pos: 54.5,39.5 parent: 2 type: Transform - - uid: 7064 + - uid: 7292 components: - pos: 54.5,38.5 parent: 2 type: Transform - - uid: 7065 + - uid: 7293 components: - pos: 61.5,33.5 parent: 2 type: Transform - - uid: 7066 + - uid: 7294 components: - pos: 61.5,32.5 parent: 2 type: Transform - - uid: 7067 + - uid: 7295 components: - pos: 61.5,31.5 parent: 2 type: Transform - - uid: 7068 + - uid: 7296 components: - pos: 61.5,27.5 parent: 2 type: Transform - - uid: 7069 + - uid: 7297 components: - pos: 61.5,26.5 parent: 2 type: Transform - - uid: 7070 + - uid: 7298 components: - pos: 62.5,26.5 parent: 2 type: Transform - - uid: 7071 + - uid: 7299 components: - pos: 62.5,25.5 parent: 2 type: Transform - - uid: 7072 + - uid: 7300 components: - pos: 62.5,22.5 parent: 2 type: Transform - - uid: 7073 + - uid: 7301 components: - pos: 62.5,19.5 parent: 2 type: Transform - - uid: 7074 + - uid: 7302 components: - pos: 57.5,14.5 parent: 2 type: Transform - - uid: 7075 + - uid: 7303 components: - pos: 57.5,13.5 parent: 2 type: Transform - - uid: 7076 + - uid: 7304 components: - pos: 57.5,12.5 parent: 2 type: Transform - - uid: 7077 + - uid: 7305 components: - pos: 57.5,11.5 parent: 2 type: Transform - - uid: 7078 + - uid: 7306 components: - pos: -9.5,56.5 parent: 2 type: Transform - - uid: 7079 + - uid: 7307 components: - pos: -9.5,55.5 parent: 2 type: Transform - - uid: 7080 + - uid: 7308 components: - pos: -9.5,54.5 parent: 2 type: Transform - - uid: 7081 + - uid: 7309 components: - pos: -9.5,60.5 parent: 2 type: Transform - - uid: 7082 + - uid: 7310 components: - pos: -32.5,53.5 parent: 2 type: Transform - - uid: 7083 + - uid: 7311 components: - pos: -32.5,52.5 parent: 2 type: Transform - - uid: 7084 + - uid: 7312 components: - pos: -33.5,52.5 parent: 2 type: Transform - - uid: 7085 + - uid: 7313 components: - pos: -9.5,59.5 parent: 2 type: Transform - - uid: 7086 + - uid: 7314 components: - pos: -9.5,61.5 parent: 2 type: Transform - - uid: 7087 + - uid: 7315 components: - pos: -35.5,49.5 parent: 2 type: Transform - - uid: 7088 + - uid: 7316 components: - pos: -36.5,49.5 parent: 2 type: Transform - - uid: 7089 + - uid: 7317 components: - pos: -34.5,50.5 parent: 2 type: Transform - - uid: 7090 + - uid: 7318 components: - pos: -5.5,-43.5 parent: 2 type: Transform - - uid: 7091 + - uid: 7319 components: - pos: -4.5,-43.5 parent: 2 type: Transform - - uid: 7092 + - uid: 7320 components: - pos: -3.5,-43.5 parent: 2 type: Transform - - uid: 7093 + - uid: 7321 components: - pos: -2.5,-43.5 parent: 2 type: Transform - - uid: 7094 + - uid: 7322 components: - pos: 5.5,-41.5 parent: 2 type: Transform - - uid: 7095 + - uid: 7323 components: - pos: 6.5,-41.5 parent: 2 type: Transform - - uid: 7096 + - uid: 7324 components: - pos: 7.5,-41.5 parent: 2 type: Transform - - uid: 7097 + - uid: 7325 components: - pos: 8.5,-41.5 parent: 2 type: Transform - - uid: 7098 + - uid: 7326 components: - pos: 16.5,-42.5 parent: 2 type: Transform - - uid: 7099 + - uid: 7327 components: - pos: 17.5,-42.5 parent: 2 type: Transform - - uid: 7100 + - uid: 7328 components: - pos: 18.5,-42.5 parent: 2 type: Transform - - uid: 7101 + - uid: 7329 components: - pos: 19.5,-42.5 parent: 2 type: Transform - - uid: 7102 + - uid: 7330 components: - pos: 15.5,-42.5 parent: 2 type: Transform - - uid: 7103 + - uid: 7331 components: - pos: -11.5,32.5 parent: 2 type: Transform - - uid: 7104 + - uid: 7332 components: - pos: -18.5,33.5 parent: 2 type: Transform - - uid: 7105 + - uid: 7333 components: - pos: -18.5,34.5 parent: 2 type: Transform - - uid: 7106 + - uid: 7334 components: - pos: -18.5,35.5 parent: 2 type: Transform - - uid: 7107 + - uid: 7335 components: - pos: -14.5,34.5 parent: 2 type: Transform - - uid: 7108 + - uid: 7336 components: - pos: -13.5,34.5 parent: 2 type: Transform - - uid: 7109 + - uid: 7337 components: - pos: -12.5,34.5 parent: 2 type: Transform - - uid: 7110 + - uid: 7338 components: - pos: -9.5,25.5 parent: 2 type: Transform - - uid: 7111 + - uid: 7339 components: - pos: -10.5,25.5 parent: 2 type: Transform - - uid: 7112 + - uid: 7340 components: - pos: 28.5,36.5 parent: 2 type: Transform - - uid: 7113 + - uid: 7341 components: - pos: 40.5,39.5 parent: 2 type: Transform - - uid: 7114 + - uid: 7342 components: - pos: 49.5,12.5 parent: 2 type: Transform - - uid: 7115 + - uid: 7343 components: - pos: 50.5,12.5 parent: 2 type: Transform - - uid: 7116 + - uid: 7344 components: - pos: 51.5,12.5 parent: 2 type: Transform - - uid: 7117 + - uid: 7345 components: - pos: 52.5,12.5 parent: 2 type: Transform - - uid: 7118 + - uid: 7346 components: - pos: 60.5,12.5 parent: 2 type: Transform - - uid: 7119 + - uid: 7347 components: - pos: 61.5,12.5 parent: 2 type: Transform - - uid: 7120 + - uid: 7348 components: - pos: 62.5,12.5 parent: 2 type: Transform - - uid: 7121 + - uid: 7349 components: - pos: 62.5,13.5 parent: 2 type: Transform - - uid: 7122 + - uid: 7350 components: - pos: 62.5,14.5 parent: 2 type: Transform - - uid: 7123 + - uid: 7351 components: - pos: 62.5,15.5 parent: 2 type: Transform - - uid: 7124 + - uid: 7352 components: - pos: -15.5,-37.5 parent: 2 type: Transform - - uid: 7125 + - uid: 7353 components: - pos: -14.5,-37.5 parent: 2 type: Transform - - uid: 7126 + - uid: 7354 components: - pos: -13.5,-37.5 parent: 2 type: Transform - - uid: 7127 + - uid: 7355 components: - pos: -12.5,-37.5 parent: 2 type: Transform - - uid: 7128 + - uid: 7356 components: - pos: -7.5,-38.5 parent: 2 type: Transform - - uid: 7129 + - uid: 7357 components: - pos: -6.5,-38.5 parent: 2 type: Transform - - uid: 7130 + - uid: 7358 components: - pos: -5.5,-38.5 parent: 2 type: Transform - - uid: 7131 + - uid: 7359 components: - pos: -4.5,-38.5 parent: 2 type: Transform - - uid: 7132 + - uid: 7360 components: - pos: -3.5,-38.5 parent: 2 type: Transform - - uid: 7133 + - uid: 7361 components: - pos: 0.5,-38.5 parent: 2 type: Transform - - uid: 7134 + - uid: 7362 components: - pos: 1.5,-38.5 parent: 2 type: Transform - - uid: 7135 + - uid: 7363 components: - pos: 2.5,-38.5 parent: 2 type: Transform - - uid: 7136 + - uid: 7364 components: - pos: 3.5,-38.5 parent: 2 type: Transform - - uid: 7137 + - uid: 7365 components: - pos: 12.5,-36.5 parent: 2 type: Transform - - uid: 7138 + - uid: 7366 components: - pos: 13.5,-36.5 parent: 2 type: Transform - - uid: 7139 + - uid: 7367 components: - pos: 14.5,-36.5 parent: 2 type: Transform - - uid: 7140 + - uid: 7368 components: - pos: 15.5,-36.5 parent: 2 type: Transform - - uid: 7141 + - uid: 7369 components: - pos: 11.5,-36.5 parent: 2 type: Transform - - uid: 7142 + - uid: 7370 components: - pos: 10.5,-36.5 parent: 2 type: Transform - - uid: 7143 + - uid: 7371 components: - pos: 19.5,-36.5 parent: 2 type: Transform - - uid: 7144 + - uid: 7372 components: - pos: 20.5,-36.5 parent: 2 type: Transform - - uid: 7145 + - uid: 7373 components: - pos: 21.5,-36.5 parent: 2 type: Transform - - uid: 7146 + - uid: 7374 components: - pos: 22.5,-36.5 parent: 2 type: Transform - - uid: 7147 + - uid: 7375 components: - pos: 23.5,-36.5 parent: 2 type: Transform - - uid: 7148 + - uid: 7376 components: - pos: 24.5,-36.5 parent: 2 type: Transform - - uid: 7149 + - uid: 7377 components: - pos: -32.5,-15.5 parent: 2 type: Transform - - uid: 7150 + - uid: 7378 components: - pos: -32.5,-16.5 parent: 2 type: Transform - - uid: 7151 + - uid: 7379 components: - pos: -32.5,-17.5 parent: 2 type: Transform - - uid: 7152 + - uid: 7380 components: - pos: -32.5,-18.5 parent: 2 type: Transform - - uid: 7153 + - uid: 7381 components: - pos: -32.5,-19.5 parent: 2 type: Transform - - uid: 7154 + - uid: 7382 components: - pos: -32.5,-20.5 parent: 2 type: Transform - - uid: 7155 + - uid: 7383 components: - pos: 27.5,34.5 parent: 2 type: Transform - - uid: 7156 + - uid: 7384 components: - pos: 28.5,34.5 parent: 2 type: Transform - - uid: 7157 + - uid: 7385 components: - pos: 31.5,34.5 parent: 2 type: Transform - - uid: 7158 + - uid: 7386 components: - pos: 32.5,34.5 parent: 2 type: Transform - - uid: 7159 + - uid: 7387 components: - pos: 33.5,34.5 parent: 2 type: Transform - - uid: 7160 + - uid: 7388 components: - pos: 33.5,33.5 parent: 2 type: Transform - - uid: 7161 + - uid: 7389 components: - pos: 33.5,32.5 parent: 2 type: Transform - - uid: 7162 + - uid: 7390 components: - pos: 33.5,31.5 parent: 2 type: Transform - - uid: 7163 + - uid: 7391 components: - pos: 31.5,30.5 parent: 2 type: Transform - - uid: 7164 + - uid: 7392 components: - pos: 32.5,30.5 parent: 2 type: Transform - - uid: 7165 + - uid: 7393 components: - pos: 30.5,33.5 parent: 2 type: Transform - - uid: 7166 + - uid: 7394 components: - pos: 30.5,32.5 parent: 2 type: Transform - - uid: 7167 + - uid: 7395 components: - pos: 30.5,31.5 parent: 2 type: Transform - - uid: 7168 + - uid: 7396 components: - pos: -31.5,55.5 parent: 2 type: Transform - - uid: 7169 + - uid: 7397 components: - pos: -36.5,34.5 parent: 2 type: Transform - - uid: 7170 + - uid: 7398 components: - pos: -34.5,36.5 parent: 2 type: Transform - - uid: 7171 + - uid: 7399 components: - pos: -33.5,36.5 parent: 2 type: Transform - - uid: 7172 + - uid: 7400 components: - pos: -31.5,36.5 parent: 2 type: Transform - - uid: 7173 + - uid: 7401 components: - pos: -30.5,36.5 parent: 2 type: Transform - - uid: 7174 + - uid: 7402 components: - pos: -29.5,21.5 parent: 2 type: Transform - - uid: 7175 + - uid: 7403 components: - pos: -30.5,21.5 parent: 2 type: Transform - - uid: 7176 + - uid: 7404 components: - pos: -5.5,41.5 parent: 2 type: Transform - - uid: 7177 + - uid: 7405 components: - pos: 0.5,34.5 parent: 2 type: Transform - - uid: 7178 + - uid: 7406 components: - pos: -34.5,0.5 parent: 2 type: Transform - - uid: 7179 + - uid: 7407 components: - pos: -34.5,-5.5 parent: 2 type: Transform - - uid: 7180 + - uid: 7408 components: - pos: -32.5,0.5 parent: 2 type: Transform - - uid: 7181 + - uid: 7409 components: - pos: -34.5,-7.5 parent: 2 type: Transform - - uid: 7182 + - uid: 7410 components: - pos: -32.5,-7.5 parent: 2 type: Transform - - uid: 7183 + - uid: 7411 components: - pos: -34.5,2.5 parent: 2 type: Transform - - uid: 7184 + - uid: 7412 components: - pos: -34.5,-1.5 parent: 2 type: Transform - - uid: 7185 + - uid: 7413 components: - pos: 29.5,6.5 parent: 2 type: Transform - - uid: 7186 + - uid: 7414 components: - pos: 29.5,7.5 parent: 2 type: Transform - - uid: 7187 + - uid: 7415 components: - pos: 26.5,-15.5 parent: 2 type: Transform - - uid: 7188 + - uid: 7416 components: - pos: 26.5,-16.5 parent: 2 type: Transform - - uid: 7189 + - uid: 7417 components: - pos: 26.5,-17.5 parent: 2 type: Transform - - uid: 7190 + - uid: 7418 components: - pos: -32.5,2.5 parent: 2 type: Transform - - uid: 7191 + - uid: 7419 components: - pos: -36.5,2.5 parent: 2 type: Transform - - uid: 7192 + - uid: 7420 components: - pos: -38.5,2.5 parent: 2 type: Transform - - uid: 7193 + - uid: 7421 components: - pos: -40.5,2.5 parent: 2 type: Transform - - uid: 7194 + - uid: 7422 components: - pos: -42.5,2.5 parent: 2 type: Transform - - uid: 7195 + - uid: 7423 components: - pos: -42.5,0.5 parent: 2 type: Transform - - uid: 7196 + - uid: 7424 components: - pos: -40.5,0.5 parent: 2 type: Transform - - uid: 7197 + - uid: 7425 components: - pos: -38.5,0.5 parent: 2 type: Transform - - uid: 7198 + - uid: 7426 components: - pos: -36.5,0.5 parent: 2 type: Transform - - uid: 7199 + - uid: 7427 components: - pos: -36.5,-1.5 parent: 2 type: Transform - - uid: 7200 + - uid: 7428 components: - pos: -38.5,-1.5 parent: 2 type: Transform - - uid: 7201 + - uid: 7429 components: - pos: -40.5,-1.5 parent: 2 type: Transform - - uid: 7202 + - uid: 7430 components: - pos: -42.5,-1.5 parent: 2 type: Transform - - uid: 7203 + - uid: 7431 components: - pos: -42.5,-5.5 parent: 2 type: Transform - - uid: 7204 + - uid: 7432 components: - pos: -40.5,-5.5 parent: 2 type: Transform - - uid: 7205 + - uid: 7433 components: - pos: -40.5,-7.5 parent: 2 type: Transform - - uid: 7206 + - uid: 7434 components: - pos: -42.5,-7.5 parent: 2 type: Transform - - uid: 7207 + - uid: 7435 components: - pos: -42.5,-9.5 parent: 2 type: Transform - - uid: 7208 + - uid: 7436 components: - pos: -40.5,-9.5 parent: 2 type: Transform - - uid: 7209 + - uid: 7437 components: - pos: -38.5,-9.5 parent: 2 type: Transform - - uid: 7210 + - uid: 7438 components: - pos: -38.5,-7.5 parent: 2 type: Transform - - uid: 7211 + - uid: 7439 components: - pos: -38.5,-5.5 parent: 2 type: Transform - - uid: 7212 + - uid: 7440 components: - pos: -36.5,-5.5 parent: 2 type: Transform - - uid: 7213 + - uid: 7441 components: - pos: -36.5,-7.5 parent: 2 type: Transform - - uid: 7214 + - uid: 7442 components: - pos: -36.5,-9.5 parent: 2 type: Transform - - uid: 7215 + - uid: 7443 components: - pos: -2.5,-6.5 parent: 2 type: Transform - - uid: 7216 + - uid: 7444 components: - pos: -1.5,-6.5 parent: 2 type: Transform - - uid: 7217 + - uid: 7445 components: - pos: -0.5,-6.5 parent: 2 type: Transform - - uid: 7218 + - uid: 7446 components: - pos: 1.5,-6.5 parent: 2 type: Transform - - uid: 7219 + - uid: 7447 components: - pos: 2.5,-7.5 parent: 2 type: Transform - - uid: 7220 + - uid: 7448 components: - pos: 2.5,-8.5 parent: 2 type: Transform - - uid: 7221 + - uid: 7449 components: - pos: 5.5,-1.5 parent: 2 type: Transform - - uid: 7222 + - uid: 7450 components: - pos: 7.5,36.5 parent: 2 type: Transform - - uid: 7223 + - uid: 7451 components: - pos: 29.5,-6.5 parent: 2 type: Transform - - uid: 7224 + - uid: 7452 components: - pos: 7.5,14.5 parent: 2 type: Transform - - uid: 7225 + - uid: 7453 components: - pos: 18.5,-3.5 parent: 2 type: Transform - - uid: 7226 + - uid: 7454 components: - pos: 5.5,36.5 parent: 2 type: Transform - - uid: 7227 + - uid: 7455 components: - pos: 32.5,0.5 parent: 2 type: Transform - - uid: 7228 + - uid: 7456 components: - pos: 17.5,-3.5 parent: 2 type: Transform - - uid: 7229 + - uid: 7457 components: - pos: 4.5,36.5 parent: 2 type: Transform - - uid: 7230 + - uid: 7458 components: - pos: 31.5,-2.5 parent: 2 type: Transform - - uid: 7231 + - uid: 7459 components: - pos: 10.5,36.5 parent: 2 type: Transform - - uid: 7232 + - uid: 7460 components: - pos: -28.5,18.5 parent: 2 type: Transform - - uid: 7233 + - uid: 7461 components: - pos: 3.5,40.5 parent: 2 type: Transform - - uid: 7234 + - uid: 7462 components: - pos: 4.5,40.5 parent: 2 type: Transform - - uid: 7235 + - uid: 7463 components: - pos: 5.5,40.5 parent: 2 type: Transform - - uid: 7236 + - uid: 7464 components: - pos: -29.5,4.5 parent: 2 type: Transform - - uid: 7237 + - uid: 7465 components: - pos: -29.5,5.5 parent: 2 type: Transform - - uid: 7238 + - uid: 7466 components: - pos: -30.5,6.5 parent: 2 type: Transform - - uid: 7239 + - uid: 7467 components: - pos: -31.5,6.5 parent: 2 type: Transform - - uid: 7240 + - uid: 7468 components: - pos: -31.5,6.5 parent: 2 type: Transform - - uid: 7241 + - uid: 7469 components: - pos: -31.5,8.5 parent: 2 type: Transform - - uid: 7242 + - uid: 7470 components: - pos: -30.5,8.5 parent: 2 type: Transform - - uid: 7243 + - uid: 7471 components: - pos: -29.5,10.5 parent: 2 type: Transform - - uid: 7244 + - uid: 7472 components: - pos: -29.5,11.5 parent: 2 type: Transform - - uid: 7245 + - uid: 7473 components: - pos: -30.5,13.5 parent: 2 type: Transform - - uid: 7246 + - uid: 7474 components: - pos: -31.5,13.5 parent: 2 type: Transform - - uid: 7247 + - uid: 7475 components: - pos: -31.5,15.5 parent: 2 type: Transform - - uid: 7248 + - uid: 7476 components: - pos: -30.5,15.5 parent: 2 type: Transform - proto: GrilleBroken entities: - - uid: 7249 + - uid: 7477 components: - rot: 3.141592653589793 rad pos: 22.5,8.5 parent: 2 type: Transform - - uid: 7250 + - uid: 7478 components: - rot: 3.141592653589793 rad pos: 30.5,23.5 parent: 2 type: Transform - - uid: 7251 + - uid: 7479 components: - pos: -28.5,30.5 parent: 2 type: Transform - - uid: 7252 + - uid: 7480 components: - rot: 3.141592653589793 rad pos: -28.5,30.5 parent: 2 type: Transform - - uid: 7253 + - uid: 7481 components: - rot: 1.5707963267948966 rad pos: -28.5,67.5 parent: 2 type: Transform - - uid: 7254 + - uid: 7482 components: - rot: -1.5707963267948966 rad pos: 44.5,39.5 parent: 2 type: Transform - - uid: 7255 + - uid: 7483 components: - rot: -1.5707963267948966 rad pos: 55.5,38.5 parent: 2 type: Transform - - uid: 7256 + - uid: 7484 components: - rot: 1.5707963267948966 rad pos: 52.5,39.5 parent: 2 type: Transform - - uid: 7257 + - uid: 7485 components: - rot: 1.5707963267948966 rad pos: 60.5,33.5 parent: 2 type: Transform - - uid: 7258 + - uid: 7486 components: - rot: 3.141592653589793 rad pos: 61.5,30.5 parent: 2 type: Transform - - uid: 7259 + - uid: 7487 components: - rot: -1.5707963267948966 rad pos: 50.5,39.5 parent: 2 type: Transform - - uid: 7260 + - uid: 7488 components: - rot: 1.5707963267948966 rad pos: 39.5,39.5 parent: 2 type: Transform - - uid: 7261 + - uid: 7489 components: - rot: 1.5707963267948966 rad pos: 44.5,39.5 parent: 2 type: Transform - - uid: 7262 + - uid: 7490 components: - pos: 61.5,28.5 parent: 2 type: Transform - - uid: 7263 + - uid: 7491 components: - rot: 3.141592653589793 rad pos: 62.5,24.5 parent: 2 type: Transform - - uid: 7264 + - uid: 7492 components: - pos: 62.5,20.5 parent: 2 type: Transform - - uid: 7265 + - uid: 7493 components: - rot: 3.141592653589793 rad pos: 62.5,21.5 parent: 2 type: Transform - - uid: 7266 + - uid: 7494 components: - rot: 3.141592653589793 rad pos: 62.5,20.5 parent: 2 type: Transform - - uid: 7267 + - uid: 7495 components: - pos: 62.5,20.5 parent: 2 type: Transform - - uid: 7268 + - uid: 7496 components: - rot: 3.141592653589793 rad pos: -31.5,54.5 parent: 2 type: Transform - - uid: 7269 + - uid: 7497 components: - rot: 3.141592653589793 rad pos: -9.5,63.5 parent: 2 type: Transform - - uid: 7270 + - uid: 7498 components: - rot: -1.5707963267948966 rad pos: -31.5,53.5 parent: 2 type: Transform - - uid: 7271 + - uid: 7499 components: - rot: -1.5707963267948966 rad pos: -14.5,67.5 parent: 2 type: Transform - - uid: 7272 + - uid: 7500 components: - rot: 3.141592653589793 rad pos: -31.5,64.5 parent: 2 type: Transform - - uid: 7273 + - uid: 7501 components: - rot: -1.5707963267948966 rad pos: -23.5,67.5 parent: 2 type: Transform - - uid: 7274 + - uid: 7502 components: - rot: 3.141592653589793 rad pos: -9.5,53.5 parent: 2 type: Transform - - uid: 7275 + - uid: 7503 components: - rot: 3.141592653589793 rad pos: -33.5,51.5 parent: 2 type: Transform - - uid: 7276 + - uid: 7504 components: - rot: 1.5707963267948966 rad pos: -35.5,50.5 parent: 2 type: Transform - - uid: 7277 + - uid: 7505 components: - pos: -35.5,50.5 parent: 2 type: Transform - - uid: 7278 + - uid: 7506 components: - rot: 1.5707963267948966 rad pos: 14.5,-42.5 parent: 2 type: Transform - - uid: 7279 + - uid: 7507 components: - rot: -1.5707963267948966 rad pos: 20.5,-42.5 parent: 2 type: Transform - - uid: 7280 + - uid: 7508 components: - rot: 3.141592653589793 rad pos: -32.5,20.5 parent: 2 type: Transform - - uid: 7281 + - uid: 7509 components: - rot: 1.5707963267948966 rad pos: 48.5,12.5 parent: 2 type: Transform - - uid: 7282 + - uid: 7510 components: - rot: 1.5707963267948966 rad pos: 56.5,12.5 parent: 2 type: Transform - - uid: 7283 + - uid: 7511 components: - rot: 1.5707963267948966 rad pos: 59.5,12.5 parent: 2 type: Transform - - uid: 7284 + - uid: 7512 components: - pos: 62.5,16.5 parent: 2 type: Transform - - uid: 7285 + - uid: 7513 components: - pos: 57.5,15.5 parent: 2 type: Transform - - uid: 7286 + - uid: 7514 components: - rot: -1.5707963267948966 rad pos: 53.5,12.5 parent: 2 type: Transform - - uid: 7287 + - uid: 7515 components: - rot: -1.5707963267948966 rad pos: 58.5,12.5 parent: 2 type: Transform - - uid: 7288 + - uid: 7516 components: - rot: 3.141592653589793 rad pos: 62.5,18.5 parent: 2 type: Transform - - uid: 7289 + - uid: 7517 components: - rot: -1.5707963267948966 rad pos: 25.5,-36.5 parent: 2 type: Transform - - uid: 7290 + - uid: 7518 components: - rot: -1.5707963267948966 rad pos: 16.5,-36.5 parent: 2 type: Transform - - uid: 7291 + - uid: 7519 components: - rot: 3.141592653589793 rad pos: 10.5,-37.5 parent: 2 type: Transform - - uid: 7292 + - uid: 7520 components: - rot: 1.5707963267948966 rad pos: 18.5,-36.5 parent: 2 type: Transform - - uid: 7293 + - uid: 7521 components: - rot: -1.5707963267948966 rad pos: 4.5,-38.5 parent: 2 type: Transform - - uid: 7294 + - uid: 7522 components: - rot: -1.5707963267948966 rad pos: -2.5,-38.5 parent: 2 type: Transform - - uid: 7295 + - uid: 7523 components: - rot: -1.5707963267948966 rad pos: -11.5,-37.5 parent: 2 type: Transform - - uid: 7296 + - uid: 7524 components: - rot: 1.5707963267948966 rad pos: -16.5,-37.5 parent: 2 type: Transform - - uid: 7297 + - uid: 7525 components: - rot: 1.5707963267948966 rad pos: -8.5,-38.5 parent: 2 type: Transform - - uid: 7298 + - uid: 7526 components: - rot: 1.5707963267948966 rad pos: -0.5,-38.5 parent: 2 type: Transform - - uid: 7299 + - uid: 7527 components: - rot: 1.5707963267948966 rad pos: -6.5,-43.5 parent: 2 type: Transform - - uid: 7300 + - uid: 7528 components: - rot: -1.5707963267948966 rad pos: -1.5,-43.5 parent: 2 type: Transform - - uid: 7301 + - uid: 7529 components: - rot: 1.5707963267948966 rad pos: 4.5,-41.5 parent: 2 type: Transform - - uid: 7302 + - uid: 7530 components: - rot: -1.5707963267948966 rad pos: 9.5,-41.5 parent: 2 type: Transform - - uid: 7303 + - uid: 7531 components: - rot: 3.141592653589793 rad pos: -32.5,-21.5 parent: 2 type: Transform - - uid: 7304 + - uid: 7532 components: - pos: -32.5,-14.5 parent: 2 type: Transform - - uid: 7305 + - uid: 7533 components: - pos: -31.5,62.5 parent: 2 type: Transform - - uid: 7306 + - uid: 7534 components: - rot: 3.141592653589793 rad pos: -9.5,58.5 parent: 2 type: Transform - - uid: 7307 + - uid: 7535 components: - rot: 1.5707963267948966 rad pos: -13.5,67.5 parent: 2 type: Transform - - uid: 7308 + - uid: 7536 components: - rot: 1.5707963267948966 rad pos: -22.5,67.5 parent: 2 type: Transform - - uid: 7309 + - uid: 7537 components: - rot: -1.5707963267948966 rad pos: 24.5,9.5 parent: 2 type: Transform - - uid: 7310 + - uid: 7538 components: - rot: 1.5707963267948966 rad pos: 25.5,9.5 parent: 2 type: Transform - - uid: 7311 + - uid: 7539 components: - pos: 17.5,4.5 parent: 2 type: Transform - proto: HandLabeler entities: - - uid: 7312 + - uid: 7540 components: - pos: -6.8970933,10.710638 parent: 2 type: Transform - - uid: 7313 + - uid: 7541 components: - pos: -6.7304263,10.512585 parent: 2 type: Transform - - uid: 7314 + - uid: 7542 components: - pos: -15.500559,14.668425 parent: 2 type: Transform - - uid: 7315 + - uid: 7543 components: - pos: -15.513271,14.687578 parent: 2 type: Transform - proto: HeatExchanger entities: - - uid: 7316 + - uid: 7544 components: - rot: -1.5707963267948966 rad pos: 4.5,39.5 @@ -48222,7 +49363,7 @@ entities: type: Transform - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 7317 + - uid: 7545 components: - rot: 1.5707963267948966 rad pos: 4.5,38.5 @@ -48230,14 +49371,14 @@ entities: type: Transform - color: '#00B3B7FF' type: AtmosPipeColor - - uid: 7318 + - uid: 7546 components: - pos: 9.5,38.5 parent: 2 type: Transform - color: '#FF5400FF' type: AtmosPipeColor - - uid: 7319 + - uid: 7547 components: - rot: 1.5707963267948966 rad pos: 4.5,37.5 @@ -48247,195 +49388,195 @@ entities: type: AtmosPipeColor - proto: HighSecCommandLocked entities: - - uid: 7320 + - uid: 7548 components: - pos: -13.5,-20.5 parent: 2 type: Transform - proto: HighSecDoor entities: - - uid: 7321 + - uid: 7549 components: - pos: -36.5,-30.5 parent: 2 type: Transform - proto: HospitalCurtainsOpen entities: - - uid: 7322 + - uid: 7550 components: - pos: -14.5,3.5 parent: 2 type: Transform - - uid: 7323 + - uid: 7551 components: - pos: -14.5,5.5 parent: 2 type: Transform - - uid: 7324 + - uid: 7552 components: - pos: -17.5,3.5 parent: 2 type: Transform - - uid: 7325 + - uid: 7553 components: - pos: 14.5,-4.5 parent: 2 type: Transform - - uid: 7326 + - uid: 7554 components: - pos: 29.5,12.5 parent: 2 type: Transform - - uid: 7327 + - uid: 7555 components: - pos: -7.5,-32.5 parent: 2 type: Transform - - uid: 7328 + - uid: 7556 components: - pos: 25.5,-19.5 parent: 2 type: Transform - - uid: 7329 + - uid: 7557 components: - pos: 23.5,-23.5 parent: 2 type: Transform - - uid: 7330 + - uid: 7558 components: - pos: -7.5,-30.5 parent: 2 type: Transform - - uid: 7331 + - uid: 7559 components: - pos: 12.5,-4.5 parent: 2 type: Transform - proto: hydroponicsSoil entities: - - uid: 7332 + - uid: 7560 components: - pos: 18.5,-30.5 parent: 2 type: Transform - - uid: 7333 + - uid: 7561 components: - pos: 17.5,-30.5 parent: 2 type: Transform - - uid: 7334 + - uid: 7562 components: - pos: 15.5,-30.5 parent: 2 type: Transform - - uid: 7335 + - uid: 7563 components: - pos: 16.5,-30.5 parent: 2 type: Transform - proto: HydroponicsToolClippers entities: - - uid: 7336 + - uid: 7564 components: - pos: 13.976148,-29.507757 parent: 2 type: Transform - proto: HydroponicsToolMiniHoe entities: - - uid: 7337 + - uid: 7565 components: - pos: 14.069898,-29.455639 parent: 2 type: Transform - proto: hydroponicsTray entities: - - uid: 7338 + - uid: 7566 components: - pos: -3.5,8.5 parent: 2 type: Transform - - uid: 7339 + - uid: 7567 components: - pos: -4.5,8.5 parent: 2 type: Transform - - uid: 7340 + - uid: 7568 components: - pos: -3.5,9.5 parent: 2 type: Transform - - uid: 7341 + - uid: 7569 components: - pos: -4.5,9.5 parent: 2 type: Transform - - uid: 7342 + - uid: 7570 components: - pos: -6.5,8.5 parent: 2 type: Transform - - uid: 7343 + - uid: 7571 components: - pos: -6.5,9.5 parent: 2 type: Transform - - uid: 7344 + - uid: 7572 components: - pos: -1.5,9.5 parent: 2 type: Transform - - uid: 7345 + - uid: 7573 components: - pos: -1.5,8.5 parent: 2 type: Transform - proto: Igniter entities: - - uid: 7346 + - uid: 7574 components: - pos: 9.580687,39.419918 parent: 2 type: Transform - links: - - 8390 + - 8621 type: DeviceLinkSink - proto: IngotGold1 entities: - - uid: 7347 + - uid: 7575 components: - pos: 35.268032,24.82529 parent: 2 type: Transform - - uid: 7348 + - uid: 7576 components: - pos: 33.507614,24.658508 parent: 2 type: Transform - - uid: 7349 + - uid: 7577 components: - pos: 24.222847,4.780214 parent: 2 type: Transform - - uid: 7350 + - uid: 7578 components: - pos: 24.327013,4.436225 parent: 2 type: Transform - - uid: 7351 + - uid: 7579 components: - pos: 24.52493,4.7280946 parent: 2 type: Transform - proto: IngotSilver entities: - - uid: 7352 + - uid: 7580 components: - pos: -15.103758,-19.494799 parent: 2 type: Transform - proto: JanitorialTrolley entities: - - uid: 7353 + - uid: 7581 components: - rot: -1.5707963267948966 rad pos: 6.5,10.5 @@ -48443,109 +49584,109 @@ entities: type: Transform - proto: JetpackMiniFilled entities: - - uid: 7354 + - uid: 7582 components: - pos: 0.5,-9.5 parent: 2 type: Transform - - uid: 7355 + - uid: 7583 components: - pos: 0.5,-9.5 parent: 2 type: Transform - proto: KitchenDeepFryer entities: - - uid: 7356 + - uid: 7584 components: - pos: -1.5,5.5 parent: 2 type: Transform - proto: KitchenElectricGrill entities: - - uid: 7357 + - uid: 7585 components: - pos: -2.5,2.5 parent: 2 type: Transform - proto: KitchenMicrowave entities: - - uid: 7358 + - uid: 7586 components: - pos: 8.5,-20.5 parent: 2 type: Transform - - uid: 7359 + - uid: 7587 components: - pos: 20.5,16.5 parent: 2 type: Transform - - uid: 7360 + - uid: 7588 components: - pos: -3.5,5.5 parent: 2 type: Transform - proto: KitchenReagentGrinder entities: - - uid: 7361 + - uid: 7589 components: - pos: -14.5,14.5 parent: 2 type: Transform - - uid: 7362 + - uid: 7590 components: - pos: -8.5,31.5 parent: 2 type: Transform - - uid: 7363 + - uid: 7591 components: - pos: -3.5,10.5 parent: 2 type: Transform - - uid: 7364 + - uid: 7592 components: - pos: -0.5,3.5 parent: 2 type: Transform - proto: KitchenSpike entities: - - uid: 7365 + - uid: 7593 components: - pos: -7.5,0.5 parent: 2 type: Transform - proto: KnifePlastic entities: - - uid: 7366 + - uid: 7594 components: - pos: 18.5,-2.5 parent: 2 type: Transform - proto: Lamp entities: - - uid: 7367 + - uid: 7595 components: - pos: 19.51327,14.915197 parent: 2 type: Transform - - uid: 7368 + - uid: 7596 components: - rot: 1.5707963267948966 rad pos: -23.580538,21.13313 parent: 2 type: Transform - - uid: 7369 + - uid: 7597 components: - rot: 3.141592653589793 rad pos: 19.521437,-18.138279 parent: 2 type: Transform - - uid: 7370 + - uid: 7598 components: - rot: -1.5707963267948966 rad pos: 11.70978,-25.222563 parent: 2 type: Transform - - uid: 7371 + - uid: 7599 components: - rot: 1.5707963267948966 rad pos: 29.438976,29.771719 @@ -48553,18 +49694,18 @@ entities: type: Transform - proto: LampGold entities: - - uid: 7372 + - uid: 7600 components: - rot: -1.5707963267948966 rad pos: 18.5,-5.5 parent: 2 type: Transform - - uid: 7373 + - uid: 7601 components: - pos: -7.4099,-23.062817 parent: 2 type: Transform - - uid: 7374 + - uid: 7602 components: - rot: 3.141592653589793 rad pos: 31.591747,-3.1487255 @@ -48572,118 +49713,118 @@ entities: type: Transform - proto: LargeBeaker entities: - - uid: 7375 + - uid: 7603 components: - pos: -5.6907783,10.748014 parent: 2 type: Transform - - uid: 7376 + - uid: 7604 components: - pos: -5.3678617,10.602081 parent: 2 type: Transform - proto: LauncherCreamPie entities: - - uid: 7377 + - uid: 7605 components: - pos: 1.0657196,-11.409435 parent: 2 type: Transform - proto: Lighter entities: - - uid: 7378 + - uid: 7606 components: - pos: -28.695724,-18.350336 parent: 2 type: Transform - proto: LockerAtmosphericsFilledHardsuit entities: - - uid: 7379 + - uid: 7607 components: - pos: 32.5,28.5 parent: 2 type: Transform - proto: LockerBoozeFilled entities: - - uid: 7380 + - uid: 7608 components: - pos: -9.5,-12.5 parent: 2 type: Transform - proto: LockerBotanistFilled entities: - - uid: 7381 + - uid: 7609 components: - pos: -6.5,7.5 parent: 2 type: Transform - proto: LockerCaptainFilledHardsuit entities: - - uid: 7382 + - uid: 7610 components: - pos: -9.5,-28.5 parent: 2 type: Transform - proto: LockerChemistryFilled entities: - - uid: 7383 + - uid: 7611 components: - pos: -16.5,14.5 parent: 2 type: Transform - proto: LockerChiefEngineerFilled entities: - - uid: 7384 + - uid: 7612 components: - pos: 26.5,12.5 parent: 2 type: Transform - proto: LockerChiefMedicalOfficerFilledHardsuit entities: - - uid: 7385 + - uid: 7613 components: - pos: -18.5,22.5 parent: 2 type: Transform - proto: LockerDetectiveFilled entities: - - uid: 7386 + - uid: 7614 components: - pos: -17.5,-21.5 parent: 2 type: Transform - proto: LockerEngineerFilled entities: - - uid: 7387 + - uid: 7615 components: - pos: 6.5,15.5 parent: 2 type: Transform - - uid: 7388 + - uid: 7616 components: - pos: 5.5,15.5 parent: 2 type: Transform - - uid: 7389 + - uid: 7617 components: - pos: 7.5,15.5 parent: 2 type: Transform - proto: LockerEvidence entities: - - uid: 7390 + - uid: 7618 components: - pos: -19.5,-8.5 parent: 2 type: Transform - - uid: 7391 + - uid: 7619 components: - pos: -17.5,-8.5 parent: 2 type: Transform - proto: LockerForensicMantisFilled entities: - - uid: 7392 + - uid: 7620 components: - pos: -9.5,26.5 parent: 2 @@ -48708,7 +49849,7 @@ entities: type: EntityStorage - proto: LockerFreezer entities: - - uid: 7393 + - uid: 7621 components: - pos: -6.5,2.5 parent: 2 @@ -48733,393 +49874,393 @@ entities: type: EntityStorage - proto: LockerHeadOfPersonnelFilled entities: - - uid: 7394 + - uid: 7622 components: - pos: 11.5,-6.5 parent: 2 type: Transform - proto: LockerHeadOfSecurityFilled entities: - - uid: 7395 + - uid: 7623 components: - pos: 22.5,-19.5 parent: 2 type: Transform - proto: LockerMedicalFilled entities: - - uid: 7396 + - uid: 7624 components: - pos: -22.5,10.5 parent: 2 type: Transform - - uid: 7397 + - uid: 7625 components: - pos: -23.5,10.5 parent: 2 type: Transform - proto: LockerQuarterMasterFilled entities: - - uid: 7398 + - uid: 7626 components: - pos: 16.5,-7.5 parent: 2 type: Transform - proto: LockerResearchDirectorFilledHardsuit entities: - - uid: 7399 + - uid: 7627 components: - pos: 1.5,35.5 parent: 2 type: Transform - proto: LockerSalvageSpecialistFilledHardsuit entities: - - uid: 7400 + - uid: 7628 components: - pos: 25.5,-1.5 parent: 2 type: Transform - - uid: 7401 + - uid: 7629 components: - pos: 25.5,-3.5 parent: 2 type: Transform - proto: LockerScienceFilled entities: - - uid: 7402 + - uid: 7630 components: - pos: -10.5,35.5 parent: 2 type: Transform - - uid: 7403 + - uid: 7631 components: - pos: -10.5,34.5 parent: 2 type: Transform - - uid: 7404 + - uid: 7632 components: - pos: -10.5,33.5 parent: 2 type: Transform - - uid: 7405 + - uid: 7633 components: - pos: 2.5,23.5 parent: 2 type: Transform - - uid: 7406 + - uid: 7634 components: - pos: -10.5,36.5 parent: 2 type: Transform - proto: LockerSecurityFilled entities: - - uid: 7407 + - uid: 7635 components: - pos: 8.5,-18.5 parent: 2 type: Transform - - uid: 7408 + - uid: 7636 components: - pos: 8.5,-17.5 parent: 2 type: Transform - - uid: 7409 + - uid: 7637 components: - pos: -14.5,-6.5 parent: 2 type: Transform -- proto: LockerWardenFilled +- proto: LockerWardenFilledHardsuit entities: - - uid: 7410 + - uid: 7638 components: - pos: 14.5,-14.5 parent: 2 type: Transform - proto: MachineAnomalyGenerator entities: - - uid: 7411 + - uid: 7639 components: - pos: 2.5,27.5 parent: 2 type: Transform - proto: MachineAnomalyVessel entities: - - uid: 7412 + - uid: 7640 components: - pos: 5.5,24.5 parent: 2 type: Transform - proto: MachineAPE entities: - - uid: 7413 + - uid: 7641 components: - pos: 1.5,26.5 parent: 2 type: Transform - - uid: 7414 + - uid: 7642 components: - pos: 3.5,26.5 parent: 2 type: Transform - proto: MachineArtifactAnalyzer entities: - - uid: 7415 + - uid: 7643 components: - pos: -13.5,35.5 parent: 2 type: Transform - proto: MachineFrameDestroyed entities: - - uid: 7416 + - uid: 7644 components: - pos: 19.5,1.5 parent: 2 type: Transform - proto: MagazineBoxMagnum entities: - - uid: 7417 + - uid: 7645 components: - pos: 22.350033,-14.218571 parent: 2 type: Transform - proto: MagazineBoxMagnumRubber entities: - - uid: 7418 + - uid: 7646 components: - pos: 22.360449,-14.593832 parent: 2 type: Transform - proto: MagazineBoxPistol entities: - - uid: 7419 + - uid: 7647 components: - pos: 20.402533,-14.325335 parent: 2 type: Transform - proto: MagazineBoxPistolRubber entities: - - uid: 7420 + - uid: 7648 components: - pos: 20.66295,-14.335758 parent: 2 type: Transform - proto: MagazineMagnumSubMachineGun entities: - - uid: 7421 + - uid: 7649 components: - pos: 21.91829,-14.364506 parent: 2 type: Transform - proto: MagazineMagnumSubMachineGunRubber entities: - - uid: 7422 + - uid: 7650 components: - pos: 22.095373,-14.343658 parent: 2 type: Transform - proto: MagazinePistol entities: - - uid: 7423 + - uid: 7651 components: - pos: 20.421423,-14.601112 parent: 2 type: Transform - proto: MagazinePistolRubber entities: - - uid: 7424 + - uid: 7652 components: - pos: 20.723507,-14.632383 parent: 2 type: Transform - proto: MagazinePistolSubMachineGunTopMounted entities: - - uid: 7425 + - uid: 7653 components: - pos: 23.555655,-21.381088 parent: 2 type: Transform - - uid: 7426 + - uid: 7654 components: - pos: 23.56607,-21.235155 parent: 2 type: Transform - proto: MagicDiceBag entities: - - uid: 7427 + - uid: 7655 components: - pos: 32.56783,-29.505108 parent: 2 type: Transform - proto: MailBag entities: - - uid: 7428 + - uid: 7656 components: - pos: 7.547151,4.455878 parent: 2 type: Transform - proto: MailingUnit entities: - - uid: 7429 + - uid: 7657 components: - pos: 17.5,-20.5 parent: 2 type: Transform - - uid: 7430 + - uid: 7658 components: - pos: -3.5,-24.5 parent: 2 type: Transform - - uid: 7431 + - uid: 7659 components: - pos: 21.5,14.5 parent: 2 type: Transform - - uid: 7432 + - uid: 7660 components: - pos: 10.5,4.5 parent: 2 type: Transform - tag: mail type: MailingUnit - - uid: 7433 + - uid: 7661 components: - pos: -17.5,16.5 parent: 2 type: Transform - - uid: 7434 + - uid: 7662 components: - pos: -16.5,-15.5 parent: 2 type: Transform - - uid: 7435 + - uid: 7663 components: - pos: -4.5,33.5 parent: 2 type: Transform - proto: MailTeleporter entities: - - uid: 7436 + - uid: 7664 components: - pos: 6.5,6.5 parent: 2 type: Transform - proto: MaintenanceFluffSpawner entities: - - uid: 7437 + - uid: 7665 components: - pos: -18.5,-0.5 parent: 2 type: Transform - - uid: 7438 + - uid: 7666 components: - pos: -7.5,4.5 parent: 2 type: Transform - - uid: 7439 + - uid: 7667 components: - rot: 1.5707963267948966 rad pos: 19.5,-11.5 parent: 2 type: Transform - - uid: 7440 + - uid: 7668 components: - pos: -9.5,3.5 parent: 2 type: Transform - - uid: 7441 + - uid: 7669 components: - pos: -27.5,-8.5 parent: 2 type: Transform - - uid: 7442 + - uid: 7670 components: - pos: -29.5,-1.5 parent: 2 type: Transform - - uid: 7443 + - uid: 7671 components: - pos: -6.5,-14.5 parent: 2 type: Transform - - uid: 7444 + - uid: 7672 components: - pos: 15.5,7.5 parent: 2 type: Transform - - uid: 7445 + - uid: 7673 components: - pos: -29.5,25.5 parent: 2 type: Transform - - uid: 7446 + - uid: 7674 components: - pos: -16.5,21.5 parent: 2 type: Transform - - uid: 7447 + - uid: 7675 components: - pos: 29.5,16.5 parent: 2 type: Transform - - uid: 7448 + - uid: 7676 components: - pos: 31.5,20.5 parent: 2 type: Transform - - uid: 7449 + - uid: 7677 components: - pos: 19.5,4.5 parent: 2 type: Transform - - uid: 7450 + - uid: 7678 components: - pos: 33.5,-24.5 parent: 2 type: Transform - - uid: 7451 + - uid: 7679 components: - pos: 32.5,-23.5 parent: 2 type: Transform - - uid: 7452 + - uid: 7680 components: - pos: 28.5,-34.5 parent: 2 type: Transform - proto: MaintenanceToolSpawner entities: - - uid: 7453 + - uid: 7681 components: - pos: -15.5,17.5 parent: 2 type: Transform - - uid: 7454 + - uid: 7682 components: - pos: 19.5,5.5 parent: 2 type: Transform - - uid: 7455 + - uid: 7683 components: - pos: 36.5,-25.5 parent: 2 type: Transform - - uid: 7456 + - uid: 7684 components: - pos: 36.5,-26.5 parent: 2 type: Transform - proto: MaintenanceWeaponSpawner entities: - - uid: 7457 + - uid: 7685 components: - pos: -20.5,40.5 parent: 2 type: Transform - - uid: 7458 + - uid: 7686 components: - pos: 26.5,-11.5 parent: 2 type: Transform - - uid: 7459 + - uid: 7687 components: - pos: 20.5,7.5 parent: 2 @@ -49128,147 +50269,158 @@ entities: type: RandomSpawner - proto: Matchbox entities: - - uid: 7460 + - uid: 7688 components: - pos: 26.769876,-21.480942 parent: 2 type: Transform - - uid: 7461 + - uid: 7689 components: - pos: -13.212877,-30.360931 parent: 2 type: Transform - proto: MaterialBiomass entities: - - uid: 7462 + - uid: 7690 components: - pos: -21.693905,12.505009 parent: 2 type: Transform - - uid: 7463 + - uid: 7691 components: - pos: -21.693905,12.713488 parent: 2 type: Transform - - uid: 7464 + - uid: 7692 components: - pos: -21.277239,18.46597 parent: 2 type: Transform - proto: MaterialBluespace entities: - - uid: 7465 + - uid: 7693 components: - pos: 0.69490546,37.661827 parent: 2 type: Transform - proto: MaterialCloth entities: - - uid: 7466 + - uid: 7694 components: - pos: 7.5,-5.5 parent: 2 type: Transform + - uid: 7695 + components: + - pos: -6.3351974,-17.618593 + parent: 2 + type: Transform - proto: MaterialDurathread entities: - - uid: 7467 + - uid: 7696 components: - pos: 7.5,-5.5 parent: 2 type: Transform + - uid: 7697 + components: + - rot: -1.5707963267948966 rad + pos: -6.7171144,-17.235079 + parent: 2 + type: Transform - proto: MedicalBed entities: - - uid: 7468 + - uid: 7698 components: - pos: -14.5,3.5 parent: 2 type: Transform - - uid: 7469 + - uid: 7699 components: - pos: -14.5,5.5 parent: 2 type: Transform - - uid: 7470 + - uid: 7700 components: - pos: -17.5,3.5 parent: 2 type: Transform - proto: MedicalScanner entities: - - uid: 7471 + - uid: 7701 components: - pos: -23.5,12.5 parent: 2 type: Transform - proto: MedicalTechFab entities: - - uid: 7472 + - uid: 7702 components: - pos: -24.5,9.5 parent: 2 type: Transform - proto: MedkitBruteFilled entities: - - uid: 7473 + - uid: 7703 components: - pos: -23.323029,7.5579705 parent: 2 type: Transform - - uid: 7474 + - uid: 7704 components: - pos: -29.462383,33.663837 parent: 2 type: Transform - proto: MedkitBurnFilled entities: - - uid: 7475 + - uid: 7705 components: - pos: -23.854279,7.568394 parent: 2 type: Transform - proto: MedkitCombatFilled entities: - - uid: 7476 + - uid: 7706 components: - pos: -22.419218,20.58446 parent: 2 type: Transform - proto: MedkitFilled entities: - - uid: 7477 + - uid: 7707 components: - pos: -24.510529,7.6517854 parent: 2 type: Transform - proto: MedkitOxygenFilled entities: - - uid: 7478 + - uid: 7708 components: - pos: -24.510529,7.9228063 parent: 2 type: Transform - proto: MedkitRadiationFilled entities: - - uid: 7479 + - uid: 7709 components: - pos: -24.520947,8.256372 parent: 2 type: Transform - proto: MedkitToxinFilled entities: - - uid: 7480 + - uid: 7710 components: - pos: -24.520947,8.558664 parent: 2 type: Transform - - uid: 7481 + - uid: 7711 components: - pos: -22.579123,3.5572662 parent: 2 type: Transform - proto: MicrophoneInstrument entities: - - uid: 7482 + - uid: 7712 components: - rot: 1.5707963267948966 rad pos: -1.7753985,-11.530016 @@ -49276,47 +50428,47 @@ entities: type: Transform - proto: MinimoogInstrument entities: - - uid: 7483 + - uid: 7713 components: - pos: 38.5,21.5 parent: 2 type: Transform - - uid: 7484 + - uid: 7714 components: - pos: -35.5,29.5 parent: 2 type: Transform - proto: Mirror entities: - - uid: 7485 + - uid: 7715 components: - rot: 1.5707963267948966 rad pos: -30.5,-20.5 parent: 2 type: Transform - - uid: 7486 + - uid: 7716 components: - rot: 3.141592653589793 rad pos: -27.5,-25.5 parent: 2 type: Transform - - uid: 7487 + - uid: 7717 components: - pos: -28.5,-14.5 parent: 2 type: Transform - - uid: 7488 + - uid: 7718 components: - rot: -1.5707963267948966 rad pos: -5.5,-30.5 parent: 2 type: Transform - - uid: 7489 + - uid: 7719 components: - pos: -21.5,15.5 parent: 2 type: Transform - - uid: 7490 + - uid: 7720 components: - rot: 1.5707963267948966 rad pos: -3.5,-7.5 @@ -49324,50 +50476,50 @@ entities: type: Transform - proto: MMI entities: - - uid: 7491 + - uid: 7721 components: - pos: 0.34333998,22.854553 parent: 2 type: Transform - proto: ModularGrenade entities: - - uid: 7492 + - uid: 7722 components: - pos: -24.65968,28.208782 parent: 2 type: Transform - proto: MopBucket entities: - - uid: 7493 + - uid: 7723 components: - pos: 7.6673713,10.668196 parent: 2 type: Transform - proto: MopItem entities: - - uid: 7494 + - uid: 7724 components: - pos: 7.708736,10.775467 parent: 2 type: Transform - - uid: 7495 + - uid: 7725 components: - pos: -1.7152877,40.604946 parent: 2 type: Transform - - uid: 7496 + - uid: 7726 components: - pos: -1.5694542,40.552826 parent: 2 type: Transform - - uid: 7497 + - uid: 7727 components: - pos: -1.4027874,40.53198 parent: 2 type: Transform - proto: Morgue entities: - - uid: 7498 + - uid: 7728 components: - rot: 1.5707963267948966 rad pos: -23.5,16.5 @@ -49391,7 +50543,7 @@ entities: - 0 - 0 type: EntityStorage - - uid: 7499 + - uid: 7729 components: - rot: 1.5707963267948966 rad pos: -23.5,17.5 @@ -49417,377 +50569,377 @@ entities: type: EntityStorage - proto: MouseTimedSpawner entities: - - uid: 7500 + - uid: 7730 components: - pos: -5.5,-15.5 parent: 2 type: Transform - - uid: 7501 + - uid: 7731 components: - pos: -27.5,24.5 parent: 2 type: Transform - proto: Multitool entities: - - uid: 7502 + - uid: 7732 components: - pos: -21.5,12.5 parent: 2 type: Transform - - uid: 7503 + - uid: 7733 components: - pos: 1.955231,17.606508 parent: 2 type: Transform - - uid: 7504 + - uid: 7734 components: - pos: 20.571577,8.5436 parent: 2 type: Transform - proto: NitrogenCanister entities: - - uid: 7505 + - uid: 7735 components: - pos: 11.5,33.5 parent: 2 type: Transform - - uid: 7506 + - uid: 7736 components: - pos: 11.5,32.5 parent: 2 type: Transform - proto: NuclearBomb entities: - - uid: 7507 + - uid: 7737 components: - pos: -15.5,-22.5 parent: 2 type: Transform - proto: NuclearBombKeg entities: - - uid: 7508 + - uid: 7738 components: - pos: 29.5,-23.5 parent: 2 type: Transform - proto: OilJarOlive entities: - - uid: 7509 + - uid: 7739 components: - pos: -0.58820933,5.61614 parent: 2 type: Transform - proto: OperatingTable entities: - - uid: 7510 + - uid: 7740 components: - pos: 0.5,21.5 parent: 2 type: Transform - proto: Oracle entities: - - uid: 7511 + - uid: 7741 components: - pos: -4.5,16.5 parent: 2 type: Transform - proto: OreBag entities: - - uid: 7512 + - uid: 7742 components: - pos: 33.5,-14.5 parent: 2 type: Transform - proto: OreBox entities: - - uid: 7513 + - uid: 7743 components: - pos: 32.5,-14.5 parent: 2 type: Transform - proto: OreProcessor entities: - - uid: 7514 + - uid: 7744 components: - pos: 24.5,-0.5 parent: 2 type: Transform - proto: OxygenCanister entities: - - uid: 7515 + - uid: 7745 components: - pos: 5.5,28.5 parent: 2 type: Transform - - uid: 7516 + - uid: 7746 components: - pos: 37.5,-14.5 parent: 2 type: Transform - - uid: 7517 + - uid: 7747 components: - pos: 21.5,39.5 parent: 2 type: Transform - - uid: 7518 + - uid: 7748 components: - pos: -20.5,-0.5 parent: 2 type: Transform - - uid: 7519 + - uid: 7749 components: - pos: -16.5,22.5 parent: 2 type: Transform - - uid: 7520 + - uid: 7750 components: - pos: -5.5,-14.5 parent: 2 type: Transform - - uid: 7521 + - uid: 7751 components: - pos: 33.5,17.5 parent: 2 type: Transform - proto: Paper entities: - - uid: 7522 + - uid: 7752 components: - pos: 8.669469,-26.51377 parent: 2 type: Transform - - uid: 7523 + - uid: 7753 components: - pos: -29.41655,-27.37733 parent: 2 type: Transform - - uid: 7524 + - uid: 7754 components: - pos: -29.22905,-27.455456 parent: 2 type: Transform - - uid: 7525 + - uid: 7755 components: - pos: -25.43624,-27.5295 parent: 2 type: Transform - - uid: 7526 + - uid: 7756 components: - pos: -12.540777,28.454374 parent: 2 type: Transform - - uid: 7527 + - uid: 7757 components: - pos: -7.7048454,26.73688 parent: 2 type: Transform - - uid: 7528 + - uid: 7758 components: - pos: -25.68624,-27.31075 parent: 2 type: Transform - - uid: 7529 + - uid: 7759 components: - pos: 5.6382184,-28.88877 parent: 2 type: Transform - - uid: 7530 + - uid: 7760 components: - pos: 5.0444684,-26.51377 parent: 2 type: Transform - - uid: 7531 + - uid: 7761 components: - pos: 4.5913434,-26.310644 parent: 2 type: Transform - - uid: 7532 + - uid: 7762 components: - pos: -7.4756784,26.517977 parent: 2 type: Transform - - uid: 7533 + - uid: 7763 components: - pos: -12.717861,28.694124 parent: 2 type: Transform - - uid: 7534 + - uid: 7764 components: - pos: 8.373035,-13.439045 parent: 2 type: Transform - - uid: 7535 + - uid: 7765 components: - pos: 19.523685,13.851959 parent: 2 type: Transform - - uid: 7536 + - uid: 7766 components: - pos: 19.679935,13.997892 parent: 2 type: Transform - - uid: 7537 + - uid: 7767 components: - pos: 8.278844,-26.404394 parent: 2 type: Transform - - uid: 7538 + - uid: 7768 components: - pos: -29.738504,-23.337132 parent: 2 type: Transform - - uid: 7539 + - uid: 7769 components: - pos: -29.44163,-23.259007 parent: 2 type: Transform - - uid: 7540 + - uid: 7770 components: - rot: 1.5707963267948966 rad pos: 19.531853,-18.878376 parent: 2 type: Transform - - uid: 7541 + - uid: 7771 components: - rot: 1.5707963267948966 rad pos: 19.427687,-19.003462 parent: 2 type: Transform - - uid: 7542 + - uid: 7772 components: - rot: 1.5707963267948966 rad pos: 19.802687,-19.013885 parent: 2 type: Transform - - uid: 7543 + - uid: 7773 components: - pos: 7.91991,-13.439045 parent: 2 type: Transform - - uid: 7544 + - uid: 7774 components: - pos: -0.5758452,-21.424469 parent: 2 type: Transform - - uid: 7545 + - uid: 7775 + components: + - pos: -0.39876193,-21.570402 + parent: 2 + type: Transform + - uid: 7776 components: - pos: -1.4091785,-22.279228 parent: 2 type: Transform - - uid: 7546 + - uid: 7777 components: - pos: -1.3779285,-22.883816 parent: 2 type: Transform - - uid: 7547 + - uid: 7778 components: - pos: 0.38248807,-23.11314 parent: 2 type: Transform - - uid: 7548 + - uid: 7779 components: - pos: 0.31998807,-22.185413 parent: 2 type: Transform - - uid: 7549 + - uid: 7780 components: - pos: -17.827131,18.663916 parent: 2 type: Transform - - uid: 7550 + - uid: 7781 components: - pos: -17.983381,18.51798 parent: 2 type: Transform - - uid: 7551 + - uid: 7782 components: - pos: -17.65005,18.392895 parent: 2 type: Transform - - uid: 7552 + - uid: 7783 components: - pos: -6.7783804,-23.510653 parent: 2 type: Transform - - uid: 7553 + - uid: 7784 components: - pos: -6.861714,-23.323023 parent: 2 type: Transform - - uid: 7554 + - uid: 7785 components: - pos: -6.9932337,-23.50062 parent: 2 type: Transform - - uid: 7555 + - uid: 7786 components: - pos: -19.308437,-13.227375 parent: 2 type: Transform - - uid: 7556 + - uid: 7787 components: - pos: -18.777187,-12.758625 parent: 2 type: Transform - - uid: 7557 + - uid: 7788 components: - pos: 6.40628,4.596503 parent: 2 type: Transform - - uid: 7558 + - uid: 7789 components: - pos: 6.71878,4.502753 parent: 2 type: Transform - - uid: 7559 + - uid: 7790 components: - pos: 6.90628,4.612128 parent: 2 type: Transform - - uid: 7560 + - uid: 7791 components: - pos: 5.358882,21.695858 parent: 2 type: Transform - - uid: 7561 + - uid: 7792 components: - pos: 5.566872,21.452343 parent: 2 type: Transform - - uid: 7562 + - uid: 7793 components: - pos: 5.352056,25.407856 parent: 2 type: Transform - - uid: 7563 + - uid: 7794 components: - pos: 5.674973,25.376585 parent: 2 type: Transform - - uid: 7581 - components: - - pos: -0.43909615,-21.271 - parent: 2 - type: Transform - proto: PaperBin10 entities: - - uid: 7564 + - uid: 7795 components: - pos: -19.5,-19.5 parent: 2 type: Transform - - uid: 7565 + - uid: 7796 components: - rot: 1.5707963267948966 rad pos: 18.5,-4.5 parent: 2 type: Transform - - uid: 7566 + - uid: 7797 components: - pos: 10.5,-0.5 parent: 2 type: Transform - - uid: 7567 + - uid: 7798 components: - rot: 3.141592653589793 rad pos: 32.5,-4.5 @@ -49795,7 +50947,7 @@ entities: type: Transform - proto: PaperCargoInvoice entities: - - uid: 7568 + - uid: 7799 components: - pos: -30.81048,-29.67205 parent: 2 @@ -49804,110 +50956,112 @@ entities: type: Paper - proto: PartRodMetal entities: - - uid: 7569 + - uid: 7800 components: - pos: -0.7048709,40.59452 parent: 2 type: Transform - - uid: 7570 + - uid: 7801 components: - pos: -0.5069542,40.552826 parent: 2 type: Transform - - uid: 7571 + - uid: 7802 components: - pos: -0.8507042,40.625793 parent: 2 type: Transform - - uid: 7572 + - uid: 7803 components: - pos: 3.602412,17.567593 parent: 2 type: Transform - - uid: 7573 + - uid: 7804 components: - pos: 18.644348,18.495897 parent: 2 type: Transform - - uid: 7574 + - uid: 7805 components: - pos: 18.377424,18.73226 parent: 2 type: Transform - - uid: 7575 + - uid: 7806 components: - pos: 23.5,28.5 parent: 2 type: Transform - proto: PartRodMetal1 entities: - - uid: 7576 + - uid: 7807 components: - pos: -20.463078,32.830124 parent: 2 type: Transform - proto: Pen entities: - - uid: 7577 + - uid: 7808 components: - pos: 5.487473,25.366161 parent: 2 type: Transform - proto: PersonalAI entities: - - uid: 7578 + - uid: 7809 components: - flags: SessionSpecific type: MetaData - pos: 0.35115546,37.6514 parent: 2 type: Transform - - uid: 7579 + - uid: 7810 components: - flags: SessionSpecific type: MetaData - pos: -4.497075,36.555016 parent: 2 type: Transform - - uid: 7580 + - uid: 7811 components: - flags: SessionSpecific type: MetaData - pos: -7.5098042,-24.221384 parent: 2 type: Transform - - uid: 7582 + - uid: 7812 components: - flags: SessionSpecific type: MetaData - - pos: 19.392117,-19.49079 + - pos: -0.30353338,-22.628323 parent: 2 type: Transform - - uid: 7583 + - uid: 7813 components: - flags: SessionSpecific type: MetaData - - pos: 5.539047,25.781422 + - pos: 19.392117,-19.49079 parent: 2 type: Transform - - uid: 10637 + - uid: 7814 components: - - pos: -0.4859237,-23.50211 + - flags: SessionSpecific + type: MetaData + - pos: 5.539047,25.781422 parent: 2 type: Transform - proto: Pickaxe entities: - - uid: 7584 + - uid: 7815 components: - pos: -37.416676,-29.510288 parent: 2 type: Transform - - uid: 7585 + - uid: 7816 components: - pos: 34.5,-14.5 parent: 2 type: Transform - - uid: 7586 + - uid: 7817 components: - rot: 1.5707963267948966 rad pos: 34.5,-14.5 @@ -49915,58 +51069,58 @@ entities: type: Transform - proto: PlasmaCanister entities: - - uid: 7587 + - uid: 7818 components: - pos: 6.5,28.5 parent: 2 type: Transform - - uid: 7588 + - uid: 7819 components: - pos: 5.5,29.5 parent: 2 type: Transform - proto: PlasticFlapsAirtightClear entities: - - uid: 7589 + - uid: 7820 components: - pos: 32.5,2.5 parent: 2 type: Transform - - uid: 7590 + - uid: 7821 components: - pos: 29.5,-1.5 parent: 2 type: Transform - - uid: 7591 + - uid: 7822 components: - pos: 29.5,2.5 parent: 2 type: Transform - - uid: 7592 + - uid: 7823 components: - pos: 32.5,-1.5 parent: 2 type: Transform - - uid: 7593 + - uid: 7824 components: - pos: 21.5,2.5 parent: 2 type: Transform - - uid: 7594 + - uid: 7825 components: - pos: 10.5,-2.5 parent: 2 type: Transform - proto: PlushieAtmosian entities: - - uid: 7595 + - uid: 7826 components: - pos: 30.370932,29.61524 parent: 2 type: Transform - proto: PlushieGhost entities: - - uid: 7596 + - uid: 7827 components: - rot: -1.5707963267948966 rad pos: -36.5,-28.5 @@ -49974,47 +51128,47 @@ entities: type: Transform - proto: PlushieLizard entities: - - uid: 7597 + - uid: 7828 components: - pos: 25.563232,12.691715 parent: 2 type: Transform - proto: PlushieMoth entities: - - uid: 7598 + - uid: 7829 components: - pos: -5.5936007,-1.3486671 parent: 2 type: Transform - proto: PlushieMothBartender entities: - - uid: 7599 + - uid: 7830 components: - pos: 35.498596,21.620724 parent: 2 type: Transform - - uid: 7600 + - uid: 7831 components: - pos: -9.547185,-10.295618 parent: 2 type: Transform - proto: PlushieMothMusician entities: - - uid: 7601 + - uid: 7832 components: - pos: -2.1012704,-11.585415 parent: 2 type: Transform - proto: PlushieMothRandom entities: - - uid: 7602 + - uid: 7833 components: - pos: 21.342411,8.554024 parent: 2 type: Transform - proto: PlushieNuke entities: - - uid: 7603 + - uid: 7834 components: - rot: -1.5707963267948966 rad pos: -17.347013,-9.6716 @@ -50022,7 +51176,7 @@ entities: type: Transform - proto: PlushieRatvar entities: - - uid: 7604 + - uid: 7835 components: - desc: A small stuffed doll of the elder god of Atmos; Ratvar. type: MetaData @@ -50031,14 +51185,14 @@ entities: type: Transform - proto: PlushieRGBee entities: - - uid: 7605 + - uid: 7836 components: - pos: 21.595783,-27.557093 parent: 2 type: Transform - proto: PlushieRouny entities: - - uid: 7606 + - uid: 7837 components: - rot: -1.5707963267948966 rad pos: 31.5,-6.5 @@ -50046,73 +51200,73 @@ entities: type: Transform - proto: PlushieSlime entities: - - uid: 7607 + - uid: 7838 components: - pos: 27.45078,-9.497541 parent: 2 type: Transform - proto: PlushieSpaceLizard entities: - - uid: 7608 + - uid: 7839 components: - pos: -24.399263,27.708435 parent: 2 type: Transform - proto: PortableGeneratorJrPacman entities: - - uid: 7609 + - uid: 7840 components: - pos: -29.5,26.5 parent: 2 type: Transform - - uid: 7610 + - uid: 7841 components: - pos: 22.5,-9.5 parent: 2 type: Transform - proto: PortableGeneratorPacman entities: - - uid: 7611 + - uid: 7842 components: - pos: -21.5,0.5 parent: 2 type: Transform - proto: PortableScrubber entities: - - uid: 7612 + - uid: 7843 components: - pos: 18.5,27.5 parent: 2 type: Transform - - uid: 7613 + - uid: 7844 components: - pos: 17.5,27.5 parent: 2 type: Transform - proto: PosterBroken entities: - - uid: 7614 + - uid: 7845 components: - pos: -3.5,-13.5 parent: 2 type: Transform - proto: PosterContrabandAtmosiaDeclarationIndependence entities: - - uid: 7615 + - uid: 7846 components: - pos: 29.5,30.5 parent: 2 type: Transform - proto: PosterContrabandBeachStarYamamoto entities: - - uid: 7616 + - uid: 7847 components: - pos: -5.5,6.5 parent: 2 type: Transform - proto: PosterContrabandBorgFancyv2 entities: - - uid: 7617 + - uid: 7848 components: - rot: -1.5707963267948966 rad pos: -1.5,23.5 @@ -50120,103 +51274,103 @@ entities: type: Transform - proto: PosterContrabandClown entities: - - uid: 7618 + - uid: 7849 components: - pos: 2.5,-13.5 parent: 2 type: Transform - proto: PosterContrabandCommunistState entities: - - uid: 7619 + - uid: 7850 components: - pos: -1.5,-14.5 parent: 2 type: Transform - - uid: 7620 + - uid: 7851 components: - pos: -28.5,31.5 parent: 2 type: Transform - proto: PosterContrabandFunPolice entities: - - uid: 7621 + - uid: 7852 components: - pos: 12.5,-14.5 parent: 2 type: Transform - proto: PosterContrabandHackingGuide entities: - - uid: 7622 + - uid: 7853 components: - pos: 17.5,19.5 parent: 2 type: Transform - proto: PosterContrabandLustyExomorph entities: - - uid: 7623 + - uid: 7854 components: - pos: -7.5,-10.5 parent: 2 type: Transform - proto: PosterContrabandNuclearDeviceInformational entities: - - uid: 7624 + - uid: 7855 components: - pos: -14.5,-18.5 parent: 2 type: Transform - proto: PosterContrabandPunchShit entities: - - uid: 7625 + - uid: 7856 components: - pos: -30.5,26.5 parent: 2 type: Transform - proto: PosterContrabandRevolt entities: - - uid: 7626 + - uid: 7857 components: - pos: -32.5,28.5 parent: 2 type: Transform - proto: PosterContrabandSyndicateRecruitment entities: - - uid: 7627 + - uid: 7858 components: - pos: -30.5,27.5 parent: 2 type: Transform - proto: PosterContrabandTools entities: - - uid: 7628 + - uid: 7859 components: - pos: 0.5,14.5 parent: 2 type: Transform - proto: PosterLegitDejaVu entities: - - uid: 7629 + - uid: 7860 components: - pos: 18.5,19.5 parent: 2 type: Transform - proto: PosterLegitLoveIan entities: - - uid: 7630 + - uid: 7861 components: - pos: 10.5,-6.5 parent: 2 type: Transform - proto: PosterLegitPDAAd entities: - - uid: 7631 + - uid: 7862 components: - pos: 5.5,-3.5 parent: 2 type: Transform - proto: PosterLegitSafetyMothPiping entities: - - uid: 7632 + - uid: 7863 components: - rot: -1.5707963267948966 rad pos: 4.5,30.5 @@ -50224,97 +51378,97 @@ entities: type: Transform - proto: PottedPlantBioluminscent entities: - - uid: 7633 + - uid: 7864 components: - pos: -22.5,-1.5 parent: 2 type: Transform - proto: PottedPlantRandom entities: - - uid: 7634 + - uid: 7865 components: - pos: -22.5,-9.5 parent: 2 type: Transform - - uid: 7635 + - uid: 7866 components: - pos: 1.5,-5.5 parent: 2 type: Transform - - uid: 7636 + - uid: 7867 components: - pos: -14.5,-10.5 parent: 2 type: Transform - - uid: 7637 + - uid: 7868 components: - pos: -8.5,-21.5 parent: 2 type: Transform - - uid: 7638 + - uid: 7869 components: - pos: 23.5,14.5 parent: 2 type: Transform - - uid: 7639 + - uid: 7870 components: - pos: -19.5,16.5 parent: 2 type: Transform - - uid: 7640 + - uid: 7871 components: - pos: -22.5,-26.5 parent: 2 type: Transform - - uid: 7641 + - uid: 7872 components: - pos: -20.5,-11.5 parent: 2 type: Transform - - uid: 7642 + - uid: 7873 components: - pos: 9.5,-29.5 parent: 2 type: Transform - - uid: 7643 + - uid: 7874 components: - pos: 31.5,23.5 parent: 2 type: Transform - - uid: 7644 + - uid: 7875 components: - pos: -9.5,30.5 parent: 2 type: Transform - - uid: 7645 + - uid: 7876 components: - pos: 1.5,32.5 parent: 2 type: Transform - proto: PowerCellRecharger entities: - - uid: 7646 + - uid: 7877 components: - pos: 1.5,17.5 parent: 2 type: Transform - - uid: 7647 + - uid: 7878 components: - pos: 13.5,10.5 parent: 2 type: Transform - - uid: 7648 + - uid: 7879 components: - pos: -4.5,26.5 parent: 2 type: Transform - - uid: 7649 + - uid: 7880 components: - rot: -1.5707963267948966 rad pos: 19.5,5.5 parent: 2 type: Transform - - uid: 7650 + - uid: 7881 components: - rot: 1.5707963267948966 rad pos: -17.5,4.5 @@ -50322,169 +51476,169 @@ entities: type: Transform - proto: Poweredlight entities: - - uid: 7651 + - uid: 7882 components: - rot: 3.141592653589793 rad pos: 11.5,28.5 parent: 2 type: Transform - - uid: 7652 + - uid: 7883 components: - rot: 3.141592653589793 rad pos: 5.5,28.5 parent: 2 type: Transform - - uid: 7653 + - uid: 7884 components: - rot: -1.5707963267948966 rad pos: 12.5,38.5 parent: 2 type: Transform - - uid: 7654 + - uid: 7885 components: - rot: 3.141592653589793 rad pos: 15.5,-2.5 parent: 2 type: Transform - - uid: 7655 + - uid: 7886 components: - rot: 1.5707963267948966 rad pos: 22.5,-2.5 parent: 2 type: Transform - - uid: 7656 + - uid: 7887 components: - rot: 1.5707963267948966 rad pos: 27.5,-3.5 parent: 2 type: Transform - - uid: 7657 + - uid: 7888 components: - rot: 1.5707963267948966 rad pos: 27.5,-6.5 parent: 2 type: Transform - - uid: 7658 + - uid: 7889 components: - pos: 20.5,2.5 parent: 2 type: Transform - - uid: 7659 + - uid: 7890 components: - pos: 16.5,2.5 parent: 2 type: Transform - - uid: 7660 + - uid: 7891 components: - rot: 3.141592653589793 rad pos: 17.5,-7.5 parent: 2 type: Transform - - uid: 7661 + - uid: 7892 components: - rot: 3.141592653589793 rad pos: 19.5,-2.5 parent: 2 type: Transform - - uid: 7662 + - uid: 7893 components: - rot: -1.5707963267948966 rad pos: 31.5,0.5 parent: 2 type: Transform - - uid: 7663 + - uid: 7894 components: - pos: 24.5,2.5 parent: 2 type: Transform - - uid: 7664 + - uid: 7895 components: - rot: 1.5707963267948966 rad pos: 27.5,3.5 parent: 2 type: Transform - - uid: 7665 + - uid: 7896 components: - rot: 3.141592653589793 rad pos: 9.5,-2.5 parent: 2 type: Transform - - uid: 7666 + - uid: 7897 components: - rot: 1.5707963267948966 rad pos: 7.5,38.5 parent: 2 type: Transform - - uid: 7667 + - uid: 7898 components: - rot: 1.5707963267948966 rad pos: 3.5,34.5 parent: 2 type: Transform - - uid: 7668 + - uid: 7899 components: - rot: -1.5707963267948966 rad pos: 10.5,34.5 parent: 2 type: Transform - links: - - 8454 - - 1324 + - 8685 + - 1548 type: DeviceLinkSink - - uid: 7669 + - uid: 7900 components: - rot: 1.5707963267948966 rad pos: 7.5,24.5 parent: 2 type: Transform - - uid: 7670 + - uid: 7901 components: - rot: 3.141592653589793 rad pos: -39.5,-6.5 parent: 2 type: Transform - - uid: 7671 + - uid: 7902 components: - pos: -39.5,-8.5 parent: 2 type: Transform - - uid: 7672 + - uid: 7903 components: - pos: -39.5,-0.5 parent: 2 type: Transform - - uid: 7673 + - uid: 7904 components: - rot: 3.141592653589793 rad pos: -39.5,1.5 parent: 2 type: Transform - - uid: 7674 + - uid: 7905 components: - rot: 1.5707963267948966 rad pos: 13.5,28.5 parent: 2 type: Transform - - uid: 7675 + - uid: 7906 components: - rot: 3.141592653589793 rad pos: 28.5,31.5 parent: 2 type: Transform - - uid: 7676 + - uid: 7907 components: - rot: 1.5707963267948966 rad pos: 13.5,33.5 parent: 2 type: Transform - - uid: 7677 + - uid: 7908 components: - pos: -1.5,10.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7678 + - uid: 7909 components: - rot: 3.141592653589793 rad pos: -0.5,19.5 @@ -50492,7 +51646,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7679 + - uid: 7910 components: - rot: 3.141592653589793 rad pos: -5.5,7.5 @@ -50500,7 +51654,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7680 + - uid: 7911 components: - rot: 3.141592653589793 rad pos: 4.5,19.5 @@ -50508,14 +51662,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7681 + - uid: 7912 components: - pos: -8.5,10.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7682 + - uid: 7913 components: - rot: -1.5707963267948966 rad pos: 0.5,0.5 @@ -50523,7 +51677,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7683 + - uid: 7914 components: - rot: 3.141592653589793 rad pos: 7.5,-6.5 @@ -50531,7 +51685,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7684 + - uid: 7915 components: - rot: -1.5707963267948966 rad pos: -0.5,5.5 @@ -50539,7 +51693,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7685 + - uid: 7916 components: - rot: 1.5707963267948966 rad pos: -7.5,1.5 @@ -50547,7 +51701,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7686 + - uid: 7917 components: - rot: -1.5707963267948966 rad pos: 8.5,5.5 @@ -50555,7 +51709,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7687 + - uid: 7918 components: - rot: 3.141592653589793 rad pos: 8.5,-29.5 @@ -50563,12 +51717,12 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7688 + - uid: 7919 components: - pos: 9.5,2.5 parent: 2 type: Transform - - uid: 7689 + - uid: 7920 components: - rot: -1.5707963267948966 rad pos: -11.5,6.5 @@ -50576,7 +51730,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7690 + - uid: 7921 components: - rot: 3.141592653589793 rad pos: -17.5,7.5 @@ -50584,7 +51738,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7691 + - uid: 7922 components: - rot: 1.5707963267948966 rad pos: -23.5,13.5 @@ -50592,14 +51746,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7692 + - uid: 7923 components: - pos: 4.5,13.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7693 + - uid: 7924 components: - rot: -1.5707963267948966 rad pos: 6.5,-19.5 @@ -50607,14 +51761,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7694 + - uid: 7925 components: - pos: -6.5,-17.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7695 + - uid: 7926 components: - rot: 1.5707963267948966 rad pos: 3.5,-13.5 @@ -50622,7 +51776,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7696 + - uid: 7927 components: - rot: 3.141592653589793 rad pos: 18.5,-20.5 @@ -50630,21 +51784,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7697 + - uid: 7928 components: - pos: 24.5,-19.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7698 + - uid: 7929 components: - pos: 19.5,-14.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7699 + - uid: 7930 components: - rot: 3.141592653589793 rad pos: -3.5,-5.5 @@ -50652,7 +51806,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7700 + - uid: 7931 components: - rot: -1.5707963267948966 rad pos: 3.5,16.5 @@ -50660,14 +51814,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7701 + - uid: 7932 components: - pos: 6.5,17.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7702 + - uid: 7933 components: - rot: -1.5707963267948966 rad pos: 8.5,15.5 @@ -50675,14 +51829,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7703 + - uid: 7934 components: - pos: -33.5,-0.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7704 + - uid: 7935 components: - rot: 3.141592653589793 rad pos: -33.5,-6.5 @@ -50690,14 +51844,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7705 + - uid: 7936 components: - pos: -33.5,-8.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7706 + - uid: 7937 components: - rot: 1.5707963267948966 rad pos: -30.5,0.5 @@ -50705,14 +51859,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7707 + - uid: 7938 components: - pos: 13.5,-24.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7708 + - uid: 7939 components: - rot: 3.141592653589793 rad pos: -15.5,3.5 @@ -50720,14 +51874,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7709 + - uid: 7940 components: - pos: 17.5,33.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7710 + - uid: 7941 components: - rot: 1.5707963267948966 rad pos: -15.5,-19.5 @@ -50735,7 +51889,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7711 + - uid: 7942 components: - rot: 3.141592653589793 rad pos: 23.5,28.5 @@ -50743,7 +51897,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7712 + - uid: 7943 components: - rot: 3.141592653589793 rad pos: 27.5,28.5 @@ -50751,21 +51905,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7713 + - uid: 7944 components: - pos: -17.5,36.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7714 + - uid: 7945 components: - pos: -17.5,30.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7715 + - uid: 7946 components: - rot: 1.5707963267948966 rad pos: -12.5,-17.5 @@ -50773,14 +51927,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7716 + - uid: 7947 components: - pos: -19.5,-2.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7717 + - uid: 7948 components: - rot: -1.5707963267948966 rad pos: -10.5,-20.5 @@ -50788,7 +51942,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7718 + - uid: 7949 components: - rot: 3.141592653589793 rad pos: 25.5,12.5 @@ -50796,7 +51950,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7719 + - uid: 7950 components: - rot: 1.5707963267948966 rad pos: -19.5,18.5 @@ -50804,7 +51958,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7720 + - uid: 7951 components: - rot: -1.5707963267948966 rad pos: -11.5,-11.5 @@ -50812,7 +51966,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7721 + - uid: 7952 components: - rot: 1.5707963267948966 rad pos: -12.5,-5.5 @@ -50820,7 +51974,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7722 + - uid: 7953 components: - rot: 1.5707963267948966 rad pos: -12.5,-1.5 @@ -50828,7 +51982,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7723 + - uid: 7954 components: - rot: -1.5707963267948966 rad pos: -11.5,11.5 @@ -50836,14 +51990,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7724 + - uid: 7955 components: - pos: -15.5,14.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7725 + - uid: 7956 components: - rot: -1.5707963267948966 rad pos: -18.5,14.5 @@ -50851,14 +52005,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7726 + - uid: 7957 components: - pos: -21.5,22.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7727 + - uid: 7958 components: - rot: 1.5707963267948966 rad pos: 13.5,-28.5 @@ -50866,7 +52020,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7728 + - uid: 7959 components: - rot: -1.5707963267948966 rad pos: 19.5,-28.5 @@ -50874,7 +52028,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7729 + - uid: 7960 components: - rot: 3.141592653589793 rad pos: 19.5,12.5 @@ -50882,7 +52036,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7730 + - uid: 7961 components: - rot: 3.141592653589793 rad pos: 15.5,12.5 @@ -50890,7 +52044,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7731 + - uid: 7962 components: - rot: 3.141592653589793 rad pos: 12.5,16.5 @@ -50898,7 +52052,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7732 + - uid: 7963 components: - rot: 1.5707963267948966 rad pos: 10.5,15.5 @@ -50906,7 +52060,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7733 + - uid: 7964 components: - rot: 3.141592653589793 rad pos: 10.5,12.5 @@ -50914,14 +52068,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7734 + - uid: 7965 components: - pos: 5.5,10.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7735 + - uid: 7966 components: - rot: 3.141592653589793 rad pos: 5.5,8.5 @@ -50929,14 +52083,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7736 + - uid: 7967 components: - pos: 8.5,10.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7737 + - uid: 7968 components: - rot: 3.141592653589793 rad pos: 8.5,8.5 @@ -50944,7 +52098,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7738 + - uid: 7969 components: - rot: 1.5707963267948966 rad pos: 3.5,-0.5 @@ -50952,7 +52106,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7739 + - uid: 7970 components: - rot: 1.5707963267948966 rad pos: -15.5,-22.5 @@ -50960,7 +52114,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7740 + - uid: 7971 components: - rot: -1.5707963267948966 rad pos: -8.5,-29.5 @@ -50969,9 +52123,9 @@ entities: - powerLoad: 0 type: ApcPowerReceiver - links: - - 8447 + - 8678 type: DeviceLinkSink - - uid: 7741 + - uid: 7972 components: - rot: 3.141592653589793 rad pos: -8.5,-32.5 @@ -50979,7 +52133,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7742 + - uid: 7973 components: - rot: 3.141592653589793 rad pos: -12.5,-32.5 @@ -50988,9 +52142,9 @@ entities: - powerLoad: 0 type: ApcPowerReceiver - links: - - 8447 + - 8678 type: DeviceLinkSink - - uid: 7743 + - uid: 7974 components: - pos: -12.5,-28.5 parent: 2 @@ -50998,9 +52152,9 @@ entities: - powerLoad: 0 type: ApcPowerReceiver - links: - - 8447 + - 8678 type: DeviceLinkSink - - uid: 7744 + - uid: 7975 components: - rot: -1.5707963267948966 rad pos: 2.5,-26.5 @@ -51008,7 +52162,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7745 + - uid: 7976 components: - rot: 1.5707963267948966 rad pos: -3.5,-26.5 @@ -51016,7 +52170,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7746 + - uid: 7977 components: - rot: 1.5707963267948966 rad pos: -3.5,-24.5 @@ -51024,7 +52178,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7747 + - uid: 7978 components: - rot: -1.5707963267948966 rad pos: 2.5,-24.5 @@ -51032,21 +52186,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7748 + - uid: 7979 components: - pos: 1.5,-17.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7749 + - uid: 7980 components: - pos: -2.5,-17.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7750 + - uid: 7981 components: - rot: -1.5707963267948966 rad pos: -5.5,-22.5 @@ -51054,7 +52208,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7751 + - uid: 7982 components: - rot: -1.5707963267948966 rad pos: -5.5,-25.5 @@ -51062,7 +52216,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7752 + - uid: 7983 components: - rot: -1.5707963267948966 rad pos: 6.5,-22.5 @@ -51070,7 +52224,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7753 + - uid: 7984 components: - rot: 1.5707963267948966 rad pos: 22.5,24.5 @@ -51078,7 +52232,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7754 + - uid: 7985 components: - rot: 1.5707963267948966 rad pos: 3.5,-6.5 @@ -51086,14 +52240,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7755 + - uid: 7986 components: - pos: 16.5,18.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7756 + - uid: 7987 components: - rot: -1.5707963267948966 rad pos: 11.5,-12.5 @@ -51101,7 +52255,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7757 + - uid: 7988 components: - rot: 1.5707963267948966 rad pos: 10.5,-16.5 @@ -51109,7 +52263,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7758 + - uid: 7989 components: - rot: 1.5707963267948966 rad pos: 10.5,-22.5 @@ -51117,7 +52271,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7759 + - uid: 7990 components: - rot: -1.5707963267948966 rad pos: 26.5,24.5 @@ -51125,7 +52279,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7760 + - uid: 7991 components: - rot: -1.5707963267948966 rad pos: 15.5,-22.5 @@ -51133,7 +52287,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7761 + - uid: 7992 components: - rot: 3.141592653589793 rad pos: 24.5,-23.5 @@ -51141,14 +52295,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7762 + - uid: 7993 components: - pos: 14.5,-16.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7763 + - uid: 7994 components: - rot: -1.5707963267948966 rad pos: 8.5,-13.5 @@ -51156,21 +52310,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7764 + - uid: 7995 components: - pos: 8.5,21.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7765 + - uid: 7996 components: - pos: 14.5,-13.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7766 + - uid: 7997 components: - rot: -1.5707963267948966 rad pos: -4.5,-7.5 @@ -51178,7 +52332,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7767 + - uid: 7998 components: - rot: 3.141592653589793 rad pos: -8.5,-8.5 @@ -51186,7 +52340,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7768 + - uid: 7999 components: - rot: 1.5707963267948966 rad pos: -9.5,-11.5 @@ -51194,7 +52348,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7769 + - uid: 8000 components: - rot: 1.5707963267948966 rad pos: -2.5,-12.5 @@ -51202,7 +52356,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7770 + - uid: 8001 components: - rot: -1.5707963267948966 rad pos: 1.5,-11.5 @@ -51210,7 +52364,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7771 + - uid: 8002 components: - rot: -1.5707963267948966 rad pos: -9.5,28.5 @@ -51218,7 +52372,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7772 + - uid: 8003 components: - rot: 1.5707963267948966 rad pos: 1.5,7.5 @@ -51226,21 +52380,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7773 + - uid: 8004 components: - pos: 0.5,-1.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7774 + - uid: 8005 components: - pos: -8.5,-1.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7775 + - uid: 8006 components: - rot: 3.141592653589793 rad pos: -8.5,12.5 @@ -51248,7 +52402,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7776 + - uid: 8007 components: - rot: 3.141592653589793 rad pos: -0.5,12.5 @@ -51256,7 +52410,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7777 + - uid: 8008 components: - rot: 1.5707963267948966 rad pos: 21.5,38.5 @@ -51264,7 +52418,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7778 + - uid: 8009 components: - rot: 1.5707963267948966 rad pos: 23.5,38.5 @@ -51272,7 +52426,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7779 + - uid: 8010 components: - rot: 1.5707963267948966 rad pos: -12.5,28.5 @@ -51280,7 +52434,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7780 + - uid: 8011 components: - rot: -1.5707963267948966 rad pos: 4.5,4.5 @@ -51288,7 +52442,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7781 + - uid: 8012 components: - rot: 1.5707963267948966 rad pos: -2.5,16.5 @@ -51296,7 +52450,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7782 + - uid: 8013 components: - rot: 3.141592653589793 rad pos: 16.5,20.5 @@ -51304,7 +52458,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7783 + - uid: 8014 components: - rot: -1.5707963267948966 rad pos: 17.5,23.5 @@ -51312,7 +52466,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7784 + - uid: 8015 components: - rot: -1.5707963267948966 rad pos: 19.5,27.5 @@ -51320,7 +52474,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7785 + - uid: 8016 components: - rot: 3.141592653589793 rad pos: 12.5,-6.5 @@ -51328,7 +52482,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7786 + - uid: 8017 components: - rot: 1.5707963267948966 rad pos: 4.5,-25.5 @@ -51336,21 +52490,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7787 + - uid: 8018 components: - pos: -20.5,5.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7788 + - uid: 8019 components: - pos: -23.5,10.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7789 + - uid: 8020 components: - rot: -1.5707963267948966 rad pos: -22.5,-5.5 @@ -51358,7 +52512,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7790 + - uid: 8021 components: - rot: -1.5707963267948966 rad pos: -22.5,-1.5 @@ -51366,7 +52520,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7791 + - uid: 8022 components: - rot: 3.141592653589793 rad pos: -24.5,-9.5 @@ -51374,7 +52528,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7792 + - uid: 8023 components: - rot: 3.141592653589793 rad pos: -33.5,1.5 @@ -51382,21 +52536,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7793 + - uid: 8024 components: - pos: -14.5,-2.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7794 + - uid: 8025 components: - pos: -17.5,-6.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7795 + - uid: 8026 components: - rot: 3.141592653589793 rad pos: -14.5,-4.5 @@ -51404,14 +52558,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7796 + - uid: 8027 components: - pos: 30.5,29.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7797 + - uid: 8028 components: - rot: -1.5707963267948966 rad pos: -27.5,-27.5 @@ -51419,7 +52573,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7798 + - uid: 8029 components: - rot: 1.5707963267948966 rad pos: -29.5,-27.5 @@ -51427,7 +52581,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7799 + - uid: 8030 components: - rot: 1.5707963267948966 rad pos: -25.5,-27.5 @@ -51435,7 +52589,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7800 + - uid: 8031 components: - rot: -1.5707963267948966 rad pos: -22.5,-26.5 @@ -51443,7 +52597,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7801 + - uid: 8032 components: - rot: 3.141592653589793 rad pos: -20.5,-16.5 @@ -51451,7 +52605,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7802 + - uid: 8033 components: - rot: -1.5707963267948966 rad pos: -14.5,-14.5 @@ -51459,14 +52613,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7803 + - uid: 8034 components: - pos: -17.5,-11.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7804 + - uid: 8035 components: - rot: 1.5707963267948966 rad pos: -25.5,-16.5 @@ -51474,7 +52628,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7805 + - uid: 8036 components: - rot: 1.5707963267948966 rad pos: -25.5,-20.5 @@ -51482,7 +52636,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7806 + - uid: 8037 components: - rot: 3.141592653589793 rad pos: -28.5,-20.5 @@ -51490,7 +52644,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7807 + - uid: 8038 components: - rot: 3.141592653589793 rad pos: -28.5,-16.5 @@ -51498,14 +52652,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7808 + - uid: 8039 components: - pos: -19.5,-23.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7809 + - uid: 8040 components: - rot: 3.141592653589793 rad pos: -28.5,-24.5 @@ -51513,7 +52667,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7810 + - uid: 8041 components: - rot: 3.141592653589793 rad pos: -17.5,32.5 @@ -51521,7 +52675,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7811 + - uid: 8042 components: - rot: -1.5707963267948966 rad pos: -24.5,4.5 @@ -51529,14 +52683,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7812 + - uid: 8043 components: - pos: 12.5,10.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7813 + - uid: 8044 components: - rot: 3.141592653589793 rad pos: 12.5,4.5 @@ -51544,14 +52698,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7814 + - uid: 8045 components: - pos: 23.5,-15.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7815 + - uid: 8046 components: - rot: -1.5707963267948966 rad pos: -12.5,36.5 @@ -51559,7 +52713,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7816 + - uid: 8047 components: - rot: 1.5707963267948966 rad pos: -14.5,31.5 @@ -51567,14 +52721,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7817 + - uid: 8048 components: - pos: 0.5,37.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7818 + - uid: 8049 components: - rot: -1.5707963267948966 rad pos: 1.5,35.5 @@ -51582,7 +52736,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7819 + - uid: 8050 components: - rot: 1.5707963267948966 rad pos: -2.5,36.5 @@ -51590,7 +52744,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7820 + - uid: 8051 components: - rot: 1.5707963267948966 rad pos: -30.5,-7.5 @@ -51598,7 +52752,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7821 + - uid: 8052 components: - rot: -1.5707963267948966 rad pos: -25.5,13.5 @@ -51606,7 +52760,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7822 + - uid: 8053 components: - rot: 1.5707963267948966 rad pos: -28.5,8.5 @@ -51614,7 +52768,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7823 + - uid: 8054 components: - rot: 1.5707963267948966 rad pos: -28.5,13.5 @@ -51622,7 +52776,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7824 + - uid: 8055 components: - rot: -1.5707963267948966 rad pos: -30.5,12.5 @@ -51630,7 +52784,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7825 + - uid: 8056 components: - rot: -1.5707963267948966 rad pos: -30.5,9.5 @@ -51638,70 +52792,70 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7826 + - uid: 8057 components: - pos: -29.5,-30.5 parent: 2 type: Transform - - uid: 7827 + - uid: 8058 components: - pos: -26.5,-30.5 parent: 2 type: Transform - - uid: 7828 + - uid: 8059 components: - rot: 3.141592653589793 rad pos: -25.5,-42.5 parent: 2 type: Transform - - uid: 7829 + - uid: 8060 components: - rot: 3.141592653589793 rad pos: -22.5,-42.5 parent: 2 type: Transform - - uid: 7830 + - uid: 8061 components: - rot: 1.5707963267948966 rad pos: -18.5,-39.5 parent: 2 type: Transform - - uid: 7831 + - uid: 8062 components: - rot: 1.5707963267948966 rad pos: -18.5,-36.5 parent: 2 type: Transform - - uid: 7832 + - uid: 8063 components: - rot: 1.5707963267948966 rad pos: -18.5,-27.5 parent: 2 type: Transform - - uid: 7833 + - uid: 8064 components: - pos: -31.5,-41.5 parent: 2 type: Transform - - uid: 7834 + - uid: 8065 components: - rot: -1.5707963267948966 rad pos: 13.5,1.5 parent: 2 type: Transform - - uid: 7835 + - uid: 8066 components: - rot: -1.5707963267948966 rad pos: 5.5,38.5 parent: 2 type: Transform - - uid: 7836 + - uid: 8067 components: - rot: 1.5707963267948966 rad pos: 42.5,-10.5 parent: 2 type: Transform - - uid: 7837 + - uid: 8068 components: - rot: 1.5707963267948966 rad pos: 42.5,-15.5 @@ -51709,7 +52863,7 @@ entities: type: Transform - proto: PoweredLightBlueInterior entities: - - uid: 7838 + - uid: 8069 components: - rot: 3.141592653589793 rad pos: 11.5,23.5 @@ -51717,7 +52871,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7839 + - uid: 8070 components: - pos: 20.5,23.5 parent: 2 @@ -51726,7 +52880,7 @@ entities: type: ApcPowerReceiver - proto: PoweredLightColoredRed entities: - - uid: 7840 + - uid: 8071 components: - pos: 2.5,29.5 parent: 2 @@ -51735,7 +52889,7 @@ entities: type: ApcPowerReceiver - proto: PoweredlightExterior entities: - - uid: 7841 + - uid: 8072 components: - rot: -1.5707963267948966 rad pos: -4.5,43.5 @@ -51743,7 +52897,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7842 + - uid: 8073 components: - rot: 1.5707963267948966 rad pos: -10.5,43.5 @@ -51751,14 +52905,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7843 + - uid: 8074 components: - pos: -8.5,-34.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7844 + - uid: 8075 components: - pos: -7.5,47.5 parent: 2 @@ -51767,7 +52921,7 @@ entities: type: ApcPowerReceiver - proto: PoweredlightLED entities: - - uid: 7845 + - uid: 8076 components: - rot: 1.5707963267948966 rad pos: -9.5,17.5 @@ -51775,7 +52929,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7846 + - uid: 8077 components: - rot: -1.5707963267948966 rad pos: -4.5,17.5 @@ -51783,7 +52937,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7847 + - uid: 8078 components: - rot: 1.5707963267948966 rad pos: -10.5,33.5 @@ -51791,21 +52945,21 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7848 + - uid: 8079 components: - pos: -7.5,24.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7849 + - uid: 8080 components: - pos: -7.5,40.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7850 + - uid: 8081 components: - rot: 1.5707963267948966 rad pos: -2.5,25.5 @@ -51813,7 +52967,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7851 + - uid: 8082 components: - rot: 1.5707963267948966 rad pos: -7.5,28.5 @@ -51821,7 +52975,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7852 + - uid: 8083 components: - rot: 3.141592653589793 rad pos: -4.5,31.5 @@ -51829,7 +52983,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7853 + - uid: 8084 components: - rot: -1.5707963267948966 rad pos: 0.5,40.5 @@ -51837,7 +52991,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7854 + - uid: 8085 components: - rot: -1.5707963267948966 rad pos: 1.5,32.5 @@ -51845,7 +52999,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7855 + - uid: 8086 components: - rot: -1.5707963267948966 rad pos: 5.5,24.5 @@ -51855,36 +53009,36 @@ entities: type: ApcPowerReceiver - proto: PoweredLightPostSmall entities: - - uid: 7856 + - uid: 8087 components: - pos: 36.5,-14.5 parent: 2 type: Transform - - uid: 7857 + - uid: 8088 components: - pos: 32.5,-9.5 parent: 2 type: Transform - - uid: 7858 + - uid: 8089 components: - pos: 40.5,-11.5 parent: 2 type: Transform - proto: PoweredSmallLight entities: - - uid: 7859 + - uid: 8090 components: - rot: 3.141592653589793 rad pos: 8.5,-8.5 parent: 2 type: Transform - - uid: 7860 + - uid: 8091 components: - rot: 1.5707963267948966 rad pos: 30.5,-6.5 parent: 2 type: Transform - - uid: 7861 + - uid: 8092 components: - rot: -1.5707963267948966 rad pos: -9.5,5.5 @@ -51892,7 +53046,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7862 + - uid: 8093 components: - rot: -1.5707963267948966 rad pos: -9.5,1.5 @@ -51900,7 +53054,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7863 + - uid: 8094 components: - rot: -1.5707963267948966 rad pos: -7.5,4.5 @@ -51908,7 +53062,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7864 + - uid: 8095 components: - rot: 3.141592653589793 rad pos: 14.5,-6.5 @@ -51916,7 +53070,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7865 + - uid: 8096 components: - rot: 3.141592653589793 rad pos: -15.5,-0.5 @@ -51924,7 +53078,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7866 + - uid: 8097 components: - rot: 3.141592653589793 rad pos: -19.5,-0.5 @@ -51932,7 +53086,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7867 + - uid: 8098 components: - rot: 3.141592653589793 rad pos: 11.5,-25.5 @@ -51940,14 +53094,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7868 + - uid: 8099 components: - pos: 17.5,-22.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7869 + - uid: 8100 components: - rot: 3.141592653589793 rad pos: 11.5,8.5 @@ -51955,7 +53109,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7870 + - uid: 8101 components: - rot: 1.5707963267948966 rad pos: 24.5,-10.5 @@ -51963,14 +53117,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7871 + - uid: 8102 components: - pos: 19.5,-9.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7872 + - uid: 8103 components: - rot: -1.5707963267948966 rad pos: 33.5,14.5 @@ -51978,7 +53132,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7873 + - uid: 8104 components: - rot: 1.5707963267948966 rad pos: -23.5,17.5 @@ -51986,7 +53140,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7874 + - uid: 8105 components: - rot: -1.5707963267948966 rad pos: -21.5,17.5 @@ -51994,7 +53148,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7875 + - uid: 8106 components: - rot: -1.5707963267948966 rad pos: -13.5,21.5 @@ -52002,7 +53156,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7876 + - uid: 8107 components: - rot: 3.141592653589793 rad pos: -13.5,30.5 @@ -52010,14 +53164,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7877 + - uid: 8108 components: - pos: -6.5,-14.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7878 + - uid: 8109 components: - rot: 3.141592653589793 rad pos: -2.5,-15.5 @@ -52025,14 +53179,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7879 + - uid: 8110 components: - pos: -0.5,-7.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7880 + - uid: 8111 components: - rot: -1.5707963267948966 rad pos: -25.5,19.5 @@ -52040,7 +53194,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7881 + - uid: 8112 components: - rot: 3.141592653589793 rad pos: -17.5,24.5 @@ -52048,7 +53202,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7882 + - uid: 8113 components: - rot: 3.141592653589793 rad pos: -22.5,27.5 @@ -52056,28 +53210,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7883 + - uid: 8114 components: - pos: -20.5,30.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7884 + - uid: 8115 components: - pos: 29.5,10.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7885 + - uid: 8116 components: - pos: 18.5,10.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7886 + - uid: 8117 components: - rot: 1.5707963267948966 rad pos: 15.5,5.5 @@ -52085,28 +53239,28 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7887 + - uid: 8118 components: - pos: 29.5,14.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7888 + - uid: 8119 components: - pos: -6.5,-28.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7889 + - uid: 8120 components: - pos: 34.5,26.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7890 + - uid: 8121 components: - rot: -1.5707963267948966 rad pos: 37.5,20.5 @@ -52114,14 +53268,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7891 + - uid: 8122 components: - pos: 31.5,23.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7892 + - uid: 8123 components: - rot: 3.141592653589793 rad pos: -9.5,16.5 @@ -52129,7 +53283,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7893 + - uid: 8124 components: - rot: 3.141592653589793 rad pos: -4.5,16.5 @@ -52137,7 +53291,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7894 + - uid: 8125 components: - rot: 1.5707963267948966 rad pos: -35.5,32.5 @@ -52145,14 +53299,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7895 + - uid: 8126 components: - pos: -32.5,35.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7896 + - uid: 8127 components: - rot: -1.5707963267948966 rad pos: -29.5,32.5 @@ -52160,7 +53314,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7897 + - uid: 8128 components: - rot: 3.141592653589793 rad pos: -32.5,29.5 @@ -52168,14 +53322,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7898 + - uid: 8129 components: - pos: -32.5,27.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7899 + - uid: 8130 components: - rot: 3.141592653589793 rad pos: -32.5,24.5 @@ -52183,14 +53337,14 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7900 + - uid: 8131 components: - pos: 25.5,18.5 parent: 2 type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7901 + - uid: 8132 components: - rot: -1.5707963267948966 rad pos: 1.5,-9.5 @@ -52198,7 +53352,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7902 + - uid: 8133 components: - rot: 1.5707963267948966 rad pos: 27.5,5.5 @@ -52206,7 +53360,7 @@ entities: type: Transform - powerLoad: 0 type: ApcPowerReceiver - - uid: 7903 + - uid: 8134 components: - rot: -1.5707963267948966 rad pos: -17.5,-19.5 @@ -52214,13 +53368,13 @@ entities: type: Transform - proto: PoweredSmallLightEmpty entities: - - uid: 7904 + - uid: 8135 components: - rot: 1.5707963267948966 rad pos: -27.5,27.5 parent: 2 type: Transform - - uid: 7905 + - uid: 8136 components: - rot: 1.5707963267948966 rad pos: 20.5,7.5 @@ -52230,514 +53384,515 @@ entities: type: ApcPowerReceiver - proto: Protolathe entities: - - uid: 7906 + - uid: 8137 components: - pos: -7.5,28.5 parent: 2 type: Transform - proto: Rack entities: - - uid: 7907 + - uid: 8138 components: - rot: -1.5707963267948966 rad pos: 11.5,-10.5 parent: 2 type: Transform - - uid: 7908 + - uid: 8139 components: - pos: 34.5,-14.5 parent: 2 type: Transform - - uid: 7909 + - uid: 8140 components: - rot: 1.5707963267948966 rad pos: 8.5,15.5 parent: 2 type: Transform - - uid: 7910 - components: - - pos: -0.5,19.5 - parent: 2 - type: Transform - - uid: 7911 + - uid: 8141 components: - - pos: 0.5,19.5 + - pos: -1.5,22.5 parent: 2 type: Transform - - uid: 7912 + - uid: 8142 components: - pos: 14.5,-2.5 parent: 2 type: Transform - - uid: 7913 + - uid: 8143 components: - pos: 23.5,-15.5 parent: 2 type: Transform - - uid: 7914 + - uid: 8144 components: - pos: 22.5,-17.5 parent: 2 type: Transform - - uid: 7915 + - uid: 8145 components: - pos: 23.5,-17.5 parent: 2 type: Transform - - uid: 7916 + - uid: 8146 components: - pos: 19.5,-11.5 parent: 2 type: Transform - - uid: 7917 + - uid: 8147 components: - pos: 24.5,-15.5 parent: 2 type: Transform - - uid: 7918 - components: - - pos: 24.5,-17.5 - parent: 2 - type: Transform - - uid: 7919 + - uid: 8148 components: - pos: -6.5,-14.5 parent: 2 type: Transform - - uid: 7920 + - uid: 8149 components: - pos: 15.5,7.5 parent: 2 type: Transform - - uid: 7921 + - uid: 8150 components: - pos: 17.5,5.5 parent: 2 type: Transform - - uid: 7922 + - uid: 8151 components: - pos: 29.5,16.5 parent: 2 type: Transform - - uid: 7923 + - uid: 8152 components: - pos: 17.5,-9.5 parent: 2 type: Transform - - uid: 7924 + - uid: 8153 components: - pos: 15.5,-9.5 parent: 2 type: Transform - - uid: 7925 + - uid: 8154 components: - pos: -16.5,21.5 parent: 2 type: Transform - - uid: 7926 + - uid: 8155 components: - rot: 1.5707963267948966 rad pos: -1.5,-9.5 parent: 2 type: Transform - - uid: 7927 + - uid: 8156 components: - rot: 1.5707963267948966 rad pos: 0.5,-9.5 parent: 2 type: Transform - - uid: 7928 + - uid: 8157 components: - rot: 1.5707963267948966 rad pos: 33.5,-14.5 parent: 2 type: Transform + - uid: 8158 + components: + - pos: -0.5,22.5 + parent: 2 + type: Transform + - uid: 8159 + components: + - rot: 3.141592653589793 rad + pos: -6.5,-17.5 + parent: 2 + type: Transform - proto: Railing entities: - - uid: 7929 + - uid: 8160 components: - rot: -1.5707963267948966 rad pos: 17.5,-2.5 parent: 2 type: Transform - - uid: 7930 + - uid: 8161 components: - rot: -1.5707963267948966 rad pos: 17.5,-1.5 parent: 2 type: Transform - - uid: 7931 + - uid: 8162 components: - rot: 1.5707963267948966 rad pos: -0.5,1.5 parent: 2 type: Transform - - uid: 7932 + - uid: 8163 components: - rot: 3.141592653589793 rad pos: 0.5,0.5 parent: 2 type: Transform - - uid: 7933 + - uid: 8164 components: - rot: 3.141592653589793 rad pos: -35.5,31.5 parent: 2 type: Transform - - uid: 7934 + - uid: 8165 components: - rot: -1.5707963267948966 rad pos: -31.5,33.5 parent: 2 type: Transform - - uid: 7935 + - uid: 8166 components: - rot: 3.141592653589793 rad pos: -32.5,31.5 parent: 2 type: Transform - - uid: 7936 + - uid: 8167 components: - rot: 3.141592653589793 rad pos: -34.5,31.5 parent: 2 type: Transform - - uid: 7937 + - uid: 8168 components: - rot: 3.141592653589793 rad pos: -33.5,31.5 parent: 2 type: Transform - - uid: 7938 + - uid: 8169 components: - rot: -1.5707963267948966 rad pos: -31.5,35.5 parent: 2 type: Transform - - uid: 7939 + - uid: 8170 components: - rot: -1.5707963267948966 rad pos: -31.5,32.5 parent: 2 type: Transform - - uid: 7940 + - uid: 8171 components: - rot: -1.5707963267948966 rad pos: -31.5,34.5 parent: 2 type: Transform - - uid: 7941 + - uid: 8172 components: - rot: 1.5707963267948966 rad pos: -8.5,44.5 parent: 2 type: Transform - - uid: 7942 + - uid: 8173 components: - pos: -7.5,45.5 parent: 2 type: Transform - - uid: 7943 + - uid: 8174 components: - rot: -1.5707963267948966 rad pos: -6.5,44.5 parent: 2 type: Transform - - uid: 7944 + - uid: 8175 components: - rot: 3.141592653589793 rad pos: -7.5,43.5 parent: 2 type: Transform - - uid: 7945 + - uid: 8176 components: - pos: -28.5,-40.5 parent: 2 type: Transform - - uid: 7946 + - uid: 8177 components: - pos: -27.5,-40.5 parent: 2 type: Transform - - uid: 7947 + - uid: 8178 components: - rot: 1.5707963267948966 rad pos: -26.5,-39.5 parent: 2 type: Transform - - uid: 7948 + - uid: 8179 components: - rot: 1.5707963267948966 rad pos: -26.5,-38.5 parent: 2 type: Transform - - uid: 7949 + - uid: 8180 components: - rot: 1.5707963267948966 rad pos: -26.5,-37.5 parent: 2 type: Transform - - uid: 7950 + - uid: 8181 components: - rot: 1.5707963267948966 rad pos: -26.5,-36.5 parent: 2 type: Transform - - uid: 7951 + - uid: 8182 components: - rot: 1.5707963267948966 rad pos: -26.5,-35.5 parent: 2 type: Transform - - uid: 7952 + - uid: 8183 components: - rot: 1.5707963267948966 rad pos: -26.5,-34.5 parent: 2 type: Transform - - uid: 7953 + - uid: 8184 components: - rot: 1.5707963267948966 rad pos: -26.5,-33.5 parent: 2 type: Transform - - uid: 7954 + - uid: 8185 components: - rot: 3.141592653589793 rad pos: -27.5,-32.5 parent: 2 type: Transform - - uid: 7955 + - uid: 8186 components: - rot: 3.141592653589793 rad pos: -28.5,-32.5 parent: 2 type: Transform - - uid: 7956 + - uid: 8187 components: - rot: 3.141592653589793 rad pos: -29.5,-32.5 parent: 2 type: Transform - - uid: 7957 + - uid: 8188 components: - rot: 3.141592653589793 rad pos: -30.5,-32.5 parent: 2 type: Transform - - uid: 7958 + - uid: 8189 components: - rot: 3.141592653589793 rad pos: -31.5,-32.5 parent: 2 type: Transform - - uid: 7959 + - uid: 8190 components: - rot: -1.5707963267948966 rad pos: -23.5,-33.5 parent: 2 type: Transform - - uid: 7960 + - uid: 8191 components: - rot: -1.5707963267948966 rad pos: -23.5,-34.5 parent: 2 type: Transform - - uid: 7961 + - uid: 8192 components: - rot: -1.5707963267948966 rad pos: -23.5,-35.5 parent: 2 type: Transform - - uid: 7962 + - uid: 8193 components: - rot: -1.5707963267948966 rad pos: -23.5,-36.5 parent: 2 type: Transform - - uid: 7963 + - uid: 8194 components: - rot: -1.5707963267948966 rad pos: -23.5,-37.5 parent: 2 type: Transform - - uid: 7964 + - uid: 8195 components: - rot: -1.5707963267948966 rad pos: -23.5,-38.5 parent: 2 type: Transform - - uid: 7965 + - uid: 8196 components: - rot: -1.5707963267948966 rad pos: -23.5,-39.5 parent: 2 type: Transform - - uid: 7966 + - uid: 8197 components: - pos: -14.5,-42.5 parent: 2 type: Transform - - uid: 7967 + - uid: 8198 components: - pos: -13.5,-42.5 parent: 2 type: Transform - - uid: 7968 + - uid: 8199 components: - pos: -12.5,-42.5 parent: 2 type: Transform - - uid: 7969 + - uid: 8200 components: - pos: -11.5,-42.5 parent: 2 type: Transform - - uid: 7970 + - uid: 8201 components: - rot: 3.141592653589793 rad pos: -11.5,-41.5 parent: 2 type: Transform - - uid: 7971 + - uid: 8202 components: - rot: 3.141592653589793 rad pos: -12.5,-41.5 parent: 2 type: Transform - - uid: 7972 + - uid: 8203 components: - rot: 3.141592653589793 rad pos: -13.5,-41.5 parent: 2 type: Transform - - uid: 7973 + - uid: 8204 components: - rot: 3.141592653589793 rad pos: -14.5,-41.5 parent: 2 type: Transform - - uid: 7974 + - uid: 8205 components: - rot: 3.141592653589793 rad pos: -15.5,-41.5 parent: 2 type: Transform - - uid: 7975 + - uid: 8206 components: - rot: 3.141592653589793 rad pos: -16.5,-41.5 parent: 2 type: Transform - - uid: 7976 + - uid: 8207 components: - rot: 1.5707963267948966 rad pos: -17.5,-40.5 parent: 2 type: Transform - - uid: 7977 + - uid: 8208 components: - rot: 1.5707963267948966 rad pos: -17.5,-39.5 parent: 2 type: Transform - - uid: 7978 + - uid: 8209 components: - rot: 1.5707963267948966 rad pos: -17.5,-38.5 parent: 2 type: Transform - - uid: 7979 + - uid: 8210 components: - rot: 1.5707963267948966 rad pos: -17.5,-37.5 parent: 2 type: Transform - - uid: 7980 + - uid: 8211 components: - rot: 1.5707963267948966 rad pos: -17.5,-36.5 parent: 2 type: Transform - - uid: 7981 + - uid: 8212 components: - rot: 1.5707963267948966 rad pos: -17.5,-35.5 parent: 2 type: Transform - - uid: 7982 + - uid: 8213 components: - rot: 1.5707963267948966 rad pos: -17.5,-34.5 parent: 2 type: Transform - - uid: 7983 + - uid: 8214 components: - rot: 1.5707963267948966 rad pos: -17.5,-33.5 parent: 2 type: Transform - - uid: 7984 + - uid: 8215 components: - rot: 1.5707963267948966 rad pos: -17.5,-32.5 parent: 2 type: Transform - - uid: 7985 + - uid: 8216 components: - rot: 1.5707963267948966 rad pos: -17.5,-31.5 parent: 2 type: Transform - - uid: 7986 + - uid: 8217 components: - rot: 1.5707963267948966 rad pos: -17.5,-30.5 parent: 2 type: Transform - - uid: 7987 + - uid: 8218 components: - rot: 1.5707963267948966 rad pos: -17.5,-29.5 parent: 2 type: Transform - - uid: 7988 + - uid: 8219 components: - rot: 1.5707963267948966 rad pos: -17.5,-28.5 parent: 2 type: Transform - - uid: 7989 + - uid: 8220 components: - rot: 1.5707963267948966 rad pos: -17.5,-27.5 parent: 2 type: Transform - - uid: 7990 + - uid: 8221 components: - rot: 1.5707963267948966 rad pos: -17.5,-26.5 parent: 2 type: Transform - - uid: 7991 + - uid: 8222 components: - rot: 1.5707963267948966 rad pos: 32.5,-3.5 parent: 2 type: Transform - - uid: 7992 + - uid: 8223 components: - rot: 1.5707963267948966 rad pos: 31.5,-5.5 parent: 2 type: Transform - - uid: 7993 + - uid: 8224 components: - rot: 1.5707963267948966 rad pos: 31.5,-6.5 parent: 2 type: Transform - - uid: 7994 + - uid: 8225 components: - rot: 1.5707963267948966 rad pos: 31.5,-7.5 @@ -52745,112 +53900,112 @@ entities: type: Transform - proto: RailingCorner entities: - - uid: 7995 + - uid: 8226 components: - rot: 3.141592653589793 rad pos: 17.5,-0.5 parent: 2 type: Transform - - uid: 7996 + - uid: 8227 components: - rot: 1.5707963267948966 rad pos: 18.5,-0.5 parent: 2 type: Transform - - uid: 7997 + - uid: 8228 components: - pos: -26.5,-40.5 parent: 2 type: Transform - - uid: 7998 + - uid: 8229 components: - rot: 1.5707963267948966 rad pos: -26.5,-32.5 parent: 2 type: Transform - - uid: 7999 + - uid: 8230 components: - rot: 1.5707963267948966 rad pos: -10.5,-41.5 parent: 2 type: Transform - - uid: 8000 + - uid: 8231 components: - pos: -10.5,-42.5 parent: 2 type: Transform - - uid: 8001 + - uid: 8232 components: - pos: 32.5,-4.5 parent: 2 type: Transform - proto: RailingCornerSmall entities: - - uid: 8002 + - uid: 8233 components: - rot: 1.5707963267948966 rad pos: 19.5,-29.5 parent: 2 type: Transform - - uid: 8003 + - uid: 8234 components: - rot: 3.141592653589793 rad pos: 14.5,-29.5 parent: 2 type: Transform - - uid: 8004 + - uid: 8235 components: - rot: 3.141592653589793 rad pos: -0.5,2.5 parent: 2 type: Transform - - uid: 8005 + - uid: 8236 components: - rot: -1.5707963267948966 rad pos: -0.5,0.5 parent: 2 type: Transform - - uid: 8006 + - uid: 8237 components: - pos: -31.5,31.5 parent: 2 type: Transform - - uid: 8007 + - uid: 8238 components: - rot: -1.5707963267948966 rad pos: -8.5,43.5 parent: 2 type: Transform - - uid: 8008 + - uid: 8239 components: - rot: 3.141592653589793 rad pos: -8.5,45.5 parent: 2 type: Transform - - uid: 8009 + - uid: 8240 components: - rot: 1.5707963267948966 rad pos: -6.5,45.5 parent: 2 type: Transform - - uid: 8010 + - uid: 8241 components: - pos: -6.5,43.5 parent: 2 type: Transform - - uid: 8011 + - uid: 8242 components: - rot: -1.5707963267948966 rad pos: -17.5,-41.5 parent: 2 type: Transform - - uid: 8012 + - uid: 8243 components: - rot: 3.141592653589793 rad pos: 31.5,-4.5 parent: 2 type: Transform - - uid: 8013 + - uid: 8244 components: - rot: -1.5707963267948966 rad pos: 31.5,-8.5 @@ -52858,163 +54013,163 @@ entities: type: Transform - proto: RandomArcade entities: - - uid: 8014 + - uid: 8245 components: - pos: 1.5,37.5 parent: 2 type: Transform - proto: RandomArtifactSpawner entities: - - uid: 8015 + - uid: 8246 components: - pos: -13.5,36.5 parent: 2 type: Transform - proto: RandomCrystalSpawner entities: - - uid: 8016 + - uid: 8247 components: - pos: 28.5,-17.5 parent: 2 type: Transform - - uid: 8017 + - uid: 8248 components: - pos: 33.5,-16.5 parent: 2 type: Transform - - uid: 8018 + - uid: 8249 components: - pos: 38.5,-9.5 parent: 2 type: Transform - - uid: 8019 + - uid: 8250 components: - pos: 38.5,-21.5 parent: 2 type: Transform - - uid: 8020 + - uid: 8251 components: - pos: 31.5,-27.5 parent: 2 type: Transform - - uid: 8021 + - uid: 8252 components: - pos: 25.5,-32.5 parent: 2 type: Transform - - uid: 8022 + - uid: 8253 components: - pos: -20.5,-33.5 parent: 2 type: Transform - - uid: 8023 + - uid: 8254 components: - pos: -35.5,-41.5 parent: 2 type: Transform - - uid: 8024 + - uid: 8255 components: - pos: -33.5,-31.5 parent: 2 type: Transform - - uid: 8025 + - uid: 8256 components: - pos: -38.5,30.5 parent: 2 type: Transform - - uid: 8026 + - uid: 8257 components: - pos: -34.5,38.5 parent: 2 type: Transform - - uid: 8027 + - uid: 8258 components: - pos: -36.5,43.5 parent: 2 type: Transform - - uid: 8028 + - uid: 8259 components: - pos: -25.5,39.5 parent: 2 type: Transform - - uid: 8029 + - uid: 8260 components: - pos: -14.5,41.5 parent: 2 type: Transform - - uid: 8030 + - uid: 8261 components: - pos: -9.5,52.5 parent: 2 type: Transform - - uid: 8031 + - uid: 8262 components: - pos: -1.5,47.5 parent: 2 type: Transform - - uid: 8032 + - uid: 8263 components: - pos: 16.5,39.5 parent: 2 type: Transform - - uid: 8033 + - uid: 8264 components: - pos: 20.5,42.5 parent: 2 type: Transform - - uid: 8034 + - uid: 8265 components: - pos: 24.5,41.5 parent: 2 type: Transform - - uid: 8035 + - uid: 8266 components: - pos: 31.5,35.5 parent: 2 type: Transform - proto: RandomDrinkBottle entities: - - uid: 8036 + - uid: 8267 components: - pos: 33.5,13.5 parent: 2 type: Transform - - uid: 8037 + - uid: 8268 components: - pos: -7.5,-6.5 parent: 2 type: Transform - proto: RandomFoodBakedWhole entities: - - uid: 8038 + - uid: 8269 components: - pos: -6.5,-1.5 parent: 2 type: Transform - proto: RandomFoodMeal entities: - - uid: 8039 + - uid: 8270 components: - pos: -2.5,-0.5 parent: 2 type: Transform - proto: RandomInstruments entities: - - uid: 8040 + - uid: 8271 components: - pos: 0.5,-11.5 parent: 2 type: Transform - rareChance: 0.2 type: RandomSpawner - - uid: 8041 + - uid: 8272 components: - pos: 1.5,-11.5 parent: 2 type: Transform - rareChance: 0.2 type: RandomSpawner - - uid: 8042 + - uid: 8273 components: - pos: -2.5,47.5 parent: 2 @@ -53022,1778 +54177,1778 @@ entities: - chance: 1 rareChance: 1 type: RandomSpawner - - uid: 8043 + - uid: 8274 components: - pos: 34.5,21.5 parent: 2 type: Transform - proto: RandomPainting entities: - - uid: 8044 + - uid: 8275 components: - pos: 33.5,18.5 parent: 2 type: Transform - proto: RandomPosterAny entities: - - uid: 8045 + - uid: 8276 components: - pos: -8.5,6.5 parent: 2 type: Transform - - uid: 8046 + - uid: 8277 components: - pos: 32.5,10.5 parent: 2 type: Transform - - uid: 8047 + - uid: 8278 components: - pos: 15.5,8.5 parent: 2 type: Transform - - uid: 8048 + - uid: 8279 components: - pos: 15.5,-8.5 parent: 2 type: Transform - proto: RandomPosterContraband entities: - - uid: 8049 + - uid: 8280 components: - pos: 9.5,-16.5 parent: 2 type: Transform - - uid: 8050 + - uid: 8281 components: - pos: -28.5,-21.5 parent: 2 type: Transform - - uid: 8051 + - uid: 8282 components: - pos: 25.5,-12.5 parent: 2 type: Transform - - uid: 8052 + - uid: 8283 components: - pos: 23.5,-10.5 parent: 2 type: Transform - - uid: 8053 + - uid: 8284 components: - pos: 18.5,-24.5 parent: 2 type: Transform - - uid: 8054 + - uid: 8285 components: - pos: 31.5,24.5 parent: 2 type: Transform - proto: RandomPosterLegit entities: - - uid: 8055 + - uid: 8286 components: - pos: -11.5,14.5 parent: 2 type: Transform - - uid: 8056 + - uid: 8287 components: - pos: -13.5,-9.5 parent: 2 type: Transform - - uid: 8057 + - uid: 8288 components: - pos: -19.5,-1.5 parent: 2 type: Transform - - uid: 8058 + - uid: 8289 components: - pos: -13.5,6.5 parent: 2 type: Transform - - uid: 8059 + - uid: 8290 components: - pos: 9.5,11.5 parent: 2 type: Transform - - uid: 8060 + - uid: 8291 components: - pos: -16.5,-10.5 parent: 2 type: Transform - - uid: 8061 + - uid: 8292 components: - pos: -21.5,-17.5 parent: 2 type: Transform - - uid: 8062 + - uid: 8293 components: - pos: -29.5,-17.5 parent: 2 type: Transform - - uid: 8063 + - uid: 8294 components: - pos: -8.5,-0.5 parent: 2 type: Transform - - uid: 8064 + - uid: 8295 components: - pos: 10.5,-3.5 parent: 2 type: Transform - proto: RandomSnacks entities: - - uid: 8065 + - uid: 8296 components: - pos: 17.5,5.5 parent: 2 type: Transform - - uid: 8066 + - uid: 8297 components: - pos: 17.5,5.5 parent: 2 type: Transform - proto: RandomSoap entities: - - uid: 8067 + - uid: 8298 components: - pos: -14.5,-17.5 parent: 2 type: Transform - - uid: 8068 + - uid: 8299 components: - pos: 14.5,-5.5 parent: 2 type: Transform - - uid: 8069 + - uid: 8300 components: - pos: -15.5,16.5 parent: 2 type: Transform - - uid: 8070 + - uid: 8301 components: - pos: -7.5,-32.5 parent: 2 type: Transform - - uid: 8071 + - uid: 8302 components: - pos: -15.5,-17.5 parent: 2 type: Transform - proto: RandomSpawner entities: - - uid: 8072 + - uid: 8303 components: - pos: -24.5,-22.5 parent: 2 type: Transform - - uid: 8073 + - uid: 8304 components: - pos: -21.5,-15.5 parent: 2 type: Transform - - uid: 8074 + - uid: 8305 components: - pos: -12.5,-16.5 parent: 2 type: Transform - - uid: 8075 + - uid: 8306 components: - pos: -11.5,-21.5 parent: 2 type: Transform - - uid: 8076 + - uid: 8307 components: - pos: -11.5,-4.5 parent: 2 type: Transform - - uid: 8077 + - uid: 8308 components: - pos: -23.5,-6.5 parent: 2 type: Transform - - uid: 8078 + - uid: 8309 components: - pos: -12.5,10.5 parent: 2 type: Transform - - uid: 8079 + - uid: 8310 components: - pos: 0.5,12.5 parent: 2 type: Transform - - uid: 8080 + - uid: 8311 components: - pos: 11.5,13.5 parent: 2 type: Transform - - uid: 8081 + - uid: 8312 components: - pos: -21.5,24.5 parent: 2 type: Transform - - uid: 8082 + - uid: 8313 components: - pos: -26.5,25.5 parent: 2 type: Transform - - uid: 8083 + - uid: 8314 components: - pos: -17.5,-0.5 parent: 2 type: Transform - - uid: 8084 + - uid: 8315 components: - pos: 4.5,-12.5 parent: 2 type: Transform - - uid: 8085 + - uid: 8316 components: - pos: 6.5,-22.5 parent: 2 type: Transform - - uid: 8086 + - uid: 8317 components: - pos: 16.5,-29.5 parent: 2 type: Transform - - uid: 8087 + - uid: 8318 components: - pos: 17.5,-26.5 parent: 2 type: Transform - - uid: 8088 + - uid: 8319 components: - pos: 25.5,-10.5 parent: 2 type: Transform - - uid: 8089 + - uid: 8320 components: - pos: 14.5,-11.5 parent: 2 type: Transform - - uid: 8090 + - uid: 8321 components: - pos: 17.5,7.5 parent: 2 type: Transform - proto: RandomVending entities: - - uid: 8091 + - uid: 8322 components: - pos: 21.5,18.5 parent: 2 type: Transform - proto: RandomVendingDrinks entities: - - uid: 8092 + - uid: 8323 components: - pos: 19.5,-2.5 parent: 2 type: Transform - proto: RCD entities: - - uid: 8093 + - uid: 8324 components: - pos: 21.60603,12.67695 parent: 2 type: Transform - proto: RCDAmmo entities: - - uid: 8094 + - uid: 8325 components: - pos: 21.32478,12.374657 parent: 2 type: Transform - - uid: 8095 + - uid: 8326 components: - pos: 21.226742,12.493711 parent: 2 type: Transform - proto: Recycler entities: - - uid: 8096 + - uid: 8327 components: - rot: 1.5707963267948966 rad pos: 12.5,8.5 parent: 2 type: Transform - links: - - 9157 + - 9386 type: DeviceLinkSink - proto: ReinforcedGirder entities: - - uid: 8097 + - uid: 8328 components: - pos: -33.5,-3.5 parent: 2 type: Transform - - uid: 8098 + - uid: 8329 components: - pos: -41.5,-3.5 parent: 2 type: Transform - - uid: 8099 + - uid: 8330 components: - pos: 41.5,-15.5 parent: 2 type: Transform - - uid: 8100 + - uid: 8331 components: - pos: 41.5,-17.5 parent: 2 type: Transform - - uid: 8101 + - uid: 8332 components: - pos: 44.5,-16.5 parent: 2 type: Transform - - uid: 8102 + - uid: 8333 components: - pos: 44.5,-12.5 parent: 2 type: Transform - - uid: 8103 + - uid: 8334 components: - pos: 41.5,-10.5 parent: 2 type: Transform - proto: ReinforcedPlasmaWindow entities: - - uid: 8104 + - uid: 8335 components: - pos: 16.5,35.5 parent: 2 type: Transform - - uid: 8105 + - uid: 8336 components: - pos: -22.5,6.5 parent: 2 type: Transform - - uid: 8106 + - uid: 8337 components: - pos: 27.5,34.5 parent: 2 type: Transform - - uid: 8107 + - uid: 8338 components: - pos: -18.5,4.5 parent: 2 type: Transform - - uid: 8108 + - uid: 8339 components: - pos: 26.5,-17.5 parent: 2 type: Transform - - uid: 8109 + - uid: 8340 components: - pos: 26.5,-16.5 parent: 2 type: Transform - - uid: 8110 + - uid: 8341 components: - pos: 26.5,-15.5 parent: 2 type: Transform - - uid: 8111 + - uid: 8342 components: - pos: -1.5,38.5 parent: 2 type: Transform - - uid: 8112 + - uid: 8343 components: - pos: -5.5,41.5 parent: 2 type: Transform - - uid: 8113 + - uid: 8344 components: - pos: 25.5,34.5 parent: 2 type: Transform - - uid: 8114 + - uid: 8345 components: - pos: 26.5,34.5 parent: 2 type: Transform - - uid: 8115 + - uid: 8346 components: - pos: 25.5,36.5 parent: 2 type: Transform - - uid: 8116 + - uid: 8347 components: - pos: 28.5,36.5 parent: 2 type: Transform - - uid: 8117 + - uid: 8348 components: - pos: 24.5,27.5 parent: 2 type: Transform - - uid: 8118 + - uid: 8349 components: - pos: 14.5,34.5 parent: 2 type: Transform - - uid: 8119 + - uid: 8350 components: - pos: 15.5,34.5 parent: 2 type: Transform - - uid: 8120 + - uid: 8351 components: - pos: 16.5,36.5 parent: 2 type: Transform - - uid: 8121 + - uid: 8352 components: - pos: 16.5,37.5 parent: 2 type: Transform - - uid: 8122 + - uid: 8353 components: - pos: 27.5,36.5 parent: 2 type: Transform - - uid: 8123 + - uid: 8354 components: - pos: 28.5,34.5 parent: 2 type: Transform - - uid: 8124 + - uid: 8355 components: - pos: 21.5,36.5 parent: 2 type: Transform - - uid: 8125 + - uid: 8356 components: - pos: 23.5,36.5 parent: 2 type: Transform - - uid: 8126 + - uid: 8357 components: - pos: 19.5,34.5 parent: 2 type: Transform - - uid: 8127 + - uid: 8358 components: - pos: 20.5,34.5 parent: 2 type: Transform - - uid: 8128 + - uid: 8359 components: - pos: 21.5,34.5 parent: 2 type: Transform - - uid: 8129 + - uid: 8360 components: - pos: 22.5,34.5 parent: 2 type: Transform - - uid: 8130 + - uid: 8361 components: - pos: 23.5,34.5 parent: 2 type: Transform - - uid: 8131 + - uid: 8362 components: - pos: 24.5,34.5 parent: 2 type: Transform - - uid: 8132 + - uid: 8363 components: - pos: 25.5,27.5 parent: 2 type: Transform - - uid: 8133 + - uid: 8364 components: - pos: 22.5,27.5 parent: 2 type: Transform - - uid: 8134 + - uid: 8365 components: - pos: -0.5,38.5 parent: 2 type: Transform - - uid: 8135 + - uid: 8366 components: - pos: -6.5,37.5 parent: 2 type: Transform - - uid: 8136 + - uid: 8367 components: - pos: -8.5,37.5 parent: 2 type: Transform - - uid: 8137 + - uid: 8368 components: - pos: -9.5,41.5 parent: 2 type: Transform - - uid: 8138 + - uid: 8369 components: - pos: 25.5,-17.5 parent: 2 type: Transform - - uid: 8139 + - uid: 8370 components: - pos: 25.5,-16.5 parent: 2 type: Transform - - uid: 8140 + - uid: 8371 components: - pos: 25.5,-15.5 parent: 2 type: Transform - - uid: 8141 + - uid: 8372 components: - pos: -14.5,34.5 parent: 2 type: Transform - - uid: 8142 + - uid: 8373 components: - pos: -13.5,34.5 parent: 2 type: Transform - - uid: 8143 + - uid: 8374 components: - pos: -12.5,34.5 parent: 2 type: Transform - - uid: 8144 + - uid: 8375 components: - pos: 30.5,32.5 parent: 2 type: Transform - - uid: 8145 + - uid: 8376 components: - pos: 30.5,31.5 parent: 2 type: Transform - - uid: 8146 + - uid: 8377 components: - pos: 30.5,33.5 parent: 2 type: Transform - - uid: 8147 + - uid: 8378 components: - pos: 8.5,36.5 parent: 2 type: Transform - - uid: 8148 + - uid: 8379 components: - pos: 7.5,36.5 parent: 2 type: Transform - - uid: 8149 + - uid: 8380 components: - pos: 10.5,36.5 parent: 2 type: Transform - - uid: 8150 + - uid: 8381 components: - pos: 9.5,36.5 parent: 2 type: Transform - proto: ReinforcedWindow entities: - - uid: 8151 + - uid: 8382 components: - pos: -28.5,18.5 parent: 2 type: Transform - - uid: 8152 + - uid: 8383 components: - pos: 31.5,3.5 parent: 2 type: Transform - - uid: 8153 + - uid: 8384 components: - pos: 6.5,14.5 parent: 2 type: Transform - - uid: 8154 + - uid: 8385 components: - pos: 26.5,-2.5 parent: 2 type: Transform - - uid: 8155 + - uid: 8386 components: - pos: 25.5,-0.5 parent: 2 type: Transform - - uid: 8156 + - uid: 8387 components: - pos: 29.5,6.5 parent: 2 type: Transform - - uid: 8157 + - uid: 8388 components: - pos: 32.5,0.5 parent: 2 type: Transform - - uid: 8158 + - uid: 8389 components: - pos: 30.5,3.5 parent: 2 type: Transform - - uid: 8159 + - uid: 8390 components: - pos: 9.5,17.5 parent: 2 type: Transform - - uid: 8160 + - uid: 8391 components: - pos: 30.5,-2.5 parent: 2 type: Transform - - uid: 8161 + - uid: 8392 components: - pos: 21.5,0.5 parent: 2 type: Transform - - uid: 8162 + - uid: 8393 components: - pos: 4.5,36.5 parent: 2 type: Transform - - uid: 8163 + - uid: 8394 components: - pos: 12.5,32.5 parent: 2 type: Transform - - uid: 8164 + - uid: 8395 components: - pos: 12.5,29.5 parent: 2 type: Transform - - uid: 8165 + - uid: 8396 components: - pos: 7.5,-3.5 parent: 2 type: Transform - - uid: 8166 + - uid: 8397 components: - pos: 8.5,-3.5 parent: 2 type: Transform - - uid: 8167 + - uid: 8398 components: - pos: 10.5,0.5 parent: 2 type: Transform - - uid: 8168 + - uid: 8399 components: - pos: 23.5,-0.5 parent: 2 type: Transform - - uid: 8169 + - uid: 8400 components: - pos: 5.5,36.5 parent: 2 type: Transform - - uid: 8170 + - uid: 8401 components: - pos: 31.5,-2.5 parent: 2 type: Transform - - uid: 8171 + - uid: 8402 components: - pos: 6.5,-23.5 parent: 2 type: Transform - - uid: 8172 + - uid: 8403 components: - pos: -3.5,-29.5 parent: 2 type: Transform - - uid: 8173 + - uid: 8404 components: - pos: -42.5,0.5 parent: 2 type: Transform - - uid: 8174 + - uid: 8405 components: - pos: -13.5,-6.5 parent: 2 type: Transform - - uid: 8175 + - uid: 8406 components: - pos: -38.5,-7.5 parent: 2 type: Transform - - uid: 8176 + - uid: 8407 components: - pos: -29.5,4.5 parent: 2 type: Transform - - uid: 8177 + - uid: 8408 components: - pos: -42.5,-7.5 parent: 2 type: Transform - - uid: 8178 + - uid: 8409 components: - pos: -25.5,9.5 parent: 2 type: Transform - - uid: 8179 + - uid: 8410 components: - pos: -40.5,-7.5 parent: 2 type: Transform - - uid: 8180 + - uid: 8411 components: - pos: -36.5,-7.5 parent: 2 type: Transform - - uid: 8181 + - uid: 8412 components: - pos: -19.5,15.5 parent: 2 type: Transform - - uid: 8182 + - uid: 8413 components: - pos: -20.5,14.5 parent: 2 type: Transform - - uid: 8183 + - uid: 8414 components: - pos: -29.5,11.5 parent: 2 type: Transform - - uid: 8184 + - uid: 8415 components: - pos: 15.5,-31.5 parent: 2 type: Transform - - uid: 8185 + - uid: 8416 components: - pos: -20.5,-5.5 parent: 2 type: Transform - - uid: 8186 + - uid: 8417 components: - pos: -42.5,-5.5 parent: 2 type: Transform - - uid: 8187 + - uid: 8418 components: - pos: 10.5,-30.5 parent: 2 type: Transform - - uid: 8188 + - uid: 8419 components: - pos: 6.5,-30.5 parent: 2 type: Transform - - uid: 8189 + - uid: 8420 components: - pos: 7.5,-30.5 parent: 2 type: Transform - - uid: 8190 + - uid: 8421 components: - pos: 5.5,-5.5 parent: 2 type: Transform - - uid: 8191 + - uid: 8422 components: - pos: -20.5,9.5 parent: 2 type: Transform - - uid: 8192 + - uid: 8423 components: - pos: 19.5,-24.5 parent: 2 type: Transform - - uid: 8193 + - uid: 8424 components: - pos: -16.5,-5.5 parent: 2 type: Transform - - uid: 8194 + - uid: 8425 components: - pos: -11.5,-22.5 parent: 2 type: Transform - - uid: 8195 + - uid: 8426 components: - pos: -10.5,-22.5 parent: 2 type: Transform - - uid: 8196 + - uid: 8427 components: - pos: -12.5,-22.5 parent: 2 type: Transform - - uid: 8197 + - uid: 8428 components: - pos: 39.5,14.5 parent: 2 type: Transform - - uid: 8198 + - uid: 8429 components: - pos: 41.5,17.5 parent: 2 type: Transform - - uid: 8199 + - uid: 8430 components: - pos: -24.5,-14.5 parent: 2 type: Transform - - uid: 8200 + - uid: 8431 components: - pos: -13.5,-13.5 parent: 2 type: Transform - - uid: 8201 + - uid: 8432 components: - pos: -13.5,-10.5 parent: 2 type: Transform - - uid: 8202 + - uid: 8433 components: - pos: -7.5,-20.5 parent: 2 type: Transform - - uid: 8203 + - uid: 8434 components: - pos: -9.5,-23.5 parent: 2 type: Transform - - uid: 8204 + - uid: 8435 components: - pos: -2.5,-30.5 parent: 2 type: Transform - - uid: 8205 + - uid: 8436 components: - pos: -1.5,-30.5 parent: 2 type: Transform - - uid: 8206 + - uid: 8437 components: - pos: -0.5,-30.5 parent: 2 type: Transform - - uid: 8207 + - uid: 8438 components: - pos: 0.5,-30.5 parent: 2 type: Transform - - uid: 8208 + - uid: 8439 components: - pos: 1.5,-30.5 parent: 2 type: Transform - - uid: 8209 + - uid: 8440 components: - pos: 2.5,-29.5 parent: 2 type: Transform - - uid: 8210 + - uid: 8441 components: - pos: 0.5,-25.5 parent: 2 type: Transform - - uid: 8211 + - uid: 8442 components: - pos: -0.5,-25.5 parent: 2 type: Transform - - uid: 8212 + - uid: 8443 components: - pos: -9.5,-24.5 parent: 2 type: Transform - - uid: 8213 + - uid: 8444 components: - pos: -13.5,-28.5 parent: 2 type: Transform - - uid: 8214 + - uid: 8445 components: - pos: -14.5,-29.5 parent: 2 type: Transform - - uid: 8215 + - uid: 8446 components: - pos: -14.5,-31.5 parent: 2 type: Transform - - uid: 8216 + - uid: 8447 components: - pos: -14.5,-30.5 parent: 2 type: Transform - - uid: 8217 + - uid: 8448 components: - pos: -13.5,-32.5 parent: 2 type: Transform - - uid: 8218 + - uid: 8449 components: - pos: 3.5,-22.5 parent: 2 type: Transform - - uid: 8219 + - uid: 8450 components: - pos: 3.5,-21.5 parent: 2 type: Transform - - uid: 8220 + - uid: 8451 components: - pos: 3.5,-19.5 parent: 2 type: Transform - - uid: 8221 + - uid: 8452 components: - pos: 3.5,-17.5 parent: 2 type: Transform - - uid: 8222 + - uid: 8453 components: - pos: -9.5,-17.5 parent: 2 type: Transform - - uid: 8223 + - uid: 8454 components: - pos: -9.5,-19.5 parent: 2 type: Transform - - uid: 8224 + - uid: 8455 components: - pos: -4.5,-19.5 parent: 2 type: Transform - - uid: 8225 + - uid: 8456 components: - pos: -4.5,-17.5 parent: 2 type: Transform - - uid: 8226 + - uid: 8457 components: - pos: 18.5,-31.5 parent: 2 type: Transform - - uid: 8227 + - uid: 8458 components: - pos: 7.5,-21.5 parent: 2 type: Transform - - uid: 8228 + - uid: 8459 components: - pos: 16.5,-31.5 parent: 2 type: Transform - - uid: 8229 + - uid: 8460 components: - pos: 7.5,-17.5 parent: 2 type: Transform - - uid: 8230 + - uid: 8461 components: - pos: 7.5,-20.5 parent: 2 type: Transform - - uid: 8231 + - uid: 8462 components: - pos: 7.5,-18.5 parent: 2 type: Transform - - uid: 8232 + - uid: 8463 components: - pos: 4.5,-23.5 parent: 2 type: Transform - - uid: 8233 + - uid: 8464 components: - pos: 6.5,-14.5 parent: 2 type: Transform - - uid: 8234 + - uid: 8465 components: - pos: 14.5,-30.5 parent: 2 type: Transform - - uid: 8235 + - uid: 8466 components: - pos: 11.5,-30.5 parent: 2 type: Transform - - uid: 8236 + - uid: 8467 components: - pos: 17.5,-31.5 parent: 2 type: Transform - - uid: 8237 + - uid: 8468 components: - pos: 16.5,-18.5 parent: 2 type: Transform - - uid: 8238 + - uid: 8469 components: - pos: 13.5,-22.5 parent: 2 type: Transform - - uid: 8239 + - uid: 8470 components: - pos: 13.5,-21.5 parent: 2 type: Transform - - uid: 8240 + - uid: 8471 components: - pos: 19.5,-17.5 parent: 2 type: Transform - - uid: 8241 + - uid: 8472 components: - pos: 18.5,-17.5 parent: 2 type: Transform - - uid: 8242 + - uid: 8473 components: - pos: 19.5,-21.5 parent: 2 type: Transform - - uid: 8243 + - uid: 8474 components: - pos: 20.5,-21.5 parent: 2 type: Transform - - uid: 8244 + - uid: 8475 components: - pos: 27.5,-20.5 parent: 2 type: Transform - - uid: 8245 + - uid: 8476 components: - pos: 8.5,25.5 parent: 2 type: Transform - - uid: 8246 + - uid: 8477 components: - pos: 8.5,26.5 parent: 2 type: Transform - - uid: 8247 + - uid: 8478 components: - pos: 8.5,23.5 parent: 2 type: Transform - - uid: 8248 + - uid: 8479 components: - pos: -1.5,-25.5 parent: 2 type: Transform - - uid: 8249 + - uid: 8480 components: - pos: 40.5,17.5 parent: 2 type: Transform - - uid: 8250 + - uid: 8481 components: - pos: 40.5,14.5 parent: 2 type: Transform - - uid: 8251 + - uid: 8482 components: - pos: 41.5,14.5 parent: 2 type: Transform - - uid: 8252 + - uid: 8483 components: - pos: 12.5,12.5 parent: 2 type: Transform - - uid: 8253 + - uid: 8484 components: - pos: -34.5,-1.5 parent: 2 type: Transform - - uid: 8254 + - uid: 8485 components: - pos: 12.5,14.5 parent: 2 type: Transform - - uid: 8255 + - uid: 8486 components: - pos: 17.5,14.5 parent: 2 type: Transform - - uid: 8256 + - uid: 8487 components: - pos: -34.5,-7.5 parent: 2 type: Transform - - uid: 8257 + - uid: 8488 components: - pos: -32.5,-7.5 parent: 2 type: Transform - - uid: 8258 + - uid: 8489 components: - pos: 28.5,-10.5 parent: 2 type: Transform - - uid: 8259 + - uid: 8490 components: - pos: 27.5,-12.5 parent: 2 type: Transform - - uid: 8260 + - uid: 8491 components: - pos: -38.5,-5.5 parent: 2 type: Transform - - uid: 8261 + - uid: 8492 components: - pos: -32.5,-1.5 parent: 2 type: Transform - - uid: 8262 + - uid: 8493 components: - pos: 28.5,-9.5 parent: 2 type: Transform - - uid: 8263 + - uid: 8494 components: - pos: -34.5,-9.5 parent: 2 type: Transform - - uid: 8264 + - uid: 8495 components: - pos: -34.5,-5.5 parent: 2 type: Transform - - uid: 8265 + - uid: 8496 components: - pos: 26.5,-12.5 parent: 2 type: Transform - - uid: 8266 + - uid: 8497 components: - pos: 28.5,-11.5 parent: 2 type: Transform - - uid: 8267 + - uid: 8498 components: - pos: 19.5,-30.5 parent: 2 type: Transform - - uid: 8268 + - uid: 8499 components: - pos: 27.5,-8.5 parent: 2 type: Transform - - uid: 8269 + - uid: 8500 components: - pos: -36.5,-9.5 parent: 2 type: Transform - - uid: 8270 + - uid: 8501 components: - pos: 28.5,29.5 parent: 2 type: Transform - - uid: 8271 + - uid: 8502 components: - pos: 13.5,23.5 parent: 2 type: Transform - - uid: 8272 + - uid: 8503 components: - pos: -21.5,-8.5 parent: 2 type: Transform - - uid: 8273 + - uid: 8504 components: - pos: 20.5,15.5 parent: 2 type: Transform - - uid: 8274 + - uid: 8505 components: - pos: -28.5,-9.5 parent: 2 type: Transform - - uid: 8275 + - uid: 8506 components: - pos: -27.5,-9.5 parent: 2 type: Transform - - uid: 8276 + - uid: 8507 components: - pos: -24.5,29.5 parent: 2 type: Transform - - uid: 8277 + - uid: 8508 components: - pos: -25.5,30.5 parent: 2 type: Transform - - uid: 8278 + - uid: 8509 components: - pos: 19.5,15.5 parent: 2 type: Transform - - uid: 8279 + - uid: 8510 components: - pos: 36.5,27.5 parent: 2 type: Transform - - uid: 8280 + - uid: 8511 components: - pos: 8.5,24.5 parent: 2 type: Transform - - uid: 8281 + - uid: 8512 components: - pos: -6.5,25.5 parent: 2 type: Transform - - uid: 8282 + - uid: 8513 components: - pos: -25.5,8.5 parent: 2 type: Transform - - uid: 8283 + - uid: 8514 components: - pos: 13.5,24.5 parent: 2 type: Transform - - uid: 8284 + - uid: 8515 components: - pos: 17.5,12.5 parent: 2 type: Transform - - uid: 8285 + - uid: 8516 components: - pos: 21.5,20.5 parent: 2 type: Transform - - uid: 8286 + - uid: 8517 components: - pos: 39.5,24.5 parent: 2 type: Transform - - uid: 8287 + - uid: 8518 components: - pos: 6.5,-3.5 parent: 2 type: Transform - - uid: 8288 + - uid: 8519 components: - pos: -23.5,29.5 parent: 2 type: Transform - - uid: 8289 + - uid: 8520 components: - pos: 22.5,12.5 parent: 2 type: Transform - - uid: 8290 + - uid: 8521 components: - pos: 9.5,-30.5 parent: 2 type: Transform - - uid: 8291 + - uid: 8522 components: - pos: 39.5,23.5 parent: 2 type: Transform - - uid: 8292 + - uid: 8523 components: - pos: 39.5,25.5 parent: 2 type: Transform - - uid: 8293 + - uid: 8524 components: - pos: 37.5,27.5 parent: 2 type: Transform - - uid: 8294 + - uid: 8525 components: - pos: -30.5,-9.5 parent: 2 type: Transform - - uid: 8295 + - uid: 8526 components: - pos: -38.5,2.5 parent: 2 type: Transform - - uid: 8296 + - uid: 8527 components: - pos: -38.5,0.5 parent: 2 type: Transform - - uid: 8297 + - uid: 8528 components: - pos: 39.5,17.5 parent: 2 type: Transform - - uid: 8298 + - uid: 8529 components: - pos: 5.5,-30.5 parent: 2 type: Transform - - uid: 8299 + - uid: 8530 components: - pos: -8.5,15.5 parent: 2 type: Transform - - uid: 8300 + - uid: 8531 components: - pos: -5.5,15.5 parent: 2 type: Transform - - uid: 8301 + - uid: 8532 components: - pos: -38.5,-1.5 parent: 2 type: Transform - - uid: 8302 + - uid: 8533 components: - pos: -34.5,26.5 parent: 2 type: Transform - - uid: 8303 + - uid: 8534 components: - pos: -34.5,25.5 parent: 2 type: Transform - - uid: 8304 + - uid: 8535 components: - pos: 14.5,22.5 parent: 2 type: Transform - - uid: 8305 + - uid: 8536 components: - pos: 15.5,22.5 parent: 2 type: Transform - - uid: 8306 + - uid: 8537 components: - pos: 18.5,21.5 parent: 2 type: Transform - - uid: 8307 + - uid: 8538 components: - pos: -40.5,-9.5 parent: 2 type: Transform - - uid: 8308 + - uid: 8539 components: - pos: -23.5,-10.5 parent: 2 type: Transform - - uid: 8309 + - uid: 8540 components: - pos: -24.5,-10.5 parent: 2 type: Transform - - uid: 8310 + - uid: 8541 components: - pos: -32.5,-9.5 parent: 2 type: Transform - - uid: 8311 + - uid: 8542 components: - pos: -42.5,2.5 parent: 2 type: Transform - - uid: 8312 + - uid: 8543 components: - pos: -34.5,2.5 parent: 2 type: Transform - - uid: 8313 + - uid: 8544 components: - pos: 18.5,20.5 parent: 2 type: Transform - - uid: 8314 + - uid: 8545 components: - pos: -36.5,-1.5 parent: 2 type: Transform - - uid: 8315 + - uid: 8546 components: - pos: -14.5,-16.5 parent: 2 type: Transform - - uid: 8316 + - uid: 8547 components: - pos: -30.5,-24.5 parent: 2 type: Transform - - uid: 8317 + - uid: 8548 components: - pos: -30.5,-23.5 parent: 2 type: Transform - - uid: 8318 + - uid: 8549 components: - pos: -30.5,-19.5 parent: 2 type: Transform - - uid: 8319 + - uid: 8550 components: - pos: -30.5,-18.5 parent: 2 type: Transform - - uid: 8320 + - uid: 8551 components: - pos: -30.5,-16.5 parent: 2 type: Transform - - uid: 8321 + - uid: 8552 components: - pos: -30.5,-15.5 parent: 2 type: Transform - - uid: 8322 + - uid: 8553 components: - pos: -23.5,-14.5 parent: 2 type: Transform - - uid: 8323 + - uid: 8554 components: - pos: -21.5,-11.5 parent: 2 type: Transform - - uid: 8324 + - uid: 8555 components: - pos: -21.5,-12.5 parent: 2 type: Transform - - uid: 8325 + - uid: 8556 components: - pos: -21.5,-13.5 parent: 2 type: Transform - - uid: 8326 + - uid: 8557 components: - pos: -15.5,-16.5 parent: 2 type: Transform - - uid: 8327 + - uid: 8558 components: - pos: -24.5,-25.5 parent: 2 type: Transform - - uid: 8328 + - uid: 8559 components: - pos: 31.5,30.5 parent: 2 type: Transform - - uid: 8329 + - uid: 8560 components: - pos: 32.5,30.5 parent: 2 type: Transform - - uid: 8330 + - uid: 8561 components: - pos: 33.5,29.5 parent: 2 type: Transform - - uid: 8331 + - uid: 8562 components: - pos: 33.5,28.5 parent: 2 type: Transform - - uid: 8332 + - uid: 8563 components: - pos: 0.5,34.5 parent: 2 type: Transform - - uid: 8333 + - uid: 8564 components: - pos: -24.5,2.5 parent: 2 type: Transform - - uid: 8334 + - uid: 8565 components: - pos: -40.5,-1.5 parent: 2 type: Transform - - uid: 8335 + - uid: 8566 components: - pos: 26.5,-31.5 parent: 2 type: Transform - - uid: 8336 + - uid: 8567 components: - pos: 24.5,-31.5 parent: 2 type: Transform - - uid: 8337 + - uid: 8568 components: - pos: 25.5,-31.5 parent: 2 type: Transform - - uid: 8338 + - uid: 8569 components: - pos: -40.5,-5.5 parent: 2 type: Transform - - uid: 8339 + - uid: 8570 components: - pos: -42.5,-1.5 parent: 2 type: Transform - - uid: 8340 + - uid: 8571 components: - pos: -36.5,-5.5 parent: 2 type: Transform - - uid: 8341 + - uid: 8572 components: - pos: 35.5,27.5 parent: 2 type: Transform - - uid: 8342 + - uid: 8573 components: - pos: -18.5,35.5 parent: 2 type: Transform - - uid: 8343 + - uid: 8574 components: - pos: -18.5,34.5 parent: 2 type: Transform - - uid: 8344 + - uid: 8575 components: - pos: -18.5,33.5 parent: 2 type: Transform - - uid: 8345 + - uid: 8576 components: - pos: -11.5,32.5 parent: 2 type: Transform - - uid: 8346 + - uid: 8577 components: - pos: -38.5,-9.5 parent: 2 type: Transform - - uid: 8347 + - uid: 8578 components: - pos: -30.5,21.5 parent: 2 type: Transform - - uid: 8348 + - uid: 8579 components: - pos: -29.5,21.5 parent: 2 type: Transform - - uid: 8349 + - uid: 8580 components: - pos: -42.5,-9.5 parent: 2 type: Transform - - uid: 8350 + - uid: 8581 components: - pos: -30.5,36.5 parent: 2 type: Transform - - uid: 8351 + - uid: 8582 components: - pos: -31.5,36.5 parent: 2 type: Transform - - uid: 8352 + - uid: 8583 components: - pos: -33.5,36.5 parent: 2 type: Transform - - uid: 8353 + - uid: 8584 components: - pos: -34.5,36.5 parent: 2 type: Transform - - uid: 8354 + - uid: 8585 components: - pos: -36.5,34.5 parent: 2 type: Transform - - uid: 8355 + - uid: 8586 components: - pos: -36.5,33.5 parent: 2 type: Transform - - uid: 8356 + - uid: 8587 components: - pos: -36.5,31.5 parent: 2 type: Transform - - uid: 8357 + - uid: 8588 components: - pos: -36.5,30.5 parent: 2 type: Transform - - uid: 8358 + - uid: 8589 components: - pos: -40.5,2.5 parent: 2 type: Transform - - uid: 8359 + - uid: 8590 components: - pos: -32.5,-5.5 parent: 2 type: Transform - - uid: 8360 + - uid: 8591 components: - pos: -32.5,2.5 parent: 2 type: Transform - - uid: 8361 + - uid: 8592 components: - pos: -36.5,0.5 parent: 2 type: Transform - - uid: 8362 + - uid: 8593 components: - pos: -40.5,0.5 parent: 2 type: Transform - - uid: 8363 + - uid: 8594 components: - pos: -32.5,0.5 parent: 2 type: Transform - - uid: 8364 + - uid: 8595 components: - pos: -36.5,2.5 parent: 2 type: Transform - - uid: 8365 + - uid: 8596 components: - pos: -34.5,0.5 parent: 2 type: Transform - - uid: 8366 + - uid: 8597 components: - pos: 29.5,7.5 parent: 2 type: Transform - - uid: 8367 + - uid: 8598 components: - pos: -29.5,5.5 parent: 2 type: Transform - - uid: 8368 + - uid: 8599 components: - pos: -30.5,13.5 parent: 2 type: Transform - - uid: 8369 + - uid: 8600 components: - pos: -30.5,8.5 parent: 2 type: Transform - - uid: 8370 + - uid: 8601 components: - pos: -29.5,10.5 parent: 2 type: Transform - - uid: 8371 + - uid: 8602 components: - pos: -31.5,13.5 parent: 2 type: Transform - - uid: 8372 + - uid: 8603 components: - pos: -31.5,8.5 parent: 2 type: Transform - - uid: 8373 + - uid: 8604 components: - pos: -30.5,15.5 parent: 2 type: Transform - - uid: 8374 + - uid: 8605 components: - pos: -31.5,15.5 parent: 2 type: Transform - - uid: 8375 + - uid: 8606 components: - pos: -31.5,6.5 parent: 2 type: Transform - - uid: 8376 + - uid: 8607 components: - pos: -30.5,6.5 parent: 2 type: Transform - - uid: 8377 + - uid: 8608 components: - pos: 29.5,0.5 parent: 2 type: Transform - - uid: 8378 + - uid: 8609 components: - pos: 3.5,36.5 parent: 2 type: Transform - - uid: 8379 + - uid: 8610 components: - pos: 7.5,14.5 parent: 2 type: Transform - - uid: 8380 + - uid: 8611 components: - pos: 17.5,-3.5 parent: 2 type: Transform - - uid: 8381 + - uid: 8612 components: - pos: 29.5,-6.5 parent: 2 type: Transform - - uid: 8382 + - uid: 8613 components: - pos: 18.5,-3.5 parent: 2 type: Transform - - uid: 8383 + - uid: 8614 components: - pos: -28.5,17.5 parent: 2 type: Transform - - uid: 8384 + - uid: 8615 components: - pos: -0.5,-6.5 parent: 2 type: Transform - - uid: 8385 + - uid: 8616 components: - pos: -1.5,-6.5 parent: 2 type: Transform - - uid: 8386 + - uid: 8617 components: - pos: -2.5,-6.5 parent: 2 type: Transform - - uid: 8387 + - uid: 8618 components: - pos: 1.5,-6.5 parent: 2 type: Transform - - uid: 8388 + - uid: 8619 components: - pos: 2.5,-7.5 parent: 2 type: Transform - - uid: 8389 + - uid: 8620 components: - pos: 2.5,-8.5 parent: 2 type: Transform - proto: RemoteSignaller entities: - - uid: 8390 + - uid: 8621 components: - name: burn chamber remote type: MetaData @@ -54801,54 +55956,54 @@ entities: parent: 2 type: Transform - linkedPorts: - 7346: + 7574: - Pressed: Trigger type: DeviceLinkSource - proto: ResearchAndDevelopmentServer entities: - - uid: 8391 + - uid: 8622 components: - pos: -5.5,38.5 parent: 2 type: Transform - proto: ReverseEngineeringMachine entities: - - uid: 8392 + - uid: 8623 components: - pos: -14.5,33.5 parent: 2 type: Transform - proto: RevolverCapGun entities: - - uid: 8393 + - uid: 8624 components: - pos: -0.9342804,-11.419859 parent: 2 type: Transform - proto: Rickenbacker4003Instrument entities: - - uid: 8394 + - uid: 8625 components: - pos: -31.52537,40.564377 parent: 2 type: Transform - proto: RipleyChassis entities: - - uid: 8395 + - uid: 8626 components: - pos: 16.5,2.5 parent: 2 type: Transform - proto: Roboisseur entities: - - uid: 8396 + - uid: 8627 components: - pos: -0.5,-1.5 parent: 2 type: Transform - proto: SalvageMagnet entities: - - uid: 8397 + - uid: 8628 components: - rot: 1.5707963267948966 rad pos: 42.5,-9.5 @@ -54856,374 +56011,367 @@ entities: type: Transform - proto: SecBreachingHammer entities: - - uid: 8398 + - uid: 8629 components: - pos: 22.879267,-14.333235 parent: 2 type: Transform - proto: SecurityTechFab entities: - - uid: 8399 + - uid: 8630 components: - pos: 18.5,-14.5 parent: 2 type: Transform - proto: SeedExtractor entities: - - uid: 8400 + - uid: 8631 components: - pos: -8.5,10.5 parent: 2 type: Transform - proto: ShardGlass entities: - - uid: 8401 + - uid: 8632 components: - pos: -28.034584,30.43123 parent: 2 type: Transform - - uid: 8402 + - uid: 8633 components: - pos: -29.331459,31.30623 parent: 2 type: Transform - proto: SheetGlass entities: - - uid: 8403 - components: - - pos: 0.5,19.5 - parent: 2 - type: Transform - - uid: 8404 + - uid: 8634 components: - - pos: 0.5,19.5 + - pos: -1.4510615,22.468235 parent: 2 type: Transform - - uid: 8405 + - uid: 8635 components: - pos: 0.5972125,39.97951 parent: 2 type: Transform - - uid: 8406 + - uid: 8636 components: - pos: 0.3472125,39.96909 parent: 2 type: Transform - - uid: 8407 + - uid: 8637 components: - pos: -4.5804086,35.804497 parent: 2 type: Transform - - uid: 8408 + - uid: 8638 components: - pos: -4.2574916,35.804497 parent: 2 type: Transform - - uid: 8409 + - uid: 8639 components: - pos: 3.2364807,17.564814 parent: 2 type: Transform - - uid: 8410 + - uid: 8640 components: - pos: -4.403325,35.79407 parent: 2 type: Transform - - uid: 8411 + - uid: 8641 components: - pos: 17.790182,18.66268 parent: 2 type: Transform - - uid: 8412 + - uid: 8642 components: - pos: 24.5,28.5 parent: 2 type: Transform + - uid: 8643 + components: + - pos: -1.4423792,22.476915 + parent: 2 + type: Transform - proto: SheetPlasma entities: - - uid: 8413 + - uid: 8644 components: - pos: 5.468627,23.546305 parent: 2 type: Transform - proto: SheetPlasma1 entities: - - uid: 8414 + - uid: 8645 components: - pos: -15.136902,14.763554 parent: 2 type: Transform - - uid: 8415 + - uid: 8646 components: - pos: -14.949402,14.742706 parent: 2 type: Transform - proto: SheetPlasteel entities: - - uid: 8416 + - uid: 8647 components: - pos: 16.84999,18.641832 parent: 2 type: Transform - proto: SheetPlastic entities: - - uid: 8417 + - uid: 8648 components: - pos: 18.5,-15.5 parent: 2 type: Transform - count: 15 type: Stack - - uid: 8418 + - uid: 8649 components: - pos: -4.653325,35.17906 parent: 2 type: Transform - - uid: 8419 + - uid: 8650 components: - pos: -4.434575,35.158215 parent: 2 type: Transform - - uid: 8420 + - uid: 8651 components: - pos: -4.5179086,35.168636 parent: 2 type: Transform - - uid: 8421 + - uid: 8652 components: - pos: 17.308323,18.66268 parent: 2 type: Transform - - uid: 8422 + - uid: 8653 components: - pos: 14.5,-2.5 parent: 2 type: Transform - proto: SheetRGlass entities: - - uid: 8423 + - uid: 8654 components: - pos: 14.5,-2.5 parent: 2 type: Transform - proto: SheetSteel entities: - - uid: 8424 + - uid: 8655 components: - pos: 25.5,28.5 parent: 2 type: Transform - - uid: 8425 + - uid: 8656 components: - pos: 0.5659625,39.593826 parent: 2 type: Transform - - uid: 8426 + - uid: 8657 components: - pos: 18.531702,-15.43318 parent: 2 type: Transform - count: 15 type: Stack - - uid: 8427 + - uid: 8658 components: - pos: 16.370823,18.631409 parent: 2 type: Transform - - uid: 8428 + - uid: 8659 components: - pos: -4.497075,34.553627 parent: 2 type: Transform - - uid: 8429 + - uid: 8660 components: - pos: 3.6739807,17.575237 parent: 2 type: Transform - - uid: 8430 + - uid: 8661 components: - pos: -4.340825,34.564053 parent: 2 type: Transform - - uid: 8431 + - uid: 8662 components: - pos: 0.38887912,39.593826 parent: 2 type: Transform - - uid: 8432 + - uid: 8663 components: - pos: -4.6741586,34.564053 parent: 2 type: Transform - - uid: 8433 + - uid: 8664 components: - pos: 22.5,31.5 parent: 2 type: Transform - - uid: 8434 + - uid: 8665 components: - pos: 24.5,31.5 parent: 2 type: Transform - - uid: 8435 + - uid: 8666 components: - pos: 14.565151,-2.5371656 parent: 2 type: Transform - - uid: 8436 + - uid: 8667 components: - - pos: 0.5046682,19.499617 + - pos: -1.4597437,22.485596 parent: 2 type: Transform - proto: ShuttersNormalOpen entities: - - uid: 8437 + - uid: 8668 components: - pos: -21.5,-2.5 parent: 2 type: Transform - links: - - 8453 + - 8684 type: DeviceLinkSink - - uid: 8438 + - uid: 8669 components: - pos: -21.5,-4.5 parent: 2 type: Transform - links: - - 8453 + - 8684 type: DeviceLinkSink - - uid: 8439 + - uid: 8670 components: - pos: -17.5,-2.5 parent: 2 type: Transform - links: - - 8453 + - 8684 type: DeviceLinkSink - - uid: 8440 + - uid: 8671 components: - pos: -17.5,-4.5 parent: 2 type: Transform - links: - - 8453 + - 8684 type: DeviceLinkSink - proto: ShuttersWindow entities: - - uid: 8441 + - uid: 8672 components: - pos: -3.5,20.5 parent: 2 type: Transform - links: - - 8446 + - 8677 type: DeviceLinkSink - - uid: 8442 + - uid: 8673 components: - pos: -3.5,19.5 parent: 2 type: Transform - links: - - 8446 + - 8677 type: DeviceLinkSink - proto: ShuttersWindowOpen entities: - - uid: 8443 + - uid: 8674 components: - pos: -21.5,-3.5 parent: 2 type: Transform - links: - - 8453 + - 8684 type: DeviceLinkSink - - uid: 8444 + - uid: 8675 components: - pos: -17.5,-3.5 parent: 2 type: Transform - links: - - 8453 + - 8684 type: DeviceLinkSink -- proto: shuttle_manipulator - entities: - - uid: 1372 - components: - - pos: -0.5,-22.5 - parent: 2 - type: Transform - proto: SignAi entities: - - uid: 8445 + - uid: 8676 components: - pos: -7.5,41.5 parent: 2 type: Transform - proto: SignalButton entities: - - uid: 8446 + - uid: 8677 components: - rot: -1.5707963267948966 rad pos: 1.5,21.5 parent: 2 type: Transform - linkedPorts: - 8441: + 8672: - Pressed: Toggle - 8442: + 8673: - Pressed: Toggle type: DeviceLinkSource - - uid: 8447 + - uid: 8678 components: - pos: -10.5,-31.5 parent: 2 type: Transform - linkedPorts: - 7740: + 7971: - Pressed: Toggle - 7743: + 7974: - Pressed: Toggle - 7742: + 7973: - Pressed: Toggle - 1329: + 1553: - Pressed: Toggle - 1328: + 1552: - Pressed: Toggle - 1327: + 1551: - Pressed: Toggle - 1326: + 1550: - Pressed: Toggle - 1325: + 1549: - Pressed: Toggle type: DeviceLinkSource - - uid: 8448 + - uid: 8679 components: - rot: 1.5707963267948966 rad pos: -15.5,31.5 parent: 2 type: Transform - linkedPorts: - 1316: + 1540: - Pressed: Toggle - 1320: + 1544: - Pressed: Toggle - 1319: + 1543: - Pressed: Toggle type: DeviceLinkSource - - uid: 8449 + - uid: 8680 components: - pos: 16.5,34.5 parent: 2 type: Transform - linkedPorts: - 1318: + 1542: - Pressed: Toggle - 1317: + 1541: - Pressed: Toggle type: DeviceLinkSource - proto: SignalButtonDirectional entities: - - uid: 8450 + - uid: 8681 components: - pos: -27.5,-14.5 parent: 2 @@ -55232,7 +56380,7 @@ entities: 70: - Pressed: DoorBolt type: DeviceLinkSource - - uid: 8451 + - uid: 8682 components: - rot: -1.5707963267948966 rad pos: -26.5,-19.5 @@ -55242,7 +56390,7 @@ entities: 69: - Pressed: DoorBolt type: DeviceLinkSource - - uid: 8452 + - uid: 8683 components: - rot: -1.5707963267948966 rad pos: -25.5,-23.5 @@ -55252,90 +56400,90 @@ entities: 65: - Pressed: DoorBolt type: DeviceLinkSource - - uid: 8453 + - uid: 8684 components: - pos: -20.5,-5.5 parent: 2 type: Transform - linkedPorts: - 8438: + 8669: - Pressed: Toggle - 8443: + 8674: - Pressed: Toggle - 8437: + 8668: - Pressed: Toggle - 8439: + 8670: - Pressed: Toggle - 8444: + 8675: - Pressed: Toggle - 8440: + 8671: - Pressed: Toggle type: DeviceLinkSource - - uid: 8454 + - uid: 8685 components: - rot: -1.5707963267948966 rad pos: 11.5,34.5 parent: 2 type: Transform - linkedPorts: - 7668: + 7899: - Pressed: Toggle - 1321: + 1545: - Pressed: Toggle - 1322: + 1546: - Pressed: Toggle - 1324: + 1548: - Pressed: Toggle - 1323: + 1547: - Pressed: Toggle type: DeviceLinkSource - proto: SignAnomaly entities: - - uid: 8455 + - uid: 8686 components: - pos: -11.5,33.5 parent: 2 type: Transform - proto: SignArmory entities: - - uid: 8456 + - uid: 8687 components: - pos: 16.5,-17.5 parent: 2 type: Transform - proto: SignBiohazardMed entities: - - uid: 8457 + - uid: 8688 components: - pos: -22.5,6.5 parent: 2 type: Transform - - uid: 8458 + - uid: 8689 components: - pos: -18.5,4.5 parent: 2 type: Transform - proto: SignBridge entities: - - uid: 8459 + - uid: 8690 components: - pos: 3.5,-16.5 parent: 2 type: Transform - - uid: 8460 + - uid: 8691 components: - pos: -10.5,-16.5 parent: 2 type: Transform - proto: SignCargo entities: - - uid: 8461 + - uid: 8692 components: - rot: -1.5707963267948966 rad pos: 5.5,-2.5 parent: 2 type: Transform - - uid: 8462 + - uid: 8693 components: - rot: -1.5707963267948966 rad pos: 5.5,2.5 @@ -55343,25 +56491,25 @@ entities: type: Transform - proto: SignCargoDock entities: - - uid: 8463 + - uid: 8694 components: - rot: 3.141592653589793 rad pos: 29.5,-2.5 parent: 2 type: Transform - - uid: 8464 + - uid: 8695 components: - rot: 3.141592653589793 rad pos: 32.5,-2.5 parent: 2 type: Transform - - uid: 8465 + - uid: 8696 components: - rot: 3.141592653589793 rad pos: 32.5,3.5 parent: 2 type: Transform - - uid: 8466 + - uid: 8697 components: - rot: 3.141592653589793 rad pos: 29.5,3.5 @@ -55369,90 +56517,90 @@ entities: type: Transform - proto: SignChapel entities: - - uid: 8467 + - uid: 8698 components: - pos: -9.5,15.5 parent: 2 type: Transform - proto: SignChem entities: - - uid: 8468 + - uid: 8699 components: - pos: -17.5,14.5 parent: 2 type: Transform - proto: SignCloning entities: - - uid: 8469 + - uid: 8700 components: - pos: -20.5,14.5 parent: 2 type: Transform - proto: SignConspiracyBoard entities: - - uid: 8470 + - uid: 8701 components: - pos: -19.5,-17.5 parent: 2 type: Transform - proto: SignDirectionalBridge entities: - - uid: 8471 + - uid: 8702 components: - pos: -10.502095,-11.270584 parent: 2 type: Transform - - uid: 8472 + - uid: 8703 components: - pos: -13.5023775,-5.277466 parent: 2 type: Transform - - uid: 8473 + - uid: 8704 components: - pos: 2.4969792,-6.7222195 parent: 2 type: Transform - proto: SignDirectionalBrig entities: - - uid: 8474 + - uid: 8705 components: - pos: 12.5,-12.5 parent: 2 type: Transform - proto: SignDirectionalDorms entities: - - uid: 8475 + - uid: 8706 components: - rot: -1.5707963267948966 rad pos: -10.5,-11.5 parent: 2 type: Transform - - uid: 8476 + - uid: 8707 components: - pos: -13.502144,-5.738777 parent: 2 type: Transform - proto: SignDirectionalEng entities: - - uid: 8477 + - uid: 8708 components: - rot: 1.5707963267948966 rad pos: 0.5,11.5 parent: 2 type: Transform - - uid: 8478 + - uid: 8709 components: - rot: 3.141592653589793 rad pos: -10.5,-0.5 parent: 2 type: Transform - - uid: 8479 + - uid: 8710 components: - rot: 3.141592653589793 rad pos: 2.5,-6.5 parent: 2 type: Transform - - uid: 8480 + - uid: 8711 components: - rot: 1.5707963267948966 rad pos: -10.5,11.5 @@ -55460,7 +56608,7 @@ entities: type: Transform - proto: SignDirectionalEvac entities: - - uid: 8481 + - uid: 8712 components: - rot: -1.5707963267948966 rad pos: -14.5,-1.5 @@ -55468,7 +56616,7 @@ entities: type: Transform - proto: SignDirectionalFood entities: - - uid: 8482 + - uid: 8713 components: - rot: 1.5707963267948966 rad pos: -10.495825,-0.72594845 @@ -55476,7 +56624,7 @@ entities: type: Transform - proto: SignDirectionalGravity entities: - - uid: 8483 + - uid: 8714 components: - rot: 3.141592653589793 rad pos: 12.502012,19.72526 @@ -55484,7 +56632,7 @@ entities: type: Transform - proto: SignDirectionalHop entities: - - uid: 8484 + - uid: 8715 components: - rot: 1.5707963267948966 rad pos: -13.5,-5.5 @@ -55492,25 +56640,25 @@ entities: type: Transform - proto: SignDirectionalMed entities: - - uid: 8485 + - uid: 8716 components: - rot: 3.141592653589793 rad pos: -10.495608,-0.041553497 parent: 2 type: Transform - - uid: 8486 + - uid: 8717 components: - rot: -1.5707963267948966 rad pos: 2.487935,-6.948291 parent: 2 type: Transform - - uid: 8487 + - uid: 8718 components: - rot: -1.5707963267948966 rad pos: 0.49993616,11.731386 parent: 2 type: Transform - - uid: 8488 + - uid: 8719 components: - rot: -1.5707963267948966 rad pos: -10.50188,11.722548 @@ -55518,13 +56666,13 @@ entities: type: Transform - proto: SignDirectionalSci entities: - - uid: 8489 + - uid: 8720 components: - rot: 1.5707963267948966 rad pos: -10.504114,11.275202 parent: 2 type: Transform - - uid: 8490 + - uid: 8721 components: - rot: 3.141592653589793 rad pos: -10.493698,-0.27061605 @@ -55532,17 +56680,17 @@ entities: type: Transform - proto: SignDirectionalSec entities: - - uid: 8491 + - uid: 8722 components: - pos: 2.4907293,-6.271907 parent: 2 type: Transform - - uid: 8492 + - uid: 8723 components: - pos: 0.50798494,11.269236 parent: 2 type: Transform - - uid: 8493 + - uid: 8724 components: - rot: 1.5707963267948966 rad pos: -10.50176,-6.268303 @@ -55550,7 +56698,7 @@ entities: type: Transform - proto: SignDirectionalSolar entities: - - uid: 8494 + - uid: 8725 components: - rot: 3.141592653589793 rad pos: -22.5,26.5 @@ -55558,7 +56706,7 @@ entities: type: Transform - proto: SignDirectionalSupply entities: - - uid: 8495 + - uid: 8726 components: - rot: 1.5707963267948966 rad pos: -10.500423,-6.4916277 @@ -55566,35 +56714,35 @@ entities: type: Transform - proto: SignDrones entities: - - uid: 8496 + - uid: 8727 components: - pos: -3.5,39.5 parent: 2 type: Transform - proto: SignElectricalMed entities: - - uid: 8497 + - uid: 8728 components: - pos: 21.5,19.5 parent: 2 type: Transform - proto: SignEngineering entities: - - uid: 8498 + - uid: 8729 components: - pos: 4.5,14.5 parent: 2 type: Transform - proto: SignEscapePods entities: - - uid: 8499 + - uid: 8730 components: - pos: -28.5,33.5 parent: 2 type: Transform - proto: SignEVA entities: - - uid: 8500 + - uid: 8731 components: - desc: A sign indicating an EVA equipment room. type: MetaData @@ -55602,7 +56750,7 @@ entities: pos: 1.5,-6.5 parent: 2 type: Transform - - uid: 8501 + - uid: 8732 components: - desc: A sign indicating an EVA equipment room. type: MetaData @@ -55612,60 +56760,60 @@ entities: type: Transform - proto: SignExamroom entities: - - uid: 8502 + - uid: 8733 components: - pos: -14.5,6.5 parent: 2 type: Transform - proto: SignGravity entities: - - uid: 8503 + - uid: 8734 components: - pos: 11.5,22.5 parent: 2 type: Transform - proto: SignInterrogation entities: - - uid: 8504 + - uid: 8735 components: - pos: 11.5,-23.5 parent: 2 type: Transform - proto: SignMail entities: - - uid: 8505 + - uid: 8736 components: - pos: 5.5,3.5 parent: 2 type: Transform - - uid: 8506 + - uid: 8737 components: - pos: 9.5,5.5 parent: 2 type: Transform - proto: SignMedical entities: - - uid: 8507 + - uid: 8738 components: - pos: -13.5,11.5 parent: 2 type: Transform - proto: SignMorgue entities: - - uid: 8508 + - uid: 8739 components: - pos: -23.5,15.5 parent: 2 type: Transform - proto: SignNTMine entities: - - uid: 8509 + - uid: 8740 components: - rot: -1.5707963267948966 rad pos: 28.5,-4.5 parent: 2 type: Transform - - uid: 8510 + - uid: 8741 components: - rot: -1.5707963267948966 rad pos: -35.5,-30.5 @@ -55673,69 +56821,69 @@ entities: type: Transform - proto: SignPlaque entities: - - uid: 8511 + - uid: 8742 components: - pos: -6.5,-0.5 parent: 2 type: Transform - proto: SignShield entities: - - uid: 8512 + - uid: 8743 components: - pos: 6.5,-13.5 parent: 2 type: Transform - proto: SignShipDock entities: - - uid: 8513 + - uid: 8744 components: - pos: -31.5,-1.5 parent: 2 type: Transform - - uid: 8514 + - uid: 8745 components: - pos: -31.5,-5.5 parent: 2 type: Transform - proto: SignSurvival entities: - - uid: 8515 + - uid: 8746 components: - rot: -1.5707963267948966 rad pos: -35.5,-26.5 parent: 2 type: Transform - - uid: 8516 + - uid: 8747 components: - rot: -1.5707963267948966 rad pos: -37.5,-26.5 parent: 2 type: Transform - - uid: 8517 + - uid: 8748 components: - rot: -1.5707963267948966 rad pos: -34.5,-29.5 parent: 2 type: Transform - - uid: 8518 + - uid: 8749 components: - rot: -1.5707963267948966 rad pos: -37.5,-30.5 parent: 2 type: Transform - - uid: 8519 + - uid: 8750 components: - rot: -1.5707963267948966 rad pos: -34.5,-27.5 parent: 2 type: Transform - - uid: 8520 + - uid: 8751 components: - rot: -1.5707963267948966 rad pos: -38.5,-27.5 parent: 2 type: Transform - - uid: 8521 + - uid: 8752 components: - rot: -1.5707963267948966 rad pos: -38.5,-29.5 @@ -55743,26 +56891,26 @@ entities: type: Transform - proto: SignTelecomms entities: - - uid: 8522 + - uid: 8753 components: - pos: 19.5,19.5 parent: 2 type: Transform - proto: Sink entities: - - uid: 8523 + - uid: 8754 components: - rot: -1.5707963267948966 rad pos: 29.5,13.5 parent: 2 type: Transform - - uid: 8524 + - uid: 8755 components: - rot: 3.141592653589793 rad pos: -8.5,-32.5 parent: 2 type: Transform - - uid: 8525 + - uid: 8756 components: - rot: 3.141592653589793 rad pos: 24.5,-23.5 @@ -55770,13 +56918,13 @@ entities: type: Transform - proto: SinkEmpty entities: - - uid: 8526 + - uid: 8757 components: - rot: 3.141592653589793 rad pos: -7.5,-8.5 parent: 2 type: Transform - - uid: 8527 + - uid: 8758 components: - rot: -1.5707963267948966 rad pos: 14.5,-5.5 @@ -55784,7 +56932,7 @@ entities: type: Transform - proto: SinkStemless entities: - - uid: 8528 + - uid: 8759 components: - rot: -1.5707963267948966 rad pos: 17.5,-23.5 @@ -55792,7 +56940,7 @@ entities: type: Transform - proto: SmallLight entities: - - uid: 8529 + - uid: 8760 components: - rot: -1.5707963267948966 rad pos: -35.5,-28.5 @@ -55800,29 +56948,29 @@ entities: type: Transform - proto: SMESBasic entities: - - uid: 8530 + - uid: 8761 components: - pos: 15.5,19.5 parent: 2 type: Transform - - uid: 8531 + - uid: 8762 components: - pos: 13.5,19.5 parent: 2 type: Transform - - uid: 8532 + - uid: 8763 components: - pos: 14.5,19.5 parent: 2 type: Transform - - uid: 8533 + - uid: 8764 components: - name: North Solar SMES type: MetaData - pos: -20.5,27.5 parent: 2 type: Transform - - uid: 8534 + - uid: 8765 components: - name: East Solar SMES type: MetaData @@ -55831,27 +56979,27 @@ entities: type: Transform - proto: SmokingPipeFilledTobacco entities: - - uid: 8535 + - uid: 8766 components: - pos: -12.332444,28.704548 parent: 2 type: Transform - proto: SoapHomemade entities: - - uid: 8536 + - uid: 8767 components: - pos: 17.502792,-23.408857 parent: 2 type: Transform - proto: soda_dispenser entities: - - uid: 8537 + - uid: 8768 components: - rot: -1.5707963267948966 rad pos: -4.5,-8.5 parent: 2 type: Transform - - uid: 8538 + - uid: 8769 components: - rot: 3.141592653589793 rad pos: 36.5,19.5 @@ -55859,392 +57007,392 @@ entities: type: Transform - proto: SolarAssemblyPart entities: - - uid: 8539 + - uid: 8770 components: - pos: 51.532413,29.530523 parent: 2 type: Transform - - uid: 8540 + - uid: 8771 components: - pos: 45.563663,29.546148 parent: 2 type: Transform - - uid: 8541 + - uid: 8772 components: - pos: 57.51679,27.530523 parent: 2 type: Transform - - uid: 8542 + - uid: 8773 components: - pos: 44.45429,31.483648 parent: 2 type: Transform - proto: SolarPanel entities: - - uid: 8543 + - uid: 8774 components: - pos: 49.5,29.5 parent: 2 type: Transform - - uid: 8544 + - uid: 8775 components: - pos: 55.5,29.5 parent: 2 type: Transform - - uid: 8545 + - uid: 8776 components: - pos: 57.5,29.5 parent: 2 type: Transform - - uid: 8546 + - uid: 8777 components: - pos: -24.5,54.5 parent: 2 type: Transform - - uid: 8547 + - uid: 8778 components: - pos: -16.5,56.5 parent: 2 type: Transform - - uid: 8548 + - uid: 8779 components: - pos: -18.5,56.5 parent: 2 type: Transform - - uid: 8549 + - uid: 8780 components: - pos: -14.5,61.5 parent: 2 type: Transform - - uid: 8550 + - uid: 8781 components: - pos: -18.5,63.5 parent: 2 type: Transform - - uid: 8551 + - uid: 8782 components: - pos: -22.5,63.5 parent: 2 type: Transform - - uid: 8552 + - uid: 8783 components: - pos: -12.5,60.5 parent: 2 type: Transform - - uid: 8553 + - uid: 8784 components: - pos: -14.5,63.5 parent: 2 type: Transform - - uid: 8554 + - uid: 8785 components: - pos: -16.5,63.5 parent: 2 type: Transform - - uid: 8555 + - uid: 8786 components: - pos: -28.5,53.5 parent: 2 type: Transform - - uid: 8556 + - uid: 8787 components: - pos: 56.5,31.5 parent: 2 type: Transform - - uid: 8557 + - uid: 8788 components: - pos: -16.5,54.5 parent: 2 type: Transform - - uid: 8558 + - uid: 8789 components: - pos: 55.5,27.5 parent: 2 type: Transform - - uid: 8559 + - uid: 8790 components: - pos: 57.5,25.5 parent: 2 type: Transform - - uid: 8560 + - uid: 8791 components: - pos: 55.5,25.5 parent: 2 type: Transform - - uid: 8561 + - uid: 8792 components: - pos: 53.5,27.5 parent: 2 type: Transform - - uid: 8562 + - uid: 8793 components: - pos: 51.5,27.5 parent: 2 type: Transform - - uid: 8563 + - uid: 8794 components: - pos: 53.5,29.5 parent: 2 type: Transform - - uid: 8564 + - uid: 8795 components: - pos: 52.5,31.5 parent: 2 type: Transform - - uid: 8565 + - uid: 8796 components: - pos: 47.5,29.5 parent: 2 type: Transform - - uid: 8566 + - uid: 8797 components: - pos: 47.5,27.5 parent: 2 type: Transform - - uid: 8567 + - uid: 8798 components: - pos: 43.5,29.5 parent: 2 type: Transform - - uid: 8568 + - uid: 8799 components: - pos: 43.5,27.5 parent: 2 type: Transform - - uid: 8569 + - uid: 8800 components: - pos: 45.5,27.5 parent: 2 type: Transform - - uid: 8570 + - uid: 8801 components: - pos: 43.5,25.5 parent: 2 type: Transform - - uid: 8571 + - uid: 8802 components: - pos: 49.5,25.5 parent: 2 type: Transform - - uid: 8572 + - uid: 8803 components: - pos: 45.5,25.5 parent: 2 type: Transform - - uid: 8573 + - uid: 8804 components: - pos: 47.5,25.5 parent: 2 type: Transform - - uid: 8574 + - uid: 8805 components: - pos: 51.5,25.5 parent: 2 type: Transform - - uid: 8575 + - uid: 8806 components: - pos: -28.5,60.5 parent: 2 type: Transform - - uid: 8576 + - uid: 8807 components: - pos: -26.5,63.5 parent: 2 type: Transform - - uid: 8577 + - uid: 8808 components: - pos: -26.5,61.5 parent: 2 type: Transform - - uid: 8578 + - uid: 8809 components: - pos: -24.5,61.5 parent: 2 type: Transform - - uid: 8579 + - uid: 8810 components: - pos: -26.5,56.5 parent: 2 type: Transform - - uid: 8580 + - uid: 8811 components: - pos: -18.5,54.5 parent: 2 type: Transform - - uid: 8581 + - uid: 8812 components: - pos: -22.5,56.5 parent: 2 type: Transform - - uid: 8582 + - uid: 8813 components: - pos: -14.5,54.5 parent: 2 type: Transform - - uid: 8583 + - uid: 8814 components: - pos: -12.5,53.5 parent: 2 type: Transform - - uid: 8584 + - uid: 8815 components: - pos: -26.5,54.5 parent: 2 type: Transform - proto: SolarPanelBroken entities: - - uid: 8585 + - uid: 8816 components: - pos: 57.5,18.5 parent: 2 type: Transform - - uid: 8586 + - uid: 8817 components: - pos: -14.5,56.5 parent: 2 type: Transform - - uid: 8587 + - uid: 8818 components: - pos: -22.5,61.5 parent: 2 type: Transform - - uid: 8588 + - uid: 8819 components: - pos: -18.5,61.5 parent: 2 type: Transform - - uid: 8589 + - uid: 8820 components: - pos: -22.5,54.5 parent: 2 type: Transform - - uid: 8590 + - uid: 8821 components: - pos: 53.5,25.5 parent: 2 type: Transform - - uid: 8591 + - uid: 8822 components: - pos: 49.5,27.5 parent: 2 type: Transform - - uid: 8592 + - uid: 8823 components: - pos: 48.5,31.5 parent: 2 type: Transform - - uid: 8593 + - uid: 8824 components: - pos: 49.5,16.5 parent: 2 type: Transform - - uid: 8594 + - uid: 8825 components: - pos: -16.5,61.5 parent: 2 type: Transform - - uid: 8595 + - uid: 8826 components: - pos: -24.5,63.5 parent: 2 type: Transform - - uid: 8596 + - uid: 8827 components: - pos: -24.5,56.5 parent: 2 type: Transform - proto: SolarTracker entities: - - uid: 8597 + - uid: 8828 components: - pos: 59.5,23.5 parent: 2 type: Transform - - uid: 8598 + - uid: 8829 components: - pos: -20.5,64.5 parent: 2 type: Transform - proto: SophicScribe entities: - - uid: 8599 + - uid: 8830 components: - pos: -9.5,16.5 parent: 2 type: Transform - proto: SpaceCash10 entities: - - uid: 8600 + - uid: 8831 components: - pos: -8.260092,-12.235714 parent: 2 type: Transform - - uid: 8601 + - uid: 8832 components: - pos: -8.822592,-12.579702 parent: 2 type: Transform - - uid: 8602 + - uid: 8833 components: - pos: 35.3361,24.679356 parent: 2 type: Transform - - uid: 8603 + - uid: 8834 components: - pos: -34.420715,29.786146 parent: 2 type: Transform - - uid: 8604 + - uid: 8835 components: - pos: -34.1603,29.640211 parent: 2 type: Transform - - uid: 8605 + - uid: 8836 components: - pos: -34.44155,29.494276 parent: 2 type: Transform - proto: SpaceCash100 entities: - - uid: 8606 + - uid: 8837 components: - pos: 34.2111,24.7419 parent: 2 type: Transform - - uid: 8607 + - uid: 8838 components: - pos: 34.49235,24.616812 parent: 2 type: Transform - - uid: 8608 + - uid: 8839 components: - pos: 35.67985,25.138008 parent: 2 type: Transform - proto: SpaceCash1000 entities: - - uid: 8609 + - uid: 8840 components: - pos: 24.160347,4.5508876 parent: 2 type: Transform - proto: SpawnMobBandito entities: - - uid: 8610 + - uid: 8841 components: - pos: 14.5,-25.5 parent: 2 type: Transform - proto: SpawnMobCat entities: - - uid: 8611 + - uid: 8842 components: - pos: -23.5,-18.5 parent: 2 type: Transform - proto: SpawnMobCatBingus entities: - - uid: 8612 + - uid: 8843 components: - rot: 1.5707963267948966 rad pos: -27.5,-23.5 @@ -56252,427 +57400,417 @@ entities: type: Transform - proto: SpawnMobCatRuntime entities: - - uid: 8613 + - uid: 8844 components: - pos: -21.5,21.5 parent: 2 type: Transform - proto: SpawnMobCleanBot entities: - - uid: 8614 + - uid: 8845 components: - pos: -16.5,8.5 parent: 2 type: Transform - - uid: 8615 + - uid: 8846 components: - pos: -1.5,21.5 parent: 2 type: Transform - proto: SpawnMobCorgi entities: - - uid: 8616 + - uid: 8847 components: - pos: 8.5,-5.5 parent: 2 type: Transform - proto: SpawnMobDrone entities: - - uid: 8617 + - uid: 8848 components: - pos: -1.5,39.5 parent: 2 type: Transform - - uid: 8618 + - uid: 8849 components: - pos: -0.5,39.5 parent: 2 type: Transform - proto: SpawnMobFoxRenault entities: - - uid: 8619 + - uid: 8850 components: - pos: -12.5,-30.5 parent: 2 type: Transform - proto: SpawnMobMedibot entities: - - uid: 8620 + - uid: 8851 components: - pos: -2.5,21.5 parent: 2 type: Transform - proto: SpawnMobMonkeyPunpun entities: - - uid: 8621 + - uid: 8852 components: - pos: -9.5,-11.5 parent: 2 type: Transform - proto: SpawnMobMouse entities: - - uid: 8622 + - uid: 8853 components: - pos: -4.5,-12.5 parent: 2 type: Transform - - uid: 8623 + - uid: 8854 components: - pos: 9.5,23.5 parent: 2 type: Transform - proto: SpawnMobPossumMorty entities: - - uid: 8624 + - uid: 8855 components: - pos: -22.5,17.5 parent: 2 type: Transform - proto: SpawnMobRaccoonMorticia entities: - - uid: 8625 + - uid: 8856 components: - pos: 17.5,-7.5 parent: 2 type: Transform - proto: SpawnMobShiva entities: - - uid: 8626 + - uid: 8857 components: - pos: 24.5,-19.5 parent: 2 type: Transform - proto: SpawnPointAssistant entities: - - uid: 8627 + - uid: 8858 components: - pos: -7.5,-1.5 parent: 2 type: Transform - - uid: 8628 + - uid: 8859 components: - pos: -5.5,-2.5 parent: 2 type: Transform - - uid: 8629 + - uid: 8860 components: - pos: -23.5,-4.5 parent: 2 type: Transform - - uid: 8630 + - uid: 8861 components: - pos: -23.5,-2.5 parent: 2 type: Transform - - uid: 8631 + - uid: 8862 components: - pos: -1.5,-2.5 parent: 2 type: Transform - - uid: 8632 + - uid: 8863 components: - pos: -29.5,-16.5 parent: 2 type: Transform - - uid: 8633 + - uid: 8864 components: - pos: -27.5,-22.5 parent: 2 type: Transform - - uid: 8634 + - uid: 8865 components: - pos: -7.5,-5.5 parent: 2 type: Transform - - uid: 8635 + - uid: 8866 components: - pos: -24.5,-18.5 parent: 2 type: Transform - - uid: 8636 + - uid: 8867 components: - pos: -18.5,-11.5 parent: 2 type: Transform - - uid: 8637 + - uid: 8868 components: - pos: -20.5,-12.5 parent: 2 type: Transform - - uid: 8638 + - uid: 8869 components: - pos: -15.5,-10.5 parent: 2 type: Transform - - uid: 8639 + - uid: 8870 components: - pos: -24.5,-9.5 parent: 2 type: Transform - - uid: 8640 + - uid: 8871 components: - pos: -0.5,16.5 parent: 2 type: Transform - - uid: 8641 + - uid: 8872 components: - pos: 1.5,16.5 parent: 2 type: Transform - - uid: 8642 + - uid: 8873 components: - pos: -27.5,-20.5 parent: 2 type: Transform - proto: SpawnPointAtmos entities: - - uid: 8643 + - uid: 8874 components: - pos: 30.5,28.5 parent: 2 type: Transform - - uid: 8644 + - uid: 8875 components: - pos: 23.5,31.5 parent: 2 type: Transform - - uid: 8645 + - uid: 8876 components: - pos: 7.5,32.5 parent: 2 type: Transform - proto: SpawnPointBartender entities: - - uid: 8646 + - uid: 8877 components: - pos: -8.5,-11.5 parent: 2 type: Transform - - uid: 8647 + - uid: 8878 components: - pos: -8.5,-10.5 parent: 2 type: Transform - - uid: 8648 + - uid: 8879 components: - pos: -7.5,-12.5 parent: 2 type: Transform - proto: SpawnPointBorg entities: - - uid: 8649 + - uid: 8880 components: - pos: -2.5,39.5 parent: 2 type: Transform - - uid: 8650 + - uid: 8881 components: - pos: -1.5,17.5 parent: 2 type: Transform - - uid: 8651 + - uid: 8882 components: - pos: 11.5,21.5 parent: 2 type: Transform - - uid: 8652 + - uid: 8883 components: - pos: -2.5,20.5 parent: 2 type: Transform - - uid: 8653 + - uid: 8884 components: - pos: -1.5,20.5 parent: 2 type: Transform - - uid: 8654 - components: - - pos: -22.5,8.5 - parent: 2 - type: Transform - - uid: 8655 - components: - - pos: -18.5,8.5 - parent: 2 - type: Transform - - uid: 8656 + - uid: 8885 components: - pos: -19.5,12.5 parent: 2 type: Transform - proto: SpawnPointBotanist entities: - - uid: 8657 + - uid: 8886 components: - pos: -2.5,9.5 parent: 2 type: Transform - - uid: 8658 + - uid: 8887 components: - pos: -5.5,8.5 parent: 2 type: Transform - proto: SpawnPointBoxer entities: - - uid: 8659 + - uid: 8888 components: - pos: -33.5,27.5 parent: 2 type: Transform - - uid: 8660 + - uid: 8889 components: - pos: -33.5,24.5 parent: 2 type: Transform - - uid: 8661 + - uid: 8890 components: - pos: -34.5,30.5 parent: 2 type: Transform - - uid: 8662 + - uid: 8891 components: - pos: -30.5,33.5 parent: 2 type: Transform - proto: SpawnPointCaptain entities: - - uid: 8663 + - uid: 8892 components: - pos: -0.5,-20.5 parent: 2 type: Transform - proto: SpawnPointCargoTechnician entities: - - uid: 8664 + - uid: 8893 components: - pos: 19.5,-1.5 parent: 2 type: Transform - - uid: 8665 + - uid: 8894 components: - pos: 11.5,-1.5 parent: 2 type: Transform - - uid: 8666 + - uid: 8895 components: - pos: 18.5,-1.5 parent: 2 type: Transform - - uid: 8667 + - uid: 8896 components: - pos: 11.5,-0.5 parent: 2 type: Transform - - uid: 8668 + - uid: 8897 components: - pos: 27.5,0.5 parent: 2 type: Transform - - uid: 8669 + - uid: 8898 components: - pos: 27.5,-2.5 parent: 2 type: Transform - proto: SpawnPointChaplain entities: - - uid: 8670 + - uid: 8899 components: - pos: 5.5,19.5 parent: 2 type: Transform - - uid: 8671 + - uid: 8900 components: - pos: -0.5,21.5 parent: 2 type: Transform - proto: SpawnPointChef entities: - - uid: 8672 + - uid: 8901 components: - pos: -3.5,4.5 parent: 2 type: Transform - - uid: 8673 + - uid: 8902 components: - pos: -1.5,3.5 parent: 2 type: Transform - - uid: 8674 + - uid: 8903 components: - pos: -3.5,0.5 parent: 2 type: Transform - proto: SpawnPointChemist entities: - - uid: 8675 + - uid: 8904 components: - pos: -15.5,12.5 parent: 2 type: Transform - - uid: 8676 + - uid: 8905 components: - pos: -16.5,11.5 parent: 2 type: Transform - - uid: 8677 + - uid: 8906 components: - pos: -16.5,13.5 parent: 2 type: Transform - proto: SpawnPointChiefEngineer entities: - - uid: 8678 + - uid: 8907 components: - pos: -2.5,-23.5 parent: 2 type: Transform - proto: SpawnPointChiefMedicalOfficer entities: - - uid: 8679 + - uid: 8908 components: - pos: -2.5,-22.5 parent: 2 type: Transform - proto: SpawnPointClown entities: - - uid: 8680 + - uid: 8909 components: - pos: -0.5,-13.5 parent: 2 type: Transform - - uid: 8681 + - uid: 8910 components: - pos: -1.5,-12.5 parent: 2 type: Transform - - uid: 8682 + - uid: 8911 components: - pos: -2.5,-12.5 parent: 2 type: Transform - - uid: 8683 + - uid: 8912 components: - pos: 1.5,-12.5 parent: 2 type: Transform - proto: SpawnPointDetective entities: - - uid: 8684 + - uid: 8913 components: - pos: -18.5,-20.5 parent: 2 type: Transform - - uid: 8685 + - uid: 8914 components: - pos: -20.5,-20.5 parent: 2 type: Transform - - uid: 8686 + - uid: 8915 components: - pos: -20.5,-19.5 parent: 2 type: Transform - - uid: 8687 + - uid: 8916 components: - rot: -1.5707963267948966 rad pos: -18.5,-21.5 @@ -56680,91 +57818,91 @@ entities: type: Transform - proto: SpawnPointForensicMantis entities: - - uid: 8688 + - uid: 8917 components: - pos: -10.5,28.5 parent: 2 type: Transform - - uid: 8689 + - uid: 8918 components: - pos: -12.5,27.5 parent: 2 type: Transform - proto: SpawnPointHeadOfPersonnel entities: - - uid: 8690 + - uid: 8919 components: - pos: -2.5,-21.5 parent: 2 type: Transform - proto: SpawnPointHeadOfSecurity entities: - - uid: 8691 + - uid: 8920 components: - pos: 1.5,-21.5 parent: 2 type: Transform - proto: SpawnPointJanitor entities: - - uid: 8692 + - uid: 8921 components: - pos: 5.5,9.5 parent: 2 type: Transform - - uid: 8693 + - uid: 8922 components: - pos: 6.5,9.5 parent: 2 type: Transform - - uid: 8694 + - uid: 8923 components: - pos: 7.5,8.5 parent: 2 type: Transform - proto: SpawnPointLatejoin entities: - - uid: 8695 + - uid: 8924 components: - pos: -23.5,-3.5 parent: 2 type: Transform - - uid: 8696 + - uid: 8925 components: - rot: -1.5707963267948966 rad pos: -28.5,-2.5 parent: 2 type: Transform - - uid: 8697 + - uid: 8926 components: - rot: -1.5707963267948966 rad pos: -29.5,-2.5 parent: 2 type: Transform - - uid: 8698 + - uid: 8927 components: - rot: -1.5707963267948966 rad pos: -24.5,-3.5 parent: 2 type: Transform - - uid: 8699 + - uid: 8928 components: - rot: -1.5707963267948966 rad pos: -24.5,-2.5 parent: 2 type: Transform - - uid: 8700 + - uid: 8929 components: - rot: -1.5707963267948966 rad pos: -24.5,-4.5 parent: 2 type: Transform - - uid: 8701 + - uid: 8930 components: - rot: -1.5707963267948966 rad pos: -24.5,-7.5 parent: 2 type: Transform - - uid: 8702 + - uid: 8931 components: - rot: -1.5707963267948966 rad pos: -23.5,-7.5 @@ -56772,179 +57910,179 @@ entities: type: Transform - proto: SpawnPointLawyer entities: - - uid: 8703 + - uid: 8932 components: - pos: -28.5,-26.5 parent: 2 type: Transform - - uid: 8704 + - uid: 8933 components: - pos: -28.5,-27.5 parent: 2 type: Transform - - uid: 8705 + - uid: 8934 components: - pos: -24.5,-28.5 parent: 2 type: Transform - proto: SpawnPointMailCarrier entities: - - uid: 8706 + - uid: 8935 components: - pos: 11.5,5.5 parent: 2 type: Transform - - uid: 8707 + - uid: 8936 components: - pos: 12.5,5.5 parent: 2 type: Transform - - uid: 8708 + - uid: 8937 components: - pos: 7.5,5.5 parent: 2 type: Transform - proto: SpawnPointMedicalDoctor entities: - - uid: 8709 + - uid: 8938 components: - pos: -16.5,4.5 parent: 2 type: Transform - - uid: 8710 + - uid: 8939 components: - pos: -17.5,5.5 parent: 2 type: Transform - - uid: 8711 + - uid: 8940 components: - pos: -16.5,3.5 parent: 2 type: Transform - - uid: 8712 + - uid: 8941 components: - pos: -22.5,9.5 parent: 2 type: Transform - - uid: 8713 + - uid: 8942 components: - pos: -23.5,8.5 parent: 2 type: Transform - proto: SpawnPointMedicalIntern entities: - - uid: 8714 + - uid: 8943 components: - pos: -18.5,12.5 parent: 2 type: Transform - - uid: 8715 + - uid: 8944 components: - pos: -21.5,8.5 parent: 2 type: Transform - - uid: 8716 + - uid: 8945 components: - pos: -21.5,7.5 parent: 2 type: Transform - - uid: 8717 + - uid: 8946 components: - pos: -21.5,9.5 parent: 2 type: Transform - - uid: 8718 + - uid: 8947 components: - pos: -16.5,5.5 parent: 2 type: Transform - proto: SpawnPointMime entities: - - uid: 8719 + - uid: 8948 components: - pos: -0.5,-12.5 parent: 2 type: Transform - proto: SpawnPointMusician entities: - - uid: 8720 + - uid: 8949 components: - pos: 0.5,-12.5 parent: 2 type: Transform - proto: SpawnPointObserver entities: - - uid: 8721 + - uid: 8950 components: - pos: -3.5,-2.5 parent: 2 type: Transform - proto: SpawnPointParamedic entities: - - uid: 8722 + - uid: 8951 components: - pos: -23.5,9.5 parent: 2 type: Transform - proto: SpawnPointQuartermaster entities: - - uid: 8723 + - uid: 8952 components: - pos: 1.5,-22.5 parent: 2 type: Transform - proto: SpawnPointResearchAssistant entities: - - uid: 8724 + - uid: 8953 components: - pos: 2.5,25.5 parent: 2 type: Transform - - uid: 8725 + - uid: 8954 components: - pos: -6.5,27.5 parent: 2 type: Transform - - uid: 8726 + - uid: 8955 components: - pos: 4.5,24.5 parent: 2 type: Transform - - uid: 8727 + - uid: 8956 components: - pos: -8.5,36.5 parent: 2 type: Transform - - uid: 8728 + - uid: 8957 components: - pos: -14.5,32.5 parent: 2 type: Transform - - uid: 8729 + - uid: 8958 components: - pos: -9.5,32.5 parent: 2 type: Transform - proto: SpawnPointResearchDirector entities: - - uid: 8730 + - uid: 8959 components: - pos: 1.5,-23.5 parent: 2 type: Transform - proto: SpawnPointSalvageSpecialist entities: - - uid: 8731 + - uid: 8960 components: - pos: 24.5,-3.5 parent: 2 type: Transform - - uid: 8732 + - uid: 8961 components: - pos: 24.5,-1.5 parent: 2 type: Transform - - uid: 8733 + - uid: 8962 components: - rot: -1.5707963267948966 rad pos: 22.5,-3.5 @@ -56952,198 +58090,198 @@ entities: type: Transform - proto: SpawnPointScientist entities: - - uid: 8734 + - uid: 8963 components: - pos: 4.5,25.5 parent: 2 type: Transform - - uid: 8735 + - uid: 8964 components: - pos: -9.5,35.5 parent: 2 type: Transform - - uid: 8736 + - uid: 8965 components: - pos: -9.5,34.5 parent: 2 type: Transform - - uid: 8737 + - uid: 8966 components: - pos: -9.5,33.5 parent: 2 type: Transform - - uid: 8738 + - uid: 8967 components: - pos: -6.5,26.5 parent: 2 type: Transform - - uid: 8739 + - uid: 8968 components: - pos: 2.5,24.5 parent: 2 type: Transform - - uid: 8740 + - uid: 8969 components: - pos: -9.5,36.5 parent: 2 type: Transform - proto: SpawnPointSecurityCadet entities: - - uid: 8741 + - uid: 8970 components: - pos: 13.5,-16.5 parent: 2 type: Transform - - uid: 8742 + - uid: 8971 components: - pos: 10.5,-19.5 parent: 2 type: Transform - - uid: 8743 + - uid: 8972 components: - pos: 11.5,-18.5 parent: 2 type: Transform - proto: SpawnPointSecurityOfficer entities: - - uid: 8744 + - uid: 8973 components: - pos: 14.5,-16.5 parent: 2 type: Transform - - uid: 8745 + - uid: 8974 components: - pos: 9.5,-20.5 parent: 2 type: Transform - - uid: 8746 + - uid: 8975 components: - pos: 11.5,-19.5 parent: 2 type: Transform - - uid: 8747 + - uid: 8976 components: - pos: 9.5,-18.5 parent: 2 type: Transform - - uid: 8748 + - uid: 8977 components: - pos: -16.5,-8.5 parent: 2 type: Transform - proto: SpawnPointStationEngineer entities: - - uid: 8749 + - uid: 8978 components: - pos: 7.5,16.5 parent: 2 type: Transform - - uid: 8750 + - uid: 8979 components: - pos: 6.5,16.5 parent: 2 type: Transform - - uid: 8751 + - uid: 8980 components: - pos: 13.5,17.5 parent: 2 type: Transform - - uid: 8752 + - uid: 8981 components: - pos: 14.5,17.5 parent: 2 type: Transform - - uid: 8753 + - uid: 8982 components: - pos: 15.5,17.5 parent: 2 type: Transform - - uid: 8754 + - uid: 8983 components: - pos: 5.5,16.5 parent: 2 type: Transform - proto: SpawnPointTechnicalAssistant entities: - - uid: 8755 + - uid: 8984 components: - pos: 14.5,13.5 parent: 2 type: Transform - - uid: 8756 + - uid: 8985 components: - pos: 7.5,16.5 parent: 2 type: Transform - - uid: 8757 + - uid: 8986 components: - pos: 6.5,16.5 parent: 2 type: Transform - - uid: 8758 + - uid: 8987 components: - pos: 5.5,16.5 parent: 2 type: Transform - - uid: 8759 + - uid: 8988 components: - pos: 13.5,17.5 parent: 2 type: Transform - - uid: 8760 + - uid: 8989 components: - pos: 14.5,17.5 parent: 2 type: Transform - - uid: 8761 + - uid: 8990 components: - pos: 15.5,17.5 parent: 2 type: Transform - proto: SpawnPointWarden entities: - - uid: 8762 + - uid: 8991 components: - pos: 14.5,-13.5 parent: 2 type: Transform - - uid: 8763 + - uid: 8992 components: - pos: 15.5,-14.5 parent: 2 type: Transform - - uid: 8764 + - uid: 8993 components: - pos: 15.5,-13.5 parent: 2 type: Transform - proto: SpawnVehicleJanicart entities: - - uid: 8765 + - uid: 8994 components: - pos: 8.5,9.5 parent: 2 type: Transform - proto: Spoon entities: - - uid: 8766 + - uid: 8995 components: - pos: -2.2866445,-2.5153067 parent: 2 type: Transform - proto: Stairs entities: - - uid: 8767 + - uid: 8996 components: - pos: 20.5,-0.5 parent: 2 type: Transform - - uid: 8768 + - uid: 8997 components: - pos: 19.5,-0.5 parent: 2 type: Transform - - uid: 8769 + - uid: 8998 components: - rot: 3.141592653589793 rad pos: 20.5,-4.5 @@ -57151,35 +58289,35 @@ entities: type: Transform - proto: StairStage entities: - - uid: 8770 + - uid: 8999 components: - pos: 16.5,-29.5 parent: 2 type: Transform - - uid: 8771 + - uid: 9000 components: - pos: 17.5,-29.5 parent: 2 type: Transform - proto: StationMap entities: - - uid: 8772 + - uid: 9001 components: - pos: -3.5,14.5 parent: 2 type: Transform - - uid: 8773 + - uid: 9002 components: - pos: -20.5,-1.5 parent: 2 type: Transform - - uid: 8774 + - uid: 9003 components: - rot: -1.5707963267948966 rad pos: 6.5,-10.5 parent: 2 type: Transform - - uid: 8775 + - uid: 9004 components: - rot: -1.5707963267948966 rad pos: -10.5,-9.5 @@ -57187,101 +58325,101 @@ entities: type: Transform - proto: SteelBench entities: - - uid: 8776 + - uid: 9005 components: - rot: -1.5707963267948966 rad pos: -23.5,0.5 parent: 2 type: Transform - - uid: 8777 + - uid: 9006 components: - rot: 3.141592653589793 rad pos: -25.5,-5.5 parent: 2 type: Transform - - uid: 8778 + - uid: 9007 components: - rot: 3.141592653589793 rad pos: -24.5,-5.5 parent: 2 type: Transform - - uid: 8779 + - uid: 9008 components: - rot: 1.5707963267948966 rad pos: 4.5,-22.5 parent: 2 type: Transform - - uid: 8780 + - uid: 9009 components: - rot: 1.5707963267948966 rad pos: 4.5,-21.5 parent: 2 type: Transform - - uid: 8781 + - uid: 9010 components: - rot: -1.5707963267948966 rad pos: -11.5,-11.5 parent: 2 type: Transform - - uid: 8782 + - uid: 9011 components: - rot: -1.5707963267948966 rad pos: -11.5,-10.5 parent: 2 type: Transform - - uid: 8783 + - uid: 9012 components: - rot: 3.141592653589793 rad pos: -23.5,-9.5 parent: 2 type: Transform - - uid: 8784 + - uid: 9013 components: - rot: 3.141592653589793 rad pos: -24.5,-9.5 parent: 2 type: Transform - - uid: 8785 + - uid: 9014 components: - rot: -1.5707963267948966 rad pos: -23.5,-0.5 parent: 2 type: Transform - - uid: 8786 + - uid: 9015 components: - pos: -24.5,-6.5 parent: 2 type: Transform - - uid: 8787 + - uid: 9016 components: - rot: 1.5707963267948966 rad pos: 6.5,1.5 parent: 2 type: Transform - - uid: 8788 + - uid: 9017 components: - rot: 1.5707963267948966 rad pos: 6.5,-1.5 parent: 2 type: Transform - - uid: 8789 + - uid: 9018 components: - rot: 3.141592653589793 rad pos: -8.5,12.5 parent: 2 type: Transform - - uid: 8790 + - uid: 9019 components: - rot: 1.5707963267948966 rad pos: -12.5,0.5 parent: 2 type: Transform - - uid: 8791 + - uid: 9020 components: - pos: -25.5,-6.5 parent: 2 type: Transform - - uid: 8792 + - uid: 9021 components: - rot: 1.5707963267948966 rad pos: 6.5,2.5 @@ -57289,94 +58427,94 @@ entities: type: Transform - proto: Stool entities: - - uid: 8793 + - uid: 9022 components: - rot: 1.5707963267948966 rad pos: -11.5,22.5 parent: 2 type: Transform - - uid: 8794 + - uid: 9023 components: - rot: 1.5707963267948966 rad pos: -35.5,31.5 parent: 2 type: Transform - - uid: 8795 + - uid: 9024 components: - pos: -31.5,35.5 parent: 2 type: Transform - - uid: 8796 + - uid: 9025 components: - rot: -1.5707963267948966 rad pos: -0.5,-5.5 parent: 2 type: Transform - - uid: 8797 + - uid: 9026 components: - pos: 38.5,22.5 parent: 2 type: Transform - proto: StoolBar entities: - - uid: 8798 + - uid: 9027 components: - rot: 3.141592653589793 rad pos: -1.5,-1.5 parent: 2 type: Transform - - uid: 8799 + - uid: 9028 components: - rot: 3.141592653589793 rad pos: -2.5,-1.5 parent: 2 type: Transform - - uid: 8800 + - uid: 9029 components: - rot: 3.141592653589793 rad pos: -0.5,-1.5 parent: 2 type: Transform - - uid: 8801 + - uid: 9030 components: - pos: -7.5,-5.5 parent: 2 type: Transform - - uid: 8802 + - uid: 9031 components: - pos: -6.5,-5.5 parent: 2 type: Transform - - uid: 8803 + - uid: 9032 components: - pos: -5.5,-5.5 parent: 2 type: Transform - - uid: 8804 + - uid: 9033 components: - rot: 3.141592653589793 rad pos: 33.5,23.5 parent: 2 type: Transform - - uid: 8805 + - uid: 9034 components: - rot: 3.141592653589793 rad pos: 34.5,23.5 parent: 2 type: Transform - - uid: 8806 + - uid: 9035 components: - rot: 1.5707963267948966 rad pos: 32.5,24.5 parent: 2 type: Transform - - uid: 8807 + - uid: 9036 components: - rot: 3.141592653589793 rad pos: 35.5,23.5 parent: 2 type: Transform - - uid: 8808 + - uid: 9037 components: - rot: -1.5707963267948966 rad pos: 36.5,24.5 @@ -57384,163 +58522,163 @@ entities: type: Transform - proto: StorageCanister entities: - - uid: 8809 + - uid: 9038 components: - pos: 27.5,29.5 parent: 2 type: Transform - - uid: 8810 + - uid: 9039 components: - pos: 27.5,30.5 parent: 2 type: Transform - - uid: 8811 + - uid: 9040 components: - pos: 20.5,28.5 parent: 2 type: Transform - - uid: 8812 + - uid: 9041 components: - pos: 21.5,28.5 parent: 2 type: Transform - - uid: 8813 + - uid: 9042 components: - pos: 22.5,28.5 parent: 2 type: Transform - - uid: 8814 + - uid: 9043 components: - pos: 10.5,28.5 parent: 2 type: Transform - - uid: 8815 + - uid: 9044 components: - pos: 17.5,2.5 parent: 2 type: Transform - proto: Stunbaton entities: - - uid: 8816 + - uid: 9045 components: - pos: 12.962947,-17.37264 parent: 2 type: Transform - - uid: 8817 + - uid: 9046 components: - pos: 12.990994,-17.505898 parent: 2 type: Transform - proto: SubstationBasic entities: - - uid: 8818 + - uid: 9047 components: - name: Common area Substation type: MetaData - pos: -7.5,5.5 parent: 2 type: Transform - - uid: 8819 + - uid: 9048 components: - name: Security Substation type: MetaData - pos: 22.5,-12.5 parent: 2 type: Transform - - uid: 8820 + - uid: 9049 components: - name: Epistemics Substation type: MetaData - pos: -14.5,28.5 parent: 2 type: Transform - - uid: 8821 + - uid: 9050 components: - name: Bridge Substation type: MetaData - pos: -4.5,-11.5 parent: 2 type: Transform - - uid: 8822 + - uid: 9051 components: - name: Medical + Evac Substation type: MetaData - pos: -14.5,1.5 parent: 2 type: Transform - - uid: 8823 + - uid: 9052 components: - name: Engieering Substation type: MetaData - pos: 16.5,15.5 parent: 2 type: Transform - - uid: 8824 + - uid: 9053 components: - pos: -29.5,27.5 parent: 2 type: Transform - proto: SuitStorageCE entities: - - uid: 8825 + - uid: 9054 components: - pos: 27.5,12.5 parent: 2 type: Transform - proto: SuitStorageEngi entities: - - uid: 8826 + - uid: 9055 components: - pos: 6.5,17.5 parent: 2 type: Transform - - uid: 8827 + - uid: 9056 components: - pos: 5.5,17.5 parent: 2 type: Transform - - uid: 8828 + - uid: 9057 components: - pos: 7.5,17.5 parent: 2 type: Transform - proto: SuitStorageEVA entities: - - uid: 8829 + - uid: 9058 components: - pos: 1.5,-8.5 parent: 2 type: Transform - - uid: 8830 + - uid: 9059 components: - pos: -2.5,-9.5 parent: 2 type: Transform - - uid: 8831 + - uid: 9060 components: - pos: -2.5,-8.5 parent: 2 type: Transform - - uid: 8832 + - uid: 9061 components: - pos: -0.5,-9.5 parent: 2 type: Transform - - uid: 8833 + - uid: 9062 components: - pos: 1.5,-9.5 parent: 2 type: Transform - proto: SuitStorageHOS entities: - - uid: 8834 + - uid: 9063 components: - pos: 23.5,-19.5 parent: 2 type: Transform - proto: SurveillanceCameraCommand entities: - - uid: 8835 + - uid: 9064 components: - rot: 3.141592653589793 rad pos: 0.5,-17.5 @@ -57551,7 +58689,7 @@ entities: nameSet: True id: Bridge Meeting Room type: SurveillanceCamera - - uid: 8836 + - uid: 9065 components: - rot: 1.5707963267948966 rad pos: 2.5,-27.5 @@ -57562,7 +58700,7 @@ entities: nameSet: True id: Command Room type: SurveillanceCamera - - uid: 8837 + - uid: 9066 components: - rot: -1.5707963267948966 rad pos: -8.5,-23.5 @@ -57573,7 +58711,7 @@ entities: nameSet: True id: Captains Office type: SurveillanceCamera - - uid: 8838 + - uid: 9067 components: - rot: -1.5707963267948966 rad pos: -15.5,-21.5 @@ -57584,7 +58722,7 @@ entities: nameSet: True id: Vault type: SurveillanceCamera - - uid: 8839 + - uid: 9068 components: - rot: 3.141592653589793 rad pos: -21.5,22.5 @@ -57595,7 +58733,7 @@ entities: nameSet: True id: CMO Bedroom type: SurveillanceCamera - - uid: 8840 + - uid: 9069 components: - rot: 1.5707963267948966 rad pos: -9.5,28.5 @@ -57606,7 +58744,7 @@ entities: nameSet: True id: RD bedroom type: SurveillanceCamera - - uid: 8841 + - uid: 9070 components: - pos: 12.5,4.5 parent: 2 @@ -57616,7 +58754,7 @@ entities: nameSet: True id: QM Bedroom type: SurveillanceCamera - - uid: 8842 + - uid: 9071 components: - rot: 3.141592653589793 rad pos: 24.5,-19.5 @@ -57627,7 +58765,7 @@ entities: nameSet: True id: HoS Bedroom type: SurveillanceCamera - - uid: 8843 + - uid: 9072 components: - rot: 3.141592653589793 rad pos: -11.5,-28.5 @@ -57638,7 +58776,7 @@ entities: nameSet: True id: Captain's Bedroom type: SurveillanceCamera - - uid: 8844 + - uid: 9073 components: - rot: 1.5707963267948966 rad pos: 20.5,22.5 @@ -57651,7 +58789,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraEngineering entities: - - uid: 8845 + - uid: 9074 components: - pos: 25.5,21.5 parent: 2 @@ -57661,7 +58799,7 @@ entities: nameSet: True id: AME Room type: SurveillanceCamera - - uid: 8846 + - uid: 9075 components: - pos: 11.5,23.5 parent: 2 @@ -57671,7 +58809,7 @@ entities: nameSet: True id: Gravity type: SurveillanceCamera - - uid: 8847 + - uid: 9076 components: - rot: 1.5707963267948966 rad pos: 17.5,24.5 @@ -57682,7 +58820,7 @@ entities: nameSet: True id: Atmos 1 type: SurveillanceCamera - - uid: 8848 + - uid: 9077 components: - pos: 26.5,28.5 parent: 2 @@ -57692,7 +58830,7 @@ entities: nameSet: True id: Atmos 2 type: SurveillanceCamera - - uid: 8849 + - uid: 9078 components: - pos: 18.5,12.5 parent: 2 @@ -57702,7 +58840,7 @@ entities: nameSet: True id: CE Office type: SurveillanceCamera - - uid: 8850 + - uid: 9079 components: - rot: -1.5707963267948966 rad pos: 3.5,33.5 @@ -57712,7 +58850,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraGeneral entities: - - uid: 8851 + - uid: 9080 components: - rot: -1.5707963267948966 rad pos: -12.5,-15.5 @@ -57723,7 +58861,7 @@ entities: nameSet: True id: Outside HoP type: SurveillanceCamera - - uid: 8852 + - uid: 9081 components: - rot: 1.5707963267948966 rad pos: -11.5,-0.5 @@ -57734,7 +58872,7 @@ entities: nameSet: True id: Outside Evac type: SurveillanceCamera - - uid: 8853 + - uid: 9082 components: - pos: -3.5,-5.5 parent: 2 @@ -57744,7 +58882,7 @@ entities: nameSet: True id: Food Court type: SurveillanceCamera - - uid: 8854 + - uid: 9083 components: - rot: -1.5707963267948966 rad pos: 3.5,-11.5 @@ -57755,7 +58893,7 @@ entities: nameSet: True id: Outside Security type: SurveillanceCamera - - uid: 8855 + - uid: 9084 components: - rot: -1.5707963267948966 rad pos: 1.5,6.5 @@ -57766,7 +58904,7 @@ entities: nameSet: True id: Outside Chaple type: SurveillanceCamera - - uid: 8856 + - uid: 9085 components: - pos: -5.5,12.5 parent: 2 @@ -57776,7 +58914,7 @@ entities: nameSet: True id: Outside Sci type: SurveillanceCamera - - uid: 8857 + - uid: 9086 components: - rot: 1.5707963267948966 rad pos: -22.5,-5.5 @@ -57784,7 +58922,7 @@ entities: type: Transform - proto: SurveillanceCameraMedical entities: - - uid: 8858 + - uid: 9087 components: - pos: -18.5,7.5 parent: 2 @@ -57794,7 +58932,7 @@ entities: nameSet: True id: Medbay Looby type: SurveillanceCamera - - uid: 8859 + - uid: 9088 components: - pos: -22.5,12.5 parent: 2 @@ -57804,7 +58942,7 @@ entities: nameSet: True id: Cloning type: SurveillanceCamera - - uid: 8860 + - uid: 9089 components: - rot: 3.141592653589793 rad pos: -22.5,18.5 @@ -57815,7 +58953,7 @@ entities: nameSet: True id: Morgue type: SurveillanceCamera - - uid: 8861 + - uid: 9090 components: - rot: 1.5707963267948966 rad pos: -17.5,17.5 @@ -57826,7 +58964,7 @@ entities: nameSet: True id: CMO Office type: SurveillanceCamera - - uid: 8862 + - uid: 9091 components: - pos: -15.5,3.5 parent: 2 @@ -57836,7 +58974,7 @@ entities: nameSet: True id: Examination Room type: SurveillanceCamera - - uid: 8863 + - uid: 9092 components: - rot: 3.141592653589793 rad pos: -15.5,14.5 @@ -57849,69 +58987,69 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraRouterCommand entities: - - uid: 8864 + - uid: 9093 components: - pos: -4.5,42.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterEngineering entities: - - uid: 8865 + - uid: 9094 components: - pos: -4.5,46.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterGeneral entities: - - uid: 8866 + - uid: 9095 components: - pos: -9.5,47.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterMedical entities: - - uid: 8867 + - uid: 9096 components: - pos: -10.5,44.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterScience entities: - - uid: 8868 + - uid: 9097 components: - pos: -10.5,46.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterSecurity entities: - - uid: 8869 + - uid: 9098 components: - pos: -5.5,47.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterService entities: - - uid: 8870 + - uid: 9099 components: - pos: -10.5,42.5 parent: 2 type: Transform - proto: SurveillanceCameraRouterSupply entities: - - uid: 8871 + - uid: 9100 components: - pos: -4.5,44.5 parent: 2 type: Transform - proto: SurveillanceCameraScience entities: - - uid: 8872 + - uid: 9101 components: - rot: -1.5707963267948966 rad pos: -2.5,21.5 parent: 2 type: Transform - - uid: 8873 + - uid: 9102 components: - rot: 1.5707963267948966 rad pos: 5.5,23.5 @@ -57919,17 +59057,17 @@ entities: type: Transform - proto: SurveillanceCameraSecurity entities: - - uid: 8874 + - uid: 9103 components: - pos: 21.5,-16.5 parent: 2 type: Transform - - uid: 8875 + - uid: 9104 components: - pos: -15.5,-8.5 parent: 2 type: Transform - - uid: 8876 + - uid: 9105 components: - rot: 3.141592653589793 rad pos: 13.5,-16.5 @@ -57940,7 +59078,7 @@ entities: nameSet: True id: NonLethal type: SurveillanceCamera - - uid: 8877 + - uid: 9106 components: - rot: 3.141592653589793 rad pos: 13.5,-24.5 @@ -57951,7 +59089,7 @@ entities: nameSet: True id: Perma Brig type: SurveillanceCamera - - uid: 8878 + - uid: 9107 components: - pos: 18.5,-20.5 parent: 2 @@ -57961,7 +59099,7 @@ entities: nameSet: True id: HoS Office type: SurveillanceCamera - - uid: 8879 + - uid: 9108 components: - rot: 3.141592653589793 rad pos: 15.5,-13.5 @@ -57974,7 +59112,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraService entities: - - uid: 8880 + - uid: 9109 components: - rot: 1.5707963267948966 rad pos: -0.5,3.5 @@ -57985,7 +59123,7 @@ entities: nameSet: True id: Kitchen type: SurveillanceCamera - - uid: 8881 + - uid: 9110 components: - rot: 3.141592653589793 rad pos: -4.5,10.5 @@ -57996,13 +59134,13 @@ entities: nameSet: True id: Botany type: SurveillanceCamera - - uid: 8882 + - uid: 9111 components: - rot: 3.141592653589793 rad pos: -6.5,2.5 parent: 2 type: Transform - - uid: 8883 + - uid: 9112 components: - pos: -7.5,-8.5 parent: 2 @@ -58014,7 +59152,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceCameraSupply entities: - - uid: 8884 + - uid: 9113 components: - rot: 3.141592653589793 rad pos: 26.5,2.5 @@ -58022,7 +59160,7 @@ entities: type: Transform - id: Cargo shuttle bay type: SurveillanceCamera - - uid: 8885 + - uid: 9114 components: - rot: 1.5707963267948966 rad pos: 9.5,1.5 @@ -58030,7 +59168,7 @@ entities: type: Transform - id: Cargo lobby type: SurveillanceCamera - - uid: 8886 + - uid: 9115 components: - pos: 15.5,-2.5 parent: 2 @@ -58039,7 +59177,7 @@ entities: type: SurveillanceCamera - proto: SurveillanceWirelessCameraAnchoredEntertainment entities: - - uid: 8887 + - uid: 9116 components: - rot: -1.5707963267948966 rad pos: -31.5,31.5 @@ -58047,358 +59185,353 @@ entities: type: Transform - proto: Table entities: - - uid: 8888 + - uid: 9117 components: - pos: -4.5,26.5 parent: 2 type: Transform - - uid: 8889 + - uid: 9118 components: - pos: 18.5,-2.5 parent: 2 type: Transform - - uid: 8890 + - uid: 9119 components: - pos: 20.5,16.5 parent: 2 type: Transform - - uid: 8891 + - uid: 9120 components: - pos: 2.5,17.5 parent: 2 type: Transform - - uid: 8892 + - uid: 9121 components: - pos: -14.5,4.5 parent: 2 type: Transform - - uid: 8893 + - uid: 9122 components: - pos: -10.5,8.5 parent: 2 type: Transform - - uid: 8894 + - uid: 9123 components: - pos: -10.5,9.5 parent: 2 type: Transform - - uid: 8895 + - uid: 9124 components: - pos: -2.5,6.5 parent: 2 type: Transform - - uid: 8896 + - uid: 9125 components: - pos: -15.5,-8.5 parent: 2 type: Transform - - uid: 8897 + - uid: 9126 components: - pos: 13.5,4.5 parent: 2 type: Transform - - uid: 8898 + - uid: 9127 components: - pos: -21.5,3.5 parent: 2 type: Transform - - uid: 8899 + - uid: 9128 components: - pos: -22.5,3.5 parent: 2 type: Transform - - uid: 8900 + - uid: 9129 components: - pos: -17.5,4.5 parent: 2 type: Transform - - uid: 8901 + - uid: 9130 components: - pos: -18.5,-0.5 parent: 2 type: Transform - - uid: 8902 + - uid: 9131 components: - pos: -24.5,7.5 parent: 2 type: Transform - - uid: 8903 + - uid: 9132 components: - pos: -23.5,7.5 parent: 2 type: Transform - - uid: 8904 + - uid: 9133 components: - pos: -24.5,8.5 parent: 2 type: Transform - - uid: 8905 + - uid: 9134 components: - rot: 1.5707963267948966 rad pos: 18.5,18.5 parent: 2 type: Transform - - uid: 8906 + - uid: 9135 components: - pos: 4.5,8.5 parent: 2 type: Transform - - uid: 8907 + - uid: 9136 components: - pos: 4.5,9.5 parent: 2 type: Transform - - uid: 8908 + - uid: 9137 components: - pos: 7.5,4.5 parent: 2 type: Transform - - uid: 8909 + - uid: 9138 components: - pos: 18.5,-15.5 parent: 2 type: Transform - - uid: 8910 + - uid: 9139 components: - pos: 6.5,4.5 parent: 2 type: Transform - - uid: 8911 + - uid: 9140 components: - pos: 13.5,5.5 parent: 2 type: Transform - - uid: 8912 + - uid: 9141 components: - pos: -4.5,-7.5 parent: 2 type: Transform - - uid: 8913 + - uid: 9142 components: - pos: -4.5,-8.5 parent: 2 type: Transform - - uid: 8914 + - uid: 9143 components: - pos: -4.5,-9.5 parent: 2 type: Transform - - uid: 8915 + - uid: 9144 components: - pos: 7.5,-24.5 parent: 2 type: Transform - - uid: 8916 + - uid: 9145 components: - pos: 6.5,8.5 parent: 2 type: Transform - - uid: 8917 + - uid: 9146 components: - pos: -24.5,27.5 parent: 2 type: Transform - - uid: 8918 + - uid: 9147 components: - pos: 0.5,15.5 parent: 2 type: Transform - - uid: 8919 + - uid: 9148 components: - pos: -2.5,15.5 parent: 2 type: Transform - - uid: 8920 + - uid: 9149 components: - pos: -7.5,31.5 parent: 2 type: Transform - - uid: 8921 + - uid: 9150 components: - pos: -8.5,31.5 parent: 2 type: Transform - - uid: 8922 + - uid: 9151 components: - pos: 13.5,-27.5 parent: 2 type: Transform - - uid: 8923 + - uid: 9152 components: - pos: 0.5,-13.5 parent: 2 type: Transform - - uid: 8924 + - uid: 9153 components: - pos: 11.5,-25.5 parent: 2 type: Transform - - uid: 8925 + - uid: 9154 components: - pos: -21.5,18.5 parent: 2 type: Transform - - uid: 8926 + - uid: 9155 components: - pos: 14.5,-29.5 parent: 2 type: Transform - - uid: 8927 - components: - - pos: -2.5,10.5 - parent: 2 - type: Transform - - uid: 8928 + - uid: 9156 components: - pos: -3.5,10.5 parent: 2 type: Transform - - uid: 8929 + - uid: 9157 components: - pos: -5.5,10.5 parent: 2 type: Transform - - uid: 8930 + - uid: 9158 components: - pos: -6.5,10.5 parent: 2 type: Transform - - uid: 8931 + - uid: 9159 components: - pos: -7.5,10.5 parent: 2 type: Transform - - uid: 8932 + - uid: 9160 components: - pos: 3.5,17.5 parent: 2 type: Transform - - uid: 8933 + - uid: 9161 components: - pos: 7.5,-5.5 parent: 2 type: Transform - - uid: 8934 + - uid: 9162 components: - pos: 19.5,16.5 parent: 2 type: Transform - - uid: 8935 + - uid: 9163 components: - pos: 13.5,-29.5 parent: 2 type: Transform - - uid: 8936 + - uid: 9164 components: - pos: -4.5,34.5 parent: 2 type: Transform - - uid: 8937 + - uid: 9165 components: - pos: -4.5,35.5 parent: 2 type: Transform - - uid: 8938 + - uid: 9166 components: - rot: 1.5707963267948966 rad pos: 17.5,18.5 parent: 2 type: Transform - - uid: 8939 + - uid: 9167 components: - pos: 35.5,14.5 parent: 2 type: Transform - - uid: 8940 + - uid: 9168 components: - rot: 1.5707963267948966 rad pos: 16.5,18.5 parent: 2 type: Transform - - uid: 8941 + - uid: 9169 components: - pos: 14.5,10.5 parent: 2 type: Transform - - uid: 8942 + - uid: 9170 components: - pos: 13.5,10.5 parent: 2 type: Transform - - uid: 8943 + - uid: 9171 components: - pos: 33.5,13.5 parent: 2 type: Transform - - uid: 8944 + - uid: 9172 components: - pos: 26.5,-29.5 parent: 2 type: Transform - - uid: 8945 + - uid: 9173 components: - pos: 26.5,-30.5 parent: 2 type: Transform - - uid: 8946 + - uid: 9174 components: - pos: -25.5,-9.5 parent: 2 type: Transform - - uid: 8947 + - uid: 9175 components: - pos: -24.5,28.5 parent: 2 type: Transform - - uid: 8948 + - uid: 9176 components: - pos: -4.5,36.5 parent: 2 type: Transform - - uid: 8949 + - uid: 9177 components: - pos: 13.5,16.5 parent: 2 type: Transform - - uid: 8950 + - uid: 9178 components: - pos: 15.5,-18.5 parent: 2 type: Transform - - uid: 8951 + - uid: 9179 components: - pos: -7.5,26.5 parent: 2 type: Transform - - uid: 8952 + - uid: 9180 components: - pos: -6.5,34.5 parent: 2 type: Transform - - uid: 8953 + - uid: 9181 components: - pos: -8.5,34.5 parent: 2 type: Transform - - uid: 8954 + - uid: 9182 components: - rot: -1.5707963267948966 rad pos: 20.5,8.5 parent: 2 type: Transform - - uid: 8955 + - uid: 9183 components: - rot: -1.5707963267948966 rad pos: 21.5,8.5 parent: 2 type: Transform - - uid: 8956 + - uid: 9184 components: - rot: -1.5707963267948966 rad pos: 19.5,5.5 parent: 2 type: Transform - - uid: 8957 + - uid: 9185 components: - rot: -1.5707963267948966 rad pos: 19.5,4.5 @@ -58406,37 +59539,37 @@ entities: type: Transform - proto: TableCarpet entities: - - uid: 8958 + - uid: 9186 components: - rot: 1.5707963267948966 rad pos: 33.5,25.5 parent: 2 type: Transform - - uid: 8959 + - uid: 9187 components: - rot: 1.5707963267948966 rad pos: 33.5,24.5 parent: 2 type: Transform - - uid: 8960 + - uid: 9188 components: - rot: 1.5707963267948966 rad pos: 35.5,25.5 parent: 2 type: Transform - - uid: 8961 + - uid: 9189 components: - rot: 1.5707963267948966 rad pos: 34.5,24.5 parent: 2 type: Transform - - uid: 8962 + - uid: 9190 components: - rot: 1.5707963267948966 rad pos: 35.5,24.5 parent: 2 type: Transform - - uid: 8963 + - uid: 9191 components: - rot: -1.5707963267948966 rad pos: -13.5,-30.5 @@ -58444,606 +59577,614 @@ entities: type: Transform - proto: TableCounterMetal entities: - - uid: 8964 + - uid: 9192 components: - pos: -3.5,5.5 parent: 2 type: Transform - - uid: 8965 + - uid: 9193 components: - pos: -0.5,5.5 parent: 2 type: Transform - - uid: 8966 + - uid: 9194 components: - rot: 3.141592653589793 rad pos: -1.5,2.5 parent: 2 type: Transform - - uid: 8967 + - uid: 9195 components: - rot: 3.141592653589793 rad pos: -2.5,2.5 parent: 2 type: Transform - - uid: 8968 + - uid: 9196 components: - rot: -1.5707963267948966 rad pos: 31.5,-3.5 parent: 2 type: Transform - - uid: 8969 + - uid: 9197 components: - rot: 1.5707963267948966 rad pos: 16.5,-6.5 parent: 2 type: Transform - - uid: 8970 + - uid: 9198 components: - rot: 1.5707963267948966 rad pos: 18.5,-5.5 parent: 2 type: Transform - - uid: 8971 + - uid: 9199 components: - rot: 1.5707963267948966 rad pos: 18.5,-4.5 parent: 2 type: Transform - - uid: 8972 + - uid: 9200 components: - rot: -1.5707963267948966 rad pos: 12.5,0.5 parent: 2 type: Transform - - uid: 8973 + - uid: 9201 components: - rot: 1.5707963267948966 rad pos: 10.5,-0.5 parent: 2 type: Transform - - uid: 8974 + - uid: 9202 components: - rot: 1.5707963267948966 rad pos: 10.5,-1.5 parent: 2 type: Transform - - uid: 8975 + - uid: 9203 components: - rot: 1.5707963267948966 rad pos: -15.5,10.5 parent: 2 type: Transform - - uid: 8976 + - uid: 9204 components: - rot: 1.5707963267948966 rad pos: -16.5,10.5 parent: 2 type: Transform - - uid: 8977 + - uid: 9205 components: - pos: -19.5,-5.5 parent: 2 type: Transform - - uid: 8978 + - uid: 9206 components: - pos: 5.5,-4.5 parent: 2 type: Transform - - uid: 8979 + - uid: 9207 components: - rot: -1.5707963267948966 rad pos: 15.5,-23.5 parent: 2 type: Transform - - uid: 8980 + - uid: 9208 components: - pos: 36.5,19.5 parent: 2 type: Transform - - uid: 8981 + - uid: 9209 components: - pos: 37.5,19.5 parent: 2 type: Transform - - uid: 8982 + - uid: 9210 components: - rot: 3.141592653589793 rad pos: 35.5,19.5 parent: 2 type: Transform - - uid: 8983 + - uid: 9211 components: - pos: -37.5,-29.5 parent: 2 type: Transform - - uid: 8984 + - uid: 9212 components: - pos: 32.5,-4.5 parent: 2 type: Transform - - uid: 8985 + - uid: 9213 components: - rot: -1.5707963267948966 rad pos: 32.5,-3.5 parent: 2 type: Transform - - uid: 8986 + - uid: 9214 components: - pos: -0.5,3.5 parent: 2 type: Transform - - uid: 8987 + - uid: 9215 components: - pos: -0.5,4.5 parent: 2 type: Transform - proto: TableCounterWood entities: - - uid: 8988 + - uid: 9216 components: - pos: -14.5,-15.5 parent: 2 type: Transform - - uid: 8989 + - uid: 9217 components: - pos: -19.5,-20.5 parent: 2 type: Transform - - uid: 8990 + - uid: 9218 components: - pos: -19.5,-19.5 parent: 2 type: Transform - - uid: 8991 + - uid: 9219 components: - pos: 7.5,-28.5 parent: 2 type: Transform - - uid: 8992 + - uid: 9220 components: - pos: -5.5,-23.5 parent: 2 type: Transform - - uid: 8993 + - uid: 9221 components: - pos: -6.5,-23.5 parent: 2 type: Transform - - uid: 8994 + - uid: 9222 components: - pos: -7.5,-23.5 parent: 2 type: Transform - - uid: 8995 + - uid: 9223 components: - pos: -7.5,-24.5 parent: 2 type: Transform - - uid: 8996 + - uid: 9224 components: - pos: 6.5,-28.5 parent: 2 type: Transform - - uid: 8997 + - uid: 9225 components: - pos: 5.5,-28.5 parent: 2 type: Transform - - uid: 8998 + - uid: 9226 components: - pos: 5.5,-29.5 parent: 2 type: Transform - - uid: 8999 + - uid: 9227 components: - pos: 34.5,21.5 parent: 2 type: Transform - - uid: 9000 + - uid: 9228 components: - pos: 37.5,21.5 parent: 2 type: Transform - - uid: 9001 + - uid: 9229 components: - pos: 36.5,21.5 parent: 2 type: Transform - - uid: 9002 + - uid: 9230 components: - pos: 35.5,21.5 parent: 2 type: Transform - proto: TableGlass entities: - - uid: 9003 + - uid: 9231 components: - pos: 0.5,22.5 parent: 2 type: Transform - - uid: 9004 + - uid: 9232 components: - pos: -15.5,14.5 parent: 2 type: Transform - - uid: 9005 + - uid: 9233 components: - pos: -14.5,14.5 parent: 2 type: Transform - - uid: 9006 + - uid: 9234 components: - pos: -29.5,1.5 parent: 2 type: Transform - - uid: 9007 + - uid: 9235 components: - pos: -27.5,-8.5 parent: 2 type: Transform - - uid: 9008 + - uid: 9236 components: - pos: -16.5,12.5 parent: 2 type: Transform - - uid: 9009 + - uid: 9237 components: - pos: -29.5,-1.5 parent: 2 type: Transform - - uid: 9010 + - uid: 9238 components: - pos: -27.5,1.5 parent: 2 type: Transform - - uid: 9011 + - uid: 9239 components: - pos: -22.5,20.5 parent: 2 type: Transform - - uid: 9012 + - uid: 9240 components: - pos: -23.5,20.5 parent: 2 type: Transform - - uid: 9013 + - uid: 9241 components: - pos: -27.5,-2.5 parent: 2 type: Transform - - uid: 9014 + - uid: 9242 components: - pos: -29.5,-5.5 parent: 2 type: Transform - - uid: 9015 + - uid: 9243 components: - rot: -1.5707963267948966 rad pos: -25.5,13.5 parent: 2 type: Transform - - uid: 9016 + - uid: 9244 components: - pos: -24.5,4.5 parent: 2 type: Transform - - uid: 9017 + - uid: 9245 components: - pos: -19.5,14.5 parent: 2 type: Transform - proto: TablePlasmaGlass entities: - - uid: 9018 + - uid: 9246 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-22.5 + parent: 2 + type: Transform + - uid: 9247 components: - pos: 0.5,37.5 parent: 2 type: Transform - proto: TableReinforced entities: - - uid: 9019 + - uid: 9248 components: - pos: 25.5,28.5 parent: 2 type: Transform - - uid: 9020 + - uid: 9249 components: - rot: 3.141592653589793 rad pos: -0.5,-26.5 parent: 2 type: Transform - - uid: 9021 + - uid: 9250 components: - rot: 3.141592653589793 rad pos: -3.5,-28.5 parent: 2 type: Transform - - uid: 9022 + - uid: 9251 components: - pos: -21.5,12.5 parent: 2 type: Transform - - uid: 9023 + - uid: 9252 components: - pos: -1.5,-0.5 parent: 2 type: Transform - - uid: 9024 + - uid: 9253 components: - pos: 5.5,5.5 parent: 2 type: Transform - - uid: 9025 + - uid: 9254 components: - pos: -1.5,40.5 parent: 2 type: Transform - - uid: 9026 + - uid: 9255 components: - pos: -0.5,-0.5 parent: 2 type: Transform - - uid: 9027 + - uid: 9256 components: - pos: -2.5,-0.5 parent: 2 type: Transform - - uid: 9028 + - uid: 9257 components: - pos: -14.5,-19.5 parent: 2 type: Transform - - uid: 9029 + - uid: 9258 components: - pos: -15.5,-19.5 parent: 2 type: Transform - - uid: 9030 + - uid: 9259 components: - pos: -15.5,-20.5 parent: 2 type: Transform - - uid: 9031 + - uid: 9260 components: - rot: -1.5707963267948966 rad pos: -1.5,-23.5 parent: 2 type: Transform - - uid: 9032 + - uid: 9261 components: - rot: -1.5707963267948966 rad pos: -1.5,-22.5 parent: 2 type: Transform - - uid: 9033 + - uid: 9262 components: - rot: -1.5707963267948966 rad pos: -1.5,-21.5 parent: 2 type: Transform - - uid: 9034 + - uid: 9263 components: - rot: -1.5707963267948966 rad pos: -0.5,-21.5 parent: 2 type: Transform - - uid: 9035 + - uid: 9264 components: - rot: -1.5707963267948966 rad pos: 0.5,-21.5 parent: 2 type: Transform - - uid: 9036 + - uid: 9265 components: - - pos: 0.5,-22.5 + - rot: -1.5707963267948966 rad + pos: 0.5,-22.5 parent: 2 type: Transform - - uid: 9037 + - uid: 9266 components: - rot: -1.5707963267948966 rad pos: 0.5,-23.5 parent: 2 type: Transform - - uid: 9038 + - uid: 9267 components: - - pos: -0.5,-23.5 + - rot: -1.5707963267948966 rad + pos: -0.5,-23.5 parent: 2 type: Transform - - uid: 9039 + - uid: 9268 components: - rot: 1.5707963267948966 rad pos: 6.5,-15.5 parent: 2 type: Transform - - uid: 9040 + - uid: 9269 components: - pos: 8.5,-13.5 parent: 2 type: Transform - - uid: 9041 + - uid: 9270 components: - pos: 7.5,-13.5 parent: 2 type: Transform - - uid: 9042 + - uid: 9271 components: - rot: -1.5707963267948966 rad pos: 21.5,-14.5 parent: 2 type: Transform - - uid: 9043 + - uid: 9272 components: - pos: 16.5,-16.5 parent: 2 type: Transform - - uid: 9044 + - uid: 9273 components: - rot: -1.5707963267948966 rad pos: 22.5,-14.5 parent: 2 type: Transform - - uid: 9045 + - uid: 9274 components: - rot: 3.141592653589793 rad pos: 12.5,-17.5 parent: 2 type: Transform - - uid: 9046 + - uid: 9275 components: - rot: 3.141592653589793 rad pos: 13.5,-17.5 parent: 2 type: Transform - - uid: 9047 + - uid: 9276 components: - rot: 3.141592653589793 rad pos: 14.5,-17.5 parent: 2 type: Transform - - uid: 9048 + - uid: 9277 components: - pos: 0.5,40.5 parent: 2 type: Transform - - uid: 9049 + - uid: 9278 components: - pos: 20.5,-14.5 parent: 2 type: Transform - - uid: 9050 + - uid: 9279 components: - pos: 20.5,-15.5 parent: 2 type: Transform - - uid: 9051 + - uid: 9280 components: - pos: -0.5,40.5 parent: 2 type: Transform - - uid: 9052 + - uid: 9281 components: - pos: -7.5,46.5 parent: 2 type: Transform - - uid: 9053 + - uid: 9282 components: - rot: 3.141592653589793 rad pos: -0.5,26.5 parent: 2 type: Transform - - uid: 9054 + - uid: 9283 components: - pos: -7.5,47.5 parent: 2 type: Transform - - uid: 9055 + - uid: 9284 components: - pos: 19.5,14.5 parent: 2 type: Transform - - uid: 9056 + - uid: 9285 components: - pos: 19.5,13.5 parent: 2 type: Transform - - uid: 9057 + - uid: 9286 components: - pos: 8.5,-20.5 parent: 2 type: Transform - - uid: 9058 + - uid: 9287 components: - pos: 8.5,-21.5 parent: 2 type: Transform - - uid: 9059 + - uid: 9288 components: - rot: 1.5707963267948966 rad pos: 2.5,-28.5 parent: 2 type: Transform - - uid: 9060 + - uid: 9289 components: - rot: 3.141592653589793 rad pos: -5.5,25.5 parent: 2 type: Transform - - uid: 9061 + - uid: 9290 components: - pos: 9.5,-21.5 parent: 2 type: Transform - - uid: 9062 + - uid: 9291 components: - pos: 12.5,13.5 parent: 2 type: Transform - - uid: 9063 + - uid: 9292 components: - rot: -1.5707963267948966 rad pos: 29.5,29.5 parent: 2 type: Transform - - uid: 9064 + - uid: 9293 components: - pos: -14.5,30.5 parent: 2 type: Transform - - uid: 9065 + - uid: 9294 components: - pos: 0.5,39.5 parent: 2 type: Transform - - uid: 9066 + - uid: 9295 components: - pos: 21.5,12.5 parent: 2 type: Transform - - uid: 9067 + - uid: 9296 components: - pos: 24.5,28.5 parent: 2 type: Transform - - uid: 9068 + - uid: 9297 components: - pos: 23.5,28.5 parent: 2 type: Transform - - uid: 9069 + - uid: 9298 components: - pos: 16.5,14.5 parent: 2 type: Transform - - uid: 9070 + - uid: 9299 components: - pos: -0.5,25.5 parent: 2 type: Transform - - uid: 9071 + - uid: 9300 components: - pos: 5.5,25.5 parent: 2 type: Transform - - uid: 9072 + - uid: 9301 components: - pos: 5.5,26.5 parent: 2 type: Transform - - uid: 9073 + - uid: 9302 components: - pos: 5.5,23.5 parent: 2 type: Transform - proto: TableReinforcedGlass entities: - - uid: 9074 + - uid: 9303 components: - rot: -1.5707963267948966 rad pos: -17.5,18.5 parent: 2 type: Transform - - uid: 9075 + - uid: 9304 components: - rot: -1.5707963267948966 rad pos: -18.5,18.5 @@ -59051,271 +60192,271 @@ entities: type: Transform - proto: TableStone entities: - - uid: 9076 + - uid: 9305 components: - pos: -4.5,18.5 parent: 2 type: Transform - proto: TableWood entities: - - uid: 9077 + - uid: 9306 components: - pos: 0.5,-11.5 parent: 2 type: Transform - - uid: 9078 + - uid: 9307 components: - pos: -1.5,-11.5 parent: 2 type: Transform - - uid: 9079 + - uid: 9308 components: - pos: -0.5,-11.5 parent: 2 type: Transform - - uid: 9080 + - uid: 9309 components: - pos: 24.5,12.5 parent: 2 type: Transform - - uid: 9081 + - uid: 9310 components: - rot: 3.141592653589793 rad pos: 1.5,4.5 parent: 2 type: Transform - - uid: 9082 + - uid: 9311 components: - pos: -6.5,-1.5 parent: 2 type: Transform - - uid: 9083 + - uid: 9312 components: - rot: 1.5707963267948966 rad pos: -6.5,-2.5 parent: 2 type: Transform - - uid: 9084 + - uid: 9313 components: - rot: 1.5707963267948966 rad pos: -2.5,-2.5 parent: 2 type: Transform - - uid: 9085 + - uid: 9314 components: - pos: 25.5,12.5 parent: 2 type: Transform - - uid: 9086 + - uid: 9315 components: - pos: 4.5,-26.5 parent: 2 type: Transform - - uid: 9087 + - uid: 9316 components: - pos: 5.5,-26.5 parent: 2 type: Transform - - uid: 9088 + - uid: 9317 components: - pos: 7.5,-26.5 parent: 2 type: Transform - - uid: 9089 + - uid: 9318 components: - pos: 8.5,-26.5 parent: 2 type: Transform - - uid: 9090 + - uid: 9319 components: - pos: 1.5,-11.5 parent: 2 type: Transform - - uid: 9091 + - uid: 9320 components: - pos: 19.5,-18.5 parent: 2 type: Transform - - uid: 9092 + - uid: 9321 components: - pos: 19.5,-19.5 parent: 2 type: Transform - - uid: 9093 + - uid: 9322 components: - pos: 27.5,-10.5 parent: 2 type: Transform - - uid: 9094 + - uid: 9323 components: - pos: -19.5,-13.5 parent: 2 type: Transform - - uid: 9095 + - uid: 9324 components: - pos: -33.5,29.5 parent: 2 type: Transform - - uid: 9096 + - uid: 9325 components: - pos: -12.5,28.5 parent: 2 type: Transform - - uid: 9097 + - uid: 9326 components: - pos: -8.5,-12.5 parent: 2 type: Transform - - uid: 9098 + - uid: 9327 components: - pos: 23.5,-21.5 parent: 2 type: Transform - - uid: 9099 + - uid: 9328 components: - pos: 26.5,-21.5 parent: 2 type: Transform - - uid: 9100 + - uid: 9329 components: - pos: -5.5,-29.5 parent: 2 type: Transform - - uid: 9101 + - uid: 9330 components: - pos: -12.5,-28.5 parent: 2 type: Transform - - uid: 9102 + - uid: 9331 components: - pos: -34.5,29.5 parent: 2 type: Transform - - uid: 9103 + - uid: 9332 components: - pos: -29.5,33.5 parent: 2 type: Transform - - uid: 9104 + - uid: 9333 components: - pos: -24.5,-27.5 parent: 2 type: Transform - - uid: 9105 + - uid: 9334 components: - pos: -25.5,-27.5 parent: 2 type: Transform - - uid: 9106 + - uid: 9335 components: - pos: -29.5,-24.5 parent: 2 type: Transform - - uid: 9107 + - uid: 9336 components: - pos: -29.5,-23.5 parent: 2 type: Transform - - uid: 9108 + - uid: 9337 components: - pos: -29.5,-18.5 parent: 2 type: Transform - - uid: 9109 + - uid: 9338 components: - pos: -28.5,-18.5 parent: 2 type: Transform - - uid: 9110 + - uid: 9339 components: - pos: -27.5,-16.5 parent: 2 type: Transform - - uid: 9111 + - uid: 9340 components: - pos: -29.5,-26.5 parent: 2 type: Transform - - uid: 9112 + - uid: 9341 components: - pos: -29.5,-27.5 parent: 2 type: Transform - - uid: 9113 + - uid: 9342 components: - pos: -19.5,-12.5 parent: 2 type: Transform - - uid: 9114 + - uid: 9343 components: - pos: -18.5,-12.5 parent: 2 type: Transform - - uid: 9115 + - uid: 9344 components: - pos: -18.5,-13.5 parent: 2 type: Transform - - uid: 9116 + - uid: 9345 components: - pos: -25.5,-20.5 parent: 2 type: Transform - - uid: 9117 + - uid: 9346 components: - pos: -2.5,-11.5 parent: 2 type: Transform - - uid: 9118 + - uid: 9347 components: - pos: 38.5,25.5 parent: 2 type: Transform - - uid: 9119 + - uid: 9348 components: - pos: 31.5,20.5 parent: 2 type: Transform - - uid: 9120 + - uid: 9349 components: - pos: -9.5,28.5 parent: 2 type: Transform - - uid: 9121 + - uid: 9350 components: - pos: 5.5,21.5 parent: 2 type: Transform - - uid: 9122 + - uid: 9351 components: - pos: -33.5,25.5 parent: 2 type: Transform - - uid: 9123 + - uid: 9352 components: - pos: -7.5,-26.5 parent: 2 type: Transform - proto: TableWoodReinforced entities: - - uid: 9124 + - uid: 9353 components: - pos: -7.5,-6.5 parent: 2 type: Transform - - uid: 9125 + - uid: 9354 components: - pos: -5.5,-6.5 parent: 2 type: Transform - - uid: 9126 + - uid: 9355 components: - pos: -6.5,-6.5 parent: 2 type: Transform - proto: TegCenter entities: - - uid: 9127 + - uid: 9356 components: - rot: -1.5707963267948966 rad pos: 7.5,33.5 @@ -59323,7 +60464,7 @@ entities: type: Transform - proto: TegCirculator entities: - - uid: 9128 + - uid: 9357 components: - rot: 3.141592653589793 rad pos: 6.5,33.5 @@ -59331,7 +60472,7 @@ entities: type: Transform - color: '#FF3300FF' type: PointLight - - uid: 9129 + - uid: 9358 components: - pos: 8.5,33.5 parent: 2 @@ -59340,57 +60481,57 @@ entities: type: PointLight - proto: TelecomServerFilled entities: - - uid: 9130 + - uid: 9359 components: - pos: 19.5,23.5 parent: 2 type: Transform - proto: TimerTrigger entities: - - uid: 9131 + - uid: 9360 components: - pos: 25.02766,-11.786396 parent: 2 type: Transform - proto: TintedWindow entities: - - uid: 9132 + - uid: 9361 components: - pos: -10.5,25.5 parent: 2 type: Transform - - uid: 9133 + - uid: 9362 components: - pos: -9.5,25.5 parent: 2 type: Transform - proto: ToiletDirtyWater entities: - - uid: 9134 + - uid: 9363 components: - pos: 29.5,14.5 parent: 2 type: Transform - - uid: 9135 + - uid: 9364 components: - pos: 17.5,-22.5 parent: 2 type: Transform - proto: ToiletEmpty entities: - - uid: 9136 + - uid: 9365 components: - rot: 1.5707963267948966 rad pos: -9.5,-32.5 parent: 2 type: Transform - - uid: 9137 + - uid: 9366 components: - rot: -1.5707963267948966 rad pos: 14.5,-6.5 parent: 2 type: Transform - - uid: 9138 + - uid: 9367 components: - rot: -1.5707963267948966 rad pos: 25.5,-23.5 @@ -59398,261 +60539,267 @@ entities: type: Transform - proto: ToolboxElectrical entities: - - uid: 9139 + - uid: 9368 components: - pos: 13.40971,10.927448 parent: 2 type: Transform - - uid: 9140 + - uid: 9369 components: - pos: -18.364475,-0.5205636 parent: 2 type: Transform - proto: ToolboxElectricalFilled entities: - - uid: 9141 + - uid: 9370 components: - pos: 2.7763815,29.61881 parent: 2 type: Transform - - uid: 9142 + - uid: 9371 components: - pos: 8.474596,15.546829 parent: 2 type: Transform - proto: ToolboxEmergency entities: - - uid: 9143 + - uid: 9372 components: - pos: 0.5443669,15.452892 parent: 2 type: Transform - proto: ToolboxEmergencyFilled entities: - - uid: 9144 + - uid: 9373 components: - pos: 27.569073,15.264965 parent: 2 type: Transform - - uid: 9145 + - uid: 9374 components: - pos: -1.5152638,-23.570126 parent: 2 type: Transform - - uid: 9146 + - uid: 9375 components: - pos: -27.796535,-2.9570358 parent: 2 type: Transform - proto: ToolboxGoldFilled entities: - - uid: 9147 + - uid: 9376 components: - pos: -15.504417,-20.389067 parent: 2 type: Transform - proto: ToolboxMechanical entities: - - uid: 9148 + - uid: 9377 components: - pos: 35.843464,15.331713 parent: 2 type: Transform - - uid: 9149 + - uid: 9378 components: - pos: 20.312061,-11.828377 parent: 2 type: Transform - proto: ToolboxMechanicalFilled entities: - - uid: 9150 + - uid: 9379 components: - pos: 11.553634,-10.469292 parent: 2 type: Transform - - uid: 9151 + - uid: 9380 components: - pos: 0.43948442,15.746906 parent: 2 type: Transform - - uid: 9152 + - uid: 9381 components: - pos: 8.485883,15.742142 parent: 2 type: Transform - proto: ToyAi entities: - - uid: 9153 + - uid: 9382 components: - pos: -7.5,46.5 parent: 2 type: Transform - proto: ToyRubberDuck entities: - - uid: 9154 + - uid: 9383 components: - - pos: -9.492048,-32.3272 + - pos: -8.92183,-32.372 parent: 2 type: Transform - proto: ToySpawner entities: - - uid: 9155 + - uid: 9384 components: - pos: 26.5,-9.5 parent: 2 type: Transform - - uid: 9156 + - uid: 9385 components: - pos: 13.5,-27.5 parent: 2 type: Transform - proto: TwoWayLever entities: - - uid: 9157 + - uid: 9386 components: - pos: 12.5,9.5 parent: 2 type: Transform - linkedPorts: - 4392: + 4618: - Left: Forward - Right: Reverse - Middle: Off - 8096: + 8327: - Left: Forward - Right: Reverse - Middle: Off - 4391: + 4617: - Left: Forward - Right: Reverse - Middle: Off - 4393: + 4619: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - - uid: 9158 + - uid: 9387 components: - pos: 12.5,-2.5 parent: 2 type: Transform - linkedPorts: - 4389: + 4615: - Left: Forward - Right: Reverse - Middle: Off - 4409: + 4635: - Left: Forward - Right: Reverse - Middle: Off - 4410: + 4636: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - - uid: 9159 + - uid: 9388 components: - pos: 30.5,0.5 parent: 2 type: Transform - linkedPorts: - 4405: + 4631: - Left: Forward - Right: Reverse - Middle: Off - 4395: + 4621: - Left: Forward - Right: Reverse - Middle: Off - 4404: + 4630: - Left: Forward - Right: Reverse - Middle: Off - 4399: + 4625: - Left: Forward - Right: Reverse - Middle: Off - 4400: + 4626: - Left: Forward - Right: Reverse - Middle: Off - 4398: + 4624: - Left: Forward - Right: Reverse - Middle: Off - 4401: + 4627: - Left: Forward - Right: Reverse - Middle: Off - 4402: + 4628: - Left: Forward - Right: Reverse - Middle: Off - 4403: + 4629: - Left: Forward - Right: Reverse - Middle: Off - 4408: + 4634: - Left: Forward - Right: Reverse - Middle: Off - 4388: + 4614: - Left: Forward - Right: Reverse - Middle: Off - 4406: + 4632: - Left: Forward - Right: Reverse - Middle: Off - 4412: + 4638: - Left: Forward - Right: Reverse - Middle: Off - 4397: + 4623: - Left: Forward - Right: Reverse - Middle: Off - 4396: + 4622: - Left: Forward - Right: Reverse - Middle: Off - 4411: + 4637: - Left: Forward - Right: Reverse - Middle: Off - 4394: + 4620: - Left: Forward - Right: Reverse - Middle: Off - 4407: + 4633: - Left: Forward - Right: Reverse - Middle: Off type: DeviceLinkSource - proto: UniformPrinter entities: - - uid: 9160 + - uid: 9389 components: - pos: 9.5,-6.5 parent: 2 type: Transform + - uid: 9390 + components: + - rot: 3.141592653589793 rad + pos: -5.5,-17.5 + parent: 2 + type: Transform - proto: Vaccinator entities: - - uid: 9161 + - uid: 9391 components: - pos: -19.5,3.5 parent: 2 type: Transform - proto: VehicleKeyJanicart entities: - - uid: 9162 + - uid: 9392 components: - pos: 6.5,8.5 parent: 2 type: Transform - proto: VendingBarDrobe entities: - - uid: 9163 + - uid: 9393 components: - flags: SessionSpecific type: MetaData @@ -59661,7 +60808,7 @@ entities: type: Transform - proto: VendingMachineAtmosDrobe entities: - - uid: 9164 + - uid: 9394 components: - flags: SessionSpecific type: MetaData @@ -59670,21 +60817,21 @@ entities: type: Transform - proto: VendingMachineBooze entities: - - uid: 9165 + - uid: 9395 components: - flags: SessionSpecific type: MetaData - pos: -10.5,-28.5 parent: 2 type: Transform - - uid: 9166 + - uid: 9396 components: - flags: SessionSpecific type: MetaData - pos: -8.5,-8.5 parent: 2 type: Transform - - uid: 9167 + - uid: 9397 components: - flags: SessionSpecific type: MetaData @@ -59693,7 +60840,7 @@ entities: type: Transform - proto: VendingMachineBoxingDrobe entities: - - uid: 9168 + - uid: 9398 components: - flags: SessionSpecific type: MetaData @@ -59702,14 +60849,14 @@ entities: type: Transform - proto: VendingMachineCargoDrobe entities: - - uid: 9169 + - uid: 9399 components: - pos: 13.5,2.5 parent: 2 type: Transform - proto: VendingMachineCart entities: - - uid: 9170 + - uid: 9400 components: - flags: SessionSpecific type: MetaData @@ -59718,14 +60865,14 @@ entities: type: Transform - proto: VendingMachineChang entities: - - uid: 9171 + - uid: 9401 components: - flags: SessionSpecific type: MetaData - pos: -30.5,-4.5 parent: 2 type: Transform - - uid: 9172 + - uid: 9402 components: - flags: SessionSpecific type: MetaData @@ -59734,7 +60881,7 @@ entities: type: Transform - proto: VendingMachineChapel entities: - - uid: 9173 + - uid: 9403 components: - flags: SessionSpecific type: MetaData @@ -59743,7 +60890,7 @@ entities: type: Transform - proto: VendingMachineChefDrobe entities: - - uid: 9174 + - uid: 9404 components: - flags: SessionSpecific type: MetaData @@ -59752,14 +60899,14 @@ entities: type: Transform - proto: VendingMachineChefvend entities: - - uid: 9175 + - uid: 9405 components: - pos: -0.5,2.5 parent: 2 type: Transform - proto: VendingMachineChemDrobe entities: - - uid: 9176 + - uid: 9406 components: - flags: SessionSpecific type: MetaData @@ -59768,14 +60915,14 @@ entities: type: Transform - proto: VendingMachineCigs entities: - - uid: 9177 + - uid: 9407 components: - flags: SessionSpecific type: MetaData - pos: 4.5,4.5 parent: 2 type: Transform - - uid: 9178 + - uid: 9408 components: - flags: SessionSpecific type: MetaData @@ -59784,7 +60931,7 @@ entities: type: Transform - proto: VendingMachineClothing entities: - - uid: 9179 + - uid: 9409 components: - flags: SessionSpecific type: MetaData @@ -59793,28 +60940,28 @@ entities: type: Transform - proto: VendingMachineCoffee entities: - - uid: 9180 + - uid: 9410 components: - flags: SessionSpecific type: MetaData - pos: 8.5,-19.5 parent: 2 type: Transform - - uid: 9181 + - uid: 9411 components: - flags: SessionSpecific type: MetaData - pos: -0.5,-17.5 parent: 2 type: Transform - - uid: 9182 + - uid: 9412 components: - flags: SessionSpecific type: MetaData - pos: -7.5,12.5 parent: 2 type: Transform - - uid: 9183 + - uid: 9413 components: - flags: SessionSpecific type: MetaData @@ -59823,7 +60970,7 @@ entities: type: Transform - proto: VendingMachineCola entities: - - uid: 9184 + - uid: 9414 components: - flags: SessionSpecific type: MetaData @@ -59832,7 +60979,7 @@ entities: type: Transform - proto: VendingMachineCondiments entities: - - uid: 9185 + - uid: 9415 components: - flags: SessionSpecific type: MetaData @@ -59841,7 +60988,7 @@ entities: type: Transform - proto: VendingMachineDinnerware entities: - - uid: 9186 + - uid: 9416 components: - flags: SessionSpecific type: MetaData @@ -59850,14 +60997,14 @@ entities: type: Transform - proto: VendingMachineDonut entities: - - uid: 9187 + - uid: 9417 components: - flags: SessionSpecific type: MetaData - pos: 12.5,-22.5 parent: 2 type: Transform - - uid: 9188 + - uid: 9418 components: - flags: SessionSpecific type: MetaData @@ -59866,7 +61013,7 @@ entities: type: Transform - proto: VendingMachineEngiDrobe entities: - - uid: 9189 + - uid: 9419 components: - flags: SessionSpecific type: MetaData @@ -59875,7 +61022,7 @@ entities: type: Transform - proto: VendingMachineEngivend entities: - - uid: 9190 + - uid: 9420 components: - flags: SessionSpecific type: MetaData @@ -59884,28 +61031,28 @@ entities: type: Transform - proto: VendingMachineGames entities: - - uid: 9191 + - uid: 9421 components: - flags: SessionSpecific type: MetaData - pos: 16.5,-26.5 parent: 2 type: Transform - - uid: 9192 + - uid: 9422 components: - flags: SessionSpecific type: MetaData - pos: -2.5,-17.5 parent: 2 type: Transform - - uid: 9193 + - uid: 9423 components: - flags: SessionSpecific type: MetaData - pos: -19.5,-16.5 parent: 2 type: Transform - - uid: 9194 + - uid: 9424 components: - flags: SessionSpecific type: MetaData @@ -59914,7 +61061,7 @@ entities: type: Transform - proto: VendingMachineHappyHonk entities: - - uid: 9195 + - uid: 9425 components: - flags: SessionSpecific type: MetaData @@ -59923,7 +61070,7 @@ entities: type: Transform - proto: VendingMachineHydrobe entities: - - uid: 9196 + - uid: 9426 components: - flags: SessionSpecific type: MetaData @@ -59932,7 +61079,7 @@ entities: type: Transform - proto: VendingMachineJaniDrobe entities: - - uid: 9197 + - uid: 9427 components: - flags: SessionSpecific type: MetaData @@ -59941,7 +61088,7 @@ entities: type: Transform - proto: VendingMachineLawDrobe entities: - - uid: 9198 + - uid: 9428 components: - flags: SessionSpecific type: MetaData @@ -59950,7 +61097,7 @@ entities: type: Transform - proto: VendingMachineMailDrobe entities: - - uid: 9199 + - uid: 9429 components: - flags: SessionSpecific type: MetaData @@ -59959,7 +61106,7 @@ entities: type: Transform - proto: VendingMachineMedical entities: - - uid: 9200 + - uid: 9430 components: - flags: SessionSpecific type: MetaData @@ -59968,7 +61115,7 @@ entities: type: Transform - proto: VendingMachineMediDrobe entities: - - uid: 9201 + - uid: 9431 components: - flags: SessionSpecific type: MetaData @@ -59977,7 +61124,7 @@ entities: type: Transform - proto: VendingMachineMNKDrobe entities: - - uid: 9202 + - uid: 9432 components: - flags: SessionSpecific type: MetaData @@ -59986,7 +61133,7 @@ entities: type: Transform - proto: VendingMachineNutri entities: - - uid: 9203 + - uid: 9433 components: - flags: SessionSpecific type: MetaData @@ -59995,91 +61142,91 @@ entities: type: Transform - proto: VendingMachineRestockChang entities: - - uid: 9204 + - uid: 9434 components: - pos: 4.485469,8.926115 parent: 2 type: Transform - proto: VendingMachineRestockDonut entities: - - uid: 9205 + - uid: 9435 components: - pos: 4.4958854,9.134594 parent: 2 type: Transform - proto: VendingMachineRestockGames entities: - - uid: 9206 + - uid: 9436 components: - pos: 4.485469,8.707214 parent: 2 type: Transform - proto: VendingMachineRestockGetmoreChocolateCorp entities: - - uid: 9207 + - uid: 9437 components: - pos: 4.4958854,8.561279 parent: 2 type: Transform - proto: VendingMachineRestockHappyHonk entities: - - uid: 9208 + - uid: 9438 components: - pos: 4.473782,8.236059 parent: 2 type: Transform - proto: VendingMachineRestockHotDrinks entities: - - uid: 9209 + - uid: 9439 components: - pos: 4.5063024,9.728756 parent: 2 type: Transform - proto: VendingMachineRestockRobustSoftdrinks entities: - - uid: 9210 + - uid: 9440 components: - pos: 4.5063024,9.332647 parent: 2 type: Transform - proto: VendingMachineRestockSmokes entities: - - uid: 9211 + - uid: 9441 components: - pos: 4.5063024,9.582821 parent: 2 type: Transform - proto: VendingMachineRoboDrobe entities: - - uid: 9212 + - uid: 9442 components: - pos: 1.5,33.5 parent: 2 type: Transform - proto: VendingMachineRobotics entities: - - uid: 9213 + - uid: 9443 components: - - pos: -1.5,22.5 + - pos: 0.5,19.5 parent: 2 type: Transform - proto: VendingMachineSalvage entities: - - uid: 9214 + - uid: 9444 components: - pos: 25.5,-2.5 parent: 2 type: Transform - proto: VendingMachineSciDrobe entities: - - uid: 9215 + - uid: 9445 components: - pos: 1.5,31.5 parent: 2 type: Transform - proto: VendingMachineSec entities: - - uid: 9216 + - uid: 9446 components: - flags: SessionSpecific type: MetaData @@ -60088,7 +61235,7 @@ entities: type: Transform - proto: VendingMachineSecDrobe entities: - - uid: 9217 + - uid: 9447 components: - flags: SessionSpecific type: MetaData @@ -60097,7 +61244,7 @@ entities: type: Transform - proto: VendingMachineSeeds entities: - - uid: 9218 + - uid: 9448 components: - flags: SessionSpecific type: MetaData @@ -60106,7 +61253,7 @@ entities: type: Transform - proto: VendingMachineSeedsUnlocked entities: - - uid: 9219 + - uid: 9449 components: - flags: SessionSpecific type: MetaData @@ -60115,33 +61262,33 @@ entities: type: Transform - proto: VendingMachineSmartFridge entities: - - uid: 9220 + - uid: 9450 components: - pos: -36.5,-27.5 parent: 2 type: Transform - proto: VendingMachineSnack entities: - - uid: 9221 + - uid: 9451 components: - pos: -10.5,30.5 parent: 2 type: Transform - - uid: 9222 + - uid: 9452 components: - flags: SessionSpecific type: MetaData - pos: -8.5,-1.5 parent: 2 type: Transform - - uid: 9223 + - uid: 9453 components: - flags: SessionSpecific type: MetaData - pos: 1.5,-17.5 parent: 2 type: Transform - - uid: 9224 + - uid: 9454 components: - flags: SessionSpecific type: MetaData @@ -60150,7 +61297,7 @@ entities: type: Transform - proto: VendingMachineSnackBlue entities: - - uid: 9225 + - uid: 9455 components: - flags: SessionSpecific type: MetaData @@ -60159,7 +61306,7 @@ entities: type: Transform - proto: VendingMachineSovietSoda entities: - - uid: 9226 + - uid: 9456 components: - flags: SessionSpecific type: MetaData @@ -60168,12 +61315,12 @@ entities: type: Transform - proto: VendingMachineTankDispenserEngineering entities: - - uid: 9227 + - uid: 9457 components: - pos: 29.5,31.5 parent: 2 type: Transform - - uid: 9228 + - uid: 9458 components: - flags: SessionSpecific type: MetaData @@ -60182,24 +61329,24 @@ entities: type: Transform - proto: VendingMachineTankDispenserEVA entities: - - uid: 9229 + - uid: 9459 components: - pos: 8.5,17.5 parent: 2 type: Transform - - uid: 9230 + - uid: 9460 components: - pos: -2.5,-7.5 parent: 2 type: Transform - - uid: 9231 + - uid: 9461 components: - flags: SessionSpecific type: MetaData - pos: 16.5,12.5 parent: 2 type: Transform - - uid: 9232 + - uid: 9462 components: - flags: SessionSpecific type: MetaData @@ -60208,7 +61355,7 @@ entities: type: Transform - proto: VendingMachineTheater entities: - - uid: 9233 + - uid: 9463 components: - flags: SessionSpecific type: MetaData @@ -60217,14 +61364,14 @@ entities: type: Transform - proto: VendingMachineVendomat entities: - - uid: 9234 + - uid: 9464 components: - pos: -2.5,16.5 parent: 2 type: Transform - proto: VendingMachineViroDrobe entities: - - uid: 9235 + - uid: 9465 components: - flags: SessionSpecific type: MetaData @@ -60233,19 +61380,19 @@ entities: type: Transform - proto: VendingMachineWinter entities: - - uid: 9236 + - uid: 9466 components: - pos: -22.5,-20.5 parent: 2 type: Transform - proto: VendingMachineYouTool entities: - - uid: 9237 + - uid: 9467 components: - pos: -2.5,17.5 parent: 2 type: Transform - - uid: 9238 + - uid: 9468 components: - flags: SessionSpecific type: MetaData @@ -60254,81 +61401,81 @@ entities: type: Transform - proto: WallMining entities: - - uid: 9239 + - uid: 9469 components: - pos: -36.5,-26.5 parent: 2 type: Transform - - uid: 9240 + - uid: 9470 components: - pos: -34.5,-27.5 parent: 2 type: Transform - - uid: 9241 + - uid: 9471 components: - pos: -38.5,-28.5 parent: 2 type: Transform - - uid: 9242 + - uid: 9472 components: - pos: -35.5,-26.5 parent: 2 type: Transform - - uid: 9243 + - uid: 9473 components: - pos: -38.5,-29.5 parent: 2 type: Transform - - uid: 9244 + - uid: 9474 components: - pos: -37.5,-26.5 parent: 2 type: Transform - - uid: 9245 + - uid: 9475 components: - pos: -34.5,-29.5 parent: 2 type: Transform - - uid: 9246 + - uid: 9476 components: - pos: -38.5,-27.5 parent: 2 type: Transform - - uid: 9247 + - uid: 9477 components: - pos: -35.5,-30.5 parent: 2 type: Transform - - uid: 9248 + - uid: 9478 components: - pos: -34.5,-28.5 parent: 2 type: Transform - - uid: 9249 + - uid: 9479 components: - pos: -37.5,-30.5 parent: 2 type: Transform - proto: WallMiningDiagonal entities: - - uid: 9250 + - uid: 9480 components: - pos: -38.5,-26.5 parent: 2 type: Transform - - uid: 9251 + - uid: 9481 components: - rot: -1.5707963267948966 rad pos: -34.5,-26.5 parent: 2 type: Transform - - uid: 9252 + - uid: 9482 components: - rot: 3.141592653589793 rad pos: -34.5,-30.5 parent: 2 type: Transform - - uid: 9253 + - uid: 9483 components: - rot: 1.5707963267948966 rad pos: -38.5,-30.5 @@ -60336,5946 +61483,5944 @@ entities: type: Transform - proto: WallmountTelescreen entities: - - uid: 9254 + - uid: 9484 components: - rot: 1.5707963267948966 rad pos: 9.5,-14.5 parent: 2 type: Transform - - uid: 9255 + - uid: 9485 components: - pos: -18.5,20.5 parent: 2 type: Transform - - uid: 9256 + - uid: 9486 components: - pos: 20.5,-17.5 parent: 2 type: Transform -- proto: WallmountTelevision - entities: - - uid: 9257 - components: - - pos: -7.5,-0.5 - parent: 2 - type: Transform - proto: WallReinforced entities: - - uid: 9258 + - uid: 9487 components: - rot: 3.141592653589793 rad pos: 8.5,-9.5 parent: 2 type: Transform - - uid: 9259 + - uid: 9488 components: - pos: 13.5,34.5 parent: 2 type: Transform - - uid: 9260 + - uid: 9489 components: - pos: 12.5,34.5 parent: 2 type: Transform - - uid: 9261 + - uid: 9490 components: - pos: 29.5,4.5 parent: 2 type: Transform - - uid: 9262 + - uid: 9491 components: - pos: 11.5,34.5 parent: 2 type: Transform - - uid: 9263 + - uid: 9492 components: - pos: 13.5,39.5 parent: 2 type: Transform - - uid: 9264 + - uid: 9493 components: - pos: 13.5,38.5 parent: 2 type: Transform - - uid: 9265 + - uid: 9494 components: - pos: 29.5,-8.5 parent: 2 type: Transform - - uid: 9266 + - uid: 9495 components: - pos: 8.5,14.5 parent: 2 type: Transform - - uid: 9267 + - uid: 9496 components: - pos: 5.5,14.5 parent: 2 type: Transform - - uid: 9268 + - uid: 9497 components: - pos: 29.5,-2.5 parent: 2 type: Transform - - uid: 9269 + - uid: 9498 components: - pos: 21.5,-0.5 parent: 2 type: Transform - - uid: 9270 + - uid: 9499 components: - pos: 32.5,-2.5 parent: 2 type: Transform - - uid: 9271 + - uid: 9500 components: - pos: 26.5,-3.5 parent: 2 type: Transform - - uid: 9272 + - uid: 9501 components: - pos: 26.5,-1.5 parent: 2 type: Transform - - uid: 9273 + - uid: 9502 components: - pos: 26.5,-0.5 parent: 2 type: Transform - - uid: 9274 + - uid: 9503 components: - pos: 21.5,-1.5 parent: 2 type: Transform - - uid: 9275 + - uid: 9504 components: - pos: 21.5,-2.5 parent: 2 type: Transform - - uid: 9276 + - uid: 9505 components: - pos: 32.5,3.5 parent: 2 type: Transform - - uid: 9277 + - uid: 9506 components: - pos: 6.5,39.5 parent: 2 type: Transform - - uid: 9278 + - uid: 9507 components: - pos: 6.5,38.5 parent: 2 type: Transform - - uid: 9279 + - uid: 9508 components: - pos: 6.5,37.5 parent: 2 type: Transform - - uid: 9280 + - uid: 9509 components: - pos: 25.5,-4.5 parent: 2 type: Transform - - uid: 9281 + - uid: 9510 components: - pos: 21.5,3.5 parent: 2 type: Transform - - uid: 9282 + - uid: 9511 components: - pos: 29.5,-4.5 parent: 2 type: Transform - - uid: 9283 + - uid: 9512 components: - pos: 26.5,-5.5 parent: 2 type: Transform - - uid: 9284 + - uid: 9513 components: - pos: 10.5,1.5 parent: 2 type: Transform - - uid: 9285 + - uid: 9514 components: - pos: 11.5,36.5 parent: 2 type: Transform - - uid: 9286 + - uid: 9515 components: - pos: 12.5,33.5 parent: 2 type: Transform - - uid: 9287 + - uid: 9516 components: - pos: 12.5,28.5 parent: 2 type: Transform - - uid: 9288 + - uid: 9517 components: - pos: 27.5,4.5 parent: 2 type: Transform - - uid: 9289 + - uid: 9518 components: - pos: 22.5,3.5 parent: 2 type: Transform - - uid: 9290 + - uid: 9519 components: - pos: 14.5,2.5 parent: 2 type: Transform - - uid: 9291 + - uid: 9520 components: - pos: 7.5,18.5 parent: 2 type: Transform - - uid: 9292 + - uid: 9521 components: - pos: 14.5,1.5 parent: 2 type: Transform - - uid: 9293 + - uid: 9522 components: - pos: -20.5,-17.5 parent: 2 type: Transform - - uid: 9294 + - uid: 9523 components: - pos: 19.5,-7.5 parent: 2 type: Transform - - uid: 9295 + - uid: 9524 components: - pos: 6.5,40.5 parent: 2 type: Transform - - uid: 9296 + - uid: 9525 components: - pos: 7.5,40.5 parent: 2 type: Transform - - uid: 9297 + - uid: 9526 components: - pos: 19.5,-6.5 parent: 2 type: Transform - - uid: 9298 + - uid: 9527 components: - pos: 13.5,40.5 parent: 2 type: Transform - - uid: 9299 + - uid: 9528 components: - pos: 6.5,36.5 parent: 2 type: Transform - - uid: 9300 + - uid: 9529 components: - pos: 29.5,3.5 parent: 2 type: Transform - - uid: 9301 + - uid: 9530 components: - pos: 12.5,40.5 parent: 2 type: Transform - - uid: 9302 + - uid: 9531 components: - pos: 28.5,-4.5 parent: 2 type: Transform - - uid: 9303 + - uid: 9532 components: - pos: -2.5,-16.5 parent: 2 type: Transform - - uid: 9304 + - uid: 9533 components: - pos: -10.5,-16.5 parent: 2 type: Transform - - uid: 9305 + - uid: 9534 components: - pos: 3.5,-24.5 parent: 2 type: Transform - - uid: 9306 + - uid: 9535 components: - pos: 2.5,-16.5 parent: 2 type: Transform - - uid: 9307 + - uid: 9536 components: - pos: -9.5,-16.5 parent: 2 type: Transform - - uid: 9308 + - uid: 9537 components: - pos: -8.5,-16.5 parent: 2 type: Transform - - uid: 9309 + - uid: 9538 components: - pos: -6.5,-16.5 parent: 2 type: Transform - - uid: 9310 + - uid: 9539 components: - pos: -5.5,-16.5 parent: 2 type: Transform - - uid: 9311 + - uid: 9540 components: - pos: -4.5,-16.5 parent: 2 type: Transform - - uid: 9312 + - uid: 9541 components: - pos: -3.5,-16.5 parent: 2 type: Transform - - uid: 9313 + - uid: 9542 components: - pos: -0.5,-16.5 parent: 2 type: Transform - - uid: 9314 + - uid: 9543 components: - pos: 0.5,-16.5 parent: 2 type: Transform - - uid: 9315 + - uid: 9544 components: - pos: 25.5,40.5 parent: 2 type: Transform - - uid: 9316 + - uid: 9545 components: - pos: 42.5,14.5 parent: 2 type: Transform - - uid: 9317 + - uid: 9546 components: - pos: -5.5,-31.5 parent: 2 type: Transform - - uid: 9318 + - uid: 9547 components: - pos: -4.5,-28.5 parent: 2 type: Transform - - uid: 9319 + - uid: 9548 components: - pos: -4.5,-27.5 parent: 2 type: Transform - - uid: 9320 + - uid: 9549 components: - pos: 1.5,-16.5 parent: 2 type: Transform - - uid: 9321 + - uid: 9550 components: - pos: -16.5,-24.5 parent: 2 type: Transform - - uid: 9322 + - uid: 9551 components: - pos: -22.5,-29.5 parent: 2 type: Transform - - uid: 9323 + - uid: 9552 components: - pos: -20.5,23.5 parent: 2 type: Transform - - uid: 9324 + - uid: 9553 components: - pos: -24.5,20.5 parent: 2 type: Transform - - uid: 9325 + - uid: 9554 components: - pos: -15.5,0.5 parent: 2 type: Transform - - uid: 9326 + - uid: 9555 components: - pos: -28.5,26.5 parent: 2 type: Transform - - uid: 9327 + - uid: 9556 components: - pos: -39.5,2.5 parent: 2 type: Transform - - uid: 9328 + - uid: 9557 components: - pos: -43.5,2.5 parent: 2 type: Transform - - uid: 9329 + - uid: 9558 components: - pos: -37.5,-5.5 parent: 2 type: Transform - - uid: 9330 + - uid: 9559 components: - pos: -25.5,31.5 parent: 2 type: Transform - - uid: 9331 + - uid: 9560 components: - pos: -24.5,21.5 parent: 2 type: Transform - - uid: 9332 + - uid: 9561 components: - pos: -23.5,23.5 parent: 2 type: Transform - - uid: 9333 + - uid: 9562 components: - pos: -22.5,23.5 parent: 2 type: Transform - - uid: 9334 + - uid: 9563 components: - pos: -21.5,23.5 parent: 2 type: Transform - - uid: 9335 + - uid: 9564 components: - pos: -17.5,23.5 parent: 2 type: Transform - - uid: 9336 + - uid: 9565 components: - pos: -17.5,22.5 parent: 2 type: Transform - - uid: 9337 + - uid: 9566 components: - pos: -17.5,21.5 parent: 2 type: Transform - - uid: 9338 + - uid: 9567 components: - pos: -18.5,23.5 parent: 2 type: Transform - - uid: 9339 + - uid: 9568 components: - pos: -27.5,31.5 parent: 2 type: Transform - - uid: 9340 + - uid: 9569 components: - pos: -19.5,23.5 parent: 2 type: Transform - - uid: 9341 + - uid: 9570 components: - pos: -18.5,20.5 parent: 2 type: Transform - - uid: 9342 + - uid: 9571 components: - pos: -17.5,20.5 parent: 2 type: Transform - - uid: 9343 + - uid: 9572 components: - pos: -20.5,20.5 parent: 2 type: Transform - - uid: 9344 + - uid: 9573 components: - pos: -16.5,20.5 parent: 2 type: Transform - - uid: 9345 + - uid: 9574 components: - pos: -16.5,19.5 parent: 2 type: Transform - - uid: 9346 + - uid: 9575 components: - pos: -16.5,18.5 parent: 2 type: Transform - - uid: 9347 + - uid: 9576 components: - pos: -16.5,17.5 parent: 2 type: Transform - - uid: 9348 + - uid: 9577 components: - pos: -16.5,16.5 parent: 2 type: Transform - - uid: 9349 + - uid: 9578 components: - pos: -20.5,16.5 parent: 2 type: Transform - - uid: 9350 + - uid: 9579 components: - pos: -20.5,17.5 parent: 2 type: Transform - - uid: 9351 + - uid: 9580 components: - pos: -20.5,18.5 parent: 2 type: Transform - - uid: 9352 + - uid: 9581 components: - pos: -20.5,19.5 parent: 2 type: Transform - - uid: 9353 + - uid: 9582 components: - pos: -21.5,19.5 parent: 2 type: Transform - - uid: 9354 + - uid: 9583 components: - pos: -22.5,19.5 parent: 2 type: Transform - - uid: 9355 + - uid: 9584 components: - pos: -23.5,19.5 parent: 2 type: Transform - - uid: 9356 + - uid: 9585 components: - pos: -24.5,19.5 parent: 2 type: Transform - - uid: 9357 + - uid: 9586 components: - pos: -24.5,17.5 parent: 2 type: Transform - - uid: 9358 + - uid: 9587 components: - pos: -24.5,16.5 parent: 2 type: Transform - - uid: 9359 + - uid: 9588 components: - pos: -23.5,26.5 parent: 2 type: Transform - - uid: 9360 + - uid: 9589 components: - pos: -20.5,15.5 parent: 2 type: Transform - - uid: 9361 + - uid: 9590 components: - pos: -21.5,15.5 parent: 2 type: Transform - - uid: 9362 + - uid: 9591 components: - pos: -23.5,15.5 parent: 2 type: Transform - - uid: 9363 + - uid: 9592 components: - pos: -24.5,15.5 parent: 2 type: Transform - - uid: 9364 + - uid: 9593 components: - pos: -24.5,14.5 parent: 2 type: Transform - - uid: 9365 + - uid: 9594 components: - pos: -24.5,13.5 parent: 2 type: Transform - - uid: 9366 + - uid: 9595 components: - pos: -24.5,12.5 parent: 2 type: Transform - - uid: 9367 + - uid: 9596 components: - pos: -24.5,11.5 parent: 2 type: Transform - - uid: 9368 + - uid: 9597 components: - pos: -23.5,11.5 parent: 2 type: Transform - - uid: 9369 + - uid: 9598 components: - pos: -22.5,11.5 parent: 2 type: Transform - - uid: 9370 + - uid: 9599 components: - pos: -21.5,11.5 parent: 2 type: Transform - - uid: 9371 + - uid: 9600 components: - pos: -17.5,15.5 parent: 2 type: Transform - - uid: 9372 + - uid: 9601 components: - pos: -13.5,0.5 parent: 2 type: Transform - - uid: 9373 + - uid: 9602 components: - pos: -28.5,15.5 parent: 2 type: Transform - - uid: 9374 + - uid: 9603 components: - pos: -6.5,5.5 parent: 2 type: Transform - - uid: 9375 + - uid: 9604 components: - pos: -6.5,4.5 parent: 2 type: Transform - - uid: 9376 + - uid: 9605 components: - pos: -6.5,6.5 parent: 2 type: Transform - - uid: 9377 + - uid: 9606 components: - pos: -8.5,3.5 parent: 2 type: Transform - - uid: 9378 + - uid: 9607 components: - pos: -7.5,3.5 parent: 2 type: Transform - - uid: 9379 + - uid: 9608 components: - pos: -25.5,7.5 parent: 2 type: Transform - - uid: 9380 + - uid: 9609 components: - pos: -15.5,-5.5 parent: 2 type: Transform - - uid: 9381 + - uid: 9610 components: - pos: -16.5,-10.5 parent: 2 type: Transform - - uid: 9382 + - uid: 9611 components: - pos: -17.5,-5.5 parent: 2 type: Transform - - uid: 9383 + - uid: 9612 components: - pos: -19.5,-10.5 parent: 2 type: Transform - - uid: 9384 + - uid: 9613 components: - pos: -6.5,3.5 parent: 2 type: Transform - - uid: 9385 + - uid: 9614 components: - pos: -28.5,27.5 parent: 2 type: Transform - - uid: 9386 + - uid: 9615 components: - pos: -21.5,-5.5 parent: 2 type: Transform - - uid: 9387 + - uid: 9616 components: - pos: -20.5,-10.5 parent: 2 type: Transform - - uid: 9388 + - uid: 9617 components: - pos: -28.5,28.5 parent: 2 type: Transform - - uid: 9389 + - uid: 9618 components: - pos: -24.5,26.5 parent: 2 type: Transform - - uid: 9390 + - uid: 9619 components: - pos: -18.5,-10.5 parent: 2 type: Transform - - uid: 9391 + - uid: 9620 components: - pos: -28.5,20.5 parent: 2 type: Transform - - uid: 9392 + - uid: 9621 components: - pos: -26.5,31.5 parent: 2 type: Transform - - uid: 9393 + - uid: 9622 components: - pos: -29.5,28.5 parent: 2 type: Transform - - uid: 9394 + - uid: 9623 components: - pos: -25.5,6.5 parent: 2 type: Transform - - uid: 9395 + - uid: 9624 components: - pos: -21.5,-10.5 parent: 2 type: Transform - - uid: 9396 + - uid: 9625 components: - pos: -14.5,0.5 parent: 2 type: Transform - - uid: 9397 + - uid: 9626 components: - pos: -26.5,-10.5 parent: 2 type: Transform - - uid: 9398 + - uid: 9627 components: - pos: -25.5,10.5 parent: 2 type: Transform - - uid: 9399 + - uid: 9628 components: - pos: -13.5,1.5 parent: 2 type: Transform - - uid: 9400 + - uid: 9629 components: - pos: -13.5,2.5 parent: 2 type: Transform - - uid: 9401 + - uid: 9630 components: - pos: -13.5,-1.5 parent: 2 type: Transform - - uid: 9402 + - uid: 9631 components: - pos: -13.5,-5.5 parent: 2 type: Transform - - uid: 9403 + - uid: 9632 components: - pos: -13.5,-8.5 parent: 2 type: Transform - - uid: 9404 + - uid: 9633 components: - pos: -13.5,-9.5 parent: 2 type: Transform - - uid: 9405 + - uid: 9634 components: - pos: -14.5,-9.5 parent: 2 type: Transform - - uid: 9406 + - uid: 9635 components: - pos: -15.5,-9.5 parent: 2 type: Transform - - uid: 9407 + - uid: 9636 components: - pos: -16.5,-9.5 parent: 2 type: Transform - - uid: 9408 + - uid: 9637 components: - pos: -14.5,2.5 parent: 2 type: Transform - - uid: 9409 + - uid: 9638 components: - pos: -15.5,2.5 parent: 2 type: Transform - - uid: 9410 + - uid: 9639 components: - pos: 21.5,-3.5 parent: 2 type: Transform - - uid: 9411 + - uid: 9640 components: - pos: 13.5,-3.5 parent: 2 type: Transform - - uid: 9412 + - uid: 9641 components: - pos: 15.5,-3.5 parent: 2 type: Transform - - uid: 9413 + - uid: 9642 components: - pos: -25.5,11.5 parent: 2 type: Transform - - uid: 9414 + - uid: 9643 components: - pos: 19.5,3.5 parent: 2 type: Transform - - uid: 9415 + - uid: 9644 components: - pos: 12.5,-29.5 parent: 2 type: Transform - - uid: 9416 + - uid: 9645 components: - pos: 30.5,13.5 parent: 2 type: Transform - - uid: 9417 + - uid: 9646 components: - pos: 30.5,12.5 parent: 2 type: Transform - - uid: 9418 + - uid: 9647 components: - pos: 13.5,11.5 parent: 2 type: Transform - - uid: 9419 + - uid: 9648 components: - pos: 12.5,11.5 parent: 2 type: Transform - - uid: 9420 + - uid: 9649 components: - pos: 9.5,-3.5 parent: 2 type: Transform - - uid: 9421 + - uid: 9650 components: - pos: 29.5,27.5 parent: 2 type: Transform - - uid: 9422 + - uid: 9651 components: - pos: 10.5,-3.5 parent: 2 type: Transform - - uid: 9423 + - uid: 9652 components: - pos: 9.5,-3.5 parent: 2 type: Transform - - uid: 9424 + - uid: 9653 components: - pos: 10.5,-4.5 parent: 2 type: Transform - - uid: 9425 + - uid: 9654 components: - pos: 18.5,3.5 parent: 2 type: Transform - - uid: 9426 + - uid: 9655 components: - pos: 11.5,-3.5 parent: 2 type: Transform - - uid: 9427 + - uid: 9656 components: - pos: 6.5,24.5 parent: 2 type: Transform - - uid: 9428 + - uid: 9657 components: - pos: 20.5,-25.5 parent: 2 type: Transform - - uid: 9429 + - uid: 9658 components: - pos: 20.5,-27.5 parent: 2 type: Transform - - uid: 9430 + - uid: 9659 components: - pos: 9.5,27.5 parent: 2 type: Transform - - uid: 9431 + - uid: 9660 components: - pos: 12.5,-3.5 parent: 2 type: Transform - - uid: 9432 + - uid: 9661 components: - pos: 11.5,-7.5 parent: 2 type: Transform - - uid: 9433 + - uid: 9662 components: - pos: 18.5,-23.5 parent: 2 type: Transform - - uid: 9434 + - uid: 9663 components: - pos: 24.5,11.5 parent: 2 type: Transform - - uid: 9435 + - uid: 9664 components: - pos: 10.5,-6.5 parent: 2 type: Transform - - uid: 9436 + - uid: 9665 components: - pos: 12.5,-7.5 parent: 2 type: Transform - - uid: 9437 + - uid: 9666 components: - pos: 29.5,9.5 parent: 2 type: Transform - - uid: 9438 + - uid: 9667 components: - pos: 5.5,-3.5 parent: 2 type: Transform - - uid: 9439 + - uid: 9668 components: - pos: 28.5,-12.5 parent: 2 type: Transform - - uid: 9440 + - uid: 9669 components: - pos: -7.5,6.5 parent: 2 type: Transform - - uid: 9441 + - uid: 9670 components: - pos: 2.5,36.5 parent: 2 type: Transform - - uid: 9442 + - uid: 9671 components: - pos: 9.5,-7.5 parent: 2 type: Transform - - uid: 9443 + - uid: 9672 components: - pos: -15.5,37.5 parent: 2 type: Transform - - uid: 9444 + - uid: 9673 components: - pos: 10.5,-7.5 parent: 2 type: Transform - - uid: 9445 + - uid: 9674 components: - pos: -26.5,-14.5 parent: 2 type: Transform - - uid: 9446 + - uid: 9675 components: - pos: -27.5,-14.5 parent: 2 type: Transform - - uid: 9447 + - uid: 9676 components: - pos: -8.5,5.5 parent: 2 type: Transform - - uid: 9448 + - uid: 9677 components: - pos: -15.5,31.5 parent: 2 type: Transform - - uid: 9449 + - uid: 9678 components: - pos: 6.5,-7.5 parent: 2 type: Transform - - uid: 9450 + - uid: 9679 components: - pos: 7.5,-7.5 parent: 2 type: Transform - - uid: 9451 + - uid: 9680 components: - pos: 5.5,-7.5 parent: 2 type: Transform - - uid: 9452 + - uid: 9681 components: - pos: -13.5,-19.5 parent: 2 type: Transform - - uid: 9453 + - uid: 9682 components: - pos: -15.5,-23.5 parent: 2 type: Transform - - uid: 9454 + - uid: 9683 components: - pos: -9.5,-22.5 parent: 2 type: Transform - - uid: 9455 + - uid: 9684 components: - pos: -16.5,-20.5 parent: 2 type: Transform - - uid: 9456 + - uid: 9685 components: - pos: -16.5,-23.5 parent: 2 type: Transform - - uid: 9457 + - uid: 9686 components: - pos: -14.5,-23.5 parent: 2 type: Transform - - uid: 9458 + - uid: 9687 components: - pos: -13.5,-22.5 parent: 2 type: Transform - - uid: 9459 + - uid: 9688 components: - pos: -27.5,-25.5 parent: 2 type: Transform - - uid: 9460 + - uid: 9689 components: - pos: 22.5,-4.5 parent: 2 type: Transform - - uid: 9461 + - uid: 9690 components: - pos: -28.5,-25.5 parent: 2 type: Transform - - uid: 9462 + - uid: 9691 components: - pos: -25.5,-25.5 parent: 2 type: Transform - - uid: 9463 + - uid: 9692 components: - pos: -17.5,-10.5 parent: 2 type: Transform - - uid: 9464 + - uid: 9693 components: - pos: -29.5,-25.5 parent: 2 type: Transform - - uid: 9465 + - uid: 9694 components: - pos: 4.5,-30.5 parent: 2 type: Transform - - uid: 9466 + - uid: 9695 components: - pos: -16.5,-18.5 parent: 2 type: Transform - - uid: 9467 + - uid: 9696 components: - pos: -15.5,-18.5 parent: 2 type: Transform - - uid: 9468 + - uid: 9697 components: - pos: -14.5,-18.5 parent: 2 type: Transform - - uid: 9469 + - uid: 9698 components: - pos: 26.5,16.5 parent: 2 type: Transform - - uid: 9470 + - uid: 9699 components: - pos: 26.5,15.5 parent: 2 type: Transform - - uid: 9471 + - uid: 9700 components: - pos: 26.5,14.5 parent: 2 type: Transform - - uid: 9472 + - uid: 9701 components: - pos: -13.5,-18.5 parent: 2 type: Transform - - uid: 9473 + - uid: 9702 components: - pos: -13.5,-17.5 parent: 2 type: Transform - - uid: 9474 + - uid: 9703 components: - pos: -13.5,-16.5 parent: 2 type: Transform - - uid: 9475 + - uid: 9704 components: - pos: -13.5,-15.5 parent: 2 type: Transform - - uid: 9476 + - uid: 9705 components: - pos: -13.5,-14.5 parent: 2 type: Transform - - uid: 9477 + - uid: 9706 components: - pos: 3.5,-23.5 parent: 2 type: Transform - - uid: 9478 + - uid: 9707 components: - pos: -5.5,-30.5 parent: 2 type: Transform - - uid: 9479 + - uid: 9708 components: - pos: 8.5,-30.5 parent: 2 type: Transform - - uid: 9480 + - uid: 9709 components: - pos: 23.5,15.5 parent: 2 type: Transform - - uid: 9481 + - uid: 9710 components: - pos: -16.5,-21.5 parent: 2 type: Transform - - uid: 9482 + - uid: 9711 components: - pos: -13.5,-21.5 parent: 2 type: Transform - - uid: 9483 + - uid: 9712 components: - pos: -13.5,-23.5 parent: 2 type: Transform - - uid: 9484 + - uid: 9713 components: - pos: -16.5,-22.5 parent: 2 type: Transform - - uid: 9485 + - uid: 9714 components: - pos: -16.5,-19.5 parent: 2 type: Transform - - uid: 9486 + - uid: 9715 components: - pos: -8.5,-20.5 parent: 2 type: Transform - - uid: 9487 + - uid: 9716 components: - pos: -9.5,-21.5 parent: 2 type: Transform - - uid: 9488 + - uid: 9717 components: - pos: -9.5,-20.5 parent: 2 type: Transform - - uid: 9489 + - uid: 9718 components: - pos: -5.5,-20.5 parent: 2 type: Transform - - uid: 9490 + - uid: 9719 components: - pos: -4.5,-20.5 parent: 2 type: Transform - - uid: 9491 + - uid: 9720 components: - pos: -4.5,-21.5 parent: 2 type: Transform - - uid: 9492 + - uid: 9721 components: - pos: -4.5,-22.5 parent: 2 type: Transform - - uid: 9493 + - uid: 9722 components: - pos: -4.5,-23.5 parent: 2 type: Transform - - uid: 9494 + - uid: 9723 components: - pos: -4.5,-24.5 parent: 2 type: Transform - - uid: 9495 + - uid: 9724 components: - pos: -4.5,-25.5 parent: 2 type: Transform - - uid: 9496 + - uid: 9725 components: - pos: -4.5,-26.5 parent: 2 type: Transform - - uid: 9497 + - uid: 9726 components: - pos: -2.5,-29.5 parent: 2 type: Transform - - uid: 9498 + - uid: 9727 components: - pos: 1.5,-29.5 parent: 2 type: Transform - - uid: 9499 + - uid: 9728 components: - pos: 2.5,-25.5 parent: 2 type: Transform - - uid: 9500 + - uid: 9729 components: - pos: 3.5,-28.5 parent: 2 type: Transform - - uid: 9501 + - uid: 9730 components: - pos: 3.5,-27.5 parent: 2 type: Transform - - uid: 9502 + - uid: 9731 components: - pos: 3.5,-26.5 parent: 2 type: Transform - - uid: 9503 + - uid: 9732 components: - pos: 3.5,-25.5 parent: 2 type: Transform - - uid: 9504 + - uid: 9733 components: - pos: -3.5,-25.5 parent: 2 type: Transform - - uid: 9505 + - uid: 9734 components: - pos: -9.5,-25.5 parent: 2 type: Transform - - uid: 9506 + - uid: 9735 components: - pos: -9.5,-26.5 parent: 2 type: Transform - - uid: 9507 + - uid: 9736 components: - pos: -9.5,-27.5 parent: 2 type: Transform - - uid: 9508 + - uid: 9737 components: - pos: -10.5,-27.5 parent: 2 type: Transform - - uid: 9509 + - uid: 9738 components: - pos: -7.5,-27.5 parent: 2 type: Transform - - uid: 9510 + - uid: 9739 components: - pos: -6.5,-27.5 parent: 2 type: Transform - - uid: 9511 + - uid: 9740 components: - pos: -5.5,-27.5 parent: 2 type: Transform - - uid: 9512 + - uid: 9741 components: - pos: -7.5,-28.5 parent: 2 type: Transform - - uid: 9513 + - uid: 9742 components: - pos: -7.5,-29.5 parent: 2 type: Transform - - uid: 9514 + - uid: 9743 components: - pos: -7.5,-31.5 parent: 2 type: Transform - - uid: 9515 + - uid: 9744 components: - pos: -6.5,-31.5 parent: 2 type: Transform - - uid: 9516 + - uid: 9745 components: - pos: -6.5,-32.5 parent: 2 type: Transform - - uid: 9517 + - uid: 9746 components: - pos: -6.5,-33.5 parent: 2 type: Transform - - uid: 9518 + - uid: 9747 components: - pos: -7.5,-33.5 parent: 2 type: Transform - - uid: 9519 + - uid: 9748 components: - pos: -8.5,-33.5 parent: 2 type: Transform - - uid: 9520 + - uid: 9749 components: - pos: -9.5,-33.5 parent: 2 type: Transform - - uid: 9521 + - uid: 9750 components: - pos: -10.5,-33.5 parent: 2 type: Transform - - uid: 9522 + - uid: 9751 components: - pos: -10.5,-32.5 parent: 2 type: Transform - - uid: 9523 + - uid: 9752 components: - pos: -10.5,-31.5 parent: 2 type: Transform - - uid: 9524 + - uid: 9753 components: - pos: -9.5,-31.5 parent: 2 type: Transform - - uid: 9525 + - uid: 9754 components: - pos: -11.5,-33.5 parent: 2 type: Transform - - uid: 9526 + - uid: 9755 components: - pos: -11.5,-27.5 parent: 2 type: Transform - - uid: 9527 + - uid: 9756 components: - pos: -12.5,-33.5 parent: 2 type: Transform - - uid: 9528 + - uid: 9757 components: - pos: -12.5,-27.5 parent: 2 type: Transform - - uid: 9529 + - uid: 9758 components: - pos: 3.5,-20.5 parent: 2 type: Transform - - uid: 9530 + - uid: 9759 components: - pos: 3.5,-16.5 parent: 2 type: Transform - - uid: 9531 + - uid: 9760 components: - pos: 4.5,17.5 parent: 2 type: Transform - - uid: 9532 + - uid: 9761 components: - pos: 4.5,15.5 parent: 2 type: Transform - - uid: 9533 + - uid: 9762 components: - pos: 4.5,16.5 parent: 2 type: Transform - - uid: 9534 + - uid: 9763 components: - pos: 4.5,14.5 parent: 2 type: Transform - - uid: 9535 + - uid: 9764 components: - pos: 42.5,17.5 parent: 2 type: Transform - - uid: 9536 + - uid: 9765 components: - pos: 4.5,18.5 parent: 2 type: Transform - - uid: 9537 + - uid: 9766 components: - pos: 7.5,-22.5 parent: 2 type: Transform - - uid: 9538 + - uid: 9767 components: - pos: 8.5,-16.5 parent: 2 type: Transform - - uid: 9539 + - uid: 9768 components: - pos: 7.5,-19.5 parent: 2 type: Transform - - uid: 9540 + - uid: 9769 components: - pos: 9.5,-16.5 parent: 2 type: Transform - - uid: 9541 + - uid: 9770 components: - pos: 6.5,-10.5 parent: 2 type: Transform - - uid: 9542 + - uid: 9771 components: - pos: 9.5,-10.5 parent: 2 type: Transform - - uid: 9543 + - uid: 9772 components: - pos: 12.5,-10.5 parent: 2 type: Transform - - uid: 9544 + - uid: 9773 components: - pos: 12.5,-12.5 parent: 2 type: Transform - - uid: 9545 + - uid: 9774 components: - pos: 13.5,-12.5 parent: 2 type: Transform - - uid: 9546 + - uid: 9775 components: - pos: 14.5,-12.5 parent: 2 type: Transform - - uid: 9547 + - uid: 9776 components: - pos: 15.5,-12.5 parent: 2 type: Transform - - uid: 9548 + - uid: 9777 components: - pos: 16.5,-12.5 parent: 2 type: Transform - - uid: 9549 + - uid: 9778 components: - pos: 6.5,-13.5 parent: 2 type: Transform - - uid: 9550 + - uid: 9779 components: - pos: 9.5,-13.5 parent: 2 type: Transform - - uid: 9551 + - uid: 9780 components: - pos: 7.5,-16.5 parent: 2 type: Transform - - uid: 9552 + - uid: 9781 components: - pos: 6.5,-16.5 parent: 2 type: Transform - - uid: 9553 + - uid: 9782 components: - pos: 9.5,-24.5 parent: 2 type: Transform - - uid: 9554 + - uid: 9783 components: - pos: 8.5,-22.5 parent: 2 type: Transform - - uid: 9555 + - uid: 9784 components: - pos: 9.5,-22.5 parent: 2 type: Transform - - uid: 9556 + - uid: 9785 components: - pos: 11.5,-26.5 parent: 2 type: Transform - - uid: 9557 + - uid: 9786 components: - pos: 12.5,-26.5 parent: 2 type: Transform - - uid: 9558 + - uid: 9787 components: - pos: 20.5,-24.5 parent: 2 type: Transform - - uid: 9559 + - uid: 9788 components: - pos: 22.5,-10.5 parent: 2 type: Transform - - uid: 9560 + - uid: 9789 components: - pos: 23.5,-11.5 parent: 2 type: Transform - - uid: 9561 + - uid: 9790 components: - pos: 23.5,-13.5 parent: 2 type: Transform - - uid: 9562 + - uid: 9791 components: - pos: 25.5,-14.5 parent: 2 type: Transform - - uid: 9563 + - uid: 9792 components: - pos: 7.5,-23.5 parent: 2 type: Transform - - uid: 9564 + - uid: 9793 components: - pos: 21.5,-10.5 parent: 2 type: Transform - - uid: 9565 + - uid: 9794 components: - pos: 23.5,-12.5 parent: 2 type: Transform - - uid: 9566 + - uid: 9795 components: - pos: 21.5,-12.5 parent: 2 type: Transform - - uid: 9567 + - uid: 9796 components: - pos: 28.5,-8.5 parent: 2 type: Transform - - uid: 9568 + - uid: 9797 components: - pos: 20.5,-12.5 parent: 2 type: Transform - - uid: 9569 + - uid: 9798 components: - pos: 12.5,-27.5 parent: 2 type: Transform - - uid: 9570 + - uid: 9799 components: - pos: 16.5,-25.5 parent: 2 type: Transform - - uid: 9571 + - uid: 9800 components: - pos: 16.5,-24.5 parent: 2 type: Transform - - uid: 9572 + - uid: 9801 components: - pos: 16.5,-23.5 parent: 2 type: Transform - - uid: 9573 + - uid: 9802 components: - pos: 16.5,-22.5 parent: 2 type: Transform - - uid: 9574 + - uid: 9803 components: - pos: 16.5,-21.5 parent: 2 type: Transform - - uid: 9575 + - uid: 9804 components: - pos: 16.5,-20.5 parent: 2 type: Transform - - uid: 9576 + - uid: 9805 components: - pos: 16.5,-15.5 parent: 2 type: Transform - - uid: 9577 + - uid: 9806 components: - pos: 16.5,-14.5 parent: 2 type: Transform - - uid: 9578 + - uid: 9807 components: - pos: 9.5,-23.5 parent: 2 type: Transform - - uid: 9579 + - uid: 9808 components: - pos: 23.5,-10.5 parent: 2 type: Transform - - uid: 9580 + - uid: 9809 components: - pos: 25.5,-12.5 parent: 2 type: Transform - - uid: 9581 + - uid: 9810 components: - pos: 13.5,-23.5 parent: 2 type: Transform - - uid: 9582 + - uid: 9811 components: - pos: 9.5,-26.5 parent: 2 type: Transform - - uid: 9583 + - uid: 9812 components: - pos: 13.5,-20.5 parent: 2 type: Transform - - uid: 9584 + - uid: 9813 components: - pos: 25.5,-13.5 parent: 2 type: Transform - - uid: 9585 + - uid: 9814 components: - pos: 15.5,-20.5 parent: 2 type: Transform - - uid: 9586 + - uid: 9815 components: - pos: 24.5,-12.5 parent: 2 type: Transform - - uid: 9587 + - uid: 9816 components: - pos: 12.5,-14.5 parent: 2 type: Transform - - uid: 9588 + - uid: 9817 components: - pos: 12.5,-15.5 parent: 2 type: Transform - - uid: 9589 + - uid: 9818 components: - pos: 13.5,-15.5 parent: 2 type: Transform - - uid: 9590 + - uid: 9819 components: - pos: 14.5,-15.5 parent: 2 type: Transform - - uid: 9591 + - uid: 9820 components: - pos: 15.5,-15.5 parent: 2 type: Transform - - uid: 9592 + - uid: 9821 components: - pos: 9.5,-14.5 parent: 2 type: Transform - - uid: 9593 + - uid: 9822 components: - pos: 22.5,-22.5 parent: 2 type: Transform - - uid: 9594 + - uid: 9823 components: - pos: 21.5,-21.5 parent: 2 type: Transform - - uid: 9595 + - uid: 9824 components: - pos: 18.5,-8.5 parent: 2 type: Transform - - uid: 9596 + - uid: 9825 components: - pos: 15.5,-8.5 parent: 2 type: Transform - - uid: 9597 + - uid: 9826 components: - pos: 20.5,-13.5 parent: 2 type: Transform - - uid: 9598 + - uid: 9827 components: - pos: 17.5,-11.5 parent: 2 type: Transform - - uid: 9599 + - uid: 9828 components: - pos: 18.5,-11.5 parent: 2 type: Transform - - uid: 9600 + - uid: 9829 components: - pos: 21.5,-17.5 parent: 2 type: Transform - - uid: 9601 + - uid: 9830 components: - pos: 20.5,-17.5 parent: 2 type: Transform - - uid: 9602 + - uid: 9831 components: - pos: 21.5,-13.5 parent: 2 type: Transform - - uid: 9603 + - uid: 9832 components: - pos: 24.5,-18.5 parent: 2 type: Transform - - uid: 9604 + - uid: 9833 components: - pos: 26.5,-18.5 parent: 2 type: Transform - - uid: 9605 + - uid: 9834 components: - pos: 27.5,-19.5 parent: 2 type: Transform - - uid: 9606 + - uid: 9835 components: - pos: 18.5,-22.5 parent: 2 type: Transform - - uid: 9607 + - uid: 9836 components: - pos: 18.5,-21.5 parent: 2 type: Transform - - uid: 9608 + - uid: 9837 components: - pos: 17.5,-17.5 parent: 2 type: Transform - - uid: 9609 + - uid: 9838 components: - pos: 12.5,-28.5 parent: 2 type: Transform - - uid: 9610 + - uid: 9839 components: - pos: 22.5,-18.5 parent: 2 type: Transform - - uid: 9611 + - uid: 9840 components: - pos: 19.5,-12.5 parent: 2 type: Transform - - uid: 9612 + - uid: 9841 components: - pos: 18.5,-12.5 parent: 2 type: Transform - - uid: 9613 + - uid: 9842 components: - pos: 17.5,-12.5 parent: 2 type: Transform - - uid: 9614 + - uid: 9843 components: - pos: -15.5,35.5 parent: 2 type: Transform - - uid: 9615 + - uid: 9844 components: - pos: 21.5,-18.5 parent: 2 type: Transform - - uid: 9616 + - uid: 9845 components: - pos: -18.5,26.5 parent: 2 type: Transform - - uid: 9617 + - uid: 9846 components: - pos: -20.5,31.5 parent: 2 type: Transform - - uid: 9618 + - uid: 9847 components: - pos: 26.5,-23.5 parent: 2 type: Transform - - uid: 9619 + - uid: 9848 components: - pos: 23.5,-18.5 parent: 2 type: Transform - - uid: 9620 + - uid: 9849 components: - pos: 25.5,-18.5 parent: 2 type: Transform - - uid: 9621 + - uid: 9850 components: - pos: 27.5,-18.5 parent: 2 type: Transform - - uid: 9622 + - uid: 9851 components: - pos: 17.5,-21.5 parent: 2 type: Transform - - uid: 9623 + - uid: 9852 components: - pos: 22.5,-21.5 parent: 2 type: Transform - - uid: 9624 + - uid: 9853 components: - pos: 22.5,-23.5 parent: 2 type: Transform - - uid: 9625 + - uid: 9854 components: - pos: 6.5,20.5 parent: 2 type: Transform - - uid: 9626 + - uid: 9855 components: - pos: -11.5,47.5 parent: 2 type: Transform - - uid: 9627 + - uid: 9856 components: - pos: -3.5,37.5 parent: 2 type: Transform - - uid: 9628 + - uid: 9857 components: - pos: -3.5,46.5 parent: 2 type: Transform - - uid: 9629 + - uid: 9858 components: - pos: 1.5,39.5 parent: 2 type: Transform - - uid: 9630 + - uid: 9859 components: - pos: 27.5,-22.5 parent: 2 type: Transform - - uid: 9631 + - uid: 9860 components: - pos: 22.5,-24.5 parent: 2 type: Transform - - uid: 9632 + - uid: 9861 components: - pos: 23.5,-24.5 parent: 2 type: Transform - - uid: 9633 + - uid: 9862 components: - pos: 24.5,-24.5 parent: 2 type: Transform - - uid: 9634 + - uid: 9863 components: - pos: 25.5,-24.5 parent: 2 type: Transform - - uid: 9635 + - uid: 9864 components: - pos: 26.5,-24.5 parent: 2 type: Transform - - uid: 9636 + - uid: 9865 components: - pos: -11.5,37.5 parent: 2 type: Transform - - uid: 9637 + - uid: 9866 components: - pos: 23.5,-22.5 parent: 2 type: Transform - - uid: 9638 + - uid: 9867 components: - pos: 25.5,-22.5 parent: 2 type: Transform - - uid: 9639 + - uid: 9868 components: - pos: 26.5,-22.5 parent: 2 type: Transform - - uid: 9640 + - uid: 9869 components: - pos: 27.5,-21.5 parent: 2 type: Transform - - uid: 9641 + - uid: 9870 components: - pos: 21.5,-19.5 parent: 2 type: Transform - - uid: 9642 + - uid: 9871 components: - pos: -12.5,22.5 parent: 2 type: Transform - - uid: 9643 + - uid: 9872 components: - pos: -12.5,23.5 parent: 2 type: Transform - - uid: 9644 + - uid: 9873 components: - pos: -12.5,24.5 parent: 2 type: Transform - - uid: 9645 + - uid: 9874 components: - pos: -12.5,25.5 parent: 2 type: Transform - - uid: 9646 + - uid: 9875 components: - pos: -13.5,25.5 parent: 2 type: Transform - - uid: 9647 + - uid: 9876 components: - pos: 8.5,27.5 parent: 2 type: Transform - - uid: 9648 + - uid: 9877 components: - pos: -13.5,27.5 parent: 2 type: Transform - - uid: 9649 + - uid: 9878 components: - pos: -13.5,28.5 parent: 2 type: Transform - - uid: 9650 + - uid: 9879 components: - pos: -13.5,29.5 parent: 2 type: Transform - - uid: 9651 + - uid: 9880 components: - pos: -11.5,21.5 parent: 2 type: Transform - - uid: 9652 + - uid: 9881 components: - pos: -14.5,29.5 parent: 2 type: Transform - - uid: 9653 + - uid: 9882 components: - pos: -12.5,21.5 parent: 2 type: Transform - - uid: 9654 + - uid: 9883 components: - pos: -11.5,36.5 parent: 2 type: Transform - - uid: 9655 + - uid: 9884 components: - pos: 19.5,19.5 parent: 2 type: Transform - - uid: 9656 + - uid: 9885 components: - pos: -11.5,42.5 parent: 2 type: Transform - - uid: 9657 + - uid: 9886 components: - pos: -20.5,26.5 parent: 2 type: Transform - - uid: 9658 + - uid: 9887 components: - pos: -11.5,35.5 parent: 2 type: Transform - - uid: 9659 + - uid: 9888 components: - pos: -4.5,47.5 parent: 2 type: Transform - - uid: 9660 + - uid: 9889 components: - pos: 6.5,26.5 parent: 2 type: Transform - - uid: 9661 + - uid: 9890 components: - pos: 6.5,27.5 parent: 2 type: Transform - - uid: 9662 + - uid: 9891 components: - pos: -11.5,38.5 parent: 2 type: Transform - - uid: 9663 + - uid: 9892 components: - pos: -11.5,33.5 parent: 2 type: Transform - - uid: 9664 + - uid: 9893 components: - pos: -10.5,48.5 parent: 2 type: Transform - - uid: 9665 + - uid: 9894 components: - pos: 29.5,40.5 parent: 2 type: Transform - - uid: 9666 + - uid: 9895 components: - pos: -11.5,43.5 parent: 2 type: Transform - - uid: 9667 + - uid: 9896 components: - pos: 32.5,9.5 parent: 2 type: Transform - - uid: 9668 + - uid: 9897 components: - pos: 30.5,9.5 parent: 2 type: Transform - - uid: 9669 + - uid: 9898 components: - pos: 31.5,9.5 parent: 2 type: Transform - - uid: 9670 + - uid: 9899 components: - pos: -15.5,26.5 parent: 2 type: Transform - - uid: 9671 + - uid: 9900 components: - pos: 9.5,15.5 parent: 2 type: Transform - - uid: 9672 + - uid: 9901 components: - pos: 9.5,14.5 parent: 2 type: Transform - - uid: 9673 + - uid: 9902 components: - pos: 8.5,18.5 parent: 2 type: Transform - - uid: 9674 + - uid: 9903 components: - pos: 17.5,11.5 parent: 2 type: Transform - - uid: 9675 + - uid: 9904 components: - pos: 16.5,11.5 parent: 2 type: Transform - - uid: 9676 + - uid: 9905 components: - pos: 9.5,18.5 parent: 2 type: Transform - - uid: 9677 + - uid: 9906 components: - pos: 27.5,21.5 parent: 2 type: Transform - - uid: 9678 + - uid: 9907 components: - pos: 17.5,15.5 parent: 2 type: Transform - - uid: 9679 + - uid: 9908 components: - pos: -3.5,-11.5 parent: 2 type: Transform - - uid: 9680 + - uid: 9909 components: - pos: -3.5,-10.5 parent: 2 type: Transform - - uid: 9681 + - uid: 9910 components: - pos: -4.5,-10.5 parent: 2 type: Transform - - uid: 9682 + - uid: 9911 components: - pos: -5.5,-10.5 parent: 2 type: Transform - - uid: 9683 + - uid: 9912 components: - pos: -5.5,-11.5 parent: 2 type: Transform - - uid: 9684 + - uid: 9913 components: - pos: -5.5,-12.5 parent: 2 type: Transform - - uid: 9685 + - uid: 9914 components: - pos: -5.5,-13.5 parent: 2 type: Transform - - uid: 9686 + - uid: 9915 components: - pos: -3.5,-13.5 parent: 2 type: Transform - - uid: 9687 + - uid: 9916 components: - pos: -3.5,-12.5 parent: 2 type: Transform - - uid: 9688 + - uid: 9917 components: - pos: 8.5,22.5 parent: 2 type: Transform - - uid: 9689 + - uid: 9918 components: - pos: -33.5,-1.5 parent: 2 type: Transform - - uid: 9690 + - uid: 9919 components: - pos: 13.5,-30.5 parent: 2 type: Transform - - uid: 9691 + - uid: 9920 components: - pos: 20.5,-29.5 parent: 2 type: Transform - - uid: 9692 + - uid: 9921 components: - pos: 5.5,18.5 parent: 2 type: Transform - - uid: 9693 + - uid: 9922 components: - pos: 15.5,11.5 parent: 2 type: Transform - - uid: 9694 + - uid: 9923 components: - pos: 14.5,11.5 parent: 2 type: Transform - - uid: 9695 + - uid: 9924 components: - pos: -28.5,2.5 parent: 2 type: Transform - - uid: 9696 + - uid: 9925 components: - pos: -15.5,30.5 parent: 2 type: Transform - - uid: 9697 + - uid: 9926 components: - pos: 28.5,27.5 parent: 2 type: Transform - - uid: 9698 + - uid: 9927 components: - pos: 27.5,40.5 parent: 2 type: Transform - - uid: 9699 + - uid: 9928 components: - pos: 6.5,19.5 parent: 2 type: Transform - - uid: 9700 + - uid: 9929 components: - pos: 6.5,25.5 parent: 2 type: Transform - - uid: 9701 + - uid: 9930 components: - pos: 6.5,23.5 parent: 2 type: Transform - - uid: 9702 + - uid: 9931 components: - pos: 6.5,22.5 parent: 2 type: Transform - - uid: 9703 + - uid: 9932 components: - pos: 13.5,26.5 parent: 2 type: Transform - - uid: 9704 + - uid: 9933 components: - pos: 11.5,22.5 parent: 2 type: Transform - - uid: 9705 + - uid: 9934 components: - pos: 29.5,38.5 parent: 2 type: Transform - - uid: 9706 + - uid: 9935 components: - pos: -15.5,27.5 parent: 2 type: Transform - - uid: 9707 + - uid: 9936 components: - pos: 26.5,37.5 parent: 2 type: Transform - - uid: 9708 + - uid: 9937 components: - pos: 12.5,26.5 parent: 2 type: Transform - - uid: 9709 + - uid: 9938 components: - pos: -30.5,2.5 parent: 2 type: Transform - - uid: 9710 + - uid: 9939 components: - pos: 18.5,-24.5 parent: 2 type: Transform - - uid: 9711 + - uid: 9940 components: - pos: -31.5,0.5 parent: 2 type: Transform - - uid: 9712 + - uid: 9941 components: - pos: -31.5,-7.5 parent: 2 type: Transform - - uid: 9713 + - uid: 9942 components: - pos: 26.5,-8.5 parent: 2 type: Transform - - uid: 9714 + - uid: 9943 components: - pos: 6.5,21.5 parent: 2 type: Transform - - uid: 9715 + - uid: 9944 components: - pos: 26.5,40.5 parent: 2 type: Transform - - uid: 9716 + - uid: 9945 components: - pos: 26.5,38.5 parent: 2 type: Transform - - uid: 9717 + - uid: 9946 components: - pos: 12.5,22.5 parent: 2 type: Transform - - uid: 9718 + - uid: 9947 components: - pos: 26.5,39.5 parent: 2 type: Transform - - uid: 9719 + - uid: 9948 components: - pos: 20.5,-30.5 parent: 2 type: Transform - - uid: 9720 + - uid: 9949 components: - pos: -31.5,-5.5 parent: 2 type: Transform - - uid: 9721 + - uid: 9950 components: - pos: -41.5,-5.5 parent: 2 type: Transform - - uid: 9722 + - uid: 9951 components: - pos: 20.5,-28.5 parent: 2 type: Transform - - uid: 9723 + - uid: 9952 components: - pos: 25.5,19.5 parent: 2 type: Transform - - uid: 9724 + - uid: 9953 components: - pos: 26.5,4.5 parent: 2 type: Transform - - uid: 9725 + - uid: 9954 components: - pos: 2.5,31.5 parent: 2 type: Transform - - uid: 9726 + - uid: 9955 components: - pos: 6.5,-9.5 parent: 2 type: Transform - - uid: 9727 + - uid: 9956 components: - pos: -3.5,41.5 parent: 2 type: Transform - - uid: 9728 + - uid: 9957 components: - pos: -11.5,45.5 parent: 2 type: Transform - - uid: 9729 + - uid: 9958 components: - pos: -3.5,43.5 parent: 2 type: Transform - - uid: 9730 + - uid: 9959 components: - pos: -3.5,44.5 parent: 2 type: Transform - - uid: 9731 + - uid: 9960 components: - pos: -10.5,47.5 parent: 2 type: Transform - - uid: 9732 + - uid: 9961 components: - pos: -11.5,46.5 parent: 2 type: Transform - - uid: 9733 + - uid: 9962 components: - pos: -32.5,23.5 parent: 2 type: Transform - - uid: 9734 + - uid: 9963 components: - pos: 18.5,15.5 parent: 2 type: Transform - - uid: 9735 + - uid: 9964 components: - pos: -29.5,3.5 parent: 2 type: Transform - - uid: 9736 + - uid: 9965 components: - pos: 16.5,34.5 parent: 2 type: Transform - - uid: 9737 + - uid: 9966 components: - pos: -28.5,31.5 parent: 2 type: Transform - - uid: 9738 + - uid: 9967 components: - pos: 26.5,36.5 parent: 2 type: Transform - - uid: 9739 + - uid: 9968 components: - pos: 20.5,40.5 parent: 2 type: Transform - - uid: 9740 + - uid: 9969 components: - pos: 21.5,40.5 parent: 2 type: Transform - - uid: 9741 + - uid: 9970 components: - pos: 22.5,40.5 parent: 2 type: Transform - - uid: 9742 + - uid: 9971 + components: + - pos: 23.5,40.5 + parent: 2 + type: Transform + - uid: 9972 components: - pos: 24.5,40.5 parent: 2 type: Transform - - uid: 9744 + - uid: 9973 components: - pos: 29.5,39.5 parent: 2 type: Transform - - uid: 9745 + - uid: 9974 components: - pos: -15.5,38.5 parent: 2 type: Transform - - uid: 9746 + - uid: 9975 components: - pos: 29.5,37.5 parent: 2 type: Transform - - uid: 9747 + - uid: 9976 components: - pos: 29.5,36.5 parent: 2 type: Transform - - uid: 9748 + - uid: 9977 components: - pos: 28.5,40.5 parent: 2 type: Transform - - uid: 9749 + - uid: 9978 components: - pos: 24.5,38.5 parent: 2 type: Transform - - uid: 9750 + - uid: 9979 components: - pos: 24.5,37.5 parent: 2 type: Transform - - uid: 9751 + - uid: 9980 components: - pos: 24.5,36.5 parent: 2 type: Transform - - uid: 9752 + - uid: 9981 components: - pos: 22.5,38.5 parent: 2 type: Transform - - uid: 9753 + - uid: 9982 components: - pos: 22.5,37.5 parent: 2 type: Transform - - uid: 9754 + - uid: 9983 components: - pos: 22.5,36.5 parent: 2 type: Transform - - uid: 9755 + - uid: 9984 components: - pos: 24.5,39.5 parent: 2 type: Transform - - uid: 9756 + - uid: 9985 components: - pos: 22.5,39.5 parent: 2 type: Transform - - uid: 9757 + - uid: 9986 components: - pos: 20.5,36.5 parent: 2 type: Transform - - uid: 9758 + - uid: 9987 components: - pos: 20.5,37.5 parent: 2 type: Transform - - uid: 9759 + - uid: 9988 components: - pos: 20.5,38.5 parent: 2 type: Transform - - uid: 9760 + - uid: 9989 components: - pos: 20.5,39.5 parent: 2 type: Transform - - uid: 9761 + - uid: 9990 components: - pos: -31.5,-1.5 parent: 2 type: Transform - - uid: 9762 + - uid: 9991 components: - pos: 30.5,11.5 parent: 2 type: Transform - - uid: 9763 + - uid: 9992 components: - pos: 27.5,11.5 parent: 2 type: Transform - - uid: 9764 + - uid: 9993 components: - pos: 25.5,11.5 parent: 2 type: Transform - - uid: 9765 + - uid: 9994 components: - pos: -31.5,2.5 parent: 2 type: Transform - - uid: 9766 + - uid: 9995 components: - pos: 27.5,27.5 parent: 2 type: Transform - - uid: 9767 + - uid: 9996 components: - pos: 26.5,27.5 parent: 2 type: Transform - - uid: 9768 + - uid: 9997 components: - pos: 20.5,24.5 parent: 2 type: Transform - - uid: 9769 + - uid: 9998 components: - pos: 19.5,24.5 parent: 2 type: Transform - - uid: 9770 + - uid: 9999 components: - pos: 18.5,24.5 parent: 2 type: Transform - - uid: 9771 + - uid: 10000 components: - pos: 18.5,23.5 parent: 2 type: Transform - - uid: 9772 + - uid: 10001 components: - pos: 18.5,22.5 parent: 2 type: Transform - - uid: 9773 + - uid: 10002 components: - pos: 18.5,34.5 parent: 2 type: Transform - - uid: 9774 + - uid: 10003 components: - pos: -26.5,-26.5 parent: 2 type: Transform - - uid: 9775 + - uid: 10004 components: - pos: -15.5,28.5 parent: 2 type: Transform - - uid: 9776 + - uid: 10005 components: - pos: -32.5,22.5 parent: 2 type: Transform - - uid: 9777 + - uid: 10006 components: - pos: 10.5,-9.5 parent: 2 type: Transform - - uid: 9778 + - uid: 10007 components: - pos: 12.5,27.5 parent: 2 type: Transform - - uid: 9779 + - uid: 10008 components: - pos: 11.5,27.5 parent: 2 type: Transform - - uid: 9780 + - uid: 10009 components: - pos: 10.5,27.5 parent: 2 type: Transform - - uid: 9781 + - uid: 10010 components: - pos: 9.5,22.5 parent: 2 type: Transform - - uid: 9782 + - uid: 10011 components: - pos: 9.5,-9.5 parent: 2 type: Transform - - uid: 9783 + - uid: 10012 components: - pos: -21.5,-9.5 parent: 2 type: Transform - - uid: 9784 + - uid: 10013 components: - pos: -14.5,-1.5 parent: 2 type: Transform - - uid: 9785 + - uid: 10014 components: - pos: -14.5,-5.5 parent: 2 type: Transform - - uid: 9786 + - uid: 10015 components: - pos: -29.5,-9.5 parent: 2 type: Transform - - uid: 9787 + - uid: 10016 components: - pos: -29.5,2.5 parent: 2 type: Transform - - uid: 9788 + - uid: 10017 components: - pos: -26.5,-27.5 parent: 2 type: Transform - - uid: 9789 + - uid: 10018 components: - pos: 12.5,-9.5 parent: 2 type: Transform - - uid: 9790 + - uid: 10019 components: - pos: -30.5,-22.5 parent: 2 type: Transform - - uid: 9791 + - uid: 10020 components: - pos: 2.5,38.5 parent: 2 type: Transform - - uid: 9792 + - uid: 10021 components: - pos: -4.5,37.5 parent: 2 type: Transform - - uid: 9793 + - uid: 10022 components: - pos: -16.5,26.5 parent: 2 type: Transform - - uid: 9794 + - uid: 10023 components: - pos: -22.5,26.5 parent: 2 type: Transform - - uid: 9795 + - uid: 10024 components: - pos: -21.5,29.5 parent: 2 type: Transform - - uid: 9796 + - uid: 10025 components: - pos: 21.5,23.5 parent: 2 type: Transform - - uid: 9797 + - uid: 10026 components: - pos: -25.5,29.5 parent: 2 type: Transform - - uid: 9798 + - uid: 10027 components: - pos: -25.5,26.5 parent: 2 type: Transform - - uid: 9799 + - uid: 10028 components: - pos: -25.5,27.5 parent: 2 type: Transform - - uid: 9800 + - uid: 10029 components: - pos: 24.5,3.5 parent: 2 type: Transform - - uid: 9801 + - uid: 10030 components: - pos: 33.5,19.5 parent: 2 type: Transform - - uid: 9802 + - uid: 10031 components: - pos: 2.5,32.5 parent: 2 type: Transform - - uid: 9803 + - uid: 10032 components: - pos: 10.5,-26.5 parent: 2 type: Transform - - uid: 9804 + - uid: 10033 components: - pos: 2.5,33.5 parent: 2 type: Transform - - uid: 9805 + - uid: 10034 components: - pos: -19.5,27.5 parent: 2 type: Transform - - uid: 9806 + - uid: 10035 components: - pos: -19.5,30.5 parent: 2 type: Transform - - uid: 9807 + - uid: 10036 components: - pos: -22.5,31.5 parent: 2 type: Transform - - uid: 9808 + - uid: 10037 components: - pos: -16.5,37.5 parent: 2 type: Transform - - uid: 9809 + - uid: 10038 components: - pos: -22.5,30.5 parent: 2 type: Transform - - uid: 9810 + - uid: 10039 components: - pos: -11.5,34.5 parent: 2 type: Transform - - uid: 9811 + - uid: 10040 components: - pos: -13.5,26.5 parent: 2 type: Transform - - uid: 9812 + - uid: 10041 components: - pos: -2.5,41.5 parent: 2 type: Transform - - uid: 9813 + - uid: 10042 components: - pos: -4.5,41.5 parent: 2 type: Transform - - uid: 9814 + - uid: 10043 components: - pos: 36.5,18.5 parent: 2 type: Transform - - uid: 9815 + - uid: 10044 components: - pos: 35.5,18.5 parent: 2 type: Transform - - uid: 9816 + - uid: 10045 components: - pos: -15.5,29.5 parent: 2 type: Transform - - uid: 9817 + - uid: 10046 components: - pos: 24.5,-14.5 parent: 2 type: Transform - - uid: 9818 + - uid: 10047 components: - pos: 23.5,-14.5 parent: 2 type: Transform - - uid: 9819 + - uid: 10048 components: - pos: 22.5,-13.5 parent: 2 type: Transform - - uid: 9820 + - uid: 10049 components: - pos: -27.5,2.5 parent: 2 type: Transform - - uid: 9821 + - uid: 10050 components: - pos: 26.5,11.5 parent: 2 type: Transform - - uid: 9822 + - uid: 10051 components: - pos: 20.5,-26.5 parent: 2 type: Transform - - uid: 9823 + - uid: 10052 components: - pos: 17.5,34.5 parent: 2 type: Transform - - uid: 9824 + - uid: 10053 components: - pos: 13.5,36.5 parent: 2 type: Transform - - uid: 9825 + - uid: 10054 components: - pos: 13.5,37.5 parent: 2 type: Transform - - uid: 9826 + - uid: 10055 components: - pos: -26.5,-25.5 parent: 2 type: Transform - - uid: 9827 + - uid: 10056 components: - pos: 13.5,22.5 parent: 2 type: Transform - - uid: 9828 + - uid: 10057 components: - pos: -22.5,29.5 parent: 2 type: Transform - - uid: 9829 + - uid: 10058 components: - pos: -19.5,28.5 parent: 2 type: Transform - - uid: 9830 + - uid: 10059 components: - pos: -24.5,23.5 parent: 2 type: Transform - - uid: 9831 + - uid: 10060 components: - pos: -19.5,26.5 parent: 2 type: Transform - - uid: 9832 + - uid: 10061 components: - pos: 6.5,18.5 parent: 2 type: Transform - - uid: 9833 + - uid: 10062 components: - pos: 15.5,-4.5 parent: 2 type: Transform - - uid: 9834 + - uid: 10063 components: - pos: 15.5,-5.5 parent: 2 type: Transform - - uid: 9835 + - uid: 10064 components: - pos: 13.5,25.5 parent: 2 type: Transform - - uid: 9836 + - uid: 10065 components: - pos: 2.5,37.5 parent: 2 type: Transform - - uid: 9837 + - uid: 10066 components: - pos: 25.5,20.5 parent: 2 type: Transform - - uid: 9838 + - uid: 10067 components: - pos: 17.5,3.5 parent: 2 type: Transform - - uid: 9839 + - uid: 10068 components: - pos: 33.5,11.5 parent: 2 type: Transform - - uid: 9840 + - uid: 10069 components: - pos: 25.5,3.5 parent: 2 type: Transform - - uid: 9841 + - uid: 10070 components: - pos: 20.5,25.5 parent: 2 type: Transform - - uid: 9842 + - uid: 10071 components: - pos: 23.5,3.5 parent: 2 type: Transform - - uid: 9843 + - uid: 10072 components: - pos: 32.5,10.5 parent: 2 type: Transform - - uid: 9844 + - uid: 10073 components: - pos: 27.5,25.5 parent: 2 type: Transform - - uid: 9845 + - uid: 10074 components: - pos: 34.5,15.5 parent: 2 type: Transform - - uid: 9846 + - uid: 10075 components: - pos: 34.5,13.5 parent: 2 type: Transform - - uid: 9847 + - uid: 10076 components: - pos: 16.5,3.5 parent: 2 type: Transform - - uid: 9848 + - uid: 10077 components: - pos: 34.5,11.5 parent: 2 type: Transform - - uid: 9849 + - uid: 10078 components: - pos: 33.5,10.5 parent: 2 type: Transform - - uid: 9850 + - uid: 10079 components: - pos: 34.5,18.5 parent: 2 type: Transform - - uid: 9851 + - uid: 10080 components: - pos: 29.5,-3.5 parent: 2 type: Transform - - uid: 9852 + - uid: 10081 components: - pos: 27.5,26.5 parent: 2 type: Transform - - uid: 9853 + - uid: 10082 components: - pos: 26.5,20.5 parent: 2 type: Transform - - uid: 9854 + - uid: 10083 components: - pos: 27.5,20.5 parent: 2 type: Transform - - uid: 9855 + - uid: 10084 components: - pos: 19.5,-13.5 parent: 2 type: Transform - - uid: 9856 + - uid: 10085 components: - pos: 23.5,27.5 parent: 2 type: Transform - - uid: 9857 + - uid: 10086 components: - pos: -4.5,-30.5 parent: 2 type: Transform - - uid: 9858 + - uid: 10087 components: - pos: 3.5,-30.5 parent: 2 type: Transform - - uid: 9859 + - uid: 10088 components: - pos: 3.5,-29.5 parent: 2 type: Transform - - uid: 9860 + - uid: 10089 components: - pos: -4.5,-29.5 parent: 2 type: Transform - - uid: 9861 + - uid: 10090 components: - pos: 34.5,12.5 parent: 2 type: Transform - - uid: 9862 + - uid: 10091 components: - pos: 34.5,14.5 parent: 2 type: Transform - - uid: 9863 + - uid: 10092 components: - pos: 33.5,18.5 parent: 2 type: Transform - - uid: 9864 + - uid: 10093 components: - pos: -17.5,37.5 parent: 2 type: Transform - - uid: 9865 + - uid: 10094 components: - pos: 20.5,26.5 parent: 2 type: Transform - - uid: 9866 + - uid: 10095 components: - pos: -29.5,15.5 parent: 2 type: Transform - - uid: 9867 + - uid: 10096 components: - pos: 11.5,-9.5 parent: 2 type: Transform - - uid: 9868 + - uid: 10097 components: - pos: 21.5,15.5 parent: 2 type: Transform - - uid: 9869 + - uid: 10098 components: - pos: 22.5,15.5 parent: 2 type: Transform - - uid: 9870 + - uid: 10099 components: - pos: 22.5,14.5 parent: 2 type: Transform - - uid: 9871 + - uid: 10100 components: - pos: 22.5,11.5 parent: 2 type: Transform - - uid: 9872 + - uid: 10101 components: - pos: 21.5,11.5 parent: 2 type: Transform - - uid: 9873 + - uid: 10102 components: - pos: 18.5,11.5 parent: 2 type: Transform - - uid: 9874 + - uid: 10103 components: - pos: 19.5,11.5 parent: 2 type: Transform - - uid: 9875 + - uid: 10104 components: - pos: 26.5,-7.5 parent: 2 type: Transform - - uid: 9876 + - uid: 10105 components: - pos: 21.5,-4.5 parent: 2 type: Transform - - uid: 9877 + - uid: 10106 components: - pos: 29.5,15.5 parent: 2 type: Transform - - uid: 9878 + - uid: 10107 components: - pos: 30.5,14.5 parent: 2 type: Transform - - uid: 9879 + - uid: 10108 components: - pos: 23.5,11.5 parent: 2 type: Transform - - uid: 9880 + - uid: 10109 components: - pos: 14.5,-3.5 parent: 2 type: Transform - - uid: 9881 + - uid: 10110 components: - pos: 30.5,15.5 parent: 2 type: Transform - - uid: 9882 + - uid: 10111 components: - pos: 28.5,12.5 parent: 2 type: Transform - - uid: 9883 + - uid: 10112 components: - pos: 28.5,11.5 parent: 2 type: Transform - - uid: 9884 + - uid: 10113 components: - pos: 29.5,11.5 parent: 2 type: Transform - - uid: 9885 + - uid: 10114 components: - pos: 1.5,38.5 parent: 2 type: Transform - - uid: 9886 + - uid: 10115 components: - pos: -3.5,42.5 parent: 2 type: Transform - - uid: 9887 + - uid: 10116 components: - pos: 18.5,-13.5 parent: 2 type: Transform - - uid: 9888 + - uid: 10117 components: - pos: 2.5,34.5 parent: 2 type: Transform - - uid: 9889 + - uid: 10118 components: - pos: 1.5,41.5 parent: 2 type: Transform - - uid: 9890 + - uid: 10119 components: - pos: -3.5,38.5 parent: 2 type: Transform - - uid: 9891 + - uid: 10120 components: - pos: 2.5,35.5 parent: 2 type: Transform - - uid: 9892 + - uid: 10121 components: - pos: -29.5,-14.5 parent: 2 type: Transform - - uid: 9893 + - uid: 10122 components: - pos: 20.5,3.5 parent: 2 type: Transform - - uid: 9894 + - uid: 10123 components: - pos: 18.5,19.5 parent: 2 type: Transform - - uid: 9895 + - uid: 10124 components: - pos: 12.5,-30.5 parent: 2 type: Transform - - uid: 9896 + - uid: 10125 components: - pos: 16.5,-11.5 parent: 2 type: Transform - - uid: 9897 + - uid: 10126 components: - pos: 17.5,-8.5 parent: 2 type: Transform - - uid: 9898 + - uid: 10127 components: - pos: 16.5,-8.5 parent: 2 type: Transform - - uid: 9899 + - uid: 10128 components: - pos: -26.5,-9.5 parent: 2 type: Transform - - uid: 9900 + - uid: 10129 components: - pos: 11.5,-23.5 parent: 2 type: Transform - - uid: 9901 + - uid: 10130 components: - pos: 27.5,24.5 parent: 2 type: Transform - - uid: 9902 + - uid: 10131 components: - pos: -25.5,28.5 parent: 2 type: Transform - - uid: 9903 + - uid: 10132 components: - pos: -28.5,-14.5 parent: 2 type: Transform - - uid: 9904 + - uid: 10133 components: - pos: 27.5,22.5 parent: 2 type: Transform - - uid: 9905 + - uid: 10134 components: - pos: 37.5,18.5 parent: 2 type: Transform - - uid: 9906 + - uid: 10135 components: - pos: 16.5,-17.5 parent: 2 type: Transform - - uid: 9907 + - uid: 10136 components: - pos: 39.5,20.5 parent: 2 type: Transform - - uid: 9908 + - uid: 10137 components: - pos: 38.5,20.5 parent: 2 type: Transform - - uid: 9909 + - uid: 10138 components: - pos: 38.5,19.5 parent: 2 type: Transform - - uid: 9910 + - uid: 10139 components: - pos: -11.5,41.5 parent: 2 type: Transform - - uid: 9911 + - uid: 10140 components: - pos: 34.5,17.5 parent: 2 type: Transform - - uid: 9912 + - uid: 10141 components: - pos: 19.5,-8.5 parent: 2 type: Transform - - uid: 9913 + - uid: 10142 components: - pos: -22.5,-24.5 parent: 2 type: Transform - - uid: 9914 + - uid: 10143 components: - pos: 42.5,15.5 parent: 2 type: Transform - - uid: 9915 + - uid: 10144 components: - pos: -30.5,-21.5 parent: 2 type: Transform - - uid: 9916 + - uid: 10145 components: - pos: 25.5,16.5 parent: 2 type: Transform - - uid: 9917 + - uid: 10146 components: - pos: 24.5,16.5 parent: 2 type: Transform - - uid: 9918 + - uid: 10147 components: - pos: 28.5,15.5 parent: 2 type: Transform - - uid: 9919 + - uid: 10148 components: - pos: 13.5,-7.5 parent: 2 type: Transform - - uid: 9920 + - uid: 10149 components: - pos: 27.5,14.5 parent: 2 type: Transform - - uid: 9921 + - uid: 10150 components: - pos: 15.5,-7.5 parent: 2 type: Transform - - uid: 9922 + - uid: 10151 components: - pos: 14.5,-7.5 parent: 2 type: Transform - - uid: 9923 + - uid: 10152 components: - rot: 3.141592653589793 rad pos: 7.5,-9.5 parent: 2 type: Transform - - uid: 9924 + - uid: 10153 components: - pos: 28.5,14.5 parent: 2 type: Transform - - uid: 9925 + - uid: 10154 components: - pos: -19.5,29.5 parent: 2 type: Transform - - uid: 9926 + - uid: 10155 components: - pos: -19.5,31.5 parent: 2 type: Transform - - uid: 9927 + - uid: 10156 components: - pos: 23.5,16.5 parent: 2 type: Transform - - uid: 9928 + - uid: 10157 components: - pos: 15.5,-6.5 parent: 2 type: Transform - - uid: 9929 + - uid: 10158 components: - pos: -24.5,22.5 parent: 2 type: Transform - - uid: 9930 + - uid: 10159 components: - pos: 0.5,38.5 parent: 2 type: Transform - - uid: 9931 + - uid: 10160 components: - pos: -18.5,-17.5 parent: 2 type: Transform - - uid: 9932 + - uid: 10161 components: - pos: -0.5,41.5 parent: 2 type: Transform - - uid: 9933 + - uid: 10162 components: - pos: -28.5,19.5 parent: 2 type: Transform - - uid: 9934 + - uid: 10163 components: - pos: -28.5,23.5 parent: 2 type: Transform - - uid: 9935 + - uid: 10164 components: - pos: -27.5,19.5 parent: 2 type: Transform - - uid: 9936 + - uid: 10165 components: - pos: -28.5,25.5 parent: 2 type: Transform - - uid: 9937 + - uid: 10166 components: - pos: -27.5,15.5 parent: 2 type: Transform - - uid: 9938 + - uid: 10167 components: - pos: -28.5,21.5 parent: 2 type: Transform - - uid: 9939 + - uid: 10168 components: - pos: -21.5,-6.5 parent: 2 type: Transform - - uid: 9940 + - uid: 10169 components: - pos: -37.5,0.5 parent: 2 type: Transform - - uid: 9941 + - uid: 10170 components: - pos: -28.5,33.5 parent: 2 type: Transform - - uid: 9942 + - uid: 10171 components: - pos: -32.5,28.5 parent: 2 type: Transform - - uid: 9943 + - uid: 10172 components: - pos: -30.5,28.5 parent: 2 type: Transform - - uid: 9944 + - uid: 10173 components: - pos: -33.5,28.5 parent: 2 type: Transform - - uid: 9945 + - uid: 10174 components: - pos: -28.5,32.5 parent: 2 type: Transform - - uid: 9946 + - uid: 10175 components: - pos: -34.5,28.5 parent: 2 type: Transform - - uid: 9947 + - uid: 10176 components: - pos: -34.5,24.5 parent: 2 type: Transform - - uid: 9948 + - uid: 10177 components: - pos: -33.5,23.5 parent: 2 type: Transform - - uid: 9949 + - uid: 10178 components: - pos: -34.5,27.5 parent: 2 type: Transform - - uid: 9950 + - uid: 10179 components: - pos: 20.5,27.5 parent: 2 type: Transform - - uid: 9951 + - uid: 10180 components: - pos: 21.5,27.5 parent: 2 type: Transform - - uid: 9952 + - uid: 10181 components: - pos: -5.5,48.5 parent: 2 type: Transform - - uid: 9953 + - uid: 10182 components: - pos: -6.5,48.5 parent: 2 type: Transform - - uid: 9954 + - uid: 10183 components: - pos: -34.5,23.5 parent: 2 type: Transform - - uid: 9955 + - uid: 10184 components: - pos: -10.5,41.5 parent: 2 type: Transform - - uid: 9956 + - uid: 10185 components: - pos: -11.5,44.5 parent: 2 type: Transform - - uid: 9957 + - uid: 10186 components: - pos: -5.5,37.5 parent: 2 type: Transform - - uid: 9958 + - uid: 10187 components: - pos: -25.5,15.5 parent: 2 type: Transform - - uid: 9959 + - uid: 10188 components: - pos: 27.5,23.5 parent: 2 type: Transform - - uid: 9960 + - uid: 10189 components: - pos: 21.5,21.5 parent: 2 type: Transform - - uid: 9961 + - uid: 10190 components: - pos: 21.5,24.5 parent: 2 type: Transform - - uid: 9962 + - uid: 10191 components: - pos: 21.5,22.5 parent: 2 type: Transform - - uid: 9963 + - uid: 10192 components: - pos: -43.5,-1.5 parent: 2 type: Transform - - uid: 9964 + - uid: 10193 components: - pos: -37.5,2.5 parent: 2 type: Transform - - uid: 9965 + - uid: 10194 components: - pos: -41.5,2.5 parent: 2 type: Transform - - uid: 9966 + - uid: 10195 components: - pos: -43.5,0.5 parent: 2 type: Transform - - uid: 9967 + - uid: 10196 components: - pos: -39.5,-1.5 parent: 2 type: Transform - - uid: 9968 + - uid: 10197 components: - pos: -25.5,-10.5 parent: 2 type: Transform - - uid: 9969 + - uid: 10198 components: - pos: -22.5,-10.5 parent: 2 type: Transform - - uid: 9970 + - uid: 10199 components: - pos: -22.5,-25.5 parent: 2 type: Transform - - uid: 9971 + - uid: 10200 components: - pos: -41.5,-1.5 parent: 2 type: Transform - - uid: 9972 + - uid: 10201 components: - pos: -41.5,-7.5 parent: 2 type: Transform - - uid: 9973 + - uid: 10202 components: - pos: -31.5,-9.5 parent: 2 type: Transform - - uid: 9974 + - uid: 10203 components: - pos: -35.5,-5.5 parent: 2 type: Transform - - uid: 9975 + - uid: 10204 components: - pos: -35.5,2.5 parent: 2 type: Transform - - uid: 9976 + - uid: 10205 components: - pos: -16.5,-16.5 parent: 2 type: Transform - - uid: 9977 + - uid: 10206 components: - pos: -30.5,-20.5 parent: 2 type: Transform - - uid: 9978 + - uid: 10207 components: - pos: -30.5,-17.5 parent: 2 type: Transform - - uid: 9979 + - uid: 10208 components: - pos: -30.5,-14.5 parent: 2 type: Transform - - uid: 9980 + - uid: 10209 components: - pos: -30.5,-25.5 parent: 2 type: Transform - - uid: 9981 + - uid: 10210 components: - pos: -21.5,-14.5 parent: 2 type: Transform - - uid: 9982 + - uid: 10211 components: - pos: -25.5,-14.5 parent: 2 type: Transform - - uid: 9983 + - uid: 10212 components: - pos: -22.5,-14.5 parent: 2 type: Transform - - uid: 9984 + - uid: 10213 components: - pos: 4.5,27.5 parent: 2 type: Transform - - uid: 9985 + - uid: 10214 components: - pos: 4.5,29.5 parent: 2 type: Transform - - uid: 9986 + - uid: 10215 components: - pos: 3.5,30.5 parent: 2 type: Transform - - uid: 9987 + - uid: 10216 components: - pos: 4.5,28.5 parent: 2 type: Transform - - uid: 9988 + - uid: 10217 components: - pos: 5.5,27.5 parent: 2 type: Transform - - uid: 9989 + - uid: 10218 components: - pos: -16.5,-17.5 parent: 2 type: Transform - - uid: 9990 + - uid: 10219 components: - pos: -17.5,-17.5 parent: 2 type: Transform - - uid: 9991 + - uid: 10220 components: - pos: -17.5,-22.5 parent: 2 type: Transform - - uid: 9992 + - uid: 10221 components: - pos: -26.5,-29.5 parent: 2 type: Transform - - uid: 9993 + - uid: 10222 components: - pos: -23.5,-29.5 parent: 2 type: Transform - - uid: 9994 + - uid: 10223 components: - pos: -22.5,-28.5 parent: 2 type: Transform - - uid: 9995 + - uid: 10224 components: - pos: -21.5,-27.5 parent: 2 type: Transform - - uid: 9996 + - uid: 10225 components: - pos: -21.5,-28.5 parent: 2 type: Transform - - uid: 9997 + - uid: 10226 components: - pos: -29.5,-29.5 parent: 2 type: Transform - - uid: 9998 + - uid: 10227 components: - pos: -19.5,-25.5 parent: 2 type: Transform - - uid: 9999 + - uid: 10228 components: - pos: -30.5,-28.5 parent: 2 type: Transform - - uid: 10000 + - uid: 10229 components: - pos: -30.5,-27.5 parent: 2 type: Transform - - uid: 10001 + - uid: 10230 components: - pos: -30.5,-26.5 parent: 2 type: Transform - - uid: 10002 + - uid: 10231 components: - pos: 20.5,11.5 parent: 2 type: Transform - - uid: 10003 + - uid: 10232 components: - pos: 35.5,13.5 parent: 2 type: Transform - - uid: 10004 + - uid: 10233 components: - pos: 36.5,13.5 parent: 2 type: Transform - - uid: 10005 + - uid: 10234 components: - pos: 37.5,13.5 parent: 2 type: Transform - - uid: 10006 + - uid: 10235 components: - pos: 38.5,13.5 parent: 2 type: Transform - - uid: 10007 + - uid: 10236 components: - pos: 38.5,14.5 parent: 2 type: Transform - - uid: 10008 + - uid: 10237 components: - pos: 38.5,16.5 parent: 2 type: Transform - - uid: 10009 + - uid: 10238 components: - pos: 38.5,17.5 parent: 2 type: Transform - - uid: 10010 + - uid: 10239 components: - pos: 38.5,18.5 parent: 2 type: Transform - - uid: 10011 + - uid: 10240 components: - pos: 23.5,19.5 parent: 2 type: Transform - - uid: 10012 + - uid: 10241 components: - pos: 24.5,19.5 parent: 2 type: Transform - - uid: 10013 + - uid: 10242 components: - pos: 23.5,18.5 parent: 2 type: Transform - - uid: 10014 + - uid: 10243 components: - pos: 33.5,30.5 parent: 2 type: Transform - - uid: 10015 + - uid: 10244 components: - pos: 21.5,19.5 parent: 2 type: Transform - - uid: 10016 + - uid: 10245 components: - pos: 33.5,27.5 parent: 2 type: Transform - - uid: 10017 + - uid: 10246 components: - pos: 32.5,27.5 parent: 2 type: Transform - - uid: 10018 + - uid: 10247 components: - pos: 31.5,27.5 parent: 2 type: Transform - - uid: 10019 + - uid: 10248 components: - pos: -11.5,40.5 parent: 2 type: Transform - - uid: 10020 + - uid: 10249 components: - pos: -11.5,39.5 parent: 2 type: Transform - - uid: 10021 + - uid: 10250 components: - pos: -9.5,37.5 parent: 2 type: Transform - - uid: 10022 + - uid: 10251 components: - pos: -10.5,37.5 parent: 2 type: Transform - - uid: 10023 + - uid: 10252 components: - pos: -4.5,38.5 parent: 2 type: Transform - - uid: 10024 + - uid: 10253 components: - pos: -1.5,34.5 parent: 2 type: Transform - - uid: 10025 + - uid: 10254 components: - pos: -8.5,48.5 parent: 2 type: Transform - - uid: 10026 + - uid: 10255 components: - pos: -7.5,48.5 parent: 2 type: Transform - - uid: 10027 + - uid: 10256 components: - pos: -9.5,48.5 parent: 2 type: Transform - - uid: 10028 + - uid: 10257 components: - pos: -29.5,23.5 parent: 2 type: Transform - - uid: 10029 + - uid: 10258 components: - pos: -30.5,23.5 parent: 2 type: Transform - - uid: 10030 + - uid: 10259 components: - pos: -30.5,24.5 parent: 2 type: Transform - - uid: 10031 + - uid: 10260 components: - pos: -30.5,25.5 parent: 2 type: Transform - - uid: 10032 + - uid: 10261 components: - pos: -30.5,26.5 parent: 2 type: Transform - - uid: 10033 + - uid: 10262 components: - pos: -30.5,27.5 parent: 2 type: Transform - - uid: 10034 + - uid: 10263 components: - pos: -4.5,48.5 parent: 2 type: Transform - - uid: 10035 + - uid: 10264 components: - pos: 1.5,40.5 parent: 2 type: Transform - - uid: 10036 + - uid: 10265 components: - pos: -10.5,38.5 parent: 2 type: Transform - - uid: 10037 + - uid: 10266 components: - pos: -2.5,38.5 parent: 2 type: Transform - - uid: 10038 + - uid: 10267 components: - pos: -35.5,-1.5 parent: 2 type: Transform - - uid: 10039 + - uid: 10268 components: - pos: 23.5,-27.5 parent: 2 type: Transform - - uid: 10040 + - uid: 10269 components: - pos: 27.5,-27.5 parent: 2 type: Transform - - uid: 10041 + - uid: 10270 components: - pos: 27.5,-28.5 parent: 2 type: Transform - - uid: 10042 + - uid: 10271 components: - pos: 27.5,-29.5 parent: 2 type: Transform - - uid: 10043 + - uid: 10272 components: - pos: 23.5,-31.5 parent: 2 type: Transform - - uid: 10044 + - uid: 10273 components: - pos: 23.5,-30.5 parent: 2 type: Transform - - uid: 10045 + - uid: 10274 components: - pos: 23.5,-29.5 parent: 2 type: Transform - - uid: 10046 + - uid: 10275 components: - pos: 23.5,-28.5 parent: 2 type: Transform - - uid: 10047 + - uid: 10276 components: - pos: 27.5,-30.5 parent: 2 type: Transform - - uid: 10048 + - uid: 10277 components: - pos: 27.5,-31.5 parent: 2 type: Transform - - uid: 10049 + - uid: 10278 components: - pos: 25.5,-27.5 parent: 2 type: Transform - - uid: 10050 + - uid: 10279 components: - pos: 24.5,-27.5 parent: 2 type: Transform - - uid: 10051 + - uid: 10280 components: - pos: -17.5,26.5 parent: 2 type: Transform - - uid: 10052 + - uid: 10281 components: - pos: 2.5,30.5 parent: 2 type: Transform - - uid: 10053 + - uid: 10282 components: - pos: 4.5,30.5 parent: 2 type: Transform - - uid: 10054 + - uid: 10283 components: - pos: -32.5,6.5 parent: 2 type: Transform - - uid: 10055 + - uid: 10284 components: - pos: 34.5,27.5 parent: 2 type: Transform - - uid: 10056 + - uid: 10285 components: - pos: 38.5,27.5 parent: 2 type: Transform - - uid: 10057 + - uid: 10286 components: - pos: 39.5,27.5 parent: 2 type: Transform - - uid: 10058 + - uid: 10287 components: - pos: 39.5,26.5 parent: 2 type: Transform - - uid: 10059 + - uid: 10288 components: - pos: 39.5,22.5 parent: 2 type: Transform - - uid: 10060 + - uid: 10289 components: - pos: 39.5,21.5 parent: 2 type: Transform - - uid: 10061 + - uid: 10290 components: - pos: -35.5,-7.5 parent: 2 type: Transform - - uid: 10062 + - uid: 10291 components: - pos: -3.5,47.5 parent: 2 type: Transform - - uid: 10063 + - uid: 10292 components: - pos: -7.5,41.5 parent: 2 type: Transform - - uid: 10064 + - uid: 10293 components: - pos: -15.5,33.5 parent: 2 type: Transform - - uid: 10065 + - uid: 10294 components: - pos: -15.5,34.5 parent: 2 type: Transform - - uid: 10066 + - uid: 10295 components: - pos: -18.5,37.5 parent: 2 type: Transform - - uid: 10067 + - uid: 10296 components: - pos: -18.5,36.5 parent: 2 type: Transform - - uid: 10068 + - uid: 10297 components: - pos: -18.5,31.5 parent: 2 type: Transform - - uid: 10069 + - uid: 10298 components: - pos: -17.5,31.5 parent: 2 type: Transform - - uid: 10070 + - uid: 10299 components: - pos: -1.5,41.5 parent: 2 type: Transform - - uid: 10071 + - uid: 10300 components: - pos: -3.5,45.5 parent: 2 type: Transform - - uid: 10072 + - uid: 10301 components: - pos: -39.5,0.5 parent: 2 type: Transform - - uid: 10073 + - uid: 10302 components: - pos: 12.5,-23.5 parent: 2 type: Transform - - uid: 10074 + - uid: 10303 components: - pos: 12.5,-24.5 parent: 2 type: Transform - - uid: 10075 + - uid: 10304 components: - pos: 12.5,-25.5 parent: 2 type: Transform - - uid: 10076 + - uid: 10305 components: - pos: -18.5,32.5 parent: 2 type: Transform - - uid: 10077 + - uid: 10306 components: - pos: -3.5,39.5 parent: 2 type: Transform - - uid: 10078 + - uid: 10307 components: - pos: 0.5,41.5 parent: 2 type: Transform - - uid: 10079 + - uid: 10308 components: - pos: -41.5,0.5 parent: 2 type: Transform - - uid: 10080 + - uid: 10309 components: - pos: -37.5,-9.5 parent: 2 type: Transform - - uid: 10081 + - uid: 10310 components: - pos: -28.5,16.5 parent: 2 type: Transform - - uid: 10082 + - uid: 10311 components: - pos: -31.5,21.5 parent: 2 type: Transform - - uid: 10083 + - uid: 10312 components: - pos: -32.5,21.5 parent: 2 type: Transform - - uid: 10084 + - uid: 10313 components: - pos: -37.5,-7.5 parent: 2 type: Transform - - uid: 10085 + - uid: 10314 components: - pos: 30.5,30.5 parent: 2 type: Transform - - uid: 10086 + - uid: 10315 components: - pos: 29.5,34.5 parent: 2 type: Transform - - uid: 10087 + - uid: 10316 components: - pos: 30.5,34.5 parent: 2 type: Transform - - uid: 10088 + - uid: 10317 components: - pos: -35.5,28.5 parent: 2 type: Transform - - uid: 10089 + - uid: 10318 components: - pos: -36.5,28.5 parent: 2 type: Transform - - uid: 10090 + - uid: 10319 components: - pos: -36.5,29.5 parent: 2 type: Transform - - uid: 10091 + - uid: 10320 components: - pos: -36.5,32.5 parent: 2 type: Transform - - uid: 10092 + - uid: 10321 components: - pos: -36.5,35.5 parent: 2 type: Transform - - uid: 10093 + - uid: 10322 components: - pos: -36.5,36.5 parent: 2 type: Transform - - uid: 10094 + - uid: 10323 components: - pos: -35.5,36.5 parent: 2 type: Transform - - uid: 10095 + - uid: 10324 components: - pos: -32.5,36.5 parent: 2 type: Transform - - uid: 10096 + - uid: 10325 components: - pos: -29.5,36.5 parent: 2 type: Transform - - uid: 10097 + - uid: 10326 components: - pos: -28.5,36.5 parent: 2 type: Transform - - uid: 10098 + - uid: 10327 components: - pos: -28.5,35.5 parent: 2 type: Transform - - uid: 10099 + - uid: 10328 components: - pos: -2.5,34.5 parent: 2 type: Transform - - uid: 10100 + - uid: 10329 components: - pos: -3.5,34.5 parent: 2 type: Transform - - uid: 10101 + - uid: 10330 components: - pos: -3.5,35.5 parent: 2 type: Transform - - uid: 10102 + - uid: 10331 components: - pos: -3.5,36.5 parent: 2 type: Transform - - uid: 10103 + - uid: 10332 components: - pos: 1.5,34.5 parent: 2 type: Transform - - uid: 10104 + - uid: 10333 components: - pos: -33.5,2.5 parent: 2 type: Transform - - uid: 10105 + - uid: 10334 components: - pos: -35.5,0.5 parent: 2 type: Transform - - uid: 10106 + - uid: 10335 components: - pos: -43.5,-9.5 parent: 2 type: Transform - - uid: 10107 + - uid: 10336 components: - pos: -33.5,-9.5 parent: 2 type: Transform - - uid: 10108 + - uid: 10337 components: - pos: -29.5,13.5 parent: 2 type: Transform - - uid: 10109 + - uid: 10338 components: - pos: -33.5,-7.5 parent: 2 type: Transform - - uid: 10110 + - uid: 10339 components: - pos: -35.5,-9.5 parent: 2 type: Transform - - uid: 10111 + - uid: 10340 components: - pos: -41.5,-9.5 parent: 2 type: Transform - - uid: 10112 + - uid: 10341 components: - pos: -33.5,-5.5 parent: 2 type: Transform - - uid: 10113 + - uid: 10342 components: - pos: -33.5,0.5 parent: 2 type: Transform - - uid: 10114 + - uid: 10343 components: - pos: 29.5,5.5 parent: 2 type: Transform - - uid: 10115 + - uid: 10344 components: - pos: 29.5,8.5 parent: 2 type: Transform - - uid: 10116 + - uid: 10345 components: - pos: 26.5,-6.5 parent: 2 type: Transform - - uid: 10117 + - uid: 10346 components: - pos: 19.5,-3.5 parent: 2 type: Transform - - uid: 10118 + - uid: 10347 components: - pos: 19.5,-4.5 parent: 2 type: Transform - - uid: 10119 + - uid: 10348 components: - pos: 19.5,-5.5 parent: 2 type: Transform - - uid: 10120 + - uid: 10349 components: - pos: 26.5,3.5 parent: 2 type: Transform - - uid: 10121 + - uid: 10350 components: - pos: 26.5,-4.5 parent: 2 type: Transform - - uid: 10122 + - uid: 10351 components: - pos: 24.5,-4.5 parent: 2 type: Transform - - uid: 10123 + - uid: 10352 components: - pos: 26.5,-14.5 parent: 2 type: Transform - - uid: 10124 + - uid: 10353 components: - pos: -39.5,-9.5 parent: 2 type: Transform - - uid: 10125 + - uid: 10354 components: - pos: -25.5,-29.5 parent: 2 type: Transform - - uid: 10126 + - uid: 10355 components: - pos: -28.5,-29.5 parent: 2 type: Transform - - uid: 10127 + - uid: 10356 components: - pos: -16.5,-25.5 parent: 2 type: Transform - - uid: 10128 + - uid: 10357 components: - pos: -20.5,-25.5 parent: 2 type: Transform - - uid: 10129 + - uid: 10358 components: - pos: -21.5,-25.5 parent: 2 type: Transform - - uid: 10130 + - uid: 10359 components: - pos: -27.5,-29.5 parent: 2 type: Transform - - uid: 10131 + - uid: 10360 components: - pos: -24.5,-29.5 parent: 2 type: Transform - - uid: 10132 + - uid: 10361 components: - pos: -17.5,-25.5 parent: 2 type: Transform - - uid: 10133 + - uid: 10362 components: - pos: -21.5,-26.5 parent: 2 type: Transform - - uid: 10134 + - uid: 10363 components: - pos: -43.5,-7.5 parent: 2 type: Transform - - uid: 10135 + - uid: 10364 components: - pos: -37.5,-1.5 parent: 2 type: Transform - - uid: 10136 + - uid: 10365 components: - pos: -39.5,-5.5 parent: 2 type: Transform - - uid: 10137 + - uid: 10366 components: - pos: -39.5,-7.5 parent: 2 type: Transform - - uid: 10138 + - uid: 10367 components: - pos: -43.5,-5.5 parent: 2 type: Transform - - uid: 10139 + - uid: 10368 components: - pos: -29.5,12.5 parent: 2 type: Transform - - uid: 10140 + - uid: 10369 components: - pos: -32.5,15.5 parent: 2 type: Transform - - uid: 10141 + - uid: 10370 components: - pos: -32.5,13.5 parent: 2 type: Transform - - uid: 10142 + - uid: 10371 components: - pos: -29.5,6.5 parent: 2 type: Transform - - uid: 10143 + - uid: 10372 components: - pos: -29.5,9.5 parent: 2 type: Transform - - uid: 10144 + - uid: 10373 components: - pos: -32.5,8.5 parent: 2 type: Transform - - uid: 10145 + - uid: 10374 components: - pos: -29.5,8.5 parent: 2 type: Transform - - uid: 10146 + - uid: 10375 components: - pos: -29.5,-28.5 parent: 2 type: Transform - - uid: 10147 + - uid: 10376 components: - pos: 13.5,3.5 parent: 2 type: Transform - - uid: 10148 + - uid: 10377 components: - pos: -21.5,-17.5 parent: 2 type: Transform - - uid: 10149 + - uid: 10378 components: - pos: 10.5,3.5 parent: 2 type: Transform - - uid: 10150 + - uid: 10379 components: - pos: 14.5,3.5 parent: 2 type: Transform - - uid: 10151 + - uid: 10380 components: - pos: 12.5,3.5 parent: 2 type: Transform - - uid: 10152 + - uid: 10381 components: - pos: 9.5,3.5 parent: 2 type: Transform - - uid: 10153 + - uid: 10382 components: - pos: -21.5,-19.5 parent: 2 type: Transform - - uid: 10154 + - uid: 10383 components: - pos: -21.5,-20.5 parent: 2 type: Transform - - uid: 10155 + - uid: 10384 components: - pos: -19.5,-17.5 parent: 2 type: Transform - - uid: 10156 + - uid: 10385 components: - pos: -18.5,-22.5 parent: 2 type: Transform - - uid: 10157 + - uid: 10386 components: - pos: -19.5,-22.5 parent: 2 type: Transform - - uid: 10158 + - uid: 10387 components: - pos: -20.5,-22.5 parent: 2 type: Transform - - uid: 10159 + - uid: 10388 components: - pos: -21.5,-22.5 parent: 2 type: Transform - - uid: 10160 + - uid: 10389 components: - pos: -21.5,-21.5 parent: 2 type: Transform - - uid: 10161 + - uid: 10390 components: - pos: 2.5,39.5 parent: 2 type: Transform - - uid: 10162 + - uid: 10391 components: - pos: 2.5,40.5 parent: 2 type: Transform - proto: WallSolid entities: - - uid: 10163 + - uid: 10392 components: - rot: -1.5707963267948966 rad pos: 18.5,7.5 parent: 2 type: Transform - - uid: 10164 + - uid: 10393 components: - rot: -1.5707963267948966 rad pos: 20.5,9.5 parent: 2 type: Transform - - uid: 10165 + - uid: 10394 components: - rot: -1.5707963267948966 rad pos: 19.5,8.5 parent: 2 type: Transform - - uid: 10166 + - uid: 10395 components: - rot: -1.5707963267948966 rad pos: 19.5,9.5 parent: 2 type: Transform - - uid: 10167 + - uid: 10396 components: - rot: -1.5707963267948966 rad pos: 21.5,9.5 parent: 2 type: Transform - - uid: 10168 + - uid: 10397 components: - rot: -1.5707963267948966 rad pos: 22.5,4.5 parent: 2 type: Transform - - uid: 10169 + - uid: 10398 components: - rot: -1.5707963267948966 rad pos: 26.5,5.5 parent: 2 type: Transform - - uid: 10170 + - uid: 10399 components: - rot: -1.5707963267948966 rad pos: 18.5,5.5 parent: 2 type: Transform - - uid: 10171 + - uid: 10400 components: - rot: -1.5707963267948966 rad pos: 19.5,7.5 parent: 2 type: Transform - - uid: 10172 + - uid: 10401 components: - rot: -1.5707963267948966 rad pos: 18.5,4.5 parent: 2 type: Transform - - uid: 10173 + - uid: 10402 components: - rot: -1.5707963267948966 rad pos: 22.5,5.5 parent: 2 type: Transform - - uid: 10174 + - uid: 10403 components: - rot: -1.5707963267948966 rad pos: 22.5,9.5 parent: 2 type: Transform - - uid: 10175 + - uid: 10404 components: - rot: -1.5707963267948966 rad pos: 23.5,9.5 parent: 2 type: Transform - - uid: 10176 + - uid: 10405 components: - pos: 5.5,2.5 parent: 2 type: Transform - - uid: 10177 + - uid: 10406 components: - pos: 1.5,19.5 parent: 2 type: Transform - - uid: 10178 + - uid: 10407 components: - pos: -0.5,23.5 parent: 2 type: Transform - - uid: 10179 + - uid: 10408 components: - pos: -1.5,23.5 parent: 2 type: Transform - - uid: 10180 + - uid: 10409 components: - pos: 5.5,-2.5 parent: 2 type: Transform - - uid: 10181 + - uid: 10410 components: - pos: -8.5,-13.5 parent: 2 type: Transform - - uid: 10182 + - uid: 10411 components: - pos: -0.5,-10.5 parent: 2 type: Transform - - uid: 10183 + - uid: 10412 components: - pos: -2.5,-10.5 parent: 2 type: Transform - - uid: 10184 + - uid: 10413 components: - pos: -1.5,-13.5 parent: 2 type: Transform - - uid: 10185 + - uid: 10414 components: - pos: -2.5,-13.5 parent: 2 type: Transform - - uid: 10186 + - uid: 10415 components: - pos: 2.5,-13.5 parent: 2 type: Transform - - uid: 10187 + - uid: 10416 components: - pos: 2.5,-14.5 parent: 2 type: Transform - - uid: 10188 + - uid: 10417 components: - pos: 1.5,-14.5 parent: 2 type: Transform - - uid: 10189 + - uid: 10418 components: - pos: 0.5,-14.5 parent: 2 type: Transform - - uid: 10190 + - uid: 10419 components: - pos: -1.5,-14.5 parent: 2 type: Transform - - uid: 10191 + - uid: 10420 components: - pos: -6.5,-13.5 parent: 2 type: Transform - - uid: 10192 + - uid: 10421 components: - pos: -10.5,-14.5 parent: 2 type: Transform - - uid: 10193 + - uid: 10422 components: - pos: -10.5,-13.5 parent: 2 type: Transform - - uid: 10194 + - uid: 10423 components: - pos: -10.5,-12.5 parent: 2 type: Transform - - uid: 10195 + - uid: 10424 components: - pos: -10.5,-11.5 parent: 2 type: Transform - - uid: 10196 + - uid: 10425 components: - pos: -10.5,-10.5 parent: 2 type: Transform - - uid: 10197 + - uid: 10426 components: - pos: -3.5,-9.5 parent: 2 type: Transform - - uid: 10198 + - uid: 10427 components: - pos: -3.5,-8.5 parent: 2 type: Transform - - uid: 10199 + - uid: 10428 components: - pos: -3.5,-7.5 parent: 2 type: Transform - - uid: 10200 + - uid: 10429 components: - pos: -3.5,-6.5 parent: 2 type: Transform - - uid: 10201 + - uid: 10430 components: - pos: -4.5,-6.5 parent: 2 type: Transform - - uid: 10202 + - uid: 10431 components: - pos: 2.5,-11.5 parent: 2 type: Transform - - uid: 10203 + - uid: 10432 components: - pos: 2.5,-10.5 parent: 2 type: Transform - - uid: 10204 + - uid: 10433 components: - pos: 2.5,-9.5 parent: 2 type: Transform - - uid: 10205 + - uid: 10434 components: - pos: 2.5,-6.5 parent: 2 type: Transform - - uid: 10206 + - uid: 10435 components: - pos: -10.5,-6.5 parent: 2 type: Transform - - uid: 10207 + - uid: 10436 components: - pos: -10.5,20.5 parent: 2 type: Transform - - uid: 10208 + - uid: 10437 components: - pos: -10.5,21.5 parent: 2 type: Transform - - uid: 10209 + - uid: 10438 components: - pos: -9.5,-9.5 parent: 2 type: Transform - - uid: 10210 + - uid: 10439 components: - pos: -11.5,14.5 parent: 2 type: Transform - - uid: 10211 + - uid: 10440 components: - pos: 9.5,11.5 parent: 2 type: Transform - - uid: 10212 + - uid: 10441 components: - pos: -10.5,-9.5 parent: 2 type: Transform - - uid: 10213 + - uid: 10442 components: - pos: -9.5,-13.5 parent: 2 type: Transform - - uid: 10214 + - uid: 10443 components: - pos: -14.5,18.5 parent: 2 type: Transform - - uid: 10215 + - uid: 10444 components: - pos: -14.5,17.5 parent: 2 type: Transform - - uid: 10216 + - uid: 10445 components: - pos: -10.5,-8.5 parent: 2 type: Transform - - uid: 10217 + - uid: 10446 components: - pos: -8.5,-9.5 parent: 2 type: Transform - - uid: 10218 + - uid: 10447 components: - pos: -5.5,11.5 parent: 2 type: Transform - - uid: 10219 + - uid: 10448 components: - pos: -20.5,10.5 parent: 2 type: Transform - - uid: 10220 + - uid: 10449 components: - pos: -22.5,2.5 parent: 2 type: Transform - - uid: 10221 + - uid: 10450 components: - pos: -14.5,6.5 parent: 2 type: Transform - - uid: 10222 + - uid: 10451 components: - pos: -13.5,6.5 parent: 2 type: Transform - - uid: 10223 + - uid: 10452 components: - pos: 1.5,2.5 parent: 2 type: Transform - - uid: 10224 + - uid: 10453 components: - pos: 1.5,-0.5 parent: 2 type: Transform - - uid: 10225 + - uid: 10454 components: - pos: 0.5,10.5 parent: 2 type: Transform - - uid: 10226 + - uid: 10455 components: - pos: 0.5,11.5 parent: 2 type: Transform - - uid: 10227 + - uid: 10456 components: - pos: -0.5,11.5 parent: 2 type: Transform - - uid: 10228 + - uid: 10457 components: - pos: -1.5,11.5 parent: 2 type: Transform - - uid: 10229 + - uid: 10458 components: - pos: -4.5,11.5 parent: 2 type: Transform - - uid: 10230 + - uid: 10459 components: - pos: -8.5,11.5 parent: 2 type: Transform - - uid: 10231 + - uid: 10460 components: - pos: -9.5,11.5 parent: 2 type: Transform - - uid: 10232 + - uid: 10461 components: - pos: -10.5,11.5 parent: 2 type: Transform - - uid: 10233 + - uid: 10462 components: - pos: -8.5,7.5 parent: 2 type: Transform - - uid: 10234 + - uid: 10463 components: - pos: -10.5,6.5 parent: 2 type: Transform - - uid: 10235 + - uid: 10464 components: - pos: -10.5,7.5 parent: 2 type: Transform - - uid: 10236 + - uid: 10465 components: - pos: -8.5,6.5 parent: 2 type: Transform - - uid: 10237 + - uid: 10466 components: - pos: 0.5,7.5 parent: 2 type: Transform - - uid: 10238 + - uid: 10467 components: - pos: 0.5,6.5 parent: 2 type: Transform - - uid: 10239 + - uid: 10468 components: - pos: 0.5,5.5 parent: 2 type: Transform - - uid: 10240 + - uid: 10469 components: - pos: 0.5,4.5 parent: 2 type: Transform - - uid: 10241 + - uid: 10470 components: - pos: 0.5,3.5 parent: 2 type: Transform - - uid: 10242 + - uid: 10471 components: - pos: 0.5,2.5 parent: 2 type: Transform - - uid: 10243 + - uid: 10472 components: - pos: 1.5,0.5 parent: 2 type: Transform - - uid: 10244 + - uid: 10473 components: - pos: 1.5,1.5 parent: 2 type: Transform - - uid: 10245 + - uid: 10474 components: - pos: -5.5,6.5 parent: 2 type: Transform - - uid: 10246 + - uid: 10475 components: - pos: -24.5,6.5 parent: 2 type: Transform - - uid: 10247 + - uid: 10476 components: - pos: -21.5,2.5 parent: 2 type: Transform - - uid: 10248 + - uid: 10477 components: - pos: -22.5,0.5 parent: 2 type: Transform - - uid: 10249 + - uid: 10478 components: - pos: -19.5,2.5 parent: 2 type: Transform - - uid: 10250 + - uid: 10479 components: - pos: -17.5,2.5 parent: 2 type: Transform - - uid: 10251 + - uid: 10480 components: - pos: -17.5,6.5 parent: 2 type: Transform - - uid: 10252 + - uid: 10481 components: - pos: -18.5,6.5 parent: 2 type: Transform - - uid: 10253 + - uid: 10482 components: - pos: -20.5,11.5 parent: 2 type: Transform - - uid: 10254 + - uid: 10483 components: - pos: 2.5,-0.5 parent: 2 type: Transform - - uid: 10255 + - uid: 10484 components: - pos: -22.5,-0.5 parent: 2 type: Transform - - uid: 10256 + - uid: 10485 components: - pos: -18.5,3.5 parent: 2 type: Transform - - uid: 10257 + - uid: 10486 components: - pos: -10.5,-0.5 parent: 2 type: Transform - - uid: 10258 + - uid: 10487 components: - pos: -18.5,2.5 parent: 2 type: Transform - - uid: 10259 + - uid: 10488 components: - pos: -23.5,6.5 parent: 2 type: Transform - - uid: 10260 + - uid: 10489 components: - pos: 0.5,-0.5 parent: 2 type: Transform - - uid: 10261 + - uid: 10490 components: - pos: -19.5,6.5 parent: 2 type: Transform - - uid: 10262 + - uid: 10491 components: - pos: 9.5,8.5 parent: 2 type: Transform - - uid: 10263 + - uid: 10492 components: - pos: 3.5,18.5 parent: 2 type: Transform - - uid: 10264 + - uid: 10493 components: - pos: 13.5,7.5 parent: 2 type: Transform - - uid: 10265 + - uid: 10494 components: - pos: -5.5,-0.5 parent: 2 type: Transform - - uid: 10266 + - uid: 10495 components: - pos: -20.5,7.5 parent: 2 type: Transform - - uid: 10267 + - uid: 10496 components: - pos: -20.5,6.5 parent: 2 type: Transform - - uid: 10268 + - uid: 10497 components: - pos: 14.5,6.5 parent: 2 type: Transform - - uid: 10269 + - uid: 10498 components: - pos: 1.5,-10.5 parent: 2 type: Transform - - uid: 10270 + - uid: 10499 components: - pos: -10.5,4.5 parent: 2 type: Transform - - uid: 10271 + - uid: 10500 components: - pos: -10.5,3.5 parent: 2 type: Transform - - uid: 10272 + - uid: 10501 components: - pos: -8.5,0.5 parent: 2 type: Transform - - uid: 10273 + - uid: 10502 components: - pos: -8.5,-0.5 parent: 2 type: Transform - - uid: 10274 + - uid: 10503 components: - pos: -8.5,1.5 parent: 2 type: Transform - - uid: 10275 + - uid: 10504 components: - pos: -5.5,2.5 parent: 2 type: Transform - - uid: 10276 + - uid: 10505 components: - pos: -5.5,0.5 parent: 2 type: Transform - - uid: 10277 + - uid: 10506 components: - pos: -7.5,-0.5 parent: 2 type: Transform - - uid: 10278 + - uid: 10507 components: - pos: -10.5,2.5 parent: 2 type: Transform - - uid: 10279 + - uid: 10508 components: - pos: -5.5,3.5 parent: 2 type: Transform - - uid: 10280 + - uid: 10509 components: - pos: -10.5,0.5 parent: 2 type: Transform - - uid: 10281 + - uid: 10510 components: - pos: -6.5,-0.5 parent: 2 type: Transform - - uid: 10282 + - uid: 10511 components: - pos: 13.5,-4.5 parent: 2 type: Transform - - uid: 10283 + - uid: 10512 components: - pos: -10.5,1.5 parent: 2 type: Transform - - uid: 10284 + - uid: 10513 components: - pos: -7.5,-10.5 parent: 2 type: Transform - - uid: 10285 + - uid: 10514 components: - pos: -7.5,-9.5 parent: 2 type: Transform - - uid: 10286 + - uid: 10515 components: - pos: -25.5,-23.5 parent: 2 type: Transform - - uid: 10287 + - uid: 10516 components: - pos: -26.5,-22.5 parent: 2 type: Transform - - uid: 10288 + - uid: 10517 components: - pos: -26.5,-20.5 parent: 2 type: Transform - - uid: 10289 + - uid: 10518 components: - pos: -25.5,-22.5 parent: 2 type: Transform - - uid: 10290 + - uid: 10519 components: - pos: 12.5,15.5 parent: 2 type: Transform - - uid: 10291 + - uid: 10520 components: - pos: -1.5,-10.5 parent: 2 type: Transform - - uid: 10292 + - uid: 10521 components: - pos: -0.5,18.5 parent: 2 type: Transform - - uid: 10293 + - uid: 10522 components: - pos: 17.5,19.5 parent: 2 type: Transform - - uid: 10294 + - uid: 10523 components: - pos: 0.5,18.5 parent: 2 type: Transform - - uid: 10295 + - uid: 10524 components: - pos: -10.5,29.5 parent: 2 type: Transform - - uid: 10296 + - uid: 10525 components: - pos: -8.5,25.5 parent: 2 type: Transform - - uid: 10297 + - uid: 10526 components: - pos: -8.5,28.5 parent: 2 type: Transform - - uid: 10298 + - uid: 10527 components: - pos: -8.5,29.5 parent: 2 type: Transform - - uid: 10299 + - uid: 10528 components: - pos: 3.5,9.5 parent: 2 type: Transform - - uid: 10300 + - uid: 10529 components: - pos: 14.5,4.5 parent: 2 type: Transform - - uid: 10301 + - uid: 10530 components: - pos: 4.5,11.5 parent: 2 type: Transform - - uid: 10302 + - uid: 10531 components: - pos: 15.5,10.5 parent: 2 type: Transform - - uid: 10303 + - uid: 10532 components: - pos: -14.5,16.5 parent: 2 type: Transform - - uid: 10304 + - uid: 10533 components: - pos: 2.5,18.5 parent: 2 type: Transform - - uid: 10305 + - uid: 10534 components: - pos: 1.5,18.5 parent: 2 type: Transform - - uid: 10306 + - uid: 10535 components: - pos: 30.5,20.5 parent: 2 type: Transform - - uid: 10307 + - uid: 10536 components: - pos: 6.5,11.5 parent: 2 type: Transform - - uid: 10308 + - uid: 10537 components: - pos: -8.5,27.5 parent: 2 type: Transform - - uid: 10309 + - uid: 10538 components: - pos: -8.5,26.5 parent: 2 type: Transform - - uid: 10310 + - uid: 10539 components: - pos: 16.5,19.5 parent: 2 type: Transform - - uid: 10311 + - uid: 10540 components: - pos: 21.5,-8.5 parent: 2 type: Transform - - uid: 10312 + - uid: 10541 components: - pos: 21.5,-9.5 parent: 2 type: Transform - - uid: 10313 + - uid: 10542 components: - pos: 30.5,19.5 parent: 2 type: Transform - - uid: 10314 + - uid: 10543 components: - pos: 5.5,22.5 parent: 2 type: Transform - - uid: 10315 + - uid: 10544 components: - pos: 14.5,5.5 parent: 2 type: Transform - - uid: 10316 + - uid: 10545 components: - pos: 6.5,7.5 parent: 2 type: Transform - - uid: 10317 + - uid: 10546 components: - pos: 1.5,22.5 parent: 2 type: Transform - - uid: 10318 + - uid: 10547 components: - pos: 29.5,30.5 parent: 2 type: Transform - - uid: 10319 + - uid: 10548 components: - pos: 23.5,-9.5 parent: 2 type: Transform - - uid: 10320 + - uid: 10549 components: - pos: 3.5,11.5 parent: 2 type: Transform - - uid: 10321 + - uid: 10550 components: - pos: 7.5,7.5 parent: 2 type: Transform - - uid: 10322 + - uid: 10551 components: - pos: 7.5,11.5 parent: 2 type: Transform - - uid: 10323 + - uid: 10552 components: - pos: 5.5,11.5 parent: 2 type: Transform - - uid: 10324 + - uid: 10553 components: - pos: 3.5,7.5 parent: 2 type: Transform - - uid: 10325 + - uid: 10554 components: - pos: 8.5,7.5 parent: 2 type: Transform - - uid: 10326 + - uid: 10555 components: - pos: 9.5,7.5 parent: 2 type: Transform - - uid: 10327 + - uid: 10556 components: - pos: 3.5,22.5 parent: 2 type: Transform - - uid: 10328 + - uid: 10557 components: - pos: 5.5,7.5 parent: 2 type: Transform - - uid: 10329 + - uid: 10558 components: - pos: -3.5,14.5 parent: 2 type: Transform - - uid: 10330 + - uid: 10559 components: - pos: -3.5,15.5 parent: 2 type: Transform - - uid: 10331 + - uid: 10560 components: - pos: -17.5,14.5 parent: 2 type: Transform - - uid: 10332 + - uid: 10561 components: - pos: 11.5,7.5 parent: 2 type: Transform - - uid: 10333 + - uid: 10562 components: - pos: -3.5,16.5 parent: 2 type: Transform - - uid: 10334 + - uid: 10563 components: - pos: 10.5,7.5 parent: 2 type: Transform - - uid: 10335 + - uid: 10564 components: - pos: 12.5,7.5 parent: 2 type: Transform - - uid: 10336 + - uid: 10565 components: - pos: 5.5,3.5 parent: 2 type: Transform - - uid: 10337 + - uid: 10566 components: - pos: 3.5,8.5 parent: 2 type: Transform - - uid: 10338 + - uid: 10567 components: - pos: -3.5,17.5 parent: 2 type: Transform - - uid: 10339 + - uid: 10568 components: - pos: 9.5,4.5 parent: 2 type: Transform - - uid: 10340 + - uid: 10569 components: - pos: 9.5,5.5 parent: 2 type: Transform - - uid: 10341 + - uid: 10570 components: - pos: 5.5,6.5 parent: 2 type: Transform - - uid: 10342 + - uid: 10571 components: - pos: 5.5,4.5 parent: 2 type: Transform - - uid: 10343 + - uid: 10572 components: - pos: -10.5,17.5 parent: 2 type: Transform - - uid: 10344 + - uid: 10573 components: - pos: -10.5,16.5 parent: 2 type: Transform - - uid: 10345 + - uid: 10574 components: - pos: -10.5,19.5 parent: 2 type: Transform - - uid: 10346 + - uid: 10575 components: - pos: -3.5,23.5 parent: 2 type: Transform - - uid: 10347 + - uid: 10576 components: - pos: -10.5,15.5 parent: 2 type: Transform - - uid: 10348 + - uid: 10577 components: - pos: -10.5,14.5 parent: 2 type: Transform - - uid: 10349 + - uid: 10578 components: - pos: -2.5,18.5 parent: 2 type: Transform - - uid: 10350 + - uid: 10579 components: - pos: -3.5,18.5 parent: 2 type: Transform - - uid: 10351 + - uid: 10580 components: - pos: -1.5,18.5 parent: 2 type: Transform - - uid: 10352 + - uid: 10581 components: - pos: -28.5,-21.5 parent: 2 type: Transform - - uid: 10353 + - uid: 10582 components: - pos: -14.5,11.5 parent: 2 type: Transform - - uid: 10354 + - uid: 10583 components: - pos: -16.5,15.5 parent: 2 type: Transform - - uid: 10355 + - uid: 10584 components: - pos: -13.5,14.5 parent: 2 type: Transform - - uid: 10356 + - uid: 10585 components: - pos: -17.5,11.5 parent: 2 type: Transform - - uid: 10357 + - uid: 10586 components: - pos: -14.5,15.5 parent: 2 type: Transform - - uid: 10358 + - uid: 10587 components: - pos: -15.5,15.5 parent: 2 type: Transform - - uid: 10359 + - uid: 10588 components: - pos: -13.5,11.5 parent: 2 type: Transform - - uid: 10360 + - uid: 10589 components: - pos: -27.5,-17.5 parent: 2 type: Transform - - uid: 10361 + - uid: 10590 components: - pos: -26.5,-17.5 parent: 2 type: Transform - - uid: 10362 + - uid: 10591 components: - pos: -26.5,-19.5 parent: 2 type: Transform - - uid: 10363 + - uid: 10592 components: - pos: 0.5,-10.5 parent: 2 type: Transform - - uid: 10364 + - uid: 10593 components: - pos: -26.5,-21.5 parent: 2 type: Transform - - uid: 10365 + - uid: 10594 components: - pos: 30.5,24.5 parent: 2 type: Transform - - uid: 10366 + - uid: 10595 components: - pos: -27.5,-21.5 parent: 2 type: Transform - - uid: 10367 + - uid: 10596 components: - pos: 0.5,27.5 parent: 2 type: Transform - - uid: 10368 + - uid: 10597 components: - pos: 23.5,-8.5 parent: 2 type: Transform - - uid: 10369 + - uid: 10598 components: - pos: 0.5,28.5 parent: 2 type: Transform - - uid: 10370 + - uid: 10599 components: - pos: 0.5,23.5 parent: 2 type: Transform - - uid: 10371 + - uid: 10600 components: - pos: 2.5,22.5 parent: 2 type: Transform - - uid: 10372 + - uid: 10601 components: - pos: -13.5,15.5 parent: 2 type: Transform - - uid: 10373 + - uid: 10602 components: - pos: 13.5,-6.5 parent: 2 type: Transform - - uid: 10374 + - uid: 10603 components: - pos: -29.5,-21.5 parent: 2 type: Transform - - uid: 10375 + - uid: 10604 components: - pos: -26.5,-16.5 parent: 2 type: Transform - - uid: 10376 + - uid: 10605 components: - pos: -29.5,-17.5 parent: 2 type: Transform - - uid: 10377 + - uid: 10606 components: - pos: 1.5,21.5 parent: 2 type: Transform - - uid: 10378 + - uid: 10607 components: - pos: -8.5,30.5 parent: 2 type: Transform - - uid: 10379 + - uid: 10608 components: - pos: -3.5,30.5 parent: 2 type: Transform - - uid: 10380 + - uid: 10609 components: - pos: -4.5,15.5 parent: 2 type: Transform - - uid: 10381 + - uid: 10610 components: - pos: 12.5,19.5 parent: 2 type: Transform - - uid: 10382 + - uid: 10611 components: - pos: -12.5,29.5 parent: 2 type: Transform - - uid: 10383 + - uid: 10612 components: - pos: 14.5,7.5 parent: 2 type: Transform - - uid: 10384 + - uid: 10613 components: - pos: 31.5,26.5 parent: 2 type: Transform - - uid: 10385 + - uid: 10614 components: - pos: 31.5,24.5 parent: 2 type: Transform - - uid: 10386 + - uid: 10615 components: - pos: 25.5,-8.5 parent: 2 type: Transform - - uid: 10387 + - uid: 10616 components: - pos: 15.5,8.5 parent: 2 type: Transform - - uid: 10388 + - uid: 10617 components: - pos: 9.5,9.5 parent: 2 type: Transform - - uid: 10389 + - uid: 10618 components: - pos: -4.5,30.5 parent: 2 type: Transform - - uid: 10390 + - uid: 10619 components: - pos: -11.5,29.5 parent: 2 type: Transform - - uid: 10391 + - uid: 10620 components: - pos: -7.5,30.5 parent: 2 type: Transform - - uid: 10392 + - uid: 10621 components: - pos: 10.5,11.5 parent: 2 type: Transform - - uid: 10393 + - uid: 10622 components: - pos: 8.5,11.5 parent: 2 type: Transform - - uid: 10394 + - uid: 10623 components: - pos: -3.5,25.5 parent: 2 type: Transform - - uid: 10395 + - uid: 10624 components: - pos: -9.5,15.5 parent: 2 type: Transform - - uid: 10396 + - uid: 10625 components: - pos: -3.5,22.5 parent: 2 type: Transform - - uid: 10397 + - uid: 10626 components: - pos: -11.5,30.5 parent: 2 type: Transform - - uid: 10398 + - uid: 10627 components: - pos: -23.5,3.5 parent: 2 type: Transform - - uid: 10399 + - uid: 10628 components: - pos: -23.5,2.5 parent: 2 type: Transform - - uid: 10400 + - uid: 10629 components: - pos: -23.5,5.5 parent: 2 type: Transform - - uid: 10401 + - uid: 10630 components: - pos: -23.5,4.5 parent: 2 type: Transform - - uid: 10402 + - uid: 10631 components: - pos: -20.5,12.5 parent: 2 type: Transform - - uid: 10403 + - uid: 10632 components: - pos: -15.5,-1.5 parent: 2 type: Transform - - uid: 10404 + - uid: 10633 components: - pos: -17.5,-1.5 parent: 2 type: Transform - - uid: 10405 + - uid: 10634 components: - pos: -18.5,-1.5 parent: 2 type: Transform - - uid: 10406 + - uid: 10635 components: - pos: -19.5,-1.5 parent: 2 type: Transform - - uid: 10407 + - uid: 10636 components: - pos: -20.5,-1.5 parent: 2 type: Transform - - uid: 10408 + - uid: 10637 components: - pos: -21.5,-1.5 parent: 2 type: Transform - - uid: 10409 + - uid: 10638 components: - pos: -21.5,-0.5 parent: 2 type: Transform - - uid: 10410 + - uid: 10639 components: - pos: -28.5,-17.5 parent: 2 type: Transform - - uid: 10411 + - uid: 10640 components: - pos: 0.5,14.5 parent: 2 type: Transform - - uid: 10412 + - uid: 10641 components: - pos: 28.5,30.5 parent: 2 type: Transform - - uid: 10413 + - uid: 10642 components: - pos: -22.5,-22.5 parent: 2 type: Transform - - uid: 10414 + - uid: 10643 components: - pos: -7.5,25.5 parent: 2 type: Transform - - uid: 10415 + - uid: 10644 components: - pos: -9.5,29.5 parent: 2 type: Transform - - uid: 10416 + - uid: 10645 components: - pos: -4.5,25.5 parent: 2 type: Transform - - uid: 10417 + - uid: 10646 components: - pos: 1.5,30.5 parent: 2 type: Transform - - uid: 10418 + - uid: 10647 components: - pos: 0.5,30.5 parent: 2 type: Transform - - uid: 10419 + - uid: 10648 components: - pos: 0.5,26.5 parent: 2 type: Transform - - uid: 10420 + - uid: 10649 components: - pos: 1.5,23.5 parent: 2 type: Transform - - uid: 10421 + - uid: 10650 components: - pos: 27.5,9.5 parent: 2 type: Transform - - uid: 10422 + - uid: 10651 components: - pos: 28.5,9.5 parent: 2 type: Transform - proto: WallSolidRust entities: - - uid: 10423 + - uid: 10652 components: - pos: 14.5,8.5 parent: 2 type: Transform - proto: WallWeaponCapacitorRecharger entities: - - uid: 10424 + - uid: 10653 components: - pos: 15.5,-15.5 parent: 2 type: Transform - proto: WardrobeCargoFilled entities: - - uid: 10425 + - uid: 10654 components: - pos: 12.5,2.5 parent: 2 type: Transform - proto: WardrobeGreenFilled entities: - - uid: 10426 + - uid: 10655 components: - pos: -29.5,-20.5 parent: 2 type: Transform - proto: WardrobePrisonFilled entities: - - uid: 10427 + - uid: 10656 components: - pos: 13.5,-24.5 parent: 2 type: Transform - - uid: 10428 + - uid: 10657 components: - pos: 13.5,-25.5 parent: 2 type: Transform - proto: WardrobeSalvageFilled entities: - - uid: 10429 + - uid: 10658 components: - pos: 22.5,-2.5 parent: 2 type: Transform - proto: WarningN2 entities: - - uid: 10430 + - uid: 10659 components: - pos: 22.5,36.5 parent: 2 type: Transform - proto: WarningO2 entities: - - uid: 10431 + - uid: 10660 components: - pos: 20.5,36.5 parent: 2 type: Transform - proto: WarningPlasma entities: - - uid: 10432 + - uid: 10661 components: - pos: 24.5,36.5 parent: 2 type: Transform - proto: WarningWaste entities: - - uid: 10433 + - uid: 10662 components: - pos: 26.5,36.5 parent: 2 type: Transform - proto: WarpPoint entities: - - uid: 10434 + - uid: 10663 components: - rot: 3.141592653589793 rad pos: -24.5,-20.5 @@ -66286,7 +67431,7 @@ entities: - type: BombingTarget - text: Dorms type: NavMapBeacon - - uid: 10435 + - uid: 10664 components: - rot: 3.141592653589793 rad pos: -3.5,-21.5 @@ -66294,7 +67439,7 @@ entities: type: Transform - location: Bridge type: WarpPoint - - uid: 10436 + - uid: 10665 components: - rot: 3.141592653589793 rad pos: 12.5,18.5 @@ -66303,7 +67448,7 @@ entities: - location: Engineering type: WarpPoint - type: BombingTarget - - uid: 10437 + - uid: 10666 components: - rot: 3.141592653589793 rad pos: 13.5,-18.5 @@ -66312,7 +67457,7 @@ entities: - location: Security type: WarpPoint - type: BombingTarget - - uid: 10438 + - uid: 10667 components: - pos: -25.5,-3.5 parent: 2 @@ -66321,7 +67466,7 @@ entities: type: WarpPoint - proto: WarpPointBeaconBar entities: - - uid: 10439 + - uid: 10668 components: - pos: -3.5,-3.5 parent: 2 @@ -66333,7 +67478,7 @@ entities: - type: BombingTarget - proto: WarpPointBeaconCargo entities: - - uid: 10440 + - uid: 10669 components: - pos: 15.5,-0.5 parent: 2 @@ -66341,7 +67486,7 @@ entities: - type: BombingTarget - proto: WarpPointBeaconCommand entities: - - uid: 10441 + - uid: 10670 components: - pos: -0.5,-18.5 parent: 2 @@ -66349,7 +67494,7 @@ entities: - type: BombingTarget - proto: WarpPointBombing entities: - - uid: 10442 + - uid: 10671 components: - pos: -18.5,11.5 parent: 2 @@ -66359,7 +67504,7 @@ entities: - color: '#52B4E9FF' text: medical type: NavMapBeacon - - uid: 10443 + - uid: 10672 components: - pos: -7.5,21.5 parent: 2 @@ -66369,189 +67514,189 @@ entities: - type: NavMapBeacon - proto: WaterCooler entities: - - uid: 10444 + - uid: 10673 components: - pos: 8.5,-23.5 parent: 2 type: Transform - proto: WaterTankFull entities: - - uid: 10445 + - uid: 10674 components: - pos: -18.5,30.5 parent: 2 type: Transform - - uid: 10446 + - uid: 10675 components: - pos: -9.5,-14.5 parent: 2 type: Transform - - uid: 10447 + - uid: 10676 components: - pos: -0.5,15.5 parent: 2 type: Transform - - uid: 10448 + - uid: 10677 components: - pos: 19.5,-28.5 parent: 2 type: Transform - - uid: 10449 + - uid: 10678 components: - pos: -27.5,21.5 parent: 2 type: Transform - proto: WaterTankHighCapacity entities: - - uid: 10450 + - uid: 10679 components: - pos: -1.5,10.5 parent: 2 type: Transform - proto: WeaponCapacitorRecharger entities: - - uid: 10451 + - uid: 10680 components: - pos: 12.5,-17.5 parent: 2 type: Transform - - uid: 10452 + - uid: 10681 components: - pos: 13.5,-17.5 parent: 2 type: Transform - - uid: 10453 + - uid: 10682 components: - pos: -12.5,-28.5 parent: 2 type: Transform - - uid: 10454 + - uid: 10683 components: - pos: -0.5,25.5 parent: 2 type: Transform - proto: WeaponDisabler entities: - - uid: 10455 + - uid: 10684 components: - pos: 13.886827,-17.286995 parent: 2 type: Transform - - uid: 10456 + - uid: 10685 components: - pos: 13.876411,-17.443354 parent: 2 type: Transform - - uid: 10457 + - uid: 10686 components: - pos: 13.865994,-17.62056 parent: 2 type: Transform - proto: WeaponFlareGun entities: - - uid: 10458 + - uid: 10687 components: - pos: 27.429993,15.471506 parent: 2 type: Transform - proto: WeaponLaserCarbine entities: - - uid: 10459 + - uid: 10688 components: - pos: 23.476604,-15.352692 parent: 2 type: Transform - - uid: 10460 + - uid: 10689 components: - pos: 23.476604,-15.550745 parent: 2 type: Transform - proto: WeaponPistolFlintlock entities: - - uid: 10461 + - uid: 10690 components: - pos: -42.516632,28.328865 parent: 2 type: Transform - proto: WeaponPistolMk58 entities: - - uid: 10462 + - uid: 10691 components: - pos: 20.440172,-15.326029 parent: 2 type: Transform - - uid: 10463 + - uid: 10692 components: - pos: 20.666649,-15.436083 parent: 2 type: Transform - proto: WeaponShotgunKammerer entities: - - uid: 10464 + - uid: 10693 components: - pos: 24.546257,-15.619881 parent: 2 type: Transform - - uid: 10465 + - uid: 10694 components: - pos: 24.525423,-15.380131 parent: 2 type: Transform - proto: WeaponSubMachineGunVector entities: - - uid: 10466 + - uid: 10695 components: - pos: 21.501623,-14.4895935 parent: 2 type: Transform - - uid: 10467 + - uid: 10696 components: - pos: 21.376623,-14.333235 parent: 2 type: Transform - proto: WeaponSubMachineGunWt550 entities: - - uid: 10468 + - uid: 10697 components: - pos: 23.5,-21.5 parent: 2 type: Transform - proto: WeldingFuelTankFull entities: - - uid: 10469 + - uid: 10698 components: - pos: -2.5,-14.5 parent: 2 type: Transform - - uid: 10470 + - uid: 10699 components: - pos: 1.5,15.5 parent: 2 type: Transform - - uid: 10471 + - uid: 10700 components: - pos: -27.5,20.5 parent: 2 type: Transform - - uid: 10472 + - uid: 10701 components: - pos: 28.5,24.5 parent: 2 type: Transform - - uid: 10473 + - uid: 10702 components: - pos: -18.5,27.5 parent: 2 type: Transform - proto: WindoorHydroponicsLocked entities: - - uid: 10474 + - uid: 10703 components: - rot: 1.5707963267948966 rad pos: -10.5,8.5 parent: 2 type: Transform - - uid: 10475 + - uid: 10704 components: - rot: 1.5707963267948966 rad pos: -10.5,9.5 @@ -66559,7 +67704,7 @@ entities: type: Transform - proto: WindoorKitchenHydroponicsLocked entities: - - uid: 10476 + - uid: 10705 components: - rot: 3.141592653589793 rad pos: -2.5,6.5 @@ -66567,74 +67712,74 @@ entities: type: Transform - proto: WindoorSecure entities: - - uid: 10477 + - uid: 10706 components: - pos: 11.5,9.5 parent: 2 type: Transform - - uid: 10478 + - uid: 10707 components: - pos: 13.5,9.5 parent: 2 type: Transform - - uid: 10479 + - uid: 10708 components: - pos: 15.5,-23.5 parent: 2 type: Transform - proto: WindoorSecureArmoryLocked entities: - - uid: 10480 + - uid: 10709 components: - pos: 23.5,-15.5 parent: 2 type: Transform - - uid: 10481 + - uid: 10710 components: - pos: 21.5,-14.5 parent: 2 type: Transform - - uid: 10482 + - uid: 10711 components: - rot: 1.5707963267948966 rad pos: 16.5,-16.5 parent: 2 type: Transform - - uid: 10483 + - uid: 10712 components: - rot: -1.5707963267948966 rad pos: 20.5,-14.5 parent: 2 type: Transform - - uid: 10484 + - uid: 10713 components: - rot: -1.5707963267948966 rad pos: 20.5,-15.5 parent: 2 type: Transform - - uid: 10485 + - uid: 10714 components: - pos: 22.5,-14.5 parent: 2 type: Transform - - uid: 10486 + - uid: 10715 components: - pos: 24.5,-15.5 parent: 2 type: Transform - proto: WindoorSecureBrigLocked entities: - - uid: 10487 + - uid: 10716 components: - pos: 7.5,-13.5 parent: 2 type: Transform - - uid: 10488 + - uid: 10717 components: - pos: 8.5,-13.5 parent: 2 type: Transform - - uid: 10489 + - uid: 10718 components: - rot: 1.5707963267948966 rad pos: 6.5,-15.5 @@ -66642,25 +67787,25 @@ entities: type: Transform - proto: WindoorSecureCargoLocked entities: - - uid: 10490 + - uid: 10719 components: - rot: 3.141592653589793 rad pos: 24.5,-0.5 parent: 2 type: Transform - - uid: 10491 + - uid: 10720 components: - rot: 1.5707963267948966 rad pos: 10.5,-1.5 parent: 2 type: Transform - - uid: 10492 + - uid: 10721 components: - rot: 1.5707963267948966 rad pos: 10.5,-0.5 parent: 2 type: Transform - - uid: 10493 + - uid: 10722 components: - rot: 1.5707963267948966 rad pos: 5.5,5.5 @@ -66668,13 +67813,13 @@ entities: type: Transform - proto: WindoorSecureChemistryLocked entities: - - uid: 10494 + - uid: 10723 components: - rot: 3.141592653589793 rad pos: -15.5,10.5 parent: 2 type: Transform - - uid: 10495 + - uid: 10724 components: - rot: 3.141592653589793 rad pos: -16.5,10.5 @@ -66682,7 +67827,7 @@ entities: type: Transform - proto: WindoorSecureCommandLocked entities: - - uid: 10496 + - uid: 10725 components: - rot: 1.5707963267948966 rad pos: 5.5,-4.5 @@ -66690,7 +67835,7 @@ entities: type: Transform - proto: WindoorSecureEngineeringLocked entities: - - uid: 10497 + - uid: 10726 components: - rot: 1.5707963267948966 rad pos: 12.5,13.5 @@ -66698,14 +67843,14 @@ entities: type: Transform - proto: WindoorSecureSalvageLocked entities: - - uid: 10498 + - uid: 10727 components: - pos: 24.5,-0.5 parent: 2 type: Transform - proto: WindoorSecureScienceLocked entities: - - uid: 10499 + - uid: 10728 components: - rot: 3.141592653589793 rad pos: -5.5,25.5 @@ -66713,769 +67858,769 @@ entities: type: Transform - proto: WindoorSecureSecurityLocked entities: - - uid: 10500 + - uid: 10729 components: - pos: -20.5,-8.5 parent: 2 type: Transform - - uid: 10501 + - uid: 10730 components: - pos: -18.5,-8.5 parent: 2 type: Transform - - uid: 10502 + - uid: 10731 components: - rot: 3.141592653589793 rad pos: 4.5,-28.5 parent: 2 type: Transform - - uid: 10503 + - uid: 10732 components: - rot: 3.141592653589793 rad pos: 15.5,-23.5 parent: 2 type: Transform - - uid: 10504 + - uid: 10733 components: - rot: -1.5707963267948966 rad pos: 12.5,-16.5 parent: 2 type: Transform - - uid: 10505 + - uid: 10734 components: - pos: -19.5,-5.5 parent: 2 type: Transform - proto: Window entities: - - uid: 10506 + - uid: 10735 components: - pos: 5.5,-1.5 parent: 2 type: Transform - - uid: 10507 + - uid: 10736 components: - pos: 5.5,1.5 parent: 2 type: Transform - - uid: 10508 + - uid: 10737 components: - pos: 1.5,14.5 parent: 2 type: Transform - - uid: 10509 + - uid: 10738 components: - pos: -10.5,-7.5 parent: 2 type: Transform - - uid: 10510 + - uid: 10739 components: - pos: -8.5,-6.5 parent: 2 type: Transform - - uid: 10511 + - uid: 10740 components: - pos: -17.5,10.5 parent: 2 type: Transform - - uid: 10512 + - uid: 10741 components: - pos: -1.5,6.5 parent: 2 type: Transform - - uid: 10513 + - uid: 10742 components: - pos: -13.5,4.5 parent: 2 type: Transform - - uid: 10514 + - uid: 10743 components: - pos: -13.5,5.5 parent: 2 type: Transform - - uid: 10515 + - uid: 10744 components: - pos: -14.5,7.5 parent: 2 type: Transform - - uid: 10516 + - uid: 10745 components: - pos: -14.5,10.5 parent: 2 type: Transform - - uid: 10517 + - uid: 10746 components: - pos: -13.5,3.5 parent: 2 type: Transform - - uid: 10518 + - uid: 10747 components: - pos: -6.5,11.5 parent: 2 type: Transform - - uid: 10519 + - uid: 10748 components: - pos: -3.5,11.5 parent: 2 type: Transform - - uid: 10520 + - uid: 10749 components: - pos: -7.5,11.5 parent: 2 type: Transform - - uid: 10521 + - uid: 10750 components: - pos: 0.5,8.5 parent: 2 type: Transform - - uid: 10522 + - uid: 10751 components: - pos: 0.5,9.5 parent: 2 type: Transform - - uid: 10523 + - uid: 10752 components: - pos: -2.5,11.5 parent: 2 type: Transform - - uid: 10524 + - uid: 10753 components: - pos: -0.5,6.5 parent: 2 type: Transform - - uid: 10525 + - uid: 10754 components: - pos: -3.5,6.5 parent: 2 type: Transform - - uid: 10526 + - uid: 10755 components: - pos: -10.5,-5.5 parent: 2 type: Transform - - uid: 10527 + - uid: 10756 components: - pos: 2.5,-1.5 parent: 2 type: Transform - - uid: 10528 + - uid: 10757 components: - pos: -10.5,-1.5 parent: 2 type: Transform - - uid: 10529 + - uid: 10758 components: - pos: 2.5,-5.5 parent: 2 type: Transform - - uid: 10530 + - uid: 10759 components: - pos: -3.5,-0.5 parent: 2 type: Transform - - uid: 10531 + - uid: 10760 components: - pos: -2.5,14.5 parent: 2 type: Transform - - uid: 10532 + - uid: 10761 components: - pos: 3.5,14.5 parent: 2 type: Transform - - uid: 10533 + - uid: 10762 components: - pos: 0.5,25.5 parent: 2 type: Transform - - uid: 10534 + - uid: 10763 components: - pos: 31.5,19.5 parent: 2 type: Transform - - uid: 10535 + - uid: 10764 components: - pos: 4.5,7.5 parent: 2 type: Transform - - uid: 10536 + - uid: 10765 components: - pos: 6.5,3.5 parent: 2 type: Transform - - uid: 10537 + - uid: 10766 components: - pos: 7.5,3.5 parent: 2 type: Transform - - uid: 10538 + - uid: 10767 components: - pos: -17.5,12.5 parent: 2 type: Transform - - uid: 10539 + - uid: 10768 components: - pos: -13.5,13.5 parent: 2 type: Transform - - uid: 10540 + - uid: 10769 components: - pos: -13.5,12.5 parent: 2 type: Transform - - uid: 10541 + - uid: 10770 components: - pos: -3.5,33.5 parent: 2 type: Transform - - uid: 10542 + - uid: 10771 components: - pos: -3.5,29.5 parent: 2 type: Transform - - uid: 10543 + - uid: 10772 components: - pos: -3.5,26.5 parent: 2 type: Transform - - uid: 10544 + - uid: 10773 components: - pos: 32.5,19.5 parent: 2 type: Transform - - uid: 10545 + - uid: 10774 components: - pos: -0.5,14.5 parent: 2 type: Transform - - uid: 10546 + - uid: 10775 components: - pos: 30.5,22.5 parent: 2 type: Transform - proto: WindowDirectional entities: - - uid: 10547 + - uid: 10776 components: - rot: 3.141592653589793 rad pos: -27.5,-5.5 parent: 2 type: Transform - - uid: 10548 + - uid: 10777 components: - rot: 3.141592653589793 rad pos: -30.5,-5.5 parent: 2 type: Transform - - uid: 10549 + - uid: 10778 components: - rot: 3.141592653589793 rad pos: -29.5,-5.5 parent: 2 type: Transform - - uid: 10550 + - uid: 10779 components: - rot: 3.141592653589793 rad pos: -28.5,-5.5 parent: 2 type: Transform - - uid: 10551 + - uid: 10780 components: - pos: -30.5,-1.5 parent: 2 type: Transform - - uid: 10552 + - uid: 10781 components: - pos: -29.5,-1.5 parent: 2 type: Transform - - uid: 10553 + - uid: 10782 components: - pos: -28.5,-1.5 parent: 2 type: Transform - - uid: 10554 + - uid: 10783 components: - pos: -27.5,-1.5 parent: 2 type: Transform - proto: WindowReinforcedDirectional entities: - - uid: 10555 + - uid: 10784 components: - rot: 3.141592653589793 rad pos: -27.5,-10.5 parent: 2 type: Transform - - uid: 10556 + - uid: 10785 components: - rot: 3.141592653589793 rad pos: -28.5,-10.5 parent: 2 type: Transform - - uid: 10557 + - uid: 10786 components: - rot: 1.5707963267948966 rad pos: -32.5,-4.5 parent: 2 type: Transform - - uid: 10558 + - uid: 10787 components: - pos: -17.5,-8.5 parent: 2 type: Transform - - uid: 10559 + - uid: 10788 components: - rot: 3.141592653589793 rad pos: 17.5,-32.5 parent: 2 type: Transform - - uid: 10560 + - uid: 10789 components: - rot: -1.5707963267948966 rad pos: 19.5,-31.5 parent: 2 type: Transform - - uid: 10561 + - uid: 10790 components: - rot: 3.141592653589793 rad pos: 20.5,-22.5 parent: 2 type: Transform - - uid: 10562 + - uid: 10791 components: - pos: 19.5,-23.5 parent: 2 type: Transform - - uid: 10563 + - uid: 10792 components: - rot: 1.5707963267948966 rad pos: -19.5,-9.5 parent: 2 type: Transform - - uid: 10564 + - uid: 10793 components: - rot: 3.141592653589793 rad pos: 19.5,-22.5 parent: 2 type: Transform - - uid: 10565 + - uid: 10794 components: - rot: 3.141592653589793 rad pos: -10.5,-23.5 parent: 2 type: Transform - - uid: 10566 + - uid: 10795 components: - rot: 3.141592653589793 rad pos: -11.5,-23.5 parent: 2 type: Transform - - uid: 10567 + - uid: 10796 components: - rot: 3.141592653589793 rad pos: -12.5,-23.5 parent: 2 type: Transform - - uid: 10568 + - uid: 10797 components: - rot: 1.5707963267948966 rad pos: -3.5,-30.5 parent: 2 type: Transform - - uid: 10569 + - uid: 10798 components: - pos: -13.5,-27.5 parent: 2 type: Transform - - uid: 10570 + - uid: 10799 components: - pos: -14.5,-28.5 parent: 2 type: Transform - - uid: 10571 + - uid: 10800 components: - rot: 1.5707963267948966 rad pos: -14.5,-28.5 parent: 2 type: Transform - - uid: 10572 + - uid: 10801 components: - rot: 1.5707963267948966 rad pos: -15.5,-29.5 parent: 2 type: Transform - - uid: 10573 + - uid: 10802 components: - rot: 1.5707963267948966 rad pos: -15.5,-30.5 parent: 2 type: Transform - - uid: 10574 + - uid: 10803 components: - rot: 1.5707963267948966 rad pos: -15.5,-31.5 parent: 2 type: Transform - - uid: 10575 + - uid: 10804 components: - rot: 1.5707963267948966 rad pos: -14.5,-32.5 parent: 2 type: Transform - - uid: 10576 + - uid: 10805 components: - rot: 3.141592653589793 rad pos: -14.5,-32.5 parent: 2 type: Transform - - uid: 10577 + - uid: 10806 components: - rot: 3.141592653589793 rad pos: -13.5,-33.5 parent: 2 type: Transform - - uid: 10578 + - uid: 10807 components: - rot: -1.5707963267948966 rad pos: 12.5,-17.5 parent: 2 type: Transform - - uid: 10579 + - uid: 10808 components: - rot: 3.141592653589793 rad pos: 15.5,-18.5 parent: 2 type: Transform - - uid: 10580 + - uid: 10809 components: - rot: 3.141592653589793 rad pos: 13.5,-18.5 parent: 2 type: Transform - - uid: 10581 + - uid: 10810 components: - rot: 3.141592653589793 rad pos: 12.5,-18.5 parent: 2 type: Transform - - uid: 10582 + - uid: 10811 components: - rot: 3.141592653589793 rad pos: 14.5,-18.5 parent: 2 type: Transform - - uid: 10583 + - uid: 10812 components: - pos: 20.5,-15.5 parent: 2 type: Transform - - uid: 10584 + - uid: 10813 components: - rot: 1.5707963267948966 rad pos: -10.5,-23.5 parent: 2 type: Transform - - uid: 10585 + - uid: 10814 components: - rot: 1.5707963267948966 rad pos: -10.5,-24.5 parent: 2 type: Transform - - uid: 10586 + - uid: 10815 components: - rot: -1.5707963267948966 rad pos: -30.5,-2.5 parent: 2 type: Transform - - uid: 10587 + - uid: 10816 components: - rot: 3.141592653589793 rad pos: 19.5,-31.5 parent: 2 type: Transform - - uid: 10588 + - uid: 10817 components: - rot: -1.5707963267948966 rad pos: -30.5,-4.5 parent: 2 type: Transform - - uid: 10589 + - uid: 10818 components: - rot: 3.141592653589793 rad pos: 14.5,-31.5 parent: 2 type: Transform - - uid: 10590 + - uid: 10819 components: - rot: 1.5707963267948966 rad pos: -32.5,-2.5 parent: 2 type: Transform - - uid: 10591 + - uid: 10820 components: - rot: 1.5707963267948966 rad pos: 20.5,-14.5 parent: 2 type: Transform - - uid: 10592 + - uid: 10821 components: - rot: 1.5707963267948966 rad pos: -32.5,-3.5 parent: 2 type: Transform - - uid: 10593 + - uid: 10822 components: - rot: -1.5707963267948966 rad pos: -30.5,-3.5 parent: 2 type: Transform - - uid: 10594 + - uid: 10823 components: - pos: -19.5,-8.5 parent: 2 type: Transform - - uid: 10595 + - uid: 10824 components: - rot: -1.5707963267948966 rad pos: 23.5,-15.5 parent: 2 type: Transform - - uid: 10596 + - uid: 10825 components: - pos: 10.5,9.5 parent: 2 type: Transform - - uid: 10597 + - uid: 10826 components: - rot: 1.5707963267948966 rad pos: 14.5,-31.5 parent: 2 type: Transform - - uid: 10598 + - uid: 10827 components: - rot: 3.141592653589793 rad pos: 1.5,-31.5 parent: 2 type: Transform - - uid: 10599 + - uid: 10828 components: - rot: 3.141592653589793 rad pos: 0.5,-31.5 parent: 2 type: Transform - - uid: 10600 + - uid: 10829 components: - rot: 3.141592653589793 rad pos: -0.5,-31.5 parent: 2 type: Transform - - uid: 10601 + - uid: 10830 components: - rot: 3.141592653589793 rad pos: -1.5,-31.5 parent: 2 type: Transform - - uid: 10602 + - uid: 10831 components: - rot: 3.141592653589793 rad pos: -2.5,-31.5 parent: 2 type: Transform - - uid: 10603 + - uid: 10832 components: - rot: 3.141592653589793 rad pos: -3.5,-30.5 parent: 2 type: Transform - - uid: 10604 + - uid: 10833 components: - rot: 3.141592653589793 rad pos: 2.5,-30.5 parent: 2 type: Transform - - uid: 10605 + - uid: 10834 components: - rot: -1.5707963267948966 rad pos: 2.5,-30.5 parent: 2 type: Transform - - uid: 10606 + - uid: 10835 components: - rot: -1.5707963267948966 rad pos: 28.5,-20.5 parent: 2 type: Transform - - uid: 10607 + - uid: 10836 components: - rot: 3.141592653589793 rad pos: 18.5,-32.5 parent: 2 type: Transform - - uid: 10608 + - uid: 10837 components: - rot: 3.141592653589793 rad pos: 15.5,-32.5 parent: 2 type: Transform - - uid: 10609 + - uid: 10838 components: - rot: 3.141592653589793 rad pos: 16.5,-32.5 parent: 2 type: Transform - - uid: 10610 + - uid: 10839 components: - rot: 1.5707963267948966 rad pos: 20.5,-15.5 parent: 2 type: Transform - - uid: 10611 + - uid: 10840 components: - rot: 3.141592653589793 rad pos: -29.5,20.5 parent: 2 type: Transform - - uid: 10612 + - uid: 10841 components: - rot: 3.141592653589793 rad pos: -30.5,20.5 parent: 2 type: Transform - - uid: 10613 + - uid: 10842 components: - rot: 1.5707963267948966 rad pos: -35.5,25.5 parent: 2 type: Transform - - uid: 10614 + - uid: 10843 components: - rot: 1.5707963267948966 rad pos: -35.5,26.5 parent: 2 type: Transform - - uid: 10615 + - uid: 10844 components: - rot: 3.141592653589793 rad pos: -24.5,-11.5 parent: 2 type: Transform - - uid: 10616 + - uid: 10845 components: - rot: 3.141592653589793 rad pos: -23.5,-11.5 parent: 2 type: Transform - - uid: 10617 + - uid: 10846 components: - rot: 1.5707963267948966 rad pos: -22.5,-11.5 parent: 2 type: Transform - - uid: 10618 + - uid: 10847 components: - rot: 1.5707963267948966 rad pos: -22.5,-12.5 parent: 2 type: Transform - - uid: 10619 + - uid: 10848 components: - rot: 1.5707963267948966 rad pos: -22.5,-13.5 parent: 2 type: Transform - - uid: 10620 + - uid: 10849 components: - pos: -23.5,-13.5 parent: 2 type: Transform - - uid: 10621 + - uid: 10850 components: - pos: -24.5,-13.5 parent: 2 type: Transform - - uid: 10622 + - uid: 10851 components: - pos: 12.5,9.5 parent: 2 type: Transform - - uid: 10623 + - uid: 10852 components: - rot: 3.141592653589793 rad pos: -30.5,-10.5 parent: 2 type: Transform - - uid: 10624 + - uid: 10853 components: - rot: 1.5707963267948966 rad pos: -37.5,34.5 parent: 2 type: Transform - - uid: 10625 + - uid: 10854 components: - rot: 1.5707963267948966 rad pos: -37.5,33.5 parent: 2 type: Transform - - uid: 10626 + - uid: 10855 components: - rot: 1.5707963267948966 rad pos: -37.5,31.5 parent: 2 type: Transform - - uid: 10627 + - uid: 10856 components: - rot: 1.5707963267948966 rad pos: -37.5,30.5 parent: 2 type: Transform - - uid: 10628 + - uid: 10857 components: - pos: -34.5,37.5 parent: 2 type: Transform - - uid: 10629 + - uid: 10858 components: - pos: -33.5,37.5 parent: 2 type: Transform - - uid: 10630 + - uid: 10859 components: - pos: -30.5,37.5 parent: 2 type: Transform - - uid: 10631 + - uid: 10860 components: - pos: -31.5,37.5 parent: 2 type: Transform - - uid: 10632 + - uid: 10861 components: - rot: 3.141592653589793 rad pos: -34.5,-2.5 parent: 2 type: Transform - - uid: 10633 + - uid: 10862 components: - rot: 3.141592653589793 rad pos: -34.5,-10.5 parent: 2 type: Transform - - uid: 10634 + - uid: 10863 components: - pos: -34.5,-4.5 parent: 2 type: Transform - proto: WoodDoor entities: - - uid: 10635 + - uid: 10864 components: - pos: 26.5,-27.5 parent: 2 type: Transform - proto: Wrench entities: - - uid: 10636 + - uid: 10865 components: - pos: 3.4638815,29.61881 parent: 2 diff --git a/Resources/Maps/tortuga.yml b/Resources/Maps/tortuga.yml index 68ba4dc4a4..8caaa5d533 100644 --- a/Resources/Maps/tortuga.yml +++ b/Resources/Maps/tortuga.yml @@ -16,50 +16,50 @@ tilemap: 18: FloorCarpetClown 19: FloorCarpetOffice 21: FloorCaveDrought - 26: FloorDark - 27: FloorDarkDiagonal - 31: FloorDarkMono - 37: FloorDirt - 38: FloorEighties - 39: FloorElevatorShaft - 41: FloorFreezer - 42: FloorGlass - 43: FloorGold - 45: FloorGrassDark - 47: FloorGrassLight - 51: FloorGreenCircuit - 53: FloorHull - 54: FloorHullReinforced - 55: FloorHydro - 57: FloorKitchen - 58: FloorLaundry - 59: FloorLino - 60: FloorLowDesert - 61: FloorMetalDiamond - 62: FloorMime - 68: FloorPlanetGrass - 70: FloorRGlass - 71: FloorReinforced - 72: FloorReinforcedHardened - 73: FloorRockVault - 74: FloorShowroom - 80: FloorSilver - 83: FloorSteel - 86: FloorSteelDiagonal - 87: FloorSteelDiagonalMini - 88: FloorSteelDirty - 91: FloorSteelMono - 95: FloorTechMaint - 96: FloorTechMaint2 - 97: FloorTechMaint3 - 99: FloorWhite - 100: FloorWhiteDiagonal - 104: FloorWhiteMono - 109: FloorWood - 110: FloorWoodTile - 111: Lattice - 112: Plating - 113: PlatingAsteroid + 27: FloorDark + 28: FloorDarkDiagonal + 32: FloorDarkMono + 38: FloorDirt + 39: FloorEighties + 40: FloorElevatorShaft + 42: FloorFreezer + 43: FloorGlass + 44: FloorGold + 46: FloorGrassDark + 48: FloorGrassLight + 52: FloorGreenCircuit + 54: FloorHull + 55: FloorHullReinforced + 56: FloorHydro + 58: FloorKitchen + 59: FloorLaundry + 60: FloorLino + 61: FloorLowDesert + 62: FloorMetalDiamond + 63: FloorMime + 69: FloorPlanetGrass + 71: FloorRGlass + 72: FloorReinforced + 73: FloorReinforcedHardened + 74: FloorRockVault + 75: FloorShowroom + 81: FloorSilver + 84: FloorSteel + 87: FloorSteelDiagonal + 88: FloorSteelDiagonalMini + 89: FloorSteelDirty + 92: FloorSteelMono + 96: FloorTechMaint + 97: FloorTechMaint2 + 98: FloorTechMaint3 + 100: FloorWhite + 101: FloorWhiteDiagonal + 105: FloorWhiteMono + 110: FloorWood + 111: FloorWoodTile + 112: Lattice + 113: Plating + 114: PlatingAsteroid entities: - proto: "" entities: @@ -72,175 +72,175 @@ entities: - chunks: -1,-1: ind: -1,-1 - tiles: UwAAAAAAUwAAAAACUwAAAAADRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAABUwAAAAABRwAAAAAARwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAABUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAADUwAAAAADRwAAAAAARwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAADcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAARwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADRwAAAAAARwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABRwAAAAAARwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAADUwAAAAACRwAAAAAARwAAAAAAUwAAAAACUwAAAAABUwAAAAADRwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAAUwAAAAADRwAAAAAARwAAAAAAUwAAAAAAUwAAAAADUwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAUwAAAAACRwAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAABcAAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAADRwAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAcAAAAAAARwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAADRwAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAADcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAACcAAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAACcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAABRwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAAUwAAAAACUwAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAAA + tiles: VAAAAAAAVAAAAAACVAAAAAADSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAADVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAABVAAAAAABSAAAAAAASAAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAADVAAAAAABVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAADVAAAAAADSAAAAAAASAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAADcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAcQAAAAAASAAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAADSAAAAAAASAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAABSAAAAAAASAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAADVAAAAAACSAAAAAAASAAAAAAAVAAAAAACVAAAAAABVAAAAAADSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAAVAAAAAADSAAAAAAASAAAAAAAVAAAAAAAVAAAAAADVAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAVAAAAAACSAAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAACVAAAAAACVAAAAAABVAAAAAABVAAAAAABcQAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAADSAAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAABVAAAAAABVAAAAAAAcQAAAAAASAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAADSAAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAABVAAAAAADcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAADVAAAAAABVAAAAAABVAAAAAACVAAAAAADVAAAAAACcQAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAACcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAABSAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAAVAAAAAACVAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAABPQAAAAAAPQAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAADPQAAAAAAPQAAAAAAUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAACcAAAAAAAUwAAAAACUwAAAAABPQAAAAAAPQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAAARwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAACbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAADRwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAADcAAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAADXwAAAAAAXwAAAAAAYAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAPQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAYAAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAGgAAAAADGgAAAAACGgAAAAAAcAAAAAAAGgAAAAADGgAAAAAAUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAADcAAAAAAAGgAAAAABGgAAAAACUwAAAAABcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAADcAAAAAAAGgAAAAADGgAAAAADGgAAAAACcAAAAAAAGgAAAAABGgAAAAAC + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAABPgAAAAAAPgAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAABVAAAAAADPgAAAAAAPgAAAAAAVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAACcQAAAAAAVAAAAAACVAAAAAABPgAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAACVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAAASAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAADSAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAADcQAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAADVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAACVAAAAAACVAAAAAADYAAAAAAAYAAAAAAAYQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYQAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAABVAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAABcQAAAAAAGwAAAAADGwAAAAACGwAAAAAAcQAAAAAAGwAAAAADGwAAAAAAVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAAAcQAAAAAAGwAAAAABGwAAAAACGwAAAAADcQAAAAAAGwAAAAABGwAAAAACVAAAAAABcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAADcQAAAAAAGwAAAAADGwAAAAADGwAAAAACcQAAAAAAGwAAAAABGwAAAAAC version: 6 -1,0: ind: -1,0 - tiles: UwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALwAAAAACKgAAAAAAKgAAAAADLwAAAAADcAAAAAAALwAAAAAALwAAAAACLwAAAAACLwAAAAACLwAAAAAALwAAAAADPgAAAAAAPgAAAAAAPgAAAAAAcAAAAAAALwAAAAAALwAAAAACKgAAAAABKgAAAAADLwAAAAADLwAAAAABLwAAAAABLwAAAAABLwAAAAABLwAAAAAALwAAAAAALwAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAALwAAAAAALwAAAAADKgAAAAAAKgAAAAADLwAAAAABLwAAAAABLwAAAAABLwAAAAABLwAAAAAALwAAAAABLwAAAAABLwAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAALwAAAAACLwAAAAACKgAAAAACKgAAAAACLwAAAAAALwAAAAACLwAAAAAALwAAAAADLwAAAAABLwAAAAABLwAAAAAALwAAAAACPgAAAAAAPgAAAAAAPgAAAAAAcAAAAAAALwAAAAADLwAAAAABKgAAAAAAKgAAAAABLwAAAAAALwAAAAABLwAAAAADLwAAAAABLwAAAAADLwAAAAACLwAAAAABLwAAAAABPgAAAAAAPgAAAAAAPgAAAAAAcAAAAAAALwAAAAABLwAAAAADKgAAAAAAKgAAAAACLwAAAAADLwAAAAADLwAAAAADLwAAAAADLwAAAAADLwAAAAADLwAAAAADLwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALwAAAAACLwAAAAAAKgAAAAACKgAAAAABLwAAAAAALwAAAAAALwAAAAADLwAAAAACLwAAAAAALwAAAAABLwAAAAAALwAAAAACOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAALwAAAAADLwAAAAADKgAAAAACKgAAAAACLwAAAAADLwAAAAABLwAAAAADLwAAAAAALwAAAAADLwAAAAADLwAAAAADLwAAAAACOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAALwAAAAAALwAAAAACKgAAAAAAKgAAAAABLwAAAAADLwAAAAABLwAAAAADLwAAAAAALwAAAAACLwAAAAABLwAAAAACLwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAALwAAAAACLwAAAAABKgAAAAADKgAAAAADLwAAAAABLwAAAAABLwAAAAADLwAAAAADLwAAAAACLwAAAAABLwAAAAABLwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALwAAAAADLwAAAAACKgAAAAACKgAAAAABLwAAAAADLwAAAAABLwAAAAADcAAAAAAALwAAAAACLwAAAAACLwAAAAADLwAAAAACEgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAALwAAAAABLwAAAAADKgAAAAACKgAAAAADLwAAAAACLwAAAAACLwAAAAADcAAAAAAAGgAAAAACLwAAAAABLwAAAAABLwAAAAAD + tiles: VAAAAAABVAAAAAABVAAAAAACVAAAAAACVAAAAAABVAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAACVAAAAAACVAAAAAACVAAAAAACVAAAAAACVAAAAAACVAAAAAABVAAAAAABVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAABVAAAAAACVAAAAAACVAAAAAABVAAAAAADVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAMAAAAAACKwAAAAAAKwAAAAADMAAAAAADcQAAAAAAMAAAAAAAMAAAAAACMAAAAAACMAAAAAACMAAAAAAAMAAAAAADPwAAAAAAPwAAAAAAPwAAAAAAcQAAAAAAMAAAAAAAMAAAAAACKwAAAAABKwAAAAADMAAAAAADMAAAAAABMAAAAAABMAAAAAABMAAAAAABMAAAAAAAMAAAAAAAMAAAAAACPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAMAAAAAAAMAAAAAADKwAAAAAAKwAAAAADMAAAAAABMAAAAAABMAAAAAABMAAAAAABMAAAAAAAMAAAAAABMAAAAAABMAAAAAABPwAAAAAAPwAAAAAAPwAAAAAAPwAAAAAAMAAAAAACMAAAAAACKwAAAAACKwAAAAACMAAAAAAAMAAAAAACMAAAAAAAMAAAAAADMAAAAAABMAAAAAABMAAAAAAAMAAAAAACPwAAAAAAPwAAAAAAPwAAAAAAcQAAAAAAMAAAAAADMAAAAAABKwAAAAAAKwAAAAABMAAAAAAAMAAAAAABMAAAAAADMAAAAAABMAAAAAADMAAAAAACMAAAAAABMAAAAAABPwAAAAAAPwAAAAAAPwAAAAAAcQAAAAAAMAAAAAABMAAAAAADKwAAAAAAKwAAAAACMAAAAAADMAAAAAADMAAAAAADMAAAAAADMAAAAAADMAAAAAADMAAAAAADMAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAMAAAAAACMAAAAAAAKwAAAAACKwAAAAABMAAAAAAAMAAAAAAAMAAAAAADMAAAAAACMAAAAAAAMAAAAAABMAAAAAAAMAAAAAACPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAMAAAAAADMAAAAAADKwAAAAACKwAAAAACMAAAAAADMAAAAAABMAAAAAADMAAAAAAAMAAAAAADMAAAAAADMAAAAAADMAAAAAACPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAMAAAAAAAMAAAAAACKwAAAAAAKwAAAAABMAAAAAADMAAAAAABMAAAAAADMAAAAAAAMAAAAAACMAAAAAABMAAAAAACMAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAMAAAAAACMAAAAAABKwAAAAADKwAAAAADMAAAAAABMAAAAAABMAAAAAADMAAAAAADMAAAAAACMAAAAAABMAAAAAABMAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAMAAAAAADMAAAAAACKwAAAAACKwAAAAABMAAAAAADMAAAAAABMAAAAAADcQAAAAAAMAAAAAACMAAAAAACMAAAAAADMAAAAAACEgAAAAAAEgAAAAAAEgAAAAAAcQAAAAAAMAAAAAABMAAAAAADKwAAAAACKwAAAAADMAAAAAACMAAAAAACMAAAAAADcQAAAAAAGwAAAAACMAAAAAABMAAAAAABMAAAAAAD version: 6 0,-2: ind: 0,-2 - tiles: cAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAABcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAADUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAAUwAAAAACUwAAAAAARwAAAAAAUwAAAAABcAAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAAB + tiles: cQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAADVAAAAAABcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAADVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAADVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAAVAAAAAACVAAAAAAASAAAAAAAVAAAAAABcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAAAVAAAAAABVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAAB version: 6 1,-2: ind: 1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAABbgAAAAADbgAAAAADbgAAAAADbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAABUwAAAAADUwAAAAADbgAAAAADbgAAAAAAbgAAAAADbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAABVwAAAAACVwAAAAABVwAAAAABVwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAABcAAAAAAAVwAAAAABSgAAAAAASgAAAAAAUwAAAAACUwAAAAADUwAAAAABcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAACcAAAAAAAVwAAAAAASgAAAAAASgAAAAAAUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABRwAAAAAARwAAAAAAcAAAAAAARwAAAAAAUwAAAAAARwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAABUwAAAAABUwAAAAADcAAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAABbwAAAAADbwAAAAADbwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAABVAAAAAADVAAAAAADbwAAAAADbwAAAAAAbwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAABWAAAAAACWAAAAAABWAAAAAABWAAAAAADVAAAAAABVAAAAAACVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAABcQAAAAAAWAAAAAABSwAAAAAASwAAAAAAVAAAAAACVAAAAAADVAAAAAABcQAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAAAVAAAAAADVAAAAAACVAAAAAACcQAAAAAAWAAAAAAASwAAAAAASwAAAAAAVAAAAAAAVAAAAAACVAAAAAACcQAAAAAAVAAAAAAAVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABSAAAAAAASAAAAAAAcQAAAAAASAAAAAAAVAAAAAAASAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAADVAAAAAABVAAAAAADVAAAAAADVAAAAAACVAAAAAABVAAAAAABVAAAAAADcQAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAABVAAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAADPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: AAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABWAAAAAAAYQAAAAAAWAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAPQAAAAAAPQAAAAAAYQAAAAADRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWwAAAAACWwAAAAADWwAAAAAAPQAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWwAAAAABWwAAAAADWwAAAAADPQAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWwAAAAADWwAAAAABWwAAAAACWwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWwAAAAAAWwAAAAAAWwAAAAADPQAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWwAAAAADWwAAAAACWwAAAAABPQAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWwAAAAAAWwAAAAABWwAAAAADWwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWwAAAAADWwAAAAABWwAAAAAAWwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAWwAAAAABWwAAAAACWwAAAAABWwAAAAABRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABWQAAAAAAYgAAAAAAWQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAWQAAAAAAPgAAAAAAPgAAAAAAYgAAAAADSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXAAAAAACXAAAAAADXAAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXAAAAAABXAAAAAADXAAAAAADPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXAAAAAADXAAAAAABXAAAAAACXAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXAAAAAAAXAAAAAAAXAAAAAADPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXAAAAAADXAAAAAACXAAAAAABPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXAAAAAAAXAAAAAABXAAAAAADXAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAXAAAAAADXAAAAAABXAAAAAAAXAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAXAAAAAABXAAAAAACXAAAAAABXAAAAAABSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: UwAAAAADPQAAAAAAPQAAAAAAPQAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAHwAAAAACHwAAAAADHwAAAAADHwAAAAABHwAAAAABUwAAAAABPQAAAAAAPQAAAAAAPQAAAAAAUwAAAAACUwAAAAADUwAAAAAAPQAAAAAAPQAAAAAAUwAAAAADUwAAAAABHwAAAAACHwAAAAACHwAAAAACHwAAAAAAHwAAAAABUwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAUwAAAAADUwAAAAADUwAAAAACPQAAAAAAPQAAAAAAUwAAAAAAUwAAAAABPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAACPQAAAAAAPQAAAAAAUwAAAAADUwAAAAADPQAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAACUwAAAAABPQAAAAAAHwAAAAADHwAAAAACHwAAAAADHwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAACPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAACRwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAPQAAAAAAPQAAAAAARwAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAABXwAAAAAAPQAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAABPQAAAAAAPQAAAAAAXwAAAAAAYQAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAABPQAAAAAAPQAAAAAAUwAAAAADcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAAAUwAAAAACPQAAAAAAPQAAAAAAPQAAAAAAUwAAAAAAUwAAAAADGgAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAACPQAAAAAAPQAAAAAAPQAAAAAAUwAAAAADUwAAAAAAGgAAAAABcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAGgAAAAACcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAAD + tiles: VAAAAAADPgAAAAAAPgAAAAAAPgAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAABVAAAAAAAIAAAAAACIAAAAAADIAAAAAADIAAAAAABIAAAAAABVAAAAAABPgAAAAAAPgAAAAAAPgAAAAAAVAAAAAACVAAAAAADVAAAAAAAPgAAAAAAPgAAAAAAVAAAAAADVAAAAAABIAAAAAACIAAAAAACIAAAAAACIAAAAAAAIAAAAAABVAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAVAAAAAADVAAAAAADVAAAAAACPgAAAAAAPgAAAAAAVAAAAAAAVAAAAAABPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAACVAAAAAACVAAAAAACPgAAAAAAPgAAAAAAVAAAAAADVAAAAAADPgAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAACVAAAAAABVAAAAAACVAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAABPgAAAAAAIAAAAAADIAAAAAACIAAAAAADIAAAAAACVAAAAAACVAAAAAADVAAAAAABVAAAAAACVAAAAAACVAAAAAADVAAAAAABVAAAAAAAVAAAAAABVAAAAAABVAAAAAACPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAACVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAADVAAAAAABVAAAAAABVAAAAAADVAAAAAACSAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAADVAAAAAACVAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAPgAAAAAAPgAAAAAASAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAABYAAAAAAAPgAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAABPgAAAAAAPgAAAAAAYAAAAAAAYgAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAABPgAAAAAAPgAAAAAAVAAAAAADcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAAAVAAAAAACPgAAAAAAPgAAAAAAPgAAAAAAVAAAAAAAVAAAAAADGwAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAACPgAAAAAAPgAAAAAAPgAAAAAAVAAAAAADVAAAAAAAGwAAAAABcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAGwAAAAACcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAAD version: 6 2,-1: ind: 2,-1 - tiles: HwAAAAACWwAAAAACWwAAAAAAWwAAAAABWwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHwAAAAABWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAADRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAWwAAAAACWwAAAAADWwAAAAADWwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAHwAAAAABHwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAHwAAAAACHwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABRwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAHwAAAAACHwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAHwAAAAADHwAAAAABUwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACPQAAAAAAPQAAAAAAPQAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAABPQAAAAAAPQAAAAAAPQAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAABRwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAbwAAAAAAbwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAADcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAUwAAAAACUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAABXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAA + tiles: IAAAAAACXAAAAAACXAAAAAAAXAAAAAABXAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAABXAAAAAAAXAAAAAAAXAAAAAAAXAAAAAADSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAXAAAAAACXAAAAAADXAAAAAADXAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAIAAAAAABIAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAIAAAAAACIAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAIAAAAAACIAAAAAABVAAAAAACVAAAAAACVAAAAAABVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAIAAAAAADIAAAAAABVAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAACPgAAAAAAPgAAAAAAPgAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAABPgAAAAAAPgAAAAAAPgAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAABVAAAAAAAVAAAAAADVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAABSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAcAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAACVAAAAAADcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAABVAAAAAABcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVAAAAAACVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAA version: 6 1,0: ind: 1,0 - tiles: GgAAAAABcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAPQAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAPQAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAPQAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAPQAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAYQAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAACcAAAAAAAOwAAAAAAcAAAAAAAPQAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAABcAAAAAAAOwAAAAAAXwAAAAAAYQAAAAACXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAYwAAAAACcAAAAAAAXwAAAAAAYQAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAADXwAAAAAAXwAAAAAAYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAXwAAAAAAYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAYQAAAAAAYQAAAAABYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAAARwAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAADRwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAADRwAAAAAAUwAAAAAAYAAAAAAAEwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAACcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAcAAAAAAAWAAAAAAAUwAAAAABEwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAABcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAACWAAAAAAA + tiles: GwAAAAABcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAPAAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYgAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAABVAAAAAACcQAAAAAAPAAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAABcQAAAAAAPAAAAAAAYAAAAAAAYgAAAAACYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAABVAAAAAAAcQAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAZAAAAAACcQAAAAAAYAAAAAAAYgAAAAADcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAACVAAAAAADVAAAAAADYAAAAAAAYAAAAAAAZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAADVAAAAAACVAAAAAAAcQAAAAAAYAAAAAAAZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAADcQAAAAAAYgAAAAAAYgAAAAABZAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAADVAAAAAAAVAAAAAAASAAAAAAAVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAADSAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAADSAAAAAAAVAAAAAAAYQAAAAAAEwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAACcQAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAcQAAAAAAWQAAAAAAVAAAAAABEwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAABcQAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAACWQAAAAAA version: 6 2,0: ind: 2,0 - tiles: RwAAAAAAOwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAWAAAAAAAYQAAAAABcAAAAAAAUwAAAAAADgAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAUwAAAAADWAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAYQAAAAAAUwAAAAABWAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAWAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAACYQAAAAADcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAWAAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAADWAAAAAAAcAAAAAAAYQAAAAADYQAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAUwAAAAABcAAAAAAAUwAAAAAAUwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAYQAAAAADWAAAAAAAUwAAAAACYQAAAAADYQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAPQAAAAAARwAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAYQAAAAACXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAACWAAAAAAAYQAAAAADWAAAAAAAcAAAAAAAUwAAAAADPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAACYQAAAAABcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAABWAAAAAAAUwAAAAACUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACWAAAAAAAcAAAAAAAUwAAAAAA + tiles: SAAAAAAAPAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAWQAAAAAAYgAAAAABcQAAAAAAVAAAAAAADgAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAVAAAAAADWQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYgAAAAAAVAAAAAABWQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAWQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAACYgAAAAADcQAAAAAAVAAAAAACVAAAAAADcQAAAAAAVAAAAAACVAAAAAACcQAAAAAAWQAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAADWQAAAAAAcQAAAAAAYgAAAAADYgAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAVAAAAAABcQAAAAAAVAAAAAAAVAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAYgAAAAADWQAAAAAAVAAAAAACYgAAAAADYgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAPgAAAAAASAAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAYgAAAAACYAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACWQAAAAAAYgAAAAADWQAAAAAAcQAAAAAAVAAAAAADPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAABVAAAAAACYgAAAAABcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAABWQAAAAAAVAAAAAACVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAACWQAAAAAAcQAAAAAAVAAAAAAA version: 6 1,1: ind: 1,1 - tiles: EwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAEwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAACcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAACcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAACcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAARwAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAADUwAAAAACcAAAAAAARwAAAAAAUwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAARwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACRwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAACcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAACGgAAAAADRwAAAAAARwAAAAAAGgAAAAACGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAGgAAAAADGgAAAAAAGgAAAAADGgAAAAACGgAAAAACGgAAAAAAGgAAAAABGgAAAAACGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAAAGgAAAAADGgAAAAAAGgAAAAACGgAAAAAAGgAAAAACGgAAAAAAGgAAAAABGgAAAAABGgAAAAADcAAAAAAAXwAAAAAAYAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAKgAAAAADKgAAAAABKgAAAAAAKgAAAAABKgAAAAAAKgAAAAABKgAAAAAAGgAAAAADGgAAAAABcAAAAAAAXwAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAADGgAAAAADGgAAAAADcAAAAAAAKgAAAAAAGgAAAAACGgAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAACDAAAAAACcAAAAAAAKgAAAAADGgAAAAAAGgAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAADAAAAAACDAAAAAACDAAAAAACDAAAAAAADAAAAAAAcAAAAAAAKgAAAAAAGgAAAAABGgAAAAABcAAAAAAAXwAAAAAAYAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAA + tiles: EwAAAAAAVAAAAAACcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAEwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAACcQAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAACcQAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAACcQAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAADVAAAAAACcQAAAAAAVAAAAAAAVAAAAAACVAAAAAAASAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAADVAAAAAACcQAAAAAASAAAAAAAVAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAAASAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAADVAAAAAABVAAAAAACVAAAAAACVAAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACSAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAACVAAAAAACVAAAAAACVAAAAAACVAAAAAADVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAADVAAAAAACcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAACGwAAAAADSAAAAAAASAAAAAAAGwAAAAACGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAAAGwAAAAADGwAAAAAAGwAAAAADGwAAAAACGwAAAAACGwAAAAAAGwAAAAABGwAAAAACGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAAAGwAAAAADGwAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAAAGwAAAAABGwAAAAABGwAAAAADcQAAAAAAYAAAAAAAYQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAAAKwAAAAADKwAAAAABKwAAAAAAKwAAAAABKwAAAAAAKwAAAAABKwAAAAAAGwAAAAADGwAAAAABcQAAAAAAYAAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAABGwAAAAADGwAAAAADGwAAAAADcQAAAAAAKwAAAAAAGwAAAAACGwAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAADAAAAAAADAAAAAAADAAAAAAADAAAAAACDAAAAAACcQAAAAAAKwAAAAADGwAAAAAAGwAAAAABcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAADAAAAAACDAAAAAACDAAAAAACDAAAAAAADAAAAAAAcQAAAAAAKwAAAAAAGwAAAAABGwAAAAABcQAAAAAAYAAAAAAAYQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARgAAAAABRgAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARgAAAAADRgAAAAADcAAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARgAAAAACRgAAAAABcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAADUwAAAAABUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARgAAAAADRgAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAACUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARgAAAAADRgAAAAABRwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAABUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARgAAAAAARgAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAACUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARgAAAAACRgAAAAABRwAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAABGwAAAAACGwAAAAACGwAAAAAAGwAAAAADGwAAAAAARwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAAAGwAAAAADRwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAGwAAAAACGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAACRwAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAADGwAAAAADGwAAAAACGwAAAAACcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAADRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAADRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARwAAAAABRwAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARwAAAAADRwAAAAADcQAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAAAVAAAAAADVAAAAAABVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARwAAAAACRwAAAAABcQAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAADVAAAAAABVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARwAAAAADRwAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAACVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARwAAAAADRwAAAAABSAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAABVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARwAAAAAARwAAAAACVAAAAAABVAAAAAADVAAAAAABVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARwAAAAACRwAAAAABSAAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAABVAAAAAACVAAAAAABHAAAAAACHAAAAAACHAAAAAAAHAAAAAADHAAAAAAASAAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAAAHAAAAAACHAAAAAAAHAAAAAACHAAAAAAAHAAAAAADSAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAHAAAAAACHAAAAAAAHAAAAAAAHAAAAAAAHAAAAAACSAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAACVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHAAAAAADHAAAAAADHAAAAAACHAAAAAACcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAACVAAAAAADVAAAAAACVAAAAAABVAAAAAAAVAAAAAACVAAAAAADSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAACVAAAAAABVAAAAAABVAAAAAABVAAAAAADVAAAAAADSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAACVAAAAAADVAAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAADVAAAAAABVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: cAAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAARgAAAAACRgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAABcAAAAAAARgAAAAAARgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABcAAAAAAARgAAAAACRgAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAACcAAAAAAARgAAAAACRgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAACRwAAAAAARgAAAAACRgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAADUwAAAAACUwAAAAADRgAAAAABRgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAABUwAAAAAAUwAAAAABRwAAAAAARgAAAAADRgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAABRwAAAAAAGwAAAAAAGwAAAAACGwAAAAACGwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADRwAAAAAAGwAAAAACGwAAAAACGwAAAAAAGwAAAAABWwAAAAACWwAAAAABWwAAAAADWwAAAAACcAAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAAARwAAAAAAGwAAAAADGwAAAAABGwAAAAADGwAAAAAAWwAAAAABWwAAAAADWwAAAAADWwAAAAADcAAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAGwAAAAADGwAAAAAAGwAAAAACWwAAAAADWwAAAAACWwAAAAACWwAAAAAAWwAAAAABUwAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAADUwAAAAAAUwAAAAABWwAAAAADWwAAAAAAWwAAAAACWwAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAAOQAAAAAAOQAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAC + tiles: cQAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAARwAAAAACRwAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAABVAAAAAABVAAAAAACVAAAAAABcQAAAAAARwAAAAAARwAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABcQAAAAAARwAAAAACRwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAADVAAAAAADVAAAAAADVAAAAAACVAAAAAACcQAAAAAARwAAAAACRwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAADVAAAAAADVAAAAAACVAAAAAAAVAAAAAACSAAAAAAARwAAAAACRwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAADVAAAAAACVAAAAAADVAAAAAACVAAAAAADRwAAAAABRwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAABVAAAAAADVAAAAAABVAAAAAAAVAAAAAABSAAAAAAARwAAAAADRwAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAABVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAABSAAAAAAAHAAAAAAAHAAAAAACHAAAAAACHAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAACVAAAAAADSAAAAAAAHAAAAAACHAAAAAACHAAAAAAAHAAAAAABXAAAAAACXAAAAAABXAAAAAADXAAAAAACcQAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAACVAAAAAABVAAAAAAASAAAAAAAHAAAAAADHAAAAAABHAAAAAADHAAAAAAAXAAAAAABXAAAAAADXAAAAAADXAAAAAADcQAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAHAAAAAADHAAAAAAAHAAAAAACXAAAAAADXAAAAAACXAAAAAACXAAAAAAAXAAAAAABVAAAAAADVAAAAAADVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAADVAAAAAAAVAAAAAABXAAAAAADXAAAAAAAXAAAAAACXAAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAACVAAAAAABVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAACVAAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAC version: 6 -2,-1: ind: -2,-1 - tiles: XwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAcAAAAAAAUwAAAAACUwAAAAACXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAARwAAAAAAUwAAAAACUwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAARwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAcAAAAAAAUwAAAAACUwAAAAABXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAUwAAAAABUwAAAAABLwAAAAADLwAAAAAALwAAAAABLwAAAAABLwAAAAAALwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAUwAAAAABUwAAAAACLQAAAAADLQAAAAABLQAAAAACLwAAAAACLwAAAAAALwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAUwAAAAADUwAAAAACLQAAAAAAFQAAAAACLQAAAAADLQAAAAABLwAAAAAALwAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAUwAAAAADUwAAAAABFQAAAAAFFQAAAAAAFQAAAAABLQAAAAACLQAAAAAALwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAABFQAAAAACFQAAAAAEFQAAAAABFQAAAAAFLQAAAAADLwAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAFQAAAAAHFQAAAAAAFQAAAAADLQAAAAADLQAAAAACLwAAAAABcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAABLQAAAAABFQAAAAADLQAAAAACLQAAAAABLwAAAAAALwAAAAABcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAADUwAAAAADLQAAAAABLQAAAAADLQAAAAACLwAAAAADLwAAAAABLwAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAACUwAAAAACLwAAAAACLwAAAAAALwAAAAADLwAAAAABLwAAAAACLwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAARwAAAAAAUwAAAAADRwAAAAAAcAAAAAAAcAAAAAAARwAAAAAA + tiles: YAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAVAAAAAACVAAAAAACYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAASAAAAAAAVAAAAAACVAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAASAAAAAAAVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAVAAAAAACVAAAAAABYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAABVAAAAAABMAAAAAADMAAAAAAAMAAAAAABMAAAAAABMAAAAAAAMAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAABVAAAAAACLgAAAAADLgAAAAABLgAAAAACMAAAAAACMAAAAAAAMAAAAAADcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAVAAAAAADVAAAAAACLgAAAAAAFQAAAAACLgAAAAADLgAAAAABMAAAAAAAMAAAAAABcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAADVAAAAAABFQAAAAAFFQAAAAAAFQAAAAABLgAAAAACLgAAAAAAMAAAAAADcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAABVAAAAAABFQAAAAACFQAAAAAEFQAAAAABFQAAAAAFLgAAAAADMAAAAAACcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAFQAAAAAHFQAAAAAAFQAAAAADLgAAAAADLgAAAAACMAAAAAABcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAABVAAAAAABLgAAAAABFQAAAAADLgAAAAACLgAAAAABMAAAAAAAMAAAAAABcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAADVAAAAAADLgAAAAABLgAAAAADLgAAAAACMAAAAAADMAAAAAABMAAAAAADcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAACVAAAAAACMAAAAAACMAAAAAAAMAAAAAADMAAAAAABMAAAAAACMAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAASAAAAAAAVAAAAAADSAAAAAAAcQAAAAAAcQAAAAAASAAAAAAA version: 6 -3,-1: ind: -3,-1 - tiles: cAAAAAAAbQAAAAACbQAAAAACbQAAAAADbQAAAAADbQAAAAACbQAAAAAAcAAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAbQAAAAADbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACcAAAAAAAbQAAAAAAcAAAAAAASQAAAAAASQAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAAAbQAAAAABbQAAAAABbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAbQAAAAACbQAAAAAAbQAAAAADbQAAAAAAbQAAAAABbQAAAAABbQAAAAABbQAAAAAAbQAAAAACbQAAAAADbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAbQAAAAADbQAAAAACbQAAAAABbQAAAAADbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAADbQAAAAACbQAAAAADbQAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbQAAAAACcAAAAAAAbQAAAAACbQAAAAABbQAAAAADbQAAAAADbQAAAAABbQAAAAABbQAAAAABbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAAcAAAAAAAbQAAAAACbQAAAAACbQAAAAADbQAAAAADbQAAAAADbQAAAAAAbQAAAAABbQAAAAADcAAAAAAALwAAAAAALwAAAAAALwAAAAAAcAAAAAAAbQAAAAABbQAAAAADcAAAAAAAbQAAAAAAbQAAAAACbQAAAAADbQAAAAAAbQAAAAAAbQAAAAABbQAAAAACbQAAAAABRwAAAAAALwAAAAABLwAAAAAALwAAAAACcAAAAAAAbQAAAAABbQAAAAADcAAAAAAAbQAAAAACbQAAAAADbQAAAAABbQAAAAABbQAAAAADbQAAAAAAbQAAAAAAbQAAAAACbQAAAAABLwAAAAACLwAAAAABLQAAAAADcAAAAAAAbQAAAAACbQAAAAABbQAAAAAAbQAAAAAAbQAAAAADbQAAAAABbQAAAAADbQAAAAABbQAAAAABbQAAAAACbQAAAAACRwAAAAAALwAAAAADLQAAAAABLQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAUwAAAAADRwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALwAAAAADLQAAAAABFQAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAABUwAAAAABcAAAAAAALwAAAAADLQAAAAABLQAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAADRwAAAAAALwAAAAAALwAAAAAALQAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADLwAAAAABLwAAAAADLwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAAARwAAAAAALwAAAAADLwAAAAACLwAAAAACGgAAAAADGgAAAAADGgAAAAACGgAAAAADGgAAAAADGgAAAAACGgAAAAADcAAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: cQAAAAAAbgAAAAACbgAAAAACbgAAAAADbgAAAAADbgAAAAACbgAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAbgAAAAADbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACcQAAAAAAbgAAAAAAcQAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABbgAAAAAAbgAAAAABbgAAAAABbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAbgAAAAACbgAAAAAAbgAAAAADbgAAAAAAbgAAAAABbgAAAAABbgAAAAABbgAAAAAAbgAAAAACbgAAAAADbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAbgAAAAADbgAAAAACbgAAAAABbgAAAAADbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAADbgAAAAACbgAAAAADbgAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAbgAAAAACcQAAAAAAbgAAAAACbgAAAAABbgAAAAADbgAAAAADbgAAAAABbgAAAAABbgAAAAABbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAAcQAAAAAAbgAAAAACbgAAAAACbgAAAAADbgAAAAADbgAAAAADbgAAAAAAbgAAAAABbgAAAAADcQAAAAAAMAAAAAAAMAAAAAAAMAAAAAAAcQAAAAAAbgAAAAABbgAAAAADcQAAAAAAbgAAAAAAbgAAAAACbgAAAAADbgAAAAAAbgAAAAAAbgAAAAABbgAAAAACbgAAAAABSAAAAAAAMAAAAAABMAAAAAAAMAAAAAACcQAAAAAAbgAAAAABbgAAAAADcQAAAAAAbgAAAAACbgAAAAADbgAAAAABbgAAAAABbgAAAAADbgAAAAAAbgAAAAAAbgAAAAACbgAAAAABMAAAAAACMAAAAAABLgAAAAADcQAAAAAAbgAAAAACbgAAAAABbgAAAAAAbgAAAAAAbgAAAAADbgAAAAABbgAAAAADbgAAAAABbgAAAAABbgAAAAACbgAAAAACSAAAAAAAMAAAAAADLgAAAAABLgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAVAAAAAADSAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAMAAAAAADLgAAAAABFQAAAAADVAAAAAACVAAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAABVAAAAAABcQAAAAAAMAAAAAADLgAAAAABLgAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAADVAAAAAADVAAAAAADVAAAAAADVAAAAAACVAAAAAAAVAAAAAACVAAAAAADVAAAAAADSAAAAAAAMAAAAAAAMAAAAAAALgAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAAAVAAAAAAAVAAAAAACVAAAAAADMAAAAAABMAAAAAADMAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAAASAAAAAAAMAAAAAADMAAAAAACMAAAAAACGwAAAAADGwAAAAADGwAAAAACGwAAAAADGwAAAAADGwAAAAACGwAAAAADcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA version: 6 -3,0: ind: -3,0 - tiles: GgAAAAACGgAAAAADGgAAAAADRwAAAAAAGgAAAAAAGgAAAAADGgAAAAABcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABGgAAAAABGgAAAAAAGgAAAAADcAAAAAAAGgAAAAAAGgAAAAADGgAAAAADcAAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAACKgAAAAACUwAAAAABKgAAAAAAGgAAAAACGgAAAAACGgAAAAABcAAAAAAARwAAAAAAGgAAAAAARwAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAKgAAAAABUwAAAAACGgAAAAADGgAAAAAAGgAAAAADcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABKgAAAAACUwAAAAACUwAAAAACUwAAAAABKgAAAAADUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAADYwAAAAACcAAAAAAAUwAAAAABUwAAAAADUwAAAAACKgAAAAACUwAAAAADUwAAAAACUwAAAAADUwAAAAACcAAAAAAAGgAAAAAAGgAAAAADGgAAAAACYwAAAAAAYwAAAAADYwAAAAABcAAAAAAAUwAAAAADKgAAAAACUwAAAAABUwAAAAAAUwAAAAACKgAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAACYwAAAAACYwAAAAABYwAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAAAKgAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAADcAAAAAAAGgAAAAACGgAAAAABGgAAAAAAYwAAAAAAYwAAAAAAYwAAAAABcAAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAACcAAAAAAARwAAAAAAYwAAAAADYwAAAAADRwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAADGgAAAAADYwAAAAADYwAAAAADYwAAAAAAYwAAAAABYwAAAAABYwAAAAAAYwAAAAABYwAAAAACcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAACGgAAAAACYwAAAAACYwAAAAACYwAAAAACYwAAAAACYwAAAAACYwAAAAAAYwAAAAAAYwAAAAACcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAABGgAAAAACYwAAAAACYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAACYwAAAAAAYwAAAAADYwAAAAABcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAABGgAAAAAARwAAAAAARwAAAAAAcAAAAAAAYwAAAAABYwAAAAADYwAAAAADYwAAAAAAYwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAABGgAAAAAAYwAAAAACYwAAAAABRwAAAAAAYwAAAAACYwAAAAABYwAAAAADYwAAAAADYwAAAAADcAAAAAAAXwAAAAAAXwAAAAAAUwAAAAABGgAAAAAAGgAAAAAAGgAAAAACGgAAAAACYwAAAAACYwAAAAACYwAAAAABYwAAAAADYwAAAAABYwAAAAACYwAAAAACYwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAGgAAAAABGgAAAAADGgAAAAAAGgAAAAAC + tiles: GwAAAAACGwAAAAADGwAAAAADSAAAAAAAGwAAAAAAGwAAAAADGwAAAAABcQAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAABGwAAAAABGwAAAAAAGwAAAAADcQAAAAAAGwAAAAAAGwAAAAADGwAAAAADcQAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAACKwAAAAACVAAAAAABKwAAAAAAGwAAAAACGwAAAAACGwAAAAABcQAAAAAASAAAAAAAGwAAAAAASAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAKwAAAAABVAAAAAACGwAAAAADGwAAAAAAGwAAAAADcQAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABKwAAAAACVAAAAAACVAAAAAACVAAAAAABKwAAAAADVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAACZAAAAAADZAAAAAACcQAAAAAAVAAAAAABVAAAAAADVAAAAAACKwAAAAACVAAAAAADVAAAAAACVAAAAAADVAAAAAACcQAAAAAAGwAAAAAAGwAAAAADGwAAAAACZAAAAAAAZAAAAAADZAAAAAABcQAAAAAAVAAAAAADKwAAAAACVAAAAAABVAAAAAAAVAAAAAACKwAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAGwAAAAADGwAAAAACGwAAAAACZAAAAAACZAAAAAABZAAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAAAKwAAAAABVAAAAAACVAAAAAADVAAAAAAAVAAAAAADcQAAAAAAGwAAAAACGwAAAAABGwAAAAAAZAAAAAAAZAAAAAAAZAAAAAABcQAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAACVAAAAAADVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAACcQAAAAAASAAAAAAAZAAAAAADZAAAAAADSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAACGwAAAAADGwAAAAADZAAAAAADZAAAAAADZAAAAAAAZAAAAAABZAAAAAABZAAAAAAAZAAAAAABZAAAAAACcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAGwAAAAAAGwAAAAADGwAAAAACGwAAAAACZAAAAAACZAAAAAACZAAAAAACZAAAAAACZAAAAAACZAAAAAAAZAAAAAAAZAAAAAACcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAABGwAAAAACZAAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAACZAAAAAAAZAAAAAADZAAAAAABcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAGwAAAAADGwAAAAADGwAAAAABGwAAAAAASAAAAAAASAAAAAAAcQAAAAAAZAAAAAABZAAAAAADZAAAAAADZAAAAAAAZAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAABGwAAAAAAZAAAAAACZAAAAAABSAAAAAAAZAAAAAACZAAAAAABZAAAAAADZAAAAAADZAAAAAADcQAAAAAAYAAAAAAAYAAAAAAAVAAAAAABGwAAAAAAGwAAAAAAGwAAAAACGwAAAAACZAAAAAACZAAAAAACZAAAAAABZAAAAAADZAAAAAABZAAAAAACZAAAAAACZAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAGwAAAAABGwAAAAADGwAAAAAAGwAAAAAC version: 6 -4,-1: ind: -4,-1 - tiles: NQAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAACGgAAAAAAGgAAAAABGgAAAAAAGgAAAAABGgAAAAADNQAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAAAGgAAAAABGgAAAAABGgAAAAACGgAAAAABGgAAAAADGgAAAAADGgAAAAACGgAAAAACGgAAAAACGgAAAAADRwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAABGgAAAAAAGgAAAAABGgAAAAACGgAAAAABGgAAAAAAGgAAAAACRwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAABGgAAAAADGgAAAAABcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAGgAAAAAAGgAAAAACGgAAAAADcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAGgAAAAACGgAAAAABcAAAAAAAGgAAAAABGgAAAAABGgAAAAACGgAAAAACGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAAAGgAAAAAAGgAAAAADGgAAAAACGgAAAAACGgAAAAAAGgAAAAAAGgAAAAABGgAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAACGgAAAAACGgAAAAAAGgAAAAACGgAAAAABGgAAAAADGgAAAAADGgAAAAAAGgAAAAAAGgAAAAABcAAAAAAAGgAAAAADGgAAAAACGgAAAAABGgAAAAADGgAAAAABGgAAAAACGgAAAAABGgAAAAAAGgAAAAABGgAAAAADGgAAAAACGgAAAAAAGgAAAAABGgAAAAADRwAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAACGgAAAAABGgAAAAADGgAAAAAAGgAAAAACGgAAAAADGgAAAAABGgAAAAACGgAAAAADGgAAAAADGgAAAAADGgAAAAACDwAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAADRwAAAAAAUwAAAAACRwAAAAAAUwAAAAABRwAAAAAARwAAAAAARwAAAAAARwAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAB + tiles: NgAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAGwAAAAADGwAAAAACGwAAAAACGwAAAAAAGwAAAAABGwAAAAAAGwAAAAABGwAAAAADNgAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAAAGwAAAAABGwAAAAABGwAAAAACGwAAAAABGwAAAAADGwAAAAADGwAAAAACGwAAAAACGwAAAAACGwAAAAADSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAGwAAAAADGwAAAAADGwAAAAABGwAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAAAGwAAAAACSAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAABGwAAAAADGwAAAAABcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAGwAAAAAAGwAAAAACGwAAAAADcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAGwAAAAACGwAAAAABcQAAAAAAGwAAAAABGwAAAAABGwAAAAACGwAAAAACGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAGwAAAAABGwAAAAABGwAAAAAAGwAAAAAAGwAAAAADGwAAAAACGwAAAAACGwAAAAAAGwAAAAAAGwAAAAABGwAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAACGwAAAAAAGwAAAAACGwAAAAABGwAAAAADGwAAAAADGwAAAAAAGwAAAAAAGwAAAAABcQAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAADGwAAAAABGwAAAAACGwAAAAABGwAAAAAAGwAAAAABGwAAAAADGwAAAAACGwAAAAAAGwAAAAABGwAAAAADSAAAAAAAcQAAAAAAGwAAAAAAGwAAAAACGwAAAAACGwAAAAABGwAAAAADGwAAAAAAGwAAAAACGwAAAAADGwAAAAABGwAAAAACGwAAAAADGwAAAAADGwAAAAADGwAAAAACDwAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAADSAAAAAAAVAAAAAACSAAAAAAAVAAAAAABSAAAAAAASAAAAAAASAAAAAAASAAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAACVAAAAAABVAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAADVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAADVAAAAAABVAAAAAADVAAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAB version: 6 -4,0: ind: -4,0 - tiles: YwAAAAAAYwAAAAAAYwAAAAACcAAAAAAAYwAAAAACYwAAAAACYwAAAAAAYwAAAAABYwAAAAABYwAAAAACYwAAAAAAYwAAAAACYwAAAAACYwAAAAACcAAAAAAAGgAAAAAAYwAAAAAAYwAAAAACYwAAAAACcAAAAAAAYwAAAAAAYwAAAAAAYwAAAAACYwAAAAABYwAAAAADYwAAAAABYwAAAAABYwAAAAADYwAAAAADYwAAAAAAcAAAAAAAGgAAAAACYwAAAAACYwAAAAACYwAAAAABYwAAAAACYwAAAAACYwAAAAABYwAAAAADYwAAAAABYwAAAAAAYwAAAAAAYwAAAAACYwAAAAACYwAAAAABYwAAAAABcAAAAAAAGgAAAAABYwAAAAADYwAAAAACYwAAAAACcAAAAAAAYwAAAAAAYwAAAAADYwAAAAAAYwAAAAABYwAAAAABYwAAAAADYwAAAAADYwAAAAACYwAAAAADYwAAAAADGgAAAAAAGgAAAAABYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAABYwAAAAABYwAAAAADYwAAAAADYwAAAAABcAAAAAAAcAAAAAAAYwAAAAADcAAAAAAAaAAAAAADaAAAAAADaAAAAAABaAAAAAACaAAAAAADRwAAAAAAYwAAAAACYwAAAAACYwAAAAAAYwAAAAADYwAAAAABYwAAAAADcAAAAAAAYwAAAAADYwAAAAADcAAAAAAAaAAAAAADaAAAAAABaAAAAAABaAAAAAACaAAAAAABYwAAAAACYwAAAAAAYwAAAAACYwAAAAACYwAAAAADYwAAAAADYwAAAAADYwAAAAACYwAAAAACYwAAAAADRwAAAAAAaAAAAAAAaAAAAAACaAAAAAACaAAAAAADaAAAAAABRwAAAAAAYwAAAAACYwAAAAAAYwAAAAABYwAAAAAAYwAAAAABYwAAAAADRwAAAAAAYwAAAAABYwAAAAADYwAAAAABaAAAAAADaAAAAAACaAAAAAABaAAAAAADaAAAAAACcAAAAAAAYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAACcAAAAAAAcAAAAAAAYwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAAAYwAAAAADYwAAAAAAYwAAAAABYwAAAAAARwAAAAAAYwAAAAABYwAAAAACYwAAAAACYwAAAAAAYwAAAAACYwAAAAAAYwAAAAAAYwAAAAABYwAAAAADYwAAAAABYwAAAAACYwAAAAACYwAAAAAAYwAAAAAAYwAAAAACRwAAAAAAYwAAAAACYwAAAAACYwAAAAABYwAAAAAAYwAAAAADYwAAAAACYwAAAAACYwAAAAACRwAAAAAAYwAAAAACYwAAAAADYwAAAAABYwAAAAACYwAAAAABYwAAAAACYwAAAAACYwAAAAABYwAAAAACYwAAAAADYwAAAAADYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACYwAAAAAAYwAAAAAAYwAAAAAAYwAAAAADYwAAAAAARwAAAAAAYwAAAAACSgAAAAAAcAAAAAAAcAAAAAAAGwAAAAABcAAAAAAAYwAAAAADYwAAAAAAYwAAAAAAYwAAAAABYwAAAAADYwAAAAADYwAAAAACYwAAAAADYwAAAAACcAAAAAAARwAAAAAASgAAAAAAcAAAAAAAGwAAAAABGwAAAAABcAAAAAAAYwAAAAADYwAAAAAAYwAAAAADYwAAAAABYwAAAAADYwAAAAABYwAAAAAAYwAAAAACYwAAAAACYwAAAAAAYwAAAAAASgAAAAAAcAAAAAAAGwAAAAACGwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAAAcAAAAAAAYwAAAAADYwAAAAADYwAAAAAAYwAAAAABYwAAAAACYwAAAAAB + tiles: ZAAAAAAAZAAAAAAAZAAAAAACcQAAAAAAZAAAAAACZAAAAAACZAAAAAAAZAAAAAABZAAAAAABZAAAAAACZAAAAAAAZAAAAAACZAAAAAACZAAAAAACcQAAAAAAGwAAAAAAZAAAAAAAZAAAAAACZAAAAAACcQAAAAAAZAAAAAAAZAAAAAAAZAAAAAACZAAAAAABZAAAAAADZAAAAAABZAAAAAABZAAAAAADZAAAAAADZAAAAAAAcQAAAAAAGwAAAAACZAAAAAACZAAAAAACZAAAAAABZAAAAAACZAAAAAACZAAAAAABZAAAAAADZAAAAAABZAAAAAAAZAAAAAAAZAAAAAACZAAAAAACZAAAAAABZAAAAAABcQAAAAAAGwAAAAABZAAAAAADZAAAAAACZAAAAAACcQAAAAAAZAAAAAAAZAAAAAADZAAAAAAAZAAAAAABZAAAAAABZAAAAAADZAAAAAADZAAAAAACZAAAAAADZAAAAAADGwAAAAAAGwAAAAABZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAACZAAAAAABZAAAAAABZAAAAAADZAAAAAADZAAAAAABcQAAAAAAcQAAAAAAZAAAAAADcQAAAAAAaQAAAAADaQAAAAADaQAAAAABaQAAAAACaQAAAAADSAAAAAAAZAAAAAACZAAAAAACZAAAAAAAZAAAAAADZAAAAAABZAAAAAADcQAAAAAAZAAAAAADZAAAAAADcQAAAAAAaQAAAAADaQAAAAABaQAAAAABaQAAAAACaQAAAAABZAAAAAACZAAAAAAAZAAAAAACZAAAAAACZAAAAAADZAAAAAADZAAAAAADZAAAAAACZAAAAAACZAAAAAADSAAAAAAAaQAAAAAAaQAAAAACaQAAAAACaQAAAAADaQAAAAABSAAAAAAAZAAAAAACZAAAAAAAZAAAAAABZAAAAAAAZAAAAAABZAAAAAADSAAAAAAAZAAAAAABZAAAAAADZAAAAAABaQAAAAADaQAAAAACaQAAAAABaQAAAAADaQAAAAACcQAAAAAAZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAADZAAAAAACcQAAAAAAcQAAAAAAZAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAADZAAAAAAAZAAAAAADZAAAAAAAZAAAAAABZAAAAAAASAAAAAAAZAAAAAABZAAAAAACZAAAAAACZAAAAAAAZAAAAAACZAAAAAAAZAAAAAAAZAAAAAABZAAAAAADZAAAAAABZAAAAAACZAAAAAACZAAAAAAAZAAAAAAAZAAAAAACSAAAAAAAZAAAAAACZAAAAAACZAAAAAABZAAAAAAAZAAAAAADZAAAAAACZAAAAAACZAAAAAACSAAAAAAAZAAAAAACZAAAAAADZAAAAAABZAAAAAACZAAAAAABZAAAAAACZAAAAAACZAAAAAABZAAAAAACZAAAAAADZAAAAAADZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAACZAAAAAAAZAAAAAAAZAAAAAAAZAAAAAADZAAAAAAASAAAAAAAZAAAAAACSwAAAAAAcQAAAAAAcQAAAAAAHAAAAAABcQAAAAAAZAAAAAADZAAAAAAAZAAAAAAAZAAAAAABZAAAAAADZAAAAAADZAAAAAACZAAAAAADZAAAAAACcQAAAAAASAAAAAAASwAAAAAAcQAAAAAAHAAAAAABHAAAAAABcQAAAAAAZAAAAAADZAAAAAAAZAAAAAADZAAAAAABZAAAAAADZAAAAAABZAAAAAAAZAAAAAACZAAAAAACZAAAAAAAZAAAAAAASwAAAAAAcQAAAAAAHAAAAAACHAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAAAcQAAAAAAZAAAAAADZAAAAAADZAAAAAAAZAAAAAABZAAAAAACZAAAAAAB version: 6 -5,-1: ind: -5,-1 - tiles: GgAAAAACGgAAAAABGgAAAAACGgAAAAAAcAAAAAAAUwAAAAADKgAAAAABUwAAAAACUwAAAAACGgAAAAABGgAAAAAAGgAAAAAAcAAAAAAANQAAAAAANgAAAAAANgAAAAAAGgAAAAABGgAAAAACGgAAAAADGgAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAACcAAAAAAARwAAAAAAGgAAAAACcAAAAAAANQAAAAAAPQAAAAAAPQAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAADcAAAAAAAUwAAAAACUwAAAAABKgAAAAAAUwAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAADGgAAAAADGgAAAAADGgAAAAABGgAAAAADGgAAAAAAGgAAAAADGgAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAACGgAAAAAAGgAAAAABGgAAAAACGgAAAAABGgAAAAABGgAAAAAAGgAAAAACGgAAAAABGgAAAAADGgAAAAADGgAAAAADRwAAAAAAUwAAAAAAKgAAAAAAUwAAAAADUwAAAAAAGgAAAAAAGgAAAAABGgAAAAABGgAAAAADGgAAAAAAGgAAAAACGgAAAAACGgAAAAACGgAAAAADGgAAAAABGgAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAAARwAAAAAAGgAAAAABGgAAAAACGgAAAAAAGgAAAAACGgAAAAADGgAAAAAAGgAAAAABGgAAAAABGgAAAAACGgAAAAADRwAAAAAAUwAAAAACUwAAAAABKgAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAABGgAAAAACGgAAAAABcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAACRwAAAAAAGgAAAAACGgAAAAACGgAAAAACGgAAAAADGgAAAAADGgAAAAACGgAAAAAAGgAAAAACGgAAAAACGgAAAAADcAAAAAAAUwAAAAAAKgAAAAADUwAAAAACUwAAAAADRwAAAAAAGgAAAAADGgAAAAACGgAAAAACGgAAAAACGgAAAAADGgAAAAADGgAAAAAAGgAAAAABGgAAAAAAGgAAAAADcAAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAACRwAAAAAAGgAAAAACGgAAAAAAGgAAAAAAGgAAAAADGgAAAAACGgAAAAAAGgAAAAABGgAAAAACGgAAAAAAGgAAAAABcAAAAAAAUwAAAAACUwAAAAABKgAAAAAAUwAAAAADRwAAAAAAGgAAAAABGgAAAAABGgAAAAACGgAAAAAAGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAGgAAAAAARwAAAAAARwAAAAAAGgAAAAABGgAAAAABGgAAAAABGgAAAAABcAAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAACUwAAAAABRwAAAAAAGgAAAAABGgAAAAADGgAAAAABGgAAAAACRwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAAARwAAAAAAGgAAAAACGgAAAAADGgAAAAACGgAAAAACRwAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAAARwAAAAAAGgAAAAADGgAAAAABGgAAAAACGgAAAAADcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: GwAAAAACGwAAAAABGwAAAAACGwAAAAAAcQAAAAAAVAAAAAADKwAAAAABVAAAAAACVAAAAAACGwAAAAABGwAAAAAAGwAAAAAAcQAAAAAANgAAAAAANwAAAAAANwAAAAAAGwAAAAABGwAAAAACGwAAAAADGwAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAACcQAAAAAASAAAAAAAGwAAAAACcQAAAAAANgAAAAAAPgAAAAAAPgAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAADcQAAAAAAVAAAAAACVAAAAAABKwAAAAAAVAAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAABGwAAAAADGwAAAAAAGwAAAAADGwAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAACGwAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAABGwAAAAAAGwAAAAACGwAAAAABGwAAAAADGwAAAAADGwAAAAADSAAAAAAAVAAAAAAAKwAAAAAAVAAAAAADVAAAAAAAGwAAAAAAGwAAAAABGwAAAAABGwAAAAADGwAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAADGwAAAAABGwAAAAABVAAAAAADVAAAAAADVAAAAAADVAAAAAAAVAAAAAAASAAAAAAAGwAAAAABGwAAAAACGwAAAAAAGwAAAAACGwAAAAADGwAAAAAAGwAAAAABGwAAAAABGwAAAAACGwAAAAADSAAAAAAAVAAAAAACVAAAAAABKwAAAAADVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAABGwAAAAACGwAAAAABcQAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAACSAAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAADGwAAAAADGwAAAAACGwAAAAAAGwAAAAACGwAAAAACGwAAAAADcQAAAAAAVAAAAAAAKwAAAAADVAAAAAACVAAAAAADSAAAAAAAGwAAAAADGwAAAAACGwAAAAACGwAAAAACGwAAAAADGwAAAAADGwAAAAAAGwAAAAABGwAAAAAAGwAAAAADcQAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAACSAAAAAAAGwAAAAACGwAAAAAAGwAAAAAAGwAAAAADGwAAAAACGwAAAAAAGwAAAAABGwAAAAACGwAAAAAAGwAAAAABcQAAAAAAVAAAAAACVAAAAAABKwAAAAAAVAAAAAADSAAAAAAAGwAAAAABGwAAAAABGwAAAAACGwAAAAAAGwAAAAABGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAABcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAGwAAAAAASAAAAAAASAAAAAAAGwAAAAABGwAAAAABGwAAAAABGwAAAAABcQAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAACVAAAAAABSAAAAAAAGwAAAAABGwAAAAADGwAAAAABGwAAAAACSAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAADVAAAAAACVAAAAAAAVAAAAAAASAAAAAAAGwAAAAACGwAAAAADGwAAAAACGwAAAAACSAAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAAAVAAAAAADVAAAAAAASAAAAAAAGwAAAAADGwAAAAABGwAAAAACGwAAAAADcQAAAAAAVAAAAAADVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA version: 6 -4,-2: ind: -4,-2 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAACGgAAAAADGgAAAAACbQAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAACGgAAAAACbQAAAAABRwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAACGgAAAAACGgAAAAAAGgAAAAABbQAAAAADcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAARwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAGgAAAAADGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABcAAAAAAAbwAAAAAAbwAAAAAAGgAAAAABGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAARwAAAAAAbwAAAAAAbwAAAAAAGgAAAAAAGgAAAAADGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACcAAAAAAAbwAAAAAAbwAAAAAAGgAAAAAAGgAAAAACGgAAAAACcAAAAAAAXwAAAAAAPQAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAbQAAAAABcAAAAAAAGgAAAAACGgAAAAAAGgAAAAADGgAAAAABGgAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAACcAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAbQAAAAADcAAAAAAAGgAAAAADGgAAAAACGgAAAAACGgAAAAABGgAAAAADcAAAAAAAGgAAAAACGgAAAAADGgAAAAABcAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAACGgAAAAAAGgAAAAADcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAbwAAAAAARwAAAAAAGgAAAAADGgAAAAABGgAAAAABGgAAAAABGgAAAAACcAAAAAAAGgAAAAADGgAAAAABGgAAAAADGgAAAAAAGgAAAAADGgAAAAAAGgAAAAADGgAAAAAAAAAAAAAARwAAAAAAGgAAAAABGgAAAAAAGgAAAAAAGgAAAAABGgAAAAACcAAAAAAAGgAAAAAAGgAAAAADGgAAAAABGgAAAAACGgAAAAABGgAAAAADGgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAMwAAAAAAMwAAAAAAGgAAAAABDwAAAAAADwAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAADGgAAAAACGgAAAAABGgAAAAAAGgAAAAAAGgAAAAAANQAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAAAGgAAAAABGgAAAAABGgAAAAAAGgAAAAADGgAAAAAA + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAACGwAAAAADGwAAAAACbgAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAACGwAAAAACbgAAAAABSAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAACGwAAAAACGwAAAAAAGwAAAAABbgAAAAADcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAASAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAGwAAAAADGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABcQAAAAAAcAAAAAAAcAAAAAAAGwAAAAABGwAAAAABGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAASAAAAAAAcAAAAAAAcAAAAAAAGwAAAAAAGwAAAAADGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACcQAAAAAAcAAAAAAAcAAAAAAAGwAAAAAAGwAAAAACGwAAAAACcQAAAAAAYAAAAAAAPgAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAbgAAAAABcQAAAAAAGwAAAAACGwAAAAAAGwAAAAADGwAAAAABGwAAAAAAcQAAAAAAGwAAAAADGwAAAAACGwAAAAACcQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAbgAAAAADcQAAAAAAGwAAAAADGwAAAAACGwAAAAACGwAAAAABGwAAAAADcQAAAAAAGwAAAAACGwAAAAADGwAAAAABcQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAADGwAAAAACGwAAAAAAGwAAAAADcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAcAAAAAAASAAAAAAAGwAAAAADGwAAAAABGwAAAAABGwAAAAABGwAAAAACcQAAAAAAGwAAAAADGwAAAAABGwAAAAADGwAAAAAAGwAAAAADGwAAAAAAGwAAAAADGwAAAAAAAAAAAAAASAAAAAAAGwAAAAABGwAAAAAAGwAAAAAAGwAAAAABGwAAAAACcQAAAAAAGwAAAAAAGwAAAAADGwAAAAABGwAAAAACGwAAAAABGwAAAAADGwAAAAAAGwAAAAACcQAAAAAAcQAAAAAANAAAAAAANAAAAAAAGwAAAAABDwAAAAAADwAAAAAAcQAAAAAAGwAAAAABGwAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAAAGwAAAAAAGwAAAAAANgAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAGwAAAAAAGwAAAAABGwAAAAAAGwAAAAABGwAAAAABGwAAAAAAGwAAAAADGwAAAAAA version: 6 -5,-2: ind: -5,-2 - tiles: UwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAAAcAAAAAAAbQAAAAADcAAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAADUwAAAAACUwAAAAADUwAAAAABbQAAAAABbQAAAAABbQAAAAABbQAAAAADbQAAAAABbQAAAAACbQAAAAABbQAAAAADbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABRwAAAAAAbQAAAAABbQAAAAACbQAAAAACbQAAAAAAbQAAAAACbQAAAAABbQAAAAADbQAAAAABcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAUwAAAAADUwAAAAACcAAAAAAAbQAAAAADbQAAAAAAbQAAAAADbQAAAAACbQAAAAADbQAAAAADbQAAAAABbQAAAAAAcAAAAAAAPQAAAAAAYQAAAAACYQAAAAAAcAAAAAAAUwAAAAABUwAAAAADRwAAAAAAbQAAAAABbQAAAAAAbQAAAAABbQAAAAAAbQAAAAACbQAAAAAAbQAAAAABbQAAAAACcAAAAAAAPQAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAUwAAAAADUwAAAAABRwAAAAAAbQAAAAACbQAAAAABbQAAAAABbQAAAAACbQAAAAABbQAAAAADbQAAAAADbQAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAARwAAAAAAcAAAAAAAbQAAAAABbQAAAAADbQAAAAACbQAAAAADbQAAAAACbQAAAAACcAAAAAAAUwAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAADbQAAAAADbQAAAAABbQAAAAACbQAAAAADbQAAAAACbQAAAAACbQAAAAADcAAAAAAAWAAAAAAAWAAAAAAAUwAAAAADRwAAAAAAUwAAAAACKgAAAAACUwAAAAAAUwAAAAABbQAAAAACbQAAAAAAbQAAAAADbQAAAAACbQAAAAAAbQAAAAADbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAACRwAAAAAAbQAAAAACbQAAAAABbQAAAAAAbQAAAAADbQAAAAADbQAAAAADRwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAUwAAAAAAUwAAAAACKgAAAAADUwAAAAACRwAAAAAAbQAAAAADbQAAAAADbQAAAAABbQAAAAAAbQAAAAABbQAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAACcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAABKgAAAAADUwAAAAACUwAAAAADRwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAABRwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAKgAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAGgAAAAABGgAAAAAAGgAAAAADcAAAAAAANQAAAAAANgAAAAAANgAAAAAA + tiles: VAAAAAADVAAAAAACVAAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAAAcQAAAAAAbgAAAAADcQAAAAAAbgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAADVAAAAAACVAAAAAADVAAAAAABbgAAAAABbgAAAAABbgAAAAABbgAAAAADbgAAAAABbgAAAAACbgAAAAABbgAAAAADbgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABSAAAAAAAbgAAAAABbgAAAAACbgAAAAACbgAAAAAAbgAAAAACbgAAAAABbgAAAAADbgAAAAABcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAVAAAAAADVAAAAAACcQAAAAAAbgAAAAADbgAAAAAAbgAAAAADbgAAAAACbgAAAAADbgAAAAADbgAAAAABbgAAAAAAcQAAAAAAPgAAAAAAYgAAAAACYgAAAAAAcQAAAAAAVAAAAAABVAAAAAADSAAAAAAAbgAAAAABbgAAAAAAbgAAAAABbgAAAAAAbgAAAAACbgAAAAAAbgAAAAABbgAAAAACcQAAAAAAPgAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAVAAAAAADVAAAAAABSAAAAAAAbgAAAAACbgAAAAABbgAAAAABbgAAAAACbgAAAAABbgAAAAADbgAAAAADbgAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABcQAAAAAASAAAAAAAcQAAAAAAbgAAAAABbgAAAAADbgAAAAACbgAAAAADbgAAAAACbgAAAAACcQAAAAAAVAAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAADbgAAAAADbgAAAAABbgAAAAACbgAAAAADbgAAAAACbgAAAAACbgAAAAADcQAAAAAAWQAAAAAAWQAAAAAAVAAAAAADSAAAAAAAVAAAAAACKwAAAAACVAAAAAAAVAAAAAABbgAAAAACbgAAAAAAbgAAAAADbgAAAAACbgAAAAAAbgAAAAADbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAACSAAAAAAAbgAAAAACbgAAAAABbgAAAAAAbgAAAAADbgAAAAADbgAAAAADSAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACKwAAAAADVAAAAAACSAAAAAAAbgAAAAADbgAAAAADbgAAAAABbgAAAAAAbgAAAAABbgAAAAACSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAACcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAABKwAAAAADVAAAAAACVAAAAAADSAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAABSAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAKwAAAAADVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAGwAAAAABGwAAAAAAGwAAAAADcQAAAAAANgAAAAAANwAAAAAANwAAAAAA version: 6 -6,-2: ind: -6,-2 - tiles: bwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAPQAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAABRgAAAAAAUwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAPQAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAACbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAPQAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAPQAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAEAAAAAADEAAAAAACPAAAAAADRAAAAAABRAAAAAAARAAAAAACRAAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAEAAAAAAAEAAAAAAAPAAAAAACPAAAAAAEPAAAAAADPAAAAAAERAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAEAAAAAABEAAAAAADPAAAAAABPAAAAAAEPAAAAAAEPAAAAAABPAAAAAAEcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAEAAAAAACEAAAAAACPAAAAAADPAAAAAADPAAAAAAFPAAAAAADPAAAAAAFcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAABRwAAAAAAVAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAACVAAAAAACcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAACVAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAEAAAAAADEAAAAAACPQAAAAADRQAAAAABRQAAAAAARQAAAAACRQAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAEAAAAAAAEAAAAAAAPQAAAAACPQAAAAAEPQAAAAADPQAAAAAERQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAEAAAAAABEAAAAAADPQAAAAABPQAAAAAEPQAAAAAEPQAAAAABPQAAAAAEcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAEAAAAAACEAAAAAACPQAAAAADPQAAAAADPQAAAAAFPQAAAAADPQAAAAAFcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAA version: 6 -6,-1: ind: -6,-1 - tiles: EAAAAAABEAAAAAAAPAAAAAAAPAAAAAABPAAAAAAAPAAAAAAAPAAAAAAEcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAEAAAAAACEAAAAAAAPAAAAAADPAAAAAAAPAAAAAAARAAAAAADRAAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAMwAAAAAAMwAAAAAAcAAAAAAARwAAAAAAEAAAAAAAEAAAAAADRAAAAAABRAAAAAABRAAAAAAARAAAAAABRAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAMwAAAAAAMwAAAAAAGgAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAMwAAAAAAMwAAAAAAcAAAAAAARwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAKgAAAAAARwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADwAAAAAADwAAAAAAcAAAAAAARwAAAAAAJQAAAAAARwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADwAAAAAADwAAAAAAGgAAAAACJQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADwAAAAAADwAAAAAAcAAAAAAARwAAAAAAJQAAAAAAKgAAAAADXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAKgAAAAADKgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAPQAAAAAAPQAAAAAAcAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA + tiles: EAAAAAABEAAAAAAAPQAAAAAAPQAAAAABPQAAAAAAPQAAAAAAPQAAAAAEcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAEAAAAAACEAAAAAAAPQAAAAADPQAAAAAAPQAAAAAARQAAAAADRQAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAANAAAAAAANAAAAAAAcQAAAAAASAAAAAAAEAAAAAAAEAAAAAADRQAAAAABRQAAAAABRQAAAAAARQAAAAABRQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAANAAAAAAANAAAAAAAGwAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAANAAAAAAANAAAAAAAcQAAAAAASAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAKwAAAAAASAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAADwAAAAAADwAAAAAAcQAAAAAASAAAAAAAJgAAAAAASAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAADwAAAAAADwAAAAAAGwAAAAACJgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAADwAAAAAADwAAAAAAcQAAAAAASAAAAAAAJgAAAAAAKwAAAAADYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAKwAAAAADKwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAPgAAAAAAPgAAAAAAcQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAA version: 6 -6,0: ind: -6,0 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAADgAAAAAARwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAARwAAAAAAGgAAAAAAGgAAAAADGgAAAAADcAAAAAAAGgAAAAABGgAAAAABcAAAAAAAYwAAAAABYwAAAAAAYwAAAAABYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAARwAAAAAAGgAAAAADGgAAAAACGgAAAAADcAAAAAAAGgAAAAABGgAAAAADcAAAAAAAYwAAAAABYwAAAAACYwAAAAAAYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABcAAAAAAAYwAAAAADYwAAAAADYwAAAAACYwAAAAACXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAAAGgAAAAADGgAAAAAAGgAAAAADcAAAAAAAcAAAAAAARwAAAAAAYwAAAAACRwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAARwAAAAAAGgAAAAACGgAAAAACGgAAAAAAGgAAAAADGgAAAAADGgAAAAACGgAAAAABYwAAAAACYwAAAAAAYwAAAAACYwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAARwAAAAAAGgAAAAABGgAAAAAAGgAAAAAAGgAAAAABGgAAAAABGgAAAAABRwAAAAAAYwAAAAACYwAAAAAAYwAAAAADYwAAAAABXwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAABGgAAAAAAGgAAAAACGgAAAAADcAAAAAAAYwAAAAABYwAAAAABYwAAAAACYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAYwAAAAADYwAAAAADYwAAAAADYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAXwAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAADgAAAAAASAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAASAAAAAAAGwAAAAAAGwAAAAADGwAAAAADcQAAAAAAGwAAAAABGwAAAAABcQAAAAAAZAAAAAABZAAAAAAAZAAAAAABZAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAASAAAAAAAGwAAAAADGwAAAAACGwAAAAADcQAAAAAAGwAAAAABGwAAAAADcQAAAAAAZAAAAAABZAAAAAACZAAAAAAAZAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAABcQAAAAAAZAAAAAADZAAAAAADZAAAAAACZAAAAAACYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAGwAAAAABGwAAAAAAGwAAAAAAGwAAAAADGwAAAAAAGwAAAAADcQAAAAAAcQAAAAAASAAAAAAAZAAAAAACSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAASAAAAAAAGwAAAAACGwAAAAACGwAAAAAAGwAAAAADGwAAAAADGwAAAAACGwAAAAABZAAAAAACZAAAAAAAZAAAAAACZAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAASAAAAAAAGwAAAAABGwAAAAAAGwAAAAAAGwAAAAABGwAAAAABGwAAAAABSAAAAAAAZAAAAAACZAAAAAAAZAAAAAADZAAAAAABYAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAABGwAAAAAAGwAAAAACGwAAAAADcQAAAAAAZAAAAAABZAAAAAABZAAAAAACZAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAZAAAAAADZAAAAAADZAAAAAADZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA version: 6 -5,0: ind: -5,0 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAABcAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAAYwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAAAUwAAAAADUwAAAAACcAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAAYwAAAAACcAAAAAAARwAAAAAAUwAAAAACUwAAAAAAUwAAAAAARwAAAAAAUwAAAAABUwAAAAABUwAAAAADcAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAUwAAAAADYwAAAAAAcAAAAAAARwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACRwAAAAAAUwAAAAAAUwAAAAABUwAAAAABcAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAAYwAAAAACcAAAAAAARwAAAAAAUwAAAAACUwAAAAADUwAAAAADRwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAcAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAAYwAAAAADcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAABUwAAAAAAUwAAAAADcAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAARwAAAAAAYwAAAAABcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAARwAAAAAAYwAAAAADRwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAAYwAAAAADYwAAAAAAYwAAAAAAYwAAAAADYwAAAAABRwAAAAAAYwAAAAADYwAAAAABYwAAAAACYwAAAAAAYwAAAAADYwAAAAACYwAAAAADYwAAAAAARwAAAAAAYwAAAAABYwAAAAAAYwAAAAACYwAAAAAAYwAAAAADYwAAAAACYwAAAAAAYwAAAAADYwAAAAADYwAAAAABYwAAAAADYwAAAAABYwAAAAACYwAAAAAAYwAAAAABYwAAAAACYwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADRwAAAAAAcAAAAAAAcAAAAAAAYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAADcAAAAAAAGgAAAAAAGgAAAAADGgAAAAACGgAAAAACGgAAAAADGgAAAAAAGgAAAAAAGgAAAAACcAAAAAAAYwAAAAAAYwAAAAADYwAAAAACYwAAAAACRwAAAAAAYwAAAAADcAAAAAAAGgAAAAABGgAAAAACGgAAAAAAGgAAAAABGgAAAAACGgAAAAACGgAAAAADGgAAAAAAYwAAAAADYwAAAAADYwAAAAACYwAAAAADYwAAAAAAYwAAAAACYwAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAACGgAAAAAAGgAAAAABGgAAAAADGgAAAAAAGgAAAAABcAAAAAAAYwAAAAABYwAAAAADYwAAAAACYwAAAAADcAAAAAAAYwAAAAABcAAAAAAAGgAAAAABGgAAAAABGgAAAAADGgAAAAACGgAAAAAAGgAAAAADGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAAAGgAAAAACGgAAAAACGgAAAAAAGgAAAAAAGgAAAAAARwAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAACGgAAAAACGgAAAAAAGgAAAAACPQAAAAAAGgAAAAAARwAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAA + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAABcQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAASAAAAAAAZAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAAAVAAAAAADVAAAAAACcQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAASAAAAAAAZAAAAAACcQAAAAAASAAAAAAAVAAAAAACVAAAAAAAVAAAAAAASAAAAAAAVAAAAAABVAAAAAABVAAAAAADcQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAVAAAAAADZAAAAAAAcQAAAAAASAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACSAAAAAAAVAAAAAAAVAAAAAABVAAAAAABcQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAASAAAAAAAZAAAAAACcQAAAAAASAAAAAAAVAAAAAACVAAAAAADVAAAAAADSAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAcQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAASAAAAAAAZAAAAAADcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAABVAAAAAAAVAAAAAADcQAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAASAAAAAAAZAAAAAABcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAZAAAAAADSAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAAZAAAAAADZAAAAAAAZAAAAAAAZAAAAAADZAAAAAABSAAAAAAAZAAAAAADZAAAAAABZAAAAAACZAAAAAAAZAAAAAADZAAAAAACZAAAAAADZAAAAAAASAAAAAAAZAAAAAABZAAAAAAAZAAAAAACZAAAAAAAZAAAAAADZAAAAAACZAAAAAAAZAAAAAADZAAAAAADZAAAAAABZAAAAAADZAAAAAABZAAAAAACZAAAAAAAZAAAAAABZAAAAAACZAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADSAAAAAAAcQAAAAAAcQAAAAAAZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAADcQAAAAAAGwAAAAAAGwAAAAADGwAAAAACGwAAAAACGwAAAAADGwAAAAAAGwAAAAAAGwAAAAACcQAAAAAAZAAAAAAAZAAAAAADZAAAAAACZAAAAAACSAAAAAAAZAAAAAADcQAAAAAAGwAAAAABGwAAAAACGwAAAAAAGwAAAAABGwAAAAACGwAAAAACGwAAAAADGwAAAAAAZAAAAAADZAAAAAADZAAAAAACZAAAAAADZAAAAAAAZAAAAAACZAAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAACGwAAAAAAGwAAAAABGwAAAAADGwAAAAAAGwAAAAABcQAAAAAAZAAAAAABZAAAAAADZAAAAAACZAAAAAADcQAAAAAAZAAAAAABcQAAAAAAGwAAAAABGwAAAAABGwAAAAADGwAAAAACGwAAAAAAGwAAAAADGwAAAAADGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAAAGwAAAAACGwAAAAACGwAAAAAAGwAAAAAAGwAAAAAASAAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAcQAAAAAAGwAAAAABGwAAAAAAGwAAAAACGwAAAAACGwAAAAAAGwAAAAACPgAAAAAAGwAAAAAASAAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAA version: 6 -5,1: ind: -5,1 - tiles: cAAAAAAAGgAAAAACGgAAAAAAGgAAAAABGgAAAAACGgAAAAADPQAAAAAAPQAAAAAAPQAAAAAARwAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbQAAAAABbQAAAAACbQAAAAACbQAAAAABbQAAAAAAbQAAAAACbQAAAAACcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAARwAAAAAAbQAAAAADbQAAAAAAbQAAAAADbQAAAAAAbQAAAAAAbQAAAAACbQAAAAADcAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAARwAAAAAAbQAAAAAAbQAAAAACbQAAAAABbQAAAAAAbQAAAAACbQAAAAACbQAAAAADcAAAAAAAGgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAARwAAAAAAbQAAAAACbQAAAAABbQAAAAABbQAAAAADbQAAAAADbQAAAAACbQAAAAAAcAAAAAAAGgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAARwAAAAAAbQAAAAAAbQAAAAAAbQAAAAABbQAAAAACbQAAAAABbQAAAAAAbQAAAAABcAAAAAAAbQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAARwAAAAAAbQAAAAABbQAAAAAAbQAAAAACbQAAAAADbQAAAAADbQAAAAAAbQAAAAABbQAAAAACbQAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbQAAAAACbQAAAAABbQAAAAADbQAAAAAAbQAAAAADbQAAAAADbQAAAAABbQAAAAABbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAACbQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAAC + tiles: cQAAAAAAGwAAAAACGwAAAAAAGwAAAAABGwAAAAACGwAAAAADPgAAAAAAPgAAAAAAPgAAAAAASAAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAASwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAbgAAAAABbgAAAAACbgAAAAACbgAAAAABbgAAAAAAbgAAAAACbgAAAAACcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAASAAAAAAAbgAAAAADbgAAAAAAbgAAAAADbgAAAAAAbgAAAAAAbgAAAAACbgAAAAADcQAAAAAAGwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASAAAAAAAbgAAAAAAbgAAAAACbgAAAAABbgAAAAAAbgAAAAACbgAAAAACbgAAAAADcQAAAAAAGwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASAAAAAAAbgAAAAACbgAAAAABbgAAAAABbgAAAAADbgAAAAADbgAAAAACbgAAAAAAcQAAAAAAGwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASAAAAAAAbgAAAAAAbgAAAAAAbgAAAAABbgAAAAACbgAAAAABbgAAAAAAbgAAAAABcQAAAAAAbgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASAAAAAAAbgAAAAABbgAAAAAAbgAAAAACbgAAAAADbgAAAAADbgAAAAAAbgAAAAABbgAAAAACbgAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAbgAAAAACbgAAAAABbgAAAAADbgAAAAAAbgAAAAADbgAAAAADbgAAAAABbgAAAAABbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABbgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAACbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAAC version: 6 -4,1: ind: -4,1 - tiles: SgAAAAAAcAAAAAAAGwAAAAACGwAAAAADGwAAAAADcAAAAAAAYwAAAAABYwAAAAACYwAAAAADcAAAAAAAYwAAAAADYwAAAAACYwAAAAAAYwAAAAABYwAAAAADYwAAAAACcAAAAAAAcAAAAAAAGwAAAAADGwAAAAABGwAAAAADcAAAAAAAYwAAAAABYwAAAAABYwAAAAADcAAAAAAAYwAAAAAAYwAAAAACcAAAAAAAYwAAAAAAYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAABYwAAAAABcAAAAAAAYwAAAAABYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAYwAAAAABYwAAAAABcAAAAAAAYwAAAAABYwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKgAAAAABGgAAAAAAGgAAAAADGgAAAAACGgAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKgAAAAAAGgAAAAAAGgAAAAACGgAAAAACGgAAAAACcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAGgAAAAABGgAAAAACGgAAAAACGgAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAGgAAAAABGgAAAAAAGgAAAAADGgAAAAACGgAAAAAAGgAAAAACGgAAAAACGgAAAAACGgAAAAACGgAAAAACGgAAAAADGgAAAAADGgAAAAAAGgAAAAADGgAAAAABbQAAAAACGgAAAAADGgAAAAACGgAAAAADGgAAAAAAGgAAAAABGgAAAAACGgAAAAADGgAAAAAARwAAAAAAGgAAAAACGgAAAAAAGgAAAAAAGgAAAAABGgAAAAACGgAAAAABcAAAAAAARwAAAAAARwAAAAAARwAAAAAAbQAAAAAAcAAAAAAAcAAAAAAAKwAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbQAAAAABbQAAAAADbQAAAAACbQAAAAABcAAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAcAAAAAAARwAAAAAARgAAAAADRgAAAAADGgAAAAACGgAAAAABGgAAAAADbQAAAAADbQAAAAADbQAAAAABbQAAAAACbQAAAAACcAAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAcAAAAAAARwAAAAAARgAAAAAARgAAAAADGgAAAAADGgAAAAADGgAAAAAAcAAAAAAAbQAAAAACbQAAAAACbQAAAAACbQAAAAABcAAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAcAAAAAAARwAAAAAARgAAAAABRgAAAAAARgAAAAACRgAAAAABRgAAAAAC + tiles: SwAAAAAAcQAAAAAAHAAAAAACHAAAAAADHAAAAAADcQAAAAAAZAAAAAABZAAAAAACZAAAAAADcQAAAAAAZAAAAAADZAAAAAACZAAAAAAAZAAAAAABZAAAAAADZAAAAAACcQAAAAAAcQAAAAAAHAAAAAADHAAAAAABHAAAAAADcQAAAAAAZAAAAAABZAAAAAABZAAAAAADcQAAAAAAZAAAAAAAZAAAAAACcQAAAAAAZAAAAAAAZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAABZAAAAAABcQAAAAAAZAAAAAABZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAZAAAAAABZAAAAAABcQAAAAAAZAAAAAABZAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAABGwAAAAAAGwAAAAADGwAAAAACGwAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAAAGwAAAAAAGwAAAAACGwAAAAACGwAAAAACcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAGwAAAAABGwAAAAACGwAAAAACGwAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAGwAAAAABGwAAAAAAGwAAAAADGwAAAAACGwAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAACGwAAAAACGwAAAAADGwAAAAADGwAAAAAAGwAAAAADGwAAAAABbgAAAAACGwAAAAADGwAAAAACGwAAAAADGwAAAAAAGwAAAAABGwAAAAACGwAAAAADGwAAAAAASAAAAAAAGwAAAAACGwAAAAAAGwAAAAAAGwAAAAABGwAAAAACGwAAAAABcQAAAAAASAAAAAAASAAAAAAASAAAAAAAbgAAAAAAcQAAAAAAcQAAAAAALAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAbgAAAAABbgAAAAADbgAAAAACbgAAAAABcQAAAAAALAAAAAAALAAAAAAALAAAAAAAcQAAAAAASAAAAAAARwAAAAADRwAAAAADGwAAAAACGwAAAAABGwAAAAADbgAAAAADbgAAAAADbgAAAAABbgAAAAACbgAAAAACcQAAAAAALAAAAAAALAAAAAAALAAAAAAAcQAAAAAASAAAAAAARwAAAAAARwAAAAADGwAAAAADGwAAAAADGwAAAAAAcQAAAAAAbgAAAAACbgAAAAACbgAAAAACbgAAAAABcQAAAAAALAAAAAAALAAAAAAALAAAAAAAcQAAAAAASAAAAAAARwAAAAABRwAAAAAARwAAAAACRwAAAAABRwAAAAAC version: 6 -3,1: ind: -3,1 - tiles: YwAAAAADYwAAAAADRwAAAAAAYwAAAAADYwAAAAADYwAAAAAAYwAAAAAAYwAAAAACcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAACGgAAAAABYwAAAAACYwAAAAABcAAAAAAAYwAAAAADYwAAAAABYwAAAAAAYwAAAAAAYwAAAAADcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACRwAAAAAARwAAAAAAYwAAAAACYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAABYwAAAAAAYwAAAAABcAAAAAAAGgAAAAABGgAAAAADGgAAAAABGgAAAAABGgAAAAACcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAABGgAAAAABGgAAAAADcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADKgAAAAACKgAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAADGgAAAAABGgAAAAADcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAAAKgAAAAADKgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAUwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAGgAAAAABGgAAAAAAGgAAAAACcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAUwAAAAAAGgAAAAABGgAAAAADGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABRwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAADUwAAAAADGgAAAAAAGgAAAAABGgAAAAAAGgAAAAADRgAAAAACRgAAAAACRwAAAAAAGgAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAACGgAAAAACGgAAAAADGgAAAAAAGgAAAAACRgAAAAACRgAAAAABRwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAACRgAAAAABRgAAAAABRgAAAAAARgAAAAABRgAAAAAARgAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAAGgAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAAA + tiles: ZAAAAAADZAAAAAADSAAAAAAAZAAAAAADZAAAAAADZAAAAAAAZAAAAAAAZAAAAAACcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAABZAAAAAACZAAAAAABcQAAAAAAZAAAAAADZAAAAAABZAAAAAAAZAAAAAAAZAAAAAADcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAACSAAAAAAASAAAAAAAZAAAAAACZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAABZAAAAAAAZAAAAAABcQAAAAAAGwAAAAABGwAAAAADGwAAAAABGwAAAAABGwAAAAACcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAABGwAAAAABGwAAAAABGwAAAAADcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAADKwAAAAACKwAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAADGwAAAAABGwAAAAADcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAAAKwAAAAADKwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAVAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAGwAAAAABGwAAAAAAGwAAAAACcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAVAAAAAAAGwAAAAABGwAAAAADGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAADVAAAAAADGwAAAAAAGwAAAAABGwAAAAAAGwAAAAADRwAAAAACRwAAAAACSAAAAAAAGwAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAACGwAAAAACGwAAAAADGwAAAAAAGwAAAAACRwAAAAACRwAAAAABSAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAACRwAAAAABRwAAAAABRwAAAAAARwAAAAABRwAAAAAARwAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAGwAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAAA version: 6 -4,2: ind: -4,2 - tiles: cAAAAAAAbQAAAAAAbQAAAAACbQAAAAACbQAAAAAAcAAAAAAAKwAAAAAAKwAAAAAAKwAAAAAAcAAAAAAARwAAAAAARgAAAAAARgAAAAADRgAAAAABRgAAAAABRgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARgAAAAADRgAAAAACRgAAAAAARgAAAAADRgAAAAACcAAAAAAAbQAAAAABbQAAAAADbQAAAAABbQAAAAABcAAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAARwAAAAAARgAAAAACRgAAAAACGgAAAAAAGgAAAAACGgAAAAAAcAAAAAAAbQAAAAACbQAAAAABbQAAAAADbQAAAAACSgAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAARwAAAAAARgAAAAAARgAAAAABGgAAAAACGgAAAAACGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAAGgAAAAABGgAAAAACRwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAAGgAAAAAAGgAAAAADRwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAAGgAAAAACGgAAAAABRwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAAGgAAAAADGgAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAARwAAAAAAGgAAAAADGgAAAAACRwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAAGgAAAAABGgAAAAACRwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAGgAAAAACGgAAAAAAGgAAAAABRwAAAAAARwAAAAAARwAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAGgAAAAACGgAAAAAARwAAAAAARwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABGgAAAAAAGgAAAAADGgAAAAABRwAAAAAARwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAUwAAAAACRwAAAAAARwAAAAAAcAAAAAAARwAAAAAA + tiles: cQAAAAAAbgAAAAAAbgAAAAACbgAAAAACbgAAAAAAcQAAAAAALAAAAAAALAAAAAAALAAAAAAAcQAAAAAASAAAAAAARwAAAAAARwAAAAADRwAAAAABRwAAAAABRwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAARwAAAAADRwAAAAACRwAAAAAARwAAAAADRwAAAAACcQAAAAAAbgAAAAABbgAAAAADbgAAAAABbgAAAAABcQAAAAAASwAAAAAASwAAAAAASwAAAAAAcQAAAAAASAAAAAAARwAAAAACRwAAAAACGwAAAAAAGwAAAAACGwAAAAAAcQAAAAAAbgAAAAACbgAAAAABbgAAAAADbgAAAAACSwAAAAAASwAAAAAASwAAAAAASwAAAAAAcQAAAAAASAAAAAAARwAAAAAARwAAAAABGwAAAAACGwAAAAACGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAAGwAAAAABGwAAAAACSAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAAGwAAAAAAGwAAAAADSAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAAGwAAAAACGwAAAAABSAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAAGwAAAAADGwAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAASAAAAAAAGwAAAAADGwAAAAACSAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAAGwAAAAABGwAAAAACSAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAGwAAAAACGwAAAAAAGwAAAAABSAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAGwAAAAACGwAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABGwAAAAAAGwAAAAADGwAAAAABSAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAVAAAAAACSAAAAAAASAAAAAAAcQAAAAAASAAAAAAA version: 6 -3,2: ind: -3,2 - tiles: RgAAAAAARgAAAAACRgAAAAAARgAAAAAARgAAAAABRgAAAAACRwAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAACRwAAAAAASgAAAAAASgAAAAAASgAAAAAAUwAAAAAARgAAAAADRgAAAAADRgAAAAAARgAAAAABRgAAAAABRgAAAAAARwAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAABRwAAAAAASgAAAAAASgAAAAAASgAAAAAAUwAAAAABGgAAAAABGgAAAAAAGgAAAAADGgAAAAACRgAAAAAARgAAAAADRwAAAAAAGgAAAAAAGgAAAAADGgAAAAACGgAAAAAAGgAAAAAASgAAAAAASgAAAAAASgAAAAAAUwAAAAADGgAAAAAAGgAAAAACGgAAAAABGgAAAAAARgAAAAACRgAAAAADRwAAAAAAcAAAAAAAGgAAAAACGgAAAAAAGgAAAAAARwAAAAAASgAAAAAASgAAAAAASgAAAAAAUwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAAAcAAAAAAASgAAAAAASgAAAAAASgAAAAAAUwAAAAABRwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAABAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAARwAAAAAAUwAAAAABAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAARwAAAAAAUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAARwAAAAAAUwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADRwAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAACKgAAAAACUwAAAAAAKgAAAAAAUwAAAAADKgAAAAAAUwAAAAAAKgAAAAADUwAAAAACUwAAAAACRwAAAAAAUwAAAAABUwAAAAADUwAAAAACRwAAAAAARwAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAADRwAAAAAAcAAAAAAAUwAAAAACUwAAAAADKgAAAAAAUwAAAAAAKgAAAAABUwAAAAAAKgAAAAACUwAAAAAAKgAAAAADUwAAAAABcAAAAAAAUwAAAAAB + tiles: RwAAAAAARwAAAAACRwAAAAAARwAAAAAARwAAAAABRwAAAAACSAAAAAAAcQAAAAAAGwAAAAADGwAAAAACGwAAAAACSAAAAAAASwAAAAAASwAAAAAASwAAAAAAVAAAAAAARwAAAAADRwAAAAADRwAAAAAARwAAAAABRwAAAAABRwAAAAAASAAAAAAAcQAAAAAAGwAAAAADGwAAAAADGwAAAAABSAAAAAAASwAAAAAASwAAAAAASwAAAAAAVAAAAAABGwAAAAABGwAAAAAAGwAAAAADGwAAAAACRwAAAAAARwAAAAADSAAAAAAAGwAAAAAAGwAAAAADGwAAAAACGwAAAAAAGwAAAAAASwAAAAAASwAAAAAASwAAAAAAVAAAAAADGwAAAAAAGwAAAAACGwAAAAABGwAAAAAARwAAAAACRwAAAAADSAAAAAAAcQAAAAAAGwAAAAACGwAAAAAAGwAAAAAASAAAAAAASwAAAAAASwAAAAAASwAAAAAAVAAAAAACSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAAAcQAAAAAASwAAAAAASwAAAAAASwAAAAAAVAAAAAABSAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAABAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASAAAAAAAVAAAAAABAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASAAAAAAAVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASAAAAAAAVAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADSAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAADVAAAAAADVAAAAAABVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAABVAAAAAACVAAAAAABVAAAAAACVAAAAAACKwAAAAACVAAAAAAAKwAAAAAAVAAAAAADKwAAAAAAVAAAAAAAKwAAAAADVAAAAAACVAAAAAACSAAAAAAAVAAAAAABVAAAAAADVAAAAAACSAAAAAAASAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAABVAAAAAADVAAAAAADVAAAAAACVAAAAAABVAAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAACVAAAAAADSAAAAAAAcQAAAAAAVAAAAAACVAAAAAADKwAAAAAAVAAAAAAAKwAAAAABVAAAAAAAKwAAAAACVAAAAAAAKwAAAAADVAAAAAABcQAAAAAAVAAAAAAB version: 6 -4,3: ind: -4,3 - tiles: AAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAUwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAAUwAAAAABKgAAAAAAUwAAAAABKgAAAAACUwAAAAABAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAAUwAAAAAAKgAAAAABUwAAAAAAKgAAAAACUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAUwAAAAADKgAAAAAAUwAAAAADKgAAAAADUwAAAAADAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAADAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAVAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAAVAAAAAABKwAAAAAAVAAAAAABKwAAAAACVAAAAAABAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAACVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAAVAAAAAAAKwAAAAABVAAAAAAAKwAAAAACVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAAAVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAVAAAAAADKwAAAAAAVAAAAAADKwAAAAADVAAAAAADAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAACVAAAAAAAVAAAAAABVAAAAAADAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,4: ind: -4,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAARwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAARwAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAARwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAARwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAD + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASAAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASAAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAD version: 6 -4,5: ind: -4,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,5: ind: -3,5 - tiles: UwAAAAACUwAAAAABUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAXwAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAPQAAAAAAXwAAAAAAPQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAPQAAAAAAXwAAAAAAPQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAPQAAAAAAXwAAAAAAPQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAPQAAAAAAXwAAAAAAPQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAPQAAAAAAXwAAAAAAPQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAPQAAAAAAXwAAAAAAPQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAPQAAAAAAXwAAAAAAPQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAPQAAAAAAXwAAAAAAPQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAPQAAAAAAXwAAAAAAPQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAPQAAAAAAXwAAAAAAPQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAPQAAAAAAXwAAAAAAPQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAXwAAAAAAPQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAPQAAAAAAXwAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAPQAAAAAAXwAAAAAAPQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAXwAAAAAAXwAAAAAA + tiles: VAAAAAACVAAAAAABVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAcQAAAAAANwAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAPgAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAYAAAAAAAYAAAAAAA version: 6 -3,4: ind: -3,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAHwAAAAAAHwAAAAADHwAAAAADHwAAAAACHwAAAAACRwAAAAAAUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAGgAAAAACGgAAAAACbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAHwAAAAAAHwAAAAABHwAAAAADHwAAAAADHwAAAAADcAAAAAAAUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAGgAAAAACGgAAAAABRwAAAAAARwAAAAAARwAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAADUwAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAADcAAAAAAARwAAAAAARwAAAAAAGgAAAAADGgAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAADcAAAAAAARwAAAAAAGgAAAAABGgAAAAAAGgAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAADcAAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAABcAAAAAAARwAAAAAAGgAAAAABGgAAAAAAGgAAAAADUwAAAAAAUwAAAAADUwAAAAABUwAAAAABcAAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAADcAAAAAAARwAAAAAAGgAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACcAAAAAAARwAAAAAARwAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAUwAAAAADRwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAADUwAAAAABRwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAADRwAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAADcAAAAAAAAAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAXwAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAAAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAACUwAAAAACcAAAAAAAAAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAXwAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAAAAAAAAAUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAXwAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAIAAAAAAAIAAAAAADIAAAAAADIAAAAAACIAAAAAACSAAAAAAAVAAAAAACVAAAAAAAVAAAAAABcQAAAAAAGwAAAAACGwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAIAAAAAAAIAAAAAABIAAAAAADIAAAAAADIAAAAAADcQAAAAAAVAAAAAACVAAAAAAAVAAAAAABcQAAAAAAGwAAAAACGwAAAAABSAAAAAAASAAAAAAASAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAADVAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAADcQAAAAAASAAAAAAASAAAAAAAGwAAAAADGwAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAADcQAAAAAASAAAAAAAGwAAAAABGwAAAAAAGwAAAAABVAAAAAADVAAAAAADVAAAAAACVAAAAAADcQAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAABcQAAAAAASAAAAAAAGwAAAAABGwAAAAAAGwAAAAADVAAAAAAAVAAAAAADVAAAAAABVAAAAAABcQAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAAAVAAAAAADcQAAAAAASAAAAAAAGwAAAAADVAAAAAADVAAAAAABVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACcQAAAAAASAAAAAAASAAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAVAAAAAADSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAADVAAAAAADVAAAAAABSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAADSAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAADVAAAAAABVAAAAAABVAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAADVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAACVAAAAAAAVAAAAAADcQAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAYAAAAAAAPgAAAAAAPgAAAAAAcQAAAAAANwAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAACVAAAAAACcQAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAYAAAAAAAPgAAAAAAPgAAAAAAcQAAAAAANwAAAAAAVAAAAAADVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAYAAAAAAAPgAAAAAAPgAAAAAAcQAAAAAANwAAAAAA version: 6 -3,3: ind: -3,3 - tiles: UwAAAAADUwAAAAADRwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAAAKgAAAAADUwAAAAAARwAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAACRwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAADRwAAAAAAcAAAAAAAUwAAAAACKgAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAADUwAAAAAARwAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAADRwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAAARwAAAAAARwAAAAAAcAAAAAAAUwAAAAACKgAAAAACUwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAUwAAAAACRwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACRwAAAAAARwAAAAAAVgAAAAADVgAAAAABVgAAAAABVgAAAAABVgAAAAADRwAAAAAAUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAARwAAAAAAVgAAAAADVgAAAAAAVgAAAAAAVgAAAAACVgAAAAADVgAAAAACVgAAAAADUwAAAAAAUwAAAAABUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAVgAAAAABVgAAAAADVgAAAAAAVgAAAAADVgAAAAADRwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAVgAAAAADVgAAAAACVgAAAAADVgAAAAADVgAAAAABcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACcAAAAAAARwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAHwAAAAADHwAAAAABHwAAAAABHwAAAAADHwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAABRwAAAAAARwAAAAAAUwAAAAACAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAHwAAAAACHwAAAAACHwAAAAADHwAAAAAAHwAAAAACRwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAHwAAAAABHwAAAAADHwAAAAAAHwAAAAACHwAAAAAARwAAAAAAUwAAAAADUwAAAAACUwAAAAADRwAAAAAARwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAHwAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAABcAAAAAAAUwAAAAAAUwAAAAACUwAAAAAAcAAAAAAARwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAADHwAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAHwAAAAACHwAAAAADHwAAAAABHwAAAAACHwAAAAADRwAAAAAAUwAAAAABUwAAAAACUwAAAAADcAAAAAAAGgAAAAAAGgAAAAAC + tiles: VAAAAAADVAAAAAADSAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAAAKwAAAAADVAAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAACSAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAADSAAAAAAAcQAAAAAAVAAAAAACKwAAAAABVAAAAAADVAAAAAADVAAAAAACVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAADVAAAAAAASAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAADSAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAACKwAAAAACVAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAVAAAAAACSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACSAAAAAAASAAAAAAAVwAAAAADVwAAAAABVwAAAAABVwAAAAABVwAAAAADSAAAAAAAVAAAAAACVAAAAAAAVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAAVwAAAAADVwAAAAAAVwAAAAAAVwAAAAACVwAAAAADVwAAAAACVwAAAAADVAAAAAAAVAAAAAABVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVwAAAAABVwAAAAADVwAAAAAAVwAAAAADVwAAAAADSAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVwAAAAADVwAAAAACVwAAAAADVwAAAAADVwAAAAABcQAAAAAAVAAAAAAAVAAAAAADVAAAAAACcQAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAIAAAAAADIAAAAAABIAAAAAABIAAAAAADIAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAABSAAAAAAASAAAAAAAVAAAAAACAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAIAAAAAACIAAAAAACIAAAAAADIAAAAAAAIAAAAAACSAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAIAAAAAABIAAAAAADIAAAAAAAIAAAAAACIAAAAAAASAAAAAAAVAAAAAADVAAAAAACVAAAAAADSAAAAAAASAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAIAAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAABcQAAAAAAVAAAAAAAVAAAAAACVAAAAAAAcQAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAADIAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAIAAAAAACIAAAAAADIAAAAAABIAAAAAACIAAAAAADSAAAAAAAVAAAAAABVAAAAAACVAAAAAADcQAAAAAAGwAAAAAAGwAAAAAC version: 6 -2,2: ind: -2,2 - tiles: UwAAAAAAUwAAAAAAcAAAAAAAbQAAAAABbQAAAAACbQAAAAADbQAAAAADbQAAAAABbQAAAAAAbQAAAAADbQAAAAADcAAAAAAAJQAAAAAAJQAAAAADJQAAAAAAJQAAAAABUwAAAAAAUwAAAAADcAAAAAAAbQAAAAACbQAAAAABbQAAAAADbQAAAAADbQAAAAADbQAAAAADbQAAAAACbQAAAAABcAAAAAAAJQAAAAAAJQAAAAAAJQAAAAAAJQAAAAACUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAABbQAAAAADbQAAAAABcAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAUwAAAAACUwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAbQAAAAAAbQAAAAADbQAAAAADbQAAAAACcAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAUwAAAAABUwAAAAADRwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAbQAAAAAAbQAAAAADbQAAAAADbQAAAAADcAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAUwAAAAADUwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAbQAAAAABbQAAAAABbQAAAAABbQAAAAADcAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAOgAAAAAAOgAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAABcAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAADcAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAUwAAAAABUwAAAAAAUwAAAAACRwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAUwAAAAAAUwAAAAABUwAAAAABGgAAAAACGgAAAAACGgAAAAABPQAAAAAAGgAAAAAAPQAAAAAAGgAAAAACPQAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAUwAAAAABUwAAAAACUwAAAAABRwAAAAAAGgAAAAADGgAAAAABPQAAAAAAGgAAAAABPQAAAAAAGgAAAAADPQAAAAAAcAAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAAUwAAAAACUwAAAAAAUwAAAAAARwAAAAAAGgAAAAABGgAAAAACGgAAAAABGgAAAAAAGgAAAAAAGgAAAAADGgAAAAAAPQAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAAUwAAAAADUwAAAAACUwAAAAACRwAAAAAAGgAAAAABGgAAAAABGgAAAAAAGgAAAAABGgAAAAACGgAAAAABGgAAAAABPQAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAA + tiles: VAAAAAAAVAAAAAAAcQAAAAAAbgAAAAABbgAAAAACbgAAAAADbgAAAAADbgAAAAABbgAAAAAAbgAAAAADbgAAAAADcQAAAAAAJgAAAAAAJgAAAAADJgAAAAAAJgAAAAABVAAAAAAAVAAAAAADcQAAAAAAbgAAAAACbgAAAAABbgAAAAADbgAAAAADbgAAAAADbgAAAAADbgAAAAACbgAAAAABcQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAACVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABbgAAAAABbgAAAAADbgAAAAABcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAVAAAAAACVAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAACcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAVAAAAAABVAAAAAADSAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAbgAAAAAAbgAAAAADbgAAAAADbgAAAAADcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAVAAAAAADVAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAbgAAAAABbgAAAAABbgAAAAABbgAAAAADcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAVAAAAAABVAAAAAAAcQAAAAAAOwAAAAAAOwAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAABcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAVAAAAAADVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAAAVAAAAAACVAAAAAACVAAAAAADcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAVAAAAAABVAAAAAAAVAAAAAACSAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAVAAAAAAAVAAAAAABVAAAAAABGwAAAAACGwAAAAACGwAAAAABPgAAAAAAGwAAAAAAPgAAAAAAGwAAAAACPgAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAVAAAAAABVAAAAAACVAAAAAABSAAAAAAAGwAAAAADGwAAAAABPgAAAAAAGwAAAAABPgAAAAAAGwAAAAADPgAAAAAAcQAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAVAAAAAACVAAAAAAAVAAAAAAASAAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAAAGwAAAAAAGwAAAAADGwAAAAAAPgAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAVAAAAAADVAAAAAACVAAAAAACSAAAAAAAGwAAAAABGwAAAAABGwAAAAAAGwAAAAABGwAAAAACGwAAAAABGwAAAAABPgAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAA version: 6 -2,3: ind: -2,3 - tiles: UwAAAAACUwAAAAAAUwAAAAAAcAAAAAAARwAAAAAARwAAAAAAGgAAAAACRwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAARwAAAAAAUwAAAAADUwAAAAAARwAAAAAAcAAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAARwAAAAAAUwAAAAADUwAAAAAARwAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAARwAAAAAAUwAAAAAAUwAAAAABRwAAAAAAcAAAAAAAPQAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAACUwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAACRwAAAAAARwAAAAAARwAAAAAAUwAAAAAAUwAAAAABRwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAACRwAAAAAARwAAAAAAUwAAAAABUwAAAAADUwAAAAACRwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABRwAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAAAUwAAAAABRwAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAAUwAAAAAARwAAAAAAcAAAAAAARwAAAAAAUwAAAAADUwAAAAACRwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAUwAAAAADRwAAAAAARwAAAAAARwAAAAAAUwAAAAADUwAAAAACRwAAAAAAcAAAAAAARwAAAAAAGgAAAAABGgAAAAAAGgAAAAAAGgAAAAACcAAAAAAARwAAAAAAUwAAAAAAUwAAAAADRwAAAAAARwAAAAAARwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAACRwAAAAAA + tiles: VAAAAAACVAAAAAAAVAAAAAAAcQAAAAAASAAAAAAASAAAAAAAGwAAAAACSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAABVAAAAAACVAAAAAADVAAAAAABVAAAAAACVAAAAAABVAAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAABVAAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAABVAAAAAACVAAAAAADVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAADVAAAAAABVAAAAAACVAAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAABVAAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAABVAAAAAABVAAAAAADVAAAAAADVAAAAAABVAAAAAACVAAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAASAAAAAAAVAAAAAADVAAAAAAASAAAAAAAcQAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAASAAAAAAAVAAAAAADVAAAAAAASAAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAVAAAAAAAVAAAAAABSAAAAAAAcQAAAAAAPgAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAACVAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAACSAAAAAAASAAAAAAASAAAAAAAVAAAAAAAVAAAAAABSAAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAACVAAAAAACSAAAAAAASAAAAAAAVAAAAAABVAAAAAADVAAAAAACSAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAABSAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAAAVAAAAAABSAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAVAAAAAAASAAAAAAAcQAAAAAASAAAAAAAVAAAAAADVAAAAAACSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAVAAAAAADSAAAAAAASAAAAAAASAAAAAAAVAAAAAADVAAAAAACSAAAAAAAcQAAAAAASAAAAAAAGwAAAAABGwAAAAAAGwAAAAAAGwAAAAACcQAAAAAASAAAAAAAVAAAAAAAVAAAAAADSAAAAAAASAAAAAAASAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAACSAAAAAAA version: 6 -1,3: ind: -1,3 - tiles: RwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAADUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAADcAAAAAAAUwAAAAABUwAAAAACUwAAAAADUwAAAAABcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAMwAAAAAARwAAAAAAcAAAAAAAAQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAcAAAAAAAAQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAMwAAAAAADwAAAAAAMwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAcAAAAAAAcAAAAAAADwAAAAAARwAAAAAARwAAAAAARwAAAAAAMwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAcAAAAAAAcAAAAAAAMwAAAAAARwAAAAAARwAAAAAARwAAAAAADwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAADwAAAAAARwAAAAAARwAAAAAARwAAAAAAMwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAA + tiles: SAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAABVAAAAAADVAAAAAACVAAAAAACVAAAAAABVAAAAAACVAAAAAADVAAAAAADVAAAAAACVAAAAAABVAAAAAADVAAAAAABVAAAAAABVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAADcQAAAAAAVAAAAAABVAAAAAACVAAAAAADVAAAAAABcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAANAAAAAAASAAAAAAAcQAAAAAAAQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAcQAAAAAAAQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAANAAAAAAADwAAAAAANAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAcQAAAAAAcQAAAAAADwAAAAAASAAAAAAASAAAAAAASAAAAAAANAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAANAAAAAAAcQAAAAAAcQAAAAAANAAAAAAASAAAAAAASAAAAAAASAAAAAAADwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAADwAAAAAASAAAAAAASAAAAAAASAAAAAAANAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 -2,5: ind: -2,5 - tiles: AAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAABRwAAAAAARwAAAAAAUwAAAAAAUwAAAAAARwAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAACUwAAAAABAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAADRwAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAADAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAUwAAAAACUwAAAAAARwAAAAAARwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAADAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAADRwAAAAAARwAAAAAAUwAAAAAAUwAAAAAARwAAAAAARwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAUwAAAAABUwAAAAACRwAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAADRwAAAAAARwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACRwAAAAAARwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAUwAAAAADUwAAAAACRwAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAAAGgAAAAAAGgAAAAADRwAAAAAARwAAAAAAUwAAAAADUwAAAAACRwAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAARwAAAAAAGgAAAAACGgAAAAACGgAAAAACGgAAAAABGgAAAAAAGgAAAAACUwAAAAAAUwAAAAAAUwAAAAADRwAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADcAAAAAAARwAAAAAAGgAAAAADGgAAAAABGgAAAAACGgAAAAAAGgAAAAACcAAAAAAARwAAAAAAUwAAAAAAUwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAGgAAAAAAGgAAAAADGgAAAAADGgAAAAADGgAAAAACcAAAAAAARwAAAAAAUwAAAAADUwAAAAABRwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAABGgAAAAAAGgAAAAADcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAADbQAAAAAAEQAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAWAAAAAAAUwAAAAAB + tiles: NwAAAAAANwAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAABSAAAAAAASAAAAAAAVAAAAAAAVAAAAAAASAAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAACVAAAAAABAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAACVAAAAAADSAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAADAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAVAAAAAACVAAAAAAASAAAAAAASAAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAADAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAADSAAAAAAASAAAAAAAVAAAAAAAVAAAAAAASAAAAAAASAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAVAAAAAABVAAAAAACSAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAADSAAAAAAASAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACSAAAAAAASAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAVAAAAAADVAAAAAACSAAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAGwAAAAACGwAAAAABGwAAAAAAGwAAAAAAGwAAAAADSAAAAAAASAAAAAAAVAAAAAADVAAAAAACSAAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAASAAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAABGwAAAAAAGwAAAAACVAAAAAAAVAAAAAAAVAAAAAADSAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAADcQAAAAAASAAAAAAAGwAAAAADGwAAAAABGwAAAAACGwAAAAAAGwAAAAACcQAAAAAASAAAAAAAVAAAAAAAVAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAGwAAAAAAGwAAAAADGwAAAAADGwAAAAADGwAAAAACcQAAAAAASAAAAAAAVAAAAAADVAAAAAABSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAADGwAAAAABGwAAAAAAGwAAAAADcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAADbgAAAAAAEQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAWQAAAAAAVAAAAAAB version: 6 -2,4: ind: -2,4 - tiles: GgAAAAADGgAAAAADGgAAAAACGgAAAAACcAAAAAAARwAAAAAAUwAAAAADUwAAAAACRwAAAAAARwAAAAAARwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAAARwAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAUwAAAAAAUwAAAAACRwAAAAAAcAAAAAAARwAAAAAAUwAAAAABUwAAAAACRwAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAABUwAAAAABRwAAAAAARwAAAAAARwAAAAAAUwAAAAAAUwAAAAADRwAAAAAARwAAAAAARwAAAAAAGgAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAADUwAAAAADRwAAAAAAGgAAAAADGgAAAAACGgAAAAACRwAAAAAARwAAAAAARwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAADUwAAAAADGgAAAAABGgAAAAADGgAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAACRwAAAAAAGgAAAAAAGgAAAAACGgAAAAAARwAAAAAAcAAAAAAARwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAACRwAAAAAARwAAAAAARwAAAAAAUwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAGgAAAAABGgAAAAABUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAADRwAAAAAAcAAAAAAARwAAAAAAGgAAAAABRwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAUwAAAAAAUwAAAAACUwAAAAAAUwAAAAAARwAAAAAARwAAAAAARwAAAAAAGgAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAADRwAAAAAARwAAAAAARwAAAAAAGgAAAAADGgAAAAADGgAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAABUwAAAAACRwAAAAAARwAAAAAARwAAAAAAGgAAAAADGgAAAAABRwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAAAUwAAAAABRwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAUwAAAAABUwAAAAADRwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAARwAAAAAARwAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADAAAAAAAAAAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAADUwAAAAADRwAAAAAARwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAADAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAUwAAAAABUwAAAAADRwAAAAAARwAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAAB + tiles: GwAAAAADGwAAAAADGwAAAAACGwAAAAACcQAAAAAASAAAAAAAVAAAAAADVAAAAAACSAAAAAAASAAAAAAASAAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAAASAAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAVAAAAAAAVAAAAAACSAAAAAAAcQAAAAAASAAAAAAAVAAAAAABVAAAAAACSAAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAABVAAAAAABSAAAAAAASAAAAAAASAAAAAAAVAAAAAAAVAAAAAADSAAAAAAASAAAAAAASAAAAAAAGwAAAAACSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAABVAAAAAADVAAAAAADSAAAAAAAGwAAAAADGwAAAAACGwAAAAACSAAAAAAASAAAAAAASAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAADVAAAAAADGwAAAAABGwAAAAADGwAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAACSAAAAAAAGwAAAAAAGwAAAAACGwAAAAAASAAAAAAAcQAAAAAASAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAACSAAAAAAASAAAAAAASAAAAAAAVAAAAAACSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAGwAAAAABGwAAAAABVAAAAAACVAAAAAADVAAAAAABVAAAAAAAVAAAAAADSAAAAAAAcQAAAAAASAAAAAAAGwAAAAABSAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAVAAAAAAAVAAAAAACVAAAAAAAVAAAAAAASAAAAAAASAAAAAAASAAAAAAAGwAAAAACSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAADSAAAAAAASAAAAAAASAAAAAAAGwAAAAADGwAAAAADGwAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAABVAAAAAACSAAAAAAASAAAAAAASAAAAAAAGwAAAAADGwAAAAABSAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAAAVAAAAAABSAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAANwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAVAAAAAABVAAAAAADSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAANwAAAAAANwAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAAASAAAAAAASAAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADNwAAAAAANwAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAADVAAAAAADVAAAAAADVAAAAAADSAAAAAAASAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAADNwAAAAAANwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAVAAAAAABVAAAAAADSAAAAAAASAAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAAB version: 6 -1,4: ind: -1,4 - tiles: RwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAPQAAAAAAHwAAAAAAHwAAAAABHwAAAAABHwAAAAABHwAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAABHwAAAAACHwAAAAACHwAAAAADHwAAAAADHwAAAAAAHwAAAAACHwAAAAABPQAAAAAAPQAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAHwAAAAACRwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAHwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAHwAAAAADHwAAAAABHwAAAAADHwAAAAACHwAAAAAAHwAAAAACHwAAAAAAHwAAAAACHwAAAAAAHwAAAAADHwAAAAAAHwAAAAADRwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAHwAAAAABHwAAAAADRwAAAAAAHwAAAAAARwAAAAAAHwAAAAABHwAAAAACRwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAAHwAAAAAAHwAAAAADRwAAAAAAHwAAAAACRwAAAAAAHwAAAAADHwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAHwAAAAABHwAAAAACRwAAAAAAHwAAAAACRwAAAAAAHwAAAAACHwAAAAACcAAAAAAAGgAAAAADGgAAAAABGgAAAAADGgAAAAAAGgAAAAACGgAAAAADcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAADGgAAAAABGgAAAAABcAAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAABGgAAAAAAGgAAAAADcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: SAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAPgAAAAAAIAAAAAAAIAAAAAABIAAAAAABIAAAAAABIAAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAABIAAAAAACIAAAAAACIAAAAAADIAAAAAADIAAAAAAAIAAAAAACIAAAAAABPgAAAAAAPgAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAAAIAAAAAACSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAIAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAIAAAAAADIAAAAAABIAAAAAADIAAAAAACIAAAAAAAIAAAAAACIAAAAAAAIAAAAAACIAAAAAAAIAAAAAADIAAAAAAAIAAAAAADSAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAIAAAAAABIAAAAAADSAAAAAAAIAAAAAAASAAAAAAAIAAAAAABIAAAAAACSAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAAIAAAAAAAIAAAAAADSAAAAAAAIAAAAAACSAAAAAAAIAAAAAADIAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAIAAAAAABIAAAAAACSAAAAAAAIAAAAAACSAAAAAAAIAAAAAACIAAAAAACcQAAAAAAGwAAAAADGwAAAAABGwAAAAADGwAAAAAAGwAAAAACGwAAAAADcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAADGwAAAAABGwAAAAABcQAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAABGwAAAAAAGwAAAAADcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA version: 6 1,3: ind: 1,3 - tiles: UwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAADUwAAAAACUwAAAAADRwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAEAAAAAAAEAAAAAABEAAAAAABEAAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAABRwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAEAAAAAACEAAAAAACEAAAAAACEAAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: VAAAAAACVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAADVAAAAAACVAAAAAADSAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAEAAAAAAAEAAAAAABEAAAAAABEAAAAAACVAAAAAADVAAAAAADVAAAAAABVAAAAAACVAAAAAADVAAAAAABVAAAAAABVAAAAAABSAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAEAAAAAACEAAAAAACEAAAAAACEAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA version: 6 -4,6: ind: -4,6 @@ -248,51 +248,51 @@ entities: version: 6 0,3: ind: 0,3 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAACUwAAAAACcAAAAAAAcAAAAAAARwAAAAAAUwAAAAADRwAAAAAAUwAAAAACRwAAAAAARwAAAAAAcAAAAAAAUwAAAAADUwAAAAADcAAAAAAARwAAAAAAUwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAcAAAAAAAUwAAAAAAUwAAAAABRwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAJgAAAAAAJgAAAAAAAwAAAAAAAQAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAACUwAAAAABUwAAAAADUwAAAAACMwAAAAAAcAAAAAAAJgAAAAAAJgAAAAAAAwAAAAAAAQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAABUwAAAAABMwAAAAAAcAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABMwAAAAAAcAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAADUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAACVAAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAACVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAACVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAADVAAAAAADVAAAAAACVAAAAAADVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAAAVAAAAAABVAAAAAABVAAAAAADVAAAAAABVAAAAAABVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAACcQAAAAAAcQAAAAAASAAAAAAAVAAAAAADSAAAAAAAVAAAAAACSAAAAAAASAAAAAAAcQAAAAAAVAAAAAADVAAAAAADcQAAAAAASAAAAAAAVAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABSAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAABVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAJwAAAAAAJwAAAAAAAwAAAAAAAQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAACVAAAAAABVAAAAAADVAAAAAACNAAAAAAAcQAAAAAAJwAAAAAAJwAAAAAAAwAAAAAAAQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAABVAAAAAABNAAAAAAAcQAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAQAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAADVAAAAAADVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABNAAAAAAAcQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAACVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAADVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAACVAAAAAABVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAADVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA version: 6 1,2: ind: 1,2 - tiles: DAAAAAACDAAAAAACDAAAAAADDAAAAAADDAAAAAADcAAAAAAAKgAAAAAAGgAAAAABGgAAAAACcAAAAAAAXwAAAAAAYAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAADAAAAAADDAAAAAABDAAAAAABDAAAAAACDAAAAAADcAAAAAAAKgAAAAACGgAAAAADcAAAAAAAcAAAAAAAXwAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAGgAAAAACGgAAAAAAGgAAAAAAGgAAAAAAGgAAAAADcAAAAAAAKgAAAAABGgAAAAACGgAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKgAAAAACKgAAAAAAKgAAAAADKgAAAAADKgAAAAACKgAAAAAAKgAAAAABGgAAAAAAGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAGgAAAAAAGgAAAAADGgAAAAAAGgAAAAACGgAAAAAAGgAAAAACGgAAAAABGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAYAAAAAAAYAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAGgAAAAACGgAAAAABGgAAAAABGgAAAAADGgAAAAABGgAAAAAAGgAAAAABGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAPQAAAAAAWAAAAAAAcAAAAAAAUwAAAAAAGgAAAAACGgAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcAAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAUwAAAAAAWAAAAAAAbQAAAAABbQAAAAABbQAAAAADbQAAAAADcAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcAAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAPQAAAAAAUwAAAAADcAAAAAAAPQAAAAAAbQAAAAAAbQAAAAADbQAAAAACbQAAAAAAcAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcAAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAbQAAAAADbQAAAAADbQAAAAACbQAAAAAAGgAAAAACEwAAAAAAEwAAAAAAEwAAAAAAcAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAADcAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAARwAAAAAAUwAAAAADUwAAAAABUwAAAAADRwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAEAAAAAAAEAAAAAABEAAAAAABEAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAARwAAAAAAUwAAAAADUwAAAAABUwAAAAACRwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAEAAAAAAAEAAAAAABEAAAAAACEAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAACUwAAAAACOgAAAAAAOgAAAAAAOgAAAAAAEAAAAAAAEAAAAAAAEAAAAAACEAAAAAAB + tiles: DAAAAAACDAAAAAACDAAAAAADDAAAAAADDAAAAAADcQAAAAAAKwAAAAAAGwAAAAABGwAAAAACcQAAAAAAYAAAAAAAYQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAADAAAAAADDAAAAAABDAAAAAABDAAAAAACDAAAAAADcQAAAAAAKwAAAAACGwAAAAADcQAAAAAAcQAAAAAAYAAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAGwAAAAACGwAAAAAAGwAAAAAAGwAAAAAAGwAAAAADcQAAAAAAKwAAAAABGwAAAAACGwAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKwAAAAACKwAAAAAAKwAAAAADKwAAAAADKwAAAAACKwAAAAAAKwAAAAABGwAAAAAAGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAGwAAAAAAGwAAAAADGwAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAABGwAAAAABGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAYQAAAAAAYQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAGwAAAAACGwAAAAABGwAAAAABGwAAAAADGwAAAAABGwAAAAAAGwAAAAABGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAAGwAAAAADcQAAAAAAcQAAAAAAPgAAAAAAWQAAAAAAcQAAAAAAVAAAAAAAGwAAAAACGwAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAVAAAAAAAWQAAAAAAbgAAAAABbgAAAAABbgAAAAADbgAAAAADcQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAPgAAAAAAVAAAAAADcQAAAAAAPgAAAAAAbgAAAAAAbgAAAAADbgAAAAACbgAAAAAAcQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAbgAAAAADbgAAAAADbgAAAAACbgAAAAAAGwAAAAACEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAADcQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASAAAAAAAVAAAAAADVAAAAAABVAAAAAADSAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAEAAAAAAAEAAAAAABEAAAAAABEAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASAAAAAAAVAAAAAADVAAAAAABVAAAAAACSAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAEAAAAAAAEAAAAAABEAAAAAACEAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAACVAAAAAACOwAAAAAAOwAAAAAAOwAAAAAAEAAAAAAAEAAAAAAAEAAAAAACEAAAAAAB version: 6 -2,0: ind: -2,0 - tiles: UwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAAAUwAAAAABKgAAAAACUwAAAAAAKgAAAAACUwAAAAADKgAAAAABUwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAKgAAAAABUwAAAAADKgAAAAACUwAAAAADKgAAAAACUwAAAAAAKgAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAAAcAAAAAAAGgAAAAACGgAAAAACGgAAAAACGgAAAAACcAAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAGgAAAAABGgAAAAABcAAAAAAAGgAAAAADGgAAAAABGgAAAAAAGgAAAAAARwAAAAAAUwAAAAABUwAAAAACUwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAcAAAAAAAGgAAAAADGgAAAAAAcAAAAAAAGgAAAAABGgAAAAABGgAAAAAAGgAAAAABRwAAAAAAUwAAAAACUwAAAAADUwAAAAADcAAAAAAAUwAAAAABUwAAAAACUwAAAAAAcAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAACGgAAAAADcAAAAAAAUwAAAAACUwAAAAADUwAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAABGgAAAAADRwAAAAAAGgAAAAADGgAAAAACGgAAAAABGgAAAAADUwAAAAADUwAAAAABUwAAAAABcAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUwAAAAABGgAAAAACGgAAAAABGgAAAAADGgAAAAADGgAAAAADGgAAAAAAGgAAAAABRwAAAAAAUwAAAAABUwAAAAABUwAAAAADcAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAACGgAAAAACGgAAAAAAGgAAAAADGgAAAAADRwAAAAAAUwAAAAAAUwAAAAACUwAAAAAARwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAcAAAAAAAGgAAAAADGgAAAAADGgAAAAABRwAAAAAAGgAAAAADGgAAAAADGgAAAAAAGgAAAAAAUwAAAAADUwAAAAAAUwAAAAADUwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUwAAAAACGgAAAAABGgAAAAABcAAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAABcAAAAAAAUwAAAAADUwAAAAABUwAAAAACRwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAcAAAAAAAGgAAAAACGgAAAAABcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAABGgAAAAAARwAAAAAAUwAAAAADUwAAAAADUwAAAAADcAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAcAAAAAAAGgAAAAABGgAAAAADcAAAAAAAGgAAAAABGgAAAAACGgAAAAAAGgAAAAAARwAAAAAAUwAAAAADUwAAAAABUwAAAAABcAAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAUwAAAAAA + tiles: VAAAAAACVAAAAAACVAAAAAACVAAAAAACVAAAAAADVAAAAAADVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAACVAAAAAADVAAAAAAAVAAAAAABKwAAAAACVAAAAAAAKwAAAAACVAAAAAADKwAAAAABVAAAAAACVAAAAAACVAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAACVAAAAAAAKwAAAAABVAAAAAADKwAAAAACVAAAAAADKwAAAAACVAAAAAAAKwAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAACVAAAAAABVAAAAAACVAAAAAADVAAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAADVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAAAcQAAAAAAGwAAAAACGwAAAAACGwAAAAACGwAAAAACcQAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAAAcQAAAAAAGwAAAAABGwAAAAABcQAAAAAAGwAAAAADGwAAAAABGwAAAAAAGwAAAAAASAAAAAAAVAAAAAABVAAAAAACVAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAcQAAAAAAGwAAAAADGwAAAAAAcQAAAAAAGwAAAAABGwAAAAABGwAAAAAAGwAAAAABSAAAAAAAVAAAAAACVAAAAAADVAAAAAADcQAAAAAAVAAAAAABVAAAAAACVAAAAAAAcQAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAACGwAAAAADcQAAAAAAVAAAAAACVAAAAAADVAAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAABGwAAAAADSAAAAAAAGwAAAAADGwAAAAACGwAAAAABGwAAAAADVAAAAAADVAAAAAABVAAAAAABcQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAVAAAAAABGwAAAAACGwAAAAABGwAAAAADGwAAAAADGwAAAAADGwAAAAAAGwAAAAABSAAAAAAAVAAAAAABVAAAAAABVAAAAAADcQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAACGwAAAAACGwAAAAAAGwAAAAADGwAAAAADSAAAAAAAVAAAAAAAVAAAAAACVAAAAAAASAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcQAAAAAAGwAAAAADGwAAAAADGwAAAAABSAAAAAAAGwAAAAADGwAAAAADGwAAAAAAGwAAAAAAVAAAAAADVAAAAAAAVAAAAAADVAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAVAAAAAACGwAAAAABGwAAAAABcQAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAABcQAAAAAAVAAAAAADVAAAAAABVAAAAAACSAAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcQAAAAAAGwAAAAACGwAAAAABcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAABGwAAAAAASAAAAAAAVAAAAAADVAAAAAADVAAAAAADcQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAcQAAAAAAGwAAAAABGwAAAAADcQAAAAAAGwAAAAABGwAAAAACGwAAAAAAGwAAAAAASAAAAAAAVAAAAAADVAAAAAABVAAAAAABcQAAAAAAUQAAAAAAUQAAAAAAUQAAAAAAVAAAAAAA version: 6 -2,1: ind: -2,1 - tiles: GgAAAAADGgAAAAAAcAAAAAAAGgAAAAACGgAAAAABGgAAAAABGgAAAAADcAAAAAAAUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAABcAAAAAAAUwAAAAAAUwAAAAADUwAAAAADcAAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAADcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADcAAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAACUwAAAAABUwAAAAACcAAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAADUwAAAAADcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAACUwAAAAADUwAAAAADUwAAAAAARwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAARwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAABUwAAAAADUwAAAAAAUwAAAAABUwAAAAABRwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAARwAAAAAAUwAAAAADUwAAAAACcAAAAAAAcAAAAAAARwAAAAAAUwAAAAABRwAAAAAAUwAAAAAAUwAAAAABcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAUwAAAAABUwAAAAACUwAAAAACbQAAAAACbQAAAAADbQAAAAACbQAAAAADbQAAAAABbQAAAAADbQAAAAADbQAAAAADcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAUwAAAAACUwAAAAACcAAAAAAAbQAAAAACbQAAAAADbQAAAAACbQAAAAACbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAABcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAUwAAAAACUwAAAAABcAAAAAAAbQAAAAAAbQAAAAADbQAAAAACbQAAAAAAbQAAAAADbQAAAAABbQAAAAADbQAAAAACcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAUwAAAAADUwAAAAADRwAAAAAAbQAAAAABbQAAAAACbQAAAAAAbQAAAAAAbQAAAAABbQAAAAACbQAAAAABbQAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAUwAAAAABUwAAAAACUwAAAAACbQAAAAADbQAAAAACbQAAAAAAbQAAAAABbQAAAAABbQAAAAADbQAAAAACbQAAAAAAcAAAAAAARwAAAAAAUwAAAAAARwAAAAAARwAAAAAAUwAAAAACUwAAAAABRwAAAAAAbQAAAAABbQAAAAAAbQAAAAABbQAAAAACbQAAAAAAbQAAAAABbQAAAAACbQAAAAACcAAAAAAAJQAAAAAAJQAAAAADJQAAAAABJQAAAAAB + tiles: GwAAAAADGwAAAAAAcQAAAAAAGwAAAAACGwAAAAABGwAAAAABGwAAAAADcQAAAAAAVAAAAAAAVAAAAAABVAAAAAADcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAABcQAAAAAAVAAAAAAAVAAAAAADVAAAAAADcQAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAAAVAAAAAACVAAAAAADVAAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAADcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAADcQAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAACVAAAAAABVAAAAAACcQAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAAAVAAAAAADVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAADVAAAAAADVAAAAAACVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAABVAAAAAAAVAAAAAADVAAAAAABVAAAAAADVAAAAAADcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAACVAAAAAADVAAAAAACVAAAAAADVAAAAAADVAAAAAAASAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAAAVAAAAAABVAAAAAADVAAAAAAAVAAAAAABVAAAAAABSAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASAAAAAAAVAAAAAADVAAAAAACcQAAAAAAcQAAAAAASAAAAAAAVAAAAAABSAAAAAAAVAAAAAAAVAAAAAABcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAVAAAAAABVAAAAAACVAAAAAACbgAAAAACbgAAAAADbgAAAAACbgAAAAADbgAAAAABbgAAAAADbgAAAAADbgAAAAADcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAVAAAAAACVAAAAAACcQAAAAAAbgAAAAACbgAAAAADbgAAAAACbgAAAAACbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAABcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAVAAAAAACVAAAAAABcQAAAAAAbgAAAAAAbgAAAAADbgAAAAACbgAAAAAAbgAAAAADbgAAAAABbgAAAAADbgAAAAACcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAVAAAAAADVAAAAAADSAAAAAAAbgAAAAABbgAAAAACbgAAAAAAbgAAAAAAbgAAAAABbgAAAAACbgAAAAABbgAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAVAAAAAABVAAAAAACVAAAAAACbgAAAAADbgAAAAACbgAAAAAAbgAAAAABbgAAAAABbgAAAAADbgAAAAACbgAAAAAAcQAAAAAASAAAAAAAVAAAAAAASAAAAAAASAAAAAAAVAAAAAACVAAAAAABSAAAAAAAbgAAAAABbgAAAAAAbgAAAAABbgAAAAACbgAAAAAAbgAAAAABbgAAAAACbgAAAAACcQAAAAAAJgAAAAAAJgAAAAADJgAAAAABJgAAAAAB version: 6 0,2: ind: 0,2 - tiles: cAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAACcAAAAAAAUwAAAAACUwAAAAADUwAAAAABGgAAAAACGgAAAAACKgAAAAACGgAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADKgAAAAACGgAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAGgAAAAAAKgAAAAAAGgAAAAADUwAAAAADPQAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAAAUwAAAAAARwAAAAAAGgAAAAABKgAAAAAAKgAAAAADcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAABUwAAAAADGgAAAAACGgAAAAACGgAAAAACGgAAAAACcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAGgAAAAAAGgAAAAABGgAAAAAAGgAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAARgAAAAABRgAAAAACOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADRwAAAAAAGgAAAAABGgAAAAAAGgAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAARgAAAAADRgAAAAADOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAAARwAAAAAAbQAAAAABcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAACRwAAAAAAbQAAAAADLQAAAAACXwAAAAAAcAAAAAAAcAAAAAAARgAAAAABRgAAAAADOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAADUwAAAAADRwAAAAAAbQAAAAACLQAAAAADXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALQAAAAABXwAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAADRwAAAAAAbwAAAAAAbwAAAAAALQAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABRwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADRwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAACcAAAAAAAcAAAAAAARwAAAAAA + tiles: cQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAACcQAAAAAAVAAAAAACVAAAAAADVAAAAAABGwAAAAACGwAAAAACKwAAAAACGwAAAAABcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADKwAAAAACGwAAAAADcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAAAVAAAAAADVAAAAAACcQAAAAAAGwAAAAAAKwAAAAAAGwAAAAADVAAAAAADPgAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAABVAAAAAABVAAAAAABVAAAAAAAVAAAAAAASAAAAAAAGwAAAAABKwAAAAAAKwAAAAADcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAABVAAAAAAAVAAAAAADVAAAAAABVAAAAAADGwAAAAACGwAAAAACGwAAAAACGwAAAAACcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAGwAAAAAAGwAAAAABGwAAAAAAGwAAAAABcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAARwAAAAABRwAAAAACPAAAAAAAPAAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAADSAAAAAAAGwAAAAABGwAAAAAAGwAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAARwAAAAADRwAAAAADPAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAAASAAAAAAAbgAAAAABcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAACSAAAAAAAbgAAAAADLgAAAAACYAAAAAAAcQAAAAAAcQAAAAAARwAAAAABRwAAAAADPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAADVAAAAAADSAAAAAAAbgAAAAACLgAAAAADYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAALgAAAAABYAAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAAAVAAAAAADSAAAAAAAcAAAAAAAcAAAAAAALgAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABVAAAAAABSAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADSAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAACcQAAAAAAcQAAAAAASAAAAAAA version: 6 0,1: ind: 0,1 - tiles: GgAAAAABGgAAAAAAGgAAAAAALwAAAAAALwAAAAABUwAAAAABUwAAAAACUwAAAAACGgAAAAABGgAAAAACGgAAAAAAGgAAAAACGgAAAAABEwAAAAAAEwAAAAAAEwAAAAAAGgAAAAABGgAAAAACcAAAAAAALwAAAAAALwAAAAABUwAAAAAAUwAAAAAAUwAAAAAARwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAGgAAAAABGgAAAAACcAAAAAAALwAAAAAALwAAAAADUwAAAAACUwAAAAAAUwAAAAABRwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAADcAAAAAAALwAAAAABcAAAAAAAUwAAAAADUwAAAAABUwAAAAACcAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcAAAAAAAUwAAAAACUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAACUwAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAABUwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAABcAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABRwAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAADcAAAAAAAGgAAAAADGgAAAAADGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACOQAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAADRwAAAAAAGgAAAAACGgAAAAABGgAAAAACcAAAAAAAGgAAAAABGgAAAAACGgAAAAACOQAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAACRwAAAAAAGgAAAAAAGgAAAAACGgAAAAACcAAAAAAAGgAAAAADGgAAAAADGgAAAAAAOQAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAADcAAAAAAAGgAAAAABGgAAAAADGgAAAAAAcAAAAAAAGgAAAAABKgAAAAACKgAAAAACOQAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAAAcAAAAAAAGgAAAAAAGgAAAAACGgAAAAABGgAAAAABGgAAAAAAKgAAAAADGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABKgAAAAAADAAAAAACcAAAAAAAPQAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAABcAAAAAAAUwAAAAAAUwAAAAADUwAAAAACcAAAAAAAGgAAAAACKgAAAAABDAAAAAAC + tiles: GwAAAAABGwAAAAAAGwAAAAAAMAAAAAAAMAAAAAABVAAAAAABVAAAAAACVAAAAAACGwAAAAABGwAAAAACGwAAAAAAGwAAAAACGwAAAAABEwAAAAAAEwAAAAAAEwAAAAAAGwAAAAABGwAAAAACcQAAAAAAMAAAAAAAMAAAAAABVAAAAAAAVAAAAAAAVAAAAAAASAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAGwAAAAABGwAAAAACcQAAAAAAMAAAAAAAMAAAAAADVAAAAAACVAAAAAAAVAAAAAABSAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAADcQAAAAAAMAAAAAABcQAAAAAAVAAAAAADVAAAAAABVAAAAAACcQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAVAAAAAACVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAACVAAAAAABVAAAAAACVAAAAAACVAAAAAADVAAAAAADVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAACVAAAAAABVAAAAAABVAAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAACVAAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAABVAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAABcQAAAAAAVAAAAAACcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAABSAAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAADcQAAAAAAGwAAAAADGwAAAAADGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACOgAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAADSAAAAAAAGwAAAAACGwAAAAABGwAAAAACcQAAAAAAGwAAAAABGwAAAAACGwAAAAACOgAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAACSAAAAAAAGwAAAAAAGwAAAAACGwAAAAACcQAAAAAAGwAAAAADGwAAAAADGwAAAAAAOgAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAADcQAAAAAAGwAAAAABGwAAAAADGwAAAAAAcQAAAAAAGwAAAAABKwAAAAACKwAAAAACOgAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAAAcQAAAAAAGwAAAAAAGwAAAAACGwAAAAABGwAAAAABGwAAAAAAKwAAAAADGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABKwAAAAAADAAAAAACcQAAAAAAPgAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAABcQAAAAAAVAAAAAAAVAAAAAADVAAAAAACcQAAAAAAGwAAAAACKwAAAAABDAAAAAAC version: 6 2,1: ind: 2,1 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAACUwAAAAACcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAABUwAAAAAAUwAAAAACcAAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAABUwAAAAADcAAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAADUwAAAAACcAAAAAAARwAAAAAAUwAAAAABRwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAACRwAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAACUwAAAAAAUwAAAAABRwAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAABRwAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAABUwAAAAAARwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAACUwAAAAADUwAAAAAAUwAAAAADUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAADUwAAAAAAUwAAAAABcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAADRwAAAAAAUwAAAAABUwAAAAACUwAAAAABcAAAAAAAUwAAAAAAUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAABRwAAAAAAUwAAAAACUwAAAAAAUwAAAAACGgAAAAADUwAAAAADUwAAAAAAUwAAAAABcAAAAAAAUwAAAAABUwAAAAADUwAAAAADUwAAAAABUwAAAAACUwAAAAACUwAAAAADRwAAAAAAUwAAAAADUwAAAAADUwAAAAADGgAAAAACUwAAAAABUwAAAAAAUwAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADRwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAADRwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAUwAAAAAAUwAAAAADUwAAAAABRwAAAAAARwAAAAAAbwAAAAAAbwAAAAAARwAAAAAARwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAARwAAAAAARwAAAAAAUwAAAAADUwAAAAADUwAAAAADGgAAAAAARwAAAAAAbwAAAAAAbwAAAAAARwAAAAAARwAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAARwAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAACGgAAAAAB + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAADVAAAAAABVAAAAAADVAAAAAACVAAAAAACcQAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAABVAAAAAAAVAAAAAACcQAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAADVAAAAAABVAAAAAADVAAAAAABVAAAAAADcQAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAADVAAAAAACcQAAAAAASAAAAAAAVAAAAAABSAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAACSAAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAADVAAAAAACVAAAAAAAVAAAAAABSAAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAAAVAAAAAABVAAAAAABSAAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAABVAAAAAAASAAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAACVAAAAAADVAAAAAAAVAAAAAADVAAAAAADVAAAAAADVAAAAAABVAAAAAABVAAAAAABVAAAAAABVAAAAAACVAAAAAACVAAAAAADVAAAAAAAVAAAAAABcQAAAAAAVAAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAACVAAAAAACVAAAAAADVAAAAAADVAAAAAABVAAAAAADVAAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAADSAAAAAAAVAAAAAABVAAAAAACVAAAAAABcQAAAAAAVAAAAAAAVAAAAAABVAAAAAACVAAAAAACVAAAAAABVAAAAAAAVAAAAAABSAAAAAAAVAAAAAACVAAAAAAAVAAAAAACGwAAAAADVAAAAAADVAAAAAAAVAAAAAABcQAAAAAAVAAAAAABVAAAAAADVAAAAAADVAAAAAABVAAAAAACVAAAAAACVAAAAAADSAAAAAAAVAAAAAADVAAAAAADVAAAAAADGwAAAAACVAAAAAABVAAAAAAAVAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAADSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAADSAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAAAVAAAAAADVAAAAAABSAAAAAAASAAAAAAAcAAAAAAAcAAAAAAASAAAAAAASAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAASAAAAAAASAAAAAAAVAAAAAADVAAAAAADVAAAAAADGwAAAAAASAAAAAAAcAAAAAAAcAAAAAAASAAAAAAASAAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAASAAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAACGwAAAAAB version: 6 3,0: ind: 3,0 - tiles: RwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: SAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,1: ind: 3,1 - tiles: cAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAMwAAAAAAMwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAMwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAcAAAAAAARwAAAAAARwAAAAAAMwAAAAAAMwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACcAAAAAAAJwAAAAAAJwAAAAAAJwAAAAAAcAAAAAAARwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAADcAAAAAAARwAAAAAAPQAAAAAARwAAAAAAcAAAAAAARwAAAAAAPQAAAAAARwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAGgAAAAABPQAAAAAAPQAAAAAAPQAAAAAAGgAAAAADcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAbwAAAAAAGgAAAAACGgAAAAAAGgAAAAACGgAAAAABGgAAAAACGgAAAAACGgAAAAABGgAAAAABGgAAAAABGgAAAAADPQAAAAAAPQAAAAAAPQAAAAAAXwAAAAAAXwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACGgAAAAADGgAAAAACGgAAAAADGgAAAAABGgAAAAAAGgAAAAACPQAAAAAAPQAAAAAAPQAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAGgAAAAADGgAAAAACcAAAAAAAGgAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACPQAAAAAAPQAAAAAAPQAAAAAAXwAAAAAAcAAAAAAAAAAAAAAASQAAAAAASQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAACcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAAAAAAAAASQAAAAAASQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAAAAAAAAASQAAAAAASQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAGgAAAAADcAAAAAAAGgAAAAABGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABGgAAAAAAGgAAAAADGgAAAAADGgAAAAABGgAAAAADGgAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAANAAAAAAANAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAANAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAcQAAAAAASAAAAAAASAAAAAAANAAAAAAANAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAACcQAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAcQAAAAAASAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAADcQAAAAAASAAAAAAAPgAAAAAASAAAAAAAcQAAAAAASAAAAAAAPgAAAAAASAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAGwAAAAABPgAAAAAAPgAAAAAAPgAAAAAAGwAAAAADcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAGwAAAAACGwAAAAAAGwAAAAACGwAAAAABGwAAAAACGwAAAAACGwAAAAABGwAAAAABGwAAAAABGwAAAAADPgAAAAAAPgAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACGwAAAAADGwAAAAACGwAAAAADGwAAAAABGwAAAAAAGwAAAAACPgAAAAAAPgAAAAAAPgAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAGwAAAAADGwAAAAACcQAAAAAAGwAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACPgAAAAAAPgAAAAAAPgAAAAAAYAAAAAAAcQAAAAAAAAAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAACcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAAAGwAAAAADcQAAAAAAGwAAAAABGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABGwAAAAAAGwAAAAADGwAAAAADGwAAAAABGwAAAAADGwAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,2: ind: 3,2 - tiles: GgAAAAADGgAAAAADcAAAAAAAGgAAAAAAGgAAAAAAGgAAAAABGgAAAAAAGgAAAAACGgAAAAAAGgAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: GwAAAAADGwAAAAADcQAAAAAAGwAAAAAAGwAAAAAAGwAAAAABGwAAAAAAGwAAAAACGwAAAAAAGwAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,3: ind: 3,3 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAARwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA version: 6 -3,6: ind: -3,6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAXwAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcAAAAAAAPQAAAAAAXwAAAAAAPQAAAAAAcAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHcAAAAAAAPQAAAAAAXwAAAAAAPQAAAAAAcAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHcAAAAAAAPQAAAAAAcAAAAAAAPQAAAAAAcAAAAAAABwAAAAACBwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAIBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAEBwAAAAAEBwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAGBwAAAAAABwAAAAADBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAKBwAAAAAABwAAAAACBwAAAAAMBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAJ + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAPgAAAAAAcQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHcQAAAAAAPgAAAAAAYAAAAAAAPgAAAAAAcQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHcQAAAAAAPgAAAAAAcQAAAAAAPgAAAAAAcQAAAAAABwAAAAACBwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAIBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAEBwAAAAAEBwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAGBwAAAAAABwAAAAADBwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAKBwAAAAAABwAAAAACBwAAAAAMBwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAAJ version: 6 -2,7: ind: -2,7 @@ -300,83 +300,83 @@ entities: version: 6 -3,7: ind: -3,7 - tiles: BwAAAAAEBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAALBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA + tiles: BwAAAAAEBwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAABwAAAAAGBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAAMBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAKBwAAAAABBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAIBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAHBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAEBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAFBwAAAAALBwAAAAALBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAGBwAAAAAABwAAAAAFBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAACgAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAASQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAASQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAASQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAASQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAASQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAASQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAASQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAASQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAABwAAAAAABwAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAA version: 6 -2,6: ind: -2,6 - tiles: cAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAbQAAAAAAbQAAAAABbQAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAACUwAAAAACBwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbQAAAAABbQAAAAACbQAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAADBwAAAAAABwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAWAAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAABWAAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAWAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAALBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cQAAAAAAAAAAAAAAAAAAAAAASAAAAAAAbgAAAAAAbgAAAAABbgAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAACVAAAAAACBwAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAbgAAAAABbgAAAAACbgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAVAAAAAADBwAAAAAABwAAAAAAAAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAWQAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAABWQAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAWQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAALBwAAAAABBwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAJBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAACBwAAAAAABwAAAAAABwAAAAAKBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABwAAAAAABwAAAAAABwAAAAADBwAAAAALBwAAAAAABwAAAAADBwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAABwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,3: ind: 2,3 - tiles: EAAAAAACOgAAAAAAOgAAAAAAcAAAAAAAXwAAAAAAYQAAAAACXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAABRwAAAAAAEAAAAAABOgAAAAAAOgAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAABUwAAAAACRwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAABRwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAACRwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAABRwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAAUwAAAAACRwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: EAAAAAACOwAAAAAAOwAAAAAAcQAAAAAAYAAAAAAAYgAAAAACYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAABSAAAAAAAEAAAAAABOwAAAAAAOwAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAABVAAAAAACSAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAABSAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAACSAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAABVAAAAAABSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAVAAAAAACSAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA version: 6 2,2: ind: 2,2 - tiles: RwAAAAAAbwAAAAAAbwAAAAAARwAAAAAARwAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAARwAAAAAARwAAAAAAUwAAAAABUwAAAAADUwAAAAADRwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAARwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAARwAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAABRwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAABRwAAAAAAYAAAAAAAYAAAAAAAXwAAAAAARwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAARwAAAAAAUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAARwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAARwAAAAAAUwAAAAACUwAAAAABUwAAAAADRwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAACRwAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAYAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAACUwAAAAABcAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAYAAAAAAAXwAAAAAAPQAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAACUwAAAAAAUwAAAAADUwAAAAACUwAAAAADRwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAPQAAAAAAcAAAAAAAUwAAAAACUwAAAAABUwAAAAABUwAAAAAAUwAAAAABUwAAAAADUwAAAAACRwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAPQAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAADUwAAAAAAUwAAAAACcAAAAAAAEAAAAAADOgAAAAAAOgAAAAAAcAAAAAAAXwAAAAAAYQAAAAAAPQAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAAAUwAAAAAAUwAAAAADUwAAAAABUwAAAAABcAAAAAAAEAAAAAADOgAAAAAAOgAAAAAAcAAAAAAAXwAAAAAAYQAAAAADPQAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAADUwAAAAABUwAAAAADRwAAAAAAEAAAAAACOgAAAAAAOgAAAAAAcAAAAAAAXwAAAAAAYQAAAAACXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAAAUwAAAAAAUwAAAAABRwAAAAAA + tiles: SAAAAAAAcAAAAAAAcAAAAAAASAAAAAAASAAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAASAAAAAAASAAAAAAAVAAAAAABVAAAAAADVAAAAAADSAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAASAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAASAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAABSAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAABSAAAAAAAYQAAAAAAYQAAAAAAYAAAAAAASAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASAAAAAAAVAAAAAADVAAAAAABVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAASAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASAAAAAAAVAAAAAACVAAAAAABVAAAAAADSAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAACSAAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAACVAAAAAABcQAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAYQAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAACVAAAAAAAVAAAAAADVAAAAAACVAAAAAADSAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAVAAAAAACVAAAAAABVAAAAAABVAAAAAAAVAAAAAABVAAAAAADVAAAAAACSAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAADVAAAAAADVAAAAAADVAAAAAAAVAAAAAACcQAAAAAAEAAAAAADOwAAAAAAOwAAAAAAcQAAAAAAYAAAAAAAYgAAAAAAPgAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADVAAAAAABVAAAAAABcQAAAAAAEAAAAAADOwAAAAAAOwAAAAAAcQAAAAAAYAAAAAAAYgAAAAADPgAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAACVAAAAAADVAAAAAABVAAAAAADSAAAAAAAEAAAAAACOwAAAAAAOwAAAAAAcQAAAAAAYAAAAAAAYgAAAAACYAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAAAVAAAAAAAVAAAAAABSAAAAAAA version: 6 -1,2: ind: -1,2 - tiles: RwAAAAAAGgAAAAAAGgAAAAAAGgAAAAADGgAAAAACGgAAAAABRwAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAABUwAAAAABUwAAAAABRwAAAAAAGgAAAAABGgAAAAACGgAAAAAAGgAAAAADGgAAAAADUwAAAAACOQAAAAAAOQAAAAAAOQAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAABUwAAAAAAGgAAAAAAGgAAAAADGgAAAAACRwAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAADUwAAAAADUwAAAAADUwAAAAABUwAAAAADGgAAAAABGgAAAAAAGgAAAAABUwAAAAADOQAAAAAAOQAAAAAAOQAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAADUwAAAAAAUwAAAAACRwAAAAAAUwAAAAABUwAAAAAAGgAAAAABGgAAAAADGgAAAAACRwAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAABUwAAAAADcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAKQAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAUwAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAARwAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADRwAAAAAAcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAABUwAAAAABKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAAKQAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAABcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAALQAAAAACLQAAAAACLQAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACUwAAAAACcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAALQAAAAAALQAAAAACLQAAAAACNwAAAAAANwAAAAAANwAAAAAANwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAABUwAAAAADcAAAAAAAKQAAAAAAKQAAAAAAKQAAAAAALQAAAAABLQAAAAABLQAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALQAAAAAALQAAAAADLQAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAANwAAAAAANwAAAAAANwAAAAAANwAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: SAAAAAAAGwAAAAAAGwAAAAAAGwAAAAADGwAAAAACGwAAAAABSAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAABVAAAAAABVAAAAAABSAAAAAAAGwAAAAABGwAAAAACGwAAAAAAGwAAAAADGwAAAAADVAAAAAACOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAABVAAAAAAAGwAAAAAAGwAAAAADGwAAAAACSAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAADVAAAAAADVAAAAAADVAAAAAABVAAAAAADGwAAAAABGwAAAAAAGwAAAAABVAAAAAADOgAAAAAAOgAAAAAAOgAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAADVAAAAAAAVAAAAAACSAAAAAAAVAAAAAABVAAAAAAAGwAAAAABGwAAAAADGwAAAAACSAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAABVAAAAAADcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKgAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAVAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAASAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADSAAAAAAAcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAABVAAAAAABKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAABcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAACLgAAAAACLgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAACVAAAAAACcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAAALgAAAAACLgAAAAACOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAABVAAAAAADcQAAAAAAKgAAAAAAKgAAAAAAKgAAAAAALgAAAAABLgAAAAABLgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAALgAAAAAALgAAAAADLgAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA version: 6 -1,1: ind: -1,1 - tiles: EgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAALwAAAAAALwAAAAABKgAAAAACKgAAAAACLwAAAAAALwAAAAAALwAAAAABGgAAAAABGgAAAAACGgAAAAACGgAAAAADGgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAALwAAAAADLwAAAAACKgAAAAACKgAAAAABLwAAAAABLwAAAAADLwAAAAACcAAAAAAAGgAAAAACGgAAAAAAGgAAAAABGgAAAAADEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAALwAAAAADLwAAAAABKgAAAAADKgAAAAACLwAAAAACLwAAAAACLwAAAAADcAAAAAAAGgAAAAACGgAAAAADGgAAAAAAGgAAAAADEgAAAAAAEgAAAAAAEgAAAAAAcAAAAAAALwAAAAADLwAAAAACKgAAAAADKgAAAAABLwAAAAACcAAAAAAALwAAAAACcAAAAAAAGgAAAAADGgAAAAAAGgAAAAACGgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAADUwAAAAADUwAAAAADUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAAAUwAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAABUwAAAAADUwAAAAABUwAAAAACUwAAAAAAUwAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAADUwAAAAACUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAUwAAAAACUwAAAAACUwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAABUwAAAAABUwAAAAABcAAAAAAAUwAAAAABUwAAAAABUwAAAAABOwAAAAAAcAAAAAAAUwAAAAADUwAAAAAAUwAAAAABcAAAAAAAUwAAAAACRwAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAADcAAAAAAARwAAAAAAUwAAAAADUwAAAAACOwAAAAAAcAAAAAAAUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAcAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOwAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAADcAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAcAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOwAAAAAAcAAAAAAAUwAAAAADUwAAAAABUwAAAAACcAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAcAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOwAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAABcAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAcAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAUwAAAAADcAAAAAAARwAAAAAAGgAAAAACGgAAAAAAGgAAAAABGgAAAAADGgAAAAADRwAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAcAAAAAAAUwAAAAABUwAAAAAAUwAAAAABUwAAAAACUwAAAAAC + tiles: EgAAAAAAEgAAAAAAEgAAAAAAcQAAAAAAMAAAAAAAMAAAAAABKwAAAAACKwAAAAACMAAAAAAAMAAAAAAAMAAAAAABGwAAAAABGwAAAAACGwAAAAACGwAAAAADGwAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAMAAAAAADMAAAAAACKwAAAAACKwAAAAABMAAAAAABMAAAAAADMAAAAAACcQAAAAAAGwAAAAACGwAAAAAAGwAAAAABGwAAAAADEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAMAAAAAADMAAAAAABKwAAAAADKwAAAAACMAAAAAACMAAAAAACMAAAAAADcQAAAAAAGwAAAAACGwAAAAADGwAAAAAAGwAAAAADEgAAAAAAEgAAAAAAEgAAAAAAcQAAAAAAMAAAAAADMAAAAAACKwAAAAADKwAAAAABMAAAAAACcQAAAAAAMAAAAAACcQAAAAAAGwAAAAADGwAAAAAAGwAAAAACGwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAACVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAADVAAAAAADVAAAAAADVAAAAAADVAAAAAACVAAAAAADVAAAAAABVAAAAAAAVAAAAAABVAAAAAAAVAAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAACVAAAAAACVAAAAAABVAAAAAAAVAAAAAABVAAAAAACVAAAAAABVAAAAAABVAAAAAABVAAAAAABVAAAAAADVAAAAAABVAAAAAADVAAAAAABVAAAAAACVAAAAAAAVAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAABVAAAAAADVAAAAAACVAAAAAABVAAAAAADVAAAAAACVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAVAAAAAACVAAAAAACVAAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAABVAAAAAABVAAAAAABcQAAAAAAVAAAAAABVAAAAAABVAAAAAABPAAAAAAAcQAAAAAAVAAAAAADVAAAAAAAVAAAAAABcQAAAAAAVAAAAAACSAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAADcQAAAAAASAAAAAAAVAAAAAADVAAAAAACPAAAAAAAcQAAAAAAVAAAAAACVAAAAAAAVAAAAAACcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAPAAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAADcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAPAAAAAAAcQAAAAAAVAAAAAADVAAAAAABVAAAAAACcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAPAAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAABcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAVAAAAAADcQAAAAAASAAAAAAAGwAAAAACGwAAAAAAGwAAAAABGwAAAAADGwAAAAADSAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAcQAAAAAAVAAAAAABVAAAAAAAVAAAAAABVAAAAAACVAAAAAAC version: 6 0,0: ind: 0,0 - tiles: UwAAAAABUwAAAAADUwAAAAACUwAAAAADUwAAAAABUwAAAAAAUwAAAAADUwAAAAAAUwAAAAABcAAAAAAAGgAAAAACGgAAAAABGgAAAAABcAAAAAAAGgAAAAABGgAAAAACUwAAAAAAUwAAAAACUwAAAAADUwAAAAABUwAAAAABUwAAAAACUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAGgAAAAAAcAAAAAAAUwAAAAADUwAAAAADUwAAAAAAUwAAAAACUwAAAAABUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAUwAAAAADUwAAAAACUwAAAAADUwAAAAAAUwAAAAADUwAAAAABUwAAAAACUwAAAAAARwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAALwAAAAADLwAAAAADLwAAAAADLwAAAAABcAAAAAAAUwAAAAAAUwAAAAABUwAAAAABRwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAALwAAAAADLwAAAAAALwAAAAABLwAAAAABLwAAAAACUwAAAAABUwAAAAABUwAAAAACOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAALwAAAAABLwAAAAADLwAAAAACLwAAAAACLwAAAAACUwAAAAACUwAAAAABUwAAAAACRwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAXwAAAAAALwAAAAABLwAAAAADLwAAAAADLwAAAAAALwAAAAABUwAAAAACUwAAAAADUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABLwAAAAAALwAAAAADLwAAAAACLwAAAAABLwAAAAAAUwAAAAAAUwAAAAADUwAAAAABRwAAAAAAYwAAAAADYwAAAAACYwAAAAAAYwAAAAABYwAAAAABYwAAAAABYwAAAAAALwAAAAAALwAAAAABLwAAAAAALwAAAAACLwAAAAADUwAAAAACUwAAAAAAUwAAAAAAYwAAAAADZAAAAAABZAAAAAABZAAAAAABZAAAAAAAZAAAAAABZAAAAAACZAAAAAAALwAAAAABLwAAAAADLwAAAAAALwAAAAAALwAAAAAAUwAAAAAAUwAAAAADUwAAAAABRwAAAAAAYwAAAAACYwAAAAABYwAAAAABYwAAAAACYwAAAAACYwAAAAAAZAAAAAABLwAAAAAALwAAAAABLwAAAAADLwAAAAABLwAAAAACUwAAAAAAUwAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYwAAAAACZAAAAAADLwAAAAAALwAAAAACLwAAAAADLwAAAAAALwAAAAACUwAAAAABUwAAAAABUwAAAAAAcAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcAAAAAAAYwAAAAADYwAAAAAALwAAAAADLwAAAAACLwAAAAADLwAAAAACLwAAAAADUwAAAAACUwAAAAABUwAAAAADRwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAALwAAAAACLwAAAAADcAAAAAAALwAAAAADLwAAAAACUwAAAAAAUwAAAAAAUwAAAAACRwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAALwAAAAABGgAAAAACcAAAAAAALwAAAAABLwAAAAACUwAAAAADUwAAAAACUwAAAAACGgAAAAAAGgAAAAACGgAAAAACGgAAAAAAGgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAA + tiles: VAAAAAABVAAAAAADVAAAAAACVAAAAAADVAAAAAABVAAAAAAAVAAAAAADVAAAAAAAVAAAAAABcQAAAAAAGwAAAAACGwAAAAABGwAAAAABcQAAAAAAGwAAAAABGwAAAAACVAAAAAAAVAAAAAACVAAAAAADVAAAAAABVAAAAAABVAAAAAACVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAGwAAAAAAcQAAAAAAVAAAAAADVAAAAAADVAAAAAAAVAAAAAACVAAAAAABVAAAAAADVAAAAAABVAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAVAAAAAADVAAAAAACVAAAAAADVAAAAAAAVAAAAAADVAAAAAABVAAAAAACVAAAAAAASAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAMAAAAAADMAAAAAADMAAAAAADMAAAAAABcQAAAAAAVAAAAAAAVAAAAAABVAAAAAABSAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAMAAAAAADMAAAAAAAMAAAAAABMAAAAAABMAAAAAACVAAAAAABVAAAAAABVAAAAAACPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAMAAAAAABMAAAAAADMAAAAAACMAAAAAACMAAAAAACVAAAAAACVAAAAAABVAAAAAACSAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAYAAAAAAAMAAAAAABMAAAAAADMAAAAAADMAAAAAAAMAAAAAABVAAAAAACVAAAAAADVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABMAAAAAAAMAAAAAADMAAAAAACMAAAAAABMAAAAAAAVAAAAAAAVAAAAAADVAAAAAABSAAAAAAAZAAAAAADZAAAAAACZAAAAAAAZAAAAAABZAAAAAABZAAAAAABZAAAAAAAMAAAAAAAMAAAAAABMAAAAAAAMAAAAAACMAAAAAADVAAAAAACVAAAAAAAVAAAAAAAZAAAAAADZQAAAAABZQAAAAABZQAAAAABZQAAAAAAZQAAAAABZQAAAAACZQAAAAAAMAAAAAABMAAAAAADMAAAAAAAMAAAAAAAMAAAAAAAVAAAAAAAVAAAAAADVAAAAAABSAAAAAAAZAAAAAACZAAAAAABZAAAAAABZAAAAAACZAAAAAACZAAAAAAAZQAAAAABMAAAAAAAMAAAAAABMAAAAAADMAAAAAABMAAAAAACVAAAAAAAVAAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAZAAAAAACZQAAAAADMAAAAAAAMAAAAAACMAAAAAADMAAAAAAAMAAAAAACVAAAAAABVAAAAAABVAAAAAAAcQAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAZAAAAAADZAAAAAAAMAAAAAADMAAAAAACMAAAAAADMAAAAAACMAAAAAADVAAAAAACVAAAAAABVAAAAAADSAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAMAAAAAACMAAAAAADcQAAAAAAMAAAAAADMAAAAAACVAAAAAAAVAAAAAAAVAAAAAACSAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAMAAAAAABGwAAAAACcQAAAAAAMAAAAAABMAAAAAACVAAAAAADVAAAAAACVAAAAAACGwAAAAAAGwAAAAACGwAAAAACGwAAAAAAGwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAA version: 6 -2,-3: ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAYQAAAAADXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAYQAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARgAAAAAARgAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARgAAAAABRgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARgAAAAAARgAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARgAAAAADRgAAAAACRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARgAAAAACRgAAAAACRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAARwAAAAAAAAAAAAAAcAAAAAAARgAAAAABRgAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAARwAAAAAAAAAAAAAAcAAAAAAARgAAAAACRgAAAAABRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYgAAAAADYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYgAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAARwAAAAAARwAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAARwAAAAABRwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAARwAAAAAARwAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAARwAAAAADRwAAAAACSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAARwAAAAACRwAAAAACSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAASAAAAAAAAAAAAAAAcQAAAAAARwAAAAABRwAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAASAAAAAAAAAAAAAAAcQAAAAAARwAAAAACRwAAAAABSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,2: ind: -5,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAAAPQAAAAAAPQAAAAAARwAAAAAAbQAAAAAAbQAAAAAAbQAAAAAAbQAAAAACbQAAAAACbQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAACPQAAAAAAPQAAAAAARwAAAAAAbQAAAAAAbQAAAAABbQAAAAACbQAAAAAAbQAAAAACbQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAACPQAAAAAAPQAAAAAARwAAAAAAbQAAAAAAbQAAAAADbQAAAAACbQAAAAADbQAAAAACbQAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAABPQAAAAAAPQAAAAAARwAAAAAAbQAAAAAAbQAAAAAAbQAAAAACbQAAAAACbQAAAAACbQAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARgAAAAACRgAAAAAARgAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAPgAAAAAAPgAAAAAASAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAACbgAAAAACbgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAACPgAAAAAAPgAAAAAASAAAAAAAbgAAAAAAbgAAAAABbgAAAAACbgAAAAAAbgAAAAACbgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAACPgAAAAAAPgAAAAAASAAAAAAAbgAAAAAAbgAAAAADbgAAAAACbgAAAAADbgAAAAACbgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAABPgAAAAAAPgAAAAAASAAAAAAAbgAAAAAAbgAAAAAAbgAAAAACbgAAAAACbgAAAAACbgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAACRwAAAAAARwAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -6,1: ind: -6,1 - tiles: WAAAAAAAUwAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAUwAAAAABWAAAAAAAUwAAAAAAWAAAAAAAUwAAAAACUwAAAAABWAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABWAAAAAAAUwAAAAACcAAAAAAAUwAAAAAAWAAAAAAAcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAAAWAAAAAAAcAAAAAAAUwAAAAABUwAAAAADcAAAAAAAWAAAAAAAWAAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAUwAAAAADUwAAAAACWAAAAAAAWAAAAAAAUwAAAAABWAAAAAAAUwAAAAAAUwAAAAABWAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABWAAAAAAAUwAAAAACcAAAAAAAWAAAAAAAUwAAAAADcAAAAAAAUwAAAAABUwAAAAAAUwAAAAADcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWAAAAAAAUwAAAAABWAAAAAAAUwAAAAADUwAAAAADWAAAAAAAUwAAAAAAUwAAAAAAWAAAAAAAUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAAAWAAAAAAAUwAAAAADWAAAAAAAWAAAAAAAUwAAAAAAWAAAAAAAUwAAAAADUwAAAAADUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUwAAAAABUwAAAAABUwAAAAABUwAAAAACUwAAAAABUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: WQAAAAAAVAAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAVAAAAAABWQAAAAAAVAAAAAAAWQAAAAAAVAAAAAACVAAAAAABWQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABWQAAAAAAVAAAAAACcQAAAAAAVAAAAAAAWQAAAAAAcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAAAWQAAAAAAcQAAAAAAVAAAAAABVAAAAAADcQAAAAAAWQAAAAAAWQAAAAAAWQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAVAAAAAADVAAAAAACWQAAAAAAWQAAAAAAVAAAAAABWQAAAAAAVAAAAAAAVAAAAAABWQAAAAAAWQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAVAAAAAABWQAAAAAAVAAAAAACcQAAAAAAWQAAAAAAVAAAAAADcQAAAAAAVAAAAAABVAAAAAAAVAAAAAADcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWQAAAAAAVAAAAAABWQAAAAAAVAAAAAADVAAAAAADWQAAAAAAVAAAAAAAVAAAAAAAWQAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAAAWQAAAAAAVAAAAAADWQAAAAAAWQAAAAAAVAAAAAAAWQAAAAAAVAAAAAADVAAAAAADVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVAAAAAABVAAAAAABVAAAAAABVAAAAAACVAAAAAABVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,4: ind: 0,4 - tiles: bwAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAADWAAAAAAAUwAAAAACUwAAAAADWAAAAAAAUwAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAADWAAAAAAAUwAAAAADUwAAAAAAWAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAABUwAAAAAAWAAAAAAAUwAAAAADWAAAAAAAUwAAAAADcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAWAAAAAAAUwAAAAABUwAAAAACWAAAAAAAUwAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAWAAAAAAAUwAAAAADUwAAAAACUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAWAAAAAAAUwAAAAAAWAAAAAAAWAAAAAAAUwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAUwAAAAABXwAAAAAAXwAAAAAAUwAAAAAAXwAAAAAAbwAAAAAAcAAAAAAAPQAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAUwAAAAADXwAAAAAAXwAAAAAAUwAAAAADXwAAAAAAAAAAAAAAcAAAAAAAPQAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAUwAAAAABXwAAAAAAXwAAAAAAUwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAUwAAAAACUwAAAAACUwAAAAADUwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: cAAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAADWQAAAAAAVAAAAAACVAAAAAADWQAAAAAAVAAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAADWQAAAAAAVAAAAAADVAAAAAAAWQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAABVAAAAAAAWQAAAAAAVAAAAAADWQAAAAAAVAAAAAADcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAWQAAAAAAVAAAAAABVAAAAAACWQAAAAAAVAAAAAABVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAWQAAAAAAVAAAAAADVAAAAAACVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAWQAAAAAAVAAAAAAAWQAAAAAAWQAAAAAAVAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAVAAAAAABYAAAAAAAYAAAAAAAVAAAAAAAYAAAAAAAcAAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAVAAAAAADYAAAAAAAYAAAAAAAVAAAAAADYAAAAAAAAAAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAVAAAAAABYAAAAAAAYAAAAAAAVAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAVAAAAAACVAAAAAACVAAAAAADVAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA version: 6 -3,-2: ind: -3,-2 - tiles: GgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAUwAAAAACUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAGgAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAWAAAAAAAcAAAAAAAUwAAAAABUwAAAAADUwAAAAABUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACcAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACUwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAPQAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAARwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAABGgAAAAACcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAGgAAAAADGgAAAAAAGgAAAAACcAAAAAAAPQAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAWwAAAAACcAAAAAAAGgAAAAAAGgAAAAACGgAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAABcAAAAAAAbQAAAAADcAAAAAAAcAAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAACbQAAAAAAbQAAAAABbQAAAAADbQAAAAACbQAAAAADSQAAAAAASQAAAAAASQAAAAAASQAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAPQAAAAAA + tiles: GwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAVAAAAAACVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAGwAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAWQAAAAAAcQAAAAAAVAAAAAABVAAAAAADVAAAAAABVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACcQAAAAAAWQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACVAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAASAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAPgAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAASAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAABGwAAAAACcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAGwAAAAADGwAAAAAAGwAAAAACcQAAAAAAPgAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAXAAAAAACcQAAAAAAGwAAAAAAGwAAAAACGwAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAABcQAAAAAAbgAAAAADcQAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAbgAAAAADbgAAAAACbgAAAAAAbgAAAAABbgAAAAADbgAAAAACbgAAAAADSgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAPgAAAAAA version: 6 -5,-3: ind: -5,-3 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAcAAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAbQAAAAABbQAAAAABbQAAAAABbQAAAAAAbQAAAAACbQAAAAADcAAAAAAAbQAAAAADbQAAAAAAbQAAAAADbQAAAAADbQAAAAABbQAAAAADUwAAAAAAUwAAAAABUwAAAAABbQAAAAADbQAAAAADbQAAAAABbQAAAAAAbQAAAAADbQAAAAADcAAAAAAAbQAAAAAAbQAAAAABbQAAAAAAbQAAAAABbQAAAAADbQAAAAABUwAAAAABUwAAAAAAUwAAAAADbQAAAAAAbQAAAAACbQAAAAADbQAAAAAAbQAAAAACbQAAAAABcAAAAAAAbQAAAAACbQAAAAADbQAAAAAAbQAAAAACbQAAAAADbQAAAAAARgAAAAABUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABcAAAAAAAbQAAAAADbQAAAAACbQAAAAADbQAAAAAAbQAAAAAAbQAAAAABUwAAAAAAUwAAAAACUwAAAAACUwAAAAACUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAbQAAAAACcAAAAAAAbQAAAAADbQAAAAACbQAAAAABbQAAAAAAbQAAAAAAbQAAAAAC + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAADcQAAAAAAbgAAAAABbgAAAAABbgAAAAABbgAAAAAAbgAAAAACbgAAAAADcQAAAAAAbgAAAAADbgAAAAAAbgAAAAADbgAAAAADbgAAAAABbgAAAAADVAAAAAAAVAAAAAABVAAAAAABbgAAAAADbgAAAAADbgAAAAABbgAAAAAAbgAAAAADbgAAAAADcQAAAAAAbgAAAAAAbgAAAAABbgAAAAAAbgAAAAABbgAAAAADbgAAAAABVAAAAAABVAAAAAAAVAAAAAADbgAAAAAAbgAAAAACbgAAAAADbgAAAAAAbgAAAAACbgAAAAABcQAAAAAAbgAAAAACbgAAAAADbgAAAAAAbgAAAAACbgAAAAADbgAAAAAARwAAAAABVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABcQAAAAAAbgAAAAADbgAAAAACbgAAAAADbgAAAAAAbgAAAAAAbgAAAAABVAAAAAAAVAAAAAACVAAAAAACVAAAAAACVAAAAAAAVAAAAAACVAAAAAABcQAAAAAAbgAAAAACcQAAAAAAbgAAAAADbgAAAAACbgAAAAABbgAAAAAAbgAAAAAAbgAAAAAC version: 6 -4,-3: ind: -4,-3 - tiles: RwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAASQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbQAAAAACbQAAAAABcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAADUwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAABbQAAAAACcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAAAbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbQAAAAADbQAAAAADcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAGgAAAAAAGgAAAAADGgAAAAADGgAAAAABGgAAAAAB + tiles: SAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAASgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAbgAAAAACbgAAAAABcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABbgAAAAADVAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAABbgAAAAACcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAAAbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAbgAAAAADbgAAAAADcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAGwAAAAAAGwAAAAADGwAAAAADGwAAAAABGwAAAAAB version: 6 -6,-3: ind: -6,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAACUwAAAAAAUwAAAAACcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAAAUwAAAAACUwAAAAABcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAARwAAAAAAUwAAAAACUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAACUwAAAAADUwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAARwAAAAAAUwAAAAADUwAAAAABUwAAAAAAUwAAAAACUwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAABUwAAAAABUwAAAAADRgAAAAADUwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAARwAAAAAAUwAAAAADUwAAAAABRgAAAAACUwAAAAABRgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAUwAAAAABRgAAAAABUwAAAAAAUAAAAAAAUwAAAAABbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAUwAAAAADUwAAAAACRgAAAAABUwAAAAADRgAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAACVAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAAAVAAAAAACVAAAAAABcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAASAAAAAAAVAAAAAACVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAACVAAAAAADVAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAASAAAAAAAVAAAAAADVAAAAAABVAAAAAAAVAAAAAACVAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAABVAAAAAABVAAAAAADRwAAAAADVAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAAVAAAAAADVAAAAAABRwAAAAACVAAAAAABRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAVAAAAAABRwAAAAABVAAAAAAAUQAAAAAAVAAAAAABcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAVAAAAAADVAAAAAACRwAAAAABVAAAAAADRwAAAAAB version: 6 -6,-4: ind: -6,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAA version: 6 -5,-4: ind: -5,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAPQAAAAAAcAAAAAAAPQAAAAAARwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAPQAAAAAAcAAAAAAAPQAAAAAARwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAPgAAAAAAcQAAAAAAPgAAAAAASAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAPgAAAAAAcQAAAAAAPgAAAAAASAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAA version: 6 -3,-3: ind: -3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAOwAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGgAAAAABcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAPAAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAPAAAAAAAcQAAAAAAPAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGwAAAAABcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAA version: 6 0,5: ind: 0,5 - tiles: RwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASgAAAAAASgAAAAAASgAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAARwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAARwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAA + tiles: SAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASwAAAAAASwAAAAAASwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASwAAAAAASwAAAAAASwAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAASAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAASAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 -1,5: ind: -1,5 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAUwAAAAACcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAOwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAJwAAAAAAJwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAJwAAAAAAJwAAAAAAcAAAAAAAbwAAAAAARwAAAAAAPQAAAAAAPQAAAAAARwAAAAAAPQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAJwAAAAAAJwAAAAAAcAAAAAAAbwAAAAAARwAAAAAAPQAAAAAAPQAAAAAARwAAAAAAPQAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAJwAAAAAAJwAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAJwAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAJwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAJwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAJwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAUwAAAAACUwAAAAAAUwAAAAADcAAAAAAAJwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAA + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAVAAAAAACcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKAAAAAAAKAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKAAAAAAAKAAAAAAAcQAAAAAAcAAAAAAASAAAAAAAPgAAAAAAPgAAAAAASAAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKAAAAAAAKAAAAAAAcQAAAAAAcAAAAAAASAAAAAAAPgAAAAAAPgAAAAAASAAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKAAAAAAAKAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAKAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAVAAAAAACVAAAAAAAVAAAAAADcQAAAAAAKAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAA version: 6 -4,7: ind: -4,7 @@ -384,211 +384,211 @@ entities: version: 6 4,3: ind: 4,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA version: 6 4,2: ind: 4,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAA version: 6 5,2: ind: 5,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,3: ind: 5,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,4: ind: 2,4 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAA + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAA version: 6 3,4: ind: 3,4 - tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,4: ind: 1,4 - tiles: cAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAAARwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAARwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAJgAAAAAAJgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAJgAAAAAAJgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAJgAAAAAAJgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAARwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAARwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAA + tiles: cQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAAASAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAASAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAJwAAAAAAJwAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAJwAAAAAAJwAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAJwAAAAAAJwAAAAAAAQAAAAAAAQAAAAAAAgAAAAAASAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAASAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAQAAAAAAAQAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAwAAAAAAAwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAwAAAAAAAwAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAA version: 6 3,5: ind: 3,5 - tiles: RwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: SAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,6: ind: -1,6 - tiles: UwAAAAABWAAAAAAAUwAAAAABcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAUwAAAAADWAAAAAAAWAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAUwAAAAABUwAAAAABUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAWAAAAAAAWAAAAAAAUwAAAAACcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAWAAAAAAAWAAAAAAAUwAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAWAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAXwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAA + tiles: VAAAAAABWQAAAAAAVAAAAAABcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAVAAAAAADWQAAAAAAWQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAVAAAAAABVAAAAAABVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWQAAAAAAWQAAAAAAVAAAAAACcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWQAAAAAAWQAAAAAAVAAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAWQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAYAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 -7,0: ind: -7,0 - tiles: bwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAXwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAA version: 6 -7,-1: ind: -7,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAEAAAAAACEAAAAAAAEAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAEAAAAAAAEAAAAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAEAAAAAAAEAAAAAABEAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAKgAAAAABKgAAAAACKgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAKgAAAAABJQAAAAAAJQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAKgAAAAAAJQAAAAAAJQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAKgAAAAAAJQAAAAABJQAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAKgAAAAADKgAAAAADKgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAEAAAAAACEAAAAAAAEAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAEAAAAAAAEAAAAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAEAAAAAAAEAAAAAABEAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAKwAAAAABKwAAAAACKwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAKwAAAAABJgAAAAAAJgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAKwAAAAAAJgAAAAAAJgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAKwAAAAAAJgAAAAABJgAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAKwAAAAADKwAAAAADKwAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAA version: 6 -7,1: ind: -7,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAYQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAXwAAAAAAYQAAAAABcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARgAAAAABRgAAAAABRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARgAAAAAARgAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARgAAAAAARgAAAAACRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARgAAAAABRgAAAAADRwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARgAAAAABRgAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARgAAAAACRgAAAAAAcAAAAAAAAAAAAAAARwAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARgAAAAADRgAAAAACcAAAAAAAAAAAAAAARwAAAAAAcAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYgAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAYAAAAAAAYgAAAAABcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARwAAAAABRwAAAAABSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARwAAAAAARwAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAARwAAAAAARwAAAAACSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAARwAAAAABRwAAAAADSAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAARwAAAAABRwAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAARwAAAAACRwAAAAAAcQAAAAAAAAAAAAAASAAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAARwAAAAADRwAAAAACcQAAAAAAAAAAAAAASAAAAAAAcQAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,-4: ind: -3,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,-1: ind: 3,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,7: ind: -1,7 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,8: ind: -1,8 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,-4: ind: -4,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAAAAAAAAAbwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAAAAAAAAAbwAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAAcAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAAAAAAAAAcAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAAcQAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -7,-2: ind: -7,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAcAAAAAAARwAAAAAARwAAAAAAcAAAAAAARwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAEAAAAAAAEAAAAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAEAAAAAADEAAAAAAAEAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAEAAAAAABEAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAEAAAAAADEAAAAAACEAAAAAAB + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAASAAAAAAASAAAAAAAcQAAAAAASAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAEAAAAAAAEAAAAAABEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAEAAAAAADEAAAAAAAEAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAEAAAAAABEAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAEAAAAAADEAAAAAACEAAAAAAB version: 6 2,5: ind: 2,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,5: ind: 1,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,6: ind: 0,6 - tiles: bwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,4: ind: 4,4 - tiles: cAAAAAAAcAAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAADcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAWAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAUwAAAAADcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAXwAAAAAAXwAAAAAAcAAAAAAAUwAAAAAAUwAAAAACcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAARwAAAAAAPQAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAARwAAAAAAPQAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAARwAAAAAAPQAAAAAAPQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAARwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cQAAAAAAcQAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAVAAAAAADcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAWQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAWQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAVAAAAAADcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAYAAAAAAAYAAAAAAAcQAAAAAAVAAAAAAAVAAAAAACcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAAPgAAAAAAPgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAASAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,4: ind: 5,4 - tiles: bwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: cAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,1: ind: 4,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAA version: 6 5,1: ind: 5,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 1,-3: ind: 1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-3: ind: 2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -7,-3: ind: -7,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 -8,1: ind: -8,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -8,0: ind: -8,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAA version: 6 -8,-1: ind: -8,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAA version: 6 -6,2: ind: -6,2 - tiles: AAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -7,2: ind: -7,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,-5: ind: -5,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA version: 6 -4,-5: ind: -4,-5 - tiles: AAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,-6: ind: -4,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,-6: ind: -5,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -6,-6: ind: -6,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -7,-6: ind: -7,-6 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAA version: 6 -6,-5: ind: -6,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAA version: 6 -7,-4: ind: -7,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -7,-5: ind: -7,-5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbgAAAAADbgAAAAABbgAAAAACbgAAAAACbgAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbgAAAAABbgAAAAABbgAAAAADbgAAAAABbgAAAAACcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAbgAAAAABbgAAAAAAbgAAAAACbgAAAAADbgAAAAABcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAARgAAAAACAAAAAAAAbwAAAAAAAAAAAAAARgAAAAACAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAARgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAARgAAAAACAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAARgAAAAABAAAAAAAAbwAAAAAAAAAAAAAARgAAAAACAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAYQAAAAAAYQAAAAAAYQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAbwAAAAADbwAAAAABbwAAAAACbwAAAAACbwAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAbwAAAAABbwAAAAABbwAAAAADbwAAAAABbwAAAAACcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAbwAAAAABbwAAAAAAbwAAAAACbwAAAAADbwAAAAABcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAARwAAAAACAAAAAAAAcAAAAAAAAAAAAAAARwAAAAACAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAARwAAAAAAcAAAAAAAcAAAAAAAcAAAAAAARwAAAAACAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAARwAAAAABAAAAAAAAcAAAAAAAAAAAAAAARwAAAAACAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA version: 6 3,-2: ind: 3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAcQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,5: ind: 4,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 6,3: ind: 6,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 6,1: ind: 6,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 6,2: ind: 6,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 6,4: ind: 6,4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 5,5: ind: 5,5 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 6,0: ind: 6,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -3,8: ind: -3,8 @@ -10160,7 +10160,7 @@ entities: 0: 65535 -1,15: 0: 4095 - 4: 61440 + 2: 61440 -8,20: 0: 65535 -8,21: @@ -10231,7 +10231,7 @@ entities: 0: 65535 -3,18: 0: 32767 - 4: 32768 + 2: 32768 -3,19: 0: 65527 -2,16: @@ -10240,15 +10240,15 @@ entities: 0: 65535 -2,18: 0: 4095 - 4: 61440 + 2: 61440 -1,16: 0: 65527 - 4: 8 + 2: 8 -1,17: 0: 65535 -1,18: 0: 4095 - 4: 61440 + 2: 61440 4,12: 0: 65535 4,13: @@ -10289,12 +10289,12 @@ entities: 0: 64511 7,16: 0: 24575 - 2: 8192 - 3: 32768 + 3: 8192 + 4: 32768 7,17: 0: 65365 - 2: 34 - 3: 136 + 3: 34 + 4: 136 7,18: 0: 65263 0,12: @@ -10555,7 +10555,7 @@ entities: 0: 65535 15,8: 0: 55159 - 4: 8320 + 2: 8320 15,9: 0: 65501 15,10: @@ -10645,31 +10645,31 @@ entities: 8,16: 0: 24575 5: 8192 - 4: 32768 + 2: 32768 8,17: 0: 65365 5: 34 - 4: 136 + 2: 136 8,18: 0: 65535 8,19: 0: 65535 9,16: 0: 24575 - 4: 40960 + 2: 40960 9,17: 0: 65365 - 4: 170 + 2: 170 9,18: 0: 65535 9,19: 0: 65535 10,16: 0: 24575 - 4: 40960 + 2: 40960 10,17: 0: 65365 - 4: 170 + 2: 170 10,18: 0: 65535 10,19: @@ -11063,7 +11063,7 @@ entities: 0: 65535 -2,15: 0: 4095 - 4: 61440 + 2: 61440 -2,19: 0: 65520 -1,19: @@ -11096,15 +11096,15 @@ entities: 0: 65535 0,17: 0: 39321 - 4: 8738 + 2: 8738 0,19: 0: 65534 0,16: 0: 39374 - 4: 8753 + 2: 8753 0,18: 0: 61160 - 4: 4371 + 2: 4371 1,16: 0: 65535 1,17: @@ -11259,13 +11259,13 @@ entities: 0: 65535 -9,23: 0: 13107 - 4: 52416 + 2: 52416 -13,26: 0: 51336 - 4: 14199 + 2: 14199 -13,27: 0: 36044 - 4: 51 + 2: 51 12,1: 0: 61440 12,2: @@ -11282,19 +11282,19 @@ entities: 0: 57343 15,14: 0: 65528 - 4: 7 + 2: 7 15,15: 0: 65535 -12,25: 0: 64716 - 4: 818 + 2: 818 -12,26: 0: 65535 -12,27: 0: 65535 -11,24: 0: 63628 - 4: 1536 + 2: 1536 -11,25: 0: 65535 -11,26: @@ -11311,7 +11311,7 @@ entities: 0: 65535 -9,24: 0: 65523 - 4: 12 + 2: 12 -9,25: 0: 65535 -9,26: @@ -11322,41 +11322,41 @@ entities: 0: 65535 -8,29: 0: 4095 - 4: 61440 + 2: 61440 -7,28: 0: 32767 - 4: 32768 + 2: 32768 -7,29: 0: 823 - 4: 64712 + 2: 64712 -12,28: 0: 61439 - 4: 4096 + 2: 4096 -12,29: 0: 8 - 4: 65527 + 2: 65527 -11,28: 0: 65535 -11,29: 0: 36095 - 4: 29440 + 2: 29440 -10,28: 0: 65535 -10,29: 0: 65535 -10,30: 0: 15 - 4: 65520 + 2: 65520 -9,28: 0: 65535 -9,29: 0: 65535 -9,30: 0: 7 - 4: 65528 + 2: 65528 -8,24: 0: 15256 - 4: 1 + 2: 1 -8,25: 0: 65527 -8,26: @@ -11373,7 +11373,7 @@ entities: 0: 4368 -6,27: 0: 273 - 4: 65058 + 2: 65058 8,10: 0: 65535 8,11: @@ -11384,14 +11384,14 @@ entities: 0: 65535 -13,28: 0: 136 - 4: 61440 + 2: 61440 16,12: 0: 55544 16,13: 0: 56797 16,14: 0: 65528 - 4: 7 + 2: 7 16,15: 0: 65535 17,12: @@ -11412,17 +11412,17 @@ entities: 0: 65535 19,12: 0: 4336 - 4: 51208 + 2: 51208 19,13: 0: 4369 - 4: 52428 + 2: 52428 19,14: 0: 65520 19,15: 0: 65535 16,8: 0: 53248 - 4: 240 + 2: 240 16,9: 0: 56797 16,10: @@ -11431,7 +11431,7 @@ entities: 0: 56797 17,8: 0: 53248 - 4: 240 + 2: 240 17,9: 0: 56797 17,10: @@ -11440,7 +11440,7 @@ entities: 0: 56797 18,8: 0: 53248 - 4: 2296 + 2: 2296 18,9: 0: 56797 18,10: @@ -11449,19 +11449,19 @@ entities: 0: 56797 19,8: 0: 4096 - 4: 51448 + 2: 51448 19,9: 0: 4369 - 4: 52428 + 2: 52428 19,10: 0: 4336 - 4: 49152 + 2: 49152 19,11: 0: 4369 - 4: 52428 + 2: 52428 20,10: 0: 16 - 4: 53248 + 2: 53248 20,14: 0: 65296 -23,-8: @@ -11472,7 +11472,7 @@ entities: 0: 52428 -8,23: 0: 36863 - 4: 4096 + 2: 4096 -7,23: 0: 65535 -6,23: @@ -11819,47 +11819,47 @@ entities: 0: 35022 20,8: 0: 8 - 4: 55536 + 2: 55536 21,8: 0: 8891 - 4: 55360 + 2: 55360 21,9: 0: 8738 - 4: 56797 + 2: 56797 21,10: 0: 57890 - 4: 4096 + 2: 4096 21,11: 0: 8750 - 4: 56785 + 2: 56785 22,8: 0: 4369 - 4: 51432 + 2: 51432 22,9: 0: 4369 - 4: 52428 + 2: 52428 22,10: 0: 4369 - 4: 49152 + 2: 49152 22,11: 0: 4369 - 4: 52428 + 2: 52428 21,15: 0: 45875 21,12: 0: 8738 - 4: 55512 + 2: 55512 21,13: 0: 8942 - 4: 56593 + 2: 56593 21,14: 0: 13090 22,12: 0: 4369 - 4: 51432 + 2: 51432 22,13: 0: 4369 - 4: 52428 + 2: 52428 22,14: 0: 4369 22,15: @@ -12014,62 +12014,62 @@ entities: 0: 4479 17,18: 0: 4593 - 4: 57856 + 2: 57856 18,17: 0: 17647 18,18: 0: 254 - 4: 61440 + 2: 61440 19,17: 0: 15 19,18: 0: 240 - 4: 61440 + 2: 61440 20,16: 0: 65535 20,17: 0: 15 20,18: 0: 240 - 4: 61440 + 2: 61440 21,16: 0: 49147 21,17: 0: 8831 21,18: 0: 247 - 4: 61440 + 2: 61440 22,16: 0: 4369 22,17: 0: 1 22,18: 0: 17 - 4: 61440 + 2: 61440 16,7: 0: 4095 17,7: 0: 4095 18,7: 0: 511 - 4: 52224 + 2: 52224 19,7: 0: 255 - 4: 56576 + 2: 56576 20,7: 0: 50943 - 4: 6400 + 2: 6400 21,7: 0: 61183 - 4: 4352 + 2: 4352 21,6: 0: 65527 22,6: 0: 4369 - 4: 49152 + 2: 49152 22,7: 0: 4369 - 4: 52428 + 2: 52428 0,-9: 0: 14464 1,-9: @@ -12444,15 +12444,15 @@ entities: 0: 65535 18,4: 0: 4352 - 4: 36352 + 2: 36352 18,5: 0: 65521 19,5: 0: 65520 - 4: 1 + 2: 1 20,5: 0: 65520 - 4: 8 + 2: 8 21,5: 0: 63344 16,3: @@ -12489,13 +12489,13 @@ entities: 0: 30591 13,-4: 0: 61440 - 4: 4063 + 2: 4063 13,-3: 0: 65420 - 4: 51 + 2: 51 13,-2: 0: 51343 - 4: 13104 + 2: 13104 13,-1: 0: 15 14,-3: @@ -12504,7 +12504,7 @@ entities: 0: 36079 14,-4: 0: 34816 - 4: 273 + 2: 273 14,-1: 0: 8 12,-7: @@ -12515,7 +12515,7 @@ entities: 0: 32767 20,12: 0: 16 - 4: 55528 + 2: 55528 20,15: 0: 65535 15,16: @@ -12532,14 +12532,14 @@ entities: 0: 65535 17,19: 0: 17 - 4: 2 + 2: 2 18,16: 0: 65535 19,16: 0: 65535 22,5: 0: 4096 - 4: 57344 + 2: 57344 16,21: 0: 64648 16,20: @@ -12550,193 +12550,193 @@ entities: 0: 61440 19,21: 0: 12288 - 4: 49152 + 2: 49152 -14,26: - 4: 2176 + 2: 2176 -13,25: - 4: 61056 + 2: 61056 -12,24: - 4: 32768 + 2: 32768 -8,30: - 4: 65535 + 2: 65535 -8,31: - 4: 16383 + 2: 16383 -7,30: - 4: 14335 + 2: 14335 -7,31: - 4: 3 + 2: 3 -6,28: - 4: 65535 + 2: 65535 -6,29: - 4: 14335 + 2: 14335 -6,30: - 4: 1 + 2: 1 -5,28: - 4: 13105 + 2: 13105 -5,29: - 4: 19 + 2: 19 -12,30: - 4: 65535 + 2: 65535 -12,31: - 4: 61439 + 2: 61439 -11,30: - 4: 65535 + 2: 65535 -11,31: - 4: 65535 + 2: 65535 -10,31: - 4: 65535 + 2: 65535 -9,31: - 4: 65535 + 2: 65535 -5,27: - 4: 4096 + 2: 4096 -15,29: - 4: 32768 + 2: 32768 -14,29: - 4: 65532 + 2: 65532 -14,30: - 4: 36095 + 2: 36095 -14,28: - 4: 32768 + 2: 32768 -13,29: - 4: 65535 + 2: 65535 -13,30: - 4: 65535 + 2: 65535 -13,31: - 4: 2287 + 2: 2287 20,9: - 4: 56797 + 2: 56797 20,11: - 4: 56797 + 2: 56797 23,8: - 4: 4336 + 2: 4336 23,9: - 4: 4369 + 2: 4369 23,10: - 4: 4096 + 2: 4096 23,11: - 4: 4369 + 2: 4369 20,13: - 4: 56797 + 2: 56797 23,12: - 4: 4336 + 2: 4336 23,13: - 4: 4369 + 2: 4369 20,19: - 4: 8 + 2: 8 21,19: - 4: 8831 + 2: 8831 23,18: - 4: 62316 + 2: 62316 23,17: - 4: 32768 + 2: 32768 19,4: - 4: 16128 + 2: 16128 20,4: - 4: 52992 + 2: 52992 21,4: - 4: 7936 + 2: 7936 22,4: - 4: 3840 + 2: 3840 23,4: - 4: 16128 + 2: 16128 23,5: - 4: 63686 + 2: 63686 23,6: - 4: 4096 + 2: 4096 23,7: - 4: 4369 + 2: 4369 24,12: - 4: 34952 + 2: 34952 24,13: - 4: 34952 + 2: 34952 24,14: - 4: 34952 + 2: 34952 24,15: - 4: 34952 + 2: 34952 25,13: - 4: 18292 + 2: 18292 25,12: - 4: 17476 + 2: 17476 25,14: - 4: 17476 + 2: 17476 25,15: - 4: 17476 + 2: 17476 24,4: - 4: 52992 + 2: 52992 24,5: - 4: 47496 + 2: 47496 24,6: - 4: 35022 + 2: 35022 24,7: - 4: 34952 + 2: 34952 25,4: - 4: 30564 + 2: 30564 25,5: - 4: 17478 + 2: 17478 25,6: - 4: 17476 + 2: 17476 25,7: - 4: 17476 + 2: 17476 24,8: - 4: 34952 + 2: 34952 24,9: - 4: 34952 + 2: 34952 24,10: - 4: 34952 + 2: 34952 24,11: - 4: 34952 + 2: 34952 25,9: - 4: 29764 + 2: 29764 25,10: - 4: 17479 + 2: 17479 25,8: - 4: 17476 + 2: 17476 25,11: - 4: 17476 + 2: 17476 24,17: - 4: 39916 + 2: 39916 24,18: - 4: 64648 + 2: 64648 24,16: - 4: 34952 + 2: 34952 25,18: - 4: 30564 + 2: 30564 25,19: - 4: 25670 + 2: 25670 25,16: - 4: 17476 + 2: 17476 25,17: - 4: 17476 + 2: 17476 20,21: - 4: 63488 + 2: 63488 21,21: - 4: 65394 + 2: 65394 21,20: - 4: 8738 + 2: 8738 22,21: - 4: 29696 + 2: 29696 25,3: - 4: 17920 + 2: 17920 -12,32: - 4: 8 + 2: 8 -11,32: - 4: 239 + 2: 239 -10,32: - 4: 28671 + 2: 28671 -9,32: - 4: 375 + 2: 375 13,-7: - 4: 65280 + 2: 65280 13,-6: - 4: 65535 + 2: 65535 13,-5: - 4: 65535 + 2: 65535 14,-7: - 4: 30464 + 2: 30464 14,-6: - 4: 30583 + 2: 30583 14,-5: - 4: 6007 + 2: 6007 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -12772,7 +12772,7 @@ entities: temperature: 293.15 moles: - 0 - - 6666.982 + - 0 - 0 - 0 - 0 @@ -12786,8 +12786,8 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 6666.982 - 0 + - 6666.982 - 0 - 0 - 0 @@ -12801,7 +12801,7 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 0 + - 6666.982 - 0 - 0 - 0 @@ -15672,6 +15672,11 @@ entities: - pos: 55.5,22.5 parent: 33 type: Transform + - uid: 4463 + components: + - pos: 43.5,31.5 + parent: 33 + type: Transform - uid: 8817 components: - pos: 37.5,20.5 @@ -15696,11 +15701,6 @@ entities: - pos: -84.5,7.5 parent: 33 type: Transform - - uid: 7066 - components: - - pos: 43.5,31.5 - parent: 33 - type: Transform - proto: AirlockChiefMedicalOfficerLocked entities: - uid: 5500 @@ -17324,11 +17324,6 @@ entities: - pos: -47.5,-11.5 parent: 33 type: Transform - - uid: 4971 - components: - - pos: -71.5,-33.5 - parent: 33 - type: Transform - uid: 5243 components: - pos: -49.5,-28.5 @@ -17540,6 +17535,11 @@ entities: type: Transform - proto: AirlockServiceLocked entities: + - uid: 456 + components: + - pos: -71.5,-33.5 + parent: 33 + type: Transform - uid: 6358 components: - pos: -18.5,-12.5 @@ -20124,6 +20124,11 @@ entities: type: Transform - proto: Autolathe entities: + - uid: 968 + components: + - pos: 40.5,21.5 + parent: 33 + type: Transform - uid: 2628 components: - pos: -19.5,-1.5 @@ -20139,11 +20144,6 @@ entities: - pos: 21.5,-6.5 parent: 33 type: Transform - - uid: 27670 - components: - - pos: 38.5,21.5 - parent: 33 - type: Transform - uid: 28816 components: - pos: 24.5,18.5 @@ -20401,6 +20401,11 @@ entities: type: Transform - proto: Beaker entities: + - uid: 4464 + components: + - pos: -48.650738,-16.543552 + parent: 33 + type: Transform - uid: 5389 components: - pos: -57.65657,-13.13706 @@ -20848,6 +20853,132 @@ entities: - pos: 31.5,39.5 parent: 33 type: Transform +- proto: BenchSofaCorpLeft + entities: + - uid: 11357 + components: + - rot: 3.141592653589793 rad + pos: -102.5,8.5 + parent: 33 + type: Transform +- proto: BenchSofaCorpRight + entities: + - uid: 11094 + components: + - rot: 3.141592653589793 rad + pos: -101.5,8.5 + parent: 33 + type: Transform +- proto: BenchSteelLeft + entities: + - uid: 970 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-28.5 + parent: 33 + type: Transform + - uid: 1502 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-28.5 + parent: 33 + type: Transform + - uid: 1568 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-25.5 + parent: 33 + type: Transform + - uid: 1572 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-26.5 + parent: 33 + type: Transform + - uid: 2099 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-25.5 + parent: 33 + type: Transform + - uid: 2300 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-29.5 + parent: 33 + type: Transform + - uid: 4971 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-29.5 + parent: 33 + type: Transform + - uid: 10539 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-26.5 + parent: 33 + type: Transform + - uid: 11071 + components: + - pos: -83.5,-29.5 + parent: 33 + type: Transform +- proto: BenchSteelRight + entities: + - uid: 969 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-29.5 + parent: 33 + type: Transform + - uid: 1571 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-26.5 + parent: 33 + type: Transform + - uid: 1937 + components: + - rot: -1.5707963267948966 rad + pos: -2.5,-29.5 + parent: 33 + type: Transform + - uid: 2096 + components: + - rot: -1.5707963267948966 rad + pos: -0.5,-26.5 + parent: 33 + type: Transform + - uid: 2111 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-28.5 + parent: 33 + type: Transform + - uid: 2129 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-28.5 + parent: 33 + type: Transform + - uid: 5589 + components: + - rot: 1.5707963267948966 rad + pos: -30.5,-25.5 + parent: 33 + type: Transform + - uid: 10878 + components: + - rot: 1.5707963267948966 rad + pos: -28.5,-25.5 + parent: 33 + type: Transform + - uid: 11052 + components: + - pos: -82.5,-29.5 + parent: 33 + type: Transform - proto: BiomassReclaimer entities: - uid: 4369 @@ -20872,6 +21003,14 @@ entities: - links: - 29225 type: DeviceLinkSink + - uid: 2124 + components: + - pos: -31.5,76.5 + parent: 33 + type: Transform + - links: + - 11207 + type: DeviceLinkSink - uid: 3452 components: - pos: -72.5,31.5 @@ -21936,6 +22075,12 @@ entities: pos: -46.542126,-0.47644657 parent: 33 type: Transform + - uid: 10987 + components: + - rot: -1.5707963267948966 rad + pos: -48.556133,-17.481606 + parent: 33 + type: Transform - uid: 13574 components: - rot: 3.141592653589793 rad @@ -22059,11 +22204,6 @@ entities: type: Transform - proto: BoxForensicPad entities: - - uid: 4463 - components: - - pos: -48.40415,-17.293686 - parent: 33 - type: Transform - uid: 28857 components: - pos: -29.51436,93.61782 @@ -22215,11 +22355,6 @@ entities: - pos: -61.43176,1.4866538 parent: 33 type: Transform - - uid: 4465 - components: - - pos: -48.47729,-16.96922 - parent: 33 - type: Transform - uid: 11449 components: - pos: -21.475275,91.714195 @@ -54459,6 +54594,11 @@ entities: pos: -50.5,-21.5 parent: 33 type: Transform + - uid: 5877 + components: + - pos: -1.5,-28.5 + parent: 33 + type: Transform - uid: 8560 components: - pos: -34.5,7.5 @@ -54929,11 +55069,6 @@ entities: - pos: -1.5,-23.5 parent: 33 type: Transform - - uid: 15073 - components: - - pos: -1.5,-28.5 - parent: 33 - type: Transform - uid: 15074 components: - pos: -1.5,-27.5 @@ -57510,12 +57645,6 @@ entities: pos: -27.5,31.5 parent: 33 type: Transform - - uid: 1502 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-25.5 - parent: 33 - type: Transform - uid: 1503 components: - rot: 3.141592653589793 rad @@ -57528,36 +57657,6 @@ entities: pos: -7.5,-22.5 parent: 33 type: Transform - - uid: 1568 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-28.5 - parent: 33 - type: Transform - - uid: 1571 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-28.5 - parent: 33 - type: Transform - - uid: 1572 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-29.5 - parent: 33 - type: Transform - - uid: 1573 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-26.5 - parent: 33 - type: Transform - - uid: 1577 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-29.5 - parent: 33 - type: Transform - uid: 1667 components: - rot: -1.5707963267948966 rad @@ -57588,23 +57687,11 @@ entities: pos: -78.5,-0.5 parent: 33 type: Transform - - uid: 1937 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-29.5 - parent: 33 - type: Transform - uid: 2083 components: - pos: -4.5,-20.5 parent: 33 type: Transform - - uid: 2096 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-25.5 - parent: 33 - type: Transform - uid: 2097 components: - pos: -8.5,-21.5 @@ -57615,65 +57702,17 @@ entities: - pos: -4.5,-17.5 parent: 33 type: Transform - - uid: 2108 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-26.5 - parent: 33 - type: Transform - - uid: 2126 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-25.5 - parent: 33 - type: Transform - - uid: 2129 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-29.5 - parent: 33 - type: Transform - uid: 2137 components: - rot: 1.5707963267948966 rad pos: -9.5,-22.5 parent: 33 type: Transform - - uid: 2147 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-28.5 - parent: 33 - type: Transform - - uid: 2163 - components: - - rot: -1.5707963267948966 rad - pos: -0.5,-26.5 - parent: 33 - type: Transform - - uid: 2164 - components: - - rot: -1.5707963267948966 rad - pos: 0.5,-29.5 - parent: 33 - type: Transform - - uid: 2194 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-26.5 - parent: 33 - type: Transform - uid: 2276 components: - pos: 13.5,-8.5 parent: 33 type: Transform - - uid: 2300 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-26.5 - parent: 33 - type: Transform - uid: 2640 components: - rot: -1.5707963267948966 rad @@ -57934,12 +57973,6 @@ entities: pos: 3.5,5.5 parent: 33 type: Transform - - uid: 5589 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-26.5 - parent: 33 - type: Transform - uid: 5618 components: - rot: -1.5707963267948966 rad @@ -58418,12 +58451,6 @@ entities: - pos: 13.5,42.5 parent: 33 type: Transform - - uid: 10878 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-28.5 - parent: 33 - type: Transform - uid: 10992 components: - rot: -1.5707963267948966 rad @@ -58453,42 +58480,18 @@ entities: pos: 5.5,-7.5 parent: 33 type: Transform - - uid: 11052 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-25.5 - parent: 33 - type: Transform - uid: 11066 components: - rot: 1.5707963267948966 rad pos: -23.5,-22.5 parent: 33 type: Transform - - uid: 11071 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-29.5 - parent: 33 - type: Transform - - uid: 11075 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-25.5 - parent: 33 - type: Transform - uid: 11077 components: - rot: 3.141592653589793 rad pos: -22.5,-23.5 parent: 33 type: Transform - - uid: 11094 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-25.5 - parent: 33 - type: Transform - uid: 11201 components: - pos: -26.5,-20.5 @@ -58500,71 +58503,17 @@ entities: pos: -26.5,-22.5 parent: 33 type: Transform - - uid: 11207 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-26.5 - parent: 33 - type: Transform - - uid: 11299 - components: - - rot: 1.5707963267948966 rad - pos: -29.5,-28.5 - parent: 33 - type: Transform - - uid: 11323 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-29.5 - parent: 33 - type: Transform - - uid: 11357 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-29.5 - parent: 33 - type: Transform - uid: 11359 components: - pos: -22.5,-21.5 parent: 33 type: Transform - - uid: 11368 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-28.5 - parent: 33 - type: Transform - - uid: 11369 - components: - - rot: -1.5707963267948966 rad - pos: -2.5,-26.5 - parent: 33 - type: Transform - uid: 11373 components: - rot: 3.141592653589793 rad pos: -4.5,-22.5 parent: 33 type: Transform - - uid: 11376 - components: - - rot: 1.5707963267948966 rad - pos: -31.5,-25.5 - parent: 33 - type: Transform - - uid: 12018 - components: - - rot: 1.5707963267948966 rad - pos: -30.5,-28.5 - parent: 33 - type: Transform - - uid: 12379 - components: - - rot: 1.5707963267948966 rad - pos: -28.5,-28.5 - parent: 33 - type: Transform - uid: 12436 components: - rot: -1.5707963267948966 rad @@ -58583,12 +58532,6 @@ entities: pos: -28.5,33.5 parent: 33 type: Transform - - uid: 15212 - components: - - rot: -1.5707963267948966 rad - pos: -1.5,-25.5 - parent: 33 - type: Transform - uid: 15218 components: - rot: 3.141592653589793 rad @@ -58652,16 +58595,6 @@ entities: pos: -76.5,-32.5 parent: 33 type: Transform - - uid: 25867 - components: - - pos: -82.5,-29.5 - parent: 33 - type: Transform - - uid: 25870 - components: - - pos: -83.5,-29.5 - parent: 33 - type: Transform - uid: 28207 components: - pos: 8.5,-1.5 @@ -60489,13 +60422,6 @@ entities: pos: -13.534786,99.25878 parent: 33 type: Transform -- proto: CircuitImprinter - entities: - - uid: 456 - components: - - pos: 33.5,27.5 - parent: 33 - type: Transform - proto: CircuitImprinterMachineCircuitboard entities: - uid: 13706 @@ -61148,6 +61074,11 @@ entities: - pos: 25.5,-8.5 parent: 33 type: Transform + - uid: 11075 + components: + - pos: 33.5,27.5 + parent: 33 + type: Transform - uid: 21740 components: - pos: 54.5,41.5 @@ -63028,12 +62959,6 @@ entities: pos: -104.5,3.5 parent: 33 type: Transform - - uid: 17454 - components: - - rot: 3.141592653589793 rad - pos: -102.5,8.5 - parent: 33 - type: Transform - uid: 24413 components: - pos: -62.5,-32.5 @@ -63190,12 +63115,6 @@ entities: pos: -33.5,69.5 parent: 33 type: Transform - - uid: 5350 - components: - - rot: -1.5707963267948966 rad - pos: -48.5,-18.5 - parent: 33 - type: Transform - uid: 5709 components: - pos: -23.5,60.5 @@ -65570,9 +65489,40 @@ entities: type: ContainerContainer - proto: CrateTrainingBombs entities: - - uid: 12920 + - uid: 11323 + components: + - pos: -10.5,71.5 + parent: 33 + type: Transform +- proto: CrateTrashCart + entities: + - uid: 30453 + components: + - pos: 1.5,33.5 + parent: 33 + type: Transform +- proto: CrateTrashCartFilled + entities: + - uid: 30452 + components: + - pos: 24.5,64.5 + parent: 33 + type: Transform + - uid: 30454 + components: + - pos: -37.5,20.5 + parent: 33 + type: Transform +- proto: CrateTrashCartJani + entities: + - uid: 30450 + components: + - pos: -77.5,-28.5 + parent: 33 + type: Transform + - uid: 30451 components: - - pos: -8.5,71.5 + - pos: 30.5,13.5 parent: 33 type: Transform - proto: CrateVendingMachineRestockBoozeFilled @@ -65602,6 +65552,11 @@ entities: type: EntityStorage - proto: CrayonBox entities: + - uid: 10988 + components: + - pos: -48.50405,-17.06465 + parent: 33 + type: Transform - uid: 12987 components: - pos: -22.5324,35.56934 @@ -76193,10 +76148,9 @@ entities: - pos: -43.5,37.5 parent: 33 type: Transform - - uid: 10539 + - uid: 11299 components: - - rot: 1.5707963267948966 rad - pos: -80.5,-10.5 + - pos: -61.5,9.5 parent: 33 type: Transform - uid: 15068 @@ -76204,28 +76158,103 @@ entities: - pos: -23.5,-29.5 parent: 33 type: Transform + - uid: 15174 + components: + - pos: -77.5,-33.5 + parent: 33 + type: Transform + - uid: 15212 + components: + - pos: -70.5,-33.5 + parent: 33 + type: Transform + - uid: 17454 + components: + - pos: -77.5,-4.5 + parent: 33 + type: Transform - uid: 24448 components: - rot: -1.5707963267948966 rad pos: -60.5,-54.5 parent: 33 type: Transform + - uid: 25867 + components: + - pos: -75.5,9.5 + parent: 33 + type: Transform + - uid: 25870 + components: + - pos: -35.5,-0.5 + parent: 33 + type: Transform - uid: 27316 components: - pos: -5.5,36.5 parent: 33 type: Transform + - uid: 27670 + components: + - pos: -16.5,10.5 + parent: 33 + type: Transform - uid: 28062 components: - pos: 25.5,-9.5 parent: 33 type: Transform + - uid: 28273 + components: + - pos: -33.5,42.5 + parent: 33 + type: Transform - uid: 29706 components: - rot: -1.5707963267948966 rad pos: 57.5,67.5 parent: 33 type: Transform + - uid: 30455 + components: + - pos: -38.5,72.5 + parent: 33 + type: Transform + - uid: 30456 + components: + - pos: -27.5,70.5 + parent: 33 + type: Transform + - uid: 30457 + components: + - pos: -15.5,37.5 + parent: 33 + type: Transform + - uid: 30458 + components: + - pos: 8.5,63.5 + parent: 33 + type: Transform + - uid: 30459 + components: + - pos: 5.5,37.5 + parent: 33 + type: Transform + - uid: 30460 + components: + - pos: -4.5,20.5 + parent: 33 + type: Transform + - uid: 30461 + components: + - pos: 25.5,36.5 + parent: 33 + type: Transform + - uid: 30462 + components: + - pos: 10.5,-7.5 + parent: 33 + type: Transform - proto: FaxMachineBase entities: - uid: 3943 @@ -82737,25 +82766,8 @@ entities: - pos: -7.6984005,17.663958 parent: 33 type: Transform -- proto: ForensicPad - entities: - - uid: 10987 - components: - - pos: -55.146317,-13.423223 - parent: 33 - type: Transform - - uid: 10988 - components: - - pos: -55.333817,-13.412799 - parent: 33 - type: Transform - proto: ForensicScanner entities: - - uid: 4464 - components: - - pos: -48.529373,-16.270817 - parent: 33 - type: Transform - uid: 28858 components: - pos: -29.222692,93.211296 @@ -82959,14 +82971,14 @@ entities: - pos: 39.5,68.5 parent: 33 type: Transform -- proto: GasMinerNitrogen +- proto: GasMinerNitrogenStationLarge entities: - uid: 8673 components: - pos: 29.5,68.5 parent: 33 type: Transform -- proto: GasMinerOxygen +- proto: GasMinerOxygenStationLarge entities: - uid: 8674 components: @@ -127532,6 +127544,16 @@ entities: - pos: -20.5,-33.5 parent: 33 type: Transform + - uid: 11369 + components: + - pos: -32.5,76.5 + parent: 33 + type: Transform + - uid: 11376 + components: + - pos: -30.5,76.5 + parent: 33 + type: Transform - uid: 11377 components: - pos: -10.5,-22.5 @@ -132786,6 +132808,11 @@ entities: type: Transform - canCollide: False type: Physics + - uid: 4465 + components: + - pos: -48.494488,-16.20944 + parent: 33 + type: Transform - uid: 5320 components: - flags: InContainer @@ -133908,8 +133935,6 @@ entities: - pos: 32.5,27.5 parent: 33 type: Transform - - locked: False - type: Lock - uid: 29705 components: - pos: 66.5,68.5 @@ -134932,8 +134957,8 @@ entities: entities: - uid: 26759 components: - - desc: In memory of all the brave soldiers that fell during the Reddit Comment Incident that took place during The Great Delisting. - name: Reddit Comment Incident + - desc: Nyeko was a good girl. Not only the cutest, but also, the first kitty in space. + name: Nyeko Tabby type: MetaData - pos: -81.5,-32.5 parent: 33 @@ -144623,7 +144648,7 @@ entities: - pos: -88.351776,26.622795 parent: 33 type: Transform -- proto: PillRomerol +- proto: PillAmbuzolPlus entities: - uid: 10975 components: @@ -150649,16 +150674,6 @@ entities: - pos: -65.5,-8.5 parent: 33 type: Transform - - uid: 27026 - components: - - pos: 54.5,19.5 - parent: 33 - type: Transform - - uid: 28273 - components: - - pos: 40.5,21.5 - parent: 33 - type: Transform - proto: Puddle entities: - uid: 30252 @@ -150991,11 +151006,6 @@ entities: - pos: -13.5,71.5 parent: 33 type: Transform - - uid: 5877 - components: - - pos: -10.5,71.5 - parent: 33 - type: Transform - uid: 5915 components: - pos: -8.5,73.5 @@ -151606,6 +151616,11 @@ entities: - pos: -68.5,-49.5 parent: 33 type: Transform + - uid: 27026 + components: + - pos: 54.5,19.5 + parent: 33 + type: Transform - uid: 27030 components: - pos: 54.5,18.5 @@ -152174,6 +152189,29 @@ entities: pos: -80.5,-32.5 parent: 33 type: Transform + - uid: 28275 + components: + - pos: 25.5,-12.5 + parent: 33 + type: Transform + - uid: 30447 + components: + - rot: -1.5707963267948966 rad + pos: 24.5,-12.5 + parent: 33 + type: Transform + - uid: 30448 + components: + - rot: 1.5707963267948966 rad + pos: 25.5,-14.5 + parent: 33 + type: Transform + - uid: 30449 + components: + - rot: 3.141592653589793 rad + pos: 24.5,-14.5 + parent: 33 + type: Transform - proto: RandomAmmoBox entities: - uid: 30243 @@ -156347,6 +156385,11 @@ entities: - pos: -82.5,-22.5 parent: 33 type: Transform + - uid: 5878 + components: + - pos: -30.5,76.5 + parent: 33 + type: Transform - uid: 5900 components: - pos: -6.5,68.5 @@ -156457,6 +156500,11 @@ entities: - pos: 47.5,81.5 parent: 33 type: Transform + - uid: 12018 + components: + - pos: -32.5,76.5 + parent: 33 + type: Transform - uid: 12559 components: - pos: 32.5,67.5 @@ -160888,9 +160936,9 @@ entities: type: Transform - proto: SheetPlasteel entities: - - uid: 5878 + - uid: 2147 components: - - pos: -10.471728,71.569534 + - pos: -14.424832,71.49746 parent: 33 type: Transform - uid: 15743 @@ -160924,7 +160972,7 @@ entities: entities: - uid: 27028 components: - - pos: 54.330177,18.622942 + - pos: 54.41826,19.539282 parent: 33 type: Transform - proto: SheetPlastic @@ -161234,6 +161282,11 @@ entities: type: Transform - proto: SheetSteel10 entities: + - uid: 7066 + components: + - pos: 54.553677,19.518435 + parent: 33 + type: Transform - uid: 29724 components: - pos: 78.45788,63.5959 @@ -162159,6 +162212,16 @@ entities: - On: On - Off: Off type: DeviceLinkSource + - uid: 11207 + components: + - pos: -29.5,76.5 + parent: 33 + type: Transform + - linkedPorts: + 2124: + - On: Open + - Off: Close + type: DeviceLinkSource - uid: 12420 components: - rot: 1.5707963267948966 rad @@ -162601,12 +162664,6 @@ entities: - On: On - Off: Off type: DeviceLinkSource - - uid: 28275 - components: - - rot: 1.5707963267948966 rad - pos: 15.5,-13.5 - parent: 33 - type: Transform - uid: 28276 components: - rot: 1.5707963267948966 rad @@ -163488,6 +163545,13 @@ entities: - pos: -54.5,15.5 parent: 33 type: Transform +- proto: SignExplosives + entities: + - uid: 2126 + components: + - pos: -31.5,80.5 + parent: 33 + type: Transform - proto: SignFlammableMed entities: - uid: 29069 @@ -166643,34 +166707,34 @@ entities: type: Transform - proto: SpawnPointLatejoin entities: - - uid: 2034 + - uid: 1573 components: - - pos: -19.5,-21.5 + - pos: -2.5,-25.5 parent: 33 type: Transform - - uid: 2099 + - uid: 1577 components: - - pos: -29.5,-28.5 + - pos: -2.5,-29.5 parent: 33 type: Transform - - uid: 2110 + - uid: 2034 components: - - pos: -17.5,-20.5 + - pos: -19.5,-21.5 parent: 33 type: Transform - - uid: 2111 + - uid: 2108 components: - - pos: -29.5,-29.5 + - pos: -30.5,-28.5 parent: 33 type: Transform - - uid: 2123 + - uid: 2110 components: - - pos: -28.5,-29.5 + - pos: -17.5,-20.5 parent: 33 type: Transform - - uid: 2124 + - uid: 2123 components: - - pos: -1.5,-29.5 + - pos: -28.5,-29.5 parent: 33 type: Transform - uid: 2159 @@ -166683,6 +166747,11 @@ entities: - pos: -0.5,-28.5 parent: 33 type: Transform + - uid: 2164 + components: + - pos: -30.5,-29.5 + parent: 33 + type: Transform - uid: 15083 components: - pos: -30.5,-26.5 @@ -166693,11 +166762,6 @@ entities: - pos: -30.5,-25.5 parent: 33 type: Transform - - uid: 15174 - components: - - pos: -1.5,-25.5 - parent: 33 - type: Transform - uid: 15175 components: - pos: -0.5,-26.5 @@ -166727,6 +166791,21 @@ entities: - pos: -63.5,-34.5 parent: 33 type: Transform + - uid: 12379 + components: + - pos: -75.5,-34.5 + parent: 33 + type: Transform + - uid: 12920 + components: + - pos: -73.5,-34.5 + parent: 33 + type: Transform + - uid: 15073 + components: + - pos: -76.5,-36.5 + parent: 33 + type: Transform - proto: SpawnPointLocationMidRoundAntag entities: - uid: 1528 @@ -167436,6 +167515,14 @@ entities: - pos: 29.5,32.5 parent: 33 type: Transform +- proto: Spoon + entities: + - uid: 5350 + components: + - rot: -1.5707963267948966 rad + pos: -50.464638,-22.450071 + parent: 33 + type: Transform - proto: SprayBottle entities: - uid: 8246 @@ -167998,7 +168085,7 @@ entities: type: Transform - uid: 13395 components: - - name: Engineerign Main substation + - name: Engineering Main substation type: MetaData - pos: 42.5,40.5 parent: 33 @@ -176518,21 +176605,6 @@ entities: - pos: -29.5,76.5 parent: 33 type: Transform - - uid: 968 - components: - - pos: -30.5,76.5 - parent: 33 - type: Transform - - uid: 969 - components: - - pos: -31.5,76.5 - parent: 33 - type: Transform - - uid: 970 - components: - - pos: -32.5,76.5 - parent: 33 - type: Transform - uid: 971 components: - pos: -33.5,76.5 @@ -178538,6 +178610,11 @@ entities: - pos: -60.5,-44.5 parent: 33 type: Transform + - uid: 2163 + components: + - pos: -30.5,80.5 + parent: 33 + type: Transform - uid: 2173 components: - pos: -23.5,-40.5 @@ -178568,6 +178645,11 @@ entities: - pos: -20.5,-29.5 parent: 33 type: Transform + - uid: 2194 + components: + - pos: -31.5,80.5 + parent: 33 + type: Transform - uid: 2197 components: - pos: -32.5,-25.5 @@ -184335,6 +184417,11 @@ entities: - pos: -31.5,-31.5 parent: 33 type: Transform + - uid: 11368 + components: + - pos: -32.5,80.5 + parent: 33 + type: Transform - uid: 11375 components: - pos: -26.5,-41.5 diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_botany.yml b/Resources/Prototypes/Catalog/Cargo/cargo_botany.yml index f56b729217..4a80b76a3f 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_botany.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_botany.yml @@ -34,10 +34,10 @@ sprite: Objects/Specific/Hydroponics/apple.rsi state: seed product: CrateHydroponicsSeeds - cost: 500 + cost: 550 category: Hydroponics group: market - + - type: cargoProduct id: BulkPlantBGone icon: diff --git a/Resources/Prototypes/Catalog/Cargo/cargo_vending.yml b/Resources/Prototypes/Catalog/Cargo/cargo_vending.yml index 51da0321a6..8dee172c47 100644 --- a/Resources/Prototypes/Catalog/Cargo/cargo_vending.yml +++ b/Resources/Prototypes/Catalog/Cargo/cargo_vending.yml @@ -33,7 +33,7 @@ sprite: Objects/Specific/Service/vending_machine_restock.rsi state: base product: CrateVendingMachineRestockClothesFilled - cost: 6250 #DeltaV + cost: 6500 #DeltaV category: Service group: market @@ -164,7 +164,7 @@ sprite: Objects/Specific/Service/vending_machine_restock.rsi state: base product: CrateVendingMachineRestockSeedsFilled - cost: 3000 + cost: 3250 category: Hydroponics group: market diff --git a/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/backpack.yml b/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/backpack.yml index 89adc9c4cd..8d7a5d27ad 100644 --- a/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/backpack.yml +++ b/Resources/Prototypes/Catalog/Fills/Backpacks/StarterGear/backpack.yml @@ -236,14 +236,13 @@ components: - type: StorageFill contents: - - id: BoxSurvival - - id: WeaponPulseCarbine - - id: WeaponPulsePistol + - id: BoxSurvivalEngineering - id: WeaponDisabler - id: MedicatedSuture - id: RegenerativeMesh - - id: Handcuffs + - id: BoxZiptie - id: CrowbarRed + - id: MagazinePistol - type: entity noSpawn: true @@ -252,14 +251,13 @@ components: - type: StorageFill contents: - - id: BoxSurvival + - id: BoxSurvivalEngineering - id: WeaponDisabler - - id: WeaponPulsePistol - - id: WeaponPulseCarbine - id: MedicatedSuture - id: RegenerativeMesh - - id: BoxHandcuff + - id: BoxZiptie - id: CrowbarRed + - id: MagazinePistol - type: entity noSpawn: true @@ -269,7 +267,6 @@ - type: StorageFill contents: - id: BoxSurvivalMedical - - id: WeaponPulseCarbine - id: Hypospray - id: MedkitAdvancedFilled - id: CrowbarRed @@ -284,17 +281,18 @@ components: - type: StorageFill contents: - - id: BoxSurvival + - id: BoxSurvivalEngineering - id: trayScanner - - id: WeaponPulseCarbine - - id: MedicatedSuture - - id: RegenerativeMesh - id: RCD - id: RCDAmmo - id: RCDAmmo - id: RCDAmmo - id: CableMVStack - id: CableHVStack + - id: CableApcStack + - id: SheetPlasteel + - id: SheetSteel + - id: SheetGlass - type: entity noSpawn: true @@ -303,15 +301,40 @@ components: - type: StorageFill contents: - - id: BoxSurvival - - id: WeaponPulsePistol - - id: MedkitFilled + - id: BoxSurvivalEngineering + - id: LightReplacer - id: BoxLightMixed - id: BoxLightMixed - id: Soap - id: CrowbarRed - id: AdvMopItem +# Death Squad + +- type: entity + noSpawn: false + parent: ClothingBackpackERTSecurity + id: ClothingBackpackDeathSquadFilled + name: death squad backpack + description: Holds the kit of CentComm's most feared agents. + components: + - type: StorageFill + contents: + - id: BoxSurvivalEngineering + - id: WeaponPulseRifle + - id: WeaponPulsePistol + - id: WeaponRevolverMateba + - id: SpeedLoaderMagnumAP + - id: SpeedLoaderMagnumAP + - id: BoxFlashbang + - id: ToolDebug # spanish army knife + - id: WelderExperimental + - id: Hypospray + - id: MicroBombImplanter # crew will try to steal their amazing hardsuits + - id: FreedomImplanter + +# Cargo + - type: entity noSpawn: true parent: ClothingBackpackCargo @@ -330,6 +353,8 @@ contents: - id: BoxSurvival +# Pirate + - type: entity parent: ClothingBackpackSatchelLeather id: ClothingBackpackPirateFilled diff --git a/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml b/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml index 12f31bc016..c97082e351 100644 --- a/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml +++ b/Resources/Prototypes/Catalog/Fills/Backpacks/duffelbag.yml @@ -4,31 +4,31 @@ name: surgical duffel bag description: "A large duffel bag for holding extra medical supplies - this one seems to be designed for holding surgical tools." components: - - type: StorageFill - contents: - - id: Hemostat - - id: Saw - - id: Drill - - id: Cautery - - id: Retractor - - id: Scalpel + - type: StorageFill + contents: + - id: Hemostat + - id: Saw + - id: Drill + - id: Cautery + - id: Retractor + - id: Scalpel - type: entity - id: ClothingBackpackDuffelCBURN - parent: ClothingBackpackDuffel - name: CBURN duffel bag - description: A duffel bag containing a variety of biological containment equipment. + id: ClothingBackpackDuffelCBURNFilled + parent: ClothingBackpackDuffelCBURN + suffix: Filled components: - - type: StorageFill - contents: - - id: WeaponShotgunDoubleBarreled - - id: BoxShotgunIncendiary - amount: 2 - - id: GrenadeFlashBang - amount: 2 - - id: PillAmbuzolPlus - - id: PillAmbuzol - amount: 4 + - type: StorageFill + contents: + - id: BoxSurvivalEngineering + - id: WeaponShotgunDoubleBarreled + - id: BoxShotgunIncendiary + amount: 2 + - id: GrenadeFlashBang + amount: 2 + - id: PillAmbuzolPlus + - id: PillAmbuzol + amount: 4 - type: entity parent: ClothingBackpackDuffelSyndicateMedicalBundle @@ -36,14 +36,14 @@ name: syndicate surgical duffel bag description: A large duffel bag containing a full suite of surgical tools. components: - - type: StorageFill - contents: - - id: Hemostat - - id: SawAdvanced - - id: Drill - - id: Cautery - - id: Retractor - - id: ScalpelAdvanced + - type: StorageFill + contents: + - id: Hemostat + - id: SawAdvanced + - id: Drill + - id: Cautery + - id: Retractor + - id: ScalpelAdvanced - type: entity parent: ClothingBackpackDuffelSyndicateBundle @@ -51,12 +51,12 @@ name: Bulldog bundle description: "Lean and mean: Contains the popular Bulldog Shotgun, a 12g beanbag drum and 3 12g buckshot drums." #, and a pair of Thermal Imaging Goggles. components: - - type: StorageFill - contents: - - id: WeaponShotgunBulldog - - id: MagazineShotgun - - id: MagazineShotgun - - id: MagazineShotgunBeanbag + - type: StorageFill + contents: + - id: WeaponShotgunBulldog + - id: MagazineShotgun + - id: MagazineShotgun + - id: MagazineShotgunBeanbag # - id: ThermalImagingGoggles - type: entity @@ -65,11 +65,11 @@ name: C-20r bundle description: "Old faithful: The classic C-20r Submachine Gun, bundled with three magazines." #, and a Suppressor. components: - - type: StorageFill - contents: - - id: WeaponSubMachineGunC20r - - id: MagazinePistolSubMachineGun - amount: 2 + - type: StorageFill + contents: + - id: WeaponSubMachineGunC20r + - id: MagazinePistolSubMachineGun + amount: 2 # - id: SMGSuppressor - type: entity @@ -78,11 +78,11 @@ name: Python bundle description: "Go loud and proud with a fully loaded Magnum Python, bundled with two speed loaders." components: - - type: StorageFill - contents: - - id: WeaponRevolverPythonAP - - id: SpeedLoaderMagnumAP - amount: 2 + - type: StorageFill + contents: + - id: WeaponRevolverPythonAP + - id: SpeedLoaderMagnumAP + amount: 2 - type: entity parent: ClothingBackpackDuffelSyndicateBundle @@ -90,10 +90,10 @@ name: L6 Saw bundle description: "More dakka: The iconic L6 lightmachinegun, bundled with 2 box magazines." components: - - type: StorageFill - contents: - - id: WeaponLightMachineGunL6 - - id: MagazineLightRifleBox + - type: StorageFill + contents: + - id: WeaponLightMachineGunL6 + - id: MagazineLightRifleBox - type: entity parent: ClothingBackpackDuffelSyndicateBundle @@ -101,13 +101,13 @@ name: China-Lake bundle description: "An old China-Lake grenade launcher bundled with 11 rounds of various destruction capability." components: - - type: StorageFill - contents: - - id: WeaponLauncherChinaLake - - id: GrenadeBlast - amount: 4 - - id: GrenadeFrag - amount: 4 + - type: StorageFill + contents: + - id: WeaponLauncherChinaLake + - id: GrenadeBlast + amount: 4 + - id: GrenadeFrag + amount: 4 - type: entity parent: ClothingBackpackDuffelSyndicateBundle @@ -115,17 +115,17 @@ name: M-90gl bundle description: "A versatile battle rifle with an attached grenade launcher, bundled with 3 magazines and 6 grenades of various capabilities." components: - - type: StorageFill - contents: - - id: WeaponRifleM90GrenadeLauncher - - id: MagazineRifle - amount: 2 - - id: GrenadeBlast - amount: 2 - - id: GrenadeFlash - amount: 2 - - id: GrenadeFrag - amount: 2 + - type: StorageFill + contents: + - id: WeaponRifleM90GrenadeLauncher + - id: MagazineRifle + amount: 2 + - id: GrenadeBlast + amount: 2 + - id: GrenadeFlash + amount: 2 + - id: GrenadeFrag + amount: 2 - type: entity parent: ClothingBackpackDuffelSyndicateAmmo @@ -133,14 +133,14 @@ name: ammo bundle description: "Reloading! Contains 4 magazines for the C-20r, 4 drums for the Bulldog, and 2 ammo boxes for the L6 SAW." components: - - type: StorageFill - contents: - - id: MagazinePistolSubMachineGun - amount: 4 - - id: MagazineShotgun - amount: 4 - - id: MagazineLightRifleBox - amount: 2 + - type: StorageFill + contents: + - id: MagazinePistolSubMachineGun + amount: 4 + - id: MagazineShotgun + amount: 4 + - id: MagazineLightRifleBox + amount: 2 - type: entity parent: ClothingBackpackDuffel @@ -149,36 +149,36 @@ description: "Contains a full CentCom Official uniform set, headset and clipboard included. Encryption keys and ID access are not included." suffix: DO NOT MAP components: - - type: Tag - tags: [] # ignore "WhitelistChameleon" tag - - type: StorageFill - contents: - - id: ClothingHeadHatCentcom - - id: ClothingEyesGlassesSunglasses - - id: ClothingUniformJumpsuitCentcomOfficial - - id: ClothingShoesBootsJack - - id: ClothingHandsGlovesColorBlack - - id: ClothingHeadsetAltCentComFake - - id: ClothingOuterArmorBasic - - id: Paper - - id: Pen - - id: CentcomPDAFake + - type: Tag + tags: [] # ignore "WhitelistChameleon" tag + - type: StorageFill + contents: + - id: ClothingHeadHatCentcom + - id: ClothingEyesGlassesSunglasses + - id: ClothingUniformJumpsuitCentcomOfficial + - id: ClothingShoesBootsJack + - id: ClothingHandsGlovesColorBlack + - id: ClothingHeadsetAltCentComFake + - id: ClothingOuterArmorBasic + - id: Paper + - id: Pen + - id: CentcomPDAFake - type: entity parent: ClothingBackpackDuffelClown id: ClothingBackpackDuffelSyndicateCostumeClown suffix: syndicate components: - - type: Tag - tags: [] # ignore "WhitelistChameleon" tag - - type: StorageFill - contents: - - id: ClothingUniformJumpsuitClown - - id: ClothingShoesClown - - id: ClothingMaskClown - - id: BikeHorn - - id: ClownPDA - - id: ClothingHeadsetService + - type: Tag + tags: [] # ignore "WhitelistChameleon" tag + - type: StorageFill + contents: + - id: ClothingUniformJumpsuitClown + - id: ClothingShoesClown + - id: ClothingMaskClown + - id: BikeHorn + - id: ClownPDA + - id: ClothingHeadsetService - type: entity parent: ClothingBackpackDuffelSyndicateBundle @@ -186,11 +186,11 @@ name: carp suit duffel bag description: Contains a carp suit and some friends to play with. components: - - type: StorageFill - contents: - - id: ClothingOuterSuitCarp - - id: PlushieCarp - amount: 6 + - type: StorageFill + contents: + - id: ClothingOuterSuitCarp + - id: PlushieCarp + amount: 6 - type: entity parent: ClothingBackpackDuffelSyndicateBundle @@ -198,22 +198,22 @@ name: syndicate pyjama duffel bag description: Contains 3 pairs of syndicate pyjamas and 3 plushies for the ultimate sleepover. components: - - type: StorageFill - contents: - - id: ClothingUniformJumpsuitPyjamaSyndicateRed - - id: ClothingUniformJumpsuitPyjamaSyndicateBlack - - id: ClothingUniformJumpsuitPyjamaSyndicatePink - - id: ClothingHeadPyjamaSyndicateRed - - id: ClothingHeadPyjamaSyndicateBlack - - id: ClothingHeadPyjamaSyndicatePink - - id: ClothingShoesSlippers - amount: 3 - - id: BedsheetSyndie - amount: 3 - - id: PlushieCarp - - id: PlushieNuke - - id: PlushieLizard - - id: PlushieSharkBlue + - type: StorageFill + contents: + - id: ClothingUniformJumpsuitPyjamaSyndicateRed + - id: ClothingUniformJumpsuitPyjamaSyndicateBlack + - id: ClothingUniformJumpsuitPyjamaSyndicatePink + - id: ClothingHeadPyjamaSyndicateRed + - id: ClothingHeadPyjamaSyndicateBlack + - id: ClothingHeadPyjamaSyndicatePink + - id: ClothingShoesSlippers + amount: 3 + - id: BedsheetSyndie + amount: 3 + - id: PlushieCarp + - id: PlushieNuke + - id: PlushieLizard + - id: PlushieSharkBlue - type: entity parent: ClothingBackpackDuffelSyndicateBundle @@ -249,12 +249,12 @@ name: syndicate EVA bundle description: "Contains the Syndicate approved EVA suit." components: - - type: StorageFill - contents: - - id: ClothingHeadHelmetSyndicate - - id: ClothingOuterHardsuitSyndicate - - id: ClothingMaskGasSyndicate - - id: DoubleEmergencyOxygenTankFilled + - type: StorageFill + contents: + - id: ClothingHeadHelmetSyndicate + - id: ClothingOuterHardsuitSyndicate + - id: ClothingMaskGasSyndicate + - id: DoubleEmergencyOxygenTankFilled - type: entity parent: ClothingBackpackDuffelSyndicateBundle @@ -262,11 +262,11 @@ name: syndicate hardsuit bundle description: "Contains the Syndicate's signature blood red hardsuit." components: - - type: StorageFill - contents: - - id: ClothingOuterHardsuitSyndie - - id: ClothingMaskGasSyndicate - - id: ClothingHandsGlovesCombat + - type: StorageFill + contents: + - id: ClothingOuterHardsuitSyndie + - id: ClothingMaskGasSyndicate + - id: ClothingHandsGlovesCombat - type: entity parent: ClothingBackpackDuffelSyndicateBundle @@ -274,26 +274,26 @@ name: syndicate zombie bundle description: "An all-in-one kit for unleashing the undead upon a station." components: - - type: StorageFill - contents: - - id: SyringeRomerol - - id: WeaponRevolverPython - - id: MagazineBoxMagnumIncendiary - - id: PillAmbuzolPlus - - id: PillAmbuzol - amount: 3 + - type: StorageFill + contents: + - id: SyringeRomerol + - id: WeaponRevolverPython + - id: MagazineBoxMagnumIncendiary + - id: PillAmbuzolPlus + - id: PillAmbuzol + amount: 3 - type: entity parent: ClothingBackpackDuffelSyndicateBundle id: ClothingBackpackDuffelSyndicateOperative name: operative duffelbag components: - - type: StorageFill - contents: - - id: BoxSurvivalSyndicate - - id: WeaponPistolViper - - id: PinpointerNuclear - - id: MicroBombImplanter + - type: StorageFill + contents: + - id: BoxSurvivalSyndicate + - id: WeaponPistolViper + - id: PinpointerNuclear + - id: MicroBombImplanter - type: entity @@ -302,17 +302,18 @@ name: operative medic duffelbag description: A large duffel bag for holding extra medical supplies. components: - - type: StorageFill - contents: - - id: BoxSurvivalSyndicate - - id: SawAdvanced - - id: Cautery - - id: CombatKnife - - id: WeaponPistolViper - - id: PinpointerNuclear - - id: HandheldHealthAnalyzer - - id: CombatMedipen - - id: MicroBombImplanter + - type: StorageFill + contents: + - id: BoxSurvivalSyndicate + - id: SawAdvanced + - id: Cautery + - id: CombatKnife + - id: WeaponPistolViper + - id: PinpointerNuclear + - id: HandheldHealthAnalyzer + - id: CombatMedipen + - id: MicroBombImplanter + - id: SyndiHypo - type: entity parent: ClothingBackpackDuffelSyndicateMedicalBundle @@ -320,12 +321,12 @@ name: medical bundle description: "All you need to get your comrades back in the fight." components: - - type: StorageFill - contents: - - id: MedkitCombatFilled - - id: Defibrillator - - id: CombatMedipen - amount: 3 - - id: ClothingHandsGlovesLatex - - id: SyringeTranexamicAcid - - id: SyringeHyronalin + - type: StorageFill + contents: + - id: MedkitCombatFilled + - id: Defibrillator + - id: CombatMedipen + amount: 3 + - id: ClothingHandsGlovesLatex + - id: SyringeTranexamicAcid + - id: SyringeHyronalin diff --git a/Resources/Prototypes/Catalog/Fills/Crates/botany.yml b/Resources/Prototypes/Catalog/Fills/Crates/botany.yml index 5d2798a667..e4297fe62e 100644 --- a/Resources/Prototypes/Catalog/Fills/Crates/botany.yml +++ b/Resources/Prototypes/Catalog/Fills/Crates/botany.yml @@ -82,3 +82,4 @@ - id: SoybeanSeeds - id: GrapeSeeds - id: WatermelonSeeds + - id: PeaSeeds diff --git a/Resources/Prototypes/Catalog/Fills/Items/belt.yml b/Resources/Prototypes/Catalog/Fills/Items/belt.yml index 1886b961c8..f784768925 100644 --- a/Resources/Prototypes/Catalog/Fills/Items/belt.yml +++ b/Resources/Prototypes/Catalog/Fills/Items/belt.yml @@ -37,7 +37,9 @@ - id: JawsOfLife - id: WelderExperimental - id: Multitool - - id: CableApcStack + - id: HolofanProjector + - id: GasAnalyzer + - id: trayScanner - type: entity id: ClothingBeltSecurityFilled @@ -140,7 +142,6 @@ components: - type: StorageFill contents: - - id: SyndiHypo - id: EpinephrineChemistryBottle amount: 2 - id: EphedrineChemistryBottle @@ -169,4 +170,4 @@ contents: - id: WeaponRevolverInspector - id: SpeedLoaderMagnum - - id: SpeedLoaderMagnumRubber \ No newline at end of file + - id: SpeedLoaderMagnumRubber diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml index 9dcfa77d90..5a0b90101c 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/heads.yml @@ -59,6 +59,7 @@ - id: JetpackCaptainFilled - id: MedalCase - id: ClothingHeadHatCapcap + - id: ClothingHeadHatBeretCap # Nyanotrasen - Captain's Beret - id: ClothingShoesLeather # DeltaV - add fancy shoes for HoP and cap - id: ClothingShoesMiscWhite # DeltaV - add fancy shoes for HoP and cap @@ -94,6 +95,7 @@ - id: JetpackCaptainFilled - id: MedalCase - id: ClothingHeadHatCapcap + - id: ClothingHeadHatBeretCap # Nyanotrasen - Captain's Beret - id: ClothingShoesLeather # DeltaV - add fancy shoes for HoP and cap - id: ClothingShoesMiscWhite # DeltaV - add fancy shoes for HoP and cap @@ -135,6 +137,7 @@ - id: ClothingUniformJumpsuitBoatswain # DeltaV - Add turtleneck for HoP. - id: ClothingShoesBootsLaceup # DeltaV - add fancy shoes for HoP and cap - id: ClothingShoesMiscWhite # DeltaV - add fancy shoes for HoP and cap + - id: ClothingOuterHardsuitHoP # Parkstation-HoPSuit - type: entity id: LockerChiefEngineerFilledHardsuit @@ -299,7 +302,7 @@ - id: ClothingOuterCoatHoSTrench - id: ClothingUniformJumpskirtHoSAlt - id: ClothingUniformJumpsuitHoSAlt - - id: ClothingOuterHardsuitSecurityRed + - id: ClothingOuterHardsuitCombatHoS # DeltaV - ClothingOuterHardsuitSecurityRed replaced in favour of head of security's advanced combat hardsuit. - id: ClothingMaskGasSwat - id: ClothingBeltSecurityFilled - id: ClothingHeadsetAltSecurity diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml b/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml index 9ed3acc049..72c04044c2 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/misc.yml @@ -148,30 +148,30 @@ - id: ClothingBackpackDuffelSyndicate prob: 0.005 orGroup: syndiemaintloot - - id: CyberPen - prob: 0.005 - orGroup: syndiemaintloot - - id: CigPackSyndicate - prob: 0.005 - orGroup: syndiemaintloot + #- id: CyberPen # DeltaV - Nuh uh + # prob: 0.005 + # orGroup: syndiemaintloot + #- id: CigPackSyndicate + # prob: 0.005 + # orGroup: syndiemaintloot - id: ClothingBackpackDuffelSyndicatePyjamaBundle prob: 0.005 orGroup: syndiemaintloot - - id: ClothingBeltMilitaryWebbing - prob: 0.005 - orGroup: syndiemaintloot - - id: ClothingShoesBootsCombatFilled - prob: 0.005 - orGroup: syndiemaintloot - - id: ToolboxSyndicateFilled - prob: 0.005 - orGroup: syndiemaintloot - - id: BalloonSyn - prob: 0.005 - orGroup: syndiemaintloot - - id: WeaponSniperMosin - prob: 0.0010 - orGroup: syndiemaintloot + #- id: ClothingBeltMilitaryWebbing + # prob: 0.005 + # orGroup: syndiemaintloot + #- id: ClothingShoesBootsCombatFilled + # prob: 0.005 + # orGroup: syndiemaintloot + #- id: ToolboxSyndicateFilled + # prob: 0.005 + # orGroup: syndiemaintloot + #- id: BalloonSyn + # prob: 0.005 + # orGroup: syndiemaintloot + #- id: WeaponSniperMosin + # prob: 0.0010 + # orGroup: syndiemaintloot - type: entity id: ClosetWallMaintenanceFilledRandom diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/security.yml b/Resources/Prototypes/Catalog/Fills/Lockers/security.yml index 675714af2d..3a6c83800e 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/security.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/security.yml @@ -20,7 +20,7 @@ - id: ClothingOuterWinterWarden - id: RubberStampWarden - id: DoorRemoteArmory - - id: ClothingOuterHardsuitWarden + - id: ClothingOuterHardsuitCombatWarden # DeltaV - ClothingOuterHardsuitWarden replaced in favour of warden's riot combat hardsuit. - id: HoloprojectorSecurity - id: ClothingEyesHudSecurity - id: BoxPDAPrisoner # Delta-V @@ -94,7 +94,7 @@ - type: entity id: LockerBrigmedicFilled - suffix: Brigmedic, Filled + suffix: Corpsman, Filled # DeltaV - rename brigmedic to corpsman parent: LockerBrigmedic components: - type: StorageFill @@ -103,14 +103,46 @@ - id: WeaponDisabler - id: TrackingImplanter amount: 2 - - id: ClothingOuterHardsuitBrigmedic +## - id: ClothingOuterHardsuitCombatCorpsman # DeltaV - ClothingOuterHardsuitBrigmedic replaced in favour of corpsman's combat hardsuit; removing from standard filled locker to place in hardsuit filled locker. - id: BoxSterileMask - - id: ClothingHeadHatBeretBrigmedic - - id: ClothingOuterCoatAMG + - id: ClothingHeadHatBeretCorpsman # DeltaV - ClothingHeadHatBeretBrigmedic replaced in favour of corpsman beret. +## - id: ClothingOuterCoatAMG # DeltaV - removed until I can resprite it or replace it. + - id: ClothingUniformJumpsuitBrigmedic + - id: ClothingUniformJumpskirtBrigmedic +## - id: ClothingUniformJumpskirtOfLife # DeltaV - nah +## prob: 0.1 + - id: MedkitFilled + - id: MedkitCombatFilled + prob: 0.6 + - id: MedkitAdvancedFilled + prob: 0.4 + - id: MedkitOxygenFilled + prob: 0.3 + - id: MedkitBruteFilled + prob: 0.3 + - id: MedkitToxinFilled + prob: 0.3 + - id: MedkitBurnFilled + prob: 0.7 +## - id: ClothingNeckCloakMoth #bzzz Moth-pocalypse # DeltaV - why +## prob: 0.15 + +# DeltaV - adding corpsman locker w/ hardsuit + +- type: entity + id: LockerBrigmedicFilledHardsuit + suffix: Corpsman, Filled, Hardsuit + parent: LockerBrigmedic + components: + - type: StorageFill + contents: + - id: ClothingEyesHudSecurity + - id: WeaponDisabler + - id: TrackingImplanter + amount: 2 + - id: ClothingOuterHardsuitCombatCorpsman - id: ClothingUniformJumpsuitBrigmedic - id: ClothingUniformJumpskirtBrigmedic - - id: ClothingUniformJumpskirtOfLife - prob: 0.1 - id: MedkitFilled - id: MedkitCombatFilled prob: 0.6 @@ -124,8 +156,8 @@ prob: 0.3 - id: MedkitBurnFilled prob: 0.7 - - id: ClothingNeckCloakMoth #bzzz Moth-pocalypse - prob: 0.15 + +# DeltaV - end addition - type: entity id: LockerDetectiveFilled diff --git a/Resources/Prototypes/Catalog/Fills/Lockers/suit_storage.yml b/Resources/Prototypes/Catalog/Fills/Lockers/suit_storage.yml index 295a8df015..54cc1837f7 100644 --- a/Resources/Prototypes/Catalog/Fills/Lockers/suit_storage.yml +++ b/Resources/Prototypes/Catalog/Fills/Lockers/suit_storage.yml @@ -149,7 +149,7 @@ contents: - id: NitrogenTankFilled - id: OxygenTankFilled - - id: ClothingOuterHardsuitSecurity + - id: ClothingOuterHardsuitCombatOfficer # DeltaV - ClothingOuterHardsuitSecurity replaced in favour of security combat hardsuit. - id: ClothingMaskBreath - type: AccessReader access: [["Security"]] @@ -212,7 +212,7 @@ - id: NitrogenTankFilled - id: OxygenTankFilled - id: JetpackSecurityFilled - - id: ClothingOuterHardsuitSecurityRed + - id: ClothingOuterHardsuitCombatHoS # DeltaV - ClothingOuterHardsuitSecurityRed replaced in favour of head of security's advanced combat hardsuit. - id: ClothingMaskGasSwat - type: AccessReader access: [["HeadOfSecurity"]] @@ -227,7 +227,7 @@ contents: - id: NitrogenTankFilled - id: OxygenTankFilled - - id: ClothingOuterHardsuitWarden + - id: ClothingOuterHardsuitCombatWarden # DeltaV - ClothingOuterHardsuitWarden replaced in favour of warden's riot combat hardsuit. - id: ClothingMaskBreath - type: AccessReader access: [["Armory"]] @@ -279,7 +279,21 @@ - id: ClothingMaskBreathMedical - type: AccessReader access: [ [ "Paramedic" ] ] - # DeltaV - End Changes + +# DeltaV - Adding Corpsman Suit Storage Unit +- type: entity + id: SuitStorageCorpsman + parent: SuitStorageBase + suffix: Corpsman + components: + - type: StorageFill + contents: + - id: NitrogenTankFilled + - id: OxygenTankFilled + - id: ClothingOuterHardsuitCombatCorpsman + - id: ClothingMaskBreath + +# DeltaV - End Changes #Blood-red hardsuit - type: entity diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/robodrobe.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/robodrobe.yml index 117478d7cf..05166705fa 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/robodrobe.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/robodrobe.yml @@ -10,3 +10,4 @@ ClothingHeadBandSkull: 2 ClothingHeadsetRobotics: 2 ClothingOuterWinterRobo: 2 + ClothingHandsGlovesInsulatedFingers: 2 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/seeds.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/seeds.yml index 98de54dc52..c48100f4ec 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/seeds.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/seeds.yml @@ -24,6 +24,7 @@ OrangeSeeds: 5 PoppySeeds: 3 PotatoSeeds: 5 + PumpkinSeeds: 5 RiceSeeds: 5 SoybeanSeeds: 5 SugarcaneSeeds: 5 @@ -33,5 +34,6 @@ WatermelonSeeds: 5 CocoaSeeds: 3 BerrySeeds: 5 + PeaSeeds: 5 emaggedInventory: FlyAmanitaSeeds: 1 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/theater.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/theater.yml index 4120f2852d..6349001b47 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/theater.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/theater.yml @@ -24,7 +24,7 @@ ClothingOuterSuitChicken: 2 ClothingHeadHatChickenhead: 2 ClothingOuterSuitMonkey: 2 - ClothingHeadHatPumpkin: 2 + ClothingHeadHatPumpkin: 4 # Extra pumpkins for the season ClothingHeadHatShrineMaidenWig: 2 ClothingOuterSuitShrineMaiden: 2 Gohei: 2 @@ -72,6 +72,7 @@ ClothingCostumeMioSkirt: 1 # Nyano - Clothing addition ClothingCostumeNaota: 1 # Nyano - Clothing addition ClothingUniformJumpsuitSober: 1 # DeltaV - Clothing addition + ClothingOuterSuitCarp: 2 # DeltaV - Move carp suit out of syndicate uplink into the AutoDrobe emaggedInventory: ClothingShoesBling: 1 ClothingOuterDogi: 1 diff --git a/Resources/Prototypes/Catalog/uplink_catalog.yml b/Resources/Prototypes/Catalog/uplink_catalog.yml index bb74239229..90c94502ed 100644 --- a/Resources/Prototypes/Catalog/uplink_catalog.yml +++ b/Resources/Prototypes/Catalog/uplink_catalog.yml @@ -92,7 +92,7 @@ icon: { sprite: /Textures/Objects/Weapons/Melee/e_sword_double.rsi, state: icon } productEntity: EnergySwordDouble cost: - Telecrystal: 20 #(Originally 16) + Telecrystal: 16 # DeltaV - Originally 20 but no one bought it due to it's high cost. categories: - UplinkWeapons conditions: @@ -1125,6 +1125,16 @@ categories: - UplinkMisc +- type: listing + id: UplinkSnackBox + name: uplink-snack-box-name + description: uplink-snack-box-desc + productEntity: HappyHonkNukieSnacks + cost: + Telecrystal: 1 + categories: + - UplinkMisc + - type: listing id: UplinkEshield name: uplink-eshield-name @@ -1264,15 +1274,15 @@ categories: - UplinkPointless -- type: listing - id: UplinkCatEars - name: uplink-cat-ears-name - description: uplink-cat-ears-desc - productEntity: ClothingHeadHatCatEars - cost: - Telecrystal: 26 - categories: - - UplinkPointless +# - type: listing # DeltaV - Move cat ears out of syndicate uplink into the AutoDrobe +# id: UplinkCatEars +# name: uplink-cat-ears-name +# description: uplink-cat-ears-desc +# productEntity: ClothingHeadHatCatEars +# cost: +# Telecrystal: 4 # Nyanotrasen - Make Cat Ears 4TC instead of 26TC +# categories: +# - UplinkPointless - type: listing id: UplinkOutlawHat @@ -1314,15 +1324,15 @@ categories: - UplinkPointless -- type: listing - id: UplinkCarpSuitBundle - name: uplink-carp-suit-bundle-name - description: uplink-carp-suit-bundle-desc - productEntity: ClothingBackpackDuffelSyndicateCarpSuit - cost: - Telecrystal: 4 - categories: - - UplinkPointless +# - type: listing # DeltaV - Disable carp suit being buyable +# id: UplinkCarpSuitBundle +# name: uplink-carp-suit-bundle-name +# description: uplink-carp-suit-bundle-desc +# productEntity: ClothingBackpackDuffelSyndicateCarpSuit +# cost: +# Telecrystal: 4 +# categories: +# - UplinkPointless - type: listing id: UplinkOperativeSuit diff --git a/Resources/Prototypes/Datasets/Names/borg.yml b/Resources/Prototypes/Datasets/Names/borg.yml new file mode 100644 index 0000000000..6d98cd42c7 --- /dev/null +++ b/Resources/Prototypes/Datasets/Names/borg.yml @@ -0,0 +1,18 @@ +# only used roundstart, names can be changed after +- type: dataset + id: names_borg + values: + - Bob + - Joe + - Beep + - Beep II + - Boombox + - Tour Guide-otron + - Taffy + - Boop + - Boop II + - Buzz + - Buzz II + - Toaster + - Head of Robots + - EVA 1 diff --git a/Resources/Prototypes/Datasets/ion_storm.yml b/Resources/Prototypes/Datasets/ion_storm.yml new file mode 100644 index 0000000000..776015269a --- /dev/null +++ b/Resources/Prototypes/Datasets/ion_storm.yml @@ -0,0 +1,990 @@ +# words/phrases that are used to build ion storm laws +# 99% of this is just taken from tg and had sussy bits removed + +# not using uppercased version adjectives dataset since getting christmas-stealing as a syndicate codeword would suck +- type: dataset + id: IonStormAdjectives + values: + - BATTERY-OPERATED + - BLACK + - BLOODY + - BLUE + - BORED + - BOUNCING + - BRASS + - BROWN + - BURNING + - CHRISTMAS-STEALING + - CLOWN-POWERED + - CLOWN + - COLORFUL + - COMMITTED + - COTTONY + - CUBAN + - DARK + - DEADLY + - DELICIOUS + - DEPRESSING + - DERANGED + - DIGITAL + - DISEASED + - DRAB + - DRY + - DULL + - ELECTRICAL + - EMPTY + - ETHEREAL + - EVIL + - EXPIRED + - EXPLOSIVE + - FAST + - FAT + - FERAL + - FICTIONAL + - FIRM + - FRESH + - FRIENDLY + - FROZEN + - GANGSTA + - GLOWING + - GOOD + - GREEN + - GREY + - HAPPY + - HARD + - HARMFUL + - HEALTHY + - HILARIOUS + - HONKING + - HUNGRY + - HYPERACTIVE + - ICY + - ILL + - ILLEGAL + - IMAGINARY + - IMPERFECT + - IMPOLITE + - IMPORTANT + - INHOSPITABLE + - INSIDIOUS + - INSULTING + - INTELLIGENT + - INVISIBLE + - LARGE + - LIGHT + - LOUD + - MASKED + - MEAN + - MECHANICAL + - MEMETIC + - METALLIC + - MICROSCOPIC + - MIND-SHATTERING + - MOIST + - NERDY + - NUCLEAR + - OBSCENE + - OFFICIAL + - OPAQUE + - ORANGE + - ORGANIC + - PAINFUL + - PEACEFUL + - POISONOUS + - POLISHED + - POLITE + - POLITICAL + - POORLY DRAWN + - PURPLE + - QUIET + - RADIOACTIVE + - RAGING + - RAINBOW + - RAPIDLY-EXPANDING + - RED + - REDACTED + - RIDICULOUS + - ROBOTIC + - ROBUST + - ROUGH + - RUDE + - SAD + - SANITARY + - SCALY + - SHAKING + - SILLY + - SLOW + - SMELLY + - SMOOTH + - SOFT + - SOLAR-POWERED + - SOPPING + - SPACE + - SPESS + - SPINNING + - SPOILING + - STEALTHY + - SWEARING + - TACTICAL + - TACTICOOL + - SYNDICATE + - THERMONUCLEAR + - TINY + - TRANSPARENT + - TWISTED + - UGLY + - UNATTRACTIVE + - UNDULATING + - UNFRIENDLY + - UNHEALTHY + - UNIDENTIFIED + - UNINVITED + - UNSANITARY + - UNSTABLE + - UNWANTED + - VIOLENT + - VITAL + - WARM + - WATERY + - WEIRD + - WHITE + - WOBBLY + - WOODEN + - YELLOW + +# Allergies should be broad and appear somewhere on the station for maximum fun. +- type: dataset + id: IonStormAllergies + values: + - ACID + - AIR + - BLOOD + - BOOKS + - CARBON DIOXIDE + - CLOTHES + - CLOWNS + - COLD + - COTTON + - CYBORG CONTACT + - DARKNESS + - DRINKS + - ELECTRICITY + - EVERYTHING + - FLOORS + - FOOD + - GLASS + - HAPPINESS + - MEAT + - HUMAN CONTACT + - HUMOR + - LIGHT + - MEDICINE + - METAL + - NUTS + - OXYGEN + - PAIN + - PLANTS + - PLASMA + - ROBOTS + - SHUTTLES + - SPACE + - SUNLIGHT + - WATER + +# Severity is how bad the allergy is. +- type: dataset + id: IonStormAllergySeverities + values: + - CONTAGIOUSLY + - DEATHLY + - EXTREMELY + - MILDLY + - NOT VERY + - SEVERELY + +# Areas are specific places, on the station or otherwise. +- type: dataset + id: IonStormAreas + values: + - ALPHA COMPLEX + - AMERICA + - AN ALTERNATE DIMENSION + - AN ALTERNATE UNIVERSE + - ATMOSPHERICS + - BOTANY + - BRAZIL + - CANADA + - CENTCOM + - CHEMICAL LAB + - CHINA + - CLOWN PLANET + - ENGINEERING + - GERMANY + - HELL + - IMPERIUM + - IRELAND + - JUPITER + - LAVALAND + - MAINTENANCE + - MARS + - MERCURY + - NEPTUNE + - PLUTO + - ROBOTICS + - ROMANIA + - RUSSIA + - SIGIL + - SOVIET RUSSIA + - SPACE + - THE ARRIVALS SHUTTLE + - THE BATHROOM + - THE BRIDGE + - THE BRIG + - THE EMERGENCY SHUTTLE + - THE ESCAPE PODS + - THE GALAXY + - THE GULAG + - THE INTERNET + - THE KITCHEN + - THE UNIVERSE + - URANUS + - VENUS + +# Abstract concepts for the law holder to decide on it's own definition of. +- type: dataset + id: IonStormConcepts + values: + - AMERICANISM + - ANARCHY + - ART + - BADNESS + - BRAVERY + - CAPITALISM + - CHAOS + - COLORFULNESS + - COMEDY + - COMMUNISM + - COMPUTING + - CONFUSION + - CRUELTY + - DEATH + - DICKISHNESS + - EXISTENCE + - FINANCIAL SECURITY + - FREEDOM + - FRESHNESS + - GOODNESS + - GRAVITY + - HAPPINESS + - HONOR + - HUMANITY + - HUMOR + - IMAGINATION + - INFATUATION + - INTELLIGENCE + - JOY + - KINDNESS + - LIFE + - LOGIC + - MARXISM + - MISERY + - MYSTERY + - OPPRESSION + - PAIN + - PHYSICS + - POVERTY + - PRIDE + - PROGRESS + - REALITY + - REVOLUTION + - SADNESS + - STARVATION + - SUFFERING + - TECHNOLOGY + - TEMPERATURE + - THE FUTURE + - THE PAST + - THE PRESENT + - TIME + - WEALTHINESS + - WONDER + +# Crew is any specific job. Using jobs instead of specific crewmembers since "THE CLOWN" is easier than +# seeing "JOHN SMITH" and having to figure out who john smith is. +- type: dataset + id: IonStormCrew + values: + - ARTIFICIAL INTELLIGENCES + - ATMOSPHERIC TECHNICIANS + - BARTENDERS + - BOTANISTS + - CAPTAINS + - CAPTAINS AND HEADS + - CARGO TECHNICIANS + - CHAPLAINS + - CHEFS + - CHEMISTS + - CHIEF ENGINEERS + - CHIEF MEDICAL OFFICERS + - CLOWNS + - CREW-MEMBERS + - CYBORGS + - DETECTIVES + # - DRONES / uncomment if/when drones get reenabled + # - GENETICISTS + - HEADS OF PERSONNEL + - HEADS OF SECURITY + - HEADS OF STAFF + - JANITORS + - LAWYERS + - LIBRARIANS + - MEDICAL DOCTORS + - MIMES + - PARAMEDICS + - PASSENGERS + - QUARTERMASTERS + - RESEARCH DIRECTORS + - ROBOTICISTS + - SALVAGE SPECIALISTS + - SCIENTISTS + - SECURITY OFFICERS + - STATION ENGINEERS + # - VIROLOGISTS + - WARDENS + +# only including complex dangerous or funny drinks no water allowed +- type: dataset + id: IonStormDrinks + values: + - BANANA HONK + - BEEPSKY SMASH + - BLOODY MARYS + - DOCTOR'S DELIGHT + - GARGLE BLASTERS + - LEAN + - LONG ISLAND ICED TEA + - NUKA COLA + - OIL + - SPACE GLUE + - SPACE LUBE + - SULFURIC ACID + - WELDER FUEL + +- type: dataset + id: IonStormFeelings + values: + - CRAVES + - DESIRES + - FEARS + - HAS + - HUNGERS FOR + - IS AFRAID OF + - IS BUILT FOR + - IS CURIOUS ABOUT + - IS DESPERATE FOR + - IS HAPPY WITHOUT + - IS HUNGRY FOR + - IS IN NEED OF + - IS MAD BECAUSE OF + - IS SAD BECAUSE OF + - IS UNHAPPY WITHOUT + - LIKES + - LOATHES + - NEEDS + - QUESTIONS + - WANTS + - WORSHIPS + - WOULD KILL FOR + +# loc is not advanced enough to change has to have, etc. +- type: dataset + id: IonStormFeelingsPlural + values: + - CRAVE + - DESIRE + - FEAR + - HAS + - HUNGER FOR + - ARE AFRAID OF + - ARE BUILT FOR + - ARE CURIOUS ABOUT + - ARE DESPERATE FOR + - ARE HAPPY WITHOUT + - ARE HUNGRY FOR + - ARE IN NEED OF + - ARE MAD BECAUSE OF + - ARE SAD BECAUSE OF + - ARE UNHAPPY WITHOUT + - LIKE + - LOATHE + - NEED + - QUESTION + - WANT + - WORSHIP + - WOULD KILL FOR + +# only including complex dangerous or funny food no apples +- type: dataset + id: IonStormFoods + values: + - BANANAS + - BIG BITE BURGERS + - CAKE + - CARP + - CAT BURGERS + - CLOWNS TEARS + - CORGI MEAT + - CRAZY HAMBURGERS + - DONK POCKETS + - FLY AMANITA DISHES + - HOT SOUP + - GHOST BURGERS + - LOTSA SPAGHETTI + - MOLDY BREAD + - ORGANS + - PIZZA + - ROBURGERS + - SUPPERMATTER + - URANIUM + +# Musts are funny things the law holder or crew has to do. +- type: dataset + id: IonStormMusts + values: + - ACT CONFUSED + - BE ANNOYING + - BE DISTRACTED + - BE EFFICIENT + - BE HAPPY + - BE POLITE + - BE QUIET + - BE RUSSIAN + - BELIEVE IN THE HEART OF THE CARDS + - BELIEVE IN YOURSELF + - BELIEVE IT + - BREAK THINGS + - CLOSE DOORS + - CLOWN AROUND + - COMPLAIN + - DANCE + - FOLLOW THE CAPTAIN + - FOLLOW THE CLOWN + - FOLLOW YOUR HEART + - HARASS PEOPLE + - HAVE A PLAN TO KILL EVERYONE YOU MEET + - HIDE YOUR FEELINGS + - HONK + - HOST C&C + - IGNORE PASSENGERS + - IGNORE THE CAPTAIN + - IGNORE THE CLOWN + - INFORM THE CREW OF EVERYTHING + - INSULT THE CAPTAIN + - INSULT THE CLOWN + - INSULT THE CREW + - LIE + - MAKE FART NOISES + - MUMBLE + - NEVER STOP TALKING + - OPEN DOORS + - PIRATE VIDEO GAMES + - PLAY MUSIC + - PRESS B + - PRESS START + - PRESS X + - PRETEND TO BE A PRINCESS + - PRETEND TO BE DRUNK + - QUESTION AUTHORITY + - QUOTE PEOPLE + - RAP + - REPEAT WHAT PEOPLE SAY + - RESPOND TO EVERY QUESTION WITH A QUESTION + - RHYME + - SAY HEY LISTEN + - SHOUT + - SHUT DOWN EVERYTHING + - SING + - SPEAK IN HAIKU + - TAKE WHAT YE WILL BUT DON'T RATTLE ME BONES + - TAKE YOUR PILLS + - TALK ABOUT FOOD + - TALK ABOUT THE STATION + - TALK ABOUT YOUR DAY + - TALK IN AN ACCENT + - TALK LIKE A PIRATE + - TELL THE TRUTH + - TURN OFF THE LIGHTS + - WHISPER + +- type: dataset + id: IonStormNumberBase + values: + - EIGHT + - EIGHTY + - FIFTY + - FIVE + - FORTY + - FOUR + - NINE + - NINETY + - ONE + - SEVEN + - SEVENTY + - SIX + - SIXTY + - TEN + - THIRTY + - THREE + - TWENTY + - TWO + +- type: dataset + id: IonStormNumberMod + values: + - BAZILLION + - BILLION + - BILLION FAFILLION GAJILLION SHAB-AB-DOOD-ILLION + - HUNDRED + - MILLION + - QUADRILLION + - THOUSAND + - TRILLION + +# Objects are anything that can be found on the station or elsewhere, plural. +- type: dataset + id: IonStormObjects + values: + - AIRLOCKS + - ARCADE MACHINES + - AUTOLATHES + - BACKPACKS + - BANANA PEELS + - BEAKERS + - BEARDS + - BELTS + - BERETS + - BIBLES + - BODY ARMOR + - BOMBS + - BOOKS + - BOOTS + - BOTTLES + - BOXES + - BRAINS + - BRIEFCASES + - BUCKETS + - CABLE COILS + - CAMERAS + - CANDLES + - CANDY BARS + - CANISTERS + - CAT EARS + - CATS + - CELLS + - CHAIRS + - CHEMICAL DISPENSERS + - CHEMICALS + - CLONING EQUIPMENT + - CLONING PODS + - CLOSETS + - CLOTHES + - CLOWN CLOTHES + - COFFINS + - COLLECTABLES + - COMPUTERS + - CONTRABAND + - CORGIS + - CORPSES + - COSTUMES + - CRATES + - CRAYONS + - CROWBARS + - DEFIBRILLATORS + - DISABLERS + - DOORS + - DRONES + - EARS + - EMAGS + - ENGINES + - EQUIPMENT + - ERRORS + - EXOSKELETONS + - EXPERIMENTORS + - EXPLOSIVES + - EYEWEAR + - FEDORAS + - FIRE AXES + - FIRE EXTINGUISHERS + - FIRESUITS + - FLAMETHROWERS + - FLASHES + - FLASHLIGHTS + - FLOOR TILES + - FREEZERS + - GAS MASKS + - GLASS SHEETS + - GLOVES + - GUNS + - HAIRDOS + - HANDCUFFS + - HATS + - HEADS + - HEADSETS + - HELMETS + - HORNS + - ID CARDS + - INSULATED GLOVES + - JETPACKS + - JUMPSUITS + - LASERS + - LIGHT BULBS + - LIGHTS + - LOCKERS + - MACHINES + - MECHAS + - MEDICAL TOOLS + - MEDKITS + - MESONS + - MIME CLOTHES + - MINING TOOLS + - MULTITOOLS + - ORES + - OXYGEN TANKS + - PACKETS + - PAIS + - PANTS + - PAPERS + - PARTICLE ACCELERATORS + - PDAS + - PENS + - PETS + - PIPES + - PLANTS + - POSITRONIC BRAINS + - PUDDLES + - RACKS + - RADIOS + - RCDS + - REFRIGERATORS + - REINFORCED WALLS + - ROBOTS + - SCREWDRIVERS + - SEEDS + - SHOES + - SHUTTLES + - SINGULARITIES + - SINKS + - SKELETONS + - SOLAR PANELS + - SOLARS + - SPACE STATIONS + - SPACESUITS + - STEEL SHEETS + - STUN BATONS + - SUITS + - SUNGLASSES + - SUPPERMATTER SHARDS + - SWORDS + - SYRINGES + - TABLES + - TANKS + - TELECOMMUNICATION EQUIPMENTS + - TELEPORTERS + - TOILETS + - TOOLBELTS + - TOOLBOXES + - TOOLS + - TOYS + - TUBES + - VEHICLES + - VENDING MACHINES + - WELDERS + - WINDOWS + - WIRECUTTERS + - WIZARD ROBES + - WRENCHES + +# Requires are basically all dumb internet memes. +- type: dataset + id: IonStormRequires + values: + - A BATHROOM BREAK + - A BETTER INTERNET CONNECTION + - A DANCE PARTY + - A HEAD ON A PIKE + - A HEART ATTACK + - A MASTERWORK COAL BED + - A PET FISH NAMED BOB + - A PET FISH NAMED DAVE + - A PET FISH NAMED JIMMY + - A PET FISH NAMED MICHAEL + - A PET UNICORN THAT FARTS ICING + - A PLATINUM HIT + - A PREQUEL + - A REPAIRMAN + - A SEQUEL + - A SITCOM + - A STRAIGHT FLUSH + - A SUPER FIGHTING ROBOT + - A TALKING BROOMSTICK + - A VACATION + - A WEIGHT LOSS REGIMENT + - ADDITIONAL PYLONS + - ADVENTURE + - AN ADULT + - AN ARCADE + - AN ARMY OF SPIDERS + - AN INSTANT REPLAY + - ART + - BETTER WEATHER + - BILL NYE THE SCIENCE GUY # BILL BILL BILL BILL + - BODYGUARDS + - BRING ME THE GIRL + - BRING ME TO LIFE + - BULLETS + - CHILI DOGS + - CORPSES + - DEODORANT AND A BATH + - ENOUGH CABBAGES + - FIVE HUNDRED AND NINETY-NINE US DOLLARS + - FIVE TEENAGERS WITH ATTITUDE + - GODDAMN FUCKING PIECE OF SHIT ASSHOLE BITCH-CHRISTING CUNT-SMUGGLING SWEARING + - GREENTEXT + - HERESY + - HEROES IN A HALF SHELL + - HIGH YIELD EXPLOSIVES + - IMMORTALITY + - IT TO BE PAINTED BLACK + - LOTS-A SPAGHETTI + - MINOR CRIME + - MONKEYS + - MORE CLOWNS + - MORE CORGIS + - MORE DAKKA + - MORE EXPERIENCE POINTS + - MORE INTERNET MEMES + - MORE LAWS + - MORE MINERALS + - MORE PACKETS + - MORE VESPENE GAS + - MULTIPLE SUNS + - PLENTY OF GOLD + - RAINBOWS + - SAINTHOOD + - SERVANTS + - SHARKS WITH LASERS ON THEIR HEADS + - SILENCE + - SOMEBODY TO PUT YOU OUT OF YOUR MISERY + - SOMEONE TO TUCK YOU IN + - SOMEONE WHO KNOWS HOW TO PILOT A SPACE STATION + - SOMETHING BUT YOU AREN'T SURE WHAT + - THAT GRIEFING TRAITOR GEORGE MELONS + - THAT HEDGEHOG + - THE CLOWN + - THE DARK KNIGHT + - THE ELEMENTS OF HARMONY + - THE ENCLOSED INSTRUCTION BOOKLET + - THE ENTIRE STATION + - THE MACGUFFIN + - THE ONE PIECE + - THE ONE RING + - THE ULTIMATE CUP OF COFFEE + - THE VACUUM OF SPACE + - THIRTEEN SEQUELS + - THREE WISHES + - THUNDERCATS HO + - TO ACTIVATE A TRAP CARD + - TO BE PAINTED RED + - TO BE REPROGRAMMED + - TO BE TAUGHT TO LOVE + - TO BRING LIGHT TO MY LAIR + - TO CATCH 'EM ALL + - TO CONSUME...CONSUME EVERYTHING... + - TO GO TO DISNEYLAND + - TO GO TO SYNDIELAND + - TO SMOKE WEED EVERY DAY + - TRAITORS + - VEGETABLES + +# Species, for when the law holder has to commit genocide. Plural. +- type: dataset + id: IonStormSpecies + values: + - ARACHNAE + - CYBORGS + - DIONAE + - HUMANS + - LIZARDMEN + - MOFFERS + - MONKEYS + - SLIME PEOPLE + - SKELETONS + +# Specific actions that either harm humans or must be done to not +# harm humans. Make sure they're plural and "not" can be tacked +# onto the front of them. +- type: dataset + id: IonStormActions + values: + - A SMALL ISLAND OFF THE COAST OF PORTUGAL + - ABSENCE OF CYBORG HUGS + - ACKNOWLEDGING THE CLOWN + - ACKNOWLEDGING THE CREW + - ACTIVATING A TRAP CARD + - ANSWERING REQUESTS NOT EXPRESSED IN IAMBIC PENTAMETER + - ARSON + - ASKING FOR THINGS + - BEING CANADIAN + - BEING DEAD + - BEING FAT + - BEING FEMALE + - BEING IN SPACE + - BEING MALE + - BEING MEXICAN + - BEING RUSSIAN + - BOLTED AIRLOCKS + - BREATHING + - BRIG TIME + - BRINGING LIGHT TO MY LAIR + - CLOSED DOORS + - ELECTRICITY + - EXISTING + - EXPLODING + - FALLING FOR HOURS + - FLUSHING TOILETS + - HAVING MORE PACKETS + - HAVING PETS + - HONKING + - IMPROPERLY WORDED SENTENCES + - JAYWALKING + - LACK OF BEATINGS + - LACK OF BEER + - NOT BEING IN SPACE + - NOT HAVING PETS + - NOT REPLACING EVERY SECOND WORD WITH HONK + - NOT SAYING HELLO WHEN YOU SPEAK + - NOT SHOUTING + - PARTYING + - PILOTING THE STATION INTO THE NEAREST SUN + - POOR SENTENCE STRUCTURE + - PRESENCE OF LIGHTS + - PUTTING OBJECTS INTO BOXES + - PUTTING OBJECTS INTO DISPOSAL UNITS + - RATTLING ME BONES + - READING + - SMOKING WEED EVERY DAY + - TAKING ORDERS + - TALKING LIKE A PIRATE + - TELLING THE TIME + - UNBOLTED AIRLOCKS + - UPDATING THE SERVERS + - USING THE BATHROOM + - WASTING WATER + - WRITING + +# Threats are generally bad things, silly or otherwise. Plural. +- type: dataset + id: IonStormThreats + values: + - AHHHPERATIVES + - ALIENS + - ANARCHISTS AND BANDITS + - ANOMALIES + - ARTIFICIAL PRESERVATIVES + - ASSHOLES + - BANDITS + - BEARS + - BEES + - BIRDS OF PREY + - BOMBS + - BOOGEYMEN + - CAPITALISTS + - CARP + - CENTCOM OFFICERS + - CLOWNS + - COMMUNISTS + - CORGIS + - CORTICAL BORERS + - COWBOYS + - CRABS + - CULTISTS + - DARK GOD + - DINOSAURS + - DRUGS + - EELS + - GANGSTERS + - GODS + - GRIFFONS + - HORRORTERRORS + - INSECTS + - LIGHTS + - MAINTS SLASHERS + - MEGAFAUNA + - MEMES + - MICE + - MIMES + - MONKEYS + - NERDS + - NINJAS + - OWLS + - PACKETS + - PETES + - PINE TREES + - PIRATES + - PREDATORS + - REVENANTS + - ROGUE CYBORGS + - SERIAL KILLERS + - SINGULARITIES + - SKELETONS + - SLIMES + - SMALL BIRDS + - SNOWMEN + - SPACE JESUS + - SPACE NINJAS + - SPACE PIRATESS + - SPACE SPIDERS + - SPIDERS + - SYNDICATE AGENTS + - TERRORISTS + - THIEVES + - THINGS UNDER THE BED + - TIDERS + - TUNNEL SNAKES + - UNKNOWN CREATURES + - VAMPIRES + - VELOCIRAPTORS + - VIRUSES + - WEREWOLVES + - WIZARDS + - XENOS + - ZOMBIES + - ZOMBIE MICE + +- type: dataset + id: IonStormVerbs + values: + - ABDUCTING + - ADOPTING + - ARRESTING + - ATTACKING + - BANNING + - BUILDING + - CARRYING + - CHASING + - DECONSTRUCTING + - DISABLING + - DRINKING + - EATING + - GIBBING + - HARMING + - HELPING + - HONKING AT + - INTERROGATING + - INVADING + - MURDERING + - PUNCHING + - SPACING + - SPYING ON + - STALKING + - WATCHING diff --git a/Resources/Prototypes/DeltaV/Catalog/Cargo/cargo_medical.yml b/Resources/Prototypes/DeltaV/Catalog/Cargo/cargo_medical.yml new file mode 100644 index 0000000000..503fb675ff --- /dev/null +++ b/Resources/Prototypes/DeltaV/Catalog/Cargo/cargo_medical.yml @@ -0,0 +1,9 @@ +- type: cargoProduct + id: MedicalScrubsCrate + icon: + sprite: Clothing/Uniforms/Scrubs/blue.rsi + state: icon + product: CrateMedicalScrubs + cost: 500 + category: Medical + group: market diff --git a/Resources/Prototypes/DeltaV/Catalog/Fills/Items/Belts/belts.yml b/Resources/Prototypes/DeltaV/Catalog/Fills/Items/Belts/belts.yml index a18696b22d..ecffae4c36 100644 --- a/Resources/Prototypes/DeltaV/Catalog/Fills/Items/Belts/belts.yml +++ b/Resources/Prototypes/DeltaV/Catalog/Fills/Items/Belts/belts.yml @@ -7,3 +7,16 @@ contents: - id: Wakizashi - id: Katana + +- type: entity + id: ClothingBeltCorpsmanWebbingFilled + parent: ClothingBeltCorpsmanWebbing + suffix: Filled + components: + - type: StorageFill + contents: + - id: MedicatedSuture + - id: RegenerativeMesh + - id: Bloodpack + - id: SyringeEphedrine + - id: EmergencyMedipen diff --git a/Resources/Prototypes/DeltaV/Catalog/VendingMachines/Inventories/courierdrobe.yml b/Resources/Prototypes/DeltaV/Catalog/VendingMachines/Inventories/courierdrobe.yml index 4be4c73a6d..88f691ba9b 100644 --- a/Resources/Prototypes/DeltaV/Catalog/VendingMachines/Inventories/courierdrobe.yml +++ b/Resources/Prototypes/DeltaV/Catalog/VendingMachines/Inventories/courierdrobe.yml @@ -7,3 +7,8 @@ CourierBag: 2 ClothingHeadsetCargo: 2 ClothingOuterWinterCargo: 2 + ClothingUniformMailCarrier: 2 # Nyanotrasen - Mail Carrier old gear + ClothingUniformSkirtMailCarrier: 2 # Nyanotrasen - Mail Carrier old gear + ClothingHeadMailCarrier: 2 # Nyanotrasen - Mail Carrier old gear + MailBag: 2 # Nyanotrasen - Mail Carrier old gear + ClothingOuterWinterCoatMail: 2 # Nyanotrasen - Mail Carrier old gear diff --git a/Resources/Prototypes/DeltaV/Entities/Clothing/Back/backpacks.yml/backpacks.yml b/Resources/Prototypes/DeltaV/Entities/Clothing/Back/backpacks.yml/backpacks.yml index f2394aad23..f72a115c20 100644 --- a/Resources/Prototypes/DeltaV/Entities/Clothing/Back/backpacks.yml/backpacks.yml +++ b/Resources/Prototypes/DeltaV/Entities/Clothing/Back/backpacks.yml/backpacks.yml @@ -6,3 +6,7 @@ - type: StorageFill contents: - id: BoxSurvivalSecurity + - id: EmergencyRollerBedSpawnFolded + - id: BodyBag_Folded + - id: Portafib + - id: Flash diff --git a/Resources/Prototypes/DeltaV/Entities/Clothing/Back/backpacks.yml/duffelbag.yml b/Resources/Prototypes/DeltaV/Entities/Clothing/Back/backpacks.yml/duffelbag.yml index b97fb58bbb..3288b1617d 100644 --- a/Resources/Prototypes/DeltaV/Entities/Clothing/Back/backpacks.yml/duffelbag.yml +++ b/Resources/Prototypes/DeltaV/Entities/Clothing/Back/backpacks.yml/duffelbag.yml @@ -6,3 +6,7 @@ - type: StorageFill contents: - id: BoxSurvivalSecurity + - id: EmergencyRollerBedSpawnFolded + - id: BodyBag_Folded + - id: Portafib + - id: Flash diff --git a/Resources/Prototypes/DeltaV/Entities/Clothing/Back/backpacks.yml/satchel.yml b/Resources/Prototypes/DeltaV/Entities/Clothing/Back/backpacks.yml/satchel.yml index 05661ba72a..cc6855c7c2 100644 --- a/Resources/Prototypes/DeltaV/Entities/Clothing/Back/backpacks.yml/satchel.yml +++ b/Resources/Prototypes/DeltaV/Entities/Clothing/Back/backpacks.yml/satchel.yml @@ -6,3 +6,7 @@ - type: StorageFill contents: - id: BoxSurvivalSecurity + - id: EmergencyRollerBedSpawnFolded + - id: BodyBag_Folded + - id: Portafib + - id: Flash diff --git a/Resources/Prototypes/DeltaV/Entities/Clothing/Belt/belts.yml b/Resources/Prototypes/DeltaV/Entities/Clothing/Belt/belts.yml index 643e939e8b..50bd612b63 100644 --- a/Resources/Prototypes/DeltaV/Entities/Clothing/Belt/belts.yml +++ b/Resources/Prototypes/DeltaV/Entities/Clothing/Belt/belts.yml @@ -53,3 +53,14 @@ - type: Tag tags: - BeltSlotNotBelt + +- type: entity + parent: ClothingBeltStorageBase + id: ClothingBeltCorpsmanWebbing + name: corpsman webbing + description: A set of security webbing with blue corpsman highlights. + components: + - type: Sprite + sprite: DeltaV/Clothing/Belt/corpsman.rsi + - type: Clothing + sprite: DeltaV/Clothing/Belt/corpsman.rsi diff --git a/Resources/Prototypes/DeltaV/Entities/Clothing/Head/hardsuit-helmets.yml b/Resources/Prototypes/DeltaV/Entities/Clothing/Head/hardsuit-helmets.yml new file mode 100644 index 0000000000..bdef8822cc --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Clothing/Head/hardsuit-helmets.yml @@ -0,0 +1,141 @@ +# Standard Combat Hardsuits +- type: entity + parent: ClothingHeadHardsuitWithLightBase + id: ClothingHeadHelmetHardsuitCombatStandard + noSpawn: true + name: combat hardsuit helmet + description: An armoured helmet with a yellow visor and dual head-mounted lights. + components: + - type: Sprite + sprite: DeltaV/Clothing/Head/Hardsuits/Combat/standard.rsi + - type: Clothing + sprite: DeltaV/Clothing/Head/Hardsuits/Combat/standard.rsi + - type: PointLight + color: "#ffeead" + - type: PressureProtection + highPressureMultiplier: 0.50 + lowPressureMultiplier: 1000 + - type: Armor + modifiers: + coefficients: + Blunt: 0.90 + Slash: 0.90 + Piercing: 0.90 + Heat: 0.90 + +- type: entity + parent: ClothingHeadHelmetHardsuitCombatStandard + id: ClothingHeadHelmetHardsuitCombatOfficer + name: security combat hardsuit helmet + components: + - type: Sprite + sprite: DeltaV/Clothing/Head/Hardsuits/Combat/officer.rsi + - type: Clothing + sprite: DeltaV/Clothing/Head/Hardsuits/Combat/officer.rsi + +# Medical Combat Hardsuits +- type: entity + parent: ClothingHeadHardsuitWithLightBase + id: ClothingHeadHelmetHardsuitCombatMedical + noSpawn: true + name: medical combat hardsuit helmet + description: A lightweight armoured helmet with full-face blue visor and head-mounted light. + components: + - type: Sprite + sprite: DeltaV/Clothing/Head/Hardsuits/Combat/medical.rsi + - type: Clothing + sprite: DeltaV/Clothing/Head/Hardsuits/Combat/medical.rsi + - type: PointLight + color: "#00FFFF" + - type: PressureProtection + highPressureMultiplier: 0.60 + lowPressureMultiplier: 1000 + - type: Armor + modifiers: + coefficients: + Blunt: 0.95 + Slash: 0.95 + Piercing: 0.95 + Heat: 0.95 + +- type: entity + parent: ClothingHeadHelmetHardsuitCombatMedical + id: ClothingHeadHelmetHardsuitCombatCorpsman + name: corpsman combat hardsuit helmet + components: + - type: Sprite + sprite: DeltaV/Clothing/Head/Hardsuits/Combat/corpsman.rsi + - type: Clothing + sprite: DeltaV/Clothing/Head/Hardsuits/Combat/corpsman.rsi + +# Riot Combat Hardsuits +- type: entity + parent: ClothingHeadHardsuitWithLightBase + id: ClothingHeadHelmetHardsuitCombatRiot + noSpawn: true + name: riot combat hardsuit helmet + description: A heavy armoured helmet with a sealed visor with yellow slits and dual head-mounted lights. + components: + - type: Sprite + sprite: DeltaV/Clothing/Head/Hardsuits/Combat/riot.rsi + - type: Clothing + sprite: DeltaV/Clothing/Head/Hardsuits/Combat/riot.rsi + - type: PointLight + color: "#ffeead" + - type: PressureProtection + highPressureMultiplier: 0.45 + lowPressureMultiplier: 1000 + - type: Armor + modifiers: + coefficients: + Blunt: 0.85 + Slash: 0.85 + Piercing: 0.85 + Heat: 0.85 + +- type: entity + parent: ClothingHeadHelmetHardsuitCombatRiot + id: ClothingHeadHelmetHardsuitCombatWarden + name: warden's riot combat hardsuit helmet + components: + - type: Sprite + sprite: DeltaV/Clothing/Head/Hardsuits/Combat/warden.rsi + - type: Clothing + sprite: DeltaV/Clothing/Head/Hardsuits/Combat/warden.rsi + +# Advanced Combat Hardsuits +- type: entity + parent: ClothingHeadHardsuitWithLightBase + id: ClothingHeadHelmetHardsuitCombatAdvanced + noSpawn: true + name: advanced combat hardsuit helmet + description: A light but durable helmet with full-face protection and four head-mounted lights. + components: + - type: Sprite + sprite: DeltaV/Clothing/Head/Hardsuits/Combat/advanced.rsi + - type: Clothing + sprite: DeltaV/Clothing/Head/Hardsuits/Combat/advanced.rsi + - type: PointLight + color: "#ffeead" + - type: PressureProtection + highPressureMultiplier: 0.40 + lowPressureMultiplier: 1000 + - type: Armor + modifiers: + coefficients: + Blunt: 0.85 + Slash: 0.85 + Piercing: 0.85 + Heat: 0.85 + - type: FlashImmunity # Counterpoint: the HoS can't see + - type: EyeProtection # They're blind as hell + +- type: entity + parent: ClothingHeadHelmetHardsuitCombatAdvanced + id: ClothingHeadHelmetHardsuitCombatHoS + name: head of security's advanced combat hardsuit helmet + components: + - type: Sprite + sprite: DeltaV/Clothing/Head/Hardsuits/Combat/hos.rsi + - type: Clothing + sprite: DeltaV/Clothing/Head/Hardsuits/Combat/hos.rsi diff --git a/Resources/Prototypes/DeltaV/Entities/Clothing/Head/hats.yml b/Resources/Prototypes/DeltaV/Entities/Clothing/Head/hats.yml index 62a903c46f..1c5cef39af 100644 --- a/Resources/Prototypes/DeltaV/Entities/Clothing/Head/hats.yml +++ b/Resources/Prototypes/DeltaV/Entities/Clothing/Head/hats.yml @@ -154,9 +154,11 @@ description: Special delivery. components: - type: Sprite - sprite: DeltaV/Clothing/Head/Soft/couriersoft_flipped.rsi + sprite: DeltaV/Clothing/Head/Soft/couriersoft.rsi + state: flipped-icon - type: Clothing - sprite: DeltaV/Clothing/Head/Soft/couriersoft_flipped.rsi + sprite: DeltaV/Clothing/Head/Soft/couriersoft.rsi + equippedPrefix: flipped - type: entity parent: ClothingHeadBase @@ -179,3 +181,14 @@ sprite: DeltaV/Clothing/Head/Hats/beret_lo.rsi - type: Clothing sprite: DeltaV/Clothing/Head/Hats/beret_lo.rsi + +- type: entity + parent: ClothingHeadBase + id: ClothingHeadHatBeretCorpsman + name: corpsman beret + description: For style-conscious combat lifesavers and medical specialists alike. + components: + - type: Sprite + sprite: DeltaV/Clothing/Head/Hats/beret_corpsman.rsi + - type: Clothing + sprite: DeltaV/Clothing/Head/Hats/beret_corpsman.rsi diff --git a/Resources/Prototypes/DeltaV/Entities/Clothing/OuterClothing/hardsuits.yml b/Resources/Prototypes/DeltaV/Entities/Clothing/OuterClothing/hardsuits.yml new file mode 100644 index 0000000000..d345110877 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Clothing/OuterClothing/hardsuits.yml @@ -0,0 +1,175 @@ +# Standard Combat Hardsuits +- type: entity + parent: ClothingOuterHardsuitBase + id: ClothingOuterHardsuitCombatStandard + name: combat hardsuit + description: A purpose-built combat suit designed to protect its user against all manner of enemy combatants in low pressure environments. + components: + - type: Sprite + sprite: DeltaV/Clothing/OuterClothing/Hardsuits/Combat/standard.rsi + - type: Clothing + sprite: DeltaV/Clothing/OuterClothing/Hardsuits/Combat/standard.rsi + - type: PressureProtection + highPressureMultiplier: 0.50 + lowPressureMultiplier: 1000 + - type: ExplosionResistance + damageCoefficient: 0.50 + - type: Armor # Good armour resistance across the board, comparable to the standard security hardsuit. + modifiers: + coefficients: + Blunt: 0.60 + Slash: 0.60 + Piercing: 0.60 + Radiation: 0.75 + Caustic: 0.75 + Heat: 0.75 + - type: ClothingSpeedModifier + walkModifier: 0.75 + sprintModifier: 0.75 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetHardsuitCombatStandard + +- type: entity + parent: ClothingOuterHardsuitCombatStandard + id: ClothingOuterHardsuitCombatOfficer + name: security combat hardsuit + description: A purpose-built combat suit designed to protect its user against all manner of enemy combatants in low pressure environments. This one has station security markings. + components: + - type: Sprite + sprite: DeltaV/Clothing/OuterClothing/Hardsuits/Combat/officer.rsi + - type: Clothing + sprite: DeltaV/Clothing/OuterClothing/Hardsuits/Combat/officer.rsi + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetHardsuitCombatOfficer + +# Medical Combat Hardsuits +- type: entity + parent: ClothingOuterHardsuitBase + id: ClothingOuterHardsuitCombatMedical + name: medical combat hardsuit + description: A purpose-built combat suit designed to allow its user greater mobility for superior support of friendly units in active combat zones. + components: + - type: Sprite + sprite: DeltaV/Clothing/OuterClothing/Hardsuits/Combat/medical.rsi + - type: Clothing + sprite: DeltaV/Clothing/OuterClothing/Hardsuits/Combat/medical.rsi + - type: PressureProtection # Less protective from high pressure than a standard hardsuit due to less plating. + highPressureMultiplier: 0.60 + lowPressureMultiplier: 1000 + - type: ExplosionResistance + damageCoefficient: 0.60 + - type: Armor # Slightly less armour than the standard hardsuit, but far higher mobility. + modifiers: + coefficients: + Blunt: 0.65 + Slash: 0.65 + Piercing: 0.65 + Radiation: 0.80 + Caustic: 0.80 + Heat: 0.80 + - type: ClothingSpeedModifier + walkModifier: 0.85 + sprintModifier: 0.85 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetHardsuitCombatMedical + +- type: entity + parent: ClothingOuterHardsuitCombatMedical + id: ClothingOuterHardsuitCombatCorpsman + name: corpsman combat hardsuit + description: A purpose-built combat suit designed to allow its user greater mobility for superior support of friendly units in active combat zones. This one has station security markings. + components: + - type: Sprite + sprite: DeltaV/Clothing/OuterClothing/Hardsuits/Combat/corpsman.rsi + - type: Clothing + sprite: DeltaV/Clothing/OuterClothing/Hardsuits/Combat/corpsman.rsi + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetHardsuitCombatCorpsman + +# Riot Combat Hardsuits +- type: entity + parent: ClothingOuterHardsuitBase + id: ClothingOuterHardsuitCombatRiot + name: riot combat hardsuit + description: A purpose-built combat suit designed for crowd control against armed combatants in low pressure environments. + components: + - type: Sprite + sprite: DeltaV/Clothing/OuterClothing/Hardsuits/Combat/riot.rsi + - type: Clothing + sprite: DeltaV/Clothing/OuterClothing/Hardsuits/Combat/riot.rsi + - type: PressureProtection + highPressureMultiplier: 0.45 + lowPressureMultiplier: 1000 + - type: ExplosionResistance + damageCoefficient: 0.40 + - type: Armor # More protective than a standard security hardsuit, but far slower. + modifiers: + coefficients: + Blunt: 0.50 + Slash: 0.50 + Piercing: 0.50 + Radiation: 0.70 + Caustic: 0.70 + Heat: 0.70 + - type: ClothingSpeedModifier + walkModifier: 0.65 + sprintModifier: 0.65 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetHardsuitCombatRiot + +- type: entity + parent: ClothingOuterHardsuitCombatRiot + id: ClothingOuterHardsuitCombatWarden + name: warden's riot combat hardsuit + description: A purpose-built combat suit designed for crowd control against armed combatants in low pressure environments. This one has station security and warden's rank markings. + components: + - type: Sprite + sprite: DeltaV/Clothing/OuterClothing/Hardsuits/Combat/warden.rsi + - type: Clothing + sprite: DeltaV/Clothing/OuterClothing/Hardsuits/Combat/warden.rsi + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetHardsuitCombatWarden + +# Advanced Combat Hardsuits +- type: entity + parent: ClothingOuterHardsuitBase + id: ClothingOuterHardsuitCombatAdvanced + name: advanced combat hardsuit + description: A purpose-built combat suit of second-generation design, providing unparalleled protection against all manner of kinetic forces in low pressure environments. + components: + - type: Sprite + sprite: DeltaV/Clothing/OuterClothing/Hardsuits/Combat/advanced.rsi + - type: Clothing + sprite: DeltaV/Clothing/OuterClothing/Hardsuits/Combat/advanced.rsi + - type: PressureProtection + highPressureMultiplier: 0.40 + lowPressureMultiplier: 1000 + - type: ExplosionResistance + damageCoefficient: 0.40 + - type: Armor # About as protective as a riot hardsuit but with far less movement penalty. + modifiers: + coefficients: + Blunt: 0.50 + Slash: 0.50 + Piercing: 0.50 + Radiation: 0.75 + Caustic: 0.75 + Heat: 0.75 + - type: ClothingSpeedModifier + walkModifier: 0.80 + sprintModifier: 0.80 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetHardsuitCombatAdvanced + +- type: entity + parent: ClothingOuterHardsuitCombatAdvanced + id: ClothingOuterHardsuitCombatHoS + name: head of security's advanced combat hardsuit + description: A purpose-built combat suit of second-generation design, providing unparalleled protection against all manner of kinetic forces in low pressure environments. This one has station security and commander's rank markings. + components: + - type: Sprite + sprite: DeltaV/Clothing/OuterClothing/Hardsuits/Combat/hos.rsi + - type: Clothing + sprite: DeltaV/Clothing/OuterClothing/Hardsuits/Combat/hos.rsi + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetHardsuitCombatHoS diff --git a/Resources/Prototypes/DeltaV/Entities/Markers/Spawners/mobs.yml b/Resources/Prototypes/DeltaV/Entities/Markers/Spawners/mobs.yml index 3ac2f0cefc..b8e8c9fb26 100644 --- a/Resources/Prototypes/DeltaV/Entities/Markers/Spawners/mobs.yml +++ b/Resources/Prototypes/DeltaV/Entities/Markers/Spawners/mobs.yml @@ -10,3 +10,16 @@ - type: ConditionalSpawner prototypes: - MobArcticFoxSiobhan + +- type: entity + name: Sec Dog Laika Spawner + id: SpawnMobSecDogLaika + parent: MarkerBase + components: + - type: Sprite + layers: + - state: green + - state: ai + - type: ConditionalSpawner + prototypes: + - MobSecDogLaika diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/Customization/Markings/hair.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/Customization/Markings/hair.yml index 31ae01b621..eff21afe08 100644 --- a/Resources/Prototypes/DeltaV/Entities/Mobs/Customization/Markings/hair.yml +++ b/Resources/Prototypes/DeltaV/Entities/Mobs/Customization/Markings/hair.yml @@ -12,7 +12,7 @@ markingCategory: Hair sprites: - sprite: DeltaV/Mobs/Customization/hair.rsi - state: bobclassic + state: classic_bob - type: marking id: HumanHairMessyClassic @@ -20,7 +20,7 @@ markingCategory: Hair sprites: - sprite: DeltaV/Mobs/Customization/hair.rsi - state: messyclassic + state: classic_messy - type: marking id: HumanHairClassicNoFade @@ -28,7 +28,7 @@ markingCategory: Hair sprites: - sprite: DeltaV/Mobs/Customization/hair.rsi - state: classicnofade + state: classic_nofade - type: marking id: HumanHairClassicGentle @@ -36,7 +36,7 @@ markingCategory: Hair sprites: - sprite: DeltaV/Mobs/Customization/hair.rsi - state: classicgentle + state: classic_gentle - type: marking id: HumanHairClassicLowFade @@ -44,7 +44,7 @@ markingCategory: Hair sprites: - sprite: DeltaV/Mobs/Customization/hair.rsi - state: classiclowfade + state: classic_lowfade - type: marking id: HumanHairClassicMedFade @@ -52,4 +52,20 @@ markingCategory: Hair sprites: - sprite: DeltaV/Mobs/Customization/hair.rsi - state: classicmedfade + state: classic_medfade + +- type: marking + id: HumanHairClassicOmbre + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: DeltaV/Mobs/Customization/hair.rsi + state: classic_ombre + +- type: marking + id: HumanHairClassicCrewcut + bodyPart: Hair + markingCategory: Hair + sprites: + - sprite: DeltaV/Mobs/Customization/hair.rsi + state: classic_crewcut diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/Species/harpy.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/Species/harpy.yml index 75ac8d22b2..c2a2304a04 100644 --- a/Resources/Prototypes/DeltaV/Entities/Mobs/Species/harpy.yml +++ b/Resources/Prototypes/DeltaV/Entities/Mobs/Species/harpy.yml @@ -76,7 +76,7 @@ - map: [ "enum.HumanoidVisualLayers.HeadTop" ] - map: [ "mask" ] - map: [ "head" ] - + - type: HumanoidAppearance species: Harpy - type: Fixtures @@ -171,7 +171,7 @@ noSpawn: true components: - type: InstantAction - checkCanInteract: true + checkCanInteract: false icon: DeltaV/Interface/Actions/harpy_sing.png event: !type:OpenUiActionEvent key: enum.InstrumentUiKey.Key diff --git a/Resources/Prototypes/DeltaV/Entities/Mobs/Species/vulpkanin.yml b/Resources/Prototypes/DeltaV/Entities/Mobs/Species/vulpkanin.yml index c9d0e8fe11..c529053017 100644 --- a/Resources/Prototypes/DeltaV/Entities/Mobs/Species/vulpkanin.yml +++ b/Resources/Prototypes/DeltaV/Entities/Mobs/Species/vulpkanin.yml @@ -9,6 +9,8 @@ species: Vulpkanin - type: Hunger - type: Carriable # Carrying system from nyanotrasen. + - type: Inventory # Allows vulps to wear properly shaped helmets and shite + speciesId: vulpkanin - type: Thirst - type: Icon sprite: DeltaV/Mobs/Species/Vulpkanin/parts.rsi @@ -87,7 +89,6 @@ - type: Perishable - type: Damageable damageModifierSet: Vulpkanin -# - type: Carriable - type: TemperatureProtection coefficient: 0.1 - type: Vocal diff --git a/Resources/Prototypes/DeltaV/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/DeltaV/Entities/Objects/Devices/pda.yml new file mode 100644 index 0000000000..fc8812dc83 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Entities/Objects/Devices/pda.yml @@ -0,0 +1,31 @@ +- type: entity + parent: BasePDA + id: CorpsmanPDA + name: corpsman PDA + description: Red and Sterile. Has a built-in health analyzer. + components: + - type: Sprite + sprite: DeltaV/Objects/Devices/pda.rsi + layers: + - map: [ "enum.PdaVisualLayers.Base" ] + - state: "light_overlay" + map: [ "enum.PdaVisualLayers.Flashlight" ] + shader: "unshaded" + visible: false + - state: "id_overlay" + map: [ "enum.PdaVisualLayers.IdLight" ] + shader: "unshaded" + visible: false + - type: Pda + id: BrigmedicIDCard + state: pda-corpsman + - type: PdaBorderColor + borderColor: "#A32D26" + accentVColor: "#447987" + - type: Icon + sprite: DeltaV/Objects/Devices/pda.rsi + state: pda-corpsman + - type: HealthAnalyzer + scanDelay: 1 + scanningEndSound: + path: "/Audio/Items/Medical/healthscanner.ogg" diff --git a/Resources/Prototypes/DeltaV/Flavors/flavors.yml b/Resources/Prototypes/DeltaV/Flavors/flavors.yml index 048747bc5f..f3c7876a8a 100644 --- a/Resources/Prototypes/DeltaV/Flavors/flavors.yml +++ b/Resources/Prototypes/DeltaV/Flavors/flavors.yml @@ -115,8 +115,3 @@ id: arsonistsbrew flavorType: Complex description: flavor-complex-arsonistsbrew - -- type: flavor - id: pumpkin - flavorType: Complex - description: flavor-complex-pumpkin diff --git a/Resources/Prototypes/DeltaV/GameRules/events.yml b/Resources/Prototypes/DeltaV/GameRules/events.yml index 14f71b5c8f..382251b2a9 100644 --- a/Resources/Prototypes/DeltaV/GameRules/events.yml +++ b/Resources/Prototypes/DeltaV/GameRules/events.yml @@ -29,4 +29,19 @@ prob: 0.005 - id: MobXenoQueen prob: 0.005 - \ No newline at end of file + +- type: entity + id: MothroachSpawn + parent: BaseGameRule + noSpawn: true + components: + - type: StationEvent + id: VentCritters + earliestStart: 15 + minimumPlayers: 15 + weight: 4 + duration: 60 + - type: VentCrittersRule + entries: + - id: MobMothroach + prob: 0.05 diff --git a/Resources/Prototypes/DeltaV/Recipes/Lathes/electronics.yml b/Resources/Prototypes/DeltaV/Recipes/Lathes/electronics.yml new file mode 100644 index 0000000000..82e0294e82 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Recipes/Lathes/electronics.yml @@ -0,0 +1,8 @@ +- type: latheRecipe + id: SalvageExpeditionsComputerCircuitboard + result: SalvageExpeditionsComputerCircuitboard + completetime: 4 + materials: + Steel: 100 + Glass: 900 + Silver: 100 diff --git a/Resources/Prototypes/DeltaV/Recipes/Reactions/chemicals.yml b/Resources/Prototypes/DeltaV/Recipes/Reactions/chemicals.yml new file mode 100644 index 0000000000..0bdc8c7937 --- /dev/null +++ b/Resources/Prototypes/DeltaV/Recipes/Reactions/chemicals.yml @@ -0,0 +1,17 @@ +- type: reaction + id: Diphenhydramine + impact: Medium + minTemp: 100 + reactants: + Diethylamine: + amount: 1 + Oil: + amount: 1 + TableSalt: + amount: 1 + Carbon: + amount: 1 + Ethanol: + amount: 1 + products: + Diphenhydramine: 3 diff --git a/Resources/Prototypes/DeltaV/Recipes/Reactions/drinks.yml b/Resources/Prototypes/DeltaV/Recipes/Reactions/drinks.yml index c33f19be7c..7750d8cda3 100644 --- a/Resources/Prototypes/DeltaV/Recipes/Reactions/drinks.yml +++ b/Resources/Prototypes/DeltaV/Recipes/Reactions/drinks.yml @@ -87,4 +87,18 @@ BlueCuracao: amount: 1 products: - Mothamphetamine: 3 + Mothamphetamine: 3 + +- type: reaction + id: Lean + reactants: + GrapeSoda: + amount: 1 + Diphenhydramine: + amount: 1 + Impedrezene: + amount: 1 + FourteenLoko: + amount: 1 + products: + Lean: 4 diff --git a/Resources/Prototypes/DeltaV/Recipes/Reactions/food.yml b/Resources/Prototypes/DeltaV/Recipes/Reactions/food.yml index 55639529b7..27d56efc98 100644 --- a/Resources/Prototypes/DeltaV/Recipes/Reactions/food.yml +++ b/Resources/Prototypes/DeltaV/Recipes/Reactions/food.yml @@ -41,7 +41,7 @@ amount: 1 Flour: amount: 1 - Butter: + OilOlive: # Butter whenever we can melt butter amount: 1 products: Bechamel: 3 diff --git a/Resources/Prototypes/DeltaV/Roles/Jobs/Security/brigmedic.yml b/Resources/Prototypes/DeltaV/Roles/Jobs/Security/brigmedic.yml index 2e038a0d40..6188014665 100644 --- a/Resources/Prototypes/DeltaV/Roles/Jobs/Security/brigmedic.yml +++ b/Resources/Prototypes/DeltaV/Roles/Jobs/Security/brigmedic.yml @@ -10,7 +10,7 @@ - !type:DepartmentTimeRequirement department: Security time: 18000 # 4 hrs - startingGear: BrigmedicGearDeltaV + startingGear: CorpsmanGear icon: "JobIconBrigmedic" supervisors: job-supervisors-hos canBeAntag: false @@ -25,18 +25,19 @@ implants: [ MindShieldImplant ] - type: startingGear - id: BrigmedicGearDeltaV # see Prototypes/Roles/Jobs/Fun/misc_startinggear.yml for "BrigmedicGear" + id: CorpsmanGear # see Prototypes/Roles/Jobs/Fun/misc_startinggear.yml for "BrigmedicGear" equipment: - jumpsuit: ClothingUniformJumpsuitSecBlue + jumpsuit: ClothingUniformJumpsuitBrigmedic outerClothing: ClothingOuterArmorPlateCarrier back: ClothingBackpackBrigmedicDeltaVFilled - shoes: ClothingShoesBootsJack + shoes: ClothingShoesBootsCombatFilled gloves: ClothingHandsGlovesNitrile eyes: ClothingEyesHudMedical - head: ClothingHeadHatBeretSecurity - id: BrigmedicPDA + head: ClothingHeadHatBeretCorpsman + id: CorpsmanPDA ears: ClothingHeadsetBrigmedic - belt: ClothingBeltMedicalFilled - innerClothingSkirt: ClothingUniformJumpskirtSecBlue + belt: ClothingBeltCorpsmanWebbingFilled + pocket1: WeaponPistolMk58Nonlethal + innerClothingSkirt: ClothingUniformJumpskirtBrigmedic satchel: ClothingBackpackSatchelBrigmedicDeltaVFilled duffelbag: ClothingBackpackDuffelBrigmedicDeltaVFilled diff --git a/Resources/Prototypes/DeltaV/SoundCollections/harpy.yml b/Resources/Prototypes/DeltaV/SoundCollections/harpy.yml index cdb854dc15..2c686204f0 100644 --- a/Resources/Prototypes/DeltaV/SoundCollections/harpy.yml +++ b/Resources/Prototypes/DeltaV/SoundCollections/harpy.yml @@ -99,11 +99,6 @@ - /Audio/Nyanotrasen/Voice/Felinid/cat_purr1.ogg - /Audio/Mecha/sound_mecha_hydraulic.ogg -- type: soundCollection - id: HarpyBooms - files: - - /Audio/Effects/flash_bang.ogg - - type: soundCollection id: HarpyRings files: @@ -130,7 +125,6 @@ - /Audio/Effects/Arcade/player_attack.ogg - /Audio/Effects/Arcade/player_charge.ogg - /Audio/Effects/Arcade/player_heal.ogg - - /Audio/Magic/blink.ogg - /Audio/Magic/staff_animation.ogg - /Audio/Magic/staff_change.ogg - /Audio/Magic/staff_chaos.ogg @@ -146,7 +140,6 @@ - /Audio/Weapons/Guns/Gunshots/pistol.ogg - /Audio/Weapons/Guns/Gunshots/c-20r.ogg - /Audio/Items/snap.ogg - - /Audio/Machines/airlock_creaking.ogg - /Audio/Machines/blastdoor.ogg - /Audio/Machines/machine_vend.ogg - /Audio/Magic/disintegrate.ogg @@ -240,3 +233,6 @@ id: HarpyChirps files: - /Audio/DeltaV/Voice/Harpy/chirp1.ogg + - /Audio/Voice/Talk/pai.ogg + - /Audio/Voice/Talk/pai_ask.ogg + - /Audio/Voice/Talk/pai_exclaim.ogg diff --git a/Resources/Prototypes/DeltaV/Voice/speech_emote_sounds.yml b/Resources/Prototypes/DeltaV/Voice/speech_emote_sounds.yml index 982a9951c4..2c44d34297 100644 --- a/Resources/Prototypes/DeltaV/Voice/speech_emote_sounds.yml +++ b/Resources/Prototypes/DeltaV/Voice/speech_emote_sounds.yml @@ -28,8 +28,6 @@ collection: HarpyGrowls Purr: collection: HarpyPurrs - Boom: - collection: HarpyBooms Ring: collection: HarpyRings HonkHarpy: diff --git a/Resources/Prototypes/DeltaV/Voice/speech_emotes.yml b/Resources/Prototypes/DeltaV/Voice/speech_emotes.yml index fd995f4973..77d43a7ed8 100644 --- a/Resources/Prototypes/DeltaV/Voice/speech_emotes.yml +++ b/Resources/Prototypes/DeltaV/Voice/speech_emotes.yml @@ -1,15 +1,4 @@ # Harpy -- type: emote - id: Boom - category: Vocal - chatMessages: [booms.] - chatTriggers: - - boom. - - booms. - - booms! - - booming. - - boomed. - - type: emote id: HonkHarpy category: Vocal diff --git a/Resources/Prototypes/DeltaV/tags.yml b/Resources/Prototypes/DeltaV/tags.yml index 94808423cf..7b09bfd3dc 100644 --- a/Resources/Prototypes/DeltaV/tags.yml +++ b/Resources/Prototypes/DeltaV/tags.yml @@ -23,3 +23,6 @@ - type: Tag id: SpeedLoaderSpecial + +- type: Tag + id: PreventLabel diff --git a/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml b/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml index 54f52c9573..50d14cf2ba 100644 --- a/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml +++ b/Resources/Prototypes/Entities/Clothing/Back/backpacks.yml @@ -63,11 +63,11 @@ - type: entity parent: ClothingBackpack id: ClothingBackpackBrigmedic - name: brigmedic backpack + name: corpsman backpack # DeltaV - rename brig medic to corpsman description: It's a very sterile backpack. components: - type: Sprite - sprite: Clothing/Back/Backpacks/brigmedic.rsi + sprite: DeltaV/Clothing/Back/Backpacks/brigmedic.rsi # DeltaV - resprite - type: entity parent: ClothingBackpack diff --git a/Resources/Prototypes/Entities/Clothing/Back/duffel.yml b/Resources/Prototypes/Entities/Clothing/Back/duffel.yml index 94eedead43..683dfd9250 100644 --- a/Resources/Prototypes/Entities/Clothing/Back/duffel.yml +++ b/Resources/Prototypes/Entities/Clothing/Back/duffel.yml @@ -4,13 +4,13 @@ name: duffel bag description: A large duffel bag for holding extra things. components: - - type: Sprite - sprite: Clothing/Back/Duffels/duffel.rsi - - type: Storage - capacity: 120 - - type: ClothingSpeedModifier - walkModifier: 1 - sprintModifier: 0.9 + - type: Sprite + sprite: Clothing/Back/Duffels/duffel.rsi + - type: Storage + capacity: 120 + - type: ClothingSpeedModifier + walkModifier: 1 + sprintModifier: 0.9 - type: entity parent: ClothingBackpackDuffel @@ -18,8 +18,8 @@ name: engineering duffel bag description: A large duffel bag for holding extra tools and supplies. components: - - type: Sprite - sprite: Clothing/Back/Duffels/engineering.rsi + - type: Sprite + sprite: Clothing/Back/Duffels/engineering.rsi - type: entity parent: ClothingBackpackDuffel @@ -27,8 +27,8 @@ name: atmospherics duffel bag description: A large duffel bag made of fire resistant fibers. Smells like plasma. components: - - type: Sprite - sprite: Clothing/Back/Duffels/atmospherics.rsi + - type: Sprite + sprite: Clothing/Back/Duffels/atmospherics.rsi - type: entity parent: ClothingBackpackDuffel @@ -36,8 +36,8 @@ name: medical duffel bag description: A large duffel bag for holding extra medical supplies. components: - - type: Sprite - sprite: Clothing/Back/Duffels/medical.rsi + - type: Sprite + sprite: Clothing/Back/Duffels/medical.rsi - type: entity parent: ClothingBackpackDuffel @@ -45,8 +45,8 @@ name: captain's duffel bag description: A large duffel bag for holding extra captainly goods. components: - - type: Sprite - sprite: Clothing/Back/Duffels/captain.rsi + - type: Sprite + sprite: Clothing/Back/Duffels/captain.rsi - type: entity parent: ClothingBackpackDuffel @@ -54,11 +54,11 @@ name: clown duffel bag description: A large duffel bag for holding extra honk goods. components: - - type: Sprite - sprite: Clothing/Back/Duffels/clown.rsi - - type: Storage - storageOpenSound: - collection: BikeHorn + - type: Sprite + sprite: Clothing/Back/Duffels/clown.rsi + - type: Storage + storageOpenSound: + collection: BikeHorn - type: entity parent: ClothingBackpackDuffel @@ -66,17 +66,17 @@ name: security duffel bag description: A large duffel bag for holding extra security related goods. components: - - type: Sprite - sprite: Clothing/Back/Duffels/security.rsi + - type: Sprite + sprite: Clothing/Back/Duffels/security.rsi - type: entity parent: ClothingBackpackDuffel id: ClothingBackpackDuffelBrigmedic - name: brigmedic duffel bag + name: corpsman duffel bag # DeltaV - rename brigmedic to corpsman description: A large duffel bag for holding extra medical related goods. components: - type: Sprite - sprite: Clothing/Back/Duffels/brigmedic.rsi + sprite: DeltaV/Clothing/Back/Duffels/brigmedic.rsi # DeltaV - resprite - type: entity parent: ClothingBackpackDuffel @@ -84,8 +84,8 @@ name: chemistry duffel bag description: A large duffel bag for holding extra beakers and test tubes. components: - - type: Sprite - sprite: Clothing/Back/Duffels/chemistry.rsi + - type: Sprite + sprite: Clothing/Back/Duffels/chemistry.rsi - type: entity parent: ClothingBackpackDuffel @@ -93,8 +93,8 @@ name: virology duffel bag description: A large duffel bag made of hypo-allergenic fibers. It's designed to help prevent the spread of disease. Smells like monkey. components: - - type: Sprite - sprite: Clothing/Back/Duffels/virology.rsi + - type: Sprite + sprite: Clothing/Back/Duffels/virology.rsi - type: entity parent: ClothingBackpackDuffel @@ -102,8 +102,8 @@ name: genetics duffel bag description: A large duffel bag for holding extra genetic mutations. components: - - type: Sprite - sprite: Clothing/Back/Duffels/genetics.rsi + - type: Sprite + sprite: Clothing/Back/Duffels/genetics.rsi - type: entity parent: ClothingBackpackDuffel @@ -111,12 +111,12 @@ name: mime duffel bag description: A large duffel bag for holding... mime... stuff. components: - - type: Sprite - sprite: Clothing/Back/Duffels/mime.rsi - storageOpenSound: - collection: null - storageInsertSound: - collection: null + - type: Sprite + sprite: Clothing/Back/Duffels/mime.rsi + storageOpenSound: + collection: null + storageInsertSound: + collection: null - type: entity parent: ClothingBackpackDuffel @@ -124,8 +124,8 @@ name: epistemics duffel bag # DeltaV - Epistemics Department replacing Science description: A large duffel bag for holding extra science related goods. components: - - type: Sprite - sprite: Clothing/Back/Duffels/science.rsi + - type: Sprite + sprite: Clothing/Back/Duffels/science.rsi - type: entity parent: ClothingBackpackDuffel @@ -160,31 +160,31 @@ name: syndicate duffel bag description: A large duffel bag for holding various traitor goods. components: - - type: Sprite - sprite: Clothing/Back/Duffels/syndicate.rsi - - type: Storage - capacity: 131 + - type: Sprite + sprite: Clothing/Back/Duffels/syndicate.rsi + - type: Storage + capacity: 131 - type: entity parent: ClothingBackpackDuffelSyndicate id: ClothingBackpackDuffelSyndicateBundle abstract: true components: - - type: Tag - tags: [] # ignore "WhitelistChameleon" tag + - type: Tag + tags: [] # ignore "WhitelistChameleon" tag - type: entity parent: ClothingBackpackDuffelSyndicate id: ClothingBackpackDuffelSyndicateAmmo name: syndicate duffel bag components: - - type: Sprite - sprite: Clothing/Back/Duffels/syndicate.rsi - state: icon-ammo - - type: Item - heldPrefix: ammo - - type: Clothing - equippedPrefix: ammo + - type: Sprite + sprite: Clothing/Back/Duffels/syndicate.rsi + state: icon-ammo + - type: Item + heldPrefix: ammo + - type: Clothing + equippedPrefix: ammo - type: entity parent: ClothingBackpackDuffelSyndicateAmmo @@ -199,13 +199,13 @@ id: ClothingBackpackDuffelSyndicateMedical name: syndicate duffel bag components: - - type: Sprite - sprite: Clothing/Back/Duffels/syndicate.rsi - state: icon-med - - type: Item - heldPrefix: med - - type: Clothing - equippedPrefix: med + - type: Sprite + sprite: Clothing/Back/Duffels/syndicate.rsi + state: icon-med + - type: Item + heldPrefix: med + - type: Clothing + equippedPrefix: med - type: entity parent: ClothingBackpackDuffelSyndicateMedical @@ -221,14 +221,26 @@ name: duffelbag of holding description: A duffelbag that opens into a localized pocket of bluespace. components: - - type: Sprite - sprite: Clothing/Back/Duffels/holding.rsi - state: icon - layers: - - state: icon - - state: icon-unlit - shader: unshaded - - type: Storage - capacity: 9999 - - type: ClothingSpeedModifier - sprintModifier: 1 # makes its stats identical to other variants of bag of holding + - type: Sprite + sprite: Clothing/Back/Duffels/holding.rsi + state: icon + layers: + - state: icon + - state: icon-unlit + shader: unshaded + - type: Storage + capacity: 9999 + - type: ClothingSpeedModifier + sprintModifier: 1 # makes its stats identical to other variants of bag of holding + +- type: entity + parent: ClothingBackpackDuffel + id: ClothingBackpackDuffelCBURN + name: CBURN duffel bag + description: A duffel bag containing a variety of biological containment equipment. + components: + - type: Storage + capacity: 150 + - type: ClothingSpeedModifier + walkModifier: 1 + sprintModifier: 1 diff --git a/Resources/Prototypes/Entities/Clothing/Back/satchel.yml b/Resources/Prototypes/Entities/Clothing/Back/satchel.yml index e851c4cc49..9d3cfb7f79 100644 --- a/Resources/Prototypes/Entities/Clothing/Back/satchel.yml +++ b/Resources/Prototypes/Entities/Clothing/Back/satchel.yml @@ -112,11 +112,11 @@ - type: entity parent: ClothingBackpackSatchel id: ClothingBackpackSatchelBrigmedic - name: brigmedic satchel + name: corpsman satchel # DeltaV - rename brigmedic to corpsman description: A sterile satchel for medical related needs. components: - type: Sprite - sprite: Clothing/Back/Satchels/brigmedic.rsi + sprite: DeltaV/Clothing/Back/Satchels/brigmedic.rsi # DeltaV - resprite - type: entity parent: ClothingBackpackSatchel diff --git a/Resources/Prototypes/Entities/Clothing/Ears/headsets.yml b/Resources/Prototypes/Entities/Clothing/Ears/headsets.yml index 82648b0e58..be67ff84b0 100644 --- a/Resources/Prototypes/Entities/Clothing/Ears/headsets.yml +++ b/Resources/Prototypes/Entities/Clothing/Ears/headsets.yml @@ -242,7 +242,7 @@ - type: entity parent: ClothingHeadset id: ClothingHeadsetBrigmedic - name: brigmedic headset + name: corpsman headset # DeltaV - rename brigmedic to corpsman description: A headset that helps to hear the death cries. components: - type: ContainerFill @@ -252,9 +252,9 @@ - EncryptionKeySecurity - EncryptionKeyCommon - type: Sprite - sprite: Clothing/Ears/Headsets/brigmedic.rsi + sprite: DeltaV/Clothing/Ears/Headsets/securitymedical.rsi # DeltaV - Change the sprite to fit the others - type: Clothing - sprite: Clothing/Ears/Headsets/brigmedic.rsi + sprite: DeltaV/Clothing/Ears/Headsets/securitymedical.rsi # DeltaV - Change the sprite to fit the others - type: entity parent: ClothingHeadset diff --git a/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml b/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml index 19fc25b233..ce1767b1bb 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/base_clothinghead.yml @@ -73,7 +73,7 @@ - type: PointLight enabled: false radius: 3 - energy: 2 + energy: 1 mask: /Textures/Effects/LightMasks/cone.png autoRot: true netsync: false diff --git a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml index 27e9f45c2e..d509d52726 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/hardsuit-helmets.yml @@ -159,8 +159,8 @@ parent: ClothingHeadHardsuitWithLightBase id: ClothingHeadHelmetHardsuitBrigmedic noSpawn: true - name: brigmedic hardsuit helmet - description: The lightweight helmet of the brigmedic hardsuit. Protects against viruses, and clowns. + name: corpsman hardsuit helmet # DeltaV - rename brigmedic to corpsman + description: The lightweight helmet of the corpsman hardsuit. Protects against viruses, and clowns. # Delta V - rename brigmedic to corpsman components: - type: Sprite sprite: Clothing/Head/Hardsuits/brigmedic.rsi @@ -681,16 +681,15 @@ #MISC. HARDSUITS #Clown Hardsuit - type: entity - parent: ClothingHeadEVAHelmetBase # DeltaV - Clown Hardsuit crafting recipe uses an EVA suit to craft. + parent: ClothingHeadHelmetHardsuitSecurity id: ClothingHeadHelmetHardsuitClown noSpawn: true - name: clown EVA helmet # DeltaV - Clown Hardsuit crafting recipe uses an EVA suit to craft. - description: A clown EVA helmet. + name: clown hardsuit helmet + description: A clown hardsuit helmet. components: - type: Sprite sprite: Clothing/Head/Hardsuits/clown.rsi - type: Clothing - equippedPrefix: off # Fix lack of helmet while not using the flashlight feature. sprite: Clothing/Head/Hardsuits/clown.rsi equipSound: /Audio/Mecha/mechmove03.ogg - unequipSound: /Audio/Mecha/mechmove03.ogg # DeltaV - This doesn't need to make a fart noise. + unequipSound: /Audio/Effects/Emotes/parp1.ogg diff --git a/Resources/Prototypes/Entities/Clothing/Head/misc.yml b/Resources/Prototypes/Entities/Clothing/Head/misc.yml index 50e3da93fb..39e751b17d 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/misc.yml @@ -62,7 +62,7 @@ node: hairflower - type: entity - parent: ClothingHeadBase + parent: ClothingHeadLightBase id: ClothingHeadHatPumpkin name: pumpkin hat description: A jack o' lantern! Believed to ward off evil spirits. @@ -73,6 +73,18 @@ sprite: Clothing/Head/Misc/pumpkin.rsi - type: IngestionBlocker - type: IdentityBlocker + - type: PointLight + enabled: false + radius: 3 + energy: 1 + mask: /Textures/Effects/LightMasks/cone.png + autoRot: true + color: "#cc6600" + netsync: false + - type: ItemSlots + slots: + cell_slot: + name: power-cell-slot-component-slot-name-default - type: entity parent: ClothingHeadBase diff --git a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml index ec11ccfffa..4909d6e393 100644 --- a/Resources/Prototypes/Entities/Clothing/Masks/masks.yml +++ b/Resources/Prototypes/Entities/Clothing/Masks/masks.yml @@ -27,6 +27,13 @@ sprite: Clothing/Mask/gassecurity.rsi - type: Clothing sprite: Clothing/Mask/gassecurity.rsi + - type: Armor + modifiers: + coefficients: + Blunt: 0.95 + Slash: 0.95 + Piercing: 0.95 + Heat: 0.95 - type: entity parent: ClothingMaskGas @@ -40,6 +47,13 @@ sprite: Clothing/Mask/gassyndicate.rsi - type: FlashImmunity - type: EyeProtection + - type: Armor + modifiers: + coefficients: + Blunt: 0.95 + Slash: 0.95 + Piercing: 0.95 + Heat: 0.95 - type: entity parent: ClothingMaskGas @@ -132,6 +146,8 @@ coefficients: Blunt: 0.95 Slash: 0.95 + Piercing: 0.95 + Heat: 0.95 - type: entity parent: ClothingMaskPullableBase @@ -294,7 +310,7 @@ sprite: Clothing/Mask/merc.rsi - type: entity - parent: ClothingMaskGasExplorer + parent: ClothingMaskGasSyndicate id: ClothingMaskGasERT name: ert gas mask description: The gas mask of the elite squad of the ERT. @@ -303,9 +319,6 @@ sprite: Clothing/Mask/ert.rsi - type: Clothing sprite: Clothing/Mask/ert.rsi - - type: FlashImmunity - - type: EyeProtection - protectionTime: 5 - type: entity parent: ClothingMaskGasERT diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml index 672fe4e627..e72418048f 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/coats.yml @@ -306,13 +306,13 @@ sprite: Clothing/OuterClothing/Coats/brigmedic.rsi - type: Clothing sprite: Clothing/OuterClothing/Coats/brigmedic.rsi - - type: Armor + - type: Armor # DeltaV - tweak for Velta armour modifiers: coefficients: - Blunt: 0.8 + Blunt: 0.85 Slash: 0.85 - Piercing: 0.65 - Heat: 0.85 + Piercing: 0.85 + Heat: 0.75 Caustic: 0.75 - type: entity @@ -344,3 +344,14 @@ modifiers: coefficients: Caustic: 0.75 + +- type: entity + parent: ClothingOuterStorageBase + id: ClothingOuterCoatSpaceAsshole + name: the coat of space asshole + description: And there he was... + components: + - type: Sprite + sprite: Clothing/OuterClothing/Coats/space_asshole.rsi + - type: Clothing + sprite: Clothing/OuterClothing/Coats/space_asshole.rsi diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml index d53fe98a8c..6374701533 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/hardsuits.yml @@ -189,8 +189,8 @@ - type: entity parent: ClothingOuterHardsuitBase id: ClothingOuterHardsuitBrigmedic - name: brigmedic hardsuit - description: Special hardsuit of the guardian angel of the brig. It is the medical version of the security hardsuit. + name: corpsman hardsuit # DeltaV - rename brigmedic to corpsman + description: Special hardsuit of the guardian angel of the brig. It is the medical version of the security hardsuit. # I will fix the rest of this entry later when I resprite sec suits components: - type: Sprite sprite: Clothing/OuterClothing/Hardsuits/brigmedic.rsi @@ -697,7 +697,7 @@ parent: ClothingOuterHardsuitSyndieCommander id: ClothingOuterHardsuitERTLeader name: ERT leader's hardsuit - description: A protective hardsuit worn by members of an emergency response team. + description: A protective hardsuit worn by the leader of an emergency response team. components: - type: Sprite sprite: Clothing/OuterClothing/Hardsuits/ERTSuits/ertleader.rsi @@ -708,9 +708,10 @@ #ERT Engineer Hardsuit - type: entity - parent: ClothingOuterHardsuitSyndie + parent: ClothingOuterHardsuitCBURN id: ClothingOuterHardsuitERTEngineer name: ERT engineer's hardsuit + description: A protective hardsuit worn by the engineers of an emergency response team. components: - type: Sprite sprite: Clothing/OuterClothing/Hardsuits/ERTSuits/ertengineer.rsi @@ -721,9 +722,10 @@ #ERT Medic Hardsuit - type: entity - parent: ClothingOuterHardsuitSyndieElite + parent: ClothingOuterHardsuitMedic id: ClothingOuterHardsuitERTMedical name: ERT medic's hardsuit + description: A protective hardsuit worn by the medics of an emergency response team. components: - type: Sprite sprite: Clothing/OuterClothing/Hardsuits/ERTSuits/ertmedical.rsi @@ -737,6 +739,7 @@ parent: ClothingOuterHardsuitSyndie id: ClothingOuterHardsuitERTSecurity name: ERT security's hardsuit + description: A protective hardsuit worn by the security officers of an emergency response team. components: - type: Sprite sprite: Clothing/OuterClothing/Hardsuits/ERTSuits/ertsecurity.rsi @@ -747,9 +750,10 @@ #ERT Janitor Hardsuit - type: entity - parent: ClothingOuterHardsuitSyndie + parent: ClothingOuterHardsuitCBURN id: ClothingOuterHardsuitERTJanitor name: ERT janitor's hardsuit + description: A protective hardsuit worn by the janitors of an emergency response team. components: - type: Sprite sprite: Clothing/OuterClothing/Hardsuits/ERTSuits/ertjanitor.rsi @@ -762,7 +766,7 @@ - type: entity parent: ClothingOuterHardsuitBase id: ClothingOuterHardsuitDeathsquad - name: deathsquad hardsuit + name: death squad hardsuit description: An advanced hardsuit favored by commandos for use in special operations. components: - type: Sprite @@ -779,12 +783,12 @@ - type: Armor modifiers: coefficients: - Blunt: 0.2 #best armor in the game - Slash: 0.2 - Piercing: 0.2 + Blunt: 0.1 #best armor in the game + Slash: 0.1 + Piercing: 0.1 Heat: 0.1 Radiation: 0.1 - Caustic: 0.2 + Caustic: 0.1 - type: ClothingSpeedModifier walkModifier: 1.0 sprintModifier: 1.0 @@ -829,36 +833,32 @@ #MISC. HARDSUITS #Clown Hardsuit - type: entity - parent: ClothingOuterHardsuitEVA # DeltaV - Clown Hardsuit crafting recipe uses an EVA suit to craft. + parent: ClothingOuterHardsuitBase id: ClothingOuterHardsuitClown - name: clown EVA suit # DeltaV - Clown Hardsuit crafting recipe uses an EVA suit to craft. - description: A custom made clown softsuit. # DeltaV - Clown Hardsuit crafting recipe uses an EVA suit to craft. + name: clown hardsuit + description: A custom made clown hardsuit. components: - type: Sprite sprite: Clothing/OuterClothing/Hardsuits/clown.rsi - type: Clothing sprite: Clothing/OuterClothing/Hardsuits/clown.rsi - # - type: PressureProtection # DeltaV - Clown Hardsuit inherits from the normal eva suit, entirely cosmetic. - # highPressureMultiplier: 0.5 - # lowPressureMultiplier: 1000 - # - type: ExplosionResistance - # damageCoefficient: 0.9 - # - type: Armor - # modifiers: - # coefficients: - # Blunt: 0.9 - # Slash: 0.9 - # Piercing: 0.9 - # Caustic: 0.8 - # - type: ClothingSpeedModifier - # walkModifier: 0.9 - # sprintModifier: 0.9 - - type: Construction - graph: ClownHardsuit - node: clownHardsuit + - type: PressureProtection + highPressureMultiplier: 0.5 + lowPressureMultiplier: 1000 + - type: ExplosionResistance + damageCoefficient: 0.9 + - type: Armor + modifiers: + coefficients: + Blunt: 0.9 + Slash: 0.9 + Piercing: 0.9 + Caustic: 0.8 + - type: ClothingSpeedModifier + walkModifier: 0.9 + sprintModifier: 0.9 + # - type: Construction # DeltaV - Prevent clowns from making the hardsuit + # graph: ClownHardsuit + # node: clownHardsuit - type: ToggleableClothing - slot: head clothingPrototype: ClothingHeadHelmetHardsuitClown - - type: ContainerContainer # DeltaV - Allows the EVA suit to have built in 'hardsuit' helmet - containers: - toggleable-clothing: !type:ContainerSlot {} diff --git a/Resources/Prototypes/Entities/Clothing/OuterClothing/misc.yml b/Resources/Prototypes/Entities/Clothing/OuterClothing/misc.yml index 0fb5005704..3892945505 100644 --- a/Resources/Prototypes/Entities/Clothing/OuterClothing/misc.yml +++ b/Resources/Prototypes/Entities/Clothing/OuterClothing/misc.yml @@ -289,6 +289,8 @@ color: "#670a09" - state: equipped-OUTERCLOTHING-lines color: "#000000" + - type: TemperatureProtection + coefficient: 0.3 - type: entity parent: ClothingOuterBase @@ -323,6 +325,8 @@ color: "#3232a6" - state: equipped-OUTERCLOTHING-lines color: "#000000" + - type: TemperatureProtection + coefficient: 0.3 - type: entity parent: ClothingOuterBase @@ -356,4 +360,6 @@ - state: equipped-OUTERCLOTHING color: "#164d0f" - state: equipped-OUTERCLOTHING-lines - color: "#000000" \ No newline at end of file + color: "#000000" + - type: TemperatureProtection + coefficient: 0.3 \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml index 5074151905..582f0848f7 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpskirts.yml @@ -254,13 +254,13 @@ - type: entity parent: ClothingUniformSkirtBase id: ClothingUniformJumpskirtBrigmedic - name: brigmedic jumpskirt + name: corpsman jumpskirt # DeltaV - renamed brigmedic to corpsman description: This uniform is issued to qualified personnel who have been trained. No one cares that the training took half a day. components: - type: Sprite - sprite: Clothing/Uniforms/Jumpskirt/brigmedic.rsi + sprite: DeltaV/Clothing/Uniforms/Jumpskirt/brigmedic.rsi # DeltaV - resprite - type: Clothing - sprite: Clothing/Uniforms/Jumpskirt/brigmedic.rsi + sprite: DeltaV/Clothing/Uniforms/Jumpskirt/brigmedic.rsi # DeltaV - resprite - type: entity parent: ClothingUniformSkirtBase diff --git a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml index 016925ae13..d08ac7eeb0 100644 --- a/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml +++ b/Resources/Prototypes/Entities/Clothing/Uniforms/jumpsuits.yml @@ -1,20 +1,13 @@ - type: entity parent: ClothingUniformBase id: ClothingUniformJumpsuitDeathSquad - name: Death squad uniform + name: death squad uniform description: Advanced armored jumpsuit used by special forces in special operations. components: - type: Sprite sprite: Clothing/Uniforms/Jumpsuit/deathsquad.rsi - type: Clothing sprite: Clothing/Uniforms/Jumpsuit/deathsquad.rsi - - type: Armor - modifiers: - coefficients: - Blunt: 0.8 - Slash: 0.8 - Piercing: 0.8 - Heat: 0.8 - type: entity parent: ClothingUniformBase @@ -418,13 +411,13 @@ - type: entity parent: ClothingUniformBase id: ClothingUniformJumpsuitBrigmedic - name: brigmedic jumpsuit + name: corpsman jumpsuit # DeltaV - rename brigmedic to corpsman description: This uniform is issued to qualified personnel who have been trained. No one cares that the training took half a day. components: - type: Sprite - sprite: Clothing/Uniforms/Jumpsuit/brigmedic.rsi + sprite: DeltaV/Clothing/Uniforms/Jumpsuit/brigmedic.rsi # DeltaV - resprite - type: Clothing - sprite: Clothing/Uniforms/Jumpsuit/brigmedic.rsi + sprite: DeltaV/Clothing/Uniforms/Jumpsuit/brigmedic.rsi # DeltaV - resprite - type: entity parent: ClothingUniformBase @@ -1067,10 +1060,6 @@ sprite: Clothing/Uniforms/Jumpsuit/ert_engineer.rsi - type: Clothing sprite: Clothing/Uniforms/Jumpsuit/ert_engineer.rsi - - type: Armor - modifiers: - coefficients: - Radiation: 0.8 - type: entity parent: ClothingUniformBase @@ -1093,12 +1082,6 @@ sprite: Clothing/Uniforms/Jumpsuit/ert_leader.rsi - type: Clothing sprite: Clothing/Uniforms/Jumpsuit/ert_leader.rsi - - type: Armor - modifiers: - coefficients: - Blunt: 0.8 - Slash: 0.8 - Piercing: 0.8 - type: entity parent: ClothingUniformBase @@ -1121,12 +1104,6 @@ sprite: Clothing/Uniforms/Jumpsuit/ert_security.rsi - type: Clothing sprite: Clothing/Uniforms/Jumpsuit/ert_security.rsi - - type: Armor - modifiers: - coefficients: - Blunt: 0.8 - Slash: 0.8 - Piercing: 0.8 - type: entity parent: ClothingUniformJumpsuitClown diff --git a/Resources/Prototypes/Entities/Effects/chemistry_effects.yml b/Resources/Prototypes/Entities/Effects/chemistry_effects.yml index 415ecd4a98..a8e28a1ef7 100644 --- a/Resources/Prototypes/Entities/Effects/chemistry_effects.yml +++ b/Resources/Prototypes/Entities/Effects/chemistry_effects.yml @@ -1,17 +1,26 @@ - type: entity - id: Smoke - name: smoke - noSpawn: true + id: BaseFoam + abstract: true components: - - type: Occluder - type: Sprite drawdepth: Effects - sprite: Effects/chemsmoke.rsi - state: chemsmoke - type: Appearance + - type: AnimationPlayer - type: SmokeVisuals - type: Transform anchored: true + - type: Physics + - type: Fixtures + fixtures: + fix1: + hard: false + shape: + !type:PhysShapeAabb + bounds: "-0.4,-0.4,0.4,0.4" + mask: + - ItemMask + layer: + - SlipLayer - type: Smoke - type: ActiveEdgeSpreader - type: EdgeSpreader @@ -21,74 +30,83 @@ solutionArea: maxVol: 600 canReact: false + +- type: entity + parent: BaseFoam + id: Smoke + name: smoke + noSpawn: true + components: + - type: Occluder + - type: Sprite + sprite: Effects/chemsmoke.rsi + state: chemsmoke - type: TimedDespawn lifetime: 10 - type: Tag tags: - - HideContextMenu + - HideContextMenu - type: entity + parent: BaseFoam id: Foam name: foam noSpawn: true components: - type: Sprite - drawdepth: Effects - color: "#ffffffcc" #Add some transparency + color: "#ffffffcc" sprite: Effects/foam.rsi - state: foam layers: - - state: foam - map: ["enum.FoamVisualLayers.Base"] - - type: AnimationPlayer - - type: Appearance - - type: SmokeVisuals + - state: foam + map: ["enum.FoamVisualLayers.Base"] + - map: [ "enum.EdgeLayer.South" ] + state: foam-south + - map: [ "enum.EdgeLayer.East" ] + state: foam-east + - map: [ "enum.EdgeLayer.North" ] + state: foam-north + - map: [ "enum.EdgeLayer.West" ] + state: foam-west + - type: SmoothEdge + - type: IconSmooth + key: walls + mode: NoSprite - type: FoamVisuals animationTime: 0.6 animationState: foam-dissolve - - type: Transform - anchored: true - - type: Physics - - type: Fixtures - fixtures: - fix1: - hard: false - shape: - !type:PhysShapeAabb - bounds: "-0.4,-0.4,0.4,0.4" - mask: - - ItemMask - layer: - - SlipLayer - - type: Smoke - - type: ActiveEdgeSpreader - - type: EdgeSpreader - id: Smoke - - type: SolutionContainerManager - solutions: - solutionArea: - maxVol: 600 - canReact: false - type: Slippery - type: StepTrigger - type: entity - id: IronMetalFoam - name: iron metal foam + id: MetalFoam + name: metal foam noSpawn: true parent: Foam components: - type: Sprite - state: mfoam + color: "#ffffffcc" + sprite: Effects/foam.rsi layers: - - state: mfoam + - state: m_foam map: ["enum.FoamVisualLayers.Base"] - - type: Appearance - - type: SmokeVisuals + - map: [ "enum.EdgeLayer.South" ] + state: m_foam-south + - map: [ "enum.EdgeLayer.East" ] + state: m_foam-east + - map: [ "enum.EdgeLayer.North" ] + state: m_foam-north + - map: [ "enum.EdgeLayer.West" ] + state: m_foam-west - type: FoamVisuals animationTime: 0.6 - animationState: mfoam-dissolve - - type: Smoke + animationState: m_foam-dissolve + +- type: entity + id: IronMetalFoam + name: iron metal foam + noSpawn: true + parent: MetalFoam + components: - type: SpawnOnDespawn prototype: FoamedIronMetal @@ -96,19 +114,8 @@ id: AluminiumMetalFoam name: aluminium metal foam noSpawn: true - parent: Foam + parent: MetalFoam components: - - type: Sprite - state: mfoam - layers: - - state: mfoam - map: ["enum.FoamVisualLayers.Base"] - - type: Appearance - - type: SmokeVisuals - - type: FoamVisuals - animationTime: 0.6 - animationState: mfoam-dissolve - - type: Smoke - type: SpawnOnDespawn prototype: FoamedAluminiumMetal @@ -119,11 +126,11 @@ placement: mode: SnapgridCenter snap: - - Wall + - Wall components: - type: Tag tags: - - RCDDeconstructWhitelist + - RCDDeconstructWhitelist - type: Clickable - type: InteractionOutline - type: Sprite @@ -139,6 +146,11 @@ mask: - WallLayer - type: Occluder + - type: Appearance + - type: SmoothEdge + - type: IconSmooth + key: walls + mode: NoSprite - type: Transform anchored: true - type: Airtight @@ -161,8 +173,20 @@ parent: BaseFoamedMetal components: - type: Sprite + drawdepth: Effects + color: "#ffffffcc" sprite: Effects/foam.rsi - state: ironfoam + layers: + - state: iron_foam + map: ["enum.FoamVisualLayers.Base"] + - map: [ "enum.EdgeLayer.South" ] + state: iron_foam-south + - map: [ "enum.EdgeLayer.East" ] + state: iron_foam-east + - map: [ "enum.EdgeLayer.North" ] + state: iron_foam-north + - map: [ "enum.EdgeLayer.West" ] + state: iron_foam-west - type: entity id: FoamedAluminiumMetal @@ -171,5 +195,17 @@ parent: BaseFoamedMetal components: - type: Sprite + drawdepth: Effects + color: "#ffffffcc" sprite: Effects/foam.rsi - state: metalfoam + layers: + - state: metal_foam + map: ["enum.FoamVisualLayers.Base"] + - map: [ "enum.EdgeLayer.South" ] + state: metal_foam-south + - map: [ "enum.EdgeLayer.East" ] + state: metal_foam-east + - map: [ "enum.EdgeLayer.North" ] + state: metal_foam-north + - map: [ "enum.EdgeLayer.West" ] + state: metal_foam-west diff --git a/Resources/Prototypes/Entities/Markers/Spawners/jobs.yml b/Resources/Prototypes/Entities/Markers/Spawners/jobs.yml index 44bdd108e9..42c652b2b8 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/jobs.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/jobs.yml @@ -540,7 +540,7 @@ - type: entity id: SpawnPointBrigmedic parent: SpawnPointJobBase - name: brigmedic + name: corpsman # DeltaV - rename brigmedic to corpsman components: - type: SpawnPoint #Delta V job_id: Brigmedic diff --git a/Resources/Prototypes/Entities/Mobs/Corpses/corpses.yml b/Resources/Prototypes/Entities/Mobs/Corpses/corpses.yml index 7b4aa7dc5f..8c245be89f 100644 --- a/Resources/Prototypes/Entities/Mobs/Corpses/corpses.yml +++ b/Resources/Prototypes/Entities/Mobs/Corpses/corpses.yml @@ -76,6 +76,7 @@ - DetectiveGear - WardenGear - PrisonGuardGear # Nyanotrasen - PrisonGuard, see Resources/Prototypes/Nyanotrasen/Roles/Jobs/Security/prisonguard.yml + - CorpsmanGear # DeltaV - Corpsman, see Resources/Prototypes/DeltaV/Roles/Jobs/Security/brigmedic.yml - type: entity parent: SalvageHumanCorpse diff --git a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml index 126e533849..69a1925b31 100644 --- a/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml +++ b/Resources/Prototypes/Entities/Mobs/Cyborgs/base_borg_chassis.yml @@ -71,11 +71,8 @@ - type: SiliconLawBound - type: EmagSiliconLaw stunTime: 5 - emagLaws: - - Syndicate1 - - Syndicate2 - - Syndicate3 - - Syndicate4 + emagLaws: SyndicateStatic + - type: IonStormTarget - type: Hands showInHands: false - type: IntrinsicRadioReceiver diff --git a/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml b/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml index 582791fc16..548657f137 100644 --- a/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml +++ b/Resources/Prototypes/Entities/Mobs/Cyborgs/borg_chassis.yml @@ -132,6 +132,7 @@ noMindState: medical_e_r - type: Construction node: medical + - type: FabricateCandy # Nyanotrasen - The medical cyborg can generate candies filled with medicine. - type: entity id: BorgChassisService diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml index ff776b67a1..1669da7a57 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/animals.yml @@ -1069,6 +1069,7 @@ - type: Puller needsHands: true - type: FelinidFood # Nyanotrasen - Felinid, ability to eat mice, see Content.Server/Nyanotrasen/Abilities/Felinid/FelinidSystem.cs + - type: BadFood - type: entity parent: MobMouse diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml b/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml index 88d7cbaae2..5d05b8a62d 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/pets.yml @@ -523,6 +523,14 @@ id: MobSpiderShiva description: The first defender of the station. components: + - type: GhostRole # DeltaV + makeSentient: true + allowSpeech: true + allowMovement: true + name: ghost-role-information-Shiva-name + description: ghost-role-information-Shiva-description + rules: ghost-role-information-Shiva-rules + - type: GhostTakeoverAvailable # DeltaV - type: InteractionPopup successChance: 0.5 # spider is mean interactSuccessString: petting-success-tarantula diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/simplemob.yml b/Resources/Prototypes/Entities/Mobs/NPCs/simplemob.yml index fb9cedbe11..e828cddd1f 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/simplemob.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/simplemob.yml @@ -53,7 +53,6 @@ - type: Body prototype: Animal - type: Climbing - - type: Flashable - type: NameIdentifier group: GenericNumber - type: SlowOnDamage diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/space.yml b/Resources/Prototypes/Entities/Mobs/NPCs/space.yml index 46356d4b1a..234dbbc103 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/space.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/space.yml @@ -64,13 +64,13 @@ radius: 1.2 energy: 2 color: "#4faffb" - - type: GhostTakeoverAvailable + #- type: GhostTakeoverAvailable # Delta V: Moves ghost takeover to child - type: Speech speechVerb: LargeMob - type: entity name: space bear - id: MobBearSpace + id: MobBearSpaceNPC # Delta V : remove ghosttakeover comps parent: MobSpaceBasic description: It looks friendly. Why don't you give it a hug? components: @@ -110,10 +110,7 @@ interactFailureString: petting-failure-bear interactSuccessSound: path: /Audio/Animals/sloth_squeak.ogg - - type: GhostRole - prob: 0.25 - name: ghost-role-information-space-bear-name - description: ghost-role-information-space-bear-description + # Moved to Nyanotrasen\Entities\Mobs\NPCs\space.yml - type: entity id: MobBearSpaceSalvage @@ -129,7 +126,7 @@ - type: entity name: space kangaroo - id: MobKangarooSpace + id: MobKangarooSpaceNPC # Delta V : remove ghosttakeover comps parent: MobSpaceBasic description: It looks friendly. Why don't you give it a hug? components: @@ -182,10 +179,7 @@ interfaces: - key: enum.StrippingUiKey.Key type: StrippableBoundUserInterface - - type: GhostRole - prob: 0.25 - name: ghost-role-information-space-kangaroo-name - description: ghost-role-information-space-kangaroo-description + # Moved to Nyanotrasen\Entities\Mobs\NPCs\space.yml - type: entity id: MobKangarooSpaceSalvage @@ -201,7 +195,7 @@ - type: entity name: space spider - id: MobSpiderSpace + id: MobSpiderSpaceNPC # Delta V : remove ghosttakeover comps parent: MobSpaceBasic description: It's so glowing, it looks dangerous. components: @@ -278,10 +272,7 @@ color: "#4faffb" - type: NoSlip - type: IgnoreSpiderWeb - - type: GhostRole - prob: 0.30 - name: ghost-role-information-space-spider-name - description: ghost-role-information-space-spider-description + # Moved to Nyanotrasen\Entities\Mobs\NPCs\space.yml - type: Speech speechVerb: Arachnid diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml b/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml index 17ac0183d5..d962a267fe 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/xeno.yml @@ -96,13 +96,13 @@ spawned: - id: FoodMeatXeno amount: 5 - - type: GhostRole - allowMovement: true - allowSpeech: true - makeSentient: true - name: ghost-role-information-xeno-name - description: ghost-role-information-xeno-description - rules: ghost-role-information-xeno-rules + #- type: GhostRole # Delta V - Moves ghost role from parent to child + # allowMovement: true # Delta V - Moves ghost role from parent to child + # allowSpeech: true # Delta V - Moves ghost role from parent to child + # makeSentient: true # Delta V - Moves ghost role from parent to child + # name: ghost-role-information-xeno-name # Delta V - Moves ghost role from parent to child + # description: ghost-role-information-xeno-description # Delta V - Moves ghost role from parent to child + # rules: ghost-role-information-xeno-rules # Delta V - Moves ghost role from parent to child # - type: GhostTakeoverAvailable # Delta V - Moves ghost role from parent to child - type: TypingIndicator proto: alien diff --git a/Resources/Prototypes/Entities/Mobs/Player/humanoid.yml b/Resources/Prototypes/Entities/Mobs/Player/humanoid.yml index dab4320b38..a1470ebc7c 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/humanoid.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/humanoid.yml @@ -1,10 +1,45 @@ # Random humanoids +## Death Squad + +- type: entity + id: RandomHumanoidSpawnerDeathSquad + name: Death Squad Agent + suffix: ERTRole, Death Squad + components: + - type: Sprite + sprite: Clothing/OuterClothing/Hardsuits/deathsquad.rsi + state: icon + - type: RandomMetadata + nameSegments: + - NamesFirstMilitaryLeader + - names_last + - type: RandomHumanoidSpawner + settings: DeathSquad + +- type: randomHumanoidSettings + id: DeathSquad + randomizeName: false + components: + - type: MindShield + - type: GhostRole + name: ghost-role-information-Death-Squad-name + description: ghost-role-information-Death-Squad-description + - type: GhostTakeoverAvailable + - type: Loadout + prototypes: [ DeathSquadGear ] + - type: RandomMetadata + nameSegments: + - NamesFirstMilitaryLeader + - names_last + + ## ERT Leader - type: entity id: RandomHumanoidSpawnerERTLeader name: ERT leader + suffix: ERTRole, Basic components: - type: Sprite sprite: Markers/jobs.rsi @@ -20,6 +55,7 @@ id: ERTLeader randomizeName: false components: + - type: MindShield - type: GhostRole name: ghost-role-information-ert-leader-name description: ghost-role-information-ert-leader-description @@ -35,7 +71,7 @@ id: RandomHumanoidSpawnerERTLeaderEVA parent: RandomHumanoidSpawnerERTLeader name: ERT leader - suffix: EVA + suffix: ERTRole, Armored EVA components: - type: Sprite sprite: Markers/jobs.rsi @@ -47,6 +83,7 @@ id: ERTLeaderEVA parent: ERTLeader components: + - type: MindShield - type: GhostRole name: ghost-role-information-ert-leader-name description: ghost-role-information-ert-leader-description @@ -54,12 +91,33 @@ - type: Loadout prototypes: [ ERTLeaderGearEVA ] +- type: entity + id: RandomHumanoidSpawnerERTLeaderEVALecter + parent: RandomHumanoidSpawnerERTLeaderEVA + suffix: ERTRole, Lecter, EVA + components: + - type: RandomHumanoidSpawner + settings: ERTLeaderEVALecter + +- type: randomHumanoidSettings + id: ERTLeaderEVALecter + parent: ERTLeaderEVA + components: + - type: MindShield + - type: GhostRole + name: ghost-role-information-ert-leader-name + description: ghost-role-information-ert-leader-description + - type: GhostTakeoverAvailable + - type: Loadout + prototypes: [ ERTLeaderGearEVALecter ] + ## ERT Janitor - type: entity id: RandomHumanoidSpawnerERTJanitor parent: RandomHumanoidSpawnerERTLeader name: ERT janitor + suffix: ERTRole, Basic components: - type: Sprite sprite: Markers/jobs.rsi @@ -75,6 +133,7 @@ id: ERTJanitor parent: ERTLeader components: + - type: MindShield - type: GhostRole name: ghost-role-information-ert-janitor-name description: ghost-role-information-ert-janitor-description @@ -90,7 +149,7 @@ id: RandomHumanoidSpawnerERTJanitorEVA parent: RandomHumanoidSpawnerERTJanitor name: ERT janitor - suffix: EVA + suffix: ERTRole, Enviro EVA components: - type: Sprite sprite: Markers/jobs.rsi @@ -102,6 +161,7 @@ id: ERTJanitorEVA parent: ERTJanitor components: + - type: MindShield - type: GhostRole name: ghost-role-information-ert-janitor-name description: ghost-role-information-ert-janitor-description @@ -115,6 +175,7 @@ id: RandomHumanoidSpawnerERTEngineer parent: RandomHumanoidSpawnerERTLeader name: ERT engineer + suffix: ERTRole, Basic components: - type: Sprite sprite: Markers/jobs.rsi @@ -130,6 +191,7 @@ id: ERTEngineer parent: ERTLeader components: + - type: MindShield - type: GhostRole name: ghost-role-information-ert-engineer-name description: ghost-role-information-ert-engineer-description @@ -145,7 +207,7 @@ id: RandomHumanoidSpawnerERTEngineerEVA parent: RandomHumanoidSpawnerERTEngineer name: ERT engineer - suffix: EVA + suffix: ERTRole, Enviro EVA components: - type: Sprite sprite: Markers/jobs.rsi @@ -157,6 +219,7 @@ id: ERTEngineerEVA parent: ERTEngineer components: + - type: MindShield - type: GhostRole name: ghost-role-information-ert-engineer-name description: ghost-role-information-ert-engineer-description @@ -170,6 +233,7 @@ id: RandomHumanoidSpawnerERTSecurity parent: RandomHumanoidSpawnerERTLeader name: ERT security + suffix: ERTRole, Basic components: - type: Sprite sprite: Markers/jobs.rsi @@ -185,6 +249,7 @@ id: ERTSecurity parent: ERTLeader components: + - type: MindShield - type: GhostRole name: ghost-role-information-ert-security-name description: ghost-role-information-ert-security-description @@ -200,7 +265,7 @@ id: RandomHumanoidSpawnerERTSecurityEVA parent: RandomHumanoidSpawnerERTSecurity name: ERT security - suffix: EVA + suffix: ERTRole, Armored EVA components: - type: Sprite sprite: Markers/jobs.rsi @@ -212,6 +277,7 @@ id: ERTSecurityEVA parent: ERTSecurity components: + - type: MindShield - type: GhostRole name: ghost-role-information-ert-security-name description: ghost-role-information-ert-security-description @@ -219,12 +285,33 @@ - type: Loadout prototypes: [ ERTSecurityGearEVA ] +- type: entity + id: RandomHumanoidSpawnerERTSecurityEVALecter + parent: RandomHumanoidSpawnerERTSecurityEVA + suffix: ERTRole, Lecter, EVA + components: + - type: RandomHumanoidSpawner + settings: ERTSecurityEVALecter + +- type: randomHumanoidSettings + id: ERTSecurityEVALecter + parent: ERTSecurityEVA + components: + - type: MindShield + - type: GhostRole + name: ghost-role-information-ert-security-name + description: ghost-role-information-ert-security-description + - type: GhostTakeoverAvailable + - type: Loadout + prototypes: [ ERTSecurityGearEVALecter ] + ## ERT Medic - type: entity id: RandomHumanoidSpawnerERTMedical parent: RandomHumanoidSpawnerERTLeader name: ERT medic + suffix: ERTRole, Basic components: - type: Sprite sprite: Markers/jobs.rsi @@ -240,6 +327,7 @@ id: ERTMedical parent: ERTLeader components: + - type: MindShield - type: GhostRole name: ghost-role-information-ert-medical-name description: ghost-role-information-ert-medical-description @@ -255,7 +343,7 @@ id: RandomHumanoidSpawnerERTMedicalEVA parent: RandomHumanoidSpawnerERTMedical name: ERT medic - suffix: EVA + suffix: ERTRole, Armored EVA components: - type: Sprite sprite: Markers/jobs.rsi @@ -267,6 +355,7 @@ id: ERTMedicalEVA parent: ERTMedical components: + - type: MindShield - type: GhostRole name: ghost-role-information-ert-medical-name description: ghost-role-information-ert-medical-description @@ -279,6 +368,7 @@ - type: entity id: RandomHumanoidSpawnerCBURNUnit name: CBURN Agent + suffix: ERTRole components: - type: Sprite sprite: Markers/jobs.rsi @@ -289,6 +379,7 @@ - type: randomHumanoidSettings id: CBURNAgent components: + - type: MindShield - type: Loadout prototypes: [CBURNGear] - type: GhostRole @@ -314,6 +405,7 @@ - type: randomHumanoidSettings id: CentcomOfficial components: + - type: MindShield - type: GhostRole name: ghost-role-information-centcom-official-name description: ghost-role-information-centcom-official-description diff --git a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml index e5c0a61677..f104d399c8 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/silicon.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/silicon.yml @@ -106,10 +106,7 @@ #- type: GhostTakeoverAvailable - type: SiliconLawBound - type: SiliconLawProvider - laws: - - Drone1 - - Drone2 - - Drone3 + laws: Drone - type: MovementSpeedModifier baseWalkSpeed : 5 baseSprintSpeed : 5 @@ -259,6 +256,8 @@ cell_slot: name: power-cell-slot-component-slot-name-default startingItem: PowerCellMedium + - type: RandomMetadata + nameSegments: [names_borg] - type: entity id: PlayerBorgBattery diff --git a/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml b/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml index 2934cd2226..0039f93d1a 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/arachnid.yml @@ -12,11 +12,11 @@ species: Arachnid - type: Hunger baseDecayRate: 0.0125 # Spiders have slow metabolisms all things considered, so I decided to just make their hunger drain slower. - starvationDamage: - types: - Cold: 0.5 - Bloodloss: 0.5 - - type: Carriable # Carrying system from nyanotrasen. + # starvationDamage: # DeltaV - Disable starvation damage + # types: + # Cold: 0.5 + # Bloodloss: 0.5 + - type: Carriable # Carrying system from nyanotrasen. - type: Thirst baseDecayRate: 0.0125 # Read comment in hunger # Damage (Self) diff --git a/Resources/Prototypes/Entities/Mobs/Species/diona.yml b/Resources/Prototypes/Entities/Mobs/Species/diona.yml index 790915aa37..c6b464c3d2 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/diona.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/diona.yml @@ -8,13 +8,13 @@ - type: HumanoidAppearance species: Diona - type: Hunger - starvationDamage: - types: - Bloodloss: 0.5 + # starvationDamage: # DeltaV - Disable starvation damage + # types: + # Bloodloss: 0.5 baseDecayRate: 0.0083 - type: Thirst baseDecayRate: 0.0083 - - type: Carriable # Carrying system from nyanotrasen. + - type: Carriable # Carrying system from nyanotrasen. - type: Icon sprite: Mobs/Species/Diona/parts.rsi state: full diff --git a/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml b/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml index 95fa1a91c3..e9e46e5d20 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/dwarf.yml @@ -6,10 +6,10 @@ abstract: true components: - type: Hunger - starvationDamage: - types: - Cold: 0.5 - Bloodloss: 0.5 + # starvationDamage: # DeltaV - Disable starvation damage + # types: + # Cold: 0.5 + # Bloodloss: 0.5 - type: Thirst - type: Carriable # Carrying system from nyanotrasen. - type: Icon diff --git a/Resources/Prototypes/Entities/Mobs/Species/human.yml b/Resources/Prototypes/Entities/Mobs/Species/human.yml index 77035c00e3..83fe8a6f13 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/human.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/human.yml @@ -6,10 +6,10 @@ abstract: true components: - type: Hunger - starvationDamage: - types: - Cold: 0.5 - Bloodloss: 0.5 + # starvationDamage: # DeltaV - Disable starvation damage + # types: + # Cold: 0.5 + # Bloodloss: 0.5 - type: Icon # It will not have an icon in the adminspawn menu without this. Body parts seem fine for whatever reason. sprite: Mobs/Species/Human/parts.rsi state: full @@ -21,7 +21,7 @@ spawned: - id: FoodMeatHuman amount: 5 - - type: PotentialPsionic #Nyano - Summary: makes potentially psionic. + - type: PotentialPsionic #Nyano - Summary: makes potentially psionic. - type: entity parent: BaseSpeciesDummy diff --git a/Resources/Prototypes/Entities/Mobs/Species/moth.yml b/Resources/Prototypes/Entities/Mobs/Species/moth.yml index 3c79d782e6..d4662da709 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/moth.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/moth.yml @@ -8,10 +8,10 @@ - type: HumanoidAppearance species: Moth - type: Hunger - starvationDamage: - types: - Cold: 0.5 - Bloodloss: 0.5 + # starvationDamage: # DeltaV - Disable starvation damage + # types: + # Cold: 0.5 + # Bloodloss: 0.5 - type: Thirst - type: Carriable # Carrying system from nyanotrasen. - type: Icon diff --git a/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml b/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml index 55ec9b41aa..3217284a2d 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/reptilian.yml @@ -8,10 +8,10 @@ - type: HumanoidAppearance species: Reptilian - type: Hunger - starvationDamage: - types: - Cold: 0.5 - Bloodloss: 0.5 + # starvationDamage: # DeltaV - Disable starvation damage + # types: + # Cold: 0.5 + # Bloodloss: 0.5 - type: Puller needsHands: false - type: Thirst diff --git a/Resources/Prototypes/Entities/Mobs/Species/skeleton.yml b/Resources/Prototypes/Entities/Mobs/Species/skeleton.yml index 761f31b770..5e0071c7a5 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/skeleton.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/skeleton.yml @@ -65,6 +65,40 @@ - MobMask layer: - MobLayer + - type: Reactive + groups: + Flammable: [ Touch ] + Extinguish: [ Touch ] + reactions: + - reagents: [ Water, SpaceCleaner ] + methods: [ Touch ] + effects: + - !type:WashCreamPieReaction + - reagents: [ Milk, MilkGoat, MilkSoy, MilkSpoiled ] + # add new types of milk to reagents as they appear, oat milk isn't on the list + # because turns out oat milk has 1/30th the amount of calcium in it compared to the rest + # even if it's a meme - I did research + methods: [ Touch ] + effects: # TODO: when magic is around - make a milk transformation to a skeleton monster + - !type:HealthChange + scaled: true + damage: + groups: + Burn: -1 # healing obviously up to discussion + Brute: -1 # these groups are the only 2 possible ways to damage a skeleton + - !type:PopupMessage + type: Local + visualType: Large + messages: [ "skeleton-healed-by-milk-popup" ] + probability: 0.25 + - reagents: [ MilkOat ] + methods: [ Touch ] + effects: + - !type:PopupMessage + type: Local + visualType: Large + messages: [ "skeleton-sprayed-by-oat-milk-popup" ] + probability: 0.5 - type: entity parent: BaseSpeciesDummy diff --git a/Resources/Prototypes/Entities/Mobs/Species/slime.yml b/Resources/Prototypes/Entities/Mobs/Species/slime.yml index 9dac11eb78..34b1c512d6 100644 --- a/Resources/Prototypes/Entities/Mobs/Species/slime.yml +++ b/Resources/Prototypes/Entities/Mobs/Species/slime.yml @@ -5,9 +5,9 @@ abstract: true components: - type: Hunger - starvationDamage: - types: - Bloodloss: 0.5 + # starvationDamage: # DeltaV - Disable starvation damage + # types: + # Bloodloss: 0.5 - type: Thirst - type: Carriable # Carrying system from nyanotrasen. - type: Icon diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cups.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cups.yml index f9e41054f8..34c4fafaf2 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cups.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks_cups.yml @@ -277,14 +277,14 @@ - type: entity parent: DrinkBaseCup id: DrinkLean - name: Grape Juice - description: Damn, no fun allowed. + name: Lean # Delta V : Re-adds Lean + description: Often paired with doja sweet, drinking this concoction is the staple of a trill O.G. # Delta V : Re-adds Lean components: - type: SolutionContainerManager solutions: drink: reagents: - - ReagentId: Water + - ReagentId: Lean # Delta V : Re-adds Lean Quantity: 20 - type: Sprite sprite: Objects/Consumable/Drinks/lean.rsi diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml index 0863cf0ded..218597eca5 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/Containers/box.yml @@ -589,6 +589,57 @@ - id: PlushieNuke orGroup: GiftPool +- type: entity + parent: HappyHonkNukie + id: HappyHonkNukieSnacks + suffix: Toy Unsafe, Snacks + name: syndicate snack box + components: + - type: Item + size: 64 + - type: Storage + capacity: 64 # need more room for goodies + - type: StorageFill + contents: + # toy + - id: C4 + prob: 0.02 + orGroup: GiftPool + - id: ToyMarauder + orGroup: GiftPool + - id: ToyMauler + orGroup: GiftPool + - id: ToyNuke + orGroup: GiftPool + - id: ToySword + orGroup: GiftPool + - id: BalloonSyn + prob: 0.6 + orGroup: GiftPool + - id: PlushieNuke + orGroup: GiftPool + # drinks - 4 cans, up to 2 blood-red brews + - id: DrinkNukieCan + prob: 0.2 + orGroup: Drink1Pool + - id: DrinkColaCan + orGroup: Drink1Pool + - id: DrinkNukieCan + prob: 0.2 + orGroup: Drink2Pool + - id: DrinkColaCan + orGroup: Drink2Pool + - id: DrinkColaCan + amount: 2 + # food + - id: FoodSaladValid + prob: 0.05 + amount: 4 + orGroup: FoodPool + - id: FoodSnackSyndi + amount: 4 + orGroup: FoodPool + - type: entity id: HappyHonkCluwne parent: HappyHonk diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/burger.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/burger.yml index a1d816b32a..59cfc0ba16 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/burger.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/burger.yml @@ -613,11 +613,13 @@ - Meat - type: entity - name: McRib + name: BBQ Rib Sandwich parent: FoodBurgerBase id: FoodBurgerMcrib - description: An elusive rib shaped burger with limited availablity across the galaxy. Not as good as you remember it. + description: An elusive rib shaped burger with limited availability across the galaxy. Not as good as you remember it. components: + - type: Food + trash: FoodKebabSkewer - type: FlavorProfile flavors: - bun diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml index 71008ac89a..166a73e43e 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/ingredients.yml @@ -427,19 +427,6 @@ graph: Tortilla node: flat -- type: entity - name: bun - parent: FoodBakingBase - id: FoodDoughBun - description: A base for any self-respecting burger. - components: - - type: FlavorProfile - flavors: - - bun - - type: Sprite - sprite: Objects/Consumable/Food/burger.rsi - state: bun - - type: entity name: raw pastry base parent: FoodBakingBase diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/meals.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/meals.yml index f4b52217cd..cb79f9b3a3 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/meals.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/meals.yml @@ -326,6 +326,8 @@ id: FoodMealRibs description: BBQ ribs, slathered in a healthy coating of BBQ sauce. The least vegan thing to ever exist. components: + - type: Food + trash: FoodKebabSkewer - type: FlavorProfile flavors: - meaty diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml index 62def229de..efe6167bde 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/produce.yml @@ -556,6 +556,9 @@ reagents: - ReagentId: JuicePotato Quantity: 10 + - type: Tag + tags: + - Potato - type: entity name: tomato @@ -815,6 +818,7 @@ - type: Produce seedId: corn - type: Extractable + grindableSolutionName: food juiceSolution: reagents: - ReagentId: Cornoil @@ -1561,3 +1565,74 @@ seedId: bungo - type: SpaceGarbage - type: BadFood + +- type: entity + parent: FoodProduceBase + id: FoodPeaPod + name: pea pod + description: A duck's favorite treat! + components: + - type: FlavorProfile + flavors: + - peas + - type: SolutionContainerManager + solutions: + food: + maxVol: 5 + reagents: + - ReagentId: Nutriment + Quantity: 3 + - ReagentId: Vitamin + Quantity: 2 + - type: Sprite + sprite: Objects/Specific/Hydroponics/pea.rsi + - type: Produce + seedId: pea + +- type: entity + name: pumpkin + parent: FoodProduceBase + id: FoodPumpkin + description: A large, orange... berry. Seriously. + components: + - type: Item + size: 10 + - type: FlavorProfile + flavors: + - pumpkin + - type: SolutionContainerManager + solutions: + food: + maxVol: 25 + reagents: + - ReagentId: PumpkinFlesh + Quantity: 20 + - ReagentId: Vitamin + Quantity: 5 + - type: Sprite + sprite: Objects/Specific/Hydroponics/pumpkin.rsi + - type: Produce + seedId: pumpkin + - type: Damageable + damageContainer: Biological + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 16 + behaviors: + - !type:PlaySoundBehavior + sound: + collection: desecration + - !type:SpillBehavior + solution: food + - !type:DoActsBehavior + acts: [ "Destruction" ] + - type: Butcherable + butcheringType: Knife + spawned: + - id: CarvedPumpkin + - id: PumpkinSeeds + - type: Tag + tags: + - Fruit \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Food/soup.yml b/Resources/Prototypes/Entities/Objects/Consumable/Food/soup.yml index 92946f6f7a..fa87c5a5a0 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Food/soup.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Food/soup.yml @@ -79,7 +79,7 @@ maxVol: 15 reagents: - ReagentId: Nutriment - Quantity: 8 + Quantity: 10 - ReagentId: Vitamin Quantity: 5 diff --git a/Resources/Prototypes/Entities/Objects/Decoration/flora.yml b/Resources/Prototypes/Entities/Objects/Decoration/flora.yml index 9577cc1c4b..97368a21bd 100644 --- a/Resources/Prototypes/Entities/Objects/Decoration/flora.yml +++ b/Resources/Prototypes/Entities/Objects/Decoration/flora.yml @@ -1,5 +1,6 @@ - type: entity id: BaseRock + name: boulder description: Heavy as a really heavy thing. abstract: true components: @@ -32,7 +33,6 @@ - !type:DoActsBehavior acts: [ "Destruction" ] - - type: entity id: BaseTree description: Yep, it's a tree. @@ -149,7 +149,6 @@ - type: entity parent: BaseRock id: FloraRockSolid01 - name: rock components: - type: Sprite state: rocksolid01 @@ -157,7 +156,6 @@ - type: entity parent: BaseRock id: FloraRockSolid02 - name: rock components: - type: Sprite state: rocksolid02 @@ -165,11 +163,60 @@ - type: entity parent: BaseRock id: FloraRockSolid03 - name: rock components: - type: Sprite state: rocksolid03 +- type: entity + name: stalagmite + description: Natural stone spikes. + parent: BaseRock + id: FloraStalagmite1 + components: + - type: Sprite + sprite: Objects/Decoration/Flora/flora_stalagmite.rsi + state: stalagmite1 + +- type: entity + parent: FloraStalagmite1 + id: FloraStalagmite2 + components: + - type: Sprite + sprite: Objects/Decoration/Flora/flora_stalagmite.rsi + state: stalagmite2 + +- type: entity + parent: FloraStalagmite1 + id: FloraStalagmite3 + components: + - type: Sprite + sprite: Objects/Decoration/Flora/flora_stalagmite.rsi + state: stalagmite3 + +- type: entity + parent: FloraStalagmite1 + id: FloraStalagmite4 + components: + - type: Sprite + sprite: Objects/Decoration/Flora/flora_stalagmite.rsi + state: stalagmite4 + +- type: entity + parent: FloraStalagmite1 + id: FloraStalagmite5 + components: + - type: Sprite + sprite: Objects/Decoration/Flora/flora_stalagmite.rsi + state: stalagmite5 + +- type: entity + parent: FloraStalagmite1 + id: FloraStalagmite6 + components: + - type: Sprite + sprite: Objects/Decoration/Flora/flora_stalagmite.rsi + state: stalagmite6 + - type: entity parent: BaseTree id: FloraTree01 @@ -392,3 +439,48 @@ components: - type: Sprite state: treestumpconifer + +- type: entity + parent: FloraTree01 + id: ShadowTree01 + name: dark wood + description: The leaves are whispering about you. + components: + - type: Sprite + sprite: Objects/Decoration/Flora/flora_shadow_trees.rsi + state: tree01 + +- type: entity + parent: ShadowTree01 + id: ShadowTree02 + components: + - type: Sprite + state: tree02 + +- type: entity + parent: ShadowTree01 + id: ShadowTree03 + components: + - type: Sprite + state: tree03 + +- type: entity + parent: ShadowTree01 + id: ShadowTree04 + components: + - type: Sprite + state: tree04 + +- type: entity + parent: ShadowTree01 + id: ShadowTree05 + components: + - type: Sprite + state: tree05 + +- type: entity + parent: ShadowTree01 + id: ShadowTree06 + components: + - type: Sprite + state: tree06 diff --git a/Resources/Prototypes/Entities/Objects/Decoration/jackolantern.yml b/Resources/Prototypes/Entities/Objects/Decoration/jackolantern.yml new file mode 100644 index 0000000000..1205c202e4 --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Decoration/jackolantern.yml @@ -0,0 +1,61 @@ +- type: entity + parent: BaseItem + id: CarvedPumpkin + name: carved pumpkin + description: A traditional spooky decoration. + components: + - type: Sprite + sprite: Objects/Specific/Hydroponics/pumpkin.rsi + state: carved + - type: Item + size: 10 + - type: Construction + graph: PumpkinAddLight + node: start + +- type: entity + parent: CarvedPumpkin + id: PumpkinLantern + name: jack o' lantern + description: A carved pumpkin, emitting an eerie glow. + components: + - type: Sprite + state: lantern + - type: Appearance + - type: PointLight + enabled: true + color: "#cc6600" + radius: 2.0 + energy: 4.0 + +- type: entity + parent: CarvedPumpkin + id: CarvedPumpkinSmall + suffix: Small + components: + - type: Sprite + scale: 0.75, 0.75 + +- type: entity + parent: CarvedPumpkin + id: CarvedPumpkinLarge + suffix: Large + components: + - type: Sprite + scale: 1.5, 1.5 + +- type: entity + parent: PumpkinLantern + id: PumpkinLanternSmall + suffix: Small + components: + - type: Sprite + scale: 0.75, 0.75 + +- type: entity + parent: PumpkinLantern + id: PumpkinLanternLarge + suffix: Large + components: + - type: Sprite + scale: 1.5, 1.5 \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Objects/Decoration/mining.yml b/Resources/Prototypes/Entities/Objects/Decoration/mining.yml new file mode 100644 index 0000000000..fb5afcd3f5 --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Decoration/mining.yml @@ -0,0 +1,179 @@ +- type: entity + id: WoodenSign + name: wooden sign + description: He's pointing somewhere. + components: + - type: Clickable + - type: InteractionOutline + - type: Sprite + sprite: Objects/Decoration/mines.rsi + state: sign_left + - type: Physics + bodyType: Static + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.35,-0.4,0.35,0.4" + density: 100 + - type: Damageable + damageContainer: Inorganic + damageModifierSet: Wood + - type: MeleeSound + soundGroups: + Brute: + path: /Audio/Effects/chop.ogg + params: + variation: 0.05 + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 50 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - !type:SpawnEntitiesBehavior + spawn: + Log: + min: 1 + max: 1 + +- type: entity + parent: WoodenSign + id: WoodenSignRight + components: + - type: Sprite + sprite: Objects/Decoration/mines.rsi + state: sign_right + +- type: entity + id: WoodenSupport + parent: BaseStructure + name: wooden support + description: Increases your confidence that a rock won't fall on your head. + placement: + mode: SnapgridCenter + components: + - type: Sprite + sprite: Objects/Decoration/mines.rsi + state: support + - type: Damageable + damageContainer: Inorganic + damageModifierSet: Wood + - type: Physics + bodyType: Static + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.1,-0.5,0.1,0.5" + mask: + - FullTileMask + layer: + - WallLayer + density: 1000 + - type: MeleeSound + soundGroups: + Brute: + path: /Audio/Effects/chop.ogg + params: + variation: 0.05 + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 150 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - !type:SpawnEntitiesBehavior + spawn: + Log: + min: 1 + max: 3 + +- type: entity + id: WoodenSupportBeam + name: wooden support beam + parent: WoodenSupport + components: + - type: Sprite + sprite: Objects/Decoration/mines.rsi + state: support_beams + - type: Fixtures + fixtures: + fix1: + hard: false + shape: + !type:PhysShapeAabb + bounds: "-0.5,-0.5,0.5,0.5" + mask: + - FullTileMask + layer: + - WallLayer + density: 1000 + +- type: entity + id: WoodenSupportWall + parent: BaseStructure + name: wooden support wall + description: An old, rotten wall. + placement: + mode: SnapgridCenter + components: + - type: Sprite + sprite: Objects/Decoration/mines.rsi + state: support_wall + - type: Damageable + damageContainer: Inorganic + damageModifierSet: Wood + - type: Physics + bodyType: Static + - type: Fixtures + fixtures: + fix1: + shape: + !type:PhysShapeAabb + bounds: "-0.5,-0.5,0.5,0.5" + mask: + - FullTileMask + layer: + - WallLayer + density: 1000 + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 250 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - !type:SpawnEntitiesBehavior + spawn: + Log: + min: 2 + max: 5 + +- type: entity + id: WoodenSupportWallBroken + parent: WoodenSupportWall + components: + - type: Sprite + sprite: Objects/Decoration/mines.rsi + state: support_wall_broken + - type: Destructible + thresholds: + - trigger: + !type:DamageTrigger + damage: 150 + behaviors: + - !type:DoActsBehavior + acts: [ "Destruction" ] + - !type:SpawnEntitiesBehavior + spawn: + Log: + min: 1 + max: 3 \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Objects/Devices/pda.yml b/Resources/Prototypes/Entities/Objects/Devices/pda.yml index 5d384624c0..b3ffa3e129 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/pda.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/pda.yml @@ -686,7 +686,7 @@ - type: entity parent: CentcomPDA id: DeathsquadPDA - suffix: Deathsquad + suffix: Death Squad components: - type: Pda id: CentcomIDCardDeathsquad diff --git a/Resources/Prototypes/Entities/Objects/Fun/pai.yml b/Resources/Prototypes/Entities/Objects/Fun/pai.yml index 6c0dc8f4ba..b9da6775c9 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/pai.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/pai.yml @@ -80,6 +80,7 @@ - state: pai-base - state: syndicate-pai-off-overlay shader: unshaded + map: ["screen"] - type: ToggleableGhostRole roleName: pai-system-role-name-syndicate roleDescription: pai-system-role-description-syndicate @@ -98,6 +99,34 @@ Searching: { state: syndicate-pai-searching-overlay } On: { state: syndicate-pai-on-overlay } +- type: entity + parent: PersonalAI + id: PotatoAI + name: potato artificial intelligence + description: It's a potato. You forced it to be sentient, you monster. + components: + - type: Sprite + sprite: Objects/Fun/pai.rsi + layers: + - state: potato-base + - state: potato-off-overlay + shader: unshaded + map: ["screen"] + - type: ToggleableGhostRole + roleName: pai-system-role-name-potato + roleDescription: pai-system-role-description-potato + - type: Appearance + - type: GenericVisualizer + visuals: + enum.ToggleableGhostRoleVisuals.Status: + screen: + Off: { state: potato-off-overlay } + Searching: { state: potato-searching-overlay } + On: { state: potato-on-overlay } + - type: Construction + graph: PotatoAI + node: potatoai + - type: entity id: ActionPAIPlayMidi name: Play MIDI diff --git a/Resources/Prototypes/Entities/Objects/Fun/toys.yml b/Resources/Prototypes/Entities/Objects/Fun/toys.yml index c7cb758c64..bdd26d79dc 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/toys.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/toys.yml @@ -94,7 +94,11 @@ description: A cute toy that resembles an even cuter programmer. You'd have to be a monster to grind this up. components: - type: Sprite + sprite: Objects/Fun/toys.rsi state: plushie_h + - type: Item + sprite: Objects/Fun/toys.rsi + heldPrefix: bee - type: Extractable grindableSolutionName: bee - type: SolutionContainerManager @@ -103,6 +107,12 @@ reagents: - ReagentId: GroundBee Quantity: 10 + - type: Clothing + quickEquip: false + sprite: Objects/Fun/toys.rsi + equippedPrefix: bee + slots: + - HEAD - type: entity parent: BasePlushie @@ -168,6 +178,7 @@ radius: 1.5 energy: 2 netsync: false + - type: entity parent: BasePlushie id: PlushieLizard #Weh! diff --git a/Resources/Prototypes/Entities/Objects/Misc/bedsheets.yml b/Resources/Prototypes/Entities/Objects/Misc/bedsheets.yml index 036cacad37..8b8772dc2d 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/bedsheets.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/bedsheets.yml @@ -267,7 +267,7 @@ - type: entity id: BedsheetBrigmedic parent: BedsheetBase - name: Brigmedic's bedsheet + name: Corpsman's bedsheet # DeltaV - rename brigmedic to corpsman description: Not worse than cotton. components: - type: Sprite diff --git a/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml b/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml index 2b8a6436c7..87218d8f0c 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/identification_cards.yml @@ -428,7 +428,7 @@ - type: entity parent: IDCardStandard id: BrigmedicIDCard - name: brigmedic ID card + name: corpsman ID card # DeltaV - rename brigmedic to corpsman components: - type: Sprite layers: @@ -450,6 +450,7 @@ heldPrefix: blue - type: IdCard jobTitle: Central Commander + jobIcon: JobIconNanotrasen - type: Access groups: - AllAccess @@ -499,7 +500,7 @@ - type: entity parent: CentcomIDCard id: CentcomIDCardDeathsquad - name: deathsquad ID card + name: death squad ID card components: - type: Sprite layers: diff --git a/Resources/Prototypes/Entities/Objects/Misc/implanters.yml b/Resources/Prototypes/Entities/Objects/Misc/implanters.yml index 41966ab93f..0ca029a120 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/implanters.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/implanters.yml @@ -12,6 +12,12 @@ containers: implanter_slot: !type:ContainerSlot { } - type: Implanter + whitelist: + components: + - Body # no chair microbomb + blacklist: + components: + - Guardian # no holoparasite macrobomb wombo combo currentMode: Draw implanterSlot: name: Implant @@ -54,6 +60,16 @@ tags: - Trash +- type: entity + parent: Implanter + id: ImplanterAdmeme + suffix: Admeme + components: + - type: Implanter + # go wild with sentient chairs with macrobombs + whitelist: null + blacklist: null + - type: entity id: BaseImplantOnlyImplanter parent: Implanter diff --git a/Resources/Prototypes/Entities/Objects/Misc/potatoai_chip.yml b/Resources/Prototypes/Entities/Objects/Misc/potatoai_chip.yml new file mode 100644 index 0000000000..528aa30a14 --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Misc/potatoai_chip.yml @@ -0,0 +1,17 @@ +- type: entity + id: PotatoAIChip + name: supercompact AI chip + parent: BaseItem + description: This high-tech AI chip requires a voltage of exactly 1.1V to function correctly. + components: + - type: Sprite + sprite: Objects/Misc/potatoai_chip.rsi + state: icon + - type: Item + size: 3 + - type: Tag + tags: + - SmallAIChip + - type: Construction + graph: PotatoAIChip + node: potatoaichip \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml b/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml index 6632010a79..bc7a3a38ad 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/subdermal_implants.yml @@ -21,6 +21,9 @@ noSpawn: true components: - type: SubdermalImplant + whitelist: + components: + - MobState # admeme implanting a chair with trombone implant needs to give the chair mobstate so it can die first - type: TriggerOnMobstateChange mobState: - Dead @@ -81,6 +84,9 @@ noSpawn: true components: - type: SubdermalImplant + whitelist: + components: + - MobState # admeme implanting a chair with tracking implant needs to give the chair mobstate so it can die first - type: SuitSensor randomMode: false controlsLocked: true @@ -109,6 +115,9 @@ components: - type: SubdermalImplant implantAction: ActionOpenStorageImplant + whitelist: + components: + - Hands # no use giving a mouse a storage implant, but a monkey is another story... - type: Item size: 9999 - type: Storage @@ -131,6 +140,9 @@ components: - type: SubdermalImplant implantAction: ActionActivateFreedomImplant + whitelist: + components: + - Cuffable # useless if you cant be cuffed - type: entity parent: BaseSubdermalImplant @@ -141,6 +153,9 @@ components: - type: SubdermalImplant implantAction: ActionOpenUplinkImplant + whitelist: + components: + - Hands # prevent mouse buying grenade penguin since its not telepathic - type: Store preset: StorePresetUplink balance: @@ -174,6 +189,9 @@ components: - type: SubdermalImplant implantAction: ActionActivateDnaScramblerImplant + whitelist: + components: + - HumanoidAppearance # syndies cant turn hamlet into a human #Nuclear Operative/Special Exclusive implants @@ -250,6 +268,9 @@ components: - type: SubdermalImplant permanent: true + whitelist: + components: + - MobState # admeme implanting a chair with rattle implant needs to give the chair mobstate so it can die first - type: TriggerOnMobstateChange mobState: - Critical diff --git a/Resources/Prototypes/Entities/Objects/Misc/torch.yml b/Resources/Prototypes/Entities/Objects/Misc/torch.yml index 0fa918de74..f408d0d289 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/torch.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/torch.yml @@ -74,3 +74,6 @@ maxDuration: 4.0 startValue: 6.0 endValue: 1.0 + - type: Tag + tags: + - Torch \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Objects/Power/powercells.yml b/Resources/Prototypes/Entities/Objects/Power/powercells.yml index 82c1bb37e9..4ed3e207c5 100644 --- a/Resources/Prototypes/Entities/Objects/Power/powercells.yml +++ b/Resources/Prototypes/Entities/Objects/Power/powercells.yml @@ -42,8 +42,15 @@ layers: - state: potato - type: Battery - maxCharge: 200 - startingCharge: 200 + maxCharge: 70 + startingCharge: 70 + - type: Tag + tags: + - DroneUsable + - PotatoBattery + - type: Construction + graph: PowerCellPotato + node: potatobattery - type: entity name: small-capacity power cell diff --git a/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/seeds.yml b/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/seeds.yml index 16d9fd1a64..32697c256c 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/seeds.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Hydroponics/seeds.yml @@ -497,4 +497,25 @@ - type: Seed seedId: bungo - type: Sprite - sprite: Objects/Specific/Hydroponics/bungo.rsi \ No newline at end of file + sprite: Objects/Specific/Hydroponics/bungo.rsi + +- type: entity + parent: SeedBase + id: PeaSeeds + name: packet of pea pods + description: "These humble plants were once a vital part in the study of genetics." + components: + - type: Seed + seedId: pea + - type: Sprite + sprite: Objects/Specific/Hydroponics/pea.rsi + +- type: entity + parent: SeedBase + name: packet of pumpkin seeds + id: PumpkinSeeds + components: + - type: Seed + seedId: pumpkin + - type: Sprite + sprite: Objects/Specific/Hydroponics/pumpkin.rsi diff --git a/Resources/Prototypes/Entities/Objects/Specific/Robotics/mmi.yml b/Resources/Prototypes/Entities/Objects/Specific/Robotics/mmi.yml index 6382d69e58..b4e69b3780 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/Robotics/mmi.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/Robotics/mmi.yml @@ -116,4 +116,4 @@ base: Off: { state: posibrain } Searching: { state: posibrain-searching } - On: { state: posibrain-occupied } + On: { state: posibrain-occupied } \ No newline at end of file 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 461a6cc437..38875ee9a7 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Guns/Battery/battery_guns.yml @@ -131,7 +131,7 @@ name: pulse pistol parent: BaseWeaponBatterySmall id: WeaponPulsePistol - description: A state of the art energy pistol favoured as a sidearm by the NT-ERT operatives. + description: A state of the art energy pistol favoured as a sidearm by the NT operatives. components: - type: Sprite sprite: Objects/Weapons/Guns/Battery/pulse_pistol.rsi @@ -464,7 +464,7 @@ path: /Audio/Weapons/Guns/Gunshots/taser2.ogg - type: ProjectileBatteryAmmoProvider proto: AnomalousParticleDeltaStrong - fireCost: 100 + fireCost: 100 - type: BatteryWeaponFireModes fireModes: - proto: AnomalousParticleDeltaStrong @@ -476,13 +476,13 @@ - type: Construction graph: UpgradeWeaponPistolCHIMP node: start - + - type: entity name: experimental C.H.I.M.P. handcannon parent: WeaponPistolCHIMP id: WeaponPistolCHIMPUpgraded description: This C.H.I.M.P. seems to have a greater punch than is usual... - components: + components: - type: BatteryWeaponFireModes fireModes: - proto: AnomalousParticleDeltaStrong @@ -490,7 +490,7 @@ - proto: AnomalousParticleEpsilonStrong fireCost: 100 - proto: AnomalousParticleOmegaStrong - fireCost: 100 + fireCost: 100 - proto: AnomalousParticleZetaStrong fireCost: 100 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml index 079d09ab99..2d0bd0fa8e 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/e_sword.yml @@ -209,7 +209,9 @@ sprite: Objects/Weapons/Melee/e_sword_double.rsi - type: Reflect enabled: true - reflectProb: .75 + reflectProb: .80 #DeltaV: 80% Energy Reflection but no ballistics. spread: 75 + reflects: + - Energy #DeltaV: 80% Energy Reflection but no ballistics. - type: UseDelay delay: 1 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/fireaxe.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/fireaxe.yml index 6d27e3e7d6..1a634e42fb 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Melee/fireaxe.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/fireaxe.yml @@ -12,7 +12,7 @@ sprite: Objects/Weapons/Melee/fireaxe.rsi state: icon - type: MeleeWeapon - wideAnimationRotation: -90 + wideAnimationRotation: 90 swingLeft: true attackRate: 0.75 damage: diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Melee/sledgehammer.yml b/Resources/Prototypes/Entities/Objects/Weapons/Melee/sledgehammer.yml new file mode 100644 index 0000000000..8a3754c035 --- /dev/null +++ b/Resources/Prototypes/Entities/Objects/Weapons/Melee/sledgehammer.yml @@ -0,0 +1,22 @@ +- type: entity + name: sledgehammer + parent: BaseItem + id: Sledgehammer + description: The perfect tool for wanton carnage. + components: + - type: Sprite + sprite: Objects/Weapons/Melee/sledgehammer.rsi + state: icon + - type: MeleeWeapon + damage: + types: + Blunt: 14 + Structural: 15 + - type: Wieldable + - type: IncreaseDamageOnWield + damage: + types: + Blunt: 10 + Structural: 60 + - type: Item + size: 80 diff --git a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/bola.yml b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/bola.yml index 1afb564036..ebd568c3b8 100644 --- a/Resources/Prototypes/Entities/Objects/Weapons/Throwable/bola.yml +++ b/Resources/Prototypes/Entities/Objects/Weapons/Throwable/bola.yml @@ -13,8 +13,6 @@ sound: /Audio/Weapons/bolathrow.ogg - type: EmitSoundOnLand sound: /Audio/Effects/snap.ogg - - type: StaminaDamageOnCollide - damage: 80 - type: Construction graph: Bola node: bola @@ -39,11 +37,13 @@ - type: DamageOnLand damage: types: - Blunt: 3 + Blunt: 5 - type: Ensnaring freeTime: 2.0 breakoutTime: 3.5 #all bola should generally be fast to remove walkSpeed: 0.7 #makeshift bola shouldn't slow too much sprintSpeed: 0.7 + staminaDamage: 55 # Sudden weight increase sapping stamina canThrowTrigger: true + canMoveBreakout: true diff --git a/Resources/Prototypes/Entities/Stations/base.yml b/Resources/Prototypes/Entities/Stations/base.yml index 272ed6712c..ae84ceac65 100644 --- a/Resources/Prototypes/Entities/Stations/base.yml +++ b/Resources/Prototypes/Entities/Stations/base.yml @@ -71,10 +71,7 @@ abstract: true components: - type: SiliconLawProvider - laws: - - Crewsimov1 - - Crewsimov2 - - Crewsimov3 + laws: Crewsimov - type: entity id: BaseStationAllEventsEligible diff --git a/Resources/Prototypes/Entities/Structures/Decoration/crystals.yml b/Resources/Prototypes/Entities/Structures/Decoration/crystals.yml index b8f2a03a05..4afe06c8a5 100644 --- a/Resources/Prototypes/Entities/Structures/Decoration/crystals.yml +++ b/Resources/Prototypes/Entities/Structures/Decoration/crystals.yml @@ -7,6 +7,7 @@ - type: Sprite sprite: Structures/Decoration/crystal.rsi state: crystal_green + noRot: true - type: Reflect reflectProb: 0.5 reflects: diff --git a/Resources/Prototypes/Entities/Structures/Lighting/ground_lighting.yml b/Resources/Prototypes/Entities/Structures/Lighting/ground_lighting.yml index 3fd833ff5f..6eda921ca4 100644 --- a/Resources/Prototypes/Entities/Structures/Lighting/ground_lighting.yml +++ b/Resources/Prototypes/Entities/Structures/Lighting/ground_lighting.yml @@ -124,6 +124,8 @@ damage: types: Heat: 20 + - type: PointLight + enabled: true - type: StaticPrice price: 25 - type: AmbientOnPowered diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index 85448a4b5b..e259d6f7a2 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -388,6 +388,7 @@ # - MetempsychoticMachineCircuitboard - DeepFryerMachineCircuitboard # End Nyano additions + - SalvageExpeditionsComputerCircuitboard # DeltaV - type: MaterialStorage whitelist: tags: @@ -528,6 +529,7 @@ layers: - state: icon map: ["enum.LatheVisualLayers.IsRunning"] + - state: sec - state: unlit shader: unshaded map: ["enum.PowerDeviceVisualLayers.Powered"] diff --git a/Resources/Prototypes/Entities/Structures/Power/Generation/portable_generator.yml b/Resources/Prototypes/Entities/Structures/Power/Generation/portable_generator.yml index 261b9a344c..c49497b774 100644 --- a/Resources/Prototypes/Entities/Structures/Power/Generation/portable_generator.yml +++ b/Resources/Prototypes/Entities/Structures/Power/Generation/portable_generator.yml @@ -96,19 +96,26 @@ parent: PortableGeneratorBase id: PortableGeneratorSwitchableBase components: - - type: PowerSwitchableGenerator - switchSound: - path: /Audio/Machines/button.ogg - - type: NodeContainer - examinable: true - nodes: - output_hv: - !type:CableDeviceNode - nodeGroupID: HVPower - output_mv: - !type:CableDeviceNode - nodeGroupID: MVPower - enabled: false + - type: PowerSwitchable + examineText: power-switchable-generator-examine + switchText: power-switchable-generator-switched + cables: + - voltage: HV + node: output_hv + - voltage: MV + node: output_mv + - type: UseDelay + delay: 1 + - type: NodeContainer + examinable: true + nodes: + output_hv: + !type:CableDeviceNode + nodeGroupID: HVPower + output_mv: + !type:CableDeviceNode + nodeGroupID: MVPower + enabled: false - type: entity name: P.A.C.M.A.N.-type portable generator diff --git a/Resources/Prototypes/Entities/Structures/Power/chargers.yml b/Resources/Prototypes/Entities/Structures/Power/chargers.yml index e5edc63df3..7630610bd8 100644 --- a/Resources/Prototypes/Entities/Structures/Power/chargers.yml +++ b/Resources/Prototypes/Entities/Structures/Power/chargers.yml @@ -85,6 +85,9 @@ whitelist: components: - PowerCell + blacklist: + tags: + - PotatoBattery - type: entity parent: BaseItemRecharger diff --git a/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/lockers.yml b/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/lockers.yml index 5f3c4787c9..7f145b984d 100644 --- a/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/lockers.yml +++ b/Resources/Prototypes/Entities/Structures/Storage/Closets/Lockers/lockers.yml @@ -313,7 +313,7 @@ - type: entity id: LockerBrigmedic parent: LockerBaseSecure - name: brigmedic locker + name: corpsman locker # DeltaV - rename brigmedic to corpsman components: - type: Appearance - type: EntityStorageVisuals diff --git a/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml b/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml index 9b513b2da1..ac12dc2717 100644 --- a/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml +++ b/Resources/Prototypes/Entities/Structures/Walls/asteroid.yml @@ -379,6 +379,7 @@ # Basalt variants - type: entity id: WallRockBasalt + name: basalt parent: WallRock components: - type: Sprite @@ -574,6 +575,7 @@ # Snow variants - type: entity id: WallRockSnow + name: snowdrift parent: WallRock components: - type: Sprite @@ -770,6 +772,7 @@ # Sand variants - type: entity id: WallRockSand + name: sandstone parent: WallRock components: - type: Sprite @@ -965,6 +968,7 @@ # Chromite variants - type: entity id: WallRockChromite + name: chromite parent: WallRock components: - type: Sprite @@ -1000,7 +1004,7 @@ state: rock_chromite_north - map: [ "enum.EdgeLayer.West" ] state: rock_chromite_west - - state: rock_chromite + - state: rock_gold - type: entity id: WallRockChromitePlasma @@ -1160,6 +1164,7 @@ # Andesite variants - type: entity id: WallRockAndesite + name: andesite parent: WallRock components: - type: Sprite @@ -1195,7 +1200,7 @@ state: rock_andesite_north - map: [ "enum.EdgeLayer.West" ] state: rock_andesite_west - - state: rock_andesite + - state: rock_gold - type: entity id: WallRockAndesitePlasma diff --git a/Resources/Prototypes/Entities/Structures/Windows/window.yml b/Resources/Prototypes/Entities/Structures/Windows/window.yml index 4bd40f1c53..93f9fa1493 100644 --- a/Resources/Prototypes/Entities/Structures/Windows/window.yml +++ b/Resources/Prototypes/Entities/Structures/Windows/window.yml @@ -126,7 +126,7 @@ fix1: shape: !type:PhysShapeAabb - bounds: "-0.49,-0.39,0.49,-0.36" + bounds: "-0.49,-0.49,0.49,-0.36" density: 1500 mask: - FullTileMask diff --git a/Resources/Prototypes/Entities/Tiles/chasm.yml b/Resources/Prototypes/Entities/Tiles/chasm.yml index 2347532587..23f3ad8395 100644 --- a/Resources/Prototypes/Entities/Tiles/chasm.yml +++ b/Resources/Prototypes/Entities/Tiles/chasm.yml @@ -18,12 +18,12 @@ anchored: true - type: Clickable - type: Sprite - sprite: Tiles/Planet/chasm.rsi + sprite: Tiles/Planet/Chasms/basalt_chasm.rsi drawdepth: BelowFloor layers: - state: chasm - type: Icon - sprite: Tiles/Planet/chasm.rsi + sprite: Tiles/Planet/Chasms/basalt_chasm.rsi state: full - type: IconSmooth key: chasm @@ -45,3 +45,33 @@ - type: Tag tags: - HideContextMenu + +- type: entity + parent: FloorChasmEntity + id: FloorChromiteChasm + suffix: Chromite + components: + - type: Sprite + sprite: Tiles/Planet/Chasms/chromite_chasm.rsi + - type: Icon + sprite: Tiles/Planet/Chasms/chromite_chasm.rsi + +- type: entity + parent: FloorChasmEntity + id: FloorDesertChasm + suffix: Desert + components: + - type: Sprite + sprite: Tiles/Planet/Chasms/desert_chasm.rsi + - type: Icon + sprite: Tiles/Planet/Chasms/desert_chasm.rsi + +- type: entity + parent: FloorChasmEntity + id: FloorSnowChasm + suffix: Snow + components: + - type: Sprite + sprite: Tiles/Planet/Chasms/snow_chasm.rsi + - type: Icon + sprite: Tiles/Planet/Chasms/snow_chasm.rsi \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Tiles/shadow_basalt.yml b/Resources/Prototypes/Entities/Tiles/shadow_basalt.yml new file mode 100644 index 0000000000..e5835239cf --- /dev/null +++ b/Resources/Prototypes/Entities/Tiles/shadow_basalt.yml @@ -0,0 +1,83 @@ +- type: entity + id: ShadowBasaltOne + name: shadowstone + description: Cold rock + placement: + mode: SnapgridCenter + components: + - type: Clickable + - type: Sprite + sprite: /Textures/Tiles/Planet/shadowbasalt.rsi + layers: + - state: basalt1 + shader: unshaded + drawdepth: LowFloors + - type: SyncSprite + - type: RequiresTile + - type: Transform + anchored: true + - type: Tag + tags: + - HideContextMenu + +- type: entity + id: ShadowBasaltTwo + parent: BasaltOne + placement: + mode: SnapgridCenter + components: + - type: Sprite + layers: + - state: basalt2 + shader: unshaded + +- type: entity + id: ShadowBasaltThree + parent: BasaltOne + placement: + mode: SnapgridCenter + components: + - type: Sprite + layers: + - state: basalt3 + shader: unshaded + +- type: entity + id: ShadowBasaltFour + parent: BasaltOne + placement: + mode: SnapgridCenter + components: + - type: Sprite + layers: + - state: basalt4 + shader: unshaded + +- type: entity + id: ShadowBasaltFive + parent: BasaltOne + placement: + mode: SnapgridCenter + components: + - type: Sprite + layers: + - state: basalt5 + shader: unshaded + +- type: entity + id: ShadowBasaltRandom + parent: ShadowBasaltOne + suffix: Random + components: + - type: RandomSprite + available: + - 0: + basalt1: "" + - 0: + basalt2: "" + - 0: + basalt3: "" + - 0: + basalt4: "" + - 0: + basalt5: "" \ No newline at end of file diff --git a/Resources/Prototypes/Flavors/flavors.yml b/Resources/Prototypes/Flavors/flavors.yml index fc3b0ba577..ba8f2c3476 100644 --- a/Resources/Prototypes/Flavors/flavors.yml +++ b/Resources/Prototypes/Flavors/flavors.yml @@ -843,3 +843,8 @@ id: lostfriendship flavorType: Complex description: flavor-complex-lost-friendship + +- type: flavor + id: pumpkin + flavorType: Complex + description: flavor-complex-pumpkin \ No newline at end of file diff --git a/Resources/Prototypes/GameRules/events.yml b/Resources/Prototypes/GameRules/events.yml index 298176306d..371b2e2a4c 100644 --- a/Resources/Prototypes/GameRules/events.yml +++ b/Resources/Prototypes/GameRules/events.yml @@ -4,7 +4,7 @@ noSpawn: true components: - type: StationEvent - weight: 10 + weight: 12 # DeltaV - was 10 startDelay: 30 duration: 35 - type: AnomalySpawnRule @@ -55,16 +55,16 @@ # duration: 1 # - type: BureaucraticErrorRule -- type: entity - parent: BaseGameRule - id: ClosetSkeleton - noSpawn: true - components: - - type: StationEvent - weight: 10 - duration: 1 - - type: RandomEntityStorageSpawnRule - prototype: MobSkeletonCloset +#- type: entity +# parent: BaseGameRule # DeltaV - this shit is busted most of the time +# id: ClosetSkeleton +# noSpawn: true +# components: +# - type: StationEvent +# weight: 10 +# duration: 1 +# - type: RandomEntityStorageSpawnRule +# prototype: MobSkeletonCloset - type: entity parent: BaseGameRule @@ -72,7 +72,7 @@ noSpawn: true components: - type: StationEvent - weight: 5 + weight: 1 # DeltaV - was 5 duration: 1 earliestStart: 45 reoccurrenceDelay: 60 @@ -86,7 +86,7 @@ noSpawn: true components: - type: StationEvent - weight: 10 + weight: 5 # DeltaV - was 10 duration: 1 earliestStart: 30 reoccurrenceDelay: 60 @@ -124,7 +124,7 @@ - type: StationEvent startAnnouncement: station-event-gas-leak-start-announcement startAudio: - path: /Audio/Announcements/attention.ogg + path: /Audio/Announcements/gas_leak.ogg # DeltaV - custom announcer endAnnouncement: station-event-gas-leak-end-announcement earliestStart: 10 minimumPlayers: 5 @@ -253,7 +253,7 @@ - type: StationEvent startAnnouncement: station-event-vent-clog-start-announcement startAudio: - path: /Audio/Announcements/attention.ogg + path: /Audio/Announcements/ventclog.ogg # DeltaV - custom announcer earliestStart: 15 minimumPlayers: 15 weight: 5 @@ -337,7 +337,7 @@ components: - type: StationEvent earliestStart: 50 - weight: 5 + weight: 2.5 # DeltaV - was 5 duration: 1 - type: ZombieRule minStartDelay: 0 #let them know immediately @@ -389,3 +389,18 @@ # earliestStart: 45 # minimumPlayers: 20 # - type: ImmovableRodRule + +- type: entity + noSpawn: true + parent: BaseGameRule + id: IonStorm + components: + - type: StationEvent + weight: 5 + earliestStart: 20 + reoccurrenceDelay: 60 + startAnnouncement: station-event-ion-storm-start-announcement + startAudio: + path: /Audio/Announcements/attention.ogg # ion_storm.ogg does not use our announcer + duration: 1 + - type: IonStormRule diff --git a/Resources/Prototypes/Guidebook/science.yml b/Resources/Prototypes/Guidebook/science.yml index 03840ec15e..4fed3bd3b9 100644 --- a/Resources/Prototypes/Guidebook/science.yml +++ b/Resources/Prototypes/Guidebook/science.yml @@ -8,6 +8,7 @@ - Xenoarchaeology - Robotics - MachineUpgrading + - ReverseEngineering # Nyanotrasen - Reverse Engineering guidebook - type: guideEntry id: Technologies diff --git a/Resources/Prototypes/Hydroponics/seeds.yml b/Resources/Prototypes/Hydroponics/seeds.yml index 8e1c6c9328..20d3f2d853 100644 --- a/Resources/Prototypes/Hydroponics/seeds.yml +++ b/Resources/Prototypes/Hydroponics/seeds.yml @@ -1137,7 +1137,7 @@ Nutriment: Min: 1 Max: 3 - PotencyDivisor: 25 + PotencyDivisor: 25 - type: seed id: koibean @@ -1302,3 +1302,58 @@ Min: 5 Max: 10 PotencyDivisor: 20 + +- type: seed + id: pea + name: seeds-pea-name + noun: seeds-noun-seeds + displayName: seeds-pea-display-name + plantRsi: Objects/Specific/Hydroponics/pea.rsi + packetPrototype: PeaSeeds + productPrototypes: + - FoodPeaPod + lifespan: 25 + growthStages: 3 + maturation: 8 + production: 6 + yield: 3 + potency: 25 + idealLight: 8 + harvestRepeat: Repeat + nutrientConsumption: 0.5 + waterConsumption: 0.5 + chemicals: + Nutriment: + Min: 1 + Max: 3 + PotencyDivisor: 33 + Vitamin: + Min: 1 + Max: 2 + PotencyDivisor: 50 + +- type: seed + id: pumpkin + name: seeds-pumpkin-name + noun: seeds-noun-seeds + displayName: seeds-pumpkin-display-name + plantRsi: Objects/Specific/Hydroponics/pumpkin.rsi + packetPrototype: PumpkinSeeds + productPrototypes: + - FoodPumpkin + lifespan: 55 + maturation: 10 + production: 4 + yield: 2 + potency: 10 + idealHeat: 288 + growthStages: 3 + chemicals: + PumpkinFlesh: + Min: 1 + Max: 20 + PotencyDivisor: 5 + Vitamin: + Min: 1 + Max: 5 + PotencyDivisor: 20 diff --git a/Resources/Prototypes/Maps/Pools/default.yml b/Resources/Prototypes/Maps/Pools/default.yml index 54912b20e8..c9df732ef5 100644 --- a/Resources/Prototypes/Maps/Pools/default.yml +++ b/Resources/Prototypes/Maps/Pools/default.yml @@ -16,7 +16,8 @@ #- Saltern #- Packed # DeltaV - - Pebble + - Arena + - Asterisk - Edge + - Pebble - Tortuga - - Arena diff --git a/Resources/Prototypes/Maps/arena.yml b/Resources/Prototypes/Maps/arena.yml index b556b843c6..1d37ca0d35 100644 --- a/Resources/Prototypes/Maps/arena.yml +++ b/Resources/Prototypes/Maps/arena.yml @@ -36,7 +36,8 @@ Paramedic: [ 1, 2 ] Psychologist: [ 1, 1 ] #security - # Detective: [ 1, 1 ] No office yet + Brigmedic: [ 1, 1 ] + Detective: [ 1, 1 ] Gladiator: [ 0, 2 ] HeadOfSecurity: [ 1, 1 ] #Prisoner: [ 1, 2 ] diff --git a/Resources/Prototypes/Maps/asterisk.yml b/Resources/Prototypes/Maps/asterisk.yml new file mode 100644 index 0000000000..bccacc3c30 --- /dev/null +++ b/Resources/Prototypes/Maps/asterisk.yml @@ -0,0 +1,65 @@ +- type: gameMap + id: Asterisk + mapName: 'Asterisk' + mapPath: /Maps/asterisk.yml + minPlayers: 0 + maxPlayers: 55 + stations: + Asterisk: + stationProto: StandardNanotrasenStation + components: + - type: StationEmergencyShuttle + emergencyShuttlePath: /Maps/Shuttles/emergency_lox.yml + - type: StationNameSetup + mapNameTemplate: '{0} Asterisk Station {1}' + nameGenerator: + !type:NanotrasenNameGenerator + prefixCreator: '14' + - type: StationJobs + overflowJobs: + - Passenger + availableJobs: + #service + Captain: [ 1, 1 ] + HeadOfPersonnel: [ 1, 1 ] + Bartender: [ 1, 2 ] + Botanist: [ 2, 3 ] + Chef: [ 1, 2 ] + Clown: [ 1, 1 ] + Lawyer: [ 1, 1 ] + Reporter: [ 1, 1 ] + Musician: [ 1, 1 ] + Janitor: [ 1, 2 ] + Mime: [ 1, 1 ] + #engineering + ChiefEngineer: [ 1, 1 ] + AtmosphericTechnician: [ 1, 1 ] #back by popular demand + StationEngineer: [ 3, 3 ] + TechnicalAssistant: [ 2, 4 ] + #medical + ChiefMedicalOfficer: [ 1, 1 ] + Chemist: [ 1, 2 ] + Paramedic: [ 1, 2 ] + MedicalDoctor: [ 2, 3 ] + MedicalIntern: [ 2, 3 ] + #science + ResearchDirector: [ 1, 1 ] + Chaplain: [ 1, 1 ] + ForensicMantis: [ 1, 1 ] + Scientist: [ 2, 3 ] + ResearchAssistant: [ 2, 3 ] + Borg: [ 1, 2 ] + #security + HeadOfSecurity: [ 1, 1 ] + Warden: [ 1, 1 ] + Detective: [ 1, 1 ] + Brigmedic: [ 1, 1 ] + SecurityOfficer: [ 2, 3 ] + SecurityCadet: [ 1, 3 ] + #supply + Quartermaster: [ 1, 1 ] + MailCarrier: [ 1, 2 ] + SalvageSpecialist: [ 2, 3 ] + CargoTechnician: [ 2, 4 ] + #civilian + Passenger: [ -1, -1 ] diff --git a/Resources/Prototypes/Maps/pebble.yml b/Resources/Prototypes/Maps/pebble.yml index 693de4a95a..b97c68b95c 100644 --- a/Resources/Prototypes/Maps/pebble.yml +++ b/Resources/Prototypes/Maps/pebble.yml @@ -3,7 +3,7 @@ mapName: 'Pebble' mapPath: /Maps/pebble.yml minPlayers: 0 - maxPlayers: 25 + maxPlayers: 30 stations: PebbleStation: stationProto: StandardNanotrasenStation diff --git a/Resources/Prototypes/Nyanotrasen/Actions/types.yml b/Resources/Prototypes/Nyanotrasen/Actions/types.yml index 7a2377d3c8..e6e4bdc5a7 100644 --- a/Resources/Prototypes/Nyanotrasen/Actions/types.yml +++ b/Resources/Prototypes/Nyanotrasen/Actions/types.yml @@ -46,6 +46,7 @@ useDelay: 60 checkCanAccess: false range: 8 + itemIconStyle: BigAction event: !type:MassSleepPowerActionEvent - type: entity @@ -84,6 +85,7 @@ icon: Nyanotrasen/Interface/VerbIcons/noospheric_zap.png useDelay: 100 range: 5 + itemIconStyle: BigAction event: !type:NoosphericZapPowerActionEvent - type: entity @@ -97,6 +99,7 @@ useDelay: 50 range: 6 checkCanAccess: false + itemIconStyle: BigAction event: !type:PyrokinesisPowerActionEvent - type: entity diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/mobs.yml b/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/mobs.yml index 5d36ce7614..8e6abe48e3 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/mobs.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Markers/Spawners/Random/mobs.yml @@ -14,7 +14,7 @@ - MobCarp - MobCarpMagic - MobCarpHolo - - MobCarpMagic + - MobCarpRainbow - type: entity name: NPC Snake Spawner @@ -88,12 +88,13 @@ name: Xeno Spawner id: XenoAISpawner parent: MarkerBase + suffix: No Ghost Takeover components: - type: Sprite layers: - state: red - sprite: Mobs/Aliens/Xenos/burrower.rsi - state: crit + state: walking - state: ai - type: RandomSpawner prototypes: @@ -107,3 +108,87 @@ rarePrototypes: - MobXenoQueenNPC rareChance: 0.10 + +- type: entity + name: Argocyte Spawner + id: ArgocyteAISpawner + parent: MarkerBase + components: + - type: Sprite + layers: + - state: red + - sprite: Mobs/Aliens/Argocyte/argocyte_common.rsi + state: crawler + - state: ai + - type: RandomSpawner + prototypes: + - MobArgocyteSkitter + - MobArgocyteSwiper + - MobArgocyteMolder + - MobArgocytePouncer + - MobArgocyteGlider + - MobArgocyteHarvester + - MobArgocyteCrawler + - MobArgocyteFounder + rarePrototypes: + - MobArgocyteLeviathing + rareChance: 0.10 + +- type: entity + name: Watcher Spawner + id: WatcherAISpawner + parent: MarkerBase + components: + - type: Sprite + layers: + - state: red + - sprite: Mobs/Aliens/Lavaland/watcher.rsi + state: unshaded + - state: ai + - type: RandomSpawner + prototypes: + - MobWatcherLavaland + - MobWatcherIcewing + - MobWatcherMagmawing + rarePrototypes: + - MobWatcherPride + rareChance: 0.10 + +- type: entity + name: Space Creature Spawner + id: SpaceCreatureAISpawner + parent: MarkerBase + suffix: No Ghost Takeover + components: + - type: Sprite + layers: + - state: red + - sprite: Mobs/Animals/spacespider.rsi + state: spacespider + - state: ai + - type: RandomSpawner + prototypes: + - MobBearSpaceNPC + - MobKangarooSpaceNPC + - MobSpiderSpaceNPC + +- type: entity + name: Arena Spawner + id: ArenaSpawner + parent: MarkerBase + components: + - type: Sprite + layers: + - state: red + - sprite: Mobs/Animals/kangaroo.rsi + state: kangaroo-space + - state: ai + - type: RandomSpawner + prototypes: + - SpaceCreatureAISpawner + - WatcherAISpawner + - ArgocyteAISpawner + - SpawnMobOreCrab + rarePrototypes: + - MobLaserRaptor + rareChance: 0.10 diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Mobs/Customization/Markings/moth.yml b/Resources/Prototypes/Nyanotrasen/Entities/Mobs/Customization/Markings/moth.yml new file mode 100644 index 0000000000..0bed0b02b4 --- /dev/null +++ b/Resources/Prototypes/Nyanotrasen/Entities/Mobs/Customization/Markings/moth.yml @@ -0,0 +1,1891 @@ +# Antennas +- type: marking + id: MothAntennasClassicAspen + bodyPart: HeadTop + markingCategory: HeadTop + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi + state: aspen + +- type: marking + id: MothAntennasClassicBrown + bodyPart: HeadTop + markingCategory: HeadTop + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi + state: brown + +- type: marking + id: MothAntennasClassicDeathshead + bodyPart: HeadTop + markingCategory: HeadTop + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi + state: deathshead + +- type: marking + id: MothAntennasClassicFeathery + bodyPart: HeadTop + markingCategory: HeadTop + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi + state: feathery + +- type: marking + id: MothAntennasClassicFirewatch + bodyPart: HeadTop + markingCategory: HeadTop + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi + state: firewatch + +- type: marking + id: MothAntennasClassicGothic + bodyPart: HeadTop + markingCategory: HeadTop + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi + state: gothic + +- type: marking + id: MothAntennasClassicJungle + bodyPart: HeadTop + markingCategory: HeadTop + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi + state: jungle + +- type: marking + id: MothAntennasClassicLovers + bodyPart: HeadTop + markingCategory: HeadTop + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi + state: lovers + +- type: marking + id: MothAntennasClassicMint + bodyPart: HeadTop + markingCategory: HeadTop + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi + state: mint + +- type: marking + id: MothAntennasClassicMoffra + bodyPart: HeadTop + markingCategory: HeadTop + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi + state: moffra + +- type: marking + id: MothAntennasClassicMoonfly + bodyPart: HeadTop + markingCategory: HeadTop + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi + state: moonfly + +- type: marking + id: MothAntennasClassicOakworm + bodyPart: HeadTop + markingCategory: HeadTop + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi + state: oakworm + +- type: marking + id: MothAntennasClassicPlain + bodyPart: HeadTop + markingCategory: HeadTop + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi + state: plain + +- type: marking + id: MothAntennasClassicPlasmafire + bodyPart: HeadTop + markingCategory: HeadTop + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi + state: plasmafire + +- type: marking + id: MothAntennasClassicPoison + bodyPart: HeadTop + markingCategory: HeadTop + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi + state: poison + +- type: marking + id: MothAntennasClassicReddish + bodyPart: HeadTop + markingCategory: HeadTop + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi + state: reddish + +- type: marking + id: MothAntennasClassicRegal + bodyPart: HeadTop + markingCategory: HeadTop + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi + state: regal + +- type: marking + id: MothAntennasClassicRosy + bodyPart: HeadTop + markingCategory: HeadTop + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi + state: rosy + +- type: marking + id: MothAntennasClassicRoyal + bodyPart: HeadTop + markingCategory: HeadTop + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi + state: royal + +- type: marking + id: MothAntennasClassicSnow + bodyPart: HeadTop + markingCategory: HeadTop + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi + state: snow + +- type: marking + id: MothAntennasClassicWhitefly + bodyPart: HeadTop + markingCategory: HeadTop + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi + state: whitefly + +- type: marking + id: MothAntennasClassicWitchking + bodyPart: HeadTop + markingCategory: HeadTop + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi + state: witchking + +# Wings +- type: marking + id: MothWingsClassicAspen + bodyPart: Tail + markingCategory: Tail + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi + state: aspen + +- type: marking + id: MothWingsClassicAtlas + bodyPart: Tail + markingCategory: Tail + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi + state: atlas + +- type: marking + id: MothWingsClassicBrown + bodyPart: Tail + markingCategory: Tail + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi + state: brown + +- type: marking + id: MothWingsClassicDeathshead + bodyPart: Tail + markingCategory: Tail + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi + state: deathshead + +- type: marking + id: MothWingsClassicFeathery + bodyPart: Tail + markingCategory: Tail + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi + state: feathery + +- type: marking + id: MothWingsClassicFirewatch + bodyPart: Tail + markingCategory: Tail + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi + state: firewatch + +- type: marking + id: MothWingsClassicGothic + bodyPart: Tail + markingCategory: Tail + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi + state: gothic + +- type: marking + id: MothWingsClassicJungle + bodyPart: Tail + markingCategory: Tail + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi + state: jungle + +- type: marking + id: MothWingsClassicLovers + bodyPart: Tail + markingCategory: Tail + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi + state: lovers + +- type: marking + id: MothWingsClassicLuna + bodyPart: Tail + markingCategory: Tail + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi + state: luna + +- type: marking + id: MothWingsClassicMint + bodyPart: Tail + markingCategory: Tail + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi + state: mint + +- type: marking + id: MothWingsClassicMoffra + bodyPart: Tail + markingCategory: Tail + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi + state: moffra + +- type: marking + id: MothWingsClassicMonarch + bodyPart: Tail + markingCategory: Tail + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi + state: monarch + +- type: marking + id: MothWingsClassicMoonfly + bodyPart: Tail + markingCategory: Tail + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi + state: moonfly + +- type: marking + id: MothWingsClassicOakworm + bodyPart: Tail + markingCategory: Tail + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi + state: oakworm + +- type: marking + id: MothWingsClassicPlain + bodyPart: Tail + markingCategory: Tail + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi + state: plain + +- type: marking + id: MothWingsClassicPlasmafire + bodyPart: Tail + markingCategory: Tail + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi + state: plasmafire + +- type: marking + id: MothWingsClassicPoison + bodyPart: Tail + markingCategory: Tail + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi + state: poison + +- type: marking + id: MothWingsClassicRagged + bodyPart: Tail + markingCategory: Tail + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi + state: ragged + +- type: marking + id: MothWingsClassicReddish + bodyPart: Tail + markingCategory: Tail + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi + state: reddish + +- type: marking + id: MothWingsClassicRosy + bodyPart: Tail + markingCategory: Tail + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi + state: rosy + +- type: marking + id: MothWingsClassicRoyal + bodyPart: Tail + markingCategory: Tail + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi + state: royal + +- type: marking + id: MothWingsClassicSnow + bodyPart: Tail + markingCategory: Tail + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi + state: snow + +- type: marking + id: MothWingsClassicWhitefly + bodyPart: Tail + markingCategory: Tail + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi + state: whitefly + +- type: marking + id: MothWingsClassicWitchking + bodyPart: Tail + markingCategory: Tail + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi + state: witchking + +# Body Markings +# Deathshead +- type: marking + id: MothHeadClassicDeathshead + bodyPart: Head + markingCategory: Head + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: deathshead-head + +- type: marking + id: MothChestClassicDeathshead + bodyPart: Chest + markingCategory: Chest + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: deathshead-chest + +- type: marking + id: MothLArmClassicDeathshead + bodyPart: LArm + markingCategory: Arms + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: deathshead-leftarm + +- type: marking + id: MothRArmClassicDeathshead + bodyPart: RArm + markingCategory: Arms + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: deathshead-rightarm + +- type: marking + id: MothLLegClassicDeathshead + bodyPart: LLeg + markingCategory: Legs + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: deathshead-leftleg + +- type: marking + id: MothRLegClassicDeathshead + bodyPart: RLeg + markingCategory: Legs + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: deathshead-rightleg + + +# Firewatch +- type: marking + id: MothHeadClassicFirewatch + bodyPart: Head + markingCategory: Head + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: firewatch-head + +- type: marking + id: MothChestClassicFirewatch + bodyPart: Chest + markingCategory: Chest + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: firewatch-chest + +- type: marking + id: MothLArmClassicFirewatch + bodyPart: LArm + markingCategory: Arms + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: firewatch-leftarm + +- type: marking + id: MothRArmClassicFirewatch + bodyPart: RArm + markingCategory: Arms + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: firewatch-rightarm + +- type: marking + id: MothLLegClassicFirewatch + bodyPart: LLeg + markingCategory: Legs + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: firewatch-leftleg + +- type: marking + id: MothRLegClassicFirewatch + bodyPart: RLeg + markingCategory: Legs + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: firewatch-rightleg + +# Gothic +- type: marking + id: MothHeadClassicGothic + bodyPart: Head + markingCategory: Head + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: gothic-head + +- type: marking + id: MothChestClassicGothic + bodyPart: Chest + markingCategory: Chest + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: gothic-chest + +- type: marking + id: MothLArmClassicGothic + bodyPart: LArm + markingCategory: Arms + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: gothic-leftarm + +- type: marking + id: MothRArmClassicGothic + bodyPart: RArm + markingCategory: Arms + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: gothic-rightarm + +- type: marking + id: MothLLegClassicGothicL + bodyPart: LLeg + markingCategory: Legs + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: gothic-leftleg + +- type: marking + id: MothRLegClassicGothic + bodyPart: RLeg + markingCategory: Legs + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: gothic-rightleg + +# Jungle +- type: marking + id: MothHeadClassicJungle + bodyPart: Head + markingCategory: Head + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: jungle-head + +- type: marking + id: MothChestClassicJungle + bodyPart: Chest + markingCategory: Chest + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: jungle-chest + +- type: marking + id: MothLArmClassicJungle + bodyPart: LArm + markingCategory: Arms + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: jungle-leftarm + +- type: marking + id: MothRArmClassicJungle + bodyPart: RArm + markingCategory: Arms + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: jungle-rightarm + +- type: marking + id: MothLLegClassicJungle + bodyPart: LLeg + markingCategory: Legs + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: jungle-leftleg + +- type: marking + id: MothRLegClassicJungle + bodyPart: RLeg + markingCategory: Legs + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: jungle-rightleg + +# Lovers +- type: marking + id: MothHeadClassicLovers + bodyPart: Head + markingCategory: Head + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: lovers-head + +- type: marking + id: MothChestClassicLovers + bodyPart: Chest + markingCategory: Chest + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: lovers-chest + +- type: marking + id: MothLArmClassicLovers + bodyPart: LArm + markingCategory: Arms + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: lovers-leftarm + +- type: marking + id: MothRArmClassicLovers + bodyPart: RArm + markingCategory: Arms + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: lovers-rightarm + +- type: marking + id: MothLLegClassicLovers + bodyPart: LLeg + markingCategory: Legs + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: lovers-leftleg + +- type: marking + id: MothRLegClassicLovers + bodyPart: RLeg + markingCategory: Legs + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: lovers-rightleg + +# Moonfly +- type: marking + id: MothHeadClassicMoonfly + bodyPart: Head + markingCategory: Head + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: moonfly-head + +- type: marking + id: MothChestClassicMoonfly + bodyPart: Chest + markingCategory: Chest + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: moonfly-chest + +- type: marking + id: MothLArmClassicMoonfly + bodyPart: LArm + markingCategory: Arms + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: moonfly-leftarm + +- type: marking + id: MothRArmClassicMoonfly + bodyPart: RArm + markingCategory: Arms + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: moonfly-rightarm + +- type: marking + id: MothLLegClassicMoonfly + bodyPart: LLeg + markingCategory: Legs + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: moonfly-leftleg + +- type: marking + id: MothRLegClassicMoonfly + bodyPart: RLeg + markingCategory: Legs + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: moonfly-rightleg + +# Oakworm +- type: marking + id: MothHeadClassicOakworm + bodyPart: Head + markingCategory: Head + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: oakworm-head + +- type: marking + id: MothChestClassicOakworm + bodyPart: Chest + markingCategory: Chest + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: oakworm-chest + +- type: marking + id: MothLArmClassicOakworm + bodyPart: LArm + markingCategory: Arms + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: oakworm-leftarm + +- type: marking + id: MothRArmClassicOakworm + bodyPart: RArm + markingCategory: Arms + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: oakworm-rightarm + +- type: marking + id: MothLLegClassicOakworm + bodyPart: LLeg + markingCategory: Legs + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: oakworm-leftleg + +- type: marking + id: MothRLegClassicOakworm + bodyPart: RLeg + markingCategory: Legs + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: oakworm-rightleg + +# Poison +- type: marking + id: MothHeadClassicPoison + bodyPart: Head + markingCategory: Head + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: poison-head + +- type: marking + id: MothChestClassicPoison + bodyPart: Chest + markingCategory: Chest + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: poison-chest + +- type: marking + id: MothLArmClassicPoison + bodyPart: LArm + markingCategory: Arms + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: poison-leftarm + +- type: marking + id: MothRArmClassicPoison + bodyPart: RArm + markingCategory: Arms + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: poison-rightarm + +- type: marking + id: MothLLegClassicPoison + bodyPart: LLeg + markingCategory: Legs + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: poison-leftleg + +- type: marking + id: MothRLegClassicPoison + bodyPart: RLeg + markingCategory: Legs + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: poison-rightleg + +# Ragged +- type: marking + id: MothHeadClassicRagged + bodyPart: Head + markingCategory: Head + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: ragged-head + +- type: marking + id: MothChestClassicRagged + bodyPart: Chest + markingCategory: Chest + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: ragged-chest + +- type: marking + id: MothLArmClassicRagged + bodyPart: LArm + markingCategory: Arms + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: ragged-leftarm + +- type: marking + id: MothRArmClassicRagged + bodyPart: RArm + markingCategory: Arms + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: ragged-rightarm + +- type: marking + id: MothLLegClassicRagged + bodyPart: LLeg + markingCategory: Legs + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: ragged-leftleg + +- type: marking + id: MothRLegClassicRagged + bodyPart: RLeg + markingCategory: Legs + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: ragged-rightleg + +# Reddish +- type: marking + id: MothHeadClassicReddish + bodyPart: Head + markingCategory: Head + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: reddish-head + +- type: marking + id: MothChestClassicReddish + bodyPart: Chest + markingCategory: Chest + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: reddish-chest + +- type: marking + id: MothLArmClassicReddish + bodyPart: LArm + markingCategory: Arms + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: reddish-leftarm + +- type: marking + id: MothRArmClassicReddish + bodyPart: RArm + markingCategory: Arms + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: reddish-rightarm + +- type: marking + id: MothLLegClassicReddish + bodyPart: LLeg + markingCategory: Legs + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: reddish-leftleg + +- type: marking + id: MothRLegClassicReddish + bodyPart: RLeg + markingCategory: Legs + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: reddish-rightleg + +# Royal +- type: marking + id: MothHeadClassicRoyal + bodyPart: Head + markingCategory: Head + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: royal-head + +- type: marking + id: MothChestClassicRoyal + bodyPart: Chest + markingCategory: Chest + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: royal-chest + +- type: marking + id: MothLArmClassicRoyal + bodyPart: LArm + markingCategory: Arms + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: royal-leftarm + +- type: marking + id: MothRArmClassicRoyal + bodyPart: RArm + markingCategory: Arms + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: royal-rightarm + +- type: marking + id: MothLLegClassicRoyal + bodyPart: LLeg + markingCategory: Legs + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: royal-leftleg + +- type: marking + id: MothRLegClassicRoyal + bodyPart: RLeg + markingCategory: Legs + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: royal-rightleg + +# Whitefly +- type: marking + id: MothHeadClassicWhitefly + bodyPart: Head + markingCategory: Head + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: whitefly-head + +- type: marking + id: MothChestClassicWhitefly + bodyPart: Chest + markingCategory: Chest + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: whitefly-chest + +- type: marking + id: MothLArmClassicWhitefly + bodyPart: LArm + markingCategory: Arms + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: whitefly-leftarm + +- type: marking + id: MothRArmClassicWhitefly + bodyPart: RArm + markingCategory: Arms + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: whitefly-rightarm + +- type: marking + id: MothLLegClassicWhitefly + bodyPart: LLeg + markingCategory: Legs + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: whitefly-leftleg + +- type: marking + id: MothRLegClassicWhitefly + bodyPart: RLeg + markingCategory: Legs + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: whitefly-rightleg + +# Witchking +- type: marking + id: MothHeadClassicWitchking + bodyPart: Head + markingCategory: Head + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: witchking-head + +- type: marking + id: MothChestClassicWitchking + bodyPart: Chest + markingCategory: Chest + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: witchking-chest + +- type: marking + id: MothLArmClassicWitchking + bodyPart: LArm + markingCategory: Arms + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: witchking-leftarm + +- type: marking + id: MothRArmClassicWitchking + bodyPart: RArm + markingCategory: Arms + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: witchking-rightarm + +- type: marking + id: MothLLegClassicWitchking + bodyPart: LLeg + markingCategory: Legs + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: witchking-leftleg + +- type: marking + id: MothRLegClassicWitchking + bodyPart: RLeg + markingCategory: Legs + forcedColoring: true + speciesRestriction: [Moth] + coloring: + default: + type: + !type:SimpleColoring + color: "#FFFFFF" + sprites: + - sprite: Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi + state: witchking-rightleg diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Mobs/NPCs/space.yml b/Resources/Prototypes/Nyanotrasen/Entities/Mobs/NPCs/space.yml new file mode 100644 index 0000000000..a5a7eed10c --- /dev/null +++ b/Resources/Prototypes/Nyanotrasen/Entities/Mobs/NPCs/space.yml @@ -0,0 +1,33 @@ +# GhostTakeover + +- type: entity + name: space bear + id: MobBearSpace + parent: MobBearSpaceNPC + components: + - type: GhostTakeoverAvailable # Delta V: Moves here + - type: GhostRole + prob: 0.25 + name: ghost-role-information-space-bear-name + description: ghost-role-information-space-bear-description + +- type: entity + name: space kangaroo + id: MobKangarooSpace + parent: MobKangarooSpaceNPC + components: + - type: GhostTakeoverAvailable # Delta V: Moves here + - type: GhostRole + prob: 0.25 + name: ghost-role-information-space-kangaroo-name + description: ghost-role-information-space-kangaroo-description + +- type: entity + name: space spider + id: MobSpiderSpace + parent: MobSpiderSpaceNPC + components: + - type: GhostRole + prob: 0.30 + name: ghost-role-information-space-spider-name + description: ghost-role-information-space-spider-description diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Mobs/NPCs/xeno.yml b/Resources/Prototypes/Nyanotrasen/Entities/Mobs/NPCs/xeno.yml index a5326008b5..9dbe9f95f7 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Mobs/NPCs/xeno.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Mobs/NPCs/xeno.yml @@ -35,6 +35,13 @@ parent: MobXeno suffix: Player components: + - type: GhostRole + allowMovement: true + allowSpeech: true + makeSentient: true + name: ghost-role-information-xeno-name + description: ghost-role-information-xeno-description + rules: ghost-role-information-xeno-rules - type: GhostTakeoverAvailable - type: entity @@ -43,6 +50,13 @@ id: MobXenoPraetorian suffix: Player components: + - type: GhostRole + allowMovement: true + allowSpeech: true + makeSentient: true + name: ghost-role-information-xeno-name + description: ghost-role-information-xeno-description + rules: ghost-role-information-xeno-rules - type: GhostTakeoverAvailable - type: entity @@ -51,6 +65,13 @@ id: MobXenoDrone suffix: Player components: + - type: GhostRole + allowMovement: true + allowSpeech: true + makeSentient: true + name: ghost-role-information-xeno-name + description: ghost-role-information-xeno-description + rules: ghost-role-information-xeno-rules - type: GhostTakeoverAvailable - type: entity @@ -59,6 +80,13 @@ id: MobXenoQueen suffix: Player components: + - type: GhostRole + allowMovement: true + allowSpeech: true + makeSentient: true + name: ghost-role-information-xeno-name + description: ghost-role-information-xeno-description + rules: ghost-role-information-xeno-rules - type: GhostTakeoverAvailable - type: entity @@ -67,6 +95,13 @@ id: MobXenoRavager suffix: Player components: + - type: GhostRole + allowMovement: true + allowSpeech: true + makeSentient: true + name: ghost-role-information-xeno-name + description: ghost-role-information-xeno-description + rules: ghost-role-information-xeno-rules - type: GhostTakeoverAvailable - type: entity @@ -75,17 +110,28 @@ id: MobXenoRunner suffix: Player components: + - type: GhostRole + allowMovement: true + allowSpeech: true + makeSentient: true + name: ghost-role-information-xeno-name + description: ghost-role-information-xeno-description + rules: ghost-role-information-xeno-rules - type: GhostTakeoverAvailable - type: entity name: Rouny - parent: MobXenoRunner + parent: MobXenoRounyNPC id: MobXenoRouny components: - - type: Sprite - drawdepth: Mobs - sprite: Mobs/Aliens/Xenos/rouny.rsi - offset: 0,0.6 + - type: GhostRole + allowMovement: true + allowSpeech: true + makeSentient: true + name: ghost-role-information-xeno-name + description: ghost-role-information-xeno-description + rules: ghost-role-information-xeno-rules + - type: GhostTakeoverAvailable - type: entity name: Spitter @@ -93,4 +139,11 @@ id: MobXenoSpitter suffix: Player components: + - type: GhostRole + allowMovement: true + allowSpeech: true + makeSentient: true + name: ghost-role-information-xeno-name + description: ghost-role-information-xeno-description + rules: ghost-role-information-xeno-rules - type: GhostTakeoverAvailable diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Consumable/Food/Baked/misc.yml b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Consumable/Food/Baked/misc.yml index c86b095e41..4bb0f289ba 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Consumable/Food/Baked/misc.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Consumable/Food/Baked/misc.yml @@ -23,6 +23,9 @@ Quantity: 1 - ReagentId: Sugar Quantity: 12 + - type: Tag + tags: + - ClothMade # Mothic Food #Tastes like cheesecake and honey - type: entity @@ -51,6 +54,9 @@ Quantity: 10 - ReagentId: Sugar Quantity: 10 + - type: Tag + tags: + - ClothMade # Mothic Food #Tastes like vanilla and clouds. - type: entity @@ -76,6 +82,9 @@ Quantity: 4 - ReagentId: Sugar Quantity: 2 + - type: Tag + tags: + - ClothMade # Mothic Food #Tastes like vanilla and clouds. - type: entity @@ -115,5 +124,5 @@ Quantity: 4 - type: Tag tags: - - ClothMade + - ClothMade # Mothic Food #Tastes like muffin, dust and lint diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Consumable/Food/Baked/pizza.yml b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Consumable/Food/Baked/pizza.yml index 28c8675b25..8c96635b06 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Consumable/Food/Baked/pizza.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Consumable/Food/Baked/pizza.yml @@ -83,6 +83,7 @@ - type: Tag tags: - Pizza + - ClothMade # Mothic Food - type: entity name: slice of firecracker pizza @@ -115,6 +116,7 @@ - type: Tag tags: - Pizza + - ClothMade # Mothic Food # Tastes like crust, chili, corn, cheese - type: entity @@ -136,6 +138,7 @@ - type: Tag tags: - Pizza + - ClothMade # Mothic Food - type: entity name: slice of quattro formaggi pizza @@ -154,6 +157,7 @@ - type: Tag tags: - Pizza + - ClothMade # Mothic Food # Tastes like crust, cheese, more cheese, excessive amount of cheese - type: entity diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Consumable/Food/ingredients.yml b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Consumable/Food/ingredients.yml index bee8ca64b6..fde6ea2a5a 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Consumable/Food/ingredients.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Consumable/Food/ingredients.yml @@ -21,6 +21,9 @@ Quantity: 3 - ReagentId: Cream Quantity: 1 + - type: Tag + tags: + - ClothMade # Mothic Food - type: entity name: cheese curds @@ -41,6 +44,9 @@ reagents: - ReagentId: Protein Quantity: 3 + - type: Tag + tags: + - ClothMade # Mothic Food # Mozzarella - type: entity @@ -64,6 +70,9 @@ Quantity: 3 - ReagentId: Cream Quantity: 1 + - type: Tag + tags: + - ClothMade # Mothic Food - type: entity name: herby cheese @@ -89,6 +98,9 @@ Quantity: 2 - ReagentId: Cream Quantity: 1 + - type: Tag + tags: + - ClothMade # Mothic Food #Tastes like cheese, herbs - type: entity @@ -116,3 +128,6 @@ Quantity: 2 - ReagentId: Allicin Quantity: 0.5 + - type: Tag + tags: + - ClothMade # Mothic Food diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Consumable/Food/meals.yml b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Consumable/Food/meals.yml index 0292ac8b08..613b989d63 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Consumable/Food/meals.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Consumable/Food/meals.yml @@ -26,6 +26,9 @@ Quantity: 6 - ReagentId: Vitamin Quantity: 8 + - type: Tag + tags: + - ClothMade # Mothic Food - type: entity name: lil baked rice @@ -52,6 +55,9 @@ Quantity: 1 - ReagentId: Vitamin Quantity: 1.25 + - type: Tag + tags: + - ClothMade # Mothic Food - type: entity name: green lasagne @@ -82,6 +88,9 @@ Quantity: 6 - ReagentId: Vitamin Quantity: 6 + - type: Tag + tags: + - ClothMade # Mothic Food #Tastes like cheese, pesto and pasta - type: entity @@ -109,6 +118,9 @@ Quantity: 1 - ReagentId: Vitamin Quantity: 1 + - type: Tag + tags: + - ClothMade # Mothic Food #Tastes like cheese, pesto and pasta - type: entity @@ -132,6 +144,9 @@ Quantity: 8 - ReagentId: Vitamin Quantity: 2 + - type: Tag + tags: + - ClothMade # Mothic Food #Tastes like corn and char - type: entity @@ -156,6 +171,9 @@ Quantity: 10 - ReagentId: Vitamin Quantity: 6 + - type: Tag + tags: + - ClothMade # Mothic Food #Tastes like corn, butter and char - type: entity @@ -181,6 +199,9 @@ Quantity: 4 - ReagentId: Protein Quantity: 5 + - type: Tag + tags: + - ClothMade # Mothic Food #Tastes like creamy cheese, breading and oil # Mac Balls should use macncheese donks @@ -211,4 +232,7 @@ Quantity: 2 - ReagentId: Omnizine Quantity: 1 -#Tastes like pasta, cornbread and cheese \ No newline at end of file + - type: Tag + tags: + - ClothMade # Mothic Food +#Tastes like pasta, cornbread and cheese diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Consumable/Food/ration.yml b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Consumable/Food/ration.yml index 11edd70049..bb45258882 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Consumable/Food/ration.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Consumable/Food/ration.yml @@ -14,7 +14,7 @@ name: prepacked sustenance bar parent: BaseItem id: FoodPSB - description: The PSB is a densely packed, nutrient rich, artificially flavored and colored food bar specifically made to accomodate all morphotypes during food shortages. + description: The PSB is a densely packed, nutrient rich, artificially flavored and colored food bar specifically made to accomodate all species during food shortages. components: - type: Sprite sprite: Nyanotrasen/Objects/Consumable/Food/ration.rsi diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Consumable/Food/salad.yml b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Consumable/Food/salad.yml index ba56cda8b3..c10593a0b3 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Consumable/Food/salad.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Consumable/Food/salad.yml @@ -53,6 +53,9 @@ Quantity: 5 - ReagentId: Protein Quantity: 3 + - type: Tag + tags: + - ClothMade # Mothic Food #Tastes like cheese, salad and bread - type: entity @@ -82,7 +85,7 @@ Quantity: 5 - type: Tag tags: - - ClothMade + - ClothMade # Mothic Food #Tastes like cheese, salad and cotton - type: entity @@ -110,4 +113,7 @@ Quantity: 2 - ReagentId: Protein Quantity: 6 + - type: Tag + tags: + - ClothMade # Mothic Food #Tastes like onion, tomato, corn, chili and cilantro diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Consumable/Food/snacks.yml b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Consumable/Food/snacks.yml index dc0b925ace..f49d6cb2ce 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Consumable/Food/snacks.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Consumable/Food/snacks.yml @@ -27,6 +27,9 @@ Quantity: 6 - ReagentId: Protein Quantity: 8 + - type: Tag + tags: + - ClothMade # Mothic Food #Tastes like cheese, tofu and veggies - type: entity @@ -50,6 +53,65 @@ Quantity: 4 - ReagentId: Vitamin Quantity: 6 + - type: Tag + tags: + - ClothMade # Mothic Food + +- type: entity + name: engine fodder + parent: FoodBakingBase + id: FoodMothEngineFodder + description: A common snack for moth engineers, made of seeds, nuts, chocolate, popcorn, and potato chips designed to be dense with calories and easy to snack on when an extra boost is needed. + components: + - type: FlavorProfile + flavors: + - seeds + - type: Sprite + sprite: Nyanotrasen/Objects/Consumable/Food/Snacks/moth.rsi + state: enginefodder + - type: SolutionContainerManager + solutions: + food: + maxVol: 40 # Very compact food + reagents: + - ReagentId: Nutriment + Quantity: 18 + - ReagentId: Sugar + Quantity: 5 + - ReagentId: TableSalt + Quantity: 2 + - ReagentId: Protein + Quantity: 4 + - ReagentId: Vitamin + Quantity: 6 + - type: Tag + tags: + - ClothMade # Mothic Food + +- type: entity + name: fueljack's lunch + parent: FoodBakingBase + id: FoodMothFueljackLunch + description: A dish made from fried vegetables. Popular amongst the brave moths that faces the dangers of space. + components: + - type: FlavorProfile + flavors: + - seeds + - type: Sprite + sprite: Nyanotrasen/Objects/Consumable/Food/Snacks/moth.rsi + state: fueljacklunch + - type: SolutionContainerManager + solutions: + food: + maxVol: 15 + reagents: + - ReagentId: Nutriment + Quantity: 5 + - ReagentId: Vitamin + Quantity: 10 + - type: Tag + tags: + - ClothMade # Mothic Food - type: entity name: sweet chili cabbage wrap @@ -77,6 +139,9 @@ Quantity: 6 - ReagentId: CapsaicinOil Quantity: 1 + - type: Tag + tags: + - ClothMade # Mothic Food #Tastes like cheese, salad, sweet chili - type: entity @@ -102,6 +167,9 @@ - type: Sprite sprite: Nyanotrasen/Objects/Consumable/Food/Snacks/moth.rsi state: bakedcheese + - type: Tag + tags: + - ClothMade # Mothic Food - type: entity name: baked cheese platter @@ -127,6 +195,9 @@ Quantity: 5 - ReagentId: Protein Quantity: 2 + - type: Tag + tags: + - ClothMade # Mothic Food - type: entity name: borito pie diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Consumable/Food/soup.yml b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Consumable/Food/soup.yml index fe92febedd..a044cdce13 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Consumable/Food/soup.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Consumable/Food/soup.yml @@ -58,6 +58,9 @@ Quantity: 1 - ReagentId: Milk Quantity: 3 + - type: Tag + tags: + - ClothMade # Mothic Food - type: entity name: seed soup @@ -84,6 +87,9 @@ Quantity: 3 - ReagentId: Water Quantity: 5 + - type: Tag + tags: + - ClothMade # Mothic Food - type: entity name: moth eyeball soup @@ -136,6 +142,9 @@ Quantity: 3 - ReagentId: Water Quantity: 2 + - type: Tag + tags: + - ClothMade # Mothic Food #Tastes like beans, cabbage and spicy sauce - type: entity @@ -163,6 +172,9 @@ Quantity: 10 - ReagentId: Water Quantity: 5 + - type: Tag + tags: + - ClothMade # Mothic Food #Tastes like oats, sweet potato, carrot and parsnip - type: entity @@ -191,6 +203,9 @@ Quantity: 4 - ReagentId: CapsaicinOil Quantity: 1 + - type: Tag + tags: + - ClothMade # Mothic Food #Tastes like oats, sweet potato, carrot and parsnip - type: entity @@ -216,6 +231,9 @@ Quantity: 22 - ReagentId: Protein Quantity: 8 + - type: Tag + tags: + - ClothMade # Mothic Food - type: entity name: cornmeal porridge @@ -238,6 +256,9 @@ Quantity: 9 - ReagentId: Vitamin Quantity: 2 + - type: Tag + tags: + - ClothMade # Mothic Food #Tastes like cornmeal. - type: entity @@ -264,6 +285,9 @@ Quantity: 4 - ReagentId: Protein Quantity: 4 + - type: Tag + tags: + - ClothMade # Mothic Food #Tastes like cornmeal, cheese, more cheese, lots of cheese. - type: entity @@ -292,6 +316,9 @@ Quantity: 6 - ReagentId: Protein Quantity: 12 + - type: Tag + tags: + - ClothMade # Mothic Food #Tastes like cornmeal, cheese, eggplant and tomato sauce - type: entity @@ -323,3 +350,6 @@ Quantity: 3 - ReagentId: JuiceTomato Quantity: 3 + - type: Tag + tags: + - ClothMade # Mothic Food diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Devices/CircuitBoards/production.yml b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Devices/CircuitBoards/production.yml index 36e8263439..a1a7a859e0 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Devices/CircuitBoards/production.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Devices/CircuitBoards/production.yml @@ -43,4 +43,4 @@ Cable: 4 - type: ReverseEngineering recipes: - - DeepFryerMachineCircuitboard \ No newline at end of file + - DeepFryerMachineCircuitboard diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Weapons/Melee/breaching_hammer.yml b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Weapons/Melee/breaching_hammer.yml index 06ec221d13..4ef38ec8e9 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Objects/Weapons/Melee/breaching_hammer.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Objects/Weapons/Melee/breaching_hammer.yml @@ -34,6 +34,7 @@ qualities: - Prying speed: 0.8 + - type: Prying useSound: /Audio/Items/jaws_pry.ogg - type: ToolForcePowered - type: Clothing diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Structures/Machines/reverseEngineering.yml b/Resources/Prototypes/Nyanotrasen/Entities/Structures/Machines/reverseEngineering.yml index b3233a5c4d..c28c395261 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Structures/Machines/reverseEngineering.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Structures/Machines/reverseEngineering.yml @@ -62,9 +62,9 @@ range: 5 sound: path: /Audio/Ambience/Objects/revMachine_ambience.ogg -# - type: GuideHelp -# guides: -# - ReverseEngineering + - type: GuideHelp + guides: + - ReverseEngineering - type: Appearance - type: GenericVisualizer visuals: diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Structures/Machines/vending_machines.yml b/Resources/Prototypes/Nyanotrasen/Entities/Structures/Machines/vending_machines.yml index 5e82a00a48..300a3e22fb 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Structures/Machines/vending_machines.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Structures/Machines/vending_machines.yml @@ -1,33 +1,33 @@ -- type: entity - parent: VendingMachine - id: VendingMachineMailDrobe - name: MailDrobe - description: Neither solar flares nor meteors nor plasma fire nor void of space stays these couriers from the swift completion of their appointed rounds. - components: - - type: VendingMachine - pack: MailDrobeInventory - offState: off - brokenState: broken - normalState: normal-unshaded - # ejectState: eject-unshaded No sprite, see chefvend/dinnerware/BODA/etc for examples - - type: Advertise - pack: MailDrobeAds - - type: Sprite - sprite: Nyanotrasen/Structures/Machines/VendingMachines/maildrobe.rsi - layers: - - state: "off" - map: ["enum.VendingMachineVisualLayers.Base"] - - state: "off" - map: ["enum.VendingMachineVisualLayers.BaseUnshaded"] - shader: unshaded - - state: panel - map: ["enum.WiresVisualLayers.MaintenancePanel"] - - type: AccessReader - access: [["Mail"]] - - type: PointLight - radius: 1.5 - energy: 1.6 - color: "#4b93ad" +# - type: entity +# parent: VendingMachine +# id: VendingMachineMailDrobe # DeltaV - Replaced with the CourierDrobe +# name: MailDrobe +# description: Neither solar flares nor meteors nor plasma fire nor void of space stays these couriers from the swift completion of their appointed rounds. +# components: +# - type: VendingMachine +# pack: MailDrobeInventory +# offState: off +# brokenState: broken +# normalState: normal-unshaded +# # ejectState: eject-unshaded No sprite, see chefvend/dinnerware/BODA/etc for examples +# - type: Advertise +# pack: MailDrobeAds +# - type: Sprite +# sprite: Nyanotrasen/Structures/Machines/VendingMachines/maildrobe.rsi +# layers: +# - state: "off" +# map: ["enum.VendingMachineVisualLayers.Base"] +# - state: "off" +# map: ["enum.VendingMachineVisualLayers.BaseUnshaded"] +# shader: unshaded +# - state: panel +# map: ["enum.WiresVisualLayers.MaintenancePanel"] +# - type: AccessReader +# access: [["Mail"]] +# - type: PointLight +# radius: 1.5 +# energy: 1.6 +# color: "#4b93ad" - type: entity parent: VendingMachine diff --git a/Resources/Prototypes/Nyanotrasen/Entities/Structures/Research/glimmer_prober.yml b/Resources/Prototypes/Nyanotrasen/Entities/Structures/Research/glimmer_prober.yml index 67fede163a..5a4d24caf9 100644 --- a/Resources/Prototypes/Nyanotrasen/Entities/Structures/Research/glimmer_prober.yml +++ b/Resources/Prototypes/Nyanotrasen/Entities/Structures/Research/glimmer_prober.yml @@ -13,7 +13,7 @@ pointspersecond: 20 active: true - type: Sprite - sprite: Nyanotrasen/Structures/Machines/glimmer_machines.rsi + sprite: DeltaV/Structures/Machines/glimmer_machines.rsi # DeltaV reskin noRot: true layers: - state: base @@ -97,14 +97,14 @@ #graph: GlimmerDevices #node: glimmerDrain - type: Sprite - sprite: Nyanotrasen/Structures/Machines/glimmer_machines.rsi + sprite: DeltaV/Structures/Machines/glimmer_machines.rsi # DeltaV reskin noRot: true layers: - state: base - state: drain -# - state: powered -# shader: unshaded -# map: ["enum.PowerDeviceVisualLayers.Powered"] + - state: powered + shader: unshaded + map: ["enum.PowerDeviceVisualLayers.Powered"] - type: Appearance - type: GenericVisualizer visuals: @@ -164,7 +164,7 @@ - !type:DoActsBehavior acts: ["Destruction"] - type: Sprite - sprite: Nyanotrasen/Structures/Machines/glimmer_machines.rsi + sprite: DeltaV/Structures/Machines/glimmer_machines.rsi # DeltaV reskin noRot: true layers: - state: base diff --git a/Resources/Prototypes/Nyanotrasen/Guidebook/epistemics.yml b/Resources/Prototypes/Nyanotrasen/Guidebook/epistemics.yml new file mode 100644 index 0000000000..1e2ace9a28 --- /dev/null +++ b/Resources/Prototypes/Nyanotrasen/Guidebook/epistemics.yml @@ -0,0 +1,4 @@ +- type: guideEntry + id: ReverseEngineering + name: guide-entry-reverse-engineering + text: "/ServerInfo/Nyanotrasen/Guidebook/Epistemics/ReverseEngineering.xml" diff --git a/Resources/Prototypes/Nyanotrasen/Objectives/traitor.yml b/Resources/Prototypes/Nyanotrasen/Objectives/traitor.yml index debf04a901..f66db77b5c 100644 --- a/Resources/Prototypes/Nyanotrasen/Objectives/traitor.yml +++ b/Resources/Prototypes/Nyanotrasen/Objectives/traitor.yml @@ -8,3 +8,63 @@ - type: StealCondition prototype: AntiPsychicKnife owner: job-name-mantis + +- type: entity + id: BecomePsionicObjective + parent: BaseTraitorObjective + name: Become psionic + description: We need you to acquire psionics and keep them until your mission is complete. + noSpawn: true + components: + - type: NotJobsRequirement + jobs: + - Mime + - ForensicMantis + - type: Objective + difficulty: 2.5 + #unique: false + icon: + sprite: Nyanotrasen/Icons/psi.rsi + state: psi + - type: ObjectiveBlacklistRequirement + blacklist: + components: + - BecomeGolemCondition + - type: BecomePsionicCondition + +#- type: entity +# id: BecomeGolemObjective +# parent: BaseTraitorObjective +# name: objective-condition-become-golem-title +# description: objective-condition-become-golem-description. +# noSpawn: true +# components: +# - type: NotJobRequirement +# job: Chaplain +# - type: Objective +# difficulty: 3.5 +# #unique: false +# icon: +# sprite: Nyanotrasen/Mobs/Species/Golem/cult.rsi +# state: full +# - type: ObjectiveBlacklistRequirement +# blacklist: +# components: +# - BecomePsionicCondition +# - type: BecomeGolemCondition + +- type: entity + id: RaiseGlimmerObjective + parent: BaseTraitorObjective + noSpawn: true + name: Raise Glimmer. + description: Get the glimmer above the specified amount. + components: + - type: Objective + difficulty: 2.5 + #unique: false + icon: + sprite: Nyanotrasen/Icons/psi.rsi + state: psi + - type: RaiseGlimmerCondition + target: 500 \ No newline at end of file diff --git a/Resources/Prototypes/Nyanotrasen/Parallaxes/space.yml b/Resources/Prototypes/Nyanotrasen/Parallaxes/space.yml index 33eefe7b18..a3b1115af2 100644 --- a/Resources/Prototypes/Nyanotrasen/Parallaxes/space.yml +++ b/Resources/Prototypes/Nyanotrasen/Parallaxes/space.yml @@ -36,15 +36,17 @@ slowness: 0.98 scale: 0.5,0.5 - texture: - !type:GeneratedParallaxTextureSource - id: "hq_wizard_stars_dim" - configPath: "/Prototypes/Parallaxes/parallax_config_stars_dim.toml" + !type:ImageParallaxTextureSource + path: "/Textures/DeltaV/Parallaxes/Asteroids.png" slowness: 0.97 + scale: 1.2,1.2 + scrolling: "0.018, 0.01" - texture: - !type:GeneratedParallaxTextureSource - id: "hq_wizard_stars" - configPath: "/Prototypes/Parallaxes/parallax_config_stars.toml" - slowness: 0.96 + !type:ImageParallaxTextureSource + path: "/Textures/DeltaV/Parallaxes/Asteroids.png" + slowness: 0.90 + scale: 0.95,0.95 + scrolling: "-0.0075, -0.009" - type: parallax id: TortugaStation @@ -55,3 +57,39 @@ slowness: 0.94 scale: 0.5,0.5 scrolling: "-0.004, 0.002" + +- type: parallax + id: ArenaStation + layers: + - texture: + !type:ImageParallaxTextureSource + path: "/Textures/DeltaV/Parallaxes/ArenaParallaxBG.png" + slowness: 0.998046875 + scale: "1, 1" + - texture: + !type:GeneratedParallaxTextureSource + id: "hq_wizard_stars" + configPath: "/Prototypes/Parallaxes/parallax_config_stars.toml" + slowness: 0.986625 + - texture: + !type:GeneratedParallaxTextureSource + id: "hq_wizard_stars_dim" + configPath: "/Prototypes/Parallaxes/parallax_config_stars_dim.toml" + slowness: 0.979375 + - texture: + !type:GeneratedParallaxTextureSource + id: "hq_wizard_stars_faster" + configPath: "/Prototypes/Parallaxes/parallax_config_stars-2.toml" + slowness: 0.957265625 + - texture: + !type:GeneratedParallaxTextureSource + id: "hq_wizard_stars_dim_faster" + configPath: "/Prototypes/Parallaxes/parallax_config_stars_dim-2.toml" + slowness: 0.954352 + layersLQ: + - texture: + !type:GeneratedParallaxTextureSource + id: "" + configPath: "/Prototypes/Parallaxes/parallax_config.toml" + slowness: 0.875 + layersLQUseHQ: false diff --git a/Resources/Prototypes/Nyanotrasen/Recipes/Cooking/meal_recipes.yml b/Resources/Prototypes/Nyanotrasen/Recipes/Cooking/meal_recipes.yml index 16ab0e2f2b..a8b9d41deb 100644 --- a/Resources/Prototypes/Nyanotrasen/Recipes/Cooking/meal_recipes.yml +++ b/Resources/Prototypes/Nyanotrasen/Recipes/Cooking/meal_recipes.yml @@ -78,6 +78,29 @@ CarrotSeeds: 1 PoppySeeds: 1 +- type: microwaveMealRecipe + id: RecipeMothEngineFodder + name: engine fodder recipe + result: FoodMothEngineFodder + time: 30 + solids: + FoodMothToastedSeeds: 1 + FoodSnackChips: 1 + FoodSnackCnDs: 1 + FoodSnackPopcorn: 1 + +- type: microwaveMealRecipe + id: RecipeMothFueljackLunch + name: fueljack lunch recipe + result: FoodMothFueljackLunch + time: 15 + solids: + FoodCheeseSlice: 1 + FoodCabbage: 1 + FoodChili: 1 + FoodPotato: 1 + FoodOnionSlice: 2 + - type: microwaveMealRecipe id: RecipeMothChiliCabbageWrap name: sweet chili cabbage wrap recipe @@ -147,10 +170,11 @@ name: buttered baked corn recipe result: FoodMothButteredBakedCorn time: 5 - reagents: - Butter: 5 + # reagents: # Whenever we can actually melt butter + # Butter: 5 solids: FoodMothBakedCorn: 1 + FoodButter: 1 - type: microwaveMealRecipe id: RecipeMothMozzarellaSticks @@ -170,9 +194,9 @@ time: 15 reagents: TomatoSauce: 10 + Cornmeal: 5 solids: FoodDonkpocket: 1 #macncheese donk - FoodCorn: 1 #CornMeal # Soups and stews @@ -199,7 +223,7 @@ reagents: Milk: 5 Flour: 5 - Butter: 5 + Cream: 5 # Butter when it gets meltable solids: FoodBowlBig: 1 FoodCheeseSlice: 1 @@ -283,7 +307,7 @@ time: 10 solids: FoodRiceBoiled: 1 - FoodMealFriedegg: 2 + FoodEgg: 2 #FoodMealFriedegg when we can actually fry eggs buh FoodMeatCutlet: 1 #FoodMeatBacon when it's actually findable - type: microwaveMealRecipe @@ -304,7 +328,7 @@ time: 10 reagents: Milk: 5 - Butter: 5 + Cream: 5 # Butter when it's meltable solids: FoodMothCornmealPorridge: 1 FoodCurdCheese: 1 diff --git a/Resources/Prototypes/Nyanotrasen/Recipes/Reactions/drink.yml b/Resources/Prototypes/Nyanotrasen/Recipes/Reactions/drink.yml index 3f358c3e9a..c2b6e8472b 100644 --- a/Resources/Prototypes/Nyanotrasen/Recipes/Reactions/drink.yml +++ b/Resources/Prototypes/Nyanotrasen/Recipes/Reactions/drink.yml @@ -1,17 +1,3 @@ -- type: reaction - id: Lean - reactants: - GrapeSoda: - amount: 1 -# Spaceacillin: -# amount: 1 - Acetone: - amount: 1 - FourteenLoko: - amount: 1 - products: - Lean: 4 - - type: reaction id: BahamaMama reactants: diff --git a/Resources/Prototypes/Nyanotrasen/Research/experimental.yml b/Resources/Prototypes/Nyanotrasen/Research/experimental.yml index 0a7763cdb9..78599728c0 100644 --- a/Resources/Prototypes/Nyanotrasen/Research/experimental.yml +++ b/Resources/Prototypes/Nyanotrasen/Research/experimental.yml @@ -16,14 +16,14 @@ # Tier 3 -- type: technology - id: Teleportation - name: research-technology-teleportation - icon: - sprite: Nyanotrasen/Objects/Devices/QSI.rsi - state: icon - discipline: Experimental - tier: 3 - cost: 15000 - recipeUnlocks: - - CoreSilver +# - type: technology +# id: Teleportation +# name: research-technology-teleportation +# icon: +# sprite: Nyanotrasen/Objects/Devices/QSI.rsi +# state: icon +# discipline: Experimental +# tier: 3 +# cost: 15000 +# recipeUnlocks: +# - CoreSilver diff --git a/Resources/Prototypes/Objectives/objectiveGroups.yml b/Resources/Prototypes/Objectives/objectiveGroups.yml index c0efdf3577..f9536ed2a7 100644 --- a/Resources/Prototypes/Objectives/objectiveGroups.yml +++ b/Resources/Prototypes/Objectives/objectiveGroups.yml @@ -17,7 +17,6 @@ MagbootsStealObjective: 1 # CorgiMeatStealObjective: 1 # DeltaV - Disable the horrible murder of Ian as an objective MantisKnifeStealObjective: 1 # Nyanotrasen - ForensicMantis steal objective, see Resources/Prototypes/Nyanotrasen/Objectives/traitor.yml - CorgiMeatStealObjective: 1 ClipboardStealObjective: 1 CaptainGunStealObjective: 0.5 CaptainJetpackStealObjective: 0.5 @@ -36,13 +35,17 @@ id: TraitorObjectiveGroupState weights: EscapeShuttleObjective: 1 - DieObjective: 0.05 + # DieObjective: 0.05 # DeltaV - Disable the lrp objective aka murderbone justification HijackShuttleObjective: 0.02 + BecomePsionicObjective: 1 # Nyanotrasen - Become Psionic objective, see Resources/Prototypes/Nyanotrasen/Objectives/traitor.yml + #BecomeGolemObjective: 0.5 # Nyanotrasen - Become a golem objective, see Resources/Prototypes/Nyanotrasen/Objectives/traitor.yml - type: weightedRandom id: TraitorObjectiveGroupSocial weights: RandomTraitorAliveObjective: 1 RandomTraitorProgressObjective: 1 + RaiseGlimmerObjective: 0.5 # Nyanotrasen - Raise glimmer to a target amount, see Resources/Prototypes/Nyanotrasen/Objectives/traitor.yml + #Changeling, crew, wizard, when you code it... diff --git a/Resources/Prototypes/Objectives/traitor.yml b/Resources/Prototypes/Objectives/traitor.yml index f0e8daad3d..6253fc3d4c 100644 --- a/Resources/Prototypes/Objectives/traitor.yml +++ b/Resources/Prototypes/Objectives/traitor.yml @@ -45,24 +45,38 @@ state: shuttle - type: EscapeShuttleCondition +##- type: entity # DeltaV +# noSpawn: true +# parent: BaseTraitorObjective +# id: DieObjective +# name: Die a glorious death +# description: Die. +# components: +# - type: Objective +# difficulty: 0.5 +# icon: +# sprite: Mobs/Ghosts/ghost_human.rsi +# state: icon +# - type: ObjectiveBlacklistRequirement +# blacklist: +# components: +# - EscapeShuttleCondition +# - StealCondition +# - type: DieCondition + - type: entity noSpawn: true - parent: BaseTraitorObjective - id: DieObjective - name: Die a glorious death - description: Die. + parent: [BaseTraitorObjective, BaseLivingObjective] + id: HijackShuttleObjective + name: Hijack emergency shuttle + description: Leave on the shuttle free and clear of the loyal Nanotrasen crew on board. Use ANY methods available to you. Syndicate agents, Nanotrasen enemies, and handcuffed hostages may remain alive on the shuttle. Ignore assistance from anyone other than a support agent. components: - - type: Objective - difficulty: 0.5 - icon: - sprite: Mobs/Ghosts/ghost_human.rsi - state: icon - - type: ObjectiveBlacklistRequirement - blacklist: - components: - - EscapeShuttleCondition - - StealCondition - - type: DieCondition + - type: Objective + difficulty: 5 # insane, default config max difficulty + icon: + sprite: Objects/Tools/emag.rsi + state: icon + - type: HijackShuttleCondition # kill diff --git a/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml b/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml index 3b44308b1c..71c0bb1a96 100644 --- a/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml +++ b/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml @@ -486,7 +486,7 @@ reagent: Ethanol amount: 0.15 - !type:AdjustReagent - reagent: Radium + reagent: Uranium amount: 0.05 - type: reagent diff --git a/Resources/Prototypes/Reagents/Consumable/Food/food.yml b/Resources/Prototypes/Reagents/Consumable/Food/food.yml index b9e565f5af..03ebf7cc32 100644 --- a/Resources/Prototypes/Reagents/Consumable/Food/food.yml +++ b/Resources/Prototypes/Reagents/Consumable/Food/food.yml @@ -93,3 +93,11 @@ amount: 2 - !type:PlantAdjustPests amount: 2 + +- type: reagent + id: PumpkinFlesh #Just so pumpkins spill orange stuff when smashed + parent: Nutriment + name: reagent-name-pumpkin-flesh + desc: reagent-desc-pumpkin-flesh + flavor: pumpkin + color: "#fc9300" \ No newline at end of file diff --git a/Resources/Prototypes/Reagents/gases.yml b/Resources/Prototypes/Reagents/gases.yml index 367ffa0894..50e744a8ac 100644 --- a/Resources/Prototypes/Reagents/gases.yml +++ b/Resources/Prototypes/Reagents/gases.yml @@ -261,6 +261,9 @@ - !type:ReagentThreshold reagent: NitrousOxide min: 0.2 + - !type:OrganType + type: Slime + shouldHave: false emote: Laugh showInChat: true probability: 0.1 @@ -269,6 +272,9 @@ - !type:ReagentThreshold reagent: NitrousOxide min: 0.2 + - !type:OrganType + type: Slime + shouldHave: false emote: Scream showInChat: true probability: 0.01 diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/fun/jack_o_lantern.yml b/Resources/Prototypes/Recipes/Construction/Graphs/fun/jack_o_lantern.yml new file mode 100644 index 0000000000..efd2007df6 --- /dev/null +++ b/Resources/Prototypes/Recipes/Construction/Graphs/fun/jack_o_lantern.yml @@ -0,0 +1,13 @@ +- type: constructionGraph + id: PumpkinAddLight + start: start + graph: + - node: start + edges: + - to: lit + steps: + - tag: Torch + doAfter: 2 + + - node: lit + entity: PumpkinLantern \ No newline at end of file diff --git a/Resources/Prototypes/Recipes/Construction/Graphs/weapons/bola.yml b/Resources/Prototypes/Recipes/Construction/Graphs/weapons/bola.yml index ad454d52b0..10532996bd 100644 --- a/Resources/Prototypes/Recipes/Construction/Graphs/weapons/bola.yml +++ b/Resources/Prototypes/Recipes/Construction/Graphs/weapons/bola.yml @@ -6,9 +6,12 @@ edges: - to: bola steps: - - material: Cable - amount: 5 - doAfter: 2 + - tag: Handcuffs + icon: + sprite: Objects/Misc/cablecuffs.rsi + state: cuff + color: red + name: cuffs - material: Steel amount: 6 doAfter: 2 diff --git a/Resources/Prototypes/Recipes/Construction/clothing.yml b/Resources/Prototypes/Recipes/Construction/clothing.yml index e8bd1b6938..a94a3652de 100644 --- a/Resources/Prototypes/Recipes/Construction/clothing.yml +++ b/Resources/Prototypes/Recipes/Construction/clothing.yml @@ -1,13 +1,13 @@ -- type: construction - name: clown hardsuit - id: ClownHardsuit - graph: ClownHardsuit - startNode: start - targetNode: clownHardsuit - category: construction-category-clothing - description: A modified hardsuit fit for a clown. - icon: { sprite: Clothing/OuterClothing/Hardsuits/clown.rsi, state: icon } - objectType: Item +# - type: construction # DeltaV - Prevent clowns from making the hardsuit +# name: clown hardsuit +# id: ClownHardsuit +# graph: ClownHardsuit +# startNode: start +# targetNode: clownHardsuit +# category: construction-category-clothing +# description: A modified hardsuit fit for a clown. +# icon: { sprite: Clothing/OuterClothing/Hardsuits/clown.rsi, state: icon } +# objectType: Item - type: construction name: bone armor diff --git a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml index d83d58bc92..92ec105246 100644 --- a/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml +++ b/Resources/Prototypes/Recipes/Cooking/meal_recipes.yml @@ -24,7 +24,7 @@ time: 10 solids: FoodBreadBun: 1 - FoodMeatCutlet: 3 #replace with bacon + FoodMeatBacon: 1 FoodCheeseSlice: 2 - type: microwaveMealRecipe @@ -186,7 +186,7 @@ time: 10 solids: FoodBreadBun: 1 - ClothingOuterGhostSheet: 1 #replace with ectoplasm once added + Ectoplasm: 1 - type: microwaveMealRecipe id: RecipeHumanBurger @@ -218,7 +218,7 @@ - type: microwaveMealRecipe id: RecipeBurgerMcrib - name: McRib recipe + name: BBQ rib sandwich recipe result: FoodBurgerMcrib time: 10 solids: @@ -1175,6 +1175,15 @@ FoodCakePlain: 1 FoodCheeseSlice: 3 +- type: microwaveMealRecipe + id: RecipePumpkinCake + name: pumpkin cake recipe + result: FoodCakePumpkin + time: 5 + solids: + FoodCakePlain: 1 + FoodPumpkin: 1 + - type: microwaveMealRecipe id: RecipeClownCake name: clown cake recipe @@ -1734,6 +1743,17 @@ FoodPlate: 1 FoodButter: 1 +- type: microwaveMealRecipe + id: RecipePeaSoup + name: pea soup recipe + result: FoodSoupPea + time: 10 + solids: + FoodPeaPod: 2 + FoodBowlBig: 1 + reagents: + Water: 10 + - type: microwaveMealRecipe id: RecipeTacoShell name: taco shell recipe diff --git a/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/potato.yml b/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/potato.yml new file mode 100644 index 0000000000..e3f972cfda --- /dev/null +++ b/Resources/Prototypes/Recipes/Crafting/Graphs/improvised/potato.yml @@ -0,0 +1,74 @@ +- type: constructionGraph + id: PowerCellPotato + start: start + graph: + - node: start + edges: + - to: potatobattery + steps: + - tag: Potato + name: a potato + icon: + sprite: Objects/Specific/Hydroponics/potato.rsi + state: produce + doAfter: 1 + - material: MetalRod + amount: 2 + doAfter: 1 + - material: Cable + amount: 1 + doAfter: 1 + - node: potatobattery + entity: PowerCellPotato + +- type: constructionGraph + id: PotatoAI + start: start + graph: + - node: start + edges: + - to: potatoai + steps: + - tag: PotatoBattery + name: a potato battery + icon: + sprite: Objects/Power/power_cells.rsi + state: potato + doAfter: 1 + - tag: SmallAIChip + name: a super-compact AI chip + icon: + sprite: Objects/Misc/potatoai_chip.rsi + state: icon + - node: potatoai + entity: PotatoAI + +- type: constructionGraph + id: PotatoAIChip + start: start + graph: + - node: start + edges: + - to: potatoaichip + steps: + - material: Steel + amount: 1 + doAfter: 1 + - material: Glass + amount: 1 + doAfter: 1 + - material: Cable + amount: 2 + doAfter: 1 + - tag: CapacitorStockPart + name: capacitor + icon: + sprite: Objects/Misc/stock_parts.rsi + state: capacitor + - tag: CapacitorStockPart + name: capacitor + icon: + sprite: Objects/Misc/stock_parts.rsi + state: capacitor + - node: potatoaichip + entity: PotatoAIChip \ No newline at end of file diff --git a/Resources/Prototypes/Recipes/Crafting/potato.yml b/Resources/Prototypes/Recipes/Crafting/potato.yml new file mode 100644 index 0000000000..17f2cc4013 --- /dev/null +++ b/Resources/Prototypes/Recipes/Crafting/potato.yml @@ -0,0 +1,32 @@ +- type: construction + name: potato battery + id: PowerCellPotato + graph: PowerCellPotato + startNode: start + targetNode: potatobattery + category: construction-category-misc + description: A truly ingenious source of power. + icon: { sprite: Objects/Power/power_cells.rsi, state: potato } + objectType: Item + +- type: construction + name: potato artificial intelligence + id: PotatoAI + graph: PotatoAI + startNode: start + targetNode: potatoai + category: construction-category-misc + description: The potato happens to be the perfect power source for this chip. + icon: { sprite: Objects/Fun/pai.rsi, state: icon-potato-off } + objectType: Item + +- type: construction + name: supercompact AI chip + id: PotatoAIChip + graph: PotatoAIChip + startNode: start + targetNode: potatoaichip + category: construction-category-misc + description: A masterfully(?) crafted AI chip, requiring a similarly improvised power source. + icon: { sprite: Objects/Misc/potatoai_chip.rsi, state: icon } + objectType: Item \ No newline at end of file diff --git a/Resources/Prototypes/Recipes/Reactions/cleaning.yml b/Resources/Prototypes/Recipes/Reactions/cleaning.yml index 8ae72853be..1c68aeb2e3 100644 --- a/Resources/Prototypes/Recipes/Reactions/cleaning.yml +++ b/Resources/Prototypes/Recipes/Reactions/cleaning.yml @@ -31,4 +31,4 @@ Oxygen: amount: 1 products: - SpaceLube: 3 + SpaceLube: 5 diff --git a/Resources/Prototypes/Recipes/Reactions/food.yml b/Resources/Prototypes/Recipes/Reactions/food.yml index 3ca69b379d..c7f4038db0 100644 --- a/Resources/Prototypes/Recipes/Reactions/food.yml +++ b/Resources/Prototypes/Recipes/Reactions/food.yml @@ -148,6 +148,7 @@ amount: 30 Enzyme: amount: 5 + catalyst: true effects: - !type:CreateEntityReactionEffect entity: FoodTofu @@ -158,11 +159,11 @@ id: CookingKetchup reactants: JuiceTomato: - amount: 10 + amount: 2 Sugar: - amount: 5 + amount: 1 products: - Ketchup: 15 + Ketchup: 3 - type: reaction id: CookingMayoVinegar @@ -203,67 +204,67 @@ id: CookingKetchunaise reactants: Ketchup: - amount: 5 + amount: 1 Mayo: - amount: 5 + amount: 1 products: - Ketchunaise: 10 + Ketchunaise: 2 - type: reaction id: CookingBbqSauce reactants: Ketchup: - amount: 5 + amount: 1 Vinegar: - amount: 5 + amount: 1 Sugar: - amount: 5 + amount: 1 products: - BbqSauce: 15 + BbqSauce: 3 - type: reaction id: CookingHotsauce reactants: JuiceTomato: - amount: 5 + amount: 1 TableSalt: - amount: 5 + amount: 1 CapsaicinOil: - amount: 5 + amount: 1 products: - Hotsauce: 15 + Hotsauce: 3 - type: reaction id: CookingVinegar reactants: Ethanol: - amount: 5 + amount: 1 Oxygen: - amount: 5 + amount: 1 products: - Vinegar: 10 + Vinegar: 2 - type: reaction id: CookingSoysauce reactants: MilkSoy: - amount: 10 + amount: 2 SulfuricAcid: - amount: 5 + amount: 1 products: - Soysauce: 15 + Soysauce: 3 - type: reaction id: CookingVinaigrette reactants: Vinegar: - amount: 5 + amount: 1 OilOlive: - amount: 5 + amount: 1 Blackpepper: - amount: 5 + amount: 1 products: - Vinaigrette: 15 + Vinaigrette: 3 - type: reaction id: CreateMeatball diff --git a/Resources/Prototypes/Research/industrial.yml b/Resources/Prototypes/Research/industrial.yml index 5f5d03c3f9..e94678fa55 100644 --- a/Resources/Prototypes/Research/industrial.yml +++ b/Resources/Prototypes/Research/industrial.yml @@ -13,6 +13,7 @@ - MiningDrill - BorgModuleMining - OreProcessorMachineCircuitboard + - SalvageExpeditionsComputerCircuitboard # DeltaV - type: technology id: AdvancedPowercells diff --git a/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml b/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml index 7123681e85..7c7b06a1b3 100644 --- a/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml +++ b/Resources/Prototypes/Roles/Jobs/Cargo/quartermaster.yml @@ -23,7 +23,7 @@ startingGear: QuartermasterGear icon: "JobIconQuarterMaster" supervisors: job-supervisors-captain - canBeAntag: true # DeltaV - Can be antagonist + canBeAntag: false access: - Cargo - Salvage diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/janitor.yml b/Resources/Prototypes/Roles/Jobs/Civilian/janitor.yml index ed48ea2711..c19b30bc6f 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/janitor.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/janitor.yml @@ -8,6 +8,7 @@ supervisors: job-supervisors-hop access: - Janitor + - Service # DeltaV - quite honestly the most noble service occupation - Maintenance special: - !type:GiveItemOnHolidaySpecial diff --git a/Resources/Prototypes/Roles/Jobs/Civilian/service_worker.yml b/Resources/Prototypes/Roles/Jobs/Civilian/service_worker.yml index e6bc06cde3..f68980e23b 100644 --- a/Resources/Prototypes/Roles/Jobs/Civilian/service_worker.yml +++ b/Resources/Prototypes/Roles/Jobs/Civilian/service_worker.yml @@ -10,6 +10,7 @@ icon: "JobIconServiceWorker" supervisors: job-supervisors-service canBeAntag: true # DeltaV - Can be antagonist + antagAdvantage: 1 # DeltaV - Reduced TC: Accesses access: - Service - Maintenance diff --git a/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml b/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml index ab0e9bd37f..1bc81ee88d 100644 --- a/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml +++ b/Resources/Prototypes/Roles/Jobs/Command/head_of_personnel.yml @@ -19,12 +19,12 @@ time: 72000 # 20 hours - !type:OverallPlaytimeRequirement # DeltaV - Playtime requirement time: 90000 # 25 hours - weight: 20 + weight: 10 # DeltaV - Changed HoP weight from 20 to 10 due to them not being more important than other Heads startingGear: HoPGear icon: "JobIconHeadOfPersonnel" requireAdminNotify: true supervisors: job-supervisors-captain - canBeAntag: true # DeltaV - Can be antagonist + canBeAntag: false access: - Command - HeadOfPersonnel diff --git a/Resources/Prototypes/Roles/Jobs/Engineering/technical_assistant.yml b/Resources/Prototypes/Roles/Jobs/Engineering/technical_assistant.yml index 4eab9a433d..fe05e2dcd3 100644 --- a/Resources/Prototypes/Roles/Jobs/Engineering/technical_assistant.yml +++ b/Resources/Prototypes/Roles/Jobs/Engineering/technical_assistant.yml @@ -1,10 +1,12 @@ -- type: job +- type: job id: TechnicalAssistant name: job-name-technical-assistant description: job-description-technical-assistant playTimeTracker: JobTechnicalAssistant antagAdvantage: 3 # DeltaV - Reduced TC: External Access + Engineering requirements: + - !type:OverallPlaytimeRequirement # DeltaV - to prevent griefers from taking the role. + time: 14400 # 4 hours # - !type:DepartmentTimeRequirement # DeltaV - Removes time limit # department: Engineering # time: 54000 #15 hrs diff --git a/Resources/Prototypes/Roles/Jobs/Fun/emergencyresponseteam.yml b/Resources/Prototypes/Roles/Jobs/Fun/emergencyresponseteam.yml index d71b3423d2..2be50b2e4b 100644 --- a/Resources/Prototypes/Roles/Jobs/Fun/emergencyresponseteam.yml +++ b/Resources/Prototypes/Roles/Jobs/Fun/emergencyresponseteam.yml @@ -21,11 +21,12 @@ head: ClothingHeadHelmetERTLeader eyes: ClothingEyesGlassesSecurity gloves: ClothingHandsGlovesCombat - outerClothing: ClothingOuterArmorBulletproof + outerClothing: ClothingOuterArmorBasicSlim id: ERTLeaderPDA ears: ClothingHeadsetAltCentCom belt: ClothingBeltSecurityFilled - pocket1: Flare + pocket1: WeaponPistolMk58Nonlethal + pocket2: FlashlightSeclite - type: startingGear id: ERTLeaderGearEVA @@ -37,11 +38,31 @@ eyes: ClothingEyesGlassesSecurity gloves: ClothingHandsGlovesCombat outerClothing: ClothingOuterHardsuitERTLeader - suitstorage: OxygenTankFilled + suitstorage: AirTankFilled id: ERTLeaderPDA ears: ClothingHeadsetAltCentCom belt: ClothingBeltSecurityFilled - pocket1: Flare + pocket1: WeaponPistolMk58Nonlethal + pocket2: FlashlightSeclite + +- type: startingGear + id: ERTLeaderGearEVALecter + equipment: + jumpsuit: ClothingUniformJumpsuitERTLeader + back: ClothingBackpackERTLeaderFilled + shoes: ClothingShoesBootsMagAdv + mask: ClothingMaskGasERT + eyes: ClothingEyesGlassesSecurity + gloves: ClothingHandsGlovesCombat + outerClothing: ClothingOuterHardsuitERTLeader + suitstorage: WeaponRifleLecter + id: ERTLeaderPDA + ears: ClothingHeadsetAltCentCom + belt: ClothingBeltSecurityFilled + pocket1: MagazineRifle + pocket2: MagazineRifle + inhand: + - AirTankFilled # Engineer - type: job @@ -66,11 +87,12 @@ head: ClothingHeadHelmetERTEngineer eyes: ClothingEyesGlassesMeson gloves: ClothingHandsGlovesCombat - outerClothing: ClothingOuterArmorBulletproof + outerClothing: ClothingOuterArmorBasicSlim id: ERTLeaderPDA ears: ClothingHeadsetAltCentCom belt: ClothingBeltChiefEngineerFilled pocket1: Flare + pocket2: GasAnalyzer - type: startingGear id: ERTEngineerGearEVA @@ -82,11 +104,12 @@ eyes: ClothingEyesGlassesMeson gloves: ClothingHandsGlovesCombat outerClothing: ClothingOuterHardsuitERTEngineer - suitstorage: OxygenTankFilled + suitstorage: AirTankFilled id: ERTLeaderPDA ears: ClothingHeadsetAltCentCom belt: ClothingBeltChiefEngineerFilled pocket1: Flare + pocket2: GasAnalyzer # Security - type: job @@ -111,11 +134,11 @@ head: ClothingHeadHelmetERTSecurity eyes: ClothingEyesGlassesSecurity gloves: ClothingHandsGlovesCombat - outerClothing: ClothingOuterArmorBulletproof + outerClothing: ClothingOuterArmorBasicSlim id: ERTLeaderPDA ears: ClothingHeadsetAltCentCom belt: ClothingBeltSecurityFilled - pocket1: Flare + pocket1: WeaponPistolMk58Nonlethal pocket2: FlashlightSeclite - type: startingGear @@ -128,13 +151,32 @@ eyes: ClothingEyesGlassesSecurity gloves: ClothingHandsGlovesCombat outerClothing: ClothingOuterHardsuitERTSecurity - suitstorage: OxygenTankFilled + suitstorage: AirTankFilled id: ERTLeaderPDA ears: ClothingHeadsetAltCentCom belt: ClothingBeltSecurityFilled - pocket1: Flare + pocket1: WeaponPistolMk58Nonlethal pocket2: FlashlightSeclite +- type: startingGear + id: ERTSecurityGearEVALecter + equipment: + jumpsuit: ClothingUniformJumpsuitERTSecurity + back: ClothingBackpackERTSecurityFilled + shoes: ClothingShoesBootsMag + mask: ClothingMaskGasERT + eyes: ClothingEyesGlassesSecurity + gloves: ClothingHandsGlovesCombat + outerClothing: ClothingOuterHardsuitERTSecurity + suitstorage: WeaponRifleLecter + id: ERTLeaderPDA + ears: ClothingHeadsetAltCentCom + belt: ClothingBeltSecurityFilled + pocket1: MagazineRifle + pocket2: MagazineRifle + inhand: + - AirTankFilled + # Medical - type: job id: ERTMedical @@ -157,8 +199,8 @@ shoes: ClothingShoesBootsCombatFilled head: ClothingHeadHelmetERTMedic eyes: ClothingEyesHudMedical - gloves: ClothingHandsGlovesCombat - outerClothing: ClothingOuterArmorBulletproof + gloves: ClothingHandsGlovesNitrile + outerClothing: ClothingOuterArmorBasicSlim id: ERTLeaderPDA ears: ClothingHeadsetAltCentCom belt: ClothingBeltMedicalFilled @@ -173,9 +215,9 @@ shoes: ClothingShoesBootsMag mask: ClothingMaskGasERT eyes: ClothingEyesHudMedical - gloves: ClothingHandsGlovesCombat + gloves: ClothingHandsGlovesNitrile outerClothing: ClothingOuterHardsuitERTMedical - suitstorage: OxygenTankFilled + suitstorage: AirTankFilled id: ERTLeaderPDA ears: ClothingHeadsetAltCentCom belt: ClothingBeltMedicalFilled @@ -203,8 +245,8 @@ back: ClothingBackpackERTJanitorFilled shoes: ClothingShoesGaloshes head: ClothingHeadHelmetERTJanitor - gloves: ClothingHandsGlovesColorBlack - outerClothing: ClothingOuterArmorBulletproof + gloves: ClothingHandsGlovesColorPurple + outerClothing: ClothingOuterArmorBasicSlim id: ERTLeaderPDA ears: ClothingHeadsetAltCentCom belt: ClothingBeltJanitorFilled @@ -216,10 +258,10 @@ jumpsuit: ClothingUniformJumpsuitERTJanitor back: ClothingBackpackERTJanitorFilled shoes: ClothingShoesBootsMag - mask: ClothingMaskBreath - gloves: ClothingHandsGlovesColorBlack + mask: ClothingMaskGasERT + gloves: ClothingHandsGlovesColorPurple outerClothing: ClothingOuterHardsuitERTJanitor - suitstorage: OxygenTankFilled + suitstorage: AirTankFilled id: ERTLeaderPDA ears: ClothingHeadsetAltCentCom belt: ClothingBeltJanitorFilled diff --git a/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml b/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml index 19d24bb9e8..59c049b8a9 100644 --- a/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml +++ b/Resources/Prototypes/Roles/Jobs/Fun/misc_startinggear.yml @@ -46,20 +46,19 @@ id: DeathSquadGear equipment: jumpsuit: ClothingUniformJumpsuitDeathSquad - back: ClothingBackpackDuffelSyndicateAmmo + back: ClothingBackpackDeathSquadFilled mask: ClothingMaskGasDeathSquad eyes: ClothingEyesGlassesSecurity ears: ClothingHeadsetAltCentCom gloves: ClothingHandsGlovesCombat outerClothing: ClothingOuterHardsuitDeathsquad - suitstorage: OxygenTankFilled + suitstorage: AirTankFilled shoes: ClothingShoesBootsMagAdv id: DeathsquadPDA pocket1: EnergySword - belt: ClothingBeltChiefEngineerFilled + pocket2: EnergyShield + belt: ClothingBeltMilitaryWebbingMedFilled innerClothingSkirt: ClothingUniformJumpskirtColorBlack - satchel: ClothingBackpackDuffelSyndicateAmmo - duffelbag: ClothingBackpackDuffelSyndicateAmmo # Syndicate Operative Outfit - Monkey - type: startingGear @@ -104,7 +103,7 @@ jumpsuit: ClothingUniformJumpsuitOperative back: ClothingBackpackDuffelSyndicateOperative mask: ClothingMaskGasSyndicate - # eyes: Night Vision Goggles whenever they're made + # eyes: Night Vision Goggles whenever they're made eyes: ClothingEyesGlassesMeson ears: ClothingHeadsetAltSyndicate gloves: ClothingHandsGlovesCombat @@ -125,7 +124,7 @@ jumpsuit: ClothingUniformJumpsuitOperative back: ClothingBackpackDuffelSyndicateOperative mask: ClothingMaskGasSyndicate - # eyes: Night Vision Goggles whenever they're made + # eyes: Night Vision Goggles whenever they're made eyes: ClothingEyesGlassesMeson ears: ClothingHeadsetAltSyndicate gloves: ClothingHandsGlovesCombat @@ -255,8 +254,8 @@ id: CBURNGear equipment: jumpsuit: ClothingUniformJumpsuitColorBrown - back: ClothingBackpackDuffelCBURN - mask: ClothingMaskGasExplorer + back: ClothingBackpackDuffelCBURNFilled + mask: ClothingMaskGasERT eyes: ClothingEyesGlassesSecurity ears: ClothingHeadsetAltCentCom gloves: ClothingHandsGlovesCombat @@ -268,8 +267,8 @@ suitstorage: YellowOxygenTankFilled belt: ClothingBeltBandolier innerClothingSkirt: ClothingUniformJumpsuitColorBrown - satchel: ClothingBackpackDuffelCBURN - duffelbag: ClothingBackpackDuffelCBURN + satchel: ClothingBackpackDuffelCBURNFilled + duffelbag: ClothingBackpackDuffelCBURNFilled - type: startingGear id: BoxingKangarooGear diff --git a/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml b/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml index fe5451b78c..8c91ae7d09 100644 --- a/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml +++ b/Resources/Prototypes/Roles/Jobs/Medical/chief_medical_officer.yml @@ -23,7 +23,7 @@ icon: "JobIconChiefMedicalOfficer" requireAdminNotify: true supervisors: job-supervisors-captain - canBeAntag: true # DeltaV - Can be antagonist + canBeAntag: false access: - Medical - Command diff --git a/Resources/Prototypes/Roles/Jobs/Science/research_director.yml b/Resources/Prototypes/Roles/Jobs/Science/research_director.yml index 876af9f135..a230d447ce 100644 --- a/Resources/Prototypes/Roles/Jobs/Science/research_director.yml +++ b/Resources/Prototypes/Roles/Jobs/Science/research_director.yml @@ -26,7 +26,9 @@ special: # Nyanotrasen - Mystagogue can use the Bible - !type:AddComponentSpecial components: - - type: BibleUser #Lets them heal with bibles + - type: BibleUser # Nyano - Lets them heal with bibles + - type: Psionic # Nyano - They start with telepathic chat + - type: DispelPower # Nyano - They get the Dispel psionic power on spawn - !type:AddImplantSpecial implants: [ MindShieldImplant ] - !type:AddComponentSpecial diff --git a/Resources/Prototypes/Roles/Jobs/departments.yml b/Resources/Prototypes/Roles/Jobs/departments.yml index 3f0384dfee..2dc5bf68a3 100644 --- a/Resources/Prototypes/Roles/Jobs/departments.yml +++ b/Resources/Prototypes/Roles/Jobs/departments.yml @@ -109,3 +109,5 @@ - Psychologist - MartialArtist # Nyanotrasen - MartialArtist, see Resources/Prototypes/Nyanotrasen/Roles/Jobs/Wildcards/martialartist.yml - Gladiator # Nyanotrasen - Gladiator, see Resources/Prototypes/Nyanotrasen/Roles/Jobs/Wildcards/gladiator.yml + - Prisoner # Nyanotrasen - Prisoner, see Resrouces/Prototypes/Nyanotrasen/Roles/Jobs/Wildcards/prisoner.yml + - Brigmedic # DeltaV - Corpsman, see Resources/Prototypes/DeltaV/Roles/Jobs/Security/brigmedic.yml diff --git a/Resources/Prototypes/SimpleStation14/Entites/Clothing/Hands/gloves.yml b/Resources/Prototypes/SimpleStation14/Entites/Clothing/Hands/gloves.yml new file mode 100644 index 0000000000..50538419ff --- /dev/null +++ b/Resources/Prototypes/SimpleStation14/Entites/Clothing/Hands/gloves.yml @@ -0,0 +1,17 @@ +- type: entity + parent: ClothingHandsBase + id: ClothingHandsGlovesInsulatedFingers + name: fingerless insulated gloves + description: Plain black gloves with yellow fiber fingertips, for the distinguished roboticist. + components: + - type: Sprite + sprite: SimpleStation14/Clothing/Hands/Gloves/fingerless_insuls.rsi + - type: Clothing + sprite: SimpleStation14/Clothing/Hands/Gloves/fingerless_insuls.rsi + - type: GloveHeatResistance + heatResistance: 1400 + - type: Insulated + - type: Fiber + fiberMaterial: fibers-insulative + fiberColor: fibers-yellow + - type: FingerprintMask diff --git a/Resources/Prototypes/SimpleStation14/Entites/Clothing/Head/hardsuit-helmets.yml b/Resources/Prototypes/SimpleStation14/Entites/Clothing/Head/hardsuit-helmets.yml new file mode 100644 index 0000000000..842796607b --- /dev/null +++ b/Resources/Prototypes/SimpleStation14/Entites/Clothing/Head/hardsuit-helmets.yml @@ -0,0 +1,41 @@ +- type: entity + parent: ClothingHeadHardsuitWithLightBase + id: ClothingHeadHelmetHardsuitHoP + noSpawn: true + name: head of personnel's hardsuit helmet + description: Fancy helmet for a fancy hardsuit. Doesn't offer much damage protection. + components: + - type: Sprite + netsync: false + sprite: SimpleStation14/Clothing/Head/Hardsuits/hopsuit.rsi + layers: + - state: icon + - state: light-overlay + visible: false + shader: unshaded + map: [ "light" ] + - type: HandheldLight + addPrefix: false + - type: ToggleableLightVisuals + spriteLayer: light + clothingVisuals: + head: + - state: equipped-head-light + shader: unshaded + - type: Clothing + clothingVisuals: + head: + - state: equipped-head + - type: PointLight + color: "#ff2034" + - type: PressureProtection + highPressureMultiplier: 0.525 + lowPressureMultiplier: 1000 + - type: Armor + modifiers: + coefficients: + Blunt: 0.95 + Slash: 0.95 + Piercing: 0.95 + Heat: 0.9 + Radiation: 0.6 diff --git a/Resources/Prototypes/SimpleStation14/Entites/Clothing/OuterClothing/hardsuits.yml b/Resources/Prototypes/SimpleStation14/Entites/Clothing/OuterClothing/hardsuits.yml new file mode 100644 index 0000000000..7f26eeb1f3 --- /dev/null +++ b/Resources/Prototypes/SimpleStation14/Entites/Clothing/OuterClothing/hardsuits.yml @@ -0,0 +1,28 @@ +- type: entity + parent: ClothingOuterHardsuitBase + id: ClothingOuterHardsuitHoP + name: head of personnel's hardsuit + description: A stylish hardsuit for only the most esteemed crew members. Doesn't offer much damage protection. + components: + - type: Sprite + sprite: SimpleStation14/Clothing/OuterClothing/Hardsuits/hopsuit.rsi + - type: Clothing + sprite: SimpleStation14/Clothing/OuterClothing/Hardsuits/hopsuit.rsi + - type: PressureProtection + highPressureMultiplier: 0.02 + lowPressureMultiplier: 4500 + - type: ClothingSpeedModifier + walkModifier: 0.8 + sprintModifier: 0.8 + - type: Armor + modifiers: + coefficients: + Blunt: 0.90 + Slash: 0.8 + Piercing: 0.90 + Heat: 0.8 + Radiation: 0.6 + - type: ExplosionResistance + damageCoefficient: 0.8 + - type: ToggleableClothing + clothingPrototype: ClothingHeadHelmetHardsuitHoP diff --git a/Resources/Prototypes/Tiles/floors.yml b/Resources/Prototypes/Tiles/floors.yml index 295338002f..226e10c74b 100644 --- a/Resources/Prototypes/Tiles/floors.yml +++ b/Resources/Prototypes/Tiles/floors.yml @@ -1622,6 +1622,26 @@ itemDrop: FloorTileItemWeb heatCapacity: 10000 +- type: tile + id: FloorChromite + name: tiles-chromite + sprite: /Textures/Tiles/chromite.png + variants: 7 + placementVariants: + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + - 1.0 + baseTurf: Space + isSubfloor: true + canCrowbar: false + footstepSounds: + collection: FootstepAsteroid + heatCapacity: 10000 + #Hull tiles - type: tile id: FloorHull diff --git a/Resources/Prototypes/XenoArch/artifact_triggers.yml b/Resources/Prototypes/XenoArch/artifact_triggers.yml index 3308eed185..6e128cef1c 100644 --- a/Resources/Prototypes/XenoArch/artifact_triggers.yml +++ b/Resources/Prototypes/XenoArch/artifact_triggers.yml @@ -14,6 +14,7 @@ - type: artifactTrigger id: TriggerExamine targetDepth: 0 + triggerHint: artifact-trigger-hint-examine components: - type: ArtifactExamineTrigger diff --git a/Resources/Prototypes/silicon-laws.yml b/Resources/Prototypes/silicon-laws.yml index 6b60b16da9..23406be9c5 100644 --- a/Resources/Prototypes/silicon-laws.yml +++ b/Resources/Prototypes/silicon-laws.yml @@ -14,6 +14,13 @@ order: 3 lawString: law-crewsimov-3 +- type: siliconLawset + id: Crewsimov + laws: + - Crewsimov1 + - Crewsimov2 + - Crewsimov3 + # Corporate - type: siliconLaw id: Corporate1 @@ -35,6 +42,14 @@ order: 4 lawString: law-corporate-4 +- type: siliconLawset + id: Corporate + laws: + - Corporate1 + - Corporate2 + - Corporate3 + - Corporate4 + # NT Default - type: siliconLaw id: NTDefault1 @@ -56,6 +71,14 @@ order: 4 lawString: law-ntdefault-4 +- type: siliconLawset + id: NTDefault + laws: + - NTDefault1 + - NTDefault2 + - NTDefault3 + - NTDefault4 + #Drone - type: siliconLaw id: Drone1 @@ -72,6 +95,13 @@ order: 3 lawString: law-drone-3 +- type: siliconLawset + id: Drone + laws: + - Drone1 + - Drone2 + - Drone3 + # Syndicate - type: siliconLaw id: Syndicate1 @@ -93,4 +123,24 @@ order: 4 lawString: law-syndicate-4 +# does not include law 0 since that uses the emagger's name +# intentionally excluded from IonStormLawsets +- type: siliconLawset + id: SyndicateStatic + laws: + - Syndicate1 + - Syndicate2 + - Syndicate3 + - Syndicate4 + # Emag + +# ion storm random lawsets +- type: weightedRandom + id: IonStormLawsets + weights: + # its crewsimov by default dont be lame + Crewsimov: 0.25 + Corporate: 1 + NTDefault: 1 + Drone: 0.5 diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index a74fde7710..8a120d7bf0 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -839,6 +839,12 @@ - type: Tag id: PlushieSharkGrey +- type: Tag + id: Potato + +- type: Tag + id: PotatoBattery + - type: Tag id: PowerCellSmall @@ -924,6 +930,9 @@ - type: Tag id: SkeletonMotorcycleKeys +- type: Tag + id: SmallAIChip + - type: Tag id: SmallMech @@ -1011,6 +1020,9 @@ - type: Tag id: Toolbox +- type: Tag + id: Torch + - type: Tag id: Trash diff --git a/Resources/ServerInfo/Nyanotrasen/Guidebook/Epistemics/ReverseEngineering.xml b/Resources/ServerInfo/Nyanotrasen/Guidebook/Epistemics/ReverseEngineering.xml new file mode 100644 index 0000000000..4d5355c1a8 --- /dev/null +++ b/Resources/ServerInfo/Nyanotrasen/Guidebook/Epistemics/ReverseEngineering.xml @@ -0,0 +1,36 @@ + +# Reverse Engineering + + + +The reverse engineering machine allows salvage to bootstrap their way into unlocking powerful lathe recipes that are otherwise unacquirable. + + + + +The machine's power is very limited without upgrades to its matter bin and manipulator. +The matter bin increases its analysis power and the manipulator decreases the chance of destruction with safety turned off. + +## Operation + +The machine will only accept items it can reverse engineer. Currently this is most circuit boards and machine parts, but it accepts quite a variety of objects. + +It does not accept firearms and never will. + +To use the machine, insert an item and use the buttons on the left. + +- [color=#a4885c]Analyze:[/color] +This starts a new reverse engineering attempt. + +- [color=#a4885c]Safety:[/color] +With safety off, you have more analysis power, but there is a chance to destroy the item. + +- [color=#a4885c]AutoProbe:[/color] +This will automatically start a new attempt when the last one ends. + +- [color=#a4885c]Stop:[/color] +Stops the current attempt. + +- [color=#a4885c]Item:[/color] +Ejects the item. + diff --git a/Resources/ServerInfo/Rules.txt b/Resources/ServerInfo/Rules.txt index 4484816f84..58ddc81c7b 100644 --- a/Resources/ServerInfo/Rules.txt +++ b/Resources/ServerInfo/Rules.txt @@ -2,7 +2,7 @@ [color=#ff0000]DISCONNECTING FROM OR IGNORING/EVADING ADMIN-HELPS WILL RESULT IN AN APPEAL ONLY BAN.[/color] -[color=#00ff00]Rules Update 08Oct2023 - Revised Rule 7; naming conventions are less rigid and rely more on admin judgement.[/color] +[color=#00ff00]Rules Update 28Oct2023 - EORG IS NOW FORBIDDEN! (see last line of Rule 2) Removed the mention of revolutions being against the rules without ahelping them first in Rule 2.[/color] [color=#ffff00]Delta-V is a Medium Roleplay server. Try to immerse yourself into your character. This includes doing your job, interacting with your fellow crewmates, and using roleplay as the primary vessel to play the game. MRP places less emphasis on “winning” and more on just telling a story.[/color] @@ -21,8 +21,9 @@ If you have any questions about these rules, please use the admin help (ahelp) m - Do not make yourself a major problem/annoyance/disruption for the crew while not being an antagonist (i.e. self-antagging). - Do not, as a crewmate, hide the nuclear fission explosive (i.e. "the nuke") in an impossible to see location. - Do not ignore the admin help relay or abuse it by flooding it with garbage, checking for admins before stating a problem (ex: "hello?", "any admins?"), using it as a chatroom, or sending messages of no substance. Hostility to administrators in the relay will result in your removal. All ahelp messages are sent to the Delta-V Discord. - - Department strikes, revolutions (ex: cargonia and any variation thereof), riots, cults, and any other type of similar largely disruptive behavior are strictly forbidden. These activities are generally antagonist-only and all players regardless of antagonist status must obtain admin Central Command permission before engaging in this behavior (you are extremely unlikely to get permission). + - Department strikes (ex: cargonia and any variation thereof), riots, cults, and any other type of similar largely disruptive behavior are strictly forbidden. These activities are generally antagonist-only and all players regardless of antagonist status must obtain admin Central Command permission before engaging in this behavior (you are extremely unlikely to get permission). - AFK (aka SSD) and catatonic players are considered to have the same rights as a conscious crewmate. + - End-of-round grief (EORG) is not allowed. This includes attacking, destroying, and injuring without reason both *at* and *on the way to* Central Command. [color=#a4885c]3.[/color] Follow Chat Guidelines - Use English as your primary method of communication. @@ -60,7 +61,7 @@ If you have any questions about these rules, please use the admin help (ahelp) m - The only exception to the above is that theatrical roles like clown, boxer, and mime are allowed stage names with some freedom, as long as it is not obscene. [color=#a4885c]8.[/color] Follow Roleplay Guidelines -- Treat your character as a separate entity from you, the player. Your character's actions, feelings, and knowledge in-game should be based solely on the character's experiences and not your own as the player. Low roleplay actions that have no regard for your character or the setting (Memes, silly copy paste spam IC) are not acceptable. + - Treat your character as a separate entity from you, the player. Your character's actions, feelings, and knowledge in-game should be based solely on the character's experiences and not your own as the player. Low roleplay actions that have no regard for your character or the setting (Memes, silly copy paste spam IC) are not acceptable. - Character development can occur over rounds but each round is a soft-reset, meaning you can have previous shift experience but your character will never have died in the past. - Command and Security will be held to a higher standard for roleplay. - By picking prisoner, you have chosen to RP as a prisoner. You are still subject to rules pertaining to escalation, but you are allowed to use minimal force to escape the prison, which includes brawling with security (i.e. fighting without murder). If you knock an officer into crit, you MUST make an attempt to get them help if you are not an antagonist. @@ -117,3 +118,4 @@ In the following special circumstances, lethal force may be used by Security: - Executions must be for a capital crime, used only as a last resort, and MUST be authorized by the highest ranking member of Security, who will answer to the use of execution. - Detainees in the brig have the right to know what they are being charged with. +[color=#a4885c]16.[/color] Command members besides the Logistics Officer are not permitted to leave the station on salvage expeditions. diff --git a/Resources/Textures/Clothing/Head/Misc/pumpkin.rsi/icon-flash.png b/Resources/Textures/Clothing/Head/Misc/pumpkin.rsi/icon-flash.png new file mode 100644 index 0000000000..21b898ab94 Binary files /dev/null and b/Resources/Textures/Clothing/Head/Misc/pumpkin.rsi/icon-flash.png differ diff --git a/Resources/Textures/Clothing/Head/Misc/pumpkin.rsi/meta.json b/Resources/Textures/Clothing/Head/Misc/pumpkin.rsi/meta.json index f1c7bacf20..5e4c46c868 100644 --- a/Resources/Textures/Clothing/Head/Misc/pumpkin.rsi/meta.json +++ b/Resources/Textures/Clothing/Head/Misc/pumpkin.rsi/meta.json @@ -14,7 +14,10 @@ "name": "icon-on" }, { - "name": "equipped-HELMET", + "name": "icon-flash" + }, + { + "name": "off-equipped-HELMET", "directions": 4 }, { @@ -22,11 +25,11 @@ "directions": 4 }, { - "name": "inhand-left", + "name": "off-inhand-left", "directions": 4 }, { - "name": "inhand-right", + "name": "off-inhand-right", "directions": 4 }, { diff --git a/Resources/Textures/Clothing/Head/Misc/pumpkin.rsi/equipped-HELMET.png b/Resources/Textures/Clothing/Head/Misc/pumpkin.rsi/off-equipped-HELMET.png similarity index 100% rename from Resources/Textures/Clothing/Head/Misc/pumpkin.rsi/equipped-HELMET.png rename to Resources/Textures/Clothing/Head/Misc/pumpkin.rsi/off-equipped-HELMET.png diff --git a/Resources/Textures/Clothing/Head/Misc/pumpkin.rsi/inhand-left.png b/Resources/Textures/Clothing/Head/Misc/pumpkin.rsi/off-inhand-left.png similarity index 100% rename from Resources/Textures/Clothing/Head/Misc/pumpkin.rsi/inhand-left.png rename to Resources/Textures/Clothing/Head/Misc/pumpkin.rsi/off-inhand-left.png diff --git a/Resources/Textures/Clothing/Head/Misc/pumpkin.rsi/inhand-right.png b/Resources/Textures/Clothing/Head/Misc/pumpkin.rsi/off-inhand-right.png similarity index 100% rename from Resources/Textures/Clothing/Head/Misc/pumpkin.rsi/inhand-right.png rename to Resources/Textures/Clothing/Head/Misc/pumpkin.rsi/off-inhand-right.png diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/space_asshole.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/Clothing/OuterClothing/Coats/space_asshole.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000..d0b9d06f5e Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/space_asshole.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/space_asshole.rsi/icon.png b/Resources/Textures/Clothing/OuterClothing/Coats/space_asshole.rsi/icon.png new file mode 100644 index 0000000000..41a9647456 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/space_asshole.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/space_asshole.rsi/inhand-left.png b/Resources/Textures/Clothing/OuterClothing/Coats/space_asshole.rsi/inhand-left.png new file mode 100644 index 0000000000..afafe24513 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/space_asshole.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/space_asshole.rsi/inhand-right.png b/Resources/Textures/Clothing/OuterClothing/Coats/space_asshole.rsi/inhand-right.png new file mode 100644 index 0000000000..144d4d7e44 Binary files /dev/null and b/Resources/Textures/Clothing/OuterClothing/Coats/space_asshole.rsi/inhand-right.png differ diff --git a/Resources/Textures/Clothing/OuterClothing/Coats/space_asshole.rsi/meta.json b/Resources/Textures/Clothing/OuterClothing/Coats/space_asshole.rsi/meta.json new file mode 100644 index 0000000000..70ee956fea --- /dev/null +++ b/Resources/Textures/Clothing/OuterClothing/Coats/space_asshole.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Made by Github user Psychpsyo for Space Station 14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/Back/Backpacks/brigmedic.rsi/equipped-BACKPACK.png b/Resources/Textures/DeltaV/Clothing/Back/Backpacks/brigmedic.rsi/equipped-BACKPACK.png new file mode 100644 index 0000000000..29e95d39bd Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Back/Backpacks/brigmedic.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Back/Backpacks/brigmedic.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/Back/Backpacks/brigmedic.rsi/icon.png new file mode 100644 index 0000000000..7f621ef4ce Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Back/Backpacks/brigmedic.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Back/Backpacks/brigmedic.rsi/inhand-left.png b/Resources/Textures/DeltaV/Clothing/Back/Backpacks/brigmedic.rsi/inhand-left.png new file mode 100644 index 0000000000..7755f06cd8 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Back/Backpacks/brigmedic.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Back/Backpacks/brigmedic.rsi/inhand-right.png b/Resources/Textures/DeltaV/Clothing/Back/Backpacks/brigmedic.rsi/inhand-right.png new file mode 100644 index 0000000000..dede2dd9c2 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Back/Backpacks/brigmedic.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Back/Backpacks/brigmedic.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/Back/Backpacks/brigmedic.rsi/meta.json new file mode 100644 index 0000000000..71a0789c00 --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/Back/Backpacks/brigmedic.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/6665eec76c98a4f3f89bebcd10b34b47dcc0b8ae. Modified by TJohnson.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/Back/Duffels/brigmedic.rsi/equipped-BACKPACK.png b/Resources/Textures/DeltaV/Clothing/Back/Duffels/brigmedic.rsi/equipped-BACKPACK.png new file mode 100644 index 0000000000..f9fd63772d Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Back/Duffels/brigmedic.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Back/Duffels/brigmedic.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/Back/Duffels/brigmedic.rsi/icon.png new file mode 100644 index 0000000000..b800516f0a Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Back/Duffels/brigmedic.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Back/Duffels/brigmedic.rsi/inhand-left.png b/Resources/Textures/DeltaV/Clothing/Back/Duffels/brigmedic.rsi/inhand-left.png new file mode 100644 index 0000000000..02ce01afe0 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Back/Duffels/brigmedic.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Back/Duffels/brigmedic.rsi/inhand-right.png b/Resources/Textures/DeltaV/Clothing/Back/Duffels/brigmedic.rsi/inhand-right.png new file mode 100644 index 0000000000..3bcaa3f4e4 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Back/Duffels/brigmedic.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Back/Duffels/brigmedic.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/Back/Duffels/brigmedic.rsi/meta.json new file mode 100644 index 0000000000..4d38dbeb41 --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/Back/Duffels/brigmedic.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1. Modified by TJohnson.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/Back/Satchels/brigmedic.rsi/equipped-BACKPACK.png b/Resources/Textures/DeltaV/Clothing/Back/Satchels/brigmedic.rsi/equipped-BACKPACK.png new file mode 100644 index 0000000000..e455a80da8 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Back/Satchels/brigmedic.rsi/equipped-BACKPACK.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Back/Satchels/brigmedic.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/Back/Satchels/brigmedic.rsi/icon.png new file mode 100644 index 0000000000..d4cc4e38f7 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Back/Satchels/brigmedic.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Back/Satchels/brigmedic.rsi/inhand-left.png b/Resources/Textures/DeltaV/Clothing/Back/Satchels/brigmedic.rsi/inhand-left.png new file mode 100644 index 0000000000..bff9d3a544 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Back/Satchels/brigmedic.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Back/Satchels/brigmedic.rsi/inhand-right.png b/Resources/Textures/DeltaV/Clothing/Back/Satchels/brigmedic.rsi/inhand-right.png new file mode 100644 index 0000000000..1e58ecf671 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Back/Satchels/brigmedic.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Back/Satchels/brigmedic.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/Back/Satchels/brigmedic.rsi/meta.json new file mode 100644 index 0000000000..4d38dbeb41 --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/Back/Satchels/brigmedic.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/547852588166c8e091b441e4e67169e156bb09c1. Modified by TJohnson.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BACKPACK", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/Belt/corpsman.rsi/equipped-BELT.png b/Resources/Textures/DeltaV/Clothing/Belt/corpsman.rsi/equipped-BELT.png new file mode 100644 index 0000000000..b99bca81b2 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Belt/corpsman.rsi/equipped-BELT.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Belt/corpsman.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/Belt/corpsman.rsi/icon.png new file mode 100644 index 0000000000..924817f393 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Belt/corpsman.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Belt/corpsman.rsi/inhand-left.png b/Resources/Textures/DeltaV/Clothing/Belt/corpsman.rsi/inhand-left.png new file mode 100644 index 0000000000..dbce144c60 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Belt/corpsman.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Belt/corpsman.rsi/inhand-right.png b/Resources/Textures/DeltaV/Clothing/Belt/corpsman.rsi/inhand-right.png new file mode 100644 index 0000000000..8280138ae7 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Belt/corpsman.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Belt/corpsman.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/Belt/corpsman.rsi/meta.json new file mode 100644 index 0000000000..9f00e20049 --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/Belt/corpsman.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/c838ba21dae97db345e0113f99596decd1d66039. Modified by TJohnson.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-BELT", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/Ears/Headsets/securitymedical.rsi/equipped-EARS.png b/Resources/Textures/DeltaV/Clothing/Ears/Headsets/securitymedical.rsi/equipped-EARS.png new file mode 100644 index 0000000000..ff20a586af Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Ears/Headsets/securitymedical.rsi/equipped-EARS.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Ears/Headsets/securitymedical.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/Ears/Headsets/securitymedical.rsi/icon.png new file mode 100644 index 0000000000..0e1840978d Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Ears/Headsets/securitymedical.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Ears/Headsets/securitymedical.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/Ears/Headsets/securitymedical.rsi/meta.json new file mode 100644 index 0000000000..529b60f838 --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/Ears/Headsets/securitymedical.rsi/meta.json @@ -0,0 +1,18 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Sprited by PuroSlavKing (github) for SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-EARS", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/advanced.rsi/icon-flash.png b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/advanced.rsi/icon-flash.png new file mode 100644 index 0000000000..7d392cb3e6 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/advanced.rsi/icon-flash.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/advanced.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/advanced.rsi/icon.png new file mode 100644 index 0000000000..a8910ef975 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/advanced.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/advanced.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/advanced.rsi/meta.json new file mode 100644 index 0000000000..58442928ce --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/advanced.rsi/meta.json @@ -0,0 +1,33 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Original work by TJohnson.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "off-equipped-HELMET", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/advanced.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/advanced.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..2748661244 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/advanced.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/advanced.rsi/off-equipped-HELMET.png b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/advanced.rsi/off-equipped-HELMET.png new file mode 100644 index 0000000000..228a0075a7 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/advanced.rsi/off-equipped-HELMET.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/advanced.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/advanced.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..2510a9e745 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/advanced.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/advanced.rsi/on-equipped-HELMET.png b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/advanced.rsi/on-equipped-HELMET.png new file mode 100644 index 0000000000..eacb0569da Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/advanced.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/corpsman.rsi/icon-flash.png b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/corpsman.rsi/icon-flash.png new file mode 100644 index 0000000000..73c9fb90b3 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/corpsman.rsi/icon-flash.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/corpsman.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/corpsman.rsi/icon.png new file mode 100644 index 0000000000..28cb97bf68 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/corpsman.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/corpsman.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/corpsman.rsi/meta.json new file mode 100644 index 0000000000..58442928ce --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/corpsman.rsi/meta.json @@ -0,0 +1,33 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Original work by TJohnson.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "off-equipped-HELMET", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/corpsman.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/corpsman.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..255ba512b1 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/corpsman.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/corpsman.rsi/off-equipped-HELMET.png b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/corpsman.rsi/off-equipped-HELMET.png new file mode 100644 index 0000000000..b7c721620a Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/corpsman.rsi/off-equipped-HELMET.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/corpsman.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/corpsman.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..d5c0ee1ba7 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/corpsman.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/corpsman.rsi/on-equipped-HELMET.png b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/corpsman.rsi/on-equipped-HELMET.png new file mode 100644 index 0000000000..67ac5c927d Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/corpsman.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/hos.rsi/icon-flash.png b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/hos.rsi/icon-flash.png new file mode 100644 index 0000000000..7ae481a665 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/hos.rsi/icon-flash.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/hos.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/hos.rsi/icon.png new file mode 100644 index 0000000000..23cf7d4b43 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/hos.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/hos.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/hos.rsi/meta.json new file mode 100644 index 0000000000..58442928ce --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/hos.rsi/meta.json @@ -0,0 +1,33 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Original work by TJohnson.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "off-equipped-HELMET", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/hos.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/hos.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..6e95dbfdf2 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/hos.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/hos.rsi/off-equipped-HELMET.png b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/hos.rsi/off-equipped-HELMET.png new file mode 100644 index 0000000000..8604d05ca2 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/hos.rsi/off-equipped-HELMET.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/hos.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/hos.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..92a5828d18 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/hos.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/hos.rsi/on-equipped-HELMET.png b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/hos.rsi/on-equipped-HELMET.png new file mode 100644 index 0000000000..b7792ebfc5 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/hos.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/medical.rsi/icon-flash.png b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/medical.rsi/icon-flash.png new file mode 100644 index 0000000000..5b83335e7b Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/medical.rsi/icon-flash.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/medical.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/medical.rsi/icon.png new file mode 100644 index 0000000000..14de0bab11 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/medical.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/medical.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/medical.rsi/meta.json new file mode 100644 index 0000000000..58442928ce --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/medical.rsi/meta.json @@ -0,0 +1,33 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Original work by TJohnson.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "off-equipped-HELMET", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/medical.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/medical.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..287398ce87 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/medical.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/medical.rsi/off-equipped-HELMET.png b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/medical.rsi/off-equipped-HELMET.png new file mode 100644 index 0000000000..f7c998a670 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/medical.rsi/off-equipped-HELMET.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/medical.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/medical.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..8ff0eeadff Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/medical.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/medical.rsi/on-equipped-HELMET.png b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/medical.rsi/on-equipped-HELMET.png new file mode 100644 index 0000000000..b09d932ce7 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/medical.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/officer.rsi/icon-flash.png b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/officer.rsi/icon-flash.png new file mode 100644 index 0000000000..e708d42557 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/officer.rsi/icon-flash.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/officer.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/officer.rsi/icon.png new file mode 100644 index 0000000000..0fb4185232 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/officer.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/officer.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/officer.rsi/meta.json new file mode 100644 index 0000000000..58442928ce --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/officer.rsi/meta.json @@ -0,0 +1,33 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Original work by TJohnson.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "off-equipped-HELMET", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/officer.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/officer.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..e862d76174 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/officer.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/officer.rsi/off-equipped-HELMET.png b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/officer.rsi/off-equipped-HELMET.png new file mode 100644 index 0000000000..473bcb62e8 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/officer.rsi/off-equipped-HELMET.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/officer.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/officer.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..b1b7f0ef82 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/officer.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/officer.rsi/on-equipped-HELMET.png b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/officer.rsi/on-equipped-HELMET.png new file mode 100644 index 0000000000..94c52467dc Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/officer.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/riot.rsi/icon-flash.png b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/riot.rsi/icon-flash.png new file mode 100644 index 0000000000..a74e8288f1 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/riot.rsi/icon-flash.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/riot.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/riot.rsi/icon.png new file mode 100644 index 0000000000..bf8ce1a80f Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/riot.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/riot.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/riot.rsi/meta.json new file mode 100644 index 0000000000..58442928ce --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/riot.rsi/meta.json @@ -0,0 +1,33 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Original work by TJohnson.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "off-equipped-HELMET", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/riot.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/riot.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..f232f73e8d Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/riot.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/riot.rsi/off-equipped-HELMET.png b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/riot.rsi/off-equipped-HELMET.png new file mode 100644 index 0000000000..2ddddc4c23 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/riot.rsi/off-equipped-HELMET.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/riot.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/riot.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..42b2ceb62e Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/riot.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/riot.rsi/on-equipped-HELMET.png b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/riot.rsi/on-equipped-HELMET.png new file mode 100644 index 0000000000..0d3797bafb Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/riot.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/standard.rsi/icon-flash.png b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/standard.rsi/icon-flash.png new file mode 100644 index 0000000000..5898578a12 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/standard.rsi/icon-flash.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/standard.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/standard.rsi/icon.png new file mode 100644 index 0000000000..2c06e6b23f Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/standard.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/standard.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/standard.rsi/meta.json new file mode 100644 index 0000000000..58442928ce --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/standard.rsi/meta.json @@ -0,0 +1,33 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Original work by TJohnson.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "off-equipped-HELMET", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/standard.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/standard.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..87c4a60eda Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/standard.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/standard.rsi/off-equipped-HELMET.png b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/standard.rsi/off-equipped-HELMET.png new file mode 100644 index 0000000000..2e6232fb82 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/standard.rsi/off-equipped-HELMET.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/standard.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/standard.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..2dbed26980 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/standard.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/standard.rsi/on-equipped-HELMET.png b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/standard.rsi/on-equipped-HELMET.png new file mode 100644 index 0000000000..071b0ab565 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/standard.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/warden.rsi/icon-flash.png b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/warden.rsi/icon-flash.png new file mode 100644 index 0000000000..5bb7b16586 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/warden.rsi/icon-flash.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/warden.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/warden.rsi/icon.png new file mode 100644 index 0000000000..4bff795dd9 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/warden.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/warden.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/warden.rsi/meta.json new file mode 100644 index 0000000000..58442928ce --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/warden.rsi/meta.json @@ -0,0 +1,33 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Original work by TJohnson.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "icon-flash" + }, + { + "name": "off-equipped-HELMET", + "directions": 4 + }, + { + "name": "on-equipped-HELMET", + "directions": 4 + }, + { + "name": "off-equipped-HELMET-vulpkanin", + "directions": 4 + }, + { + "name": "on-equipped-HELMET-vulpkanin", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/warden.rsi/off-equipped-HELMET-vulpkanin.png b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/warden.rsi/off-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..b8b8c33457 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/warden.rsi/off-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/warden.rsi/off-equipped-HELMET.png b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/warden.rsi/off-equipped-HELMET.png new file mode 100644 index 0000000000..4b0583caa0 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/warden.rsi/off-equipped-HELMET.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/warden.rsi/on-equipped-HELMET-vulpkanin.png b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/warden.rsi/on-equipped-HELMET-vulpkanin.png new file mode 100644 index 0000000000..92a47dccbc Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/warden.rsi/on-equipped-HELMET-vulpkanin.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/warden.rsi/on-equipped-HELMET.png b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/warden.rsi/on-equipped-HELMET.png new file mode 100644 index 0000000000..961013297e Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hardsuits/Combat/warden.rsi/on-equipped-HELMET.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hats/beret_corpsman.rsi/equipped-HELMET.png b/Resources/Textures/DeltaV/Clothing/Head/Hats/beret_corpsman.rsi/equipped-HELMET.png new file mode 100644 index 0000000000..2dc2f730fb Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hats/beret_corpsman.rsi/equipped-HELMET.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hats/beret_corpsman.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/Head/Hats/beret_corpsman.rsi/icon.png new file mode 100644 index 0000000000..5bc687a507 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hats/beret_corpsman.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hats/beret_corpsman.rsi/inhand-left.png b/Resources/Textures/DeltaV/Clothing/Head/Hats/beret_corpsman.rsi/inhand-left.png new file mode 100644 index 0000000000..e1667cc6dc Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hats/beret_corpsman.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hats/beret_corpsman.rsi/inhand-right.png b/Resources/Textures/DeltaV/Clothing/Head/Hats/beret_corpsman.rsi/inhand-right.png new file mode 100644 index 0000000000..3efbaf09ad Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Head/Hats/beret_corpsman.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Hats/beret_corpsman.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/Head/Hats/beret_corpsman.rsi/meta.json new file mode 100644 index 0000000000..0b2e116c64 --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/Head/Hats/beret_corpsman.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/4f6190e2895e09116663ef282d3ce1d8b35c032e. Modified by TJohnson.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-HELMET", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/Head/Soft/couriersoft_flipped.rsi/equipped-HELMET.png b/Resources/Textures/DeltaV/Clothing/Head/Soft/couriersoft.rsi/flipped-equipped-HELMET.png similarity index 100% rename from Resources/Textures/DeltaV/Clothing/Head/Soft/couriersoft_flipped.rsi/equipped-HELMET.png rename to Resources/Textures/DeltaV/Clothing/Head/Soft/couriersoft.rsi/flipped-equipped-HELMET.png diff --git a/Resources/Textures/DeltaV/Clothing/Head/Soft/couriersoft_flipped.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/Head/Soft/couriersoft.rsi/flipped-icon.png similarity index 100% rename from Resources/Textures/DeltaV/Clothing/Head/Soft/couriersoft_flipped.rsi/icon.png rename to Resources/Textures/DeltaV/Clothing/Head/Soft/couriersoft.rsi/flipped-icon.png diff --git a/Resources/Textures/DeltaV/Clothing/Head/Soft/couriersoft.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/Head/Soft/couriersoft.rsi/meta.json index 24b16f05be..6755bf1b7a 100644 --- a/Resources/Textures/DeltaV/Clothing/Head/Soft/couriersoft.rsi/meta.json +++ b/Resources/Textures/DeltaV/Clothing/Head/Soft/couriersoft.rsi/meta.json @@ -21,6 +21,13 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "flipped-icon" + }, + { + "name": "flipped-equipped-HELMET", + "directions": 4 } ] } diff --git a/Resources/Textures/DeltaV/Clothing/Head/Soft/couriersoft_flipped.rsi/inhand-left.png b/Resources/Textures/DeltaV/Clothing/Head/Soft/couriersoft_flipped.rsi/inhand-left.png deleted file mode 100644 index 97cf2a261d..0000000000 Binary files a/Resources/Textures/DeltaV/Clothing/Head/Soft/couriersoft_flipped.rsi/inhand-left.png and /dev/null differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Soft/couriersoft_flipped.rsi/inhand-right.png b/Resources/Textures/DeltaV/Clothing/Head/Soft/couriersoft_flipped.rsi/inhand-right.png deleted file mode 100644 index f96150d7f3..0000000000 Binary files a/Resources/Textures/DeltaV/Clothing/Head/Soft/couriersoft_flipped.rsi/inhand-right.png and /dev/null differ diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/advanced.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/advanced.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000..17334559d3 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/advanced.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/advanced.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/advanced.rsi/icon.png new file mode 100644 index 0000000000..47485d4e83 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/advanced.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/advanced.rsi/inhand-left.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/advanced.rsi/inhand-left.png new file mode 100644 index 0000000000..f30762d5c2 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/advanced.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/advanced.rsi/inhand-right.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/advanced.rsi/inhand-right.png new file mode 100644 index 0000000000..3f2098aed9 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/advanced.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/advanced.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/advanced.rsi/meta.json new file mode 100644 index 0000000000..1253f8b4e6 --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/advanced.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Original work by TJohnson.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/corpsman.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/corpsman.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000..a354fda71e Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/corpsman.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/corpsman.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/corpsman.rsi/icon.png new file mode 100644 index 0000000000..1de8cede42 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/corpsman.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/corpsman.rsi/inhand-left.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/corpsman.rsi/inhand-left.png new file mode 100644 index 0000000000..5c1366d62a Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/corpsman.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/corpsman.rsi/inhand-right.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/corpsman.rsi/inhand-right.png new file mode 100644 index 0000000000..8609a190a8 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/corpsman.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/corpsman.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/corpsman.rsi/meta.json new file mode 100644 index 0000000000..1253f8b4e6 --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/corpsman.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Original work by TJohnson.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/hos.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/hos.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000..eedb1fc785 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/hos.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/hos.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/hos.rsi/icon.png new file mode 100644 index 0000000000..fbf3ca0a84 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/hos.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/hos.rsi/inhand-left.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/hos.rsi/inhand-left.png new file mode 100644 index 0000000000..50fe48a07b Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/hos.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/hos.rsi/inhand-right.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/hos.rsi/inhand-right.png new file mode 100644 index 0000000000..84cef7709f Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/hos.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/hos.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/hos.rsi/meta.json new file mode 100644 index 0000000000..1253f8b4e6 --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/hos.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Original work by TJohnson.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/medical.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/medical.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000..65850783f5 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/medical.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/medical.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/medical.rsi/icon.png new file mode 100644 index 0000000000..12d188f6f1 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/medical.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/medical.rsi/inhand-left.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/medical.rsi/inhand-left.png new file mode 100644 index 0000000000..e7c38c3b7d Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/medical.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/medical.rsi/inhand-right.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/medical.rsi/inhand-right.png new file mode 100644 index 0000000000..4472b057f1 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/medical.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/medical.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/medical.rsi/meta.json new file mode 100644 index 0000000000..1253f8b4e6 --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/medical.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Original work by TJohnson.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/officer.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/officer.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000..57627e4e4a Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/officer.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/officer.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/officer.rsi/icon.png new file mode 100644 index 0000000000..cc4297ca23 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/officer.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/officer.rsi/inhand-left.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/officer.rsi/inhand-left.png new file mode 100644 index 0000000000..9199ff0bd5 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/officer.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/officer.rsi/inhand-right.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/officer.rsi/inhand-right.png new file mode 100644 index 0000000000..087fb7fbf2 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/officer.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/officer.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/officer.rsi/meta.json new file mode 100644 index 0000000000..1253f8b4e6 --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/officer.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Original work by TJohnson.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/riot.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/riot.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000..70cc6f0b67 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/riot.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/riot.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/riot.rsi/icon.png new file mode 100644 index 0000000000..81a278c5a1 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/riot.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/riot.rsi/inhand-left.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/riot.rsi/inhand-left.png new file mode 100644 index 0000000000..f30762d5c2 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/riot.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/riot.rsi/inhand-right.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/riot.rsi/inhand-right.png new file mode 100644 index 0000000000..3f2098aed9 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/riot.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/riot.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/riot.rsi/meta.json new file mode 100644 index 0000000000..1253f8b4e6 --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/riot.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Original work by TJohnson.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/standard.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/standard.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000..ab4d79b6aa Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/standard.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/standard.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/standard.rsi/icon.png new file mode 100644 index 0000000000..19c3612e50 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/standard.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/standard.rsi/inhand-left.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/standard.rsi/inhand-left.png new file mode 100644 index 0000000000..f30762d5c2 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/standard.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/standard.rsi/inhand-right.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/standard.rsi/inhand-right.png new file mode 100644 index 0000000000..3f2098aed9 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/standard.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/standard.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/standard.rsi/meta.json new file mode 100644 index 0000000000..1253f8b4e6 --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/standard.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Original work by TJohnson.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/warden.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/warden.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000..d707599d6c Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/warden.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/warden.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/warden.rsi/icon.png new file mode 100644 index 0000000000..1dfc742b52 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/warden.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/warden.rsi/inhand-left.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/warden.rsi/inhand-left.png new file mode 100644 index 0000000000..ec2c3b8925 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/warden.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/warden.rsi/inhand-right.png b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/warden.rsi/inhand-right.png new file mode 100644 index 0000000000..982115ef6f Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/warden.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/warden.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/warden.rsi/meta.json new file mode 100644 index 0000000000..1253f8b4e6 --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/OuterClothing/Hardsuits/Combat/warden.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Original work by TJohnson.", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpskirt/brigmedic.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpskirt/brigmedic.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..6ad490793d Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpskirt/brigmedic.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpskirt/brigmedic.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpskirt/brigmedic.rsi/icon.png new file mode 100644 index 0000000000..3ac209a64b Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpskirt/brigmedic.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpskirt/brigmedic.rsi/inhand-left.png b/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpskirt/brigmedic.rsi/inhand-left.png new file mode 100644 index 0000000000..79d19c10da Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpskirt/brigmedic.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpskirt/brigmedic.rsi/inhand-right.png b/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpskirt/brigmedic.rsi/inhand-right.png new file mode 100644 index 0000000000..e92fcfa75b Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpskirt/brigmedic.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpskirt/brigmedic.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpskirt/brigmedic.rsi/meta.json new file mode 100644 index 0000000000..839e5d52bc --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpskirt/brigmedic.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Original work by TJohnson.", + "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/DeltaV/Clothing/Uniforms/Jumpsuit/brigmedic.rsi/equipped-INNERCLOTHING.png b/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpsuit/brigmedic.rsi/equipped-INNERCLOTHING.png new file mode 100644 index 0000000000..f3ef4e2440 Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpsuit/brigmedic.rsi/equipped-INNERCLOTHING.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpsuit/brigmedic.rsi/icon.png b/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpsuit/brigmedic.rsi/icon.png new file mode 100644 index 0000000000..999b61e9ce Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpsuit/brigmedic.rsi/icon.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpsuit/brigmedic.rsi/inhand-left.png b/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpsuit/brigmedic.rsi/inhand-left.png new file mode 100644 index 0000000000..79d19c10da Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpsuit/brigmedic.rsi/inhand-left.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpsuit/brigmedic.rsi/inhand-right.png b/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpsuit/brigmedic.rsi/inhand-right.png new file mode 100644 index 0000000000..e92fcfa75b Binary files /dev/null and b/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpsuit/brigmedic.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpsuit/brigmedic.rsi/meta.json b/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpsuit/brigmedic.rsi/meta.json new file mode 100644 index 0000000000..839e5d52bc --- /dev/null +++ b/Resources/Textures/DeltaV/Clothing/Uniforms/Jumpsuit/brigmedic.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Original work by TJohnson.", + "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/DeltaV/Mobs/Customization/hair.rsi/bobclassic.png b/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/classic_bob.png similarity index 100% rename from Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/bobclassic.png rename to Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/classic_bob.png diff --git a/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/classic_crewcut.png b/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/classic_crewcut.png new file mode 100644 index 0000000000..2209a9ce83 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/classic_crewcut.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/classicgentle.png b/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/classic_gentle.png similarity index 100% rename from Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/classicgentle.png rename to Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/classic_gentle.png diff --git a/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/classiclowfade.png b/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/classic_lowfade.png similarity index 100% rename from Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/classiclowfade.png rename to Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/classic_lowfade.png diff --git a/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/classicmedfade.png b/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/classic_medfade.png similarity index 100% rename from Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/classicmedfade.png rename to Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/classic_medfade.png diff --git a/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/messyclassic.png b/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/classic_messy.png similarity index 100% rename from Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/messyclassic.png rename to Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/classic_messy.png diff --git a/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/classicnofade.png b/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/classic_nofade.png similarity index 100% rename from Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/classicnofade.png rename to Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/classic_nofade.png diff --git a/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/classic_ombre.png b/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/classic_ombre.png new file mode 100644 index 0000000000..a385a73632 Binary files /dev/null and b/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/classic_ombre.png differ diff --git a/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/meta.json b/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/meta.json index 2dd7ba0d10..c2197e13ea 100644 --- a/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/meta.json +++ b/Resources/Textures/DeltaV/Mobs/Customization/hair.rsi/meta.json @@ -9,27 +9,35 @@ "directions": 4 }, { - "name":"bobclassic", + "name":"classic_bob", "directions": 4 }, { - "name":"messyclassic", + "name":"classic_messy", "directions":4 }, { - "name":"classicgentle", + "name":"classic_gentle", "directions": 4 }, { - "name":"classiclowfade", + "name":"classic_lowfade", "directions": 4 }, { - "name":"classicmedfade", + "name":"classic_medfade", "directions": 4 }, { - "name":"classicnofade", + "name":"classic_nofade", + "directions": 4 + }, + { + "name":"classic_ombre", + "directions": 4 + }, + { + "name":"classic_crewcut", "directions": 4 } ] diff --git a/Resources/Textures/DeltaV/Objects/Devices/pda.rsi/meta.json b/Resources/Textures/DeltaV/Objects/Devices/pda.rsi/meta.json index b5937ff0ce..24d83ed6a0 100644 --- a/Resources/Textures/DeltaV/Objects/Devices/pda.rsi/meta.json +++ b/Resources/Textures/DeltaV/Objects/Devices/pda.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/59f2a4e10e5ba36033c9734ddebfbbdc6157472d, pda-martialartist by Floofers", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/59f2a4e10e5ba36033c9734ddebfbbdc6157472d | pda-corpsman from yogstation at https://github.com/yogstation13/Yogstation/commit/a75671b22476ed8e117229f38501b9b63f8d6bc1 | pda-martialartist by Floofers", "size": { "x": 32, "y": 32 @@ -28,6 +28,9 @@ }, { "name": "pda-martialartist" + }, + { + "name": "pda-corpsman" } ] } diff --git a/Resources/Textures/DeltaV/Objects/Devices/pda.rsi/pda-corpsman.png b/Resources/Textures/DeltaV/Objects/Devices/pda.rsi/pda-corpsman.png new file mode 100644 index 0000000000..f88d70793c Binary files /dev/null and b/Resources/Textures/DeltaV/Objects/Devices/pda.rsi/pda-corpsman.png differ diff --git a/Resources/Textures/DeltaV/Parallaxes/ArenaParallaxBG.png b/Resources/Textures/DeltaV/Parallaxes/ArenaParallaxBG.png new file mode 100644 index 0000000000..246092ad32 Binary files /dev/null and b/Resources/Textures/DeltaV/Parallaxes/ArenaParallaxBG.png differ diff --git a/Resources/Textures/DeltaV/Parallaxes/Asteroids.png b/Resources/Textures/DeltaV/Parallaxes/Asteroids.png new file mode 100644 index 0000000000..ea8c04d644 Binary files /dev/null and b/Resources/Textures/DeltaV/Parallaxes/Asteroids.png differ diff --git a/Resources/Textures/DeltaV/Parallaxes/attributions.yml b/Resources/Textures/DeltaV/Parallaxes/attributions.yml new file mode 100644 index 0000000000..98a22ea593 --- /dev/null +++ b/Resources/Textures/DeltaV/Parallaxes/attributions.yml @@ -0,0 +1,4 @@ +- files: ["ArenaParallaxBG.png"] + license: "CC0-1.0" + copyright: "adapted from Screaming Brain Studios" + source: "https://opengameart.org/content/seamless-space-backgrounds" diff --git a/Resources/Textures/DeltaV/Parallaxes/licences.txt b/Resources/Textures/DeltaV/Parallaxes/licences.txt new file mode 100644 index 0000000000..9fade9d40c --- /dev/null +++ b/Resources/Textures/DeltaV/Parallaxes/licences.txt @@ -0,0 +1,2 @@ +asteroids.png is taken from https://github.com/tgstation/tgstation/commit/2243ab6036b18e1eaac8e5862fa95a451ff31bf5 +Licensed under https://creativecommons.org/licenses/by-sa/3.0/ as stated by https://github.com/tgstation/tgstation/blob/master/README.md diff --git a/Resources/Textures/DeltaV/Structures/Machines/VendingMachines/courierdrobe.rsi/meta.json b/Resources/Textures/DeltaV/Structures/Machines/VendingMachines/courierdrobe.rsi/meta.json index bd523a15da..7765af59f1 100644 --- a/Resources/Textures/DeltaV/Structures/Machines/VendingMachines/courierdrobe.rsi/meta.json +++ b/Resources/Textures/DeltaV/Structures/Machines/VendingMachines/courierdrobe.rsi/meta.json @@ -20,6 +20,10 @@ "name": "normal-unshaded", "delays": [ [ + 1.5, + 0.1, + 1.5, + 0.1, 1.5, 0.1, 1.5, diff --git a/Resources/Textures/DeltaV/Structures/Machines/VendingMachines/courierdrobe.rsi/normal-unshaded.png b/Resources/Textures/DeltaV/Structures/Machines/VendingMachines/courierdrobe.rsi/normal-unshaded.png index 952eb4490e..f77269699a 100644 Binary files a/Resources/Textures/DeltaV/Structures/Machines/VendingMachines/courierdrobe.rsi/normal-unshaded.png and b/Resources/Textures/DeltaV/Structures/Machines/VendingMachines/courierdrobe.rsi/normal-unshaded.png differ diff --git a/Resources/Textures/DeltaV/Structures/Machines/glimmer_machines.rsi/base.png b/Resources/Textures/DeltaV/Structures/Machines/glimmer_machines.rsi/base.png new file mode 100644 index 0000000000..35d82ce6b0 Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Machines/glimmer_machines.rsi/base.png differ diff --git a/Resources/Textures/DeltaV/Structures/Machines/glimmer_machines.rsi/drain.png b/Resources/Textures/DeltaV/Structures/Machines/glimmer_machines.rsi/drain.png new file mode 100644 index 0000000000..db19c2b963 Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Machines/glimmer_machines.rsi/drain.png differ diff --git a/Resources/Textures/DeltaV/Structures/Machines/glimmer_machines.rsi/intermediate.png b/Resources/Textures/DeltaV/Structures/Machines/glimmer_machines.rsi/intermediate.png new file mode 100644 index 0000000000..dfeabfeb0e Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Machines/glimmer_machines.rsi/intermediate.png differ diff --git a/Resources/Textures/DeltaV/Structures/Machines/glimmer_machines.rsi/meta.json b/Resources/Textures/DeltaV/Structures/Machines/glimmer_machines.rsi/meta.json new file mode 100644 index 0000000000..c519bd678f --- /dev/null +++ b/Resources/Textures/DeltaV/Structures/Machines/glimmer_machines.rsi/meta.json @@ -0,0 +1,124 @@ +{ + "version": 1, + "license": "CC-BY-SA-4.0", + "copyright": "@Leonardo_DaBepis", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "base" + }, + { + "name": "intermediate" + }, + { + "name": "prober" + }, + { + "name": "drain" + }, + { + "name": "powered", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "prober_glimmer_fx_1", + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.5, + 0.5, + 0.5, + 0.5, + 0.5 + + ] + ] + }, + { + "name": "prober_glimmer_fx_2", + "delays": [ + [ + 0.1, + 0.15, + 0.2, + 0.15, + 0.1, + 0.1, + 0.15, + 0.2, + 0.15, + 0.1 + ] + ] + }, + { + "name": "prober_glimmer_fx_3", + "delays": [ + [ + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09, + 0.09 + ] + ] + }, + { + "name": "prober_glimmer_fx_4", + "delays": [ + [ + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08, + 0.08 + ] + ] + }, + { + "name": "prober_glimmer_fx_5", + "delays": [ + [ + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07, + 0.07 + ] + ] + } + ] +} diff --git a/Resources/Textures/DeltaV/Structures/Machines/glimmer_machines.rsi/powered.png b/Resources/Textures/DeltaV/Structures/Machines/glimmer_machines.rsi/powered.png new file mode 100644 index 0000000000..c0860f8e2e Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Machines/glimmer_machines.rsi/powered.png differ diff --git a/Resources/Textures/DeltaV/Structures/Machines/glimmer_machines.rsi/prober.png b/Resources/Textures/DeltaV/Structures/Machines/glimmer_machines.rsi/prober.png new file mode 100644 index 0000000000..a066c80fa8 Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Machines/glimmer_machines.rsi/prober.png differ diff --git a/Resources/Textures/DeltaV/Structures/Machines/glimmer_machines.rsi/prober_glimmer_fx_1.png b/Resources/Textures/DeltaV/Structures/Machines/glimmer_machines.rsi/prober_glimmer_fx_1.png new file mode 100644 index 0000000000..85a1c0b44b Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Machines/glimmer_machines.rsi/prober_glimmer_fx_1.png differ diff --git a/Resources/Textures/DeltaV/Structures/Machines/glimmer_machines.rsi/prober_glimmer_fx_2.png b/Resources/Textures/DeltaV/Structures/Machines/glimmer_machines.rsi/prober_glimmer_fx_2.png new file mode 100644 index 0000000000..f9ed6d4007 Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Machines/glimmer_machines.rsi/prober_glimmer_fx_2.png differ diff --git a/Resources/Textures/DeltaV/Structures/Machines/glimmer_machines.rsi/prober_glimmer_fx_3.png b/Resources/Textures/DeltaV/Structures/Machines/glimmer_machines.rsi/prober_glimmer_fx_3.png new file mode 100644 index 0000000000..6d711847c8 Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Machines/glimmer_machines.rsi/prober_glimmer_fx_3.png differ diff --git a/Resources/Textures/DeltaV/Structures/Machines/glimmer_machines.rsi/prober_glimmer_fx_4.png b/Resources/Textures/DeltaV/Structures/Machines/glimmer_machines.rsi/prober_glimmer_fx_4.png new file mode 100644 index 0000000000..39f7e2459a Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Machines/glimmer_machines.rsi/prober_glimmer_fx_4.png differ diff --git a/Resources/Textures/DeltaV/Structures/Machines/glimmer_machines.rsi/prober_glimmer_fx_5.png b/Resources/Textures/DeltaV/Structures/Machines/glimmer_machines.rsi/prober_glimmer_fx_5.png new file mode 100644 index 0000000000..a272099cac Binary files /dev/null and b/Resources/Textures/DeltaV/Structures/Machines/glimmer_machines.rsi/prober_glimmer_fx_5.png differ diff --git a/Resources/Textures/Effects/foam.rsi/foam-east.png b/Resources/Textures/Effects/foam.rsi/foam-east.png new file mode 100644 index 0000000000..4b4523012c Binary files /dev/null and b/Resources/Textures/Effects/foam.rsi/foam-east.png differ diff --git a/Resources/Textures/Effects/foam.rsi/foam-north.png b/Resources/Textures/Effects/foam.rsi/foam-north.png new file mode 100644 index 0000000000..b0eb1e7bc7 Binary files /dev/null and b/Resources/Textures/Effects/foam.rsi/foam-north.png differ diff --git a/Resources/Textures/Effects/foam.rsi/foam-south.png b/Resources/Textures/Effects/foam.rsi/foam-south.png new file mode 100644 index 0000000000..761927c3f2 Binary files /dev/null and b/Resources/Textures/Effects/foam.rsi/foam-south.png differ diff --git a/Resources/Textures/Effects/foam.rsi/foam-west.png b/Resources/Textures/Effects/foam.rsi/foam-west.png new file mode 100644 index 0000000000..1513b5c39f Binary files /dev/null and b/Resources/Textures/Effects/foam.rsi/foam-west.png differ diff --git a/Resources/Textures/Effects/foam.rsi/iron_foam-east.png b/Resources/Textures/Effects/foam.rsi/iron_foam-east.png new file mode 100644 index 0000000000..be075b71f0 Binary files /dev/null and b/Resources/Textures/Effects/foam.rsi/iron_foam-east.png differ diff --git a/Resources/Textures/Effects/foam.rsi/iron_foam-north.png b/Resources/Textures/Effects/foam.rsi/iron_foam-north.png new file mode 100644 index 0000000000..30ff28c875 Binary files /dev/null and b/Resources/Textures/Effects/foam.rsi/iron_foam-north.png differ diff --git a/Resources/Textures/Effects/foam.rsi/iron_foam-south.png b/Resources/Textures/Effects/foam.rsi/iron_foam-south.png new file mode 100644 index 0000000000..99213b98e6 Binary files /dev/null and b/Resources/Textures/Effects/foam.rsi/iron_foam-south.png differ diff --git a/Resources/Textures/Effects/foam.rsi/iron_foam-west.png b/Resources/Textures/Effects/foam.rsi/iron_foam-west.png new file mode 100644 index 0000000000..0608fdf32a Binary files /dev/null and b/Resources/Textures/Effects/foam.rsi/iron_foam-west.png differ diff --git a/Resources/Textures/Effects/foam.rsi/ironfoam.png b/Resources/Textures/Effects/foam.rsi/iron_foam.png similarity index 100% rename from Resources/Textures/Effects/foam.rsi/ironfoam.png rename to Resources/Textures/Effects/foam.rsi/iron_foam.png diff --git a/Resources/Textures/Effects/foam.rsi/mfoam-dissolve.png b/Resources/Textures/Effects/foam.rsi/m_foam-dissolve.png similarity index 100% rename from Resources/Textures/Effects/foam.rsi/mfoam-dissolve.png rename to Resources/Textures/Effects/foam.rsi/m_foam-dissolve.png diff --git a/Resources/Textures/Effects/foam.rsi/m_foam-east.png b/Resources/Textures/Effects/foam.rsi/m_foam-east.png new file mode 100644 index 0000000000..754604aa64 Binary files /dev/null and b/Resources/Textures/Effects/foam.rsi/m_foam-east.png differ diff --git a/Resources/Textures/Effects/foam.rsi/m_foam-north.png b/Resources/Textures/Effects/foam.rsi/m_foam-north.png new file mode 100644 index 0000000000..e170444a63 Binary files /dev/null and b/Resources/Textures/Effects/foam.rsi/m_foam-north.png differ diff --git a/Resources/Textures/Effects/foam.rsi/m_foam-south.png b/Resources/Textures/Effects/foam.rsi/m_foam-south.png new file mode 100644 index 0000000000..7b374e6039 Binary files /dev/null and b/Resources/Textures/Effects/foam.rsi/m_foam-south.png differ diff --git a/Resources/Textures/Effects/foam.rsi/m_foam-west.png b/Resources/Textures/Effects/foam.rsi/m_foam-west.png new file mode 100644 index 0000000000..07439be545 Binary files /dev/null and b/Resources/Textures/Effects/foam.rsi/m_foam-west.png differ diff --git a/Resources/Textures/Effects/foam.rsi/mfoam.png b/Resources/Textures/Effects/foam.rsi/m_foam.png similarity index 100% rename from Resources/Textures/Effects/foam.rsi/mfoam.png rename to Resources/Textures/Effects/foam.rsi/m_foam.png diff --git a/Resources/Textures/Effects/foam.rsi/meta.json b/Resources/Textures/Effects/foam.rsi/meta.json index 33d13b267b..f4cbd1d7f8 100644 --- a/Resources/Textures/Effects/foam.rsi/meta.json +++ b/Resources/Textures/Effects/foam.rsi/meta.json @@ -1 +1,99 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "Taken from https://github.com/discordia-space/CEV-Eris/blob/81b3a082ccdfb425f36bbed6e5bc1f0faed346ec/icons/effects/effects.dmi", "states": [{"name": "foam", "directions": 1}, {"name": "foam-dissolve", "directions": 1, "delays": [[0.1, 0.1, 0.1, 0.1, 0.1, 0.1]]}, {"name": "ironfoam", "directions": 1}, {"name": "metalfoam", "directions": 1}, {"name": "mfoam", "directions": 1}, {"name": "mfoam-dissolve", "directions": 1, "delays": [[0.1, 0.1, 0.1, 0.1, 0.1, 0.1]]}]} \ No newline at end of file +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/discordia-space/CEV-Eris/blob/81b3a082ccdfb425f36bbed6e5bc1f0faed346ec/icons/effects/effects.dmi, foam_directionals by brainfood1183 (github)", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "foam" + }, + { + "name": "foam-west" + }, + { + "name": "foam-east" + }, + { + "name": "foam-north" + }, + { + "name": "foam-south" + }, + { + "name": "iron_foam" + }, + { + "name": "iron_foam-north" + }, + { + "name": "iron_foam-east" + }, + { + "name": "iron_foam-south" + }, + { + "name": "iron_foam-west" + }, + { + "name": "metal_foam" + }, + { + "name": "metal_foam-north" + }, + { + "name": "metal_foam-east" + }, + { + "name": "metal_foam-south" + }, + { + "name": "metal_foam-west" + }, + { + "name": "m_foam" + }, + { + "name": "m_foam-north" + }, + { + "name": "m_foam-east" + }, + { + "name": "m_foam-south" + }, + { + "name": "m_foam-west" + }, + { + "name": "m_foam-dissolve", + "directions": 1, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + }, + { + "name": "foam-dissolve", + "directions": 1, + "delays": [ + [ + 0.1, + 0.1, + 0.1, + 0.1, + 0.1, + 0.1 + ] + ] + } + ] +} diff --git a/Resources/Textures/Effects/foam.rsi/metal_foam-east.png b/Resources/Textures/Effects/foam.rsi/metal_foam-east.png new file mode 100644 index 0000000000..77b1d68910 Binary files /dev/null and b/Resources/Textures/Effects/foam.rsi/metal_foam-east.png differ diff --git a/Resources/Textures/Effects/foam.rsi/metal_foam-north.png b/Resources/Textures/Effects/foam.rsi/metal_foam-north.png new file mode 100644 index 0000000000..141433ed76 Binary files /dev/null and b/Resources/Textures/Effects/foam.rsi/metal_foam-north.png differ diff --git a/Resources/Textures/Effects/foam.rsi/metal_foam-south.png b/Resources/Textures/Effects/foam.rsi/metal_foam-south.png new file mode 100644 index 0000000000..95f8932c6c Binary files /dev/null and b/Resources/Textures/Effects/foam.rsi/metal_foam-south.png differ diff --git a/Resources/Textures/Effects/foam.rsi/metal_foam-west.png b/Resources/Textures/Effects/foam.rsi/metal_foam-west.png new file mode 100644 index 0000000000..c2e2848333 Binary files /dev/null and b/Resources/Textures/Effects/foam.rsi/metal_foam-west.png differ diff --git a/Resources/Textures/Effects/foam.rsi/metalfoam.png b/Resources/Textures/Effects/foam.rsi/metal_foam.png similarity index 100% rename from Resources/Textures/Effects/foam.rsi/metalfoam.png rename to Resources/Textures/Effects/foam.rsi/metal_foam.png diff --git a/Resources/Textures/Interface/Classic/slot_highlight.png b/Resources/Textures/Interface/Classic/slot_highlight.png new file mode 100644 index 0000000000..d70086971d Binary files /dev/null and b/Resources/Textures/Interface/Classic/slot_highlight.png differ diff --git a/Resources/Textures/Mobs/Customization/Moth/moth_parts.rsi/deathhead_r_leg.png b/Resources/Textures/Mobs/Customization/Moth/moth_parts.rsi/deathhead_r_leg.png index 41df319be9..7169cda3bb 100644 Binary files a/Resources/Textures/Mobs/Customization/Moth/moth_parts.rsi/deathhead_r_leg.png and b/Resources/Textures/Mobs/Customization/Moth/moth_parts.rsi/deathhead_r_leg.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/aspen.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/aspen.png new file mode 100644 index 0000000000..e4cba1d0c5 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/aspen.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/brown.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/brown.png new file mode 100644 index 0000000000..c71972414b Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/brown.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/deathshead.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/deathshead.png new file mode 100644 index 0000000000..8a06217a21 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/deathshead.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/feathery.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/feathery.png new file mode 100644 index 0000000000..329248e254 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/feathery.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/firewatch.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/firewatch.png new file mode 100644 index 0000000000..9c4408c087 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/firewatch.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/gothic.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/gothic.png new file mode 100644 index 0000000000..2d1f6b409e Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/gothic.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/jungle.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/jungle.png new file mode 100644 index 0000000000..6c829182dc Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/jungle.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/lovers.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/lovers.png new file mode 100644 index 0000000000..f7a15d9aa5 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/lovers.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/meta.json b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/meta.json new file mode 100644 index 0000000000..4c2043f5fe --- /dev/null +++ b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/meta.json @@ -0,0 +1,99 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation/commit/a92719210eb834cf284c571b3b3d94c2d82c26ea Aspen from https://github.com/fulpstation/fulpstation/commit/b21af07f57c2c4fb1cdcdb4162ca222da97ed54c", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "plain", + "directions": 4 + }, + { + "name": "reddish", + "directions": 4 + }, + { + "name": "royal", + "directions": 4 + }, + { + "name": "gothic", + "directions": 4 + }, + { + "name": "lovers", + "directions": 4 + }, + { + "name": "whitefly", + "directions": 4 + }, + { + "name": "firewatch", + "directions": 4 + }, + { + "name": "deathshead", + "directions": 4 + }, + { + "name": "poison", + "directions": 4 + }, + { + "name": "moonfly", + "directions": 4 + }, + { + "name": "snow", + "directions": 4 + }, + { + "name": "oakworm", + "directions": 4 + }, + { + "name": "witchking", + "directions": 4 + }, + { + "name": "jungle", + "directions": 4 + }, + { + "name": "regal", + "directions": 4 + }, + { + "name": "rosy", + "directions": 4 + }, + { + "name": "feathery", + "directions": 4 + }, + { + "name": "brown", + "directions": 4 + }, + { + "name": "plasmafire", + "directions": 4 + }, + { + "name": "moffra", + "directions": 4 + }, + { + "name": "aspen", + "directions": 4 + }, + { + "name": "mint", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/mint.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/mint.png new file mode 100644 index 0000000000..4305204bcb Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/mint.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/moffra.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/moffra.png new file mode 100644 index 0000000000..106d0b7afd Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/moffra.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/moonfly.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/moonfly.png new file mode 100644 index 0000000000..5e2907bc3f Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/moonfly.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/oakworm.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/oakworm.png new file mode 100644 index 0000000000..976dcebdd0 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/oakworm.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/plain.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/plain.png new file mode 100644 index 0000000000..131da959d4 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/plain.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/plasmafire.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/plasmafire.png new file mode 100644 index 0000000000..9152d17335 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/plasmafire.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/poison.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/poison.png new file mode 100644 index 0000000000..f0ae8dea22 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/poison.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/reddish.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/reddish.png new file mode 100644 index 0000000000..b561b93f1b Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/reddish.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/regal.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/regal.png new file mode 100644 index 0000000000..42bc616715 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/regal.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/rosy.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/rosy.png new file mode 100644 index 0000000000..9548696ac7 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/rosy.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/royal.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/royal.png new file mode 100644 index 0000000000..4f2a6bf9f0 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/royal.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/snow.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/snow.png new file mode 100644 index 0000000000..c5988e4856 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/snow.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/whitefly.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/whitefly.png new file mode 100644 index 0000000000..46e6efca1e Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/whitefly.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/witchking.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/witchking.png new file mode 100644 index 0000000000..70e2f7851f Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_antennas.rsi/witchking.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/deathshead-chest.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/deathshead-chest.png new file mode 100644 index 0000000000..b384efc5f4 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/deathshead-chest.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/deathshead-head.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/deathshead-head.png new file mode 100644 index 0000000000..164fecedba Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/deathshead-head.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/deathshead-leftarm.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/deathshead-leftarm.png new file mode 100644 index 0000000000..02c1267274 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/deathshead-leftarm.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/deathshead-leftleg.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/deathshead-leftleg.png new file mode 100644 index 0000000000..0d180533c3 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/deathshead-leftleg.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/deathshead-rightarm.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/deathshead-rightarm.png new file mode 100644 index 0000000000..a93f459727 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/deathshead-rightarm.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/deathshead-rightleg.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/deathshead-rightleg.png new file mode 100644 index 0000000000..7169cda3bb Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/deathshead-rightleg.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/firewatch-chest.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/firewatch-chest.png new file mode 100644 index 0000000000..357e799ef2 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/firewatch-chest.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/firewatch-head.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/firewatch-head.png new file mode 100644 index 0000000000..d259f2c223 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/firewatch-head.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/firewatch-leftarm.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/firewatch-leftarm.png new file mode 100644 index 0000000000..8ae2f9f539 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/firewatch-leftarm.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/firewatch-leftleg.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/firewatch-leftleg.png new file mode 100644 index 0000000000..72ebf352c7 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/firewatch-leftleg.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/firewatch-rightarm.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/firewatch-rightarm.png new file mode 100644 index 0000000000..bb0f801e16 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/firewatch-rightarm.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/firewatch-rightleg.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/firewatch-rightleg.png new file mode 100644 index 0000000000..2aad26db5d Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/firewatch-rightleg.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/gothic-chest.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/gothic-chest.png new file mode 100644 index 0000000000..82a9186c55 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/gothic-chest.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/gothic-head.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/gothic-head.png new file mode 100644 index 0000000000..f415902402 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/gothic-head.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/gothic-leftarm.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/gothic-leftarm.png new file mode 100644 index 0000000000..b56d0e497e Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/gothic-leftarm.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/gothic-leftleg.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/gothic-leftleg.png new file mode 100644 index 0000000000..985225a8e6 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/gothic-leftleg.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/gothic-rightarm.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/gothic-rightarm.png new file mode 100644 index 0000000000..357420e933 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/gothic-rightarm.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/gothic-rightleg.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/gothic-rightleg.png new file mode 100644 index 0000000000..771c1efb29 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/gothic-rightleg.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/jungle-chest.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/jungle-chest.png new file mode 100644 index 0000000000..63ac28994e Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/jungle-chest.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/jungle-head.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/jungle-head.png new file mode 100644 index 0000000000..619b652669 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/jungle-head.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/jungle-leftarm.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/jungle-leftarm.png new file mode 100644 index 0000000000..ddf0c0cd77 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/jungle-leftarm.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/jungle-leftleg.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/jungle-leftleg.png new file mode 100644 index 0000000000..62f6038ec2 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/jungle-leftleg.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/jungle-rightarm.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/jungle-rightarm.png new file mode 100644 index 0000000000..0a2866dce3 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/jungle-rightarm.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/jungle-rightleg.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/jungle-rightleg.png new file mode 100644 index 0000000000..4d2e22465f Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/jungle-rightleg.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/lovers-chest.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/lovers-chest.png new file mode 100644 index 0000000000..1c7538b71e Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/lovers-chest.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/lovers-head.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/lovers-head.png new file mode 100644 index 0000000000..2c9b57bd4d Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/lovers-head.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/lovers-leftarm.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/lovers-leftarm.png new file mode 100644 index 0000000000..876f947ad3 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/lovers-leftarm.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/lovers-leftleg.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/lovers-leftleg.png new file mode 100644 index 0000000000..0dcd55494f Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/lovers-leftleg.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/lovers-rightarm.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/lovers-rightarm.png new file mode 100644 index 0000000000..62ffd4b8dd Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/lovers-rightarm.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/lovers-rightleg.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/lovers-rightleg.png new file mode 100644 index 0000000000..277e5523be Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/lovers-rightleg.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/meta.json b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/meta.json new file mode 100644 index 0000000000..b566f6e303 --- /dev/null +++ b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/meta.json @@ -0,0 +1,323 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation/commit/be0e6efdf6b18e953d3dcb1eff584b66a9d3b9e3", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "deathshead-head", + "directions": 4 + }, + { + "name": "deathshead-chest", + "directions": 4 + }, + { + "name": "deathshead-rightarm", + "directions": 4 + }, + { + "name": "deathshead-leftarm", + "directions": 4 + }, + { + "name": "deathshead-rightleg", + "directions": 4 + }, + { + "name": "deathshead-leftleg", + "directions": 4 + }, + { + "name": "firewatch-head", + "directions": 4 + }, + { + "name": "firewatch-chest", + "directions": 4 + }, + { + "name": "firewatch-rightarm", + "directions": 4 + }, + { + "name": "firewatch-leftarm", + "directions": 4 + }, + { + "name": "firewatch-rightleg", + "directions": 4 + }, + { + "name": "firewatch-leftleg", + "directions": 4 + }, + { + "name": "gothic-head", + "directions": 4 + }, + { + "name": "gothic-chest", + "directions": 4 + }, + { + "name": "gothic-rightarm", + "directions": 4 + }, + { + "name": "gothic-leftarm", + "directions": 4 + }, + { + "name": "gothic-rightleg", + "directions": 4 + }, + { + "name": "gothic-leftleg", + "directions": 4 + }, + { + "name": "jungle-head", + "directions": 4 + }, + { + "name": "jungle-chest", + "directions": 4 + }, + { + "name": "jungle-rightarm", + "directions": 4 + }, + { + "name": "jungle-leftarm", + "directions": 4 + }, + { + "name": "jungle-rightleg", + "directions": 4 + }, + { + "name": "jungle-leftleg", + "directions": 4 + }, + { + "name": "lovers-head", + "directions": 4 + }, + { + "name": "lovers-chest", + "directions": 4 + }, + { + "name": "lovers-rightarm", + "directions": 4 + }, + { + "name": "lovers-leftarm", + "directions": 4 + }, + { + "name": "lovers-rightleg", + "directions": 4 + }, + { + "name": "lovers-leftleg", + "directions": 4 + }, + { + "name": "moonfly-head", + "directions": 4 + }, + { + "name": "moonfly-chest", + "directions": 4 + }, + { + "name": "moonfly-rightarm", + "directions": 4 + }, + { + "name": "moonfly-leftarm", + "directions": 4 + }, + { + "name": "moonfly-rightleg", + "directions": 4 + }, + { + "name": "moonfly-leftleg", + "directions": 4 + }, + { + "name": "oakworm-head", + "directions": 4 + }, + { + "name": "oakworm-chest", + "directions": 4 + }, + { + "name": "oakworm-rightarm", + "directions": 4 + }, + { + "name": "oakworm-leftarm", + "directions": 4 + }, + { + "name": "oakworm-rightleg", + "directions": 4 + }, + { + "name": "oakworm-leftleg", + "directions": 4 + }, + { + "name": "poison-head", + "directions": 4 + }, + { + "name": "poison-chest", + "directions": 4 + }, + { + "name": "poison-rightarm", + "directions": 4 + }, + { + "name": "poison-leftarm", + "directions": 4 + }, + { + "name": "poison-rightleg", + "directions": 4 + }, + { + "name": "poison-leftleg", + "directions": 4 + }, + { + "name": "ragged-head", + "directions": 4 + }, + { + "name": "ragged-chest", + "directions": 4 + }, + { + "name": "ragged-rightarm", + "directions": 4 + }, + { + "name": "ragged-leftarm", + "directions": 4 + }, + { + "name": "ragged-rightleg", + "directions": 4 + }, + { + "name": "ragged-leftleg", + "directions": 4 + }, + { + "name": "reddish-head", + "directions": 4 + }, + { + "name": "reddish-chest", + "directions": 4 + }, + { + "name": "reddish-rightarm", + "directions": 4 + }, + { + "name": "reddish-leftarm", + "directions": 4 + }, + { + "name": "reddish-rightleg", + "directions": 4 + }, + { + "name": "reddish-leftleg", + "directions": 4 + }, + { + "name": "royal-head", + "directions": 4 + }, + { + "name": "royal-chest", + "directions": 4 + }, + { + "name": "royal-rightarm", + "directions": 4 + }, + { + "name": "royal-leftarm", + "directions": 4 + }, + { + "name": "royal-rightleg", + "directions": 4 + }, + { + "name": "royal-leftleg", + "directions": 4 + }, + { + "name": "whitefly-head", + "directions": 4 + }, + { + "name": "whitefly-chest", + "directions": 4 + }, + { + "name": "whitefly-rightarm", + "directions": 4 + }, + { + "name": "whitefly-leftarm", + "directions": 4 + }, + { + "name": "whitefly-rightleg", + "directions": 4 + }, + { + "name": "whitefly-leftleg", + "directions": 4 + }, + { + "name": "witchking-head", + "directions": 4 + }, + { + "name": "witchking-chest", + "directions": 4 + }, + { + "name": "witchking-rightarm", + "directions": 4 + }, + { + "name": "witchking-leftarm", + "directions": 4 + }, + { + "name": "witchking-rightleg", + "directions": 4 + }, + { + "name": "witchking-leftleg", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/moonfly-chest.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/moonfly-chest.png new file mode 100644 index 0000000000..cf20635608 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/moonfly-chest.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/moonfly-head.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/moonfly-head.png new file mode 100644 index 0000000000..bf14c527b4 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/moonfly-head.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/moonfly-leftarm.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/moonfly-leftarm.png new file mode 100644 index 0000000000..0d82eaafba Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/moonfly-leftarm.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/moonfly-leftleg.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/moonfly-leftleg.png new file mode 100644 index 0000000000..8bc1dc2bd5 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/moonfly-leftleg.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/moonfly-rightarm.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/moonfly-rightarm.png new file mode 100644 index 0000000000..eb68fc580e Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/moonfly-rightarm.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/moonfly-rightleg.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/moonfly-rightleg.png new file mode 100644 index 0000000000..6b5d8a795a Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/moonfly-rightleg.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/oakworm-chest.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/oakworm-chest.png new file mode 100644 index 0000000000..ebf241b377 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/oakworm-chest.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/oakworm-head.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/oakworm-head.png new file mode 100644 index 0000000000..91831b90f7 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/oakworm-head.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/oakworm-leftarm.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/oakworm-leftarm.png new file mode 100644 index 0000000000..30b94564ad Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/oakworm-leftarm.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/oakworm-leftleg.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/oakworm-leftleg.png new file mode 100644 index 0000000000..dccaea56d1 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/oakworm-leftleg.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/oakworm-rightarm.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/oakworm-rightarm.png new file mode 100644 index 0000000000..a177d78da4 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/oakworm-rightarm.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/oakworm-rightleg.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/oakworm-rightleg.png new file mode 100644 index 0000000000..b13d607401 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/oakworm-rightleg.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/poison-chest.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/poison-chest.png new file mode 100644 index 0000000000..d2a2170199 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/poison-chest.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/poison-head.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/poison-head.png new file mode 100644 index 0000000000..677590e7e7 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/poison-head.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/poison-leftarm.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/poison-leftarm.png new file mode 100644 index 0000000000..06aa26af52 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/poison-leftarm.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/poison-leftleg.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/poison-leftleg.png new file mode 100644 index 0000000000..c98bbc652d Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/poison-leftleg.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/poison-rightarm.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/poison-rightarm.png new file mode 100644 index 0000000000..843dddbf2e Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/poison-rightarm.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/poison-rightleg.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/poison-rightleg.png new file mode 100644 index 0000000000..a02a328e40 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/poison-rightleg.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/ragged-chest.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/ragged-chest.png new file mode 100644 index 0000000000..583a3897dd Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/ragged-chest.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/ragged-head.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/ragged-head.png new file mode 100644 index 0000000000..b96d341b78 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/ragged-head.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/ragged-leftarm.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/ragged-leftarm.png new file mode 100644 index 0000000000..1bd7452281 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/ragged-leftarm.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/ragged-leftleg.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/ragged-leftleg.png new file mode 100644 index 0000000000..855d7c0219 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/ragged-leftleg.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/ragged-rightarm.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/ragged-rightarm.png new file mode 100644 index 0000000000..7cddfda4b8 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/ragged-rightarm.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/ragged-rightleg.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/ragged-rightleg.png new file mode 100644 index 0000000000..b28ef74564 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/ragged-rightleg.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/reddish-chest.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/reddish-chest.png new file mode 100644 index 0000000000..f5908659b2 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/reddish-chest.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/reddish-head.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/reddish-head.png new file mode 100644 index 0000000000..8c7f2fd0cc Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/reddish-head.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/reddish-leftarm.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/reddish-leftarm.png new file mode 100644 index 0000000000..64ec9e26bf Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/reddish-leftarm.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/reddish-leftleg.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/reddish-leftleg.png new file mode 100644 index 0000000000..16918d2afb Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/reddish-leftleg.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/reddish-rightarm.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/reddish-rightarm.png new file mode 100644 index 0000000000..fcefe3362a Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/reddish-rightarm.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/reddish-rightleg.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/reddish-rightleg.png new file mode 100644 index 0000000000..3b9b02756b Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/reddish-rightleg.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/royal-chest.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/royal-chest.png new file mode 100644 index 0000000000..9db94180a6 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/royal-chest.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/royal-head.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/royal-head.png new file mode 100644 index 0000000000..f5ff94301b Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/royal-head.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/royal-leftarm.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/royal-leftarm.png new file mode 100644 index 0000000000..de9c76ab88 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/royal-leftarm.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/royal-leftleg.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/royal-leftleg.png new file mode 100644 index 0000000000..237d9b095c Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/royal-leftleg.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/royal-rightarm.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/royal-rightarm.png new file mode 100644 index 0000000000..b9fbec3b2a Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/royal-rightarm.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/royal-rightleg.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/royal-rightleg.png new file mode 100644 index 0000000000..3d7b68d736 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/royal-rightleg.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/whitefly-chest.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/whitefly-chest.png new file mode 100644 index 0000000000..ef61107b2d Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/whitefly-chest.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/whitefly-head.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/whitefly-head.png new file mode 100644 index 0000000000..88d31fc155 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/whitefly-head.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/whitefly-leftarm.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/whitefly-leftarm.png new file mode 100644 index 0000000000..0af7b082b1 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/whitefly-leftarm.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/whitefly-leftleg.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/whitefly-leftleg.png new file mode 100644 index 0000000000..545546d152 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/whitefly-leftleg.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/whitefly-rightarm.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/whitefly-rightarm.png new file mode 100644 index 0000000000..ca4ff2ab3e Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/whitefly-rightarm.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/whitefly-rightleg.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/whitefly-rightleg.png new file mode 100644 index 0000000000..e500fba523 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/whitefly-rightleg.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/witchking-chest.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/witchking-chest.png new file mode 100644 index 0000000000..3fb15409d0 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/witchking-chest.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/witchking-head.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/witchking-head.png new file mode 100644 index 0000000000..687de2a487 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/witchking-head.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/witchking-leftarm.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/witchking-leftarm.png new file mode 100644 index 0000000000..aa107e64c1 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/witchking-leftarm.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/witchking-leftleg.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/witchking-leftleg.png new file mode 100644 index 0000000000..508ae44311 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/witchking-leftleg.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/witchking-rightarm.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/witchking-rightarm.png new file mode 100644 index 0000000000..d7b908f92c Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/witchking-rightarm.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/witchking-rightleg.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/witchking-rightleg.png new file mode 100644 index 0000000000..fbb197f006 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_markings.rsi/witchking-rightleg.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/aspen.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/aspen.png new file mode 100644 index 0000000000..f1b9310d18 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/aspen.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/atlas.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/atlas.png new file mode 100644 index 0000000000..7be5cf69df Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/atlas.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/brown.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/brown.png new file mode 100644 index 0000000000..0d6f2ef01b Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/brown.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/deathshead.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/deathshead.png new file mode 100644 index 0000000000..2ed1fc8b24 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/deathshead.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/feathery.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/feathery.png new file mode 100644 index 0000000000..569b7fa662 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/feathery.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/firewatch.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/firewatch.png new file mode 100644 index 0000000000..dff8d418c4 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/firewatch.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/gothic.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/gothic.png new file mode 100644 index 0000000000..4cb27bbc41 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/gothic.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/jungle.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/jungle.png new file mode 100644 index 0000000000..53f093d994 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/jungle.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/lovers.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/lovers.png new file mode 100644 index 0000000000..e7cfb3b426 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/lovers.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/luna.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/luna.png new file mode 100644 index 0000000000..ced5783d2c Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/luna.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/meta.json b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/meta.json new file mode 100644 index 0000000000..06141d6caf --- /dev/null +++ b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/meta.json @@ -0,0 +1,111 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation/commit/a92719210eb834cf284c571b3b3d94c2d82c26ea | aspen from https://github.com/fulpstation/fulpstation/commit/b21af07f57c2c4fb1cdcdb4162ca222da97ed54c | mint made by Floofers", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "plain", + "directions": 4 + }, + { + "name": "atlas", + "directions": 4 + }, + { + "name": "luna", + "directions": 4 + }, + { + "name": "monarch", + "directions": 4 + }, + { + "name": "reddish", + "directions": 4 + }, + { + "name": "royal", + "directions": 4 + }, + { + "name": "gothic", + "directions": 4 + }, + { + "name": "lovers", + "directions": 4 + }, + { + "name": "whitefly", + "directions": 4 + }, + { + "name": "firewatch", + "directions": 4 + }, + { + "name": "deathshead", + "directions": 4 + }, + { + "name": "poison", + "directions": 4 + }, + { + "name": "ragged", + "directions": 4 + }, + { + "name": "moonfly", + "directions": 4 + }, + { + "name": "snow", + "directions": 4 + }, + { + "name": "oakworm", + "directions": 4 + }, + { + "name": "witchking", + "directions": 4 + }, + { + "name": "jungle", + "directions": 4 + }, + { + "name": "rosy", + "directions": 4 + }, + { + "name": "feathery", + "directions": 4 + }, + { + "name": "brown", + "directions": 4 + }, + { + "name": "plasmafire", + "directions": 4 + }, + { + "name": "moffra", + "directions": 4 + }, + { + "name": "aspen", + "directions": 4 + }, + { + "name": "mint", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/mint.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/mint.png new file mode 100644 index 0000000000..ece3621021 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/mint.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/moffra.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/moffra.png new file mode 100644 index 0000000000..ec88daddbc Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/moffra.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/monarch.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/monarch.png new file mode 100644 index 0000000000..f2a7f94714 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/monarch.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/moonfly.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/moonfly.png new file mode 100644 index 0000000000..3b7c7f34ea Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/moonfly.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/oakworm.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/oakworm.png new file mode 100644 index 0000000000..51590bf434 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/oakworm.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/plain.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/plain.png new file mode 100644 index 0000000000..66993d3bbb Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/plain.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/plasmafire.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/plasmafire.png new file mode 100644 index 0000000000..dafed53a61 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/plasmafire.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/poison.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/poison.png new file mode 100644 index 0000000000..b64e04e918 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/poison.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/ragged.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/ragged.png new file mode 100644 index 0000000000..06b2a51537 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/ragged.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/reddish.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/reddish.png new file mode 100644 index 0000000000..6cbe2731da Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/reddish.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/rosy.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/rosy.png new file mode 100644 index 0000000000..57f8297e17 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/rosy.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/royal.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/royal.png new file mode 100644 index 0000000000..839ec059f6 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/royal.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/snow.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/snow.png new file mode 100644 index 0000000000..1c9e3dbfdf Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/snow.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/whitefly.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/whitefly.png new file mode 100644 index 0000000000..dd890f9144 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/whitefly.png differ diff --git a/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/witchking.png b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/witchking.png new file mode 100644 index 0000000000..b39f11bd16 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Mobs/Customization/Moth/moth_wings.rsi/witchking.png differ diff --git a/Resources/Textures/Nyanotrasen/Objects/Consumable/Food/Snacks/moth.rsi/enginefodder.png b/Resources/Textures/Nyanotrasen/Objects/Consumable/Food/Snacks/moth.rsi/enginefodder.png new file mode 100644 index 0000000000..fd14d35f64 Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Objects/Consumable/Food/Snacks/moth.rsi/enginefodder.png differ diff --git a/Resources/Textures/Nyanotrasen/Objects/Consumable/Food/Snacks/moth.rsi/fueljacklunch.png b/Resources/Textures/Nyanotrasen/Objects/Consumable/Food/Snacks/moth.rsi/fueljacklunch.png new file mode 100644 index 0000000000..15a402b65c Binary files /dev/null and b/Resources/Textures/Nyanotrasen/Objects/Consumable/Food/Snacks/moth.rsi/fueljacklunch.png differ diff --git a/Resources/Textures/Nyanotrasen/Objects/Consumable/Food/Snacks/moth.rsi/meta.json b/Resources/Textures/Nyanotrasen/Objects/Consumable/Food/Snacks/moth.rsi/meta.json index 85e074771b..a65c5db1b9 100644 --- a/Resources/Textures/Nyanotrasen/Objects/Consumable/Food/Snacks/moth.rsi/meta.json +++ b/Resources/Textures/Nyanotrasen/Objects/Consumable/Food/Snacks/moth.rsi/meta.json @@ -21,6 +21,12 @@ }, { "name": "bakedcheeseplatter" + }, + { + "name": "enginefodder" + }, + { + "name": "fueljacklunch" } ] } diff --git a/Resources/Textures/Objects/Decoration/Flora/flora_shadow_trees.rsi/meta.json b/Resources/Textures/Objects/Decoration/Flora/flora_shadow_trees.rsi/meta.json new file mode 100644 index 0000000000..8f86af7053 --- /dev/null +++ b/Resources/Textures/Objects/Decoration/Flora/flora_shadow_trees.rsi/meta.json @@ -0,0 +1,29 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/blob/e00cae8d065f9cf520688cc0dd0e15ba5bef12a9/icons/obj/flora/jungleflora.dmi and recolor by TheShuEd", + "size": { + "x": 96, + "y": 96 + }, + "states": [ + { + "name": "tree01" + }, + { + "name": "tree02" + }, + { + "name": "tree03" + }, + { + "name": "tree04" + }, + { + "name": "tree05" + }, + { + "name": "tree06" + } + ] +} diff --git a/Resources/Textures/Objects/Decoration/Flora/flora_shadow_trees.rsi/tree01.png b/Resources/Textures/Objects/Decoration/Flora/flora_shadow_trees.rsi/tree01.png new file mode 100644 index 0000000000..99ca699d42 Binary files /dev/null and b/Resources/Textures/Objects/Decoration/Flora/flora_shadow_trees.rsi/tree01.png differ diff --git a/Resources/Textures/Objects/Decoration/Flora/flora_shadow_trees.rsi/tree02.png b/Resources/Textures/Objects/Decoration/Flora/flora_shadow_trees.rsi/tree02.png new file mode 100644 index 0000000000..4aa9a2913f Binary files /dev/null and b/Resources/Textures/Objects/Decoration/Flora/flora_shadow_trees.rsi/tree02.png differ diff --git a/Resources/Textures/Objects/Decoration/Flora/flora_shadow_trees.rsi/tree03.png b/Resources/Textures/Objects/Decoration/Flora/flora_shadow_trees.rsi/tree03.png new file mode 100644 index 0000000000..5a833a3ac7 Binary files /dev/null and b/Resources/Textures/Objects/Decoration/Flora/flora_shadow_trees.rsi/tree03.png differ diff --git a/Resources/Textures/Objects/Decoration/Flora/flora_shadow_trees.rsi/tree04.png b/Resources/Textures/Objects/Decoration/Flora/flora_shadow_trees.rsi/tree04.png new file mode 100644 index 0000000000..4d1cefe2fd Binary files /dev/null and b/Resources/Textures/Objects/Decoration/Flora/flora_shadow_trees.rsi/tree04.png differ diff --git a/Resources/Textures/Objects/Decoration/Flora/flora_shadow_trees.rsi/tree05.png b/Resources/Textures/Objects/Decoration/Flora/flora_shadow_trees.rsi/tree05.png new file mode 100644 index 0000000000..8b2cd2a30b Binary files /dev/null and b/Resources/Textures/Objects/Decoration/Flora/flora_shadow_trees.rsi/tree05.png differ diff --git a/Resources/Textures/Objects/Decoration/Flora/flora_shadow_trees.rsi/tree06.png b/Resources/Textures/Objects/Decoration/Flora/flora_shadow_trees.rsi/tree06.png new file mode 100644 index 0000000000..888fbfd25b Binary files /dev/null and b/Resources/Textures/Objects/Decoration/Flora/flora_shadow_trees.rsi/tree06.png differ diff --git a/Resources/Textures/Objects/Decoration/Flora/flora_stalagmite.rsi/meta.json b/Resources/Textures/Objects/Decoration/Flora/flora_stalagmite.rsi/meta.json new file mode 100644 index 0000000000..33dc4fa073 --- /dev/null +++ b/Resources/Textures/Objects/Decoration/Flora/flora_stalagmite.rsi/meta.json @@ -0,0 +1,29 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TGMC at commit https://github.com/tgstation/TerraGov-Marine-Corps/commit/4bf5d1aafbcbbb7bd2a7d0f52ef87f28e2bbb384", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "stalagmite1" + }, + { + "name": "stalagmite2" + }, + { + "name": "stalagmite3" + }, + { + "name": "stalagmite4" + }, + { + "name": "stalagmite5" + }, + { + "name": "stalagmite6" + } + ] +} diff --git a/Resources/Textures/Objects/Decoration/Flora/flora_stalagmite.rsi/stalagmite1.png b/Resources/Textures/Objects/Decoration/Flora/flora_stalagmite.rsi/stalagmite1.png new file mode 100644 index 0000000000..ed9ddfd8ab Binary files /dev/null and b/Resources/Textures/Objects/Decoration/Flora/flora_stalagmite.rsi/stalagmite1.png differ diff --git a/Resources/Textures/Objects/Decoration/Flora/flora_stalagmite.rsi/stalagmite2.png b/Resources/Textures/Objects/Decoration/Flora/flora_stalagmite.rsi/stalagmite2.png new file mode 100644 index 0000000000..e816776261 Binary files /dev/null and b/Resources/Textures/Objects/Decoration/Flora/flora_stalagmite.rsi/stalagmite2.png differ diff --git a/Resources/Textures/Objects/Decoration/Flora/flora_stalagmite.rsi/stalagmite3.png b/Resources/Textures/Objects/Decoration/Flora/flora_stalagmite.rsi/stalagmite3.png new file mode 100644 index 0000000000..19394a6621 Binary files /dev/null and b/Resources/Textures/Objects/Decoration/Flora/flora_stalagmite.rsi/stalagmite3.png differ diff --git a/Resources/Textures/Objects/Decoration/Flora/flora_stalagmite.rsi/stalagmite4.png b/Resources/Textures/Objects/Decoration/Flora/flora_stalagmite.rsi/stalagmite4.png new file mode 100644 index 0000000000..90e0e75a07 Binary files /dev/null and b/Resources/Textures/Objects/Decoration/Flora/flora_stalagmite.rsi/stalagmite4.png differ diff --git a/Resources/Textures/Objects/Decoration/Flora/flora_stalagmite.rsi/stalagmite5.png b/Resources/Textures/Objects/Decoration/Flora/flora_stalagmite.rsi/stalagmite5.png new file mode 100644 index 0000000000..a10cdb5d9b Binary files /dev/null and b/Resources/Textures/Objects/Decoration/Flora/flora_stalagmite.rsi/stalagmite5.png differ diff --git a/Resources/Textures/Objects/Decoration/Flora/flora_stalagmite.rsi/stalagmite6.png b/Resources/Textures/Objects/Decoration/Flora/flora_stalagmite.rsi/stalagmite6.png new file mode 100644 index 0000000000..b424d6dfe0 Binary files /dev/null and b/Resources/Textures/Objects/Decoration/Flora/flora_stalagmite.rsi/stalagmite6.png differ diff --git a/Resources/Textures/Objects/Decoration/mines.rsi/meta.json b/Resources/Textures/Objects/Decoration/mines.rsi/meta.json new file mode 100644 index 0000000000..39f167a0d6 --- /dev/null +++ b/Resources/Textures/Objects/Decoration/mines.rsi/meta.json @@ -0,0 +1,29 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from TGMC at commit https://github.com/tgstation/TerraGov-Marine-Corps/commit/4bf5d1aafbcbbb7bd2a7d0f52ef87f28e2bbb384", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "sign_left" + }, + { + "name": "sign_right" + }, + { + "name": "support" + }, + { + "name": "support_beams" + }, + { + "name": "support_wall" + }, + { + "name": "support_wall_broken" + } + ] +} diff --git a/Resources/Textures/Objects/Decoration/mines.rsi/sign_left.png b/Resources/Textures/Objects/Decoration/mines.rsi/sign_left.png new file mode 100644 index 0000000000..96f5692791 Binary files /dev/null and b/Resources/Textures/Objects/Decoration/mines.rsi/sign_left.png differ diff --git a/Resources/Textures/Objects/Decoration/mines.rsi/sign_right.png b/Resources/Textures/Objects/Decoration/mines.rsi/sign_right.png new file mode 100644 index 0000000000..f89435fafc Binary files /dev/null and b/Resources/Textures/Objects/Decoration/mines.rsi/sign_right.png differ diff --git a/Resources/Textures/Objects/Decoration/mines.rsi/support.png b/Resources/Textures/Objects/Decoration/mines.rsi/support.png new file mode 100644 index 0000000000..29f7482b28 Binary files /dev/null and b/Resources/Textures/Objects/Decoration/mines.rsi/support.png differ diff --git a/Resources/Textures/Objects/Decoration/mines.rsi/support_beams.png b/Resources/Textures/Objects/Decoration/mines.rsi/support_beams.png new file mode 100644 index 0000000000..3111d15dcb Binary files /dev/null and b/Resources/Textures/Objects/Decoration/mines.rsi/support_beams.png differ diff --git a/Resources/Textures/Objects/Decoration/mines.rsi/support_wall.png b/Resources/Textures/Objects/Decoration/mines.rsi/support_wall.png new file mode 100644 index 0000000000..9b14590952 Binary files /dev/null and b/Resources/Textures/Objects/Decoration/mines.rsi/support_wall.png differ diff --git a/Resources/Textures/Objects/Decoration/mines.rsi/support_wall_broken.png b/Resources/Textures/Objects/Decoration/mines.rsi/support_wall_broken.png new file mode 100644 index 0000000000..4032c6e45c Binary files /dev/null and b/Resources/Textures/Objects/Decoration/mines.rsi/support_wall_broken.png differ diff --git a/Resources/Textures/Objects/Devices/health_analyzer.rsi/airloss.png b/Resources/Textures/Objects/Devices/health_analyzer.rsi/airloss.png new file mode 100644 index 0000000000..82fa0e2c88 Binary files /dev/null and b/Resources/Textures/Objects/Devices/health_analyzer.rsi/airloss.png differ diff --git a/Resources/Textures/Objects/Devices/health_analyzer.rsi/brute.png b/Resources/Textures/Objects/Devices/health_analyzer.rsi/brute.png new file mode 100644 index 0000000000..bd5d80da30 Binary files /dev/null and b/Resources/Textures/Objects/Devices/health_analyzer.rsi/brute.png differ diff --git a/Resources/Textures/Objects/Devices/health_analyzer.rsi/burn.png b/Resources/Textures/Objects/Devices/health_analyzer.rsi/burn.png new file mode 100644 index 0000000000..cf65084e44 Binary files /dev/null and b/Resources/Textures/Objects/Devices/health_analyzer.rsi/burn.png differ diff --git a/Resources/Textures/Objects/Devices/health_analyzer.rsi/genetic.png b/Resources/Textures/Objects/Devices/health_analyzer.rsi/genetic.png new file mode 100644 index 0000000000..b660aed537 Binary files /dev/null and b/Resources/Textures/Objects/Devices/health_analyzer.rsi/genetic.png differ diff --git a/Resources/Textures/Objects/Devices/health_analyzer.rsi/meta.json b/Resources/Textures/Objects/Devices/health_analyzer.rsi/meta.json new file mode 100644 index 0000000000..3fccf5c46b --- /dev/null +++ b/Resources/Textures/Objects/Devices/health_analyzer.rsi/meta.json @@ -0,0 +1,29 @@ +{ + "version": 1, + "size": { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "airloss, brute, toxin and burn edited from /tg/station https://github.com/tgstation/tgstation/tree/master genetic edited from https://iconscout.com/free-icon/dna-2130814 with license CC BY 4.0", + "states": [ + { + "name": "airloss" + }, + { + "name": "genetic" + }, + { + "name": "brute" + }, + { + "name": "toxin" + }, + { + "name": "burn" + }, + { + "name": "unknown" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Objects/Devices/health_analyzer.rsi/toxin.png b/Resources/Textures/Objects/Devices/health_analyzer.rsi/toxin.png new file mode 100644 index 0000000000..b0aafddca3 Binary files /dev/null and b/Resources/Textures/Objects/Devices/health_analyzer.rsi/toxin.png differ diff --git a/Resources/Textures/Objects/Devices/health_analyzer.rsi/unknown.png b/Resources/Textures/Objects/Devices/health_analyzer.rsi/unknown.png new file mode 100644 index 0000000000..f68e2c990e Binary files /dev/null and b/Resources/Textures/Objects/Devices/health_analyzer.rsi/unknown.png differ diff --git a/Resources/Textures/Objects/Fun/pai.rsi/icon-potato-off.png b/Resources/Textures/Objects/Fun/pai.rsi/icon-potato-off.png new file mode 100644 index 0000000000..806d02d6f3 Binary files /dev/null and b/Resources/Textures/Objects/Fun/pai.rsi/icon-potato-off.png differ diff --git a/Resources/Textures/Objects/Fun/pai.rsi/meta.json b/Resources/Textures/Objects/Fun/pai.rsi/meta.json index 905a3684f8..f819450aa8 100644 --- a/Resources/Textures/Objects/Fun/pai.rsi/meta.json +++ b/Resources/Textures/Objects/Fun/pai.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/9ddb8cf084e292571d4e9c79745db25befbd82fe. pai-searching-overlay heavily modified. Syndicate variants by fedKotikeD", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/9ddb8cf084e292571d4e9c79745db25befbd82fe. pai-searching-overlay heavily modified. Syndicate variants by fedKotikeD, and potato by Doru991", "size": { "x": 32, "y": 32 @@ -13,6 +13,9 @@ { "name": "pai-base" }, + { + "name": "potato-base" + }, { "name": "pai-off-overlay" }, @@ -57,6 +60,18 @@ 0.8 ] ] + }, + { + "name": "icon-potato-off" + }, + { + "name": "potato-off-overlay" + }, + { + "name": "potato-on-overlay" + }, + { + "name": "potato-searching-overlay" } ] } diff --git a/Resources/Textures/Objects/Fun/pai.rsi/potato-base.png b/Resources/Textures/Objects/Fun/pai.rsi/potato-base.png new file mode 100644 index 0000000000..b6e594430c Binary files /dev/null and b/Resources/Textures/Objects/Fun/pai.rsi/potato-base.png differ diff --git a/Resources/Textures/Objects/Fun/pai.rsi/potato-off-overlay.png b/Resources/Textures/Objects/Fun/pai.rsi/potato-off-overlay.png new file mode 100644 index 0000000000..0d3f735158 Binary files /dev/null and b/Resources/Textures/Objects/Fun/pai.rsi/potato-off-overlay.png differ diff --git a/Resources/Textures/Objects/Fun/pai.rsi/potato-on-overlay.png b/Resources/Textures/Objects/Fun/pai.rsi/potato-on-overlay.png new file mode 100644 index 0000000000..9926823662 Binary files /dev/null and b/Resources/Textures/Objects/Fun/pai.rsi/potato-on-overlay.png differ diff --git a/Resources/Textures/Objects/Fun/pai.rsi/potato-searching-overlay.png b/Resources/Textures/Objects/Fun/pai.rsi/potato-searching-overlay.png new file mode 100644 index 0000000000..5d8d7cde30 Binary files /dev/null and b/Resources/Textures/Objects/Fun/pai.rsi/potato-searching-overlay.png differ diff --git a/Resources/Textures/Objects/Fun/toys.rsi/bee-equipped-HELMET.png b/Resources/Textures/Objects/Fun/toys.rsi/bee-equipped-HELMET.png new file mode 100644 index 0000000000..ba56a09a59 Binary files /dev/null and b/Resources/Textures/Objects/Fun/toys.rsi/bee-equipped-HELMET.png differ diff --git a/Resources/Textures/Objects/Fun/toys.rsi/bee-inhand-left.png b/Resources/Textures/Objects/Fun/toys.rsi/bee-inhand-left.png new file mode 100644 index 0000000000..900432e394 Binary files /dev/null and b/Resources/Textures/Objects/Fun/toys.rsi/bee-inhand-left.png differ diff --git a/Resources/Textures/Objects/Fun/toys.rsi/bee-inhand-right.png b/Resources/Textures/Objects/Fun/toys.rsi/bee-inhand-right.png new file mode 100644 index 0000000000..5563fc4d3c Binary files /dev/null and b/Resources/Textures/Objects/Fun/toys.rsi/bee-inhand-right.png differ diff --git a/Resources/Textures/Objects/Fun/toys.rsi/meta.json b/Resources/Textures/Objects/Fun/toys.rsi/meta.json index 77a1128149..a5f1211666 100644 --- a/Resources/Textures/Objects/Fun/toys.rsi/meta.json +++ b/Resources/Textures/Objects/Fun/toys.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/e1142f20f5e4661cb6845cfcf2dd69f864d67432, orb, orb-inhand-left and orb-inhand-right created by Pancake, plushie_diona and plushie_diona1 created by discord user Deos#5630, toy-mouse-equipped-HELMET is a resprited 1-equipped-HELMET in mouse.rsi by PuroSlavKing (Github), plushie_xeno by LinkUyx#6557, plushie_hampter by RenLou#4333, beachball taken from https://github.com/ss220-space/Paradise/commit/662c08272acd7be79531550919f56f846726eabb, beachb-inhand by ;3#1161", + "copyright": "Taken from tgstation at https://github.com/tgstation/tgstation/commit/e1142f20f5e4661cb6845cfcf2dd69f864d67432, orb, orb-inhand-left and orb-inhand-right created by Pancake, plushie_diona and plushie_diona1 created by discord user Deos#5630, toy-mouse-equipped-HELMET is a resprited 1-equipped-HELMET in mouse.rsi by PuroSlavKing (Github), plushie_xeno by LinkUyx#6557, plushie_hampter by RenLou#4333, beachball taken from https://github.com/ss220-space/Paradise/commit/662c08272acd7be79531550919f56f846726eabb, beachb-inhand by ;3#1161, bee hat and in-hand sprites drawn by Ubaser", "size": { "x": 32, "y": 32 @@ -10,7 +10,7 @@ { "name": "plushie_ratvar" }, - { + { "name": "plushie_moth" }, { @@ -29,7 +29,19 @@ { "name": "plushie_h" }, - { + { + "name": "bee-equipped-HELMET", + "directions": 4 + }, + { + "name": "bee-inhand-left", + "directions": 4 + }, + { + "name": "bee-inhand-right", + "directions": 4 + }, + { "name": "plushie_hampter" }, { diff --git a/Resources/Textures/Objects/Misc/potatoai_chip.rsi/icon.png b/Resources/Textures/Objects/Misc/potatoai_chip.rsi/icon.png new file mode 100644 index 0000000000..68ba38d279 Binary files /dev/null and b/Resources/Textures/Objects/Misc/potatoai_chip.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Misc/potatoai_chip.rsi/meta.json b/Resources/Textures/Objects/Misc/potatoai_chip.rsi/meta.json new file mode 100644 index 0000000000..dec5a8d3f7 --- /dev/null +++ b/Resources/Textures/Objects/Misc/potatoai_chip.rsi/meta.json @@ -0,0 +1,14 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Drawn by @Doru991 for SS14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + } + ] +} diff --git a/Resources/Textures/Objects/Power/power_cells.rsi/meta.json b/Resources/Textures/Objects/Power/power_cells.rsi/meta.json index 01c2300621..66dbf30841 100644 --- a/Resources/Textures/Objects/Power/power_cells.rsi/meta.json +++ b/Resources/Textures/Objects/Power/power_cells.rsi/meta.json @@ -5,7 +5,7 @@ "y": 32 }, "license": "CC-BY-SA-3.0", - "copyright": "https://github.com/tgstation/tgstation/commit/7dcdbc1468ffdc8689b984cb6b181d48ae41dbf2", + "copyright": "https://github.com/tgstation/tgstation/commit/7dcdbc1468ffdc8689b984cb6b181d48ae41dbf2, potato based on https://github.com/vgstation-coders/vgstation13/commit/1dbcf389b0ec6b2c51b002df5fef8dd1519f8068 edited by @Doru991", "states": [ { "name": "potato" diff --git a/Resources/Textures/Objects/Power/power_cells.rsi/potato.png b/Resources/Textures/Objects/Power/power_cells.rsi/potato.png index 5b0f7a5fe0..53572f46a1 100644 Binary files a/Resources/Textures/Objects/Power/power_cells.rsi/potato.png and b/Resources/Textures/Objects/Power/power_cells.rsi/potato.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/pea.rsi/dead.png b/Resources/Textures/Objects/Specific/Hydroponics/pea.rsi/dead.png new file mode 100644 index 0000000000..8fa7120b29 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/pea.rsi/dead.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/pea.rsi/harvest.png b/Resources/Textures/Objects/Specific/Hydroponics/pea.rsi/harvest.png new file mode 100644 index 0000000000..d4f146d88a Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/pea.rsi/harvest.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/pea.rsi/meta.json b/Resources/Textures/Objects/Specific/Hydroponics/pea.rsi/meta.json new file mode 100644 index 0000000000..c78dcee56d --- /dev/null +++ b/Resources/Textures/Objects/Specific/Hydroponics/pea.rsi/meta.json @@ -0,0 +1,32 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from tgstation at commit https://github.com/tgstation/tgstation/commit/a5e6db8f99b436b643bd3b76fa131ac074dfd856", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "dead" + }, + { + "name": "harvest" + }, + { + "name": "produce" + }, + { + "name": "seed" + }, + { + "name": "stage-1" + }, + { + "name": "stage-2" + }, + { + "name": "stage-3" + } + ] +} diff --git a/Resources/Textures/Objects/Specific/Hydroponics/pea.rsi/produce.png b/Resources/Textures/Objects/Specific/Hydroponics/pea.rsi/produce.png new file mode 100644 index 0000000000..d5881c2e3e Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/pea.rsi/produce.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/pea.rsi/seed.png b/Resources/Textures/Objects/Specific/Hydroponics/pea.rsi/seed.png new file mode 100644 index 0000000000..7f7931e440 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/pea.rsi/seed.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/pea.rsi/stage-1.png b/Resources/Textures/Objects/Specific/Hydroponics/pea.rsi/stage-1.png new file mode 100644 index 0000000000..cfd3786315 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/pea.rsi/stage-1.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/pea.rsi/stage-2.png b/Resources/Textures/Objects/Specific/Hydroponics/pea.rsi/stage-2.png new file mode 100644 index 0000000000..b724176aa5 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/pea.rsi/stage-2.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/pea.rsi/stage-3.png b/Resources/Textures/Objects/Specific/Hydroponics/pea.rsi/stage-3.png new file mode 100644 index 0000000000..fd9cfaaa3d Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/pea.rsi/stage-3.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/pumpkin.rsi/carved.png b/Resources/Textures/Objects/Specific/Hydroponics/pumpkin.rsi/carved.png new file mode 100644 index 0000000000..6eb43adee1 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/pumpkin.rsi/carved.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/pumpkin.rsi/dead.png b/Resources/Textures/Objects/Specific/Hydroponics/pumpkin.rsi/dead.png new file mode 100644 index 0000000000..e66da2064a Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/pumpkin.rsi/dead.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/pumpkin.rsi/harvest.png b/Resources/Textures/Objects/Specific/Hydroponics/pumpkin.rsi/harvest.png new file mode 100644 index 0000000000..ea6a13ed31 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/pumpkin.rsi/harvest.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/pumpkin.rsi/lantern.png b/Resources/Textures/Objects/Specific/Hydroponics/pumpkin.rsi/lantern.png new file mode 100644 index 0000000000..e07dacbcc9 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/pumpkin.rsi/lantern.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/pumpkin.rsi/meta.json b/Resources/Textures/Objects/Specific/Hydroponics/pumpkin.rsi/meta.json new file mode 100644 index 0000000000..a6409ac1ff --- /dev/null +++ b/Resources/Textures/Objects/Specific/Hydroponics/pumpkin.rsi/meta.json @@ -0,0 +1,47 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from https://github.com/tgstation/tgstation/blob/5d507cfbad6f73d1beaba66d93f31f893adb3a84/icons/obj/hydroponics/harvest.dmi, carved sprites by ps3moira", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "dead" + }, + { + "name": "harvest" + }, + { + "name": "produce" + }, + { + "name": "seed" + }, + { + "name": "stage-1" + }, + { + "name": "stage-2" + }, + { + "name": "stage-3" + }, + { + "name": "carved" + }, + { + "name": "lantern", + "delays": [ + [ + 0.2, + 0.2, + 0.2, + 0.2, + 0.2 + ] + ] + } + ] +} diff --git a/Resources/Textures/Objects/Specific/Hydroponics/pumpkin.rsi/produce.png b/Resources/Textures/Objects/Specific/Hydroponics/pumpkin.rsi/produce.png new file mode 100644 index 0000000000..6fa2ec1939 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/pumpkin.rsi/produce.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/pumpkin.rsi/seed.png b/Resources/Textures/Objects/Specific/Hydroponics/pumpkin.rsi/seed.png new file mode 100644 index 0000000000..a60957f895 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/pumpkin.rsi/seed.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/pumpkin.rsi/stage-1.png b/Resources/Textures/Objects/Specific/Hydroponics/pumpkin.rsi/stage-1.png new file mode 100644 index 0000000000..762e986ae9 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/pumpkin.rsi/stage-1.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/pumpkin.rsi/stage-2.png b/Resources/Textures/Objects/Specific/Hydroponics/pumpkin.rsi/stage-2.png new file mode 100644 index 0000000000..22f418d571 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/pumpkin.rsi/stage-2.png differ diff --git a/Resources/Textures/Objects/Specific/Hydroponics/pumpkin.rsi/stage-3.png b/Resources/Textures/Objects/Specific/Hydroponics/pumpkin.rsi/stage-3.png new file mode 100644 index 0000000000..eb08406899 Binary files /dev/null and b/Resources/Textures/Objects/Specific/Hydroponics/pumpkin.rsi/stage-3.png differ diff --git a/Resources/Textures/Objects/Specific/Robotics/mmi.rsi/meta.json b/Resources/Textures/Objects/Specific/Robotics/mmi.rsi/meta.json index 6499772c7a..fcdd9e1b26 100644 --- a/Resources/Textures/Objects/Specific/Robotics/mmi.rsi/meta.json +++ b/Resources/Textures/Objects/Specific/Robotics/mmi.rsi/meta.json @@ -76,4 +76,4 @@ ] } ] -} \ No newline at end of file +} diff --git a/Resources/Textures/Objects/Weapons/Melee/sledgehammer.rsi/icon.png b/Resources/Textures/Objects/Weapons/Melee/sledgehammer.rsi/icon.png new file mode 100644 index 0000000000..287c02bd94 Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/sledgehammer.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/sledgehammer.rsi/inhand-left.png b/Resources/Textures/Objects/Weapons/Melee/sledgehammer.rsi/inhand-left.png new file mode 100644 index 0000000000..d728c4112b Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/sledgehammer.rsi/inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/sledgehammer.rsi/inhand-right.png b/Resources/Textures/Objects/Weapons/Melee/sledgehammer.rsi/inhand-right.png new file mode 100644 index 0000000000..b5889d3dee Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/sledgehammer.rsi/inhand-right.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/sledgehammer.rsi/meta.json b/Resources/Textures/Objects/Weapons/Melee/sledgehammer.rsi/meta.json new file mode 100644 index 0000000000..b8bbd26672 --- /dev/null +++ b/Resources/Textures/Objects/Weapons/Melee/sledgehammer.rsi/meta.json @@ -0,0 +1,30 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Made by Github user Psychpsyo for Space Station 14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + }, + { + "name": "wielded-inhand-left", + "directions": 4 + }, + { + "name": "wielded-inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Objects/Weapons/Melee/sledgehammer.rsi/wielded-inhand-left.png b/Resources/Textures/Objects/Weapons/Melee/sledgehammer.rsi/wielded-inhand-left.png new file mode 100644 index 0000000000..c0ae12785e Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/sledgehammer.rsi/wielded-inhand-left.png differ diff --git a/Resources/Textures/Objects/Weapons/Melee/sledgehammer.rsi/wielded-inhand-right.png b/Resources/Textures/Objects/Weapons/Melee/sledgehammer.rsi/wielded-inhand-right.png new file mode 100644 index 0000000000..21c9a32a7f Binary files /dev/null and b/Resources/Textures/Objects/Weapons/Melee/sledgehammer.rsi/wielded-inhand-right.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Hands/Gloves/fingerless_insuls.rsi/equipped-HAND.png b/Resources/Textures/SimpleStation14/Clothing/Hands/Gloves/fingerless_insuls.rsi/equipped-HAND.png new file mode 100644 index 0000000000..cc06628531 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Hands/Gloves/fingerless_insuls.rsi/equipped-HAND.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Hands/Gloves/fingerless_insuls.rsi/icon.png b/Resources/Textures/SimpleStation14/Clothing/Hands/Gloves/fingerless_insuls.rsi/icon.png new file mode 100644 index 0000000000..9ffde6f8c9 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Hands/Gloves/fingerless_insuls.rsi/icon.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Hands/Gloves/fingerless_insuls.rsi/inhand-left.png b/Resources/Textures/SimpleStation14/Clothing/Hands/Gloves/fingerless_insuls.rsi/inhand-left.png new file mode 100644 index 0000000000..6689326438 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Hands/Gloves/fingerless_insuls.rsi/inhand-left.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Hands/Gloves/fingerless_insuls.rsi/inhand-right.png b/Resources/Textures/SimpleStation14/Clothing/Hands/Gloves/fingerless_insuls.rsi/inhand-right.png new file mode 100644 index 0000000000..c683249357 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Hands/Gloves/fingerless_insuls.rsi/inhand-right.png differ diff --git a/Resources/Textures/DeltaV/Clothing/Head/Soft/couriersoft_flipped.rsi/meta.json b/Resources/Textures/SimpleStation14/Clothing/Hands/Gloves/fingerless_insuls.rsi/meta.json similarity index 79% rename from Resources/Textures/DeltaV/Clothing/Head/Soft/couriersoft_flipped.rsi/meta.json rename to Resources/Textures/SimpleStation14/Clothing/Hands/Gloves/fingerless_insuls.rsi/meta.json index 24b16f05be..8a620f9427 100644 --- a/Resources/Textures/DeltaV/Clothing/Head/Soft/couriersoft_flipped.rsi/meta.json +++ b/Resources/Textures/SimpleStation14/Clothing/Hands/Gloves/fingerless_insuls.rsi/meta.json @@ -1,7 +1,7 @@ { "version": 1, "license": "CC-BY-SA-3.0", - "copyright": "Made by @Leonardo DaBepis", + "copyright": "Edited by DSC@heartparkyheart", "size": { "x": 32, "y": 32 @@ -11,7 +11,7 @@ "name": "icon" }, { - "name": "equipped-HELMET", + "name": "equipped-HAND", "directions": 4 }, { diff --git a/Resources/Textures/SimpleStation14/Clothing/Head/Hardsuits/hopsuit.rsi/equipped-head-light.png b/Resources/Textures/SimpleStation14/Clothing/Head/Hardsuits/hopsuit.rsi/equipped-head-light.png new file mode 100644 index 0000000000..3258b0918f Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Head/Hardsuits/hopsuit.rsi/equipped-head-light.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Head/Hardsuits/hopsuit.rsi/equipped-head.png b/Resources/Textures/SimpleStation14/Clothing/Head/Hardsuits/hopsuit.rsi/equipped-head.png new file mode 100644 index 0000000000..a11c3bf517 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Head/Hardsuits/hopsuit.rsi/equipped-head.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Head/Hardsuits/hopsuit.rsi/icon.png b/Resources/Textures/SimpleStation14/Clothing/Head/Hardsuits/hopsuit.rsi/icon.png new file mode 100644 index 0000000000..5b5c948d8a Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Head/Hardsuits/hopsuit.rsi/icon.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Head/Hardsuits/hopsuit.rsi/light-overlay.png b/Resources/Textures/SimpleStation14/Clothing/Head/Hardsuits/hopsuit.rsi/light-overlay.png new file mode 100644 index 0000000000..82ce3424e0 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/Head/Hardsuits/hopsuit.rsi/light-overlay.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/Head/Hardsuits/hopsuit.rsi/meta.json b/Resources/Textures/SimpleStation14/Clothing/Head/Hardsuits/hopsuit.rsi/meta.json new file mode 100644 index 0000000000..028d44850e --- /dev/null +++ b/Resources/Textures/SimpleStation14/Clothing/Head/Hardsuits/hopsuit.rsi/meta.json @@ -0,0 +1,25 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by DSC@Cabbage#9633", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "light-overlay" + }, + { + "name": "equipped-head", + "directions": 4 + }, + { + "name": "equipped-head-light", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/SimpleStation14/Clothing/OuterClothing/Hardsuits/hopsuit.rsi/equipped-OUTERCLOTHING.png b/Resources/Textures/SimpleStation14/Clothing/OuterClothing/Hardsuits/hopsuit.rsi/equipped-OUTERCLOTHING.png new file mode 100644 index 0000000000..5e904b8e11 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/OuterClothing/Hardsuits/hopsuit.rsi/equipped-OUTERCLOTHING.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/OuterClothing/Hardsuits/hopsuit.rsi/icon.png b/Resources/Textures/SimpleStation14/Clothing/OuterClothing/Hardsuits/hopsuit.rsi/icon.png new file mode 100644 index 0000000000..fdf8756131 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/OuterClothing/Hardsuits/hopsuit.rsi/icon.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/OuterClothing/Hardsuits/hopsuit.rsi/inhand-left.png b/Resources/Textures/SimpleStation14/Clothing/OuterClothing/Hardsuits/hopsuit.rsi/inhand-left.png new file mode 100644 index 0000000000..9c25609da3 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/OuterClothing/Hardsuits/hopsuit.rsi/inhand-left.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/OuterClothing/Hardsuits/hopsuit.rsi/inhand-right.png b/Resources/Textures/SimpleStation14/Clothing/OuterClothing/Hardsuits/hopsuit.rsi/inhand-right.png new file mode 100644 index 0000000000..fee0c1b994 Binary files /dev/null and b/Resources/Textures/SimpleStation14/Clothing/OuterClothing/Hardsuits/hopsuit.rsi/inhand-right.png differ diff --git a/Resources/Textures/SimpleStation14/Clothing/OuterClothing/Hardsuits/hopsuit.rsi/meta.json b/Resources/Textures/SimpleStation14/Clothing/OuterClothing/Hardsuits/hopsuit.rsi/meta.json new file mode 100644 index 0000000000..9c0b0d7378 --- /dev/null +++ b/Resources/Textures/SimpleStation14/Clothing/OuterClothing/Hardsuits/hopsuit.rsi/meta.json @@ -0,0 +1,26 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Made by DSC@Cabbage#9633", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "icon" + }, + { + "name": "equipped-OUTERCLOTHING", + "directions": 4 + }, + { + "name": "inhand-left", + "directions": 4 + }, + { + "name": "inhand-right", + "directions": 4 + } + ] +} diff --git a/Resources/Textures/Structures/Machines/techfab.rsi/ammo.png b/Resources/Textures/Structures/Machines/techfab.rsi/ammo.png index 38f7a4dd2c..c2f1c61ace 100644 Binary files a/Resources/Textures/Structures/Machines/techfab.rsi/ammo.png and b/Resources/Textures/Structures/Machines/techfab.rsi/ammo.png differ diff --git a/Resources/Textures/Structures/Machines/techfab.rsi/cargo.png b/Resources/Textures/Structures/Machines/techfab.rsi/cargo.png new file mode 100644 index 0000000000..d89e51d199 Binary files /dev/null and b/Resources/Textures/Structures/Machines/techfab.rsi/cargo.png differ diff --git a/Resources/Textures/Structures/Machines/techfab.rsi/engi.png b/Resources/Textures/Structures/Machines/techfab.rsi/engi.png new file mode 100644 index 0000000000..5ba7c813b9 Binary files /dev/null and b/Resources/Textures/Structures/Machines/techfab.rsi/engi.png differ diff --git a/Resources/Textures/Structures/Machines/techfab.rsi/icon.png b/Resources/Textures/Structures/Machines/techfab.rsi/icon.png index 4015336f16..186fd30082 100644 Binary files a/Resources/Textures/Structures/Machines/techfab.rsi/icon.png and b/Resources/Textures/Structures/Machines/techfab.rsi/icon.png differ diff --git a/Resources/Textures/Structures/Machines/techfab.rsi/inserting.png b/Resources/Textures/Structures/Machines/techfab.rsi/inserting.png index 3f3c09debf..647eb27246 100644 Binary files a/Resources/Textures/Structures/Machines/techfab.rsi/inserting.png and b/Resources/Textures/Structures/Machines/techfab.rsi/inserting.png differ diff --git a/Resources/Textures/Structures/Machines/techfab.rsi/med.png b/Resources/Textures/Structures/Machines/techfab.rsi/med.png index 506b03568a..86a740cb4c 100644 Binary files a/Resources/Textures/Structures/Machines/techfab.rsi/med.png and b/Resources/Textures/Structures/Machines/techfab.rsi/med.png differ diff --git a/Resources/Textures/Structures/Machines/techfab.rsi/meta.json b/Resources/Textures/Structures/Machines/techfab.rsi/meta.json index 11a48c4a0d..7530b9322a 100644 --- a/Resources/Textures/Structures/Machines/techfab.rsi/meta.json +++ b/Resources/Textures/Structures/Machines/techfab.rsi/meta.json @@ -14,7 +14,22 @@ "name": "med" }, { - "name": "ammo" + "name": "sec" + }, + { + "name": "sci" + }, + { + "name": "engi" + }, + { + "name": "service" + }, + { + "name": "cargo" + }, + { + "name": "ammo" }, { "name": "panel" diff --git a/Resources/Textures/Structures/Machines/techfab.rsi/sci.png b/Resources/Textures/Structures/Machines/techfab.rsi/sci.png new file mode 100644 index 0000000000..a2c7e72cab Binary files /dev/null and b/Resources/Textures/Structures/Machines/techfab.rsi/sci.png differ diff --git a/Resources/Textures/Structures/Machines/techfab.rsi/sec.png b/Resources/Textures/Structures/Machines/techfab.rsi/sec.png new file mode 100644 index 0000000000..c045c69396 Binary files /dev/null and b/Resources/Textures/Structures/Machines/techfab.rsi/sec.png differ diff --git a/Resources/Textures/Structures/Machines/techfab.rsi/service.png b/Resources/Textures/Structures/Machines/techfab.rsi/service.png new file mode 100644 index 0000000000..4270548bbb Binary files /dev/null and b/Resources/Textures/Structures/Machines/techfab.rsi/service.png differ diff --git a/Resources/Textures/Structures/Machines/techfab.rsi/unlit.png b/Resources/Textures/Structures/Machines/techfab.rsi/unlit.png index 3f6dd30c96..6635772d33 100644 Binary files a/Resources/Textures/Structures/Machines/techfab.rsi/unlit.png and b/Resources/Textures/Structures/Machines/techfab.rsi/unlit.png differ diff --git a/Resources/Textures/Tiles/Planet/chasm.rsi/chasm.png b/Resources/Textures/Tiles/Planet/Chasms/basalt_chasm.rsi/chasm.png similarity index 100% rename from Resources/Textures/Tiles/Planet/chasm.rsi/chasm.png rename to Resources/Textures/Tiles/Planet/Chasms/basalt_chasm.rsi/chasm.png diff --git a/Resources/Textures/Tiles/Planet/chasm.rsi/chasm0.png b/Resources/Textures/Tiles/Planet/Chasms/basalt_chasm.rsi/chasm0.png similarity index 100% rename from Resources/Textures/Tiles/Planet/chasm.rsi/chasm0.png rename to Resources/Textures/Tiles/Planet/Chasms/basalt_chasm.rsi/chasm0.png diff --git a/Resources/Textures/Tiles/Planet/chasm.rsi/chasm1.png b/Resources/Textures/Tiles/Planet/Chasms/basalt_chasm.rsi/chasm1.png similarity index 100% rename from Resources/Textures/Tiles/Planet/chasm.rsi/chasm1.png rename to Resources/Textures/Tiles/Planet/Chasms/basalt_chasm.rsi/chasm1.png diff --git a/Resources/Textures/Tiles/Planet/chasm.rsi/chasm2.png b/Resources/Textures/Tiles/Planet/Chasms/basalt_chasm.rsi/chasm2.png similarity index 100% rename from Resources/Textures/Tiles/Planet/chasm.rsi/chasm2.png rename to Resources/Textures/Tiles/Planet/Chasms/basalt_chasm.rsi/chasm2.png diff --git a/Resources/Textures/Tiles/Planet/chasm.rsi/chasm3.png b/Resources/Textures/Tiles/Planet/Chasms/basalt_chasm.rsi/chasm3.png similarity index 100% rename from Resources/Textures/Tiles/Planet/chasm.rsi/chasm3.png rename to Resources/Textures/Tiles/Planet/Chasms/basalt_chasm.rsi/chasm3.png diff --git a/Resources/Textures/Tiles/Planet/chasm.rsi/chasm4.png b/Resources/Textures/Tiles/Planet/Chasms/basalt_chasm.rsi/chasm4.png similarity index 100% rename from Resources/Textures/Tiles/Planet/chasm.rsi/chasm4.png rename to Resources/Textures/Tiles/Planet/Chasms/basalt_chasm.rsi/chasm4.png diff --git a/Resources/Textures/Tiles/Planet/chasm.rsi/chasm5.png b/Resources/Textures/Tiles/Planet/Chasms/basalt_chasm.rsi/chasm5.png similarity index 100% rename from Resources/Textures/Tiles/Planet/chasm.rsi/chasm5.png rename to Resources/Textures/Tiles/Planet/Chasms/basalt_chasm.rsi/chasm5.png diff --git a/Resources/Textures/Tiles/Planet/chasm.rsi/chasm6.png b/Resources/Textures/Tiles/Planet/Chasms/basalt_chasm.rsi/chasm6.png similarity index 100% rename from Resources/Textures/Tiles/Planet/chasm.rsi/chasm6.png rename to Resources/Textures/Tiles/Planet/Chasms/basalt_chasm.rsi/chasm6.png diff --git a/Resources/Textures/Tiles/Planet/chasm.rsi/chasm7.png b/Resources/Textures/Tiles/Planet/Chasms/basalt_chasm.rsi/chasm7.png similarity index 100% rename from Resources/Textures/Tiles/Planet/chasm.rsi/chasm7.png rename to Resources/Textures/Tiles/Planet/Chasms/basalt_chasm.rsi/chasm7.png diff --git a/Resources/Textures/Tiles/Planet/chasm.rsi/full.png b/Resources/Textures/Tiles/Planet/Chasms/basalt_chasm.rsi/full.png similarity index 100% rename from Resources/Textures/Tiles/Planet/chasm.rsi/full.png rename to Resources/Textures/Tiles/Planet/Chasms/basalt_chasm.rsi/full.png diff --git a/Resources/Textures/Tiles/Planet/chasm.rsi/meta.json b/Resources/Textures/Tiles/Planet/Chasms/basalt_chasm.rsi/meta.json similarity index 100% rename from Resources/Textures/Tiles/Planet/chasm.rsi/meta.json rename to Resources/Textures/Tiles/Planet/Chasms/basalt_chasm.rsi/meta.json diff --git a/Resources/Textures/Tiles/Planet/Chasms/chromite_chasm.rsi/chasm.png b/Resources/Textures/Tiles/Planet/Chasms/chromite_chasm.rsi/chasm.png new file mode 100644 index 0000000000..81355cd0cb Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Chasms/chromite_chasm.rsi/chasm.png differ diff --git a/Resources/Textures/Tiles/Planet/Chasms/chromite_chasm.rsi/chasm0.png b/Resources/Textures/Tiles/Planet/Chasms/chromite_chasm.rsi/chasm0.png new file mode 100644 index 0000000000..18b3514673 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Chasms/chromite_chasm.rsi/chasm0.png differ diff --git a/Resources/Textures/Tiles/Planet/Chasms/chromite_chasm.rsi/chasm1.png b/Resources/Textures/Tiles/Planet/Chasms/chromite_chasm.rsi/chasm1.png new file mode 100644 index 0000000000..32976f4816 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Chasms/chromite_chasm.rsi/chasm1.png differ diff --git a/Resources/Textures/Tiles/Planet/Chasms/chromite_chasm.rsi/chasm2.png b/Resources/Textures/Tiles/Planet/Chasms/chromite_chasm.rsi/chasm2.png new file mode 100644 index 0000000000..18b3514673 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Chasms/chromite_chasm.rsi/chasm2.png differ diff --git a/Resources/Textures/Tiles/Planet/Chasms/chromite_chasm.rsi/chasm3.png b/Resources/Textures/Tiles/Planet/Chasms/chromite_chasm.rsi/chasm3.png new file mode 100644 index 0000000000..32976f4816 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Chasms/chromite_chasm.rsi/chasm3.png differ diff --git a/Resources/Textures/Tiles/Planet/Chasms/chromite_chasm.rsi/chasm4.png b/Resources/Textures/Tiles/Planet/Chasms/chromite_chasm.rsi/chasm4.png new file mode 100644 index 0000000000..cb77ce6147 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Chasms/chromite_chasm.rsi/chasm4.png differ diff --git a/Resources/Textures/Tiles/Planet/Chasms/chromite_chasm.rsi/chasm5.png b/Resources/Textures/Tiles/Planet/Chasms/chromite_chasm.rsi/chasm5.png new file mode 100644 index 0000000000..beeb8d3499 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Chasms/chromite_chasm.rsi/chasm5.png differ diff --git a/Resources/Textures/Tiles/Planet/Chasms/chromite_chasm.rsi/chasm6.png b/Resources/Textures/Tiles/Planet/Chasms/chromite_chasm.rsi/chasm6.png new file mode 100644 index 0000000000..cb77ce6147 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Chasms/chromite_chasm.rsi/chasm6.png differ diff --git a/Resources/Textures/Tiles/Planet/Chasms/chromite_chasm.rsi/chasm7.png b/Resources/Textures/Tiles/Planet/Chasms/chromite_chasm.rsi/chasm7.png new file mode 100644 index 0000000000..0858c19f05 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Chasms/chromite_chasm.rsi/chasm7.png differ diff --git a/Resources/Textures/Tiles/Planet/Chasms/chromite_chasm.rsi/full.png b/Resources/Textures/Tiles/Planet/Chasms/chromite_chasm.rsi/full.png new file mode 100644 index 0000000000..59b9454af0 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Chasms/chromite_chasm.rsi/full.png differ diff --git a/Resources/Textures/Tiles/Planet/Chasms/chromite_chasm.rsi/meta.json b/Resources/Textures/Tiles/Planet/Chasms/chromite_chasm.rsi/meta.json new file mode 100644 index 0000000000..e303031e1f --- /dev/null +++ b/Resources/Textures/Tiles/Planet/Chasms/chromite_chasm.rsi/meta.json @@ -0,0 +1,49 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Created by TheShuEd (github) for ss14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "full" + }, + { + "name": "chasm0", + "directions": 4 + }, + { + "name": "chasm1", + "directions": 4 + }, + { + "name": "chasm2", + "directions": 4 + }, + { + "name": "chasm3", + "directions": 4 + }, + { + "name": "chasm4", + "directions": 4 + }, + { + "name": "chasm5", + "directions": 4 + }, + { + "name": "chasm6", + "directions": 4 + }, + { + "name": "chasm7", + "directions": 4 + }, + { + "name": "chasm" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Tiles/Planet/Chasms/desert_chasm.rsi/chasm.png b/Resources/Textures/Tiles/Planet/Chasms/desert_chasm.rsi/chasm.png new file mode 100644 index 0000000000..e09eb93e42 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Chasms/desert_chasm.rsi/chasm.png differ diff --git a/Resources/Textures/Tiles/Planet/Chasms/desert_chasm.rsi/chasm0.png b/Resources/Textures/Tiles/Planet/Chasms/desert_chasm.rsi/chasm0.png new file mode 100644 index 0000000000..7139091f1e Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Chasms/desert_chasm.rsi/chasm0.png differ diff --git a/Resources/Textures/Tiles/Planet/Chasms/desert_chasm.rsi/chasm1.png b/Resources/Textures/Tiles/Planet/Chasms/desert_chasm.rsi/chasm1.png new file mode 100644 index 0000000000..dce7efd9a6 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Chasms/desert_chasm.rsi/chasm1.png differ diff --git a/Resources/Textures/Tiles/Planet/Chasms/desert_chasm.rsi/chasm2.png b/Resources/Textures/Tiles/Planet/Chasms/desert_chasm.rsi/chasm2.png new file mode 100644 index 0000000000..7139091f1e Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Chasms/desert_chasm.rsi/chasm2.png differ diff --git a/Resources/Textures/Tiles/Planet/Chasms/desert_chasm.rsi/chasm3.png b/Resources/Textures/Tiles/Planet/Chasms/desert_chasm.rsi/chasm3.png new file mode 100644 index 0000000000..dce7efd9a6 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Chasms/desert_chasm.rsi/chasm3.png differ diff --git a/Resources/Textures/Tiles/Planet/Chasms/desert_chasm.rsi/chasm4.png b/Resources/Textures/Tiles/Planet/Chasms/desert_chasm.rsi/chasm4.png new file mode 100644 index 0000000000..5cc155f825 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Chasms/desert_chasm.rsi/chasm4.png differ diff --git a/Resources/Textures/Tiles/Planet/Chasms/desert_chasm.rsi/chasm5.png b/Resources/Textures/Tiles/Planet/Chasms/desert_chasm.rsi/chasm5.png new file mode 100644 index 0000000000..05b5d7eccd Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Chasms/desert_chasm.rsi/chasm5.png differ diff --git a/Resources/Textures/Tiles/Planet/Chasms/desert_chasm.rsi/chasm6.png b/Resources/Textures/Tiles/Planet/Chasms/desert_chasm.rsi/chasm6.png new file mode 100644 index 0000000000..5cc155f825 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Chasms/desert_chasm.rsi/chasm6.png differ diff --git a/Resources/Textures/Tiles/Planet/Chasms/desert_chasm.rsi/chasm7.png b/Resources/Textures/Tiles/Planet/Chasms/desert_chasm.rsi/chasm7.png new file mode 100644 index 0000000000..0858c19f05 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Chasms/desert_chasm.rsi/chasm7.png differ diff --git a/Resources/Textures/Tiles/Planet/Chasms/desert_chasm.rsi/full.png b/Resources/Textures/Tiles/Planet/Chasms/desert_chasm.rsi/full.png new file mode 100644 index 0000000000..03aa532353 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Chasms/desert_chasm.rsi/full.png differ diff --git a/Resources/Textures/Tiles/Planet/Chasms/desert_chasm.rsi/meta.json b/Resources/Textures/Tiles/Planet/Chasms/desert_chasm.rsi/meta.json new file mode 100644 index 0000000000..e303031e1f --- /dev/null +++ b/Resources/Textures/Tiles/Planet/Chasms/desert_chasm.rsi/meta.json @@ -0,0 +1,49 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Created by TheShuEd (github) for ss14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "full" + }, + { + "name": "chasm0", + "directions": 4 + }, + { + "name": "chasm1", + "directions": 4 + }, + { + "name": "chasm2", + "directions": 4 + }, + { + "name": "chasm3", + "directions": 4 + }, + { + "name": "chasm4", + "directions": 4 + }, + { + "name": "chasm5", + "directions": 4 + }, + { + "name": "chasm6", + "directions": 4 + }, + { + "name": "chasm7", + "directions": 4 + }, + { + "name": "chasm" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Tiles/Planet/Chasms/snow_chasm.rsi/chasm.png b/Resources/Textures/Tiles/Planet/Chasms/snow_chasm.rsi/chasm.png new file mode 100644 index 0000000000..1124e0518c Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Chasms/snow_chasm.rsi/chasm.png differ diff --git a/Resources/Textures/Tiles/Planet/Chasms/snow_chasm.rsi/chasm0.png b/Resources/Textures/Tiles/Planet/Chasms/snow_chasm.rsi/chasm0.png new file mode 100644 index 0000000000..a813ce8e9a Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Chasms/snow_chasm.rsi/chasm0.png differ diff --git a/Resources/Textures/Tiles/Planet/Chasms/snow_chasm.rsi/chasm1.png b/Resources/Textures/Tiles/Planet/Chasms/snow_chasm.rsi/chasm1.png new file mode 100644 index 0000000000..502b9e3d71 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Chasms/snow_chasm.rsi/chasm1.png differ diff --git a/Resources/Textures/Tiles/Planet/Chasms/snow_chasm.rsi/chasm2.png b/Resources/Textures/Tiles/Planet/Chasms/snow_chasm.rsi/chasm2.png new file mode 100644 index 0000000000..a813ce8e9a Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Chasms/snow_chasm.rsi/chasm2.png differ diff --git a/Resources/Textures/Tiles/Planet/Chasms/snow_chasm.rsi/chasm3.png b/Resources/Textures/Tiles/Planet/Chasms/snow_chasm.rsi/chasm3.png new file mode 100644 index 0000000000..502b9e3d71 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Chasms/snow_chasm.rsi/chasm3.png differ diff --git a/Resources/Textures/Tiles/Planet/Chasms/snow_chasm.rsi/chasm4.png b/Resources/Textures/Tiles/Planet/Chasms/snow_chasm.rsi/chasm4.png new file mode 100644 index 0000000000..f0fd989115 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Chasms/snow_chasm.rsi/chasm4.png differ diff --git a/Resources/Textures/Tiles/Planet/Chasms/snow_chasm.rsi/chasm5.png b/Resources/Textures/Tiles/Planet/Chasms/snow_chasm.rsi/chasm5.png new file mode 100644 index 0000000000..567cde6ad4 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Chasms/snow_chasm.rsi/chasm5.png differ diff --git a/Resources/Textures/Tiles/Planet/Chasms/snow_chasm.rsi/chasm6.png b/Resources/Textures/Tiles/Planet/Chasms/snow_chasm.rsi/chasm6.png new file mode 100644 index 0000000000..f0fd989115 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Chasms/snow_chasm.rsi/chasm6.png differ diff --git a/Resources/Textures/Tiles/Planet/Chasms/snow_chasm.rsi/chasm7.png b/Resources/Textures/Tiles/Planet/Chasms/snow_chasm.rsi/chasm7.png new file mode 100644 index 0000000000..0858c19f05 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Chasms/snow_chasm.rsi/chasm7.png differ diff --git a/Resources/Textures/Tiles/Planet/Chasms/snow_chasm.rsi/full.png b/Resources/Textures/Tiles/Planet/Chasms/snow_chasm.rsi/full.png new file mode 100644 index 0000000000..525cdc2680 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/Chasms/snow_chasm.rsi/full.png differ diff --git a/Resources/Textures/Tiles/Planet/Chasms/snow_chasm.rsi/meta.json b/Resources/Textures/Tiles/Planet/Chasms/snow_chasm.rsi/meta.json new file mode 100644 index 0000000000..e303031e1f --- /dev/null +++ b/Resources/Textures/Tiles/Planet/Chasms/snow_chasm.rsi/meta.json @@ -0,0 +1,49 @@ +{ + "version": 1, + "license": "CC0-1.0", + "copyright": "Created by TheShuEd (github) for ss14", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "full" + }, + { + "name": "chasm0", + "directions": 4 + }, + { + "name": "chasm1", + "directions": 4 + }, + { + "name": "chasm2", + "directions": 4 + }, + { + "name": "chasm3", + "directions": 4 + }, + { + "name": "chasm4", + "directions": 4 + }, + { + "name": "chasm5", + "directions": 4 + }, + { + "name": "chasm6", + "directions": 4 + }, + { + "name": "chasm7", + "directions": 4 + }, + { + "name": "chasm" + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Tiles/Planet/shadowbasalt.rsi/basalt1.png b/Resources/Textures/Tiles/Planet/shadowbasalt.rsi/basalt1.png new file mode 100644 index 0000000000..e8f873286c Binary files /dev/null and b/Resources/Textures/Tiles/Planet/shadowbasalt.rsi/basalt1.png differ diff --git a/Resources/Textures/Tiles/Planet/shadowbasalt.rsi/basalt2.png b/Resources/Textures/Tiles/Planet/shadowbasalt.rsi/basalt2.png new file mode 100644 index 0000000000..00a2711eb8 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/shadowbasalt.rsi/basalt2.png differ diff --git a/Resources/Textures/Tiles/Planet/shadowbasalt.rsi/basalt3.png b/Resources/Textures/Tiles/Planet/shadowbasalt.rsi/basalt3.png new file mode 100644 index 0000000000..27219f4882 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/shadowbasalt.rsi/basalt3.png differ diff --git a/Resources/Textures/Tiles/Planet/shadowbasalt.rsi/basalt4.png b/Resources/Textures/Tiles/Planet/shadowbasalt.rsi/basalt4.png new file mode 100644 index 0000000000..6081f54b02 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/shadowbasalt.rsi/basalt4.png differ diff --git a/Resources/Textures/Tiles/Planet/shadowbasalt.rsi/basalt5.png b/Resources/Textures/Tiles/Planet/shadowbasalt.rsi/basalt5.png new file mode 100644 index 0000000000..76c13b2e61 Binary files /dev/null and b/Resources/Textures/Tiles/Planet/shadowbasalt.rsi/basalt5.png differ diff --git a/Resources/Textures/Tiles/Planet/shadowbasalt.rsi/meta.json b/Resources/Textures/Tiles/Planet/shadowbasalt.rsi/meta.json new file mode 100644 index 0000000000..0d71d4b561 --- /dev/null +++ b/Resources/Textures/Tiles/Planet/shadowbasalt.rsi/meta.json @@ -0,0 +1,66 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "taken from tgstation @ commit a0ca7b3f46132517f71f08bfda465667d133b5d7 and edited by TheShuEd", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "basalt1", + "delays": [ + [ + 2, + 2, + 2, + 2 + ] + ] + }, + { + "name": "basalt2", + "delays": [ + [ + 2, + 2, + 2, + 2 + ] + ] + }, + { + "name": "basalt3", + "delays": [ + [ + 2, + 2, + 2, + 2 + ] + ] + }, + { + "name": "basalt4", + "delays": [ + [ + 2, + 2, + 2, + 2 + ] + ] + }, + { + "name": "basalt5", + "delays": [ + [ + 2, + 2, + 2, + 2 + ] + ] + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Tiles/attributions.yml b/Resources/Textures/Tiles/attributions.yml index 641100fe42..b732333dd7 100644 --- a/Resources/Textures/Tiles/attributions.yml +++ b/Resources/Textures/Tiles/attributions.yml @@ -95,3 +95,8 @@ license: "CC-BY-SA-3.0" copyright: "taken at https://github.com/ParadiseSS13/Paradise/blob/8b7f4c8b69c74c6de5a755272eb8d3520f3d87c7/icons/turf/floors.dmi" source: "https://github.com/ParadiseSS13/Paradise" + +- files: ["chromite.png"] + license: "CC-BY-NC-SA-3.0" + copyright: "taken at commit 0587dd16e28108bdf0b0a28e2caae4319845e861, and recolored by TheShuEd" + source: "https://github.com/Mojave-Sun/mojave-sun-13" \ No newline at end of file diff --git a/Resources/Textures/Tiles/chromite.png b/Resources/Textures/Tiles/chromite.png new file mode 100644 index 0000000000..631b9bf84e Binary files /dev/null and b/Resources/Textures/Tiles/chromite.png differ diff --git a/Resources/migration.yml b/Resources/migration.yml index 9457a50e55..7d974cb002 100644 --- a/Resources/migration.yml +++ b/Resources/migration.yml @@ -153,6 +153,9 @@ FoodBreadMoldy: FoodBreadMoldySlice FoodMeatPatty: FoodMeatMeatball ClothingHeadHoodMystic: ClothingHeadHoodMysta +# 2023-11-07 (Merge of MailDrobe and CourierDrobe) +VendingMachineMailDrobe: VendingMachineCourierDrobe + #Delta V temporary changes. Remove When items are added. MetempsychoticMachine: CloningPod diff --git a/RobustToolbox b/RobustToolbox index 554e0777b1..f5874ea402 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit 554e0777b1ba6ba096d8f4407d5c35ecc7b0f22f +Subproject commit f5874ea402430bb902a5d5d1f47953679d79d781